]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/controllers/api/users.ts
Import torrents with webtorrent
[github/Chocobozzz/PeerTube.git] / server / controllers / api / users.ts
CommitLineData
4d4e5cd4 1import * as express from 'express'
ac81d1a0 2import 'multer'
490b595a 3import * as RateLimit from 'express-rate-limit'
571389d4 4import { UserCreate, UserRight, UserRole, UserUpdate, UserUpdateMe, UserVideoRate as FormattedUserVideoRate } from '../../../shared'
da854ddd 5import { logger } from '../../helpers/logger'
0626e7af 6import { getFormattedObjects } from '../../helpers/utils'
4bbfc6c6 7import { CONFIG, IMAGE_MIMETYPE_EXT, RATES_LIMIT, sequelizeTypescript } from '../../initializers'
2422c46b 8import { sendUpdateActor } from '../../lib/activitypub/send'
ecb4e35f 9import { Emailer } from '../../lib/emailer'
ecb4e35f 10import { Redis } from '../../lib/redis'
50d6de9c 11import { createUserAccountAndChannel } from '../../lib/user'
65fcc311 12import {
f076daa7 13 asyncMiddleware,
90d4bb81 14 asyncRetryTransactionMiddleware,
f076daa7
C
15 authenticate,
16 ensureUserHasRight,
17 ensureUserRegistrationAllowed,
ff2c1fe8 18 ensureUserRegistrationAllowedForIP,
f076daa7
C
19 paginationValidator,
20 setDefaultPagination,
21 setDefaultSort,
22 token,
23 usersAddValidator,
24 usersGetValidator,
25 usersRegisterValidator,
26 usersRemoveValidator,
27 usersSortValidator,
28 usersUpdateMeValidator,
29 usersUpdateValidator,
30 usersVideoRatingValidator
65fcc311 31} from '../../middlewares'
ed31c059
C
32import {
33 usersAskResetPasswordValidator,
34 usersResetPasswordValidator,
35 videoImportsSortValidator,
36 videosSortValidator
37} from '../../middlewares/validators'
3fd3ab2d
C
38import { AccountVideoRateModel } from '../../models/account/account-video-rate'
39import { UserModel } from '../../models/account/user'
f8b8c36b 40import { OAuthTokenModel } from '../../models/oauth/oauth-token'
3fd3ab2d 41import { VideoModel } from '../../models/video/video'
0883b324 42import { VideoSortField } from '../../../client/src/app/shared/video/sort-field.type'
0626e7af 43import { createReqFiles } from '../../helpers/express-utils'
5fcbd898 44import { UserVideoQuota } from '../../../shared/models/users/user-video-quota.model'
4bbfc6c6
C
45import { updateAvatarValidator } from '../../middlewares/validators/avatar'
46import { updateActorAvatarFile } from '../../lib/avatar'
80e36cd9 47import { auditLoggerFactory, UserAuditView } from '../../helpers/audit-logger'
ed31c059 48import { VideoImportModel } from '../../models/video/video-import'
80e36cd9
AB
49
50const auditLogger = auditLoggerFactory('users')
65fcc311 51
ac81d1a0 52const reqAvatarFile = createReqFiles([ 'avatarfile' ], IMAGE_MIMETYPE_EXT, { avatarfile: CONFIG.STORAGE.AVATARS_DIR })
490b595a
C
53const loginRateLimiter = new RateLimit({
54 windowMs: RATES_LIMIT.LOGIN.WINDOW_MS,
55 max: RATES_LIMIT.LOGIN.MAX,
56 delayMs: 0
57})
c5911fd3 58
65fcc311
C
59const usersRouter = express.Router()
60
61usersRouter.get('/me',
62 authenticate,
eb080476 63 asyncMiddleware(getUserInformation)
d38b8281
C
64)
65
ce5496d6
C
66usersRouter.get('/me/video-quota-used',
67 authenticate,
68 asyncMiddleware(getUserVideoQuotaUsed)
69)
70
ed31c059
C
71usersRouter.get('/me/videos/imports',
72 authenticate,
73 paginationValidator,
74 videoImportsSortValidator,
75 setDefaultSort,
76 setDefaultPagination,
77 asyncMiddleware(getUserVideoImports)
78)
79
fd45e8f4
C
80usersRouter.get('/me/videos',
81 authenticate,
82 paginationValidator,
83 videosSortValidator,
1174a847 84 setDefaultSort,
f05a1c30 85 setDefaultPagination,
fd45e8f4
C
86 asyncMiddleware(getUserVideos)
87)
88
65fcc311
C
89usersRouter.get('/me/videos/:videoId/rating',
90 authenticate,
a2431b7d 91 asyncMiddleware(usersVideoRatingValidator),
eb080476 92 asyncMiddleware(getUserVideoRating)
d38b8281 93)
9bd26629 94
65fcc311 95usersRouter.get('/',
86d13ec2
C
96 authenticate,
97 ensureUserHasRight(UserRight.MANAGE_USERS),
65fcc311
C
98 paginationValidator,
99 usersSortValidator,
1174a847 100 setDefaultSort,
f05a1c30 101 setDefaultPagination,
eb080476 102 asyncMiddleware(listUsers)
5c39adb7
C
103)
104
8094a898 105usersRouter.get('/:id',
94ff4c23
C
106 authenticate,
107 ensureUserHasRight(UserRight.MANAGE_USERS),
a2431b7d 108 asyncMiddleware(usersGetValidator),
8094a898
C
109 getUser
110)
111
65fcc311
C
112usersRouter.post('/',
113 authenticate,
954605a8 114 ensureUserHasRight(UserRight.MANAGE_USERS),
a2431b7d 115 asyncMiddleware(usersAddValidator),
90d4bb81 116 asyncRetryTransactionMiddleware(createUser)
9bd26629
C
117)
118
65fcc311 119usersRouter.post('/register',
a2431b7d 120 asyncMiddleware(ensureUserRegistrationAllowed),
ff2c1fe8 121 ensureUserRegistrationAllowedForIP,
a2431b7d 122 asyncMiddleware(usersRegisterValidator),
90d4bb81 123 asyncRetryTransactionMiddleware(registerUser)
2c2e9092
C
124)
125
8094a898
C
126usersRouter.put('/me',
127 authenticate,
128 usersUpdateMeValidator,
eb080476 129 asyncMiddleware(updateMe)
8094a898
C
130)
131
c5911fd3
C
132usersRouter.post('/me/avatar/pick',
133 authenticate,
134 reqAvatarFile,
4bbfc6c6 135 updateAvatarValidator,
c5911fd3
C
136 asyncMiddleware(updateMyAvatar)
137)
138
65fcc311
C
139usersRouter.put('/:id',
140 authenticate,
954605a8 141 ensureUserHasRight(UserRight.MANAGE_USERS),
a2431b7d 142 asyncMiddleware(usersUpdateValidator),
eb080476 143 asyncMiddleware(updateUser)
9bd26629
C
144)
145
65fcc311
C
146usersRouter.delete('/:id',
147 authenticate,
954605a8 148 ensureUserHasRight(UserRight.MANAGE_USERS),
a2431b7d 149 asyncMiddleware(usersRemoveValidator),
eb080476 150 asyncMiddleware(removeUser)
9bd26629 151)
6606150c 152
ecb4e35f
C
153usersRouter.post('/ask-reset-password',
154 asyncMiddleware(usersAskResetPasswordValidator),
155 asyncMiddleware(askResetUserPassword)
156)
157
158usersRouter.post('/:id/reset-password',
159 asyncMiddleware(usersResetPasswordValidator),
160 asyncMiddleware(resetUserPassword)
161)
162
490b595a
C
163usersRouter.post('/token',
164 loginRateLimiter,
165 token,
166 success
167)
9bd26629 168// TODO: Once https://github.com/oauthjs/node-oauth2-server/pull/289 is merged, implement revoke token route
9457bf88
C
169
170// ---------------------------------------------------------------------------
171
65fcc311
C
172export {
173 usersRouter
174}
9457bf88
C
175
176// ---------------------------------------------------------------------------
177
fd45e8f4 178async function getUserVideos (req: express.Request, res: express.Response, next: express.NextFunction) {
3fd3ab2d 179 const user = res.locals.oauth.token.User as UserModel
2186386c 180 const resultList = await VideoModel.listUserVideosForApi(
0883b324
C
181 user.Account.id,
182 req.query.start as number,
183 req.query.count as number,
184 req.query.sort as VideoSortField,
185 false // Display my NSFW videos
186 )
fd45e8f4 187
2baea0c7
C
188 const additionalAttributes = {
189 waitTranscoding: true,
190 state: true,
191 scheduledUpdate: true
192 }
2186386c 193 return res.json(getFormattedObjects(resultList.data, resultList.total, { additionalAttributes }))
fd45e8f4
C
194}
195
ed31c059
C
196async function getUserVideoImports (req: express.Request, res: express.Response, next: express.NextFunction) {
197 const user = res.locals.oauth.token.User as UserModel
198 const resultList = await VideoImportModel.listUserVideoImportsForApi(
199 user.Account.id,
200 req.query.start as number,
201 req.query.count as number,
202 req.query.sort
203 )
204
205 return res.json(getFormattedObjects(resultList.data, resultList.total))
206}
207
90d4bb81 208async function createUser (req: express.Request, res: express.Response) {
4771e000 209 const body: UserCreate = req.body
f05a1c30 210 const userToCreate = new UserModel({
4771e000
C
211 username: body.username,
212 password: body.password,
213 email: body.email,
0883b324 214 nsfwPolicy: CONFIG.INSTANCE.DEFAULT_NSFW_POLICY,
7efe153b 215 autoPlayVideo: true,
954605a8 216 role: body.role,
b0f9f39e 217 videoQuota: body.videoQuota
9bd26629
C
218 })
219
f05a1c30 220 const { user, account } = await createUserAccountAndChannel(userToCreate)
eb080476 221
80e36cd9 222 auditLogger.create(res.locals.oauth.token.User.Account.Actor.getIdentifier(), new UserAuditView(user.toFormattedJSON()))
38fa2065 223 logger.info('User %s with its channel and account created.', body.username)
f05a1c30 224
90d4bb81
C
225 return res.json({
226 user: {
227 id: user.id,
228 account: {
229 id: account.id,
230 uuid: account.Actor.uuid
231 }
232 }
233 }).end()
47e0652b
C
234}
235
90d4bb81 236async function registerUser (req: express.Request, res: express.Response) {
77a5501f
C
237 const body: UserCreate = req.body
238
80e36cd9 239 const userToCreate = new UserModel({
77a5501f
C
240 username: body.username,
241 password: body.password,
242 email: body.email,
0883b324 243 nsfwPolicy: CONFIG.INSTANCE.DEFAULT_NSFW_POLICY,
7efe153b 244 autoPlayVideo: true,
954605a8 245 role: UserRole.USER,
77a5501f
C
246 videoQuota: CONFIG.USER.VIDEO_QUOTA
247 })
248
80e36cd9 249 const { user } = await createUserAccountAndChannel(userToCreate)
47e0652b 250
80e36cd9 251 auditLogger.create(body.username, new UserAuditView(user.toFormattedJSON()))
47e0652b 252 logger.info('User %s with its channel and account registered.', body.username)
90d4bb81
C
253
254 return res.type('json').status(204).end()
77a5501f
C
255}
256
eb080476 257async function getUserInformation (req: express.Request, res: express.Response, next: express.NextFunction) {
fd45e8f4 258 // We did not load channels in res.locals.user
3fd3ab2d 259 const user = await UserModel.loadByUsernameAndPopulateChannels(res.locals.oauth.token.user.username)
eb080476
C
260
261 return res.json(user.toFormattedJSON())
99a64bfe
C
262}
263
ce5496d6
C
264async function getUserVideoQuotaUsed (req: express.Request, res: express.Response, next: express.NextFunction) {
265 // We did not load channels in res.locals.user
266 const user = await UserModel.loadByUsernameAndPopulateChannels(res.locals.oauth.token.user.username)
267 const videoQuotaUsed = await UserModel.getOriginalVideoFileTotalFromUser(user)
268
5fcbd898 269 const data: UserVideoQuota = {
ce5496d6 270 videoQuotaUsed
5fcbd898
C
271 }
272 return res.json(data)
ce5496d6
C
273}
274
8094a898 275function getUser (req: express.Request, res: express.Response, next: express.NextFunction) {
ce5496d6 276 return res.json((res.locals.user as UserModel).toFormattedJSON())
8094a898
C
277}
278
eb080476 279async function getUserVideoRating (req: express.Request, res: express.Response, next: express.NextFunction) {
0a6658fd 280 const videoId = +req.params.videoId
571389d4 281 const accountId = +res.locals.oauth.token.User.Account.id
d38b8281 282
3fd3ab2d 283 const ratingObj = await AccountVideoRateModel.load(accountId, videoId, null)
faab3a84
C
284 const rating = ratingObj ? ratingObj.type : 'none'
285
286 const json: FormattedUserVideoRate = {
287 videoId,
288 rating
289 }
290 res.json(json)
d38b8281
C
291}
292
eb080476 293async function listUsers (req: express.Request, res: express.Response, next: express.NextFunction) {
3fd3ab2d 294 const resultList = await UserModel.listForApi(req.query.start, req.query.count, req.query.sort)
eb080476
C
295
296 return res.json(getFormattedObjects(resultList.data, resultList.total))
9bd26629
C
297}
298
eb080476 299async function removeUser (req: express.Request, res: express.Response, next: express.NextFunction) {
3fd3ab2d 300 const user = await UserModel.loadById(req.params.id)
eb080476
C
301
302 await user.destroy()
303
80e36cd9
AB
304 auditLogger.delete(res.locals.oauth.token.User.Account.Actor.getIdentifier(), new UserAuditView(user.toFormattedJSON()))
305
eb080476 306 return res.sendStatus(204)
9bd26629
C
307}
308
eb080476 309async function updateMe (req: express.Request, res: express.Response, next: express.NextFunction) {
8094a898 310 const body: UserUpdateMe = req.body
4771e000 311
2422c46b 312 const user: UserModel = res.locals.oauth.token.user
80e36cd9 313 const oldUserAuditView = new UserAuditView(user.toFormattedJSON())
1d49e1e2 314
eb080476
C
315 if (body.password !== undefined) user.password = body.password
316 if (body.email !== undefined) user.email = body.email
0883b324 317 if (body.nsfwPolicy !== undefined) user.nsfwPolicy = body.nsfwPolicy
7efe153b 318 if (body.autoPlayVideo !== undefined) user.autoPlayVideo = body.autoPlayVideo
eb080476 319
2422c46b
C
320 await sequelizeTypescript.transaction(async t => {
321 await user.save({ transaction: t })
322
ed56ad11 323 if (body.displayName !== undefined) user.Account.name = body.displayName
2422c46b
C
324 if (body.description !== undefined) user.Account.description = body.description
325 await user.Account.save({ transaction: t })
326
327 await sendUpdateActor(user.Account, t)
80e36cd9
AB
328
329 auditLogger.update(
330 res.locals.oauth.token.User.Account.Actor.getIdentifier(),
331 new UserAuditView(user.toFormattedJSON()),
332 oldUserAuditView
333 )
2422c46b 334 })
eb080476 335
d412e80e 336 return res.sendStatus(204)
9bd26629
C
337}
338
c5911fd3 339async function updateMyAvatar (req: express.Request, res: express.Response, next: express.NextFunction) {
2186386c 340 const avatarPhysicalFile = req.files[ 'avatarfile' ][ 0 ]
80e36cd9
AB
341 const user: UserModel = res.locals.oauth.token.user
342 const oldUserAuditView = new UserAuditView(user.toFormattedJSON())
343 const account = user.Account
c5911fd3 344
4bbfc6c6 345 const avatar = await updateActorAvatarFile(avatarPhysicalFile, account.Actor, account)
c5911fd3 346
80e36cd9
AB
347 auditLogger.update(
348 res.locals.oauth.token.User.Account.Actor.getIdentifier(),
349 new UserAuditView(user.toFormattedJSON()),
350 oldUserAuditView
351 )
352
c5911fd3
C
353 return res
354 .json({
355 avatar: avatar.toFormattedJSON()
356 })
357 .end()
358}
359
eb080476 360async function updateUser (req: express.Request, res: express.Response, next: express.NextFunction) {
8094a898 361 const body: UserUpdate = req.body
80e36cd9
AB
362 const userToUpdate = res.locals.user as UserModel
363 const oldUserAuditView = new UserAuditView(userToUpdate.toFormattedJSON())
364 const roleChanged = body.role !== undefined && body.role !== userToUpdate.role
8094a898 365
80e36cd9
AB
366 if (body.email !== undefined) userToUpdate.email = body.email
367 if (body.videoQuota !== undefined) userToUpdate.videoQuota = body.videoQuota
368 if (body.role !== undefined) userToUpdate.role = body.role
8094a898 369
80e36cd9 370 const user = await userToUpdate.save()
eb080476 371
f8b8c36b
C
372 // Destroy user token to refresh rights
373 if (roleChanged) {
80e36cd9 374 await OAuthTokenModel.deleteUserToken(userToUpdate.id)
f8b8c36b
C
375 }
376
80e36cd9
AB
377 auditLogger.update(
378 res.locals.oauth.token.User.Account.Actor.getIdentifier(),
379 new UserAuditView(user.toFormattedJSON()),
380 oldUserAuditView
381 )
382
265ba139
C
383 // Don't need to send this update to followers, these attributes are not propagated
384
eb080476 385 return res.sendStatus(204)
8094a898
C
386}
387
ecb4e35f
C
388async function askResetUserPassword (req: express.Request, res: express.Response, next: express.NextFunction) {
389 const user = res.locals.user as UserModel
390
391 const verificationString = await Redis.Instance.setResetPasswordVerificationString(user.id)
392 const url = CONFIG.WEBSERVER.URL + '/reset-password?userId=' + user.id + '&verificationString=' + verificationString
393 await Emailer.Instance.addForgetPasswordEmailJob(user.email, url)
394
395 return res.status(204).end()
396}
397
398async function resetUserPassword (req: express.Request, res: express.Response, next: express.NextFunction) {
399 const user = res.locals.user as UserModel
400 user.password = req.body.password
401
402 await user.save()
403
404 return res.status(204).end()
405}
406
69818c93 407function success (req: express.Request, res: express.Response, next: express.NextFunction) {
9457bf88
C
408 res.end()
409}