mirror of https://github.com/Chocobozzz/PeerTube
Add missing channel playlists AP endpoint
parent
63748ad005
commit
7405b6ba89
|
@ -35,7 +35,7 @@ import { buildDislikeActivity } from '../../lib/activitypub/send/send-dislike'
|
||||||
import { videoPlaylistElementAPGetValidator, videoPlaylistsGetValidator } from '../../middlewares/validators/videos/video-playlists'
|
import { videoPlaylistElementAPGetValidator, videoPlaylistsGetValidator } from '../../middlewares/validators/videos/video-playlists'
|
||||||
import { VideoPlaylistModel } from '../../models/video/video-playlist'
|
import { VideoPlaylistModel } from '../../models/video/video-playlist'
|
||||||
import { VideoPlaylistPrivacy } from '../../../shared/models/videos/playlist/video-playlist-privacy.model'
|
import { VideoPlaylistPrivacy } from '../../../shared/models/videos/playlist/video-playlist-privacy.model'
|
||||||
import { MAccountId, MActorId, MVideoAPWithoutCaption, MVideoId } from '@server/typings/models'
|
import { MAccountId, MActorId, MVideoAPWithoutCaption, MVideoId, MChannelId } from '@server/typings/models'
|
||||||
import { getServerActor } from '@server/models/application/application'
|
import { getServerActor } from '@server/models/application/application'
|
||||||
import { getRateUrl } from '@server/lib/activitypub/video-rates'
|
import { getRateUrl } from '@server/lib/activitypub/video-rates'
|
||||||
|
|
||||||
|
@ -137,6 +137,11 @@ activityPubClientRouter.get('/video-channels/:name/following',
|
||||||
asyncMiddleware(localVideoChannelValidator),
|
asyncMiddleware(localVideoChannelValidator),
|
||||||
asyncMiddleware(videoChannelFollowingController)
|
asyncMiddleware(videoChannelFollowingController)
|
||||||
)
|
)
|
||||||
|
activityPubClientRouter.get('/video-channels/:name/playlists',
|
||||||
|
executeIfActivityPub,
|
||||||
|
asyncMiddleware(localVideoChannelValidator),
|
||||||
|
asyncMiddleware(videoChannelPlaylistsController)
|
||||||
|
)
|
||||||
|
|
||||||
activityPubClientRouter.get('/redundancy/videos/:videoId/:resolution([0-9]+)(-:fps([0-9]+))?',
|
activityPubClientRouter.get('/redundancy/videos/:videoId/:resolution([0-9]+)(-:fps([0-9]+))?',
|
||||||
executeIfActivityPub,
|
executeIfActivityPub,
|
||||||
|
@ -190,7 +195,14 @@ async function accountFollowingController (req: express.Request, res: express.Re
|
||||||
|
|
||||||
async function accountPlaylistsController (req: express.Request, res: express.Response) {
|
async function accountPlaylistsController (req: express.Request, res: express.Response) {
|
||||||
const account = res.locals.account
|
const account = res.locals.account
|
||||||
const activityPubResult = await actorPlaylists(req, account)
|
const activityPubResult = await actorPlaylists(req, { account })
|
||||||
|
|
||||||
|
return activityPubResponse(activityPubContextify(activityPubResult), res)
|
||||||
|
}
|
||||||
|
|
||||||
|
async function videoChannelPlaylistsController (req: express.Request, res: express.Response) {
|
||||||
|
const channel = res.locals.videoChannel
|
||||||
|
const activityPubResult = await actorPlaylists(req, { channel })
|
||||||
|
|
||||||
return activityPubResponse(activityPubContextify(activityPubResult), res)
|
return activityPubResponse(activityPubContextify(activityPubResult), res)
|
||||||
}
|
}
|
||||||
|
@ -381,9 +393,9 @@ async function actorFollowers (req: express.Request, actor: MActorId) {
|
||||||
return activityPubCollectionPagination(WEBSERVER.URL + req.path, handler, req.query.page)
|
return activityPubCollectionPagination(WEBSERVER.URL + req.path, handler, req.query.page)
|
||||||
}
|
}
|
||||||
|
|
||||||
async function actorPlaylists (req: express.Request, account: MAccountId) {
|
async function actorPlaylists (req: express.Request, options: { account: MAccountId } | { channel: MChannelId }) {
|
||||||
const handler = (start: number, count: number) => {
|
const handler = (start: number, count: number) => {
|
||||||
return VideoPlaylistModel.listPublicUrlsOfForAP(account.id, start, count)
|
return VideoPlaylistModel.listPublicUrlsOfForAP(options, start, count)
|
||||||
}
|
}
|
||||||
|
|
||||||
return activityPubCollectionPagination(WEBSERVER.URL + req.path, handler, req.query.page)
|
return activityPubCollectionPagination(WEBSERVER.URL + req.path, handler, req.query.page)
|
||||||
|
|
|
@ -53,6 +53,7 @@ import {
|
||||||
MVideoPlaylistIdWithElements
|
MVideoPlaylistIdWithElements
|
||||||
} from '../../typings/models/video/video-playlist'
|
} from '../../typings/models/video/video-playlist'
|
||||||
import { MThumbnail } from '../../typings/models/video/thumbnail'
|
import { MThumbnail } from '../../typings/models/video/thumbnail'
|
||||||
|
import { MAccountId, MChannelId } from '@server/typings/models'
|
||||||
|
|
||||||
enum ScopeNames {
|
enum ScopeNames {
|
||||||
AVAILABLE_FOR_LIST = 'AVAILABLE_FOR_LIST',
|
AVAILABLE_FOR_LIST = 'AVAILABLE_FOR_LIST',
|
||||||
|
@ -340,15 +341,24 @@ export class VideoPlaylistModel extends Model<VideoPlaylistModel> {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
static listPublicUrlsOfForAP (accountId: number, start: number, count: number) {
|
static listPublicUrlsOfForAP (options: { account?: MAccountId, channel?: MChannelId }, start: number, count: number) {
|
||||||
|
const where = {
|
||||||
|
privacy: VideoPlaylistPrivacy.PUBLIC
|
||||||
|
}
|
||||||
|
|
||||||
|
if (options.account) {
|
||||||
|
Object.assign(where, { ownerAccountId: options.account.id })
|
||||||
|
}
|
||||||
|
|
||||||
|
if (options.channel) {
|
||||||
|
Object.assign(where, { videoChannelId: options.channel.id })
|
||||||
|
}
|
||||||
|
|
||||||
const query = {
|
const query = {
|
||||||
attributes: [ 'url' ],
|
attributes: [ 'url' ],
|
||||||
offset: start,
|
offset: start,
|
||||||
limit: count,
|
limit: count,
|
||||||
where: {
|
where
|
||||||
ownerAccountId: accountId,
|
|
||||||
privacy: VideoPlaylistPrivacy.PUBLIC
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return VideoPlaylistModel.findAndCountAll(query)
|
return VideoPlaylistModel.findAndCountAll(query)
|
||||||
|
|
Loading…
Reference in New Issue