mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-13 22:41:32 -05:00
60 lines
1.5 KiB
JavaScript
60 lines
1.5 KiB
JavaScript
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,
|
|
post,
|
|
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);
|
|
}
|
|
|
|
post = this.store.getById('post', postId);
|
|
if (post) {
|
|
return post;
|
|
}
|
|
|
|
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.store.find('user', 'me').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;
|