PeerTube/server/lib/activitypub/url.ts

121 lines
4.1 KiB
TypeScript
Raw Normal View History

2017-12-12 17:53:50 +01:00
import { CONFIG } from '../../initializers'
2017-12-14 17:38:41 +01:00
import { ActorModel } from '../../models/activitypub/actor'
import { ActorFollowModel } from '../../models/activitypub/actor-follow'
2017-12-12 17:53:50 +01:00
import { VideoModel } from '../../models/video/video'
import { VideoAbuseModel } from '../../models/video/video-abuse'
2017-12-22 10:50:07 +01:00
import { VideoCommentModel } from '../../models/video/video-comment'
2018-09-11 16:27:07 +02:00
import { VideoFileModel } from '../../models/video/video-file'
2019-01-29 08:37:25 +01:00
import { VideoStreamingPlaylist } from '../../../shared/models/videos/video-streaming-playlist.model'
import { VideoStreamingPlaylistModel } from '../../models/video/video-streaming-playlist'
2017-12-12 17:53:50 +01:00
function getVideoActivityPubUrl (video: VideoModel) {
return CONFIG.WEBSERVER.URL + '/videos/watch/' + video.uuid
}
2018-09-11 16:27:07 +02:00
function getVideoCacheFileActivityPubUrl (videoFile: VideoFileModel) {
const suffixFPS = videoFile.fps && videoFile.fps !== -1 ? '-' + videoFile.fps : ''
2018-09-11 16:27:07 +02:00
return `${CONFIG.WEBSERVER.URL}/redundancy/videos/${videoFile.Video.uuid}/${videoFile.resolution}${suffixFPS}`
}
2019-01-29 08:37:25 +01:00
function getVideoCacheStreamingPlaylistActivityPubUrl (video: VideoModel, playlist: VideoStreamingPlaylistModel) {
return `${CONFIG.WEBSERVER.URL}/redundancy/video-playlists/${playlist.getStringType()}/${video.uuid}`
}
2017-12-22 10:50:07 +01:00
function getVideoCommentActivityPubUrl (video: VideoModel, videoComment: VideoCommentModel) {
2017-12-28 11:16:08 +01:00
return CONFIG.WEBSERVER.URL + '/videos/watch/' + video.uuid + '/comments/' + videoComment.id
2017-12-14 17:38:41 +01:00
}
2018-08-17 15:45:42 +02:00
function getVideoChannelActivityPubUrl (videoChannelName: string) {
return CONFIG.WEBSERVER.URL + '/video-channels/' + videoChannelName
}
function getAccountActivityPubUrl (accountName: string) {
2017-12-29 19:10:13 +01:00
return CONFIG.WEBSERVER.URL + '/accounts/' + accountName
}
2017-12-12 17:53:50 +01:00
function getVideoAbuseActivityPubUrl (videoAbuse: VideoAbuseModel) {
return CONFIG.WEBSERVER.URL + '/admin/video-abuses/' + videoAbuse.id
}
2017-12-14 17:38:41 +01:00
function getVideoViewActivityPubUrl (byActor: ActorModel, video: VideoModel) {
2018-11-14 15:01:28 +01:00
return byActor.url + '/views/videos/' + video.id + '/' + new Date().toISOString()
2017-11-22 16:25:03 +01:00
}
2018-11-14 15:01:28 +01:00
function getVideoLikeActivityPubUrl (byActor: ActorModel, video: VideoModel | { id: number }) {
2017-12-14 17:38:41 +01:00
return byActor.url + '/likes/' + video.id
2017-11-23 14:19:55 +01:00
}
2018-11-14 15:01:28 +01:00
function getVideoDislikeActivityPubUrl (byActor: ActorModel, video: VideoModel | { id: number }) {
2017-12-14 17:38:41 +01:00
return byActor.url + '/dislikes/' + video.id
2017-11-23 14:19:55 +01:00
}
function getVideoSharesActivityPubUrl (video: VideoModel) {
return video.url + '/announces'
}
function getVideoCommentsActivityPubUrl (video: VideoModel) {
return video.url + '/comments'
}
function getVideoLikesActivityPubUrl (video: VideoModel) {
return video.url + '/likes'
}
function getVideoDislikesActivityPubUrl (video: VideoModel) {
return video.url + '/dislikes'
}
2017-12-14 17:38:41 +01:00
function getActorFollowActivityPubUrl (actorFollow: ActorFollowModel) {
const me = actorFollow.ActorFollower
const following = actorFollow.ActorFollowing
return me.url + '/follows/' + following.id
}
2017-12-14 17:38:41 +01:00
function getActorFollowAcceptActivityPubUrl (actorFollow: ActorFollowModel) {
const follower = actorFollow.ActorFollower
const me = actorFollow.ActorFollowing
return follower.url + '/accepts/follows/' + me.id
}
2018-11-14 15:01:28 +01:00
function getVideoAnnounceActivityPubUrl (byActor: ActorModel, video: VideoModel) {
return video.url + '/announces/' + byActor.id
}
2018-01-04 16:56:36 +01:00
function getDeleteActivityPubUrl (originalUrl: string) {
return originalUrl + '/delete'
}
function getUpdateActivityPubUrl (originalUrl: string, updatedAt: string) {
return originalUrl + '/updates/' + updatedAt
}
function getUndoActivityPubUrl (originalUrl: string) {
return originalUrl + '/undo'
}
export {
getVideoActivityPubUrl,
2019-01-29 08:37:25 +01:00
getVideoCacheStreamingPlaylistActivityPubUrl,
getVideoChannelActivityPubUrl,
getAccountActivityPubUrl,
getVideoAbuseActivityPubUrl,
2017-12-14 17:38:41 +01:00
getActorFollowActivityPubUrl,
getActorFollowAcceptActivityPubUrl,
2018-11-14 15:01:28 +01:00
getVideoAnnounceActivityPubUrl,
getUpdateActivityPubUrl,
2017-11-22 16:25:03 +01:00
getUndoActivityPubUrl,
2017-11-23 14:19:55 +01:00
getVideoViewActivityPubUrl,
getVideoLikeActivityPubUrl,
2017-12-22 10:50:07 +01:00
getVideoDislikeActivityPubUrl,
2018-01-04 16:56:36 +01:00
getVideoCommentActivityPubUrl,
getDeleteActivityPubUrl,
getVideoSharesActivityPubUrl,
getVideoCommentsActivityPubUrl,
getVideoLikesActivityPubUrl,
2018-09-11 16:27:07 +02:00
getVideoDislikesActivityPubUrl,
getVideoCacheFileActivityPubUrl
}