1
0
Fork 0
peertube/server/helpers/activitypub.ts

194 lines
5.5 KiB
TypeScript
Raw Normal View History

2017-11-10 16:27:49 +00:00
import { join } from 'path'
import * as request from 'request'
2017-11-09 16:51:58 +00:00
import * as url from 'url'
2017-11-10 16:27:49 +00:00
import { ActivityIconObject } from '../../shared/index'
2017-11-09 16:51:58 +00:00
import { ActivityPubActor } from '../../shared/models/activitypub/activitypub-actor'
import { ResultList } from '../../shared/models/result-list.model'
2017-11-10 16:27:49 +00:00
import { database as db, REMOTE_SCHEME } from '../initializers'
2017-11-14 16:31:26 +00:00
import { ACTIVITY_PUB_ACCEPT_HEADER, CONFIG, STATIC_PATHS } from '../initializers/constants'
2017-11-10 13:34:45 +00:00
import { VideoInstance } from '../models/video/video-interface'
2017-11-10 16:27:49 +00:00
import { isRemoteAccountValid } from './custom-validators'
import { logger } from './logger'
import { doRequest, doRequestAndSaveToFile } from './requests'
2017-11-10 13:34:45 +00:00
function generateThumbnailFromUrl (video: VideoInstance, icon: ActivityIconObject) {
const thumbnailName = video.getThumbnailName()
const thumbnailPath = join(CONFIG.STORAGE.THUMBNAILS_DIR, thumbnailName)
const options = {
method: 'GET',
uri: icon.url
}
return doRequestAndSaveToFile(options, thumbnailPath)
}
2017-11-10 16:27:49 +00:00
function getActivityPubUrl (type: 'video' | 'videoChannel' | 'account', id: string) {
if (type === 'video') return CONFIG.WEBSERVER.URL + '/videos/watch/' + id
else if (type === 'videoChannel') return CONFIG.WEBSERVER.URL + '/video-channels/' + id
else if (type === 'account') return CONFIG.WEBSERVER.URL + '/account/' + id
2017-11-10 13:34:45 +00:00
return ''
}
async function getOrCreateAccount (accountUrl: string) {
let account = await db.Account.loadByUrl(accountUrl)
// We don't have this account in our database, fetch it on remote
if (!account) {
2017-11-14 16:31:26 +00:00
const res = await fetchRemoteAccountAndCreatePod(accountUrl)
if (res === undefined) throw new Error('Cannot fetch remote account.')
2017-11-10 13:34:45 +00:00
// Save our new account in database
2017-11-14 16:31:26 +00:00
const account = res.account
2017-11-10 13:34:45 +00:00
await account.save()
}
return account
}
2017-11-09 16:51:58 +00:00
async function fetchRemoteAccountAndCreatePod (accountUrl: string) {
const options = {
uri: accountUrl,
2017-11-14 16:31:26 +00:00
method: 'GET',
headers: {
'Accept': ACTIVITY_PUB_ACCEPT_HEADER
}
2017-11-09 16:51:58 +00:00
}
2017-11-14 16:31:26 +00:00
logger.info('Fetching remote account %s.', accountUrl)
2017-11-09 16:51:58 +00:00
let requestResult
try {
requestResult = await doRequest(options)
} catch (err) {
2017-11-14 16:31:26 +00:00
logger.warn('Cannot fetch remote account %s.', accountUrl, err)
2017-11-09 16:51:58 +00:00
return undefined
}
2017-11-14 16:31:26 +00:00
const accountJSON: ActivityPubActor = JSON.parse(requestResult.body)
if (isRemoteAccountValid(accountJSON) === false) {
logger.debug('Remote account JSON is not valid.', { accountJSON })
return undefined
}
2017-11-09 16:51:58 +00:00
const followersCount = await fetchAccountCount(accountJSON.followers)
const followingCount = await fetchAccountCount(accountJSON.following)
const account = db.Account.build({
uuid: accountJSON.uuid,
name: accountJSON.preferredUsername,
url: accountJSON.url,
publicKey: accountJSON.publicKey.publicKeyPem,
privateKey: null,
followersCount: followersCount,
followingCount: followingCount,
inboxUrl: accountJSON.inbox,
outboxUrl: accountJSON.outbox,
sharedInboxUrl: accountJSON.endpoints.sharedInbox,
followersUrl: accountJSON.followers,
followingUrl: accountJSON.following
})
const accountHost = url.parse(account.url).host
const podOptions = {
where: {
host: accountHost
},
defaults: {
host: accountHost
}
}
2017-11-14 16:31:26 +00:00
const [ pod ] = await db.Pod.findOrCreate(podOptions)
account.set('podId', pod.id)
2017-11-09 16:51:58 +00:00
return { account, pod }
}
2017-11-10 16:27:49 +00:00
function fetchRemoteVideoPreview (video: VideoInstance) {
// FIXME: use url
const host = video.VideoChannel.Account.Pod.host
const path = join(STATIC_PATHS.PREVIEWS, video.getPreviewName())
return request.get(REMOTE_SCHEME.HTTP + '://' + host + path)
}
async function fetchRemoteVideoDescription (video: VideoInstance) {
const options = {
uri: video.url
}
const { body } = await doRequest(options)
return body.description ? body.description : ''
}
function activityPubContextify <T> (data: T) {
2017-11-09 16:51:58 +00:00
return Object.assign(data,{
'@context': [
'https://www.w3.org/ns/activitystreams',
'https://w3id.org/security/v1',
{
'Hashtag': 'as:Hashtag',
'uuid': 'http://schema.org/identifier',
'category': 'http://schema.org/category',
'licence': 'http://schema.org/license',
'nsfw': 'as:sensitive',
'language': 'http://schema.org/inLanguage',
'views': 'http://schema.org/Number',
'size': 'http://schema.org/Number'
}
]
})
}
function activityPubCollectionPagination (url: string, page: number, result: ResultList<any>) {
const baseUrl = url.split('?').shift
const obj = {
id: baseUrl,
type: 'Collection',
totalItems: result.total,
first: {
id: baseUrl + '?page=' + page,
type: 'CollectionPage',
totalItems: result.total,
next: baseUrl + '?page=' + (page + 1),
partOf: baseUrl,
items: result.data
}
}
return activityPubContextify(obj)
}
// ---------------------------------------------------------------------------
export {
fetchRemoteAccountAndCreatePod,
activityPubContextify,
2017-11-10 13:34:45 +00:00
activityPubCollectionPagination,
getActivityPubUrl,
generateThumbnailFromUrl,
2017-11-10 16:27:49 +00:00
getOrCreateAccount,
fetchRemoteVideoPreview,
fetchRemoteVideoDescription
2017-11-09 16:51:58 +00:00
}
// ---------------------------------------------------------------------------
async function fetchAccountCount (url: string) {
const options = {
uri: url,
method: 'GET'
}
let requestResult
try {
requestResult = await doRequest(options)
} catch (err) {
2017-11-14 16:31:26 +00:00
logger.warn('Cannot fetch remote account count %s.', url, err)
2017-11-09 16:51:58 +00:00
return undefined
}
return requestResult.totalItems ? requestResult.totalItems : 0
}