PeerTube/server/core/controllers/api/users/me.ts

291 lines
8.5 KiB
TypeScript
Raw Normal View History

2018-08-16 11:26:22 +02:00
import 'multer'
2021-08-27 14:32:44 +02:00
import express from 'express'
import { pick } from '@peertube/peertube-core-utils'
import {
ActorImageType,
HttpStatusCode,
UserUpdateMe,
UserVideoQuota,
UserVideoRate as FormattedUserVideoRate
} from '@peertube/peertube-models'
import { auditLoggerFactory, getAuditIdFromRes, UserAuditView } from '@server/helpers/audit-logger.js'
import { Hooks } from '@server/lib/plugins/hooks.js'
import { AttributesOnly } from '@peertube/peertube-typescript-utils'
import { createReqFiles } from '../../../helpers/express-utils.js'
import { getFormattedObjects } from '../../../helpers/utils.js'
import { CONFIG } from '../../../initializers/config.js'
import { MIMETYPES } from '../../../initializers/constants.js'
import { sequelizeTypescript } from '../../../initializers/database.js'
import { sendUpdateActor } from '../../../lib/activitypub/send/index.js'
import { deleteLocalActorImageFile, updateLocalActorImageFiles } from '../../../lib/local-actor.js'
import { getOriginalVideoFileTotalDailyFromUser, getOriginalVideoFileTotalFromUser, sendVerifyUserEmail } from '../../../lib/user.js'
2018-08-16 11:26:22 +02:00
import {
2018-09-19 17:02:16 +02:00
asyncMiddleware,
asyncRetryTransactionMiddleware,
2018-08-16 11:26:22 +02:00
authenticate,
paginationValidator,
setDefaultPagination,
setDefaultSort,
setDefaultVideosSort,
2018-08-16 11:26:22 +02:00
usersUpdateMeValidator,
usersVideoRatingValidator
} from '../../../middlewares/index.js'
import { updateAvatarValidator } from '../../../middlewares/validators/actor-image.js'
import {
deleteMeValidator,
getMyVideoImportsValidator,
usersVideosValidator,
videoImportsSortValidator,
videosSortValidator
} from '../../../middlewares/validators/index.js'
import { AccountVideoRateModel } from '../../../models/account/account-video-rate.js'
import { AccountModel } from '../../../models/account/account.js'
import { UserModel } from '../../../models/user/user.js'
import { VideoImportModel } from '../../../models/video/video-import.js'
import { VideoModel } from '../../../models/video/video.js'
const auditLogger = auditLoggerFactory('users')
2018-08-16 11:26:22 +02:00
const reqAvatarFile = createReqFiles([ 'avatarfile' ], MIMETYPES.IMAGE.MIMETYPE_EXT)
2018-08-16 11:26:22 +02:00
const meRouter = express.Router()
meRouter.get('/me',
authenticate,
asyncMiddleware(getUserInformation)
)
meRouter.delete('/me',
authenticate,
2020-01-31 16:56:52 +01:00
deleteMeValidator,
2018-08-16 11:26:22 +02:00
asyncMiddleware(deleteMe)
)
meRouter.get('/me/video-quota-used',
authenticate,
asyncMiddleware(getUserVideoQuotaUsed)
)
meRouter.get('/me/videos/imports',
authenticate,
paginationValidator,
videoImportsSortValidator,
setDefaultSort,
setDefaultPagination,
getMyVideoImportsValidator,
2018-08-16 11:26:22 +02:00
asyncMiddleware(getUserVideoImports)
)
meRouter.get('/me/videos',
authenticate,
paginationValidator,
videosSortValidator,
setDefaultVideosSort,
2018-08-16 11:26:22 +02:00
setDefaultPagination,
asyncMiddleware(usersVideosValidator),
2018-08-16 11:26:22 +02:00
asyncMiddleware(getUserVideos)
)
meRouter.get('/me/videos/:videoId/rating',
authenticate,
asyncMiddleware(usersVideoRatingValidator),
asyncMiddleware(getUserVideoRating)
)
meRouter.put('/me',
authenticate,
2018-09-26 16:28:15 +02:00
asyncMiddleware(usersUpdateMeValidator),
asyncRetryTransactionMiddleware(updateMe)
2018-08-16 11:26:22 +02:00
)
meRouter.post('/me/avatar/pick',
authenticate,
reqAvatarFile,
updateAvatarValidator,
asyncRetryTransactionMiddleware(updateMyAvatar)
2018-08-16 11:26:22 +02:00
)
meRouter.delete('/me/avatar',
authenticate,
asyncRetryTransactionMiddleware(deleteMyAvatar)
)
2018-08-16 11:26:22 +02:00
// ---------------------------------------------------------------------------
export {
meRouter
}
// ---------------------------------------------------------------------------
2019-03-19 10:35:15 +01:00
async function getUserVideos (req: express.Request, res: express.Response) {
const user = res.locals.oauth.token.User
2021-01-20 15:28:34 +01:00
const apiOptions = await Hooks.wrapObject({
accountId: user.Account.id,
start: req.query.start,
count: req.query.count,
sort: req.query.sort,
search: req.query.search,
channelId: res.locals.videoChannel?.id,
isLive: req.query.isLive
2021-01-20 15:28:34 +01:00
}, 'filter:api.user.me.videos.list.params')
const resultList = await Hooks.wrapPromiseFun(
2024-02-22 10:12:04 +01:00
VideoModel.listUserVideosForApi.bind(VideoModel),
2021-01-20 15:28:34 +01:00
apiOptions,
'filter:api.user.me.videos.list.result'
2018-08-16 11:26:22 +02:00
)
const additionalAttributes = {
waitTranscoding: true,
state: true,
scheduledUpdate: true,
blacklistInfo: true
}
return res.json(getFormattedObjects(resultList.data, resultList.total, { additionalAttributes }))
}
2019-03-19 10:35:15 +01:00
async function getUserVideoImports (req: express.Request, res: express.Response) {
const user = res.locals.oauth.token.User
const resultList = await VideoImportModel.listUserVideoImportsForApi({
userId: user.id,
...pick(req.query, [ 'targetUrl', 'start', 'count', 'sort', 'search', 'videoChannelSyncId' ])
})
2018-08-16 11:26:22 +02:00
return res.json(getFormattedObjects(resultList.data, resultList.total))
}
2019-03-19 10:35:15 +01:00
async function getUserInformation (req: express.Request, res: express.Response) {
2018-08-16 11:26:22 +02:00
// We did not load channels in res.locals.user
const user = await UserModel.loadForMeAPI(res.locals.oauth.token.user.id)
2018-08-16 11:26:22 +02:00
const result = await Hooks.wrapObject(
user.toMeFormattedJSON(),
'filter:api.user.me.get.result',
{ user }
)
return res.json(result)
2018-08-16 11:26:22 +02:00
}
2019-03-19 10:35:15 +01:00
async function getUserVideoQuotaUsed (req: express.Request, res: express.Response) {
const user = res.locals.oauth.token.user
2020-09-25 16:19:35 +02:00
const videoQuotaUsed = await getOriginalVideoFileTotalFromUser(user)
const videoQuotaUsedDaily = await getOriginalVideoFileTotalDailyFromUser(user)
2018-08-16 11:26:22 +02:00
const data: UserVideoQuota = {
videoQuotaUsed,
videoQuotaUsedDaily
2018-08-16 11:26:22 +02:00
}
return res.json(data)
}
2019-03-19 10:35:15 +01:00
async function getUserVideoRating (req: express.Request, res: express.Response) {
2019-08-15 11:53:26 +02:00
const videoId = res.locals.videoId.id
2018-08-16 11:26:22 +02: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
}
return res.json(json)
2018-08-16 11:26:22 +02:00
}
async function deleteMe (req: express.Request, res: express.Response) {
const user = await UserModel.loadByIdWithChannels(res.locals.oauth.token.User.id)
auditLogger.delete(getAuditIdFromRes(res), new UserAuditView(user.toFormattedJSON()))
2018-08-16 11:26:22 +02:00
await user.destroy()
return res.status(HttpStatusCode.NO_CONTENT_204).end()
2018-08-16 11:26:22 +02:00
}
async function updateMe (req: express.Request, res: express.Response) {
2018-08-16 11:26:22 +02:00
const body: UserUpdateMe = req.body
2019-06-11 11:54:33 +02:00
let sendVerificationEmail = false
2018-08-16 11:26:22 +02:00
2019-03-19 10:35:15 +01:00
const user = res.locals.oauth.token.user
2018-08-16 11:26:22 +02:00
2021-05-12 14:51:17 +02:00
const keysToUpdate: (keyof UserUpdateMe & keyof AttributesOnly<UserModel>)[] = [
'password',
'nsfwPolicy',
'p2pEnabled',
2021-05-12 14:51:17 +02:00
'autoPlayVideo',
'autoPlayNextVideo',
'autoPlayNextVideoPlaylist',
'videosHistoryEnabled',
'videoLanguages',
'theme',
'noInstanceConfigWarningModal',
'noAccountSetupWarningModal',
Add Podcast RSS feeds (#5487) * Initial test implementation of Podcast RSS This is a pretty simple implementation to add support for The Podcast Namespace in RSS -- instead of affecting the existing RSS implementation, this adds a new UI option. I attempted to retain compatibility with the rest of the RSS feed implementation as much as possible and have created a temporary fork of the "pfeed" library to support this effort. * Update to pfeed-podcast 1.2.2 * Initial test implementation of Podcast RSS This is a pretty simple implementation to add support for The Podcast Namespace in RSS -- instead of affecting the existing RSS implementation, this adds a new UI option. I attempted to retain compatibility with the rest of the RSS feed implementation as much as possible and have created a temporary fork of the "pfeed" library to support this effort. * Update to pfeed-podcast 1.2.2 * Initial test implementation of Podcast RSS This is a pretty simple implementation to add support for The Podcast Namespace in RSS -- instead of affecting the existing RSS implementation, this adds a new UI option. I attempted to retain compatibility with the rest of the RSS feed implementation as much as possible and have created a temporary fork of the "pfeed" library to support this effort. * Update to pfeed-podcast 1.2.2 * Add correct feed image to RSS channel * Prefer HLS videos for podcast RSS Remove video/stream titles, add optional height attribute to podcast RSS * Prefix podcast RSS images with root server URL * Add optional video query support to include captions * Add transcripts & person images to podcast RSS feed * Prefer webseed/webtorrent files over HLS fragmented mp4s * Experimentally adding podcast fields to basic config page * Add validation for new basic config fields * Don't include "content" in podcast feed, use full description for "description" * Initial test implementation of Podcast RSS This is a pretty simple implementation to add support for The Podcast Namespace in RSS -- instead of affecting the existing RSS implementation, this adds a new UI option. I attempted to retain compatibility with the rest of the RSS feed implementation as much as possible and have created a temporary fork of the "pfeed" library to support this effort. * Update to pfeed-podcast 1.2.2 * Add correct feed image to RSS channel * Prefer HLS videos for podcast RSS Remove video/stream titles, add optional height attribute to podcast RSS * Prefix podcast RSS images with root server URL * Add optional video query support to include captions * Add transcripts & person images to podcast RSS feed * Prefer webseed/webtorrent files over HLS fragmented mp4s * Experimentally adding podcast fields to basic config page * Add validation for new basic config fields * Don't include "content" in podcast feed, use full description for "description" * Add medium/socialInteract to podcast RSS feeds. Use HTML for description * Change base production image to bullseye, install prosody in image * Add liveItem and trackers to Podcast RSS feeds Remove height from alternateEnclosure, replaced with title. * Clear Podcast RSS feed cache when live streams start/end * Upgrade to Node 16 * Refactor clearCacheRoute to use ApiCache * Remove unnecessary type hint * Update dockerfile to node 16, install python-is-python2 * Use new file paths for captions/playlists * Fix legacy videos in RSS after migration to object storage * Improve method of identifying non-fragmented mp4s in podcast RSS feeds * Don't include fragmented MP4s in podcast RSS feeds * Add experimental support for podcast:categories on the podcast RSS item * Fix undefined category when no videos exist Allows for empty feeds to exist (important for feeds that might only go live) * Add support for podcast:locked -- user has to opt in to show their email * Use comma for podcast:categories delimiter * Make cache clearing async * Fix merge, temporarily test with pfeed-podcast * Syntax changes * Add EXT_MIMETYPE constants for captions * Update & fix tests, fix enclosure mimetypes, remove admin email * Add test for podacst:socialInteract * Add filters hooks for podcast customTags * Remove showdown, updated to pfeed-podcast 6.1.2 * Add 'action:api.live-video.state.updated' hook * Avoid assigning undefined category to podcast feeds * Remove nvmrc * Remove comment * Remove unused podcast config * Remove more unused podcast config * Fix MChannelAccountDefault type hint missed in merge * Remove extra line * Re-add newline in config * Fix lint errors for isEmailPublic * Fix thumbnails in podcast feeds * Requested changes based on review * Provide podcast rss 2.0 only on video channels * Misc cleanup for a less messy PR * Lint fixes * Remove pfeed-podcast * Add peertube version to new hooks * Don't use query include, remove TODO * Remove film medium hack * Clear podcast rss cache before video/channel update hooks * Clear podcast rss cache before video uploaded/deleted hooks * Refactor podcast feed cache clearing * Set correct person name from video channel * Styling * Fix tests --------- Co-authored-by: Chocobozzz <me@florianbigard.com>
2023-05-22 16:00:05 +02:00
'noWelcomeModal',
'emailPublic',
'p2pEnabled'
2021-05-12 14:51:17 +02:00
]
for (const key of keysToUpdate) {
if (body[key] !== undefined) user.set(key, body[key])
}
2018-08-16 11:26:22 +02:00
2019-06-11 11:54:33 +02: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 15:46:56 +02:00
await sequelizeTypescript.transaction(async t => {
await user.save({ transaction: t })
2021-05-12 14:51:17 +02:00
if (body.displayName === undefined && body.description === undefined) return
2018-08-16 11:26:22 +02:00
2021-05-12 14:51:17 +02:00
const userAccount = await AccountModel.load(user.Account.id, t)
2018-08-16 11:26:22 +02:00
2021-05-12 14:51:17 +02:00
if (body.displayName !== undefined) userAccount.name = body.displayName
if (body.description !== undefined) userAccount.description = body.description
await userAccount.save({ transaction: t })
await sendUpdateActor(userAccount, t)
2019-08-28 15:46:56 +02:00
})
2018-08-16 11:26:22 +02:00
2019-06-11 11:54:33 +02:00
if (sendVerificationEmail === true) {
await sendVerifyUserEmail(user, true)
}
return res.status(HttpStatusCode.NO_CONTENT_204).end()
2018-08-16 11:26:22 +02:00
}
2018-12-04 16:02:49 +01:00
async function updateMyAvatar (req: express.Request, res: express.Response) {
2020-01-31 16:56:52 +01:00
const avatarPhysicalFile = req.files['avatarfile'][0]
2019-03-19 10:35:15 +01:00
const user = res.locals.oauth.token.user
2018-08-16 11:26:22 +02:00
const userAccount = await AccountModel.load(user.Account.id)
2018-08-16 11:26:22 +02:00
2024-02-12 10:47:52 +01:00
const avatars = await updateLocalActorImageFiles({
accountOrChannel: userAccount,
imagePhysicalFile: avatarPhysicalFile,
type: ActorImageType.AVATAR,
sendActorUpdate: true
})
return res.json({
avatars: avatars.map(avatar => avatar.toFormattedJSON())
})
2018-08-16 11:26:22 +02:00
}
async function deleteMyAvatar (req: express.Request, res: express.Response) {
const user = res.locals.oauth.token.user
const userAccount = await AccountModel.load(user.Account.id)
2021-04-06 17:01:35 +02:00
await deleteLocalActorImageFile(userAccount, ActorImageType.AVATAR)
return res.json({ avatars: [] })
}