2017-06-05 15:53:49 -04:00
|
|
|
import * as express from 'express'
|
2017-05-15 16:22:03 -04:00
|
|
|
import { waterfall } from 'async'
|
2016-03-21 06:56:33 -04:00
|
|
|
|
2017-05-22 14:58:25 -04:00
|
|
|
import { database as db } from '../../initializers/database'
|
2017-05-15 16:22:03 -04:00
|
|
|
import { CONFIG, USER_ROLES } from '../../initializers'
|
|
|
|
import { logger, getFormatedObjects } from '../../helpers'
|
|
|
|
import {
|
|
|
|
authenticate,
|
|
|
|
ensureIsAdmin,
|
|
|
|
usersAddValidator,
|
|
|
|
usersUpdateValidator,
|
|
|
|
usersRemoveValidator,
|
|
|
|
usersVideoRatingValidator,
|
|
|
|
paginationValidator,
|
|
|
|
setPagination,
|
|
|
|
usersSortValidator,
|
|
|
|
setUsersSort,
|
|
|
|
token
|
|
|
|
} from '../../middlewares'
|
|
|
|
|
|
|
|
const usersRouter = express.Router()
|
|
|
|
|
|
|
|
usersRouter.get('/me',
|
|
|
|
authenticate,
|
2017-03-08 15:35:43 -05:00
|
|
|
getUserInformation
|
|
|
|
)
|
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
usersRouter.get('/me/videos/:videoId/rating',
|
|
|
|
authenticate,
|
|
|
|
usersVideoRatingValidator,
|
2017-03-08 15:35:43 -05:00
|
|
|
getUserVideoRating
|
|
|
|
)
|
2016-08-04 16:32:36 -04:00
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
usersRouter.get('/',
|
|
|
|
paginationValidator,
|
|
|
|
usersSortValidator,
|
|
|
|
setUsersSort,
|
|
|
|
setPagination,
|
2016-08-16 16:31:45 -04:00
|
|
|
listUsers
|
|
|
|
)
|
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
usersRouter.post('/',
|
|
|
|
authenticate,
|
|
|
|
ensureIsAdmin,
|
|
|
|
usersAddValidator,
|
2016-08-04 16:32:36 -04:00
|
|
|
createUser
|
|
|
|
)
|
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
usersRouter.post('/register',
|
2017-04-09 06:08:36 -04:00
|
|
|
ensureRegistrationEnabled,
|
2017-05-15 16:22:03 -04:00
|
|
|
usersAddValidator,
|
2017-04-09 06:08:36 -04:00
|
|
|
createUser
|
|
|
|
)
|
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
usersRouter.put('/:id',
|
|
|
|
authenticate,
|
|
|
|
usersUpdateValidator,
|
2016-08-04 16:32:36 -04:00
|
|
|
updateUser
|
|
|
|
)
|
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
usersRouter.delete('/:id',
|
|
|
|
authenticate,
|
|
|
|
ensureIsAdmin,
|
|
|
|
usersRemoveValidator,
|
2016-08-04 16:32:36 -04:00
|
|
|
removeUser
|
|
|
|
)
|
2016-08-05 10:09:39 -04:00
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
usersRouter.post('/token', token, success)
|
2016-08-04 16:32:36 -04:00
|
|
|
// TODO: Once https://github.com/oauthjs/node-oauth2-server/pull/289 is merged, implement revoke token route
|
2016-03-21 06:56:33 -04:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
export {
|
|
|
|
usersRouter
|
|
|
|
}
|
2016-03-21 06:56:33 -04:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
function ensureRegistrationEnabled (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2017-05-15 16:22:03 -04:00
|
|
|
const registrationEnabled = CONFIG.SIGNUP.ENABLED
|
2017-04-09 06:08:36 -04:00
|
|
|
|
|
|
|
if (registrationEnabled === true) {
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
|
|
|
|
return res.status(400).send('User registration is not enabled.')
|
|
|
|
}
|
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
function createUser (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2016-12-11 15:50:51 -05:00
|
|
|
const user = db.User.build({
|
2016-08-04 16:32:36 -04:00
|
|
|
username: req.body.username,
|
|
|
|
password: req.body.password,
|
2017-02-18 03:29:59 -05:00
|
|
|
email: req.body.email,
|
2017-04-03 15:24:36 -04:00
|
|
|
displayNSFW: false,
|
2017-05-15 16:22:03 -04:00
|
|
|
role: USER_ROLES.USER
|
2016-08-04 16:32:36 -04:00
|
|
|
})
|
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
user.save().asCallback(function (err) {
|
2016-08-04 16:32:36 -04:00
|
|
|
if (err) return next(err)
|
|
|
|
|
|
|
|
return res.type('json').status(204).end()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
function getUserInformation (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2016-12-11 15:50:51 -05:00
|
|
|
db.User.loadByUsername(res.locals.oauth.token.user.username, function (err, user) {
|
2016-08-05 11:19:08 -04:00
|
|
|
if (err) return next(err)
|
|
|
|
|
|
|
|
return res.json(user.toFormatedJSON())
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
function getUserVideoRating (req: express.Request, res: express.Response, next: express.NextFunction) {
|
|
|
|
const videoId = '' + req.params.videoId
|
|
|
|
const userId = +res.locals.oauth.token.User.id
|
2017-03-08 15:35:43 -05:00
|
|
|
|
2017-05-22 14:58:25 -04:00
|
|
|
db.UserVideoRate.load(userId, videoId, null, function (err, ratingObj) {
|
2017-03-08 15:35:43 -05:00
|
|
|
if (err) return next(err)
|
|
|
|
|
|
|
|
const rating = ratingObj ? ratingObj.type : 'none'
|
|
|
|
|
|
|
|
res.json({
|
|
|
|
videoId,
|
|
|
|
rating
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
function listUsers (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2016-12-11 15:50:51 -05:00
|
|
|
db.User.listForApi(req.query.start, req.query.count, req.query.sort, function (err, usersList, usersTotal) {
|
2016-08-04 16:32:36 -04:00
|
|
|
if (err) return next(err)
|
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
res.json(getFormatedObjects(usersList, usersTotal))
|
2016-08-04 16:32:36 -04:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
function removeUser (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2016-08-04 16:32:36 -04:00
|
|
|
waterfall([
|
2016-12-29 05:17:11 -05:00
|
|
|
function loadUser (callback) {
|
2016-12-11 15:50:51 -05:00
|
|
|
db.User.loadById(req.params.id, callback)
|
2016-08-04 16:32:36 -04:00
|
|
|
},
|
|
|
|
|
2016-12-29 05:17:11 -05:00
|
|
|
function deleteUser (user, callback) {
|
2016-12-11 15:50:51 -05:00
|
|
|
user.destroy().asCallback(callback)
|
2016-08-04 16:32:36 -04:00
|
|
|
}
|
|
|
|
], function andFinally (err) {
|
|
|
|
if (err) {
|
|
|
|
logger.error('Errors when removed the user.', { error: err })
|
|
|
|
return next(err)
|
|
|
|
}
|
|
|
|
|
2016-08-05 12:08:55 -04:00
|
|
|
return res.sendStatus(204)
|
2016-08-04 16:32:36 -04:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
function updateUser (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2016-12-11 15:50:51 -05:00
|
|
|
db.User.loadByUsername(res.locals.oauth.token.user.username, function (err, user) {
|
2016-08-04 16:32:36 -04:00
|
|
|
if (err) return next(err)
|
|
|
|
|
2017-04-03 15:24:36 -04:00
|
|
|
if (req.body.password) user.password = req.body.password
|
|
|
|
if (req.body.displayNSFW !== undefined) user.displayNSFW = req.body.displayNSFW
|
|
|
|
|
2016-12-11 15:50:51 -05:00
|
|
|
user.save().asCallback(function (err) {
|
2016-08-04 16:32:36 -04:00
|
|
|
if (err) return next(err)
|
|
|
|
|
2016-08-05 12:08:55 -04:00
|
|
|
return res.sendStatus(204)
|
2016-08-04 16:32:36 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
function success (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2016-03-21 06:56:33 -04:00
|
|
|
res.end()
|
|
|
|
}
|