mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 11:34:24 +03:00
79a80b67ac
closes #3080 - added users.invite() to add user from email with random password - added `GET /ghost/api/v0.1/users/` to invite users and resend invitations - removed one user limit - added global utils for uid generation - changed some „“ to ‚‘
70 lines
3.2 KiB
JavaScript
70 lines
3.2 KiB
JavaScript
// # API routes
|
|
var express = require('express'),
|
|
api = require('../api'),
|
|
apiRoutes;
|
|
|
|
apiRoutes = function (middleware) {
|
|
var router = express.Router();
|
|
|
|
// ## Posts
|
|
router.get('/ghost/api/v0.1/posts', api.http(api.posts.browse));
|
|
router.post('/ghost/api/v0.1/posts', api.http(api.posts.add));
|
|
router.get('/ghost/api/v0.1/posts/:id(\\d+)', api.http(api.posts.read));
|
|
router.get('/ghost/api/v0.1/posts/:slug([a-z-]+)', api.http(api.posts.read));
|
|
router.put('/ghost/api/v0.1/posts/:id', api.http(api.posts.edit));
|
|
router['delete']('/ghost/api/v0.1/posts/:id', api.http(api.posts.destroy));
|
|
// ## Settings
|
|
router.get('/ghost/api/v0.1/settings/', api.http(api.settings.browse));
|
|
router.get('/ghost/api/v0.1/settings/:key/', api.http(api.settings.read));
|
|
router.put('/ghost/api/v0.1/settings/', api.http(api.settings.edit));
|
|
// ## Users
|
|
router.get('/ghost/api/v0.1/users/', api.http(api.users.browse));
|
|
router.get('/ghost/api/v0.1/users/:id/', api.http(api.users.read));
|
|
router.put('/ghost/api/v0.1/users/password/', api.http(api.users.changePassword));
|
|
router.put('/ghost/api/v0.1/users/:id/', api.http(api.users.edit));
|
|
router.post('/ghost/api/v0.1/users/', api.http(api.users.invite));
|
|
router['delete']('/ghost/api/v0.1/users/:id/', api.http(api.users.destroy));
|
|
|
|
// ## Tags
|
|
router.get('/ghost/api/v0.1/tags/', api.http(api.tags.browse));
|
|
// ## Themes
|
|
router.get('/ghost/api/v0.1/themes/', api.http(api.themes.browse));
|
|
router.put('/ghost/api/v0.1/themes/:name', api.http(api.themes.edit));
|
|
// ## Notifications
|
|
router.get('/ghost/api/v0.1/notifications/', api.http(api.notifications.browse));
|
|
router.post('/ghost/api/v0.1/notifications/', api.http(api.notifications.add));
|
|
router['delete']('/ghost/api/v0.1/notifications/:id', api.http(api.notifications.destroy));
|
|
// ## DB
|
|
router.get('/ghost/api/v0.1/db/', api.http(api.db.exportContent));
|
|
router.post('/ghost/api/v0.1/db/', middleware.busboy, api.http(api.db.importContent));
|
|
router['delete']('/ghost/api/v0.1/db/', api.http(api.db.deleteAllContent));
|
|
// ## Mail
|
|
router.post('/ghost/api/v0.1/mail', api.http(api.mail.send));
|
|
router.post('/ghost/api/v0.1/mail/test', function (req, res) {
|
|
api.settings.read('email').then(function (result) {
|
|
// attach the to: address to the request body so that it is available
|
|
// to the http api handler
|
|
req.body = { to: result.settings[0].value };
|
|
|
|
api.http(api.mail.sendTest)(req, res);
|
|
}).catch(function () {
|
|
api.http(api.mail.sendTest)(req, res);
|
|
});
|
|
});
|
|
// ## Slugs
|
|
router.get('/ghost/api/v0.1/slugs/:type/:name', api.http(api.slugs.generate));
|
|
// ## Authentication
|
|
router.post('/ghost/api/v0.1/authentication/passwordreset', api.http(api.authentication.generateResetToken));
|
|
router.put('/ghost/api/v0.1/authentication/passwordreset', api.http(api.authentication.resetPassword));
|
|
router.post('/ghost/api/v0.1/authentication/token',
|
|
middleware.addClientSecret,
|
|
middleware.authenticateClient,
|
|
middleware.generateAccessToken
|
|
);
|
|
|
|
|
|
return router;
|
|
};
|
|
|
|
module.exports = apiRoutes;
|