bouquins/lib/endpoint/author.js

64 lines
1.4 KiB
JavaScript
Raw Normal View History

2014-01-22 17:49:50 +00:00
/**
* Endpoint author.
*/
var Endpoint = require('./endpoint.js');
2014-01-22 19:20:43 +00:00
2014-01-22 17:49:50 +00:00
function Author() {
Endpoint.call(this);
this.authorId = null;
}
Author.prototype = Object.create(Endpoint.prototype, {
bind: {
value: function(action, callback) {
switch (action.name) {
case 'show':
action.resId = this.authorId;
2014-01-22 19:20:43 +00:00
//TODO related
2014-01-22 17:49:50 +00:00
action.loadResource = function(resId, callback) {
logger.debug('loading author ' + resId);
// TODO load from db
2014-01-22 19:20:43 +00:00
db.get('SELECT * FROM authors WHERE id = '+ resId, function(err, row) {
callback(err, row);
2014-01-22 17:49:50 +00:00
});
};
callback(null, action);
2014-01-22 18:38:47 +00:00
break;
case 'list':
action.loadResources = function(onload, onend) {
//TODO load from bdd
2014-01-22 19:20:43 +00:00
db.each('SELECT * FROM authors LIMIT 30', function (err, row) {
onload(err, row);
}, function() {
onend();
});
2014-01-22 18:38:47 +00:00
};
callback(null, action);
break;
2014-01-22 17:49:50 +00:00
default:
callback(new Error('action not implemented'));
}
},
enumerable: true,
configurable: true,
writable: true
},
targetCollection : {
value: function(pathname) {
var match = PATH_RE.exec(pathname);
2014-01-22 18:38:47 +00:00
logger.debug('pathname ' + pathname + ' => ' + match);
if (match.length > 2 && match[2]) {
2014-01-22 17:49:50 +00:00
// TODO check integer
this.authorId = match[2];
return false;
}
return true;
},
enumerable: true,
configurable: true,
writable: true
}
});
exports = module.exports = new Author();