]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/lib/activitypub/process/misc.ts
Add beautiful loading bar
[github/Chocobozzz/PeerTube.git] / server / lib / activitypub / process / misc.ts
CommitLineData
0d0e8dd0 1import * as magnetUtil from 'magnet-uri'
54141398
C
2import { VideoTorrentObject } from '../../../../shared'
3import { VideoChannelObject } from '../../../../shared/models/activitypub/objects/video-channel-object'
4e50b6a1 4import { VideoPrivacy } from '../../../../shared/models/videos/video-privacy.enum'
54141398 5import { isVideoFileInfoHashValid } from '../../../helpers/custom-validators/videos'
4e50b6a1
C
6import { doRequest } from '../../../helpers/requests'
7import { database as db } from '../../../initializers'
54141398
C
8import { ACTIVITY_PUB, VIDEO_MIMETYPE_EXT } from '../../../initializers/constants'
9import { AccountInstance } from '../../../models/account/account-interface'
10import { VideoChannelInstance } from '../../../models/video/video-channel-interface'
11import { VideoFileAttributes } from '../../../models/video/video-file-interface'
12import { VideoAttributes, VideoInstance } from '../../../models/video/video-interface'
4e50b6a1 13import { getOrCreateAccountAndServer } from '../account'
20494f12
C
14
15function videoChannelActivityObjectToDBAttributes (videoChannelObject: VideoChannelObject, account: AccountInstance) {
16 return {
17 name: videoChannelObject.name,
18 description: videoChannelObject.content,
19 uuid: videoChannelObject.uuid,
20 url: videoChannelObject.id,
21 createdAt: new Date(videoChannelObject.published),
22 updatedAt: new Date(videoChannelObject.updated),
23 remote: true,
24 accountId: account.id
25 }
26}
0d0e8dd0 27
571389d4
C
28async function videoActivityObjectToDBAttributes (
29 videoChannel: VideoChannelInstance,
9a27cdc2
C
30 videoObject: VideoTorrentObject,
31 to: string[] = [],
32 cc: string[] = []
571389d4 33) {
9a27cdc2
C
34 let privacy = VideoPrivacy.PRIVATE
35 if (to.indexOf(ACTIVITY_PUB.PUBLIC) !== -1) privacy = VideoPrivacy.PUBLIC
36 else if (cc.indexOf(ACTIVITY_PUB.PUBLIC) !== -1) privacy = VideoPrivacy.UNLISTED
37
0d0e8dd0 38 const duration = videoObject.duration.replace(/[^\d]+/, '')
40ff5707
C
39 let language = null
40 if (videoObject.language) {
41 language = parseInt(videoObject.language.identifier, 10)
42 }
43
f595d394
C
44 let category = null
45 if (videoObject.category) {
46 category = parseInt(videoObject.category.identifier, 10)
47 }
48
49 let licence = null
50 if (videoObject.licence) {
51 licence = parseInt(videoObject.licence.identifier, 10)
52 }
53
54 let description = null
55 if (videoObject.content) {
56 description = videoObject.content
57 }
58
0d0e8dd0
C
59 const videoData: VideoAttributes = {
60 name: videoObject.name,
61 uuid: videoObject.uuid,
62 url: videoObject.id,
f595d394
C
63 category,
64 licence,
40ff5707 65 language,
f595d394 66 description,
0d0e8dd0 67 nsfw: videoObject.nsfw,
0d0e8dd0
C
68 channelId: videoChannel.id,
69 duration: parseInt(duration, 10),
efc32059 70 createdAt: new Date(videoObject.published),
0d0e8dd0 71 // FIXME: updatedAt does not seems to be considered by Sequelize
efc32059 72 updatedAt: new Date(videoObject.updated),
0d0e8dd0
C
73 views: videoObject.views,
74 likes: 0,
75 dislikes: 0,
0d0e8dd0 76 remote: true,
9a27cdc2 77 privacy
0d0e8dd0
C
78 }
79
80 return videoData
81}
82
83function videoFileActivityUrlToDBAttributes (videoCreated: VideoInstance, videoObject: VideoTorrentObject) {
20494f12
C
84 const mimeTypes = Object.keys(VIDEO_MIMETYPE_EXT)
85 const fileUrls = videoObject.url.filter(u => {
86 return mimeTypes.indexOf(u.mimeType) !== -1 && u.mimeType.startsWith('video/')
87 })
88
89 if (fileUrls.length === 0) {
90 throw new Error('Cannot find video files for ' + videoCreated.url)
91 }
0d0e8dd0
C
92
93 const attributes: VideoFileAttributes[] = []
20494f12 94 for (const fileUrl of fileUrls) {
0d0e8dd0 95 // Fetch associated magnet uri
20494f12
C
96 const magnet = videoObject.url.find(u => {
97 return u.mimeType === 'application/x-bittorrent;x-scheme-handler/magnet' && u.width === fileUrl.width
98 })
99
100 if (!magnet) throw new Error('Cannot find associated magnet uri for file ' + fileUrl.url)
0d0e8dd0
C
101
102 const parsed = magnetUtil.decode(magnet.url)
103 if (!parsed || isVideoFileInfoHashValid(parsed.infoHash) === false) throw new Error('Cannot parse magnet URI ' + magnet.url)
104
105 const attribute = {
20494f12 106 extname: VIDEO_MIMETYPE_EXT[fileUrl.mimeType],
0d0e8dd0 107 infoHash: parsed.infoHash,
20494f12
C
108 resolution: fileUrl.width,
109 size: fileUrl.size,
0d0e8dd0
C
110 videoId: videoCreated.id
111 }
112 attributes.push(attribute)
113 }
114
115 return attributes
116}
117
4e50b6a1
C
118async function addVideoShares (instance: VideoInstance, shares: string[]) {
119 for (const share of shares) {
120 // Fetch url
121 const json = await doRequest({
122 uri: share,
123 json: true
124 })
125 const actor = json['actor']
126 if (!actor) continue
127
128 const account = await getOrCreateAccountAndServer(actor)
129
130 const entry = {
131 accountId: account.id,
132 videoId: instance.id
133 }
134
135 await db.VideoShare.findOrCreate({
136 where: entry,
137 defaults: entry
138 })
139 }
140}
141
142async function addVideoChannelShares (instance: VideoChannelInstance, shares: string[]) {
143 for (const share of shares) {
144 // Fetch url
145 const json = await doRequest({
146 uri: share,
147 json: true
148 })
149 const actor = json['actor']
150 if (!actor) continue
151
152 const account = await getOrCreateAccountAndServer(actor)
153
154 const entry = {
155 accountId: account.id,
156 videoChannelId: instance.id
157 }
158
159 await db.VideoChannelShare.findOrCreate({
160 where: entry,
161 defaults: entry
162 })
163 }
164}
165
0d0e8dd0
C
166// ---------------------------------------------------------------------------
167
168export {
169 videoFileActivityUrlToDBAttributes,
20494f12 170 videoActivityObjectToDBAttributes,
4e50b6a1
C
171 videoChannelActivityObjectToDBAttributes,
172 addVideoChannelShares,
173 addVideoShares
0d0e8dd0 174}