2021-07-29 04:27:24 -04:00
|
|
|
import { omit } from 'lodash'
|
|
|
|
import { pick } from '@shared/core-utils'
|
2021-07-08 09:54:39 -04:00
|
|
|
import {
|
|
|
|
BooleanBothQuery,
|
2021-07-16 08:27:30 -04:00
|
|
|
HttpStatusCode,
|
2021-07-08 09:54:39 -04:00
|
|
|
ResultList,
|
|
|
|
VideoExistInPlaylist,
|
|
|
|
VideoPlaylist,
|
2021-07-15 04:02:54 -04:00
|
|
|
VideoPlaylistCreate,
|
2021-07-08 09:54:39 -04:00
|
|
|
VideoPlaylistCreateResult,
|
|
|
|
VideoPlaylistElement,
|
2021-07-15 04:02:54 -04:00
|
|
|
VideoPlaylistElementCreate,
|
2021-07-08 09:54:39 -04:00
|
|
|
VideoPlaylistElementCreateResult,
|
2021-07-15 04:02:54 -04:00
|
|
|
VideoPlaylistElementUpdate,
|
|
|
|
VideoPlaylistReorder,
|
|
|
|
VideoPlaylistType,
|
|
|
|
VideoPlaylistUpdate
|
2021-07-08 09:54:39 -04:00
|
|
|
} from '@shared/models'
|
|
|
|
import { unwrapBody } from '../requests'
|
|
|
|
import { AbstractCommand, OverrideCommandOptions } from '../shared'
|
|
|
|
|
|
|
|
export class PlaylistsCommand extends AbstractCommand {
|
|
|
|
|
|
|
|
list (options: OverrideCommandOptions & {
|
|
|
|
start?: number
|
|
|
|
count?: number
|
|
|
|
sort?: string
|
|
|
|
}) {
|
|
|
|
const path = '/api/v1/video-playlists'
|
|
|
|
const query = pick(options, [ 'start', 'count', 'sort' ])
|
|
|
|
|
|
|
|
return this.getRequestBody<ResultList<VideoPlaylist>>({
|
|
|
|
...options,
|
|
|
|
|
|
|
|
path,
|
|
|
|
query,
|
|
|
|
implicitToken: false,
|
|
|
|
defaultExpectedStatus: HttpStatusCode.OK_200
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
listByChannel (options: OverrideCommandOptions & {
|
|
|
|
handle: string
|
|
|
|
start?: number
|
|
|
|
count?: number
|
|
|
|
sort?: string
|
|
|
|
}) {
|
|
|
|
const path = '/api/v1/video-channels/' + options.handle + '/video-playlists'
|
|
|
|
const query = pick(options, [ 'start', 'count', 'sort' ])
|
|
|
|
|
|
|
|
return this.getRequestBody<ResultList<VideoPlaylist>>({
|
|
|
|
...options,
|
|
|
|
|
|
|
|
path,
|
|
|
|
query,
|
|
|
|
implicitToken: false,
|
|
|
|
defaultExpectedStatus: HttpStatusCode.OK_200
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
listByAccount (options: OverrideCommandOptions & {
|
|
|
|
handle: string
|
|
|
|
start?: number
|
|
|
|
count?: number
|
|
|
|
sort?: string
|
|
|
|
search?: string
|
|
|
|
playlistType?: VideoPlaylistType
|
|
|
|
}) {
|
|
|
|
const path = '/api/v1/accounts/' + options.handle + '/video-playlists'
|
|
|
|
const query = pick(options, [ 'start', 'count', 'sort', 'search', 'playlistType' ])
|
|
|
|
|
|
|
|
return this.getRequestBody<ResultList<VideoPlaylist>>({
|
|
|
|
...options,
|
|
|
|
|
|
|
|
path,
|
|
|
|
query,
|
|
|
|
implicitToken: false,
|
|
|
|
defaultExpectedStatus: HttpStatusCode.OK_200
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
get (options: OverrideCommandOptions & {
|
|
|
|
playlistId: number | string
|
|
|
|
}) {
|
|
|
|
const { playlistId } = options
|
|
|
|
const path = '/api/v1/video-playlists/' + playlistId
|
|
|
|
|
|
|
|
return this.getRequestBody<VideoPlaylist>({
|
|
|
|
...options,
|
|
|
|
|
|
|
|
path,
|
|
|
|
implicitToken: false,
|
|
|
|
defaultExpectedStatus: HttpStatusCode.OK_200
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
listVideos (options: OverrideCommandOptions & {
|
|
|
|
playlistId: number | string
|
|
|
|
start?: number
|
|
|
|
count?: number
|
|
|
|
query?: { nsfw?: BooleanBothQuery }
|
|
|
|
}) {
|
|
|
|
const path = '/api/v1/video-playlists/' + options.playlistId + '/videos'
|
|
|
|
const query = options.query ?? {}
|
|
|
|
|
|
|
|
return this.getRequestBody<ResultList<VideoPlaylistElement>>({
|
|
|
|
...options,
|
|
|
|
|
|
|
|
path,
|
|
|
|
query: {
|
|
|
|
...query,
|
|
|
|
start: options.start,
|
|
|
|
count: options.count
|
|
|
|
},
|
|
|
|
implicitToken: true,
|
|
|
|
defaultExpectedStatus: HttpStatusCode.OK_200
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
delete (options: OverrideCommandOptions & {
|
|
|
|
playlistId: number | string
|
|
|
|
}) {
|
|
|
|
const path = '/api/v1/video-playlists/' + options.playlistId
|
|
|
|
|
|
|
|
return this.deleteRequest({
|
|
|
|
...options,
|
|
|
|
|
|
|
|
path,
|
|
|
|
implicitToken: true,
|
|
|
|
defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
async create (options: OverrideCommandOptions & {
|
|
|
|
attributes: VideoPlaylistCreate
|
|
|
|
}) {
|
|
|
|
const path = '/api/v1/video-playlists'
|
|
|
|
|
|
|
|
const fields = omit(options.attributes, 'thumbnailfile')
|
|
|
|
|
|
|
|
const attaches = options.attributes.thumbnailfile
|
|
|
|
? { thumbnailfile: options.attributes.thumbnailfile }
|
|
|
|
: {}
|
|
|
|
|
|
|
|
const body = await unwrapBody<{ videoPlaylist: VideoPlaylistCreateResult }>(this.postUploadRequest({
|
|
|
|
...options,
|
|
|
|
|
|
|
|
path,
|
|
|
|
fields,
|
|
|
|
attaches,
|
|
|
|
implicitToken: true,
|
|
|
|
defaultExpectedStatus: HttpStatusCode.OK_200
|
|
|
|
}))
|
|
|
|
|
|
|
|
return body.videoPlaylist
|
|
|
|
}
|
|
|
|
|
|
|
|
update (options: OverrideCommandOptions & {
|
|
|
|
attributes: VideoPlaylistUpdate
|
|
|
|
playlistId: number | string
|
|
|
|
}) {
|
|
|
|
const path = '/api/v1/video-playlists/' + options.playlistId
|
|
|
|
|
|
|
|
const fields = omit(options.attributes, 'thumbnailfile')
|
|
|
|
|
|
|
|
const attaches = options.attributes.thumbnailfile
|
|
|
|
? { thumbnailfile: options.attributes.thumbnailfile }
|
|
|
|
: {}
|
|
|
|
|
|
|
|
return this.putUploadRequest({
|
|
|
|
...options,
|
|
|
|
|
|
|
|
path,
|
|
|
|
fields,
|
|
|
|
attaches,
|
|
|
|
implicitToken: true,
|
|
|
|
defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
async addElement (options: OverrideCommandOptions & {
|
|
|
|
playlistId: number | string
|
|
|
|
attributes: VideoPlaylistElementCreate | { videoId: string }
|
|
|
|
}) {
|
|
|
|
const attributes = {
|
|
|
|
...options.attributes,
|
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
videoId: await this.server.videos.getId({ ...options, uuid: options.attributes.videoId })
|
2021-07-08 09:54:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
const path = '/api/v1/video-playlists/' + options.playlistId + '/videos'
|
|
|
|
|
|
|
|
const body = await unwrapBody<{ videoPlaylistElement: VideoPlaylistElementCreateResult }>(this.postBodyRequest({
|
|
|
|
...options,
|
|
|
|
|
|
|
|
path,
|
|
|
|
fields: attributes,
|
|
|
|
implicitToken: true,
|
|
|
|
defaultExpectedStatus: HttpStatusCode.OK_200
|
|
|
|
}))
|
|
|
|
|
|
|
|
return body.videoPlaylistElement
|
|
|
|
}
|
|
|
|
|
|
|
|
updateElement (options: OverrideCommandOptions & {
|
|
|
|
playlistId: number | string
|
|
|
|
elementId: number | string
|
|
|
|
attributes: VideoPlaylistElementUpdate
|
|
|
|
}) {
|
|
|
|
const path = '/api/v1/video-playlists/' + options.playlistId + '/videos/' + options.elementId
|
|
|
|
|
|
|
|
return this.putBodyRequest({
|
|
|
|
...options,
|
|
|
|
|
|
|
|
path,
|
|
|
|
fields: options.attributes,
|
|
|
|
implicitToken: true,
|
|
|
|
defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
removeElement (options: OverrideCommandOptions & {
|
|
|
|
playlistId: number | string
|
|
|
|
elementId: number
|
|
|
|
}) {
|
|
|
|
const path = '/api/v1/video-playlists/' + options.playlistId + '/videos/' + options.elementId
|
|
|
|
|
|
|
|
return this.deleteRequest({
|
|
|
|
...options,
|
|
|
|
|
|
|
|
path,
|
|
|
|
implicitToken: true,
|
|
|
|
defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
reorderElements (options: OverrideCommandOptions & {
|
|
|
|
playlistId: number | string
|
|
|
|
attributes: VideoPlaylistReorder
|
|
|
|
}) {
|
|
|
|
const path = '/api/v1/video-playlists/' + options.playlistId + '/videos/reorder'
|
|
|
|
|
|
|
|
return this.postBodyRequest({
|
|
|
|
...options,
|
|
|
|
|
|
|
|
path,
|
|
|
|
fields: options.attributes,
|
|
|
|
implicitToken: true,
|
|
|
|
defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
getPrivacies (options: OverrideCommandOptions = {}) {
|
|
|
|
const path = '/api/v1/video-playlists/privacies'
|
|
|
|
|
|
|
|
return this.getRequestBody<{ [ id: number ]: string }>({
|
|
|
|
...options,
|
|
|
|
|
|
|
|
path,
|
|
|
|
implicitToken: false,
|
|
|
|
defaultExpectedStatus: HttpStatusCode.OK_200
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
videosExist (options: OverrideCommandOptions & {
|
|
|
|
videoIds: number[]
|
|
|
|
}) {
|
|
|
|
const { videoIds } = options
|
|
|
|
const path = '/api/v1/users/me/video-playlists/videos-exist'
|
|
|
|
|
|
|
|
return this.getRequestBody<VideoExistInPlaylist>({
|
|
|
|
...options,
|
|
|
|
|
|
|
|
path,
|
|
|
|
query: { videoIds },
|
|
|
|
implicitToken: true,
|
|
|
|
defaultExpectedStatus: HttpStatusCode.OK_200
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|