Ghost/ghost/admin/app/routes/editor/edit.js

55 lines
1.4 KiB
JavaScript
Raw Normal View History

import AuthenticatedRoute from 'ghost/routes/authenticated';
import base from 'ghost/mixins/editor-base-route';
import isNumber from 'ghost/utils/isNumber';
import isFinite from 'ghost/utils/isFinite';
var EditorEditRoute = AuthenticatedRoute.extend(base, {
titleToken: 'Editor',
model: function (params) {
var self = this,
postId,
query;
postId = Number(params.post_id);
if (!isNumber(postId) || !isFinite(postId) || postId % 1 !== 0 || postId <= 0) {
return this.transitionTo('error404', 'editor/' + params.post_id);
}
query = {
id: postId,
status: 'all',
staticPages: 'all'
};
return self.store.find('post', query).then(function (records) {
var post = records.get('firstObject');
if (post) {
return post;
}
return self.replaceWith('posts.index');
});
},
afterModel: function (post) {
var self = this;
return self.get('session.user').then(function (user) {
if (user.get('isAuthor') && !post.isAuthoredByUser(user)) {
return self.replaceWith('posts.index');
}
});
},
actions: {
authorizationFailed: function () {
this.send('openModal', 'signin');
}
}
});
export default EditorEditRoute;