foam-framework
Version:
MVC metaprogramming framework
73 lines (68 loc) • 1.85 kB
JavaScript
/**
* @license
* Copyright 2015 Google Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
CLASS({
package: 'com.google.watlobby',
name: 'Server',
requires: [
'foam.dao.EasyDAO',
'foam.node.dao.JSONFileDAO',
'com.google.watlobby.Topic'
],
imports: [
'exportDAO'
],
properties: [
{
name: 'fs',
factory: function() { return require('fs'); }
},
{
name: 'topicDAO',
factory: function() {
var dao = foam.dao.EasyDAO.create({
daoType: this.JSONFileDAO.xbind({
filename: global.FOAM_BOOT_DIR + '/../js/com/google/watlobby/topics_dao.json'
}),
// daoType: 'MDAO',
model: this.Topic,
guid: true,
dedup: true,
autoIndex: true,
isServer: true
});
dao.select(COUNT())(function(c) {
if ( c.count !== 0 )
return;
var result = this.fs.readFileSync(global.FOAM_BOOT_DIR + '/../js/com/google/watlobby/topics.json');
if ( ! result ) {
result = [];
} else {
result = eval('(' + result + ')');
result = JSONUtil.arrayToObjArray(this.X, result, this.Topic);
}
result.select(dao);
}.bind(this));
return dao;
}
}
],
methods: [
function execute() {
this.exportDAO(this.topicDAO);
}
]
});