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

160 lines
4.1 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'
2017-09-04 18:07:54 +00:00
import { USER_ROLES, CONFIG } from '../../initializers'
2017-08-25 09:45:31 +00:00
import { logger, getFormattedObjects } from '../../helpers'
2017-05-15 20:22:03 +00:00
import {
authenticate,
ensureIsAdmin,
ensureUserRegistrationAllowed,
2017-05-15 20:22:03 +00:00
usersAddValidator,
usersUpdateValidator,
usersRemoveValidator,
usersVideoRatingValidator,
paginationValidator,
setPagination,
usersSortValidator,
setUsersSort,
token
} from '../../middlewares'
2017-08-25 09:45:31 +00:00
import { UserVideoRate as FormattedUserVideoRate, UserCreate, UserUpdate } 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',
ensureUserRegistrationAllowed,
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) {
const body: UserCreate = req.body
2017-09-04 18:07:54 +00:00
// On registration, we set the user video quota
if (body.videoQuota === undefined) {
body.videoQuota = CONFIG.USER.VIDEO_QUOTA
}
2016-12-11 20:50:51 +00:00
const user = db.User.build({
username: body.username,
password: body.password,
email: body.email,
2017-04-03 19:24:36 +00:00
displayNSFW: false,
2017-09-04 18:07:54 +00:00
role: USER_ROLES.USER,
videoQuota: body.videoQuota
})
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)
2017-08-25 09:45:31 +00:00
.then(user => res.json(user.toFormattedJSON()))
.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
2017-06-10 20:15:25 +00:00
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'
2017-08-25 09:45:31 +00:00
const json: FormattedUserVideoRate = {
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 => {
2017-08-25 09:45:31 +00:00
res.json(getFormattedObjects(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) {
const body: UserUpdate = req.body
db.User.loadByUsername(res.locals.oauth.token.user.username)
.then(user => {
if (body.password) user.password = body.password
if (body.displayNSFW !== undefined) user.displayNSFW = body.displayNSFW
2017-09-04 18:07:54 +00:00
if (body.videoQuota !== undefined) user.videoQuota = body.videoQuota
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()
}