mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-10 23:36:14 -05:00
closes #6503 - change post route 404 handling to match that of the editor and tag routes - fix 404 tests
77 lines
2.1 KiB
JavaScript
77 lines
2.1 KiB
JavaScript
import AuthenticatedRoute from 'ghost/routes/authenticated';
|
|
import ShortcutsRoute from 'ghost/mixins/shortcuts-route';
|
|
import NotFoundHandler from 'ghost/mixins/404-handler';
|
|
import isNumber from 'ghost/utils/isNumber';
|
|
import isFinite from 'ghost/utils/isFinite';
|
|
|
|
export default AuthenticatedRoute.extend(ShortcutsRoute, NotFoundHandler, {
|
|
model(params) {
|
|
let post,
|
|
postId,
|
|
query;
|
|
|
|
/* jscs:disable requireCamelCaseOrUpperCaseIdentifiers */
|
|
postId = Number(params.post_id);
|
|
|
|
if (!isNumber(postId) || !isFinite(postId) || postId % 1 !== 0 || postId <= 0) {
|
|
return this.transitionTo('error404', params.post_id);
|
|
}
|
|
/* jscs:enable requireCamelCaseOrUpperCaseIdentifiers */
|
|
|
|
post = this.store.peekRecord('post', postId);
|
|
if (post) {
|
|
return post;
|
|
}
|
|
|
|
query = {
|
|
id: postId,
|
|
status: 'all',
|
|
staticPages: 'all'
|
|
};
|
|
|
|
return this.store.query('post', query).then((records) => {
|
|
let post = records.get('firstObject');
|
|
|
|
if (post) {
|
|
return post;
|
|
}
|
|
|
|
return this.replaceWith('posts.index');
|
|
});
|
|
},
|
|
|
|
afterModel(post) {
|
|
return this.get('session.user').then((user) => {
|
|
if (user.get('isAuthor') && !post.isAuthoredByUser(user)) {
|
|
return this.replaceWith('posts.index');
|
|
}
|
|
});
|
|
},
|
|
|
|
setupController(controller, model) {
|
|
this._super(controller, model);
|
|
|
|
this.controllerFor('posts').set('currentPost', model);
|
|
},
|
|
|
|
shortcuts: {
|
|
'enter, o': 'openEditor',
|
|
'command+backspace, ctrl+backspace': 'deletePost'
|
|
},
|
|
|
|
actions: {
|
|
openEditor(post) {
|
|
post = post || this.get('controller.model');
|
|
|
|
if (!post) {
|
|
return;
|
|
}
|
|
|
|
this.transitionTo('editor.edit', post.get('id'));
|
|
},
|
|
|
|
deletePost() {
|
|
this.controllerFor('posts').send('toggleDeletePostModal');
|
|
}
|
|
}
|
|
});
|