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

240 lines
6.6 KiB
TypeScript
Raw Normal View History

2017-06-05 19:53:49 +00:00
import * as express from 'express'
2017-11-10 16:27:49 +00:00
import { UserCreate, UserRight, UserRole, UserUpdate, UserUpdateMe, UserVideoRate as FormattedUserVideoRate } from '../../../shared'
import { getFormattedObjects, logger, retryTransactionWrapper } from '../../helpers'
import { CONFIG, database as db } from '../../initializers'
import { createUserAccountAndChannel } from '../../lib'
2017-05-15 20:22:03 +00:00
import {
2017-11-10 16:27:49 +00:00
asyncMiddleware,
2017-05-15 20:22:03 +00:00
authenticate,
ensureUserHasRight,
ensureUserRegistrationAllowed,
2017-05-15 20:22:03 +00:00
paginationValidator,
setPagination,
setUsersSort,
2017-10-25 09:55:06 +00:00
token,
2017-11-10 16:27:49 +00:00
usersAddValidator,
usersGetValidator,
usersRegisterValidator,
usersRemoveValidator,
usersSortValidator,
usersUpdateMeValidator,
usersUpdateValidator,
usersVideoRatingValidator
2017-05-15 20:22:03 +00:00
} from '../../middlewares'
2017-10-31 10:52:52 +00:00
import { setVideosSort } from '../../middlewares/sort'
2017-11-10 16:27:49 +00:00
import { videosSortValidator } from '../../middlewares/validators/sort'
import { UserInstance } from '../../models'
2017-05-15 20:22:03 +00:00
const usersRouter = express.Router()
usersRouter.get('/me',
authenticate,
2017-10-25 09:55:06 +00:00
asyncMiddleware(getUserInformation)
2017-03-08 20:35:43 +00:00
)
2017-10-31 10:52:52 +00:00
usersRouter.get('/me/videos',
authenticate,
paginationValidator,
videosSortValidator,
setVideosSort,
setPagination,
asyncMiddleware(getUserVideos)
)
2017-05-15 20:22:03 +00:00
usersRouter.get('/me/videos/:videoId/rating',
authenticate,
usersVideoRatingValidator,
2017-10-25 09:55:06 +00:00
asyncMiddleware(getUserVideoRating)
2017-03-08 20:35:43 +00:00
)
2017-05-15 20:22:03 +00:00
usersRouter.get('/',
paginationValidator,
usersSortValidator,
setUsersSort,
setPagination,
2017-10-25 09:55:06 +00:00
asyncMiddleware(listUsers)
2016-08-16 20:31:45 +00:00
)
2017-09-05 19:29:39 +00:00
usersRouter.get('/:id',
usersGetValidator,
getUser
)
2017-05-15 20:22:03 +00:00
usersRouter.post('/',
authenticate,
ensureUserHasRight(UserRight.MANAGE_USERS),
2017-05-15 20:22:03 +00:00
usersAddValidator,
2017-10-24 17:41:09 +00:00
createUserRetryWrapper
)
2017-05-15 20:22:03 +00:00
usersRouter.post('/register',
ensureUserRegistrationAllowed,
2017-09-06 14:35:40 +00:00
usersRegisterValidator,
2017-11-16 17:40:50 +00:00
asyncMiddleware(registerUserRetryWrapper)
)
2017-09-05 19:29:39 +00:00
usersRouter.put('/me',
authenticate,
usersUpdateMeValidator,
2017-10-25 09:55:06 +00:00
asyncMiddleware(updateMe)
2017-09-05 19:29:39 +00:00
)
2017-05-15 20:22:03 +00:00
usersRouter.put('/:id',
authenticate,
ensureUserHasRight(UserRight.MANAGE_USERS),
2017-05-15 20:22:03 +00:00
usersUpdateValidator,
2017-10-25 09:55:06 +00:00
asyncMiddleware(updateUser)
)
2017-05-15 20:22:03 +00:00
usersRouter.delete('/:id',
authenticate,
ensureUserHasRight(UserRight.MANAGE_USERS),
2017-05-15 20:22:03 +00:00
usersRemoveValidator,
2017-10-25 09:55:06 +00:00
asyncMiddleware(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-10-31 10:52:52 +00:00
async function getUserVideos (req: express.Request, res: express.Response, next: express.NextFunction) {
const user = res.locals.oauth.token.User
const resultList = await db.Video.listUserVideosForApi(user.id ,req.query.start, req.query.count, req.query.sort)
return res.json(getFormattedObjects(resultList.data, resultList.total))
}
2017-10-25 09:55:06 +00:00
async function createUserRetryWrapper (req: express.Request, res: express.Response, next: express.NextFunction) {
2017-10-24 17:41:09 +00:00
const options = {
2017-11-16 17:40:50 +00:00
arguments: [ req ],
2017-10-24 17:41:09 +00:00
errorMessage: 'Cannot insert the user with many retries.'
}
2017-10-25 09:55:06 +00:00
await retryTransactionWrapper(createUser, options)
// TODO : include Location of the new user -> 201
return res.type('json').status(204).end()
2017-10-24 17:41:09 +00:00
}
2017-11-16 17:40:50 +00:00
async function createUser (req: express.Request) {
const body: UserCreate = req.body
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,
role: body.role,
2017-09-04 18:07:54 +00:00
videoQuota: body.videoQuota
})
2017-11-10 13:48:08 +00:00
await createUserAccountAndChannel(user)
2017-10-25 09:55:06 +00:00
2017-11-10 13:48:08 +00:00
logger.info('User %s with its channel and account created.', body.username)
}
2017-11-16 17:40:50 +00:00
async function registerUserRetryWrapper (req: express.Request, res: express.Response, next: express.NextFunction) {
const options = {
arguments: [ req ],
errorMessage: 'Cannot insert the user with many retries.'
}
await retryTransactionWrapper(registerUser, options)
return res.type('json').status(204).end()
}
async function registerUser (req: express.Request) {
2017-09-06 14:35:40 +00:00
const body: UserCreate = req.body
const user = db.User.build({
username: body.username,
password: body.password,
email: body.email,
displayNSFW: false,
role: UserRole.USER,
2017-09-06 14:35:40 +00:00
videoQuota: CONFIG.USER.VIDEO_QUOTA
})
2017-11-10 13:48:08 +00:00
await createUserAccountAndChannel(user)
2017-11-16 17:40:50 +00:00
logger.info('User %s with its channel and account registered.', body.username)
2017-09-06 14:35:40 +00:00
}
2017-10-25 09:55:06 +00:00
async function getUserInformation (req: express.Request, res: express.Response, next: express.NextFunction) {
2017-10-31 10:52:52 +00:00
// We did not load channels in res.locals.user
2017-10-25 09:55:06 +00:00
const user = await db.User.loadByUsernameAndPopulateChannels(res.locals.oauth.token.user.username)
return res.json(user.toFormattedJSON())
}
2017-09-05 19:29:39 +00:00
function getUser (req: express.Request, res: express.Response, next: express.NextFunction) {
return res.json(res.locals.user.toFormattedJSON())
2017-09-05 19:29:39 +00:00
}
2017-10-25 09:55:06 +00:00
async function getUserVideoRating (req: express.Request, res: express.Response, next: express.NextFunction) {
const videoId = +req.params.videoId
2017-11-10 16:27:49 +00:00
const accountId = +res.locals.oauth.token.User.Account.id
2017-03-08 20:35:43 +00:00
2017-11-10 16:27:49 +00:00
const ratingObj = await db.AccountVideoRate.load(accountId, videoId, null)
2017-10-26 06:51:11 +00:00
const rating = ratingObj ? ratingObj.type : 'none'
const json: FormattedUserVideoRate = {
videoId,
rating
}
res.json(json)
2017-03-08 20:35:43 +00:00
}
2017-10-25 09:55:06 +00:00
async function listUsers (req: express.Request, res: express.Response, next: express.NextFunction) {
const resultList = await db.User.listForApi(req.query.start, req.query.count, req.query.sort)
return res.json(getFormattedObjects(resultList.data, resultList.total))
}
2017-10-25 09:55:06 +00:00
async function removeUser (req: express.Request, res: express.Response, next: express.NextFunction) {
const user = await db.User.loadById(req.params.id)
await user.destroy()
return res.sendStatus(204)
}
2017-10-25 09:55:06 +00:00
async function updateMe (req: express.Request, res: express.Response, next: express.NextFunction) {
2017-09-05 19:29:39 +00:00
const body: UserUpdateMe = req.body
2017-09-05 19:29:39 +00:00
// FIXME: user is not already a Sequelize instance?
2017-10-25 09:55:06 +00:00
const user = res.locals.oauth.token.user
2017-04-03 19:24:36 +00:00
2017-10-25 09:55:06 +00:00
if (body.password !== undefined) user.password = body.password
if (body.email !== undefined) user.email = body.email
if (body.displayNSFW !== undefined) user.displayNSFW = body.displayNSFW
await user.save()
2017-10-25 14:52:01 +00:00
return res.sendStatus(204)
}
2017-10-25 09:55:06 +00:00
async function updateUser (req: express.Request, res: express.Response, next: express.NextFunction) {
2017-09-05 19:29:39 +00:00
const body: UserUpdate = req.body
2017-09-06 14:35:40 +00:00
const user: UserInstance = res.locals.user
2017-09-05 19:29:39 +00:00
if (body.email !== undefined) user.email = body.email
if (body.videoQuota !== undefined) user.videoQuota = body.videoQuota
if (body.role !== undefined) user.role = body.role
2017-09-05 19:29:39 +00:00
2017-10-25 09:55:06 +00:00
await user.save()
return res.sendStatus(204)
2017-09-05 19:29:39 +00:00
}
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()
}