]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/controllers/api/users/me.ts
cleanup and remove paramSubs
[github/Chocobozzz/PeerTube.git] / server / controllers / api / users / me.ts
CommitLineData
d03cd8bb
C
1import * as express from 'express'
2import 'multer'
3import { UserUpdateMe, UserVideoRate as FormattedUserVideoRate } from '../../../../shared'
4import { getFormattedObjects } from '../../../helpers/utils'
14e2014a 5import { CONFIG, MIMETYPES, sequelizeTypescript } from '../../../initializers'
d03cd8bb
C
6import { sendUpdateActor } from '../../../lib/activitypub/send'
7import {
993cef4b
C
8 asyncMiddleware,
9 asyncRetryTransactionMiddleware,
d03cd8bb
C
10 authenticate,
11 paginationValidator,
12 setDefaultPagination,
13 setDefaultSort,
14 usersUpdateMeValidator,
15 usersVideoRatingValidator
16} from '../../../middlewares'
cf405589 17import { deleteMeValidator, videoImportsSortValidator, videosSortValidator } from '../../../middlewares/validators'
d03cd8bb
C
18import { AccountVideoRateModel } from '../../../models/account/account-video-rate'
19import { UserModel } from '../../../models/account/user'
20import { VideoModel } from '../../../models/video/video'
21import { VideoSortField } from '../../../../client/src/app/shared/video/sort-field.type'
cf405589 22import { createReqFiles } from '../../../helpers/express-utils'
d03cd8bb
C
23import { UserVideoQuota } from '../../../../shared/models/users/user-video-quota.model'
24import { updateAvatarValidator } from '../../../middlewares/validators/avatar'
25import { updateActorAvatarFile } from '../../../lib/avatar'
993cef4b 26import { auditLoggerFactory, getAuditIdFromRes, UserAuditView } from '../../../helpers/audit-logger'
d03cd8bb 27import { VideoImportModel } from '../../../models/video/video-import'
91411dba 28import { AccountModel } from '../../../models/account/account'
d03cd8bb
C
29
30const auditLogger = auditLoggerFactory('users-me')
31
14e2014a 32const reqAvatarFile = createReqFiles([ 'avatarfile' ], MIMETYPES.IMAGE.MIMETYPE_EXT, { avatarfile: CONFIG.STORAGE.TMP_DIR })
d03cd8bb
C
33
34const meRouter = express.Router()
35
36meRouter.get('/me',
37 authenticate,
38 asyncMiddleware(getUserInformation)
39)
40meRouter.delete('/me',
41 authenticate,
42 asyncMiddleware(deleteMeValidator),
43 asyncMiddleware(deleteMe)
44)
45
46meRouter.get('/me/video-quota-used',
47 authenticate,
48 asyncMiddleware(getUserVideoQuotaUsed)
49)
50
51meRouter.get('/me/videos/imports',
52 authenticate,
53 paginationValidator,
54 videoImportsSortValidator,
55 setDefaultSort,
56 setDefaultPagination,
57 asyncMiddleware(getUserVideoImports)
58)
59
60meRouter.get('/me/videos',
61 authenticate,
62 paginationValidator,
63 videosSortValidator,
64 setDefaultSort,
65 setDefaultPagination,
66 asyncMiddleware(getUserVideos)
67)
68
69meRouter.get('/me/videos/:videoId/rating',
70 authenticate,
71 asyncMiddleware(usersVideoRatingValidator),
72 asyncMiddleware(getUserVideoRating)
73)
74
75meRouter.put('/me',
76 authenticate,
a890d1e0 77 asyncMiddleware(usersUpdateMeValidator),
176e2114 78 asyncRetryTransactionMiddleware(updateMe)
d03cd8bb
C
79)
80
81meRouter.post('/me/avatar/pick',
82 authenticate,
83 reqAvatarFile,
84 updateAvatarValidator,
176e2114 85 asyncRetryTransactionMiddleware(updateMyAvatar)
d03cd8bb
C
86)
87
88// ---------------------------------------------------------------------------
89
90export {
91 meRouter
92}
93
94// ---------------------------------------------------------------------------
95
96async function getUserVideos (req: express.Request, res: express.Response, next: express.NextFunction) {
97 const user = res.locals.oauth.token.User as UserModel
98 const resultList = await VideoModel.listUserVideosForApi(
99 user.Account.id,
100 req.query.start as number,
101 req.query.count as number,
102 req.query.sort as VideoSortField
103 )
104
105 const additionalAttributes = {
106 waitTranscoding: true,
107 state: true,
108 scheduledUpdate: true,
109 blacklistInfo: true
110 }
111 return res.json(getFormattedObjects(resultList.data, resultList.total, { additionalAttributes }))
112}
113
114async function getUserVideoImports (req: express.Request, res: express.Response, next: express.NextFunction) {
115 const user = res.locals.oauth.token.User as UserModel
116 const resultList = await VideoImportModel.listUserVideoImportsForApi(
117 user.id,
118 req.query.start as number,
119 req.query.count as number,
120 req.query.sort
121 )
122
123 return res.json(getFormattedObjects(resultList.data, resultList.total))
124}
125
126async function getUserInformation (req: express.Request, res: express.Response, next: express.NextFunction) {
127 // We did not load channels in res.locals.user
128 const user = await UserModel.loadByUsernameAndPopulateChannels(res.locals.oauth.token.user.username)
129
130 return res.json(user.toFormattedJSON())
131}
132
133async function getUserVideoQuotaUsed (req: express.Request, res: express.Response, next: express.NextFunction) {
134 // We did not load channels in res.locals.user
135 const user = await UserModel.loadByUsernameAndPopulateChannels(res.locals.oauth.token.user.username)
136 const videoQuotaUsed = await UserModel.getOriginalVideoFileTotalFromUser(user)
bee0abff 137 const videoQuotaUsedDaily = await UserModel.getOriginalVideoFileTotalDailyFromUser(user)
d03cd8bb
C
138
139 const data: UserVideoQuota = {
bee0abff
FA
140 videoQuotaUsed,
141 videoQuotaUsedDaily
d03cd8bb
C
142 }
143 return res.json(data)
144}
145
146async function getUserVideoRating (req: express.Request, res: express.Response, next: express.NextFunction) {
627621c1 147 const videoId = res.locals.video.id
d03cd8bb
C
148 const accountId = +res.locals.oauth.token.User.Account.id
149
150 const ratingObj = await AccountVideoRateModel.load(accountId, videoId, null)
151 const rating = ratingObj ? ratingObj.type : 'none'
152
153 const json: FormattedUserVideoRate = {
154 videoId,
155 rating
156 }
06a05d5f 157 return res.json(json)
d03cd8bb
C
158}
159
160async function deleteMe (req: express.Request, res: express.Response) {
161 const user: UserModel = res.locals.oauth.token.User
162
163 await user.destroy()
164
993cef4b 165 auditLogger.delete(getAuditIdFromRes(res), new UserAuditView(user.toFormattedJSON()))
d03cd8bb
C
166
167 return res.sendStatus(204)
168}
169
170async function updateMe (req: express.Request, res: express.Response, next: express.NextFunction) {
171 const body: UserUpdateMe = req.body
172
173 const user: UserModel = res.locals.oauth.token.user
174 const oldUserAuditView = new UserAuditView(user.toFormattedJSON())
175
176 if (body.password !== undefined) user.password = body.password
177 if (body.email !== undefined) user.email = body.email
178 if (body.nsfwPolicy !== undefined) user.nsfwPolicy = body.nsfwPolicy
ed638e53 179 if (body.webTorrentEnabled !== undefined) user.webTorrentEnabled = body.webTorrentEnabled
d03cd8bb 180 if (body.autoPlayVideo !== undefined) user.autoPlayVideo = body.autoPlayVideo
8b9a525a 181 if (body.videosHistoryEnabled !== undefined) user.videosHistoryEnabled = body.videosHistoryEnabled
d03cd8bb
C
182
183 await sequelizeTypescript.transaction(async t => {
91411dba
C
184 const userAccount = await AccountModel.load(user.Account.id)
185
d03cd8bb
C
186 await user.save({ transaction: t })
187
91411dba
C
188 if (body.displayName !== undefined) userAccount.name = body.displayName
189 if (body.description !== undefined) userAccount.description = body.description
190 await userAccount.save({ transaction: t })
d03cd8bb 191
91411dba 192 await sendUpdateActor(userAccount, t)
d03cd8bb 193
91411dba 194 auditLogger.update(getAuditIdFromRes(res), new UserAuditView(user.toFormattedJSON()), oldUserAuditView)
d03cd8bb
C
195 })
196
197 return res.sendStatus(204)
198}
199
6040f87d 200async function updateMyAvatar (req: express.Request, res: express.Response) {
d03cd8bb
C
201 const avatarPhysicalFile = req.files[ 'avatarfile' ][ 0 ]
202 const user: UserModel = res.locals.oauth.token.user
203 const oldUserAuditView = new UserAuditView(user.toFormattedJSON())
d03cd8bb 204
91411dba 205 const userAccount = await AccountModel.load(user.Account.id)
d03cd8bb 206
f201a749 207 const avatar = await updateActorAvatarFile(avatarPhysicalFile, userAccount)
91411dba
C
208
209 auditLogger.update(getAuditIdFromRes(res), new UserAuditView(user.toFormattedJSON()), oldUserAuditView)
d03cd8bb 210
06a05d5f 211 return res.json({ avatar: avatar.toFormattedJSON() })
d03cd8bb 212}