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

228 lines
6.4 KiB
TypeScript
Raw Normal View History

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