mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 13:54:35 +03:00
22bbf57830
another 2 % of #2124 - renamed `/ghost/api/v0.1/posts/getSlug/ to `/ghost/api/v0.1/posts/slug/` - renamed method getSlug to generateSlug
128 lines
4.7 KiB
JavaScript
128 lines
4.7 KiB
JavaScript
var when = require('when'),
|
|
_ = require('lodash'),
|
|
dataProvider = require('../models'),
|
|
canThis = require('../permissions').canThis,
|
|
filteredUserAttributes = require('./users').filteredAttributes,
|
|
posts;
|
|
|
|
// ## Posts
|
|
posts = {
|
|
// #### Browse
|
|
|
|
// **takes:** filter / pagination parameters
|
|
browse: function browse(options) {
|
|
options = options || {};
|
|
|
|
// **returns:** a promise for a page of posts in a json object
|
|
|
|
return dataProvider.Post.findPage(options).then(function (result) {
|
|
var i = 0,
|
|
omitted = result;
|
|
|
|
for (i = 0; i < omitted.posts.length; i = i + 1) {
|
|
omitted.posts[i].author = _.omit(omitted.posts[i].author, filteredUserAttributes);
|
|
omitted.posts[i].user = _.omit(omitted.posts[i].user, filteredUserAttributes);
|
|
}
|
|
return omitted;
|
|
});
|
|
},
|
|
|
|
// #### Read
|
|
|
|
// **takes:** an identifier (id or slug?)
|
|
read: function read(args) {
|
|
// **returns:** a promise for a single post in a json object
|
|
|
|
return dataProvider.Post.findOne(args).then(function (result) {
|
|
var omitted;
|
|
|
|
if (result) {
|
|
omitted = result.toJSON();
|
|
omitted.author = _.omit(omitted.author, filteredUserAttributes);
|
|
omitted.user = _.omit(omitted.user, filteredUserAttributes);
|
|
return omitted;
|
|
}
|
|
return when.reject({code: 404, message: 'Post not found'});
|
|
|
|
});
|
|
},
|
|
|
|
generateSlug: function getSlug(args) {
|
|
return dataProvider.Base.Model.generateSlug(dataProvider.Post, args.title, {status: 'all'}).then(function (slug) {
|
|
if (slug) {
|
|
return slug;
|
|
}
|
|
return when.reject({code: 500, message: 'Could not generate slug'});
|
|
});
|
|
},
|
|
|
|
// #### Edit
|
|
|
|
// **takes:** a json object with all the properties which should be updated
|
|
edit: function edit(postData) {
|
|
// **returns:** a promise for the resulting post in a json object
|
|
if (!this.user) {
|
|
return when.reject({code: 403, message: 'You do not have permission to edit this post.'});
|
|
}
|
|
var self = this;
|
|
return canThis(self.user).edit.post(postData.id).then(function () {
|
|
return dataProvider.Post.edit(postData).then(function (result) {
|
|
if (result) {
|
|
var omitted = result.toJSON();
|
|
omitted.author = _.omit(omitted.author, filteredUserAttributes);
|
|
omitted.user = _.omit(omitted.user, filteredUserAttributes);
|
|
return omitted;
|
|
}
|
|
return when.reject({code: 404, message: 'Post not found'});
|
|
}).otherwise(function (error) {
|
|
return dataProvider.Post.findOne({id: postData.id, status: 'all'}).then(function (result) {
|
|
if (!result) {
|
|
return when.reject({code: 404, message: 'Post not found'});
|
|
}
|
|
return when.reject({message: error.message});
|
|
});
|
|
});
|
|
}, function () {
|
|
return when.reject({code: 403, message: 'You do not have permission to edit this post.'});
|
|
});
|
|
},
|
|
|
|
// #### Add
|
|
|
|
// **takes:** a json object representing a post,
|
|
add: function add(postData) {
|
|
// **returns:** a promise for the resulting post in a json object
|
|
if (!this.user) {
|
|
return when.reject({code: 403, message: 'You do not have permission to add posts.'});
|
|
}
|
|
|
|
return canThis(this.user).create.post().then(function () {
|
|
return dataProvider.Post.add(postData);
|
|
}, function () {
|
|
return when.reject({code: 403, message: 'You do not have permission to add posts.'});
|
|
});
|
|
},
|
|
|
|
// #### Destroy
|
|
|
|
// **takes:** an identifier (id or slug?)
|
|
destroy: function destroy(args) {
|
|
// **returns:** a promise for a json response with the id of the deleted post
|
|
if (!this.user) {
|
|
return when.reject({code: 403, message: 'You do not have permission to remove posts.'});
|
|
}
|
|
|
|
return canThis(this.user).remove.post(args.id).then(function () {
|
|
return when(posts.read({id : args.id, status: 'all'})).then(function (result) {
|
|
return dataProvider.Post.destroy(args.id).then(function () {
|
|
var deletedObj = result;
|
|
return deletedObj;
|
|
});
|
|
});
|
|
}, function () {
|
|
return when.reject({code: 403, message: 'You do not have permission to remove posts.'});
|
|
});
|
|
}
|
|
};
|
|
|
|
module.exports = posts; |