2018-08-16 11:26:22 +02:00
|
|
|
import 'multer'
|
2021-08-27 14:32:44 +02:00
|
|
|
import express from 'express'
|
2023-07-31 14:34:36 +02:00
|
|
|
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,
|
2020-08-20 09:19:21 +02:00
|
|
|
setDefaultVideosSort,
|
2018-08-16 11:26:22 +02:00
|
|
|
usersUpdateMeValidator,
|
|
|
|
usersVideoRatingValidator
|
2023-07-31 14:34:36 +02:00
|
|
|
} from '../../../middlewares/index.js'
|
|
|
|
import { updateAvatarValidator } from '../../../middlewares/validators/actor-image.js'
|
2022-08-10 11:51:13 +02:00
|
|
|
import {
|
|
|
|
deleteMeValidator,
|
|
|
|
getMyVideoImportsValidator,
|
|
|
|
usersVideosValidator,
|
|
|
|
videoImportsSortValidator,
|
|
|
|
videosSortValidator
|
2023-07-31 14:34:36 +02:00
|
|
|
} 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'
|
2021-01-04 09:54:48 +01:00
|
|
|
|
|
|
|
const auditLogger = auditLoggerFactory('users')
|
2018-08-16 11:26:22 +02:00
|
|
|
|
2022-03-04 10:57:36 +01: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,
|
2022-08-10 11:51:13 +02:00
|
|
|
getMyVideoImportsValidator,
|
2018-08-16 11:26:22 +02:00
|
|
|
asyncMiddleware(getUserVideoImports)
|
|
|
|
)
|
|
|
|
|
|
|
|
meRouter.get('/me/videos',
|
|
|
|
authenticate,
|
|
|
|
paginationValidator,
|
|
|
|
videosSortValidator,
|
2020-08-20 09:19:21 +02:00
|
|
|
setDefaultVideosSort,
|
2018-08-16 11:26:22 +02:00
|
|
|
setDefaultPagination,
|
2021-10-20 09:05:43 +02:00
|
|
|
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),
|
2018-09-13 10:22:14 +02:00
|
|
|
asyncRetryTransactionMiddleware(updateMe)
|
2018-08-16 11:26:22 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
meRouter.post('/me/avatar/pick',
|
|
|
|
authenticate,
|
|
|
|
reqAvatarFile,
|
|
|
|
updateAvatarValidator,
|
2018-09-13 10:22:14 +02:00
|
|
|
asyncRetryTransactionMiddleware(updateMyAvatar)
|
2018-08-16 11:26:22 +02:00
|
|
|
)
|
|
|
|
|
2021-01-13 09:12:55 +01: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,
|
2021-05-03 11:06:19 +02:00
|
|
|
search: req.query.search,
|
2021-10-20 09:05:43 +02:00
|
|
|
channelId: res.locals.videoChannel?.id,
|
2021-05-03 11:06:19 +02:00
|
|
|
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
|
2022-01-19 14:58:16 +01:00
|
|
|
const resultList = await VideoImportModel.listUserVideoImportsForApi({
|
|
|
|
userId: user.id,
|
|
|
|
|
2022-08-10 11:51:13 +02:00
|
|
|
...pick(req.query, [ 'targetUrl', 'start', 'count', 'sort', 'search', 'videoChannelSyncId' ])
|
2022-01-19 14:58:16 +01:00
|
|
|
})
|
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
|
2021-01-11 13:53:08 +01:00
|
|
|
const user = await UserModel.loadForMeAPI(res.locals.oauth.token.user.id)
|
2018-08-16 11:26:22 +02:00
|
|
|
|
2024-03-26 11:51:02 +01: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) {
|
2020-01-03 14:17:57 +01:00
|
|
|
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 = {
|
2018-08-28 09:01:35 +02:00
|
|
|
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
|
|
|
|
}
|
2018-08-16 15:25:20 +02:00
|
|
|
return res.json(json)
|
2018-08-16 11:26:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
async function deleteMe (req: express.Request, res: express.Response) {
|
2021-01-04 09:54:48 +01:00
|
|
|
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()
|
|
|
|
|
2021-06-01 01:36:53 +02:00
|
|
|
return res.status(HttpStatusCode.NO_CONTENT_204).end()
|
2018-08-16 11:26:22 +02:00
|
|
|
}
|
|
|
|
|
2019-02-11 09:30:29 +01: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',
|
2021-12-15 15:58:10 +01:00
|
|
|
'p2pEnabled',
|
2021-05-12 14:51:17 +02:00
|
|
|
'autoPlayVideo',
|
|
|
|
'autoPlayNextVideo',
|
|
|
|
'autoPlayNextVideoPlaylist',
|
|
|
|
'videosHistoryEnabled',
|
|
|
|
'videoLanguages',
|
|
|
|
'theme',
|
|
|
|
'noInstanceConfigWarningModal',
|
2021-08-27 10:15:55 +02:00
|
|
|
'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',
|
2023-07-11 09:21:13 +02:00
|
|
|
'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 })
|
2018-09-20 10:13:13 +02:00
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
2021-06-01 01:36:53 +02:00
|
|
|
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
|
|
|
|
2018-09-20 10:13:13 +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
|
|
|
|
})
|
2018-09-20 10:13:13 +02:00
|
|
|
|
2022-02-28 08:34:43 +01:00
|
|
|
return res.json({
|
|
|
|
avatars: avatars.map(avatar => avatar.toFormattedJSON())
|
|
|
|
})
|
2018-08-16 11:26:22 +02:00
|
|
|
}
|
2021-01-13 09:12:55 +01: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)
|
2021-01-13 09:12:55 +01:00
|
|
|
|
2022-02-28 08:34:43 +01:00
|
|
|
return res.json({ avatars: [] })
|
2021-01-13 09:12:55 +01:00
|
|
|
}
|