mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 03:12:54 +03:00
3296a3a41c
no issue - this ports over screens from old admin to allow people to begin working on aspects of the screen - All logged out screens have been imported: Signup, Signin, Forgotten password, reset password - Those screens are now ready for behavior to be ported over - This also updates templates to be more in line with how they were in the old admin - Littered through the code are @TODO comments of functionality that is missing and will need to be resolved before this is production ready - Also scaffolds out the settings screen and every tab
64 lines
2.6 KiB
JavaScript
64 lines
2.6 KiB
JavaScript
var admin = require('../controllers/admin'),
|
|
config = require('../config'),
|
|
middleware = require('../middleware').middleware;
|
|
|
|
module.exports = function (server) {
|
|
// Have ember route look for hits first
|
|
// to prevent conflicts with pre-existing routes
|
|
server.get('/ghost/ember/*', admin.index);
|
|
|
|
var subdir = config().paths.subdir;
|
|
// ### Admin routes
|
|
server.get('/logout/', function redirect(req, res) {
|
|
/*jslint unparam:true*/
|
|
res.redirect(301, subdir + '/ghost/signout/');
|
|
});
|
|
server.get('/signout/', function redirect(req, res) {
|
|
/*jslint unparam:true*/
|
|
res.redirect(301, subdir + '/ghost/signout/');
|
|
});
|
|
server.get('/signin/', function redirect(req, res) {
|
|
/*jslint unparam:true*/
|
|
res.redirect(301, subdir + '/ghost/signin/');
|
|
});
|
|
server.get('/signup/', function redirect(req, res) {
|
|
/*jslint unparam:true*/
|
|
res.redirect(301, subdir + '/ghost/signup/');
|
|
});
|
|
server.get('/ghost/login/', function redirect(req, res) {
|
|
/*jslint unparam:true*/
|
|
res.redirect(301, subdir + '/ghost/signin/');
|
|
});
|
|
|
|
server.get('/ghost/signout/', admin.signout);
|
|
server.get('/ghost/signin/', middleware.redirectToSignup, middleware.redirectToDashboard, admin.signin);
|
|
server.post('/ghost/signin/', admin.doSignin);
|
|
server.get('/ghost/signup/', middleware.redirectToDashboard, admin.signup);
|
|
server.post('/ghost/signup/', admin.doSignup);
|
|
server.get('/ghost/forgotten/', middleware.redirectToDashboard, admin.forgotten);
|
|
server.post('/ghost/forgotten/', admin.doForgotten);
|
|
server.get('/ghost/reset/:token', admin.reset);
|
|
server.post('/ghost/reset/:token', admin.doReset);
|
|
server.post('/ghost/changepw/', admin.doChangePassword);
|
|
|
|
server.get('/ghost/editor(/:id)/', admin.editor);
|
|
server.get('/ghost/editor/', admin.editor);
|
|
server.get('/ghost/content/', admin.content);
|
|
server.get('/ghost/settings*', admin.settings);
|
|
server.get('/ghost/debug/', admin.debug.index);
|
|
|
|
server.get('/ghost/export/', admin.debug.exportContent);
|
|
|
|
server.post('/ghost/upload/', middleware.busboy, admin.upload);
|
|
|
|
// redirect to /ghost and let that do the authentication to prevent redirects to /ghost//admin etc.
|
|
server.get(/\/((ghost-admin|admin|wp-admin|dashboard|signin)\/?)$/, function (req, res) {
|
|
/*jslint unparam:true*/
|
|
res.redirect(subdir + '/ghost/');
|
|
});
|
|
server.get(/\/ghost$/, function (req, res) {
|
|
/*jslint unparam:true*/
|
|
res.redirect(subdir + '/ghost/');
|
|
});
|
|
server.get('/ghost/', admin.indexold);
|
|
}; |