2013-09-24 14:46:30 +04:00
|
|
|
var Ghost = require('../../ghost'),
|
|
|
|
_ = require('underscore'),
|
|
|
|
path = require('path'),
|
|
|
|
api = require('../api'),
|
|
|
|
errors = require('../errorHandling'),
|
2013-11-07 20:00:39 +04:00
|
|
|
storage = require('../storage'),
|
2013-09-24 14:46:30 +04:00
|
|
|
|
|
|
|
ghost = new Ghost(),
|
|
|
|
dataProvider = ghost.dataProvider,
|
2013-06-25 15:43:15 +04:00
|
|
|
adminNavbar,
|
2013-08-22 23:48:36 +04:00
|
|
|
adminControllers,
|
|
|
|
loginSecurity = [];
|
2013-05-11 20:44:25 +04:00
|
|
|
|
2013-06-25 15:43:15 +04:00
|
|
|
// TODO: combine path/navClass to single "slug(?)" variable with no prefix
|
|
|
|
adminNavbar = {
|
|
|
|
content: {
|
|
|
|
name: 'Content',
|
|
|
|
navClass: 'content',
|
|
|
|
key: 'admin.navbar.content',
|
2013-09-11 18:38:09 +04:00
|
|
|
path: '/'
|
2013-06-25 15:43:15 +04:00
|
|
|
},
|
|
|
|
add: {
|
|
|
|
name: 'New Post',
|
|
|
|
navClass: 'editor',
|
|
|
|
key: 'admin.navbar.editor',
|
|
|
|
path: '/editor/'
|
|
|
|
},
|
|
|
|
settings: {
|
|
|
|
name: 'Settings',
|
|
|
|
navClass: 'settings',
|
|
|
|
key: 'admin.navbar.settings',
|
|
|
|
path: '/settings/'
|
|
|
|
}
|
|
|
|
};
|
2013-05-11 20:44:25 +04:00
|
|
|
|
2013-08-22 23:48:36 +04:00
|
|
|
|
2013-06-25 20:58:26 +04:00
|
|
|
// TODO: make this a util or helper
|
2013-06-25 15:43:15 +04:00
|
|
|
function setSelected(list, name) {
|
|
|
|
_.each(list, function (item, key) {
|
|
|
|
item.selected = key === name;
|
2013-05-29 04:10:39 +04:00
|
|
|
});
|
2013-06-25 15:43:15 +04:00
|
|
|
return list;
|
|
|
|
}
|
2013-05-29 04:10:39 +04:00
|
|
|
|
2013-06-25 15:43:15 +04:00
|
|
|
adminControllers = {
|
2013-08-05 21:31:29 +04:00
|
|
|
'uploader': function (req, res) {
|
2013-09-28 17:54:26 +04:00
|
|
|
var type = req.files.uploadimage.type,
|
2013-08-14 00:04:07 +04:00
|
|
|
ext = path.extname(req.files.uploadimage.name).toLowerCase(),
|
2013-11-07 20:00:39 +04:00
|
|
|
store = storage.get_storage();
|
2013-09-28 17:54:26 +04:00
|
|
|
|
|
|
|
if ((type !== 'image/jpeg' && type !== 'image/png' && type !== 'image/gif')
|
|
|
|
|| (ext !== '.jpg' && ext !== '.jpeg' && ext !== '.png' && ext !== '.gif')) {
|
|
|
|
return res.send(415, 'Unsupported Media Type');
|
|
|
|
}
|
2013-08-05 21:31:29 +04:00
|
|
|
|
2013-11-07 20:00:39 +04:00
|
|
|
store
|
|
|
|
.save(req.files.uploadimage)
|
2013-09-28 17:54:26 +04:00
|
|
|
.then(function (url) {
|
2013-11-07 20:00:39 +04:00
|
|
|
return res.send(url);
|
2013-09-28 17:54:26 +04:00
|
|
|
})
|
|
|
|
.otherwise(function (e) {
|
|
|
|
return errors.logError(e);
|
2013-08-05 21:31:29 +04:00
|
|
|
});
|
|
|
|
},
|
2013-06-25 15:43:15 +04:00
|
|
|
'login': function (req, res) {
|
2013-10-31 22:02:34 +04:00
|
|
|
/*jslint unparam:true*/
|
2013-09-12 12:59:58 +04:00
|
|
|
res.render('login', {
|
2013-06-25 15:43:15 +04:00
|
|
|
bodyClass: 'ghost-login',
|
|
|
|
hideNavbar: true,
|
|
|
|
adminNav: setSelected(adminNavbar, 'login')
|
2013-05-11 20:44:25 +04:00
|
|
|
});
|
2013-06-25 15:43:15 +04:00
|
|
|
},
|
|
|
|
'auth': function (req, res) {
|
2013-08-22 23:48:36 +04:00
|
|
|
var currentTime = process.hrtime()[0],
|
|
|
|
denied = '';
|
|
|
|
loginSecurity = _.filter(loginSecurity, function (ipTime) {
|
|
|
|
return (ipTime.time + 2 > currentTime);
|
|
|
|
});
|
|
|
|
denied = _.find(loginSecurity, function (ipTime) {
|
|
|
|
return (ipTime.ip === req.connection.remoteAddress);
|
2013-06-25 15:43:15 +04:00
|
|
|
});
|
2013-08-22 23:48:36 +04:00
|
|
|
|
|
|
|
if (!denied) {
|
|
|
|
loginSecurity.push({ip: req.connection.remoteAddress, time: process.hrtime()[0]});
|
|
|
|
api.users.check({email: req.body.email, pw: req.body.password}).then(function (user) {
|
|
|
|
req.session.user = user.id;
|
|
|
|
res.json(200, {redirect: req.body.redirect ? '/ghost/'
|
|
|
|
+ decodeURIComponent(req.body.redirect) : '/ghost/'});
|
|
|
|
}, function (error) {
|
|
|
|
res.json(401, {error: error.message});
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
res.json(401, {error: 'Slow down, there are way too many login attempts!'});
|
|
|
|
}
|
2013-06-25 15:43:15 +04:00
|
|
|
},
|
2013-10-25 22:11:33 +04:00
|
|
|
'changepw': function (req, res) {
|
2013-08-06 03:49:06 +04:00
|
|
|
api.users.changePassword({
|
2013-08-09 05:22:49 +04:00
|
|
|
currentUser: req.session.user,
|
2013-08-06 03:49:06 +04:00
|
|
|
oldpw: req.body.password,
|
|
|
|
newpw: req.body.newpassword,
|
|
|
|
ne2pw: req.body.ne2password
|
2013-08-20 22:52:44 +04:00
|
|
|
}).then(function () {
|
2013-08-06 03:49:06 +04:00
|
|
|
res.json(200, {msg: 'Password changed successfully'});
|
|
|
|
}, function (error) {
|
2013-08-20 22:52:44 +04:00
|
|
|
res.send(401, {error: error.message});
|
2013-08-06 03:49:06 +04:00
|
|
|
});
|
|
|
|
|
|
|
|
},
|
2013-06-25 15:43:15 +04:00
|
|
|
'signup': function (req, res) {
|
2013-10-31 22:02:34 +04:00
|
|
|
/*jslint unparam:true*/
|
2013-06-25 15:43:15 +04:00
|
|
|
res.render('signup', {
|
2013-09-12 12:59:58 +04:00
|
|
|
bodyClass: 'ghost-signup',
|
2013-06-25 15:43:15 +04:00
|
|
|
hideNavbar: true,
|
|
|
|
adminNav: setSelected(adminNavbar, 'login')
|
|
|
|
});
|
|
|
|
},
|
2013-09-01 02:20:12 +04:00
|
|
|
|
2013-06-25 15:43:15 +04:00
|
|
|
'doRegister': function (req, res) {
|
2013-09-08 23:16:40 +04:00
|
|
|
var name = req.body.name,
|
|
|
|
email = req.body.email,
|
2013-06-25 15:43:15 +04:00
|
|
|
password = req.body.password;
|
2013-05-11 20:44:25 +04:00
|
|
|
|
2013-08-19 01:50:42 +04:00
|
|
|
api.users.add({
|
2013-09-12 02:04:49 +04:00
|
|
|
name: name,
|
|
|
|
email: email,
|
2013-08-19 01:50:42 +04:00
|
|
|
password: password
|
|
|
|
}).then(function (user) {
|
2013-09-17 06:08:36 +04:00
|
|
|
api.settings.edit('email', email).then(function () {
|
|
|
|
if (req.session.user === undefined) {
|
|
|
|
req.session.user = user.id;
|
|
|
|
}
|
|
|
|
res.json(200, {redirect: '/ghost/'});
|
|
|
|
});
|
|
|
|
}).otherwise(function (error) {
|
2013-08-19 01:50:42 +04:00
|
|
|
res.json(401, {error: error.message});
|
|
|
|
});
|
|
|
|
|
2013-06-25 15:43:15 +04:00
|
|
|
},
|
2013-09-01 02:20:12 +04:00
|
|
|
|
|
|
|
'forgotten': function (req, res) {
|
2013-10-31 22:02:34 +04:00
|
|
|
/*jslint unparam:true*/
|
2013-09-12 12:59:58 +04:00
|
|
|
res.render('forgotten', {
|
2013-09-01 02:20:12 +04:00
|
|
|
bodyClass: 'ghost-forgotten',
|
|
|
|
hideNavbar: true,
|
|
|
|
adminNav: setSelected(adminNavbar, 'login')
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
'resetPassword': function (req, res) {
|
|
|
|
var email = req.body.email;
|
|
|
|
|
|
|
|
api.users.forgottenPassword(email).then(function (user) {
|
|
|
|
var message = {
|
|
|
|
to: email,
|
|
|
|
subject: 'Your new password',
|
|
|
|
html: "<p><strong>Hello!</strong></p>" +
|
2013-09-09 14:51:12 +04:00
|
|
|
"<p>You've reset your password. Here's the new one: " + user.newPassword + "</p>" +
|
|
|
|
"<p>Ghost <br/>" +
|
2013-09-11 19:23:07 +04:00
|
|
|
'<a href="' + ghost.config().url + '">' +
|
|
|
|
ghost.config().url + '</a></p>'
|
2013-09-01 02:20:12 +04:00
|
|
|
};
|
|
|
|
|
2013-09-04 17:57:41 +04:00
|
|
|
return ghost.mail.send(message);
|
|
|
|
}).then(function success() {
|
|
|
|
var notification = {
|
|
|
|
type: 'success',
|
|
|
|
message: 'Your password was changed successfully. Check your email for details.',
|
|
|
|
status: 'passive',
|
|
|
|
id: 'successresetpw'
|
|
|
|
};
|
|
|
|
|
|
|
|
return api.notifications.add(notification).then(function () {
|
|
|
|
res.json(200, {redirect: '/ghost/signin/'});
|
|
|
|
});
|
2013-09-01 02:20:12 +04:00
|
|
|
|
2013-09-04 17:57:41 +04:00
|
|
|
}, function failure(error) {
|
2013-09-01 02:20:12 +04:00
|
|
|
res.json(401, {error: error.message});
|
2013-09-04 17:57:41 +04:00
|
|
|
}).otherwise(errors.logAndThrowError);
|
2013-09-01 02:20:12 +04:00
|
|
|
},
|
2013-06-25 15:43:15 +04:00
|
|
|
'logout': function (req, res) {
|
2013-10-18 15:24:01 +04:00
|
|
|
req.session = null;
|
2013-09-04 17:57:41 +04:00
|
|
|
var notification = {
|
2013-08-20 03:40:09 +04:00
|
|
|
type: 'success',
|
2013-08-24 21:35:31 +04:00
|
|
|
message: 'You were successfully signed out',
|
2013-08-20 03:40:09 +04:00
|
|
|
status: 'passive',
|
|
|
|
id: 'successlogout'
|
|
|
|
};
|
|
|
|
|
2013-09-04 17:57:41 +04:00
|
|
|
return api.notifications.add(notification).then(function () {
|
|
|
|
res.redirect('/ghost/signin/');
|
|
|
|
});
|
2013-06-25 15:43:15 +04:00
|
|
|
},
|
|
|
|
'index': function (req, res) {
|
2013-10-31 22:02:34 +04:00
|
|
|
/*jslint unparam:true*/
|
2013-09-11 18:38:09 +04:00
|
|
|
res.render('content', {
|
|
|
|
bodyClass: 'manage',
|
|
|
|
adminNav: setSelected(adminNavbar, 'content')
|
2013-06-25 15:43:15 +04:00
|
|
|
});
|
|
|
|
},
|
|
|
|
'editor': function (req, res) {
|
|
|
|
if (req.params.id !== undefined) {
|
2013-09-05 00:05:36 +04:00
|
|
|
res.render('editor', {
|
|
|
|
bodyClass: 'editor',
|
|
|
|
adminNav: setSelected(adminNavbar, 'content')
|
|
|
|
});
|
2013-06-25 15:43:15 +04:00
|
|
|
} else {
|
|
|
|
res.render('editor', {
|
|
|
|
bodyClass: 'editor',
|
|
|
|
adminNav: setSelected(adminNavbar, 'add')
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
'content': function (req, res) {
|
2013-10-31 22:02:34 +04:00
|
|
|
/*jslint unparam:true*/
|
2013-09-05 00:05:36 +04:00
|
|
|
res.render('content', {
|
|
|
|
bodyClass: 'manage',
|
|
|
|
adminNav: setSelected(adminNavbar, 'content')
|
|
|
|
});
|
2013-06-25 15:43:15 +04:00
|
|
|
},
|
2013-09-18 06:31:43 +04:00
|
|
|
'settings': function (req, res, next) {
|
|
|
|
|
|
|
|
// TODO: Centralise list/enumeration of settings panes, so we don't
|
|
|
|
// run into trouble in future.
|
2013-09-24 14:46:30 +04:00
|
|
|
var allowedSections = ['', 'general', 'user'],
|
|
|
|
section = req.url.replace(/(^\/ghost\/settings[\/]*|\/$)/ig, '');
|
2013-09-18 06:31:43 +04:00
|
|
|
|
|
|
|
if (allowedSections.indexOf(section) < 0) {
|
|
|
|
return next();
|
|
|
|
}
|
|
|
|
|
2013-09-05 00:05:36 +04:00
|
|
|
res.render('settings', {
|
|
|
|
bodyClass: 'settings',
|
|
|
|
adminNav: setSelected(adminNavbar, 'settings')
|
|
|
|
});
|
2013-06-25 15:43:15 +04:00
|
|
|
},
|
|
|
|
'debug': { /* ugly temporary stuff for managing the app before it's properly finished */
|
|
|
|
index: function (req, res) {
|
2013-10-31 22:02:34 +04:00
|
|
|
/*jslint unparam:true*/
|
2013-06-25 15:43:15 +04:00
|
|
|
res.render('debug', {
|
|
|
|
bodyClass: 'settings',
|
|
|
|
adminNav: setSelected(adminNavbar, 'settings')
|
|
|
|
});
|
2013-05-11 20:44:25 +04:00
|
|
|
}
|
2013-06-25 15:43:15 +04:00
|
|
|
}
|
|
|
|
};
|
2013-05-11 20:44:25 +04:00
|
|
|
|
2013-08-09 05:22:49 +04:00
|
|
|
module.exports = adminControllers;
|