1
0
Fork 0
peertube/server/controllers/api/users.ts

149 lines
3.8 KiB
TypeScript
Raw Normal View History

2017-06-05 19:53:49 +00:00
import * as express from 'express'
2016-03-21 10:56:33 +00:00
2017-05-22 18:58:25 +00:00
import { database as db } from '../../initializers/database'
import { USER_ROLES } from '../../initializers'
2017-05-15 20:22:03 +00:00
import { logger, getFormatedObjects } from '../../helpers'
import {
authenticate,
ensureIsAdmin,
ensureUserRegistrationEnabled,
2017-05-15 20:22:03 +00:00
usersAddValidator,
usersUpdateValidator,
usersRemoveValidator,
usersVideoRatingValidator,
paginationValidator,
setPagination,
usersSortValidator,
setUsersSort,
token
} from '../../middlewares'
2017-06-17 09:28:11 +00:00
import { UserVideoRate as FormatedUserVideoRate } from '../../../shared'
2017-05-15 20:22:03 +00:00
const usersRouter = express.Router()
usersRouter.get('/me',
authenticate,
2017-03-08 20:35:43 +00:00
getUserInformation
)
2017-05-15 20:22:03 +00:00
usersRouter.get('/me/videos/:videoId/rating',
authenticate,
usersVideoRatingValidator,
2017-03-08 20:35:43 +00:00
getUserVideoRating
)
2017-05-15 20:22:03 +00:00
usersRouter.get('/',
paginationValidator,
usersSortValidator,
setUsersSort,
setPagination,
2016-08-16 20:31:45 +00:00
listUsers
)
2017-05-15 20:22:03 +00:00
usersRouter.post('/',
authenticate,
ensureIsAdmin,
usersAddValidator,
createUser
)
2017-05-15 20:22:03 +00:00
usersRouter.post('/register',
ensureUserRegistrationEnabled,
2017-05-15 20:22:03 +00:00
usersAddValidator,
createUser
)
2017-05-15 20:22:03 +00:00
usersRouter.put('/:id',
authenticate,
usersUpdateValidator,
updateUser
)
2017-05-15 20:22:03 +00:00
usersRouter.delete('/:id',
authenticate,
ensureIsAdmin,
usersRemoveValidator,
removeUser
)
2016-08-05 14:09:39 +00:00
2017-05-15 20:22:03 +00:00
usersRouter.post('/token', token, success)
// TODO: Once https://github.com/oauthjs/node-oauth2-server/pull/289 is merged, implement revoke token route
2016-03-21 10:56:33 +00:00
// ---------------------------------------------------------------------------
2017-05-15 20:22:03 +00:00
export {
usersRouter
}
2016-03-21 10:56:33 +00:00
// ---------------------------------------------------------------------------
2017-06-10 20:15:25 +00:00
function createUser (req: express.Request, res: express.Response, next: express.NextFunction) {
2016-12-11 20:50:51 +00:00
const user = db.User.build({
username: req.body.username,
password: req.body.password,
2017-02-18 08:29:59 +00:00
email: req.body.email,
2017-04-03 19:24:36 +00:00
displayNSFW: false,
2017-05-15 20:22:03 +00:00
role: USER_ROLES.USER
})
user.save()
.then(() => res.type('json').status(204).end())
.catch(err => next(err))
}
2017-06-10 20:15:25 +00:00
function getUserInformation (req: express.Request, res: express.Response, next: express.NextFunction) {
db.User.loadByUsername(res.locals.oauth.token.user.username)
.then(user => res.json(user.toFormatedJSON()))
.catch(err => next(err))
}
2017-06-10 20:15:25 +00: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 20:35:43 +00:00
db.UserVideoRate.load(userId, videoId, null)
.then(ratingObj => {
const rating = ratingObj ? ratingObj.type : 'none'
const json: FormatedUserVideoRate = {
videoId,
rating
}
res.json(json)
})
.catch(err => next(err))
2017-03-08 20:35:43 +00:00
}
2017-06-10 20:15:25 +00:00
function listUsers (req: express.Request, res: express.Response, next: express.NextFunction) {
db.User.listForApi(req.query.start, req.query.count, req.query.sort)
.then(resultList => {
res.json(getFormatedObjects(resultList.data, resultList.total))
})
.catch(err => next(err))
}
2017-06-10 20:15:25 +00:00
function removeUser (req: express.Request, res: express.Response, next: express.NextFunction) {
db.User.loadById(req.params.id)
.then(user => user.destroy())
.then(() => res.sendStatus(204))
.catch(err => {
2017-07-07 16:26:12 +00:00
logger.error('Errors when removed the user.', err)
return next(err)
})
}
2017-06-10 20:15:25 +00:00
function updateUser (req: express.Request, res: express.Response, next: express.NextFunction) {
db.User.loadByUsername(res.locals.oauth.token.user.username)
.then(user => {
if (req.body.password) user.password = req.body.password
if (req.body.displayNSFW !== undefined) user.displayNSFW = req.body.displayNSFW
2017-04-03 19:24:36 +00:00
return user.save()
})
.then(() => res.sendStatus(204))
.catch(err => next(err))
}
2017-06-10 20:15:25 +00:00
function success (req: express.Request, res: express.Response, next: express.NextFunction) {
2016-03-21 10:56:33 +00:00
res.end()
}