2018-08-16 05:26:22 -04:00
|
|
|
import 'multer'
|
2020-06-23 08:10:17 -04:00
|
|
|
import * as express from 'express'
|
|
|
|
import { UserUpdateMe, UserVideoRate as FormattedUserVideoRate, VideoSortField } from '../../../../shared'
|
|
|
|
import { UserVideoQuota } from '../../../../shared/models/users/user-video-quota.model'
|
|
|
|
import { createReqFiles } from '../../../helpers/express-utils'
|
2018-08-16 05:26:22 -04:00
|
|
|
import { getFormattedObjects } from '../../../helpers/utils'
|
2020-06-23 08:10:17 -04:00
|
|
|
import { CONFIG } from '../../../initializers/config'
|
2019-04-11 08:26:41 -04:00
|
|
|
import { MIMETYPES } from '../../../initializers/constants'
|
2020-06-23 08:10:17 -04:00
|
|
|
import { sequelizeTypescript } from '../../../initializers/database'
|
2018-08-16 05:26:22 -04:00
|
|
|
import { sendUpdateActor } from '../../../lib/activitypub/send'
|
2020-06-23 08:10:17 -04:00
|
|
|
import { updateActorAvatarFile } from '../../../lib/avatar'
|
|
|
|
import { sendVerifyUserEmail } from '../../../lib/user'
|
2018-08-16 05:26:22 -04:00
|
|
|
import {
|
2018-09-19 11:02:16 -04:00
|
|
|
asyncMiddleware,
|
|
|
|
asyncRetryTransactionMiddleware,
|
2018-08-16 05:26:22 -04:00
|
|
|
authenticate,
|
|
|
|
paginationValidator,
|
|
|
|
setDefaultPagination,
|
|
|
|
setDefaultSort,
|
2020-08-20 03:19:21 -04:00
|
|
|
setDefaultVideosSort,
|
2018-08-16 05:26:22 -04:00
|
|
|
usersUpdateMeValidator,
|
|
|
|
usersVideoRatingValidator
|
|
|
|
} from '../../../middlewares'
|
2019-01-14 04:44:59 -05:00
|
|
|
import { deleteMeValidator, videoImportsSortValidator, videosSortValidator } from '../../../middlewares/validators'
|
2020-06-23 08:10:17 -04:00
|
|
|
import { updateAvatarValidator } from '../../../middlewares/validators/avatar'
|
|
|
|
import { AccountModel } from '../../../models/account/account'
|
2018-08-16 05:26:22 -04:00
|
|
|
import { AccountVideoRateModel } from '../../../models/account/account-video-rate'
|
|
|
|
import { UserModel } from '../../../models/account/user'
|
|
|
|
import { VideoModel } from '../../../models/video/video'
|
|
|
|
import { VideoImportModel } from '../../../models/video/video-import'
|
|
|
|
|
2018-12-11 08:52:50 -05:00
|
|
|
const reqAvatarFile = createReqFiles([ 'avatarfile' ], MIMETYPES.IMAGE.MIMETYPE_EXT, { avatarfile: CONFIG.STORAGE.TMP_DIR })
|
2018-08-16 05:26:22 -04:00
|
|
|
|
|
|
|
const meRouter = express.Router()
|
|
|
|
|
|
|
|
meRouter.get('/me',
|
|
|
|
authenticate,
|
|
|
|
asyncMiddleware(getUserInformation)
|
|
|
|
)
|
|
|
|
meRouter.delete('/me',
|
|
|
|
authenticate,
|
2020-01-31 10:56:52 -05:00
|
|
|
deleteMeValidator,
|
2018-08-16 05:26:22 -04:00
|
|
|
asyncMiddleware(deleteMe)
|
|
|
|
)
|
|
|
|
|
|
|
|
meRouter.get('/me/video-quota-used',
|
|
|
|
authenticate,
|
|
|
|
asyncMiddleware(getUserVideoQuotaUsed)
|
|
|
|
)
|
|
|
|
|
|
|
|
meRouter.get('/me/videos/imports',
|
|
|
|
authenticate,
|
|
|
|
paginationValidator,
|
|
|
|
videoImportsSortValidator,
|
|
|
|
setDefaultSort,
|
|
|
|
setDefaultPagination,
|
|
|
|
asyncMiddleware(getUserVideoImports)
|
|
|
|
)
|
|
|
|
|
|
|
|
meRouter.get('/me/videos',
|
|
|
|
authenticate,
|
|
|
|
paginationValidator,
|
|
|
|
videosSortValidator,
|
2020-08-20 03:19:21 -04:00
|
|
|
setDefaultVideosSort,
|
2018-08-16 05:26:22 -04:00
|
|
|
setDefaultPagination,
|
|
|
|
asyncMiddleware(getUserVideos)
|
|
|
|
)
|
|
|
|
|
|
|
|
meRouter.get('/me/videos/:videoId/rating',
|
|
|
|
authenticate,
|
|
|
|
asyncMiddleware(usersVideoRatingValidator),
|
|
|
|
asyncMiddleware(getUserVideoRating)
|
|
|
|
)
|
|
|
|
|
|
|
|
meRouter.put('/me',
|
|
|
|
authenticate,
|
2018-09-26 10:28:15 -04:00
|
|
|
asyncMiddleware(usersUpdateMeValidator),
|
2018-09-13 04:22:14 -04:00
|
|
|
asyncRetryTransactionMiddleware(updateMe)
|
2018-08-16 05:26:22 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
meRouter.post('/me/avatar/pick',
|
|
|
|
authenticate,
|
|
|
|
reqAvatarFile,
|
|
|
|
updateAvatarValidator,
|
2018-09-13 04:22:14 -04:00
|
|
|
asyncRetryTransactionMiddleware(updateMyAvatar)
|
2018-08-16 05:26:22 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
meRouter
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2019-03-19 05:35:15 -04:00
|
|
|
async function getUserVideos (req: express.Request, res: express.Response) {
|
|
|
|
const user = res.locals.oauth.token.User
|
2018-08-16 05:26:22 -04:00
|
|
|
const resultList = await VideoModel.listUserVideosForApi(
|
|
|
|
user.Account.id,
|
|
|
|
req.query.start as number,
|
|
|
|
req.query.count as number,
|
2019-12-27 19:10:26 -05:00
|
|
|
req.query.sort as VideoSortField,
|
|
|
|
req.query.search as string
|
2018-08-16 05:26:22 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
const additionalAttributes = {
|
|
|
|
waitTranscoding: true,
|
|
|
|
state: true,
|
|
|
|
scheduledUpdate: true,
|
|
|
|
blacklistInfo: true
|
|
|
|
}
|
|
|
|
return res.json(getFormattedObjects(resultList.data, resultList.total, { additionalAttributes }))
|
|
|
|
}
|
|
|
|
|
2019-03-19 05:35:15 -04:00
|
|
|
async function getUserVideoImports (req: express.Request, res: express.Response) {
|
|
|
|
const user = res.locals.oauth.token.User
|
2018-08-16 05:26:22 -04:00
|
|
|
const resultList = await VideoImportModel.listUserVideoImportsForApi(
|
|
|
|
user.id,
|
|
|
|
req.query.start as number,
|
|
|
|
req.query.count as number,
|
|
|
|
req.query.sort
|
|
|
|
)
|
|
|
|
|
|
|
|
return res.json(getFormattedObjects(resultList.data, resultList.total))
|
|
|
|
}
|
|
|
|
|
2019-03-19 05:35:15 -04:00
|
|
|
async function getUserInformation (req: express.Request, res: express.Response) {
|
2018-08-16 05:26:22 -04:00
|
|
|
// We did not load channels in res.locals.user
|
2020-01-03 08:17:57 -05:00
|
|
|
const user = await UserModel.loadForMeAPI(res.locals.oauth.token.user.username)
|
2018-08-16 05:26:22 -04:00
|
|
|
|
2020-01-03 08:17:57 -05:00
|
|
|
return res.json(user.toMeFormattedJSON())
|
2018-08-16 05:26:22 -04:00
|
|
|
}
|
|
|
|
|
2019-03-19 05:35:15 -04:00
|
|
|
async function getUserVideoQuotaUsed (req: express.Request, res: express.Response) {
|
2020-01-03 08:17:57 -05:00
|
|
|
const user = res.locals.oauth.token.user
|
2018-08-16 05:26:22 -04:00
|
|
|
const videoQuotaUsed = await UserModel.getOriginalVideoFileTotalFromUser(user)
|
2018-08-28 03:01:35 -04:00
|
|
|
const videoQuotaUsedDaily = await UserModel.getOriginalVideoFileTotalDailyFromUser(user)
|
2018-08-16 05:26:22 -04:00
|
|
|
|
|
|
|
const data: UserVideoQuota = {
|
2018-08-28 03:01:35 -04:00
|
|
|
videoQuotaUsed,
|
|
|
|
videoQuotaUsedDaily
|
2018-08-16 05:26:22 -04:00
|
|
|
}
|
|
|
|
return res.json(data)
|
|
|
|
}
|
|
|
|
|
2019-03-19 05:35:15 -04:00
|
|
|
async function getUserVideoRating (req: express.Request, res: express.Response) {
|
2019-08-15 05:53:26 -04:00
|
|
|
const videoId = res.locals.videoId.id
|
2018-08-16 05:26:22 -04:00
|
|
|
const accountId = +res.locals.oauth.token.User.Account.id
|
|
|
|
|
|
|
|
const ratingObj = await AccountVideoRateModel.load(accountId, videoId, null)
|
|
|
|
const rating = ratingObj ? ratingObj.type : 'none'
|
|
|
|
|
|
|
|
const json: FormattedUserVideoRate = {
|
|
|
|
videoId,
|
|
|
|
rating
|
|
|
|
}
|
2018-08-16 09:25:20 -04:00
|
|
|
return res.json(json)
|
2018-08-16 05:26:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
async function deleteMe (req: express.Request, res: express.Response) {
|
2019-03-19 05:35:15 -04:00
|
|
|
const user = res.locals.oauth.token.User
|
2018-08-16 05:26:22 -04:00
|
|
|
|
|
|
|
await user.destroy()
|
|
|
|
|
|
|
|
return res.sendStatus(204)
|
|
|
|
}
|
|
|
|
|
2019-02-11 03:30:29 -05:00
|
|
|
async function updateMe (req: express.Request, res: express.Response) {
|
2018-08-16 05:26:22 -04:00
|
|
|
const body: UserUpdateMe = req.body
|
2019-06-11 05:54:33 -04:00
|
|
|
let sendVerificationEmail = false
|
2018-08-16 05:26:22 -04:00
|
|
|
|
2019-03-19 05:35:15 -04:00
|
|
|
const user = res.locals.oauth.token.user
|
2018-08-16 05:26:22 -04:00
|
|
|
|
|
|
|
if (body.password !== undefined) user.password = body.password
|
|
|
|
if (body.nsfwPolicy !== undefined) user.nsfwPolicy = body.nsfwPolicy
|
2018-10-12 12:12:39 -04:00
|
|
|
if (body.webTorrentEnabled !== undefined) user.webTorrentEnabled = body.webTorrentEnabled
|
2018-08-16 05:26:22 -04:00
|
|
|
if (body.autoPlayVideo !== undefined) user.autoPlayVideo = body.autoPlayVideo
|
2019-09-24 02:48:01 -04:00
|
|
|
if (body.autoPlayNextVideo !== undefined) user.autoPlayNextVideo = body.autoPlayNextVideo
|
2019-12-11 14:20:42 -05:00
|
|
|
if (body.autoPlayNextVideoPlaylist !== undefined) user.autoPlayNextVideoPlaylist = body.autoPlayNextVideoPlaylist
|
2018-12-17 09:52:38 -05:00
|
|
|
if (body.videosHistoryEnabled !== undefined) user.videosHistoryEnabled = body.videosHistoryEnabled
|
2019-06-19 08:55:58 -04:00
|
|
|
if (body.videoLanguages !== undefined) user.videoLanguages = body.videoLanguages
|
2019-07-09 05:45:19 -04:00
|
|
|
if (body.theme !== undefined) user.theme = body.theme
|
2019-08-28 08:40:06 -04:00
|
|
|
if (body.noInstanceConfigWarningModal !== undefined) user.noInstanceConfigWarningModal = body.noInstanceConfigWarningModal
|
|
|
|
if (body.noWelcomeModal !== undefined) user.noWelcomeModal = body.noWelcomeModal
|
2018-08-16 05:26:22 -04:00
|
|
|
|
2019-06-11 05:54:33 -04:00
|
|
|
if (body.email !== undefined) {
|
|
|
|
if (CONFIG.SIGNUP.REQUIRES_EMAIL_VERIFICATION) {
|
|
|
|
user.pendingEmail = body.email
|
|
|
|
sendVerificationEmail = true
|
|
|
|
} else {
|
|
|
|
user.email = body.email
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-28 09:46:56 -04:00
|
|
|
await sequelizeTypescript.transaction(async t => {
|
|
|
|
await user.save({ transaction: t })
|
2018-09-20 04:13:13 -04:00
|
|
|
|
2019-08-28 09:46:56 -04:00
|
|
|
if (body.displayName !== undefined || body.description !== undefined) {
|
|
|
|
const userAccount = await AccountModel.load(user.Account.id, t)
|
2018-08-16 05:26:22 -04:00
|
|
|
|
2019-08-28 08:40:06 -04:00
|
|
|
if (body.displayName !== undefined) userAccount.name = body.displayName
|
|
|
|
if (body.description !== undefined) userAccount.description = body.description
|
|
|
|
await userAccount.save({ transaction: t })
|
2018-08-16 05:26:22 -04:00
|
|
|
|
2019-08-28 08:40:06 -04:00
|
|
|
await sendUpdateActor(userAccount, t)
|
2019-08-28 09:46:56 -04:00
|
|
|
}
|
|
|
|
})
|
2018-08-16 05:26:22 -04:00
|
|
|
|
2019-06-11 05:54:33 -04:00
|
|
|
if (sendVerificationEmail === true) {
|
|
|
|
await sendVerifyUserEmail(user, true)
|
|
|
|
}
|
|
|
|
|
2018-08-16 05:26:22 -04:00
|
|
|
return res.sendStatus(204)
|
|
|
|
}
|
|
|
|
|
2018-12-04 10:02:49 -05:00
|
|
|
async function updateMyAvatar (req: express.Request, res: express.Response) {
|
2020-01-31 10:56:52 -05:00
|
|
|
const avatarPhysicalFile = req.files['avatarfile'][0]
|
2019-03-19 05:35:15 -04:00
|
|
|
const user = res.locals.oauth.token.user
|
2018-08-16 05:26:22 -04:00
|
|
|
|
2018-09-20 04:13:13 -04:00
|
|
|
const userAccount = await AccountModel.load(user.Account.id)
|
2018-08-16 05:26:22 -04:00
|
|
|
|
2018-09-20 05:31:48 -04:00
|
|
|
const avatar = await updateActorAvatarFile(avatarPhysicalFile, userAccount)
|
2018-09-20 04:13:13 -04:00
|
|
|
|
2018-08-16 09:25:20 -04:00
|
|
|
return res.json({ avatar: avatar.toFormattedJSON() })
|
2018-08-16 05:26:22 -04:00
|
|
|
}
|