2015-11-03 14:38:29 +03:00
|
|
|
var _ = require('lodash');
|
|
|
|
|
|
|
|
module.exports = function (Bookshelf) {
|
|
|
|
var modelProto = Bookshelf.Model.prototype,
|
|
|
|
Model,
|
|
|
|
countQueryBuilder;
|
|
|
|
|
|
|
|
countQueryBuilder = {
|
|
|
|
tags: {
|
|
|
|
posts: function addPostCountToTags(model) {
|
|
|
|
model.query('columns', 'tags.*', function (qb) {
|
2015-11-16 20:09:27 +03:00
|
|
|
qb.count('posts.id')
|
|
|
|
.from('posts')
|
|
|
|
.leftOuterJoin('posts_tags', 'posts.id', 'posts_tags.post_id')
|
|
|
|
.whereRaw('posts_tags.tag_id = tags.id')
|
2015-11-20 15:04:49 +03:00
|
|
|
.as('count__posts');
|
2015-11-16 20:09:27 +03:00
|
|
|
|
|
|
|
if (model.isPublicContext()) {
|
|
|
|
// @TODO use the filter behavior for posts
|
|
|
|
qb.andWhere('posts.page', '=', false);
|
|
|
|
qb.andWhere('posts.status', '=', 'published');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
users: {
|
|
|
|
posts: function addPostCountToTags(model) {
|
|
|
|
model.query('columns', 'users.*', function (qb) {
|
|
|
|
qb.count('posts.id')
|
|
|
|
.from('posts')
|
|
|
|
.whereRaw('posts.author_id = users.id')
|
2015-11-20 15:04:49 +03:00
|
|
|
.as('count__posts');
|
2015-11-16 20:09:27 +03:00
|
|
|
|
|
|
|
if (model.isPublicContext()) {
|
|
|
|
// @TODO use the filter behavior for posts
|
|
|
|
qb.andWhere('posts.page', '=', false);
|
|
|
|
qb.andWhere('posts.status', '=', 'published');
|
|
|
|
}
|
2015-11-03 14:38:29 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
Model = Bookshelf.Model.extend({
|
|
|
|
addCounts: function (options) {
|
|
|
|
if (!options) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var tableName = _.result(this, 'tableName');
|
|
|
|
|
2015-11-20 15:04:49 +03:00
|
|
|
if (options.include && options.include.indexOf('count.posts') > -1) {
|
2015-11-03 14:38:29 +03:00
|
|
|
// remove post_count from withRelated and include
|
2015-11-20 15:04:49 +03:00
|
|
|
options.withRelated = _.pull([].concat(options.withRelated), 'count.posts');
|
2015-11-03 14:38:29 +03:00
|
|
|
|
|
|
|
// Call the query builder
|
|
|
|
countQueryBuilder[tableName].posts(this);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
fetch: function () {
|
|
|
|
this.addCounts.apply(this, arguments);
|
|
|
|
|
2015-11-12 17:21:04 +03:00
|
|
|
if (this.debug) {
|
|
|
|
console.log('QUERY', this.query().toQuery());
|
|
|
|
}
|
|
|
|
|
2015-11-03 14:38:29 +03:00
|
|
|
// Call parent fetch
|
|
|
|
return modelProto.fetch.apply(this, arguments);
|
|
|
|
},
|
|
|
|
fetchAll: function () {
|
|
|
|
this.addCounts.apply(this, arguments);
|
|
|
|
|
2015-11-12 17:21:04 +03:00
|
|
|
if (this.debug) {
|
|
|
|
console.log('QUERY', this.query().toQuery());
|
|
|
|
}
|
|
|
|
|
2015-11-03 14:38:29 +03:00
|
|
|
// Call parent fetchAll
|
|
|
|
return modelProto.fetchAll.apply(this, arguments);
|
2015-11-20 15:04:49 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
finalize: function (attrs) {
|
|
|
|
var countRegex = /^(count)(__)(.*)$/;
|
|
|
|
_.forOwn(attrs, function (value, key) {
|
|
|
|
var match = key.match(countRegex);
|
|
|
|
if (match) {
|
|
|
|
attrs[match[1]] = attrs[match[1]] || {};
|
|
|
|
attrs[match[1]][match[3]] = value;
|
|
|
|
delete attrs[key];
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return attrs;
|
2015-11-03 14:38:29 +03:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
Bookshelf.Model = Model;
|
|
|
|
};
|