PeerTube/server/lib/activitypub/actor.ts

455 lines
15 KiB
TypeScript
Raw Normal View History

2017-12-14 17:38:41 +01:00
import * as Bluebird from 'bluebird'
import { Transaction } from 'sequelize'
import * as url from 'url'
2017-12-29 19:10:13 +01:00
import * as uuidv4 from 'uuid/v4'
2017-12-14 17:38:41 +01:00
import { ActivityPubActor, ActivityPubActorType } from '../../../shared/models/activitypub'
import { ActivityPubAttributedTo } from '../../../shared/models/activitypub/objects'
import { checkUrlsSameHost, getAPId } from '../../helpers/activitypub'
2018-05-11 15:55:39 +02:00
import { isActorObjectValid, normalizeActor } from '../../helpers/custom-validators/activitypub/actor'
2017-12-29 19:10:13 +01:00
import { isActivityPubUrlValid } from '../../helpers/custom-validators/activitypub/misc'
2018-01-04 14:04:02 +01:00
import { retryTransactionWrapper, updateInstanceWithAnother } from '../../helpers/database-utils'
2017-12-28 11:16:08 +01:00
import { logger } from '../../helpers/logger'
import { createPrivateAndPublicKeys } from '../../helpers/peertube-crypto'
2018-11-19 14:34:01 +01:00
import { doRequest, downloadImage } from '../../helpers/requests'
2018-01-04 14:04:02 +01:00
import { getUrlFromWebfinger } from '../../helpers/webfinger'
import { AVATARS_SIZE, MIMETYPES, WEBSERVER } from '../../initializers/constants'
2017-12-14 17:38:41 +01:00
import { AccountModel } from '../../models/account/account'
import { ActorModel } from '../../models/activitypub/actor'
2017-12-29 19:10:13 +01:00
import { AvatarModel } from '../../models/avatar/avatar'
2017-12-14 17:38:41 +01:00
import { ServerModel } from '../../models/server/server'
import { VideoChannelModel } from '../../models/video/video-channel'
2018-05-25 11:17:41 +02:00
import { JobQueue } from '../job-queue'
import { getServerActor } from '../../helpers/utils'
import { ActorFetchByUrlType, fetchActorByUrl } from '../../helpers/actor'
2019-04-11 11:33:44 +02:00
import { CONFIG } from '../../initializers/config'
import { sequelizeTypescript } from '../../initializers/database'
2017-12-14 17:38:41 +01:00
2017-12-19 10:34:56 +01:00
// Set account keys, this could be long so process after the account creation and do not block the client
2017-12-14 17:38:41 +01:00
function setAsyncActorKeys (actor: ActorModel) {
return createPrivateAndPublicKeys()
.then(({ publicKey, privateKey }) => {
actor.set('publicKey', publicKey)
actor.set('privateKey', privateKey)
return actor.save()
})
.catch(err => {
2018-03-26 15:54:13 +02:00
logger.error('Cannot set public/private keys of actor %d.', actor.uuid, { err })
2017-12-14 17:38:41 +01:00
return actor
})
}
2018-08-24 15:36:50 +02:00
async function getOrCreateActorAndServerAndModel (
activityActor: string | ActivityPubActor,
fetchType: ActorFetchByUrlType = 'actor-and-association-ids',
2018-08-24 15:36:50 +02:00
recurseIfNeeded = true,
updateCollections = false
) {
const actorUrl = getAPId(activityActor)
2018-08-24 15:36:50 +02:00
let created = false
2019-02-26 10:55:40 +01:00
let accountPlaylistsUrl: string
let actor = await fetchActorByUrl(actorUrl, fetchType)
2018-07-31 11:04:33 +02:00
// Orphan actor (not associated to an account of channel) so recreate it
if (actor && (!actor.Account && !actor.VideoChannel)) {
2018-07-31 11:04:33 +02:00
await actor.destroy()
actor = null
}
2017-12-14 17:38:41 +01:00
// We don't have this actor in our database, fetch it on remote
if (!actor) {
2018-08-24 11:04:02 +02:00
const { result } = await fetchRemoteActor(actorUrl)
if (result === undefined) throw new Error('Cannot fetch remote actor ' + actorUrl)
2017-12-14 17:38:41 +01:00
// Create the attributed to actor
// In PeerTube a video channel is owned by an account
let ownerActor: ActorModel = undefined
if (recurseIfNeeded === true && result.actor.type === 'Group') {
const accountAttributedTo = result.attributedTo.find(a => a.type === 'Person')
if (!accountAttributedTo) throw new Error('Cannot find account attributed to video channel ' + actor.url)
2018-11-14 15:01:28 +01:00
if (checkUrlsSameHost(accountAttributedTo.id, actorUrl) !== true) {
throw new Error(`Account attributed to ${accountAttributedTo.id} does not have the same host than actor url ${actorUrl}`)
}
2017-12-14 17:38:41 +01:00
try {
2018-11-14 15:01:28 +01:00
// Don't recurse another time
2019-02-26 10:55:40 +01:00
const recurseIfNeeded = false
ownerActor = await getOrCreateActorAndServerAndModel(accountAttributedTo.id, 'all', recurseIfNeeded)
2017-12-14 17:38:41 +01:00
} catch (err) {
logger.error('Cannot get or create account attributed to video channel ' + actor.url)
throw new Error(err)
}
}
2018-06-13 14:27:40 +02:00
actor = await retryTransactionWrapper(saveActorAndServerAndModelIfNotExist, result, ownerActor)
2018-08-24 15:36:50 +02:00
created = true
2019-02-26 10:55:40 +01:00
accountPlaylistsUrl = result.playlists
2017-12-14 17:38:41 +01:00
}
if (actor.Account) actor.Account.Actor = actor
if (actor.VideoChannel) actor.VideoChannel.Actor = actor
const { actor: actorRefreshed, refreshed } = await retryTransactionWrapper(refreshActorIfNeeded, actor, fetchType)
2018-08-24 15:36:50 +02:00
if (!actorRefreshed) throw new Error('Actor ' + actorRefreshed.url + ' does not exist anymore.')
2018-08-24 11:04:02 +02:00
2018-08-24 15:36:50 +02:00
if ((created === true || refreshed === true) && updateCollections === true) {
const payload = { uri: actor.outboxUrl, type: 'activity' as 'activity' }
await JobQueue.Instance.createJob({ type: 'activitypub-http-fetcher', payload })
}
2019-02-26 10:55:40 +01:00
// We created a new account: fetch the playlists
if (created === true && actor.Account && accountPlaylistsUrl) {
const payload = { uri: accountPlaylistsUrl, accountId: actor.Account.id, type: 'account-playlists' as 'account-playlists' }
await JobQueue.Instance.createJob({ type: 'activitypub-http-fetcher', payload })
}
2018-08-24 15:36:50 +02:00
return actorRefreshed
2017-12-14 17:38:41 +01:00
}
2017-12-29 19:10:13 +01:00
function buildActorInstance (type: ActivityPubActorType, url: string, preferredUsername: string, uuid?: string) {
return new ActorModel({
type,
url,
preferredUsername,
uuid,
publicKey: null,
privateKey: null,
followersCount: 0,
followingCount: 0,
inboxUrl: url + '/inbox',
outboxUrl: url + '/outbox',
2019-04-11 11:33:44 +02:00
sharedInboxUrl: WEBSERVER.URL + '/inbox',
2017-12-29 19:10:13 +01:00
followersUrl: url + '/followers',
followingUrl: url + '/following'
})
}
2018-01-04 14:04:02 +01:00
async function updateActorInstance (actorInstance: ActorModel, attributes: ActivityPubActor) {
const followersCount = await fetchActorTotalItems(attributes.followers)
const followingCount = await fetchActorTotalItems(attributes.following)
actorInstance.set('type', attributes.type)
actorInstance.set('uuid', attributes.uuid)
actorInstance.set('preferredUsername', attributes.preferredUsername)
actorInstance.set('url', attributes.id)
actorInstance.set('publicKey', attributes.publicKey.publicKeyPem)
actorInstance.set('followersCount', followersCount)
actorInstance.set('followingCount', followingCount)
actorInstance.set('inboxUrl', attributes.inbox)
actorInstance.set('outboxUrl', attributes.outbox)
actorInstance.set('sharedInboxUrl', attributes.endpoints.sharedInbox)
actorInstance.set('followersUrl', attributes.followers)
actorInstance.set('followingUrl', attributes.following)
}
async function updateActorAvatarInstance (actorInstance: ActorModel, avatarName: string, t: Transaction) {
if (avatarName !== undefined) {
if (actorInstance.avatarId) {
try {
await actorInstance.Avatar.destroy({ transaction: t })
} catch (err) {
2018-03-26 15:54:13 +02:00
logger.error('Cannot remove old avatar of actor %s.', actorInstance.url, { err })
2018-01-04 14:04:02 +01:00
}
}
const avatar = await AvatarModel.create({
filename: avatarName
}, { transaction: t })
actorInstance.set('avatarId', avatar.id)
actorInstance.Avatar = avatar
}
return actorInstance
}
2018-01-03 16:38:50 +01:00
async function fetchActorTotalItems (url: string) {
const options = {
uri: url,
method: 'GET',
json: true,
activityPub: true
}
try {
2018-01-15 09:46:46 +01:00
const { body } = await doRequest(options)
return body.totalItems ? body.totalItems : 0
2018-01-03 16:38:50 +01:00
} catch (err) {
2018-03-26 15:54:13 +02:00
logger.warn('Cannot fetch remote actor count %s.', url, { err })
2018-01-15 09:46:46 +01:00
return 0
2018-01-03 16:38:50 +01:00
}
}
async function fetchAvatarIfExists (actorJSON: ActivityPubActor) {
if (
2018-12-11 14:52:50 +01:00
actorJSON.icon && actorJSON.icon.type === 'Image' && MIMETYPES.IMAGE.MIMETYPE_EXT[actorJSON.icon.mediaType] !== undefined &&
2018-01-03 16:38:50 +01:00
isActivityPubUrlValid(actorJSON.icon.url)
) {
2018-12-11 14:52:50 +01:00
const extension = MIMETYPES.IMAGE.MIMETYPE_EXT[actorJSON.icon.mediaType]
2018-01-03 16:38:50 +01:00
const avatarName = uuidv4() + extension
2018-12-04 16:02:49 +01:00
await downloadImage(actorJSON.icon.url, CONFIG.STORAGE.AVATARS_DIR, avatarName, AVATARS_SIZE)
2018-01-03 16:38:50 +01:00
return avatarName
}
return undefined
}
2018-05-25 11:17:41 +02:00
async function addFetchOutboxJob (actor: ActorModel) {
// Don't fetch ourselves
const serverActor = await getServerActor()
if (serverActor.id === actor.id) {
logger.error('Cannot fetch our own outbox!')
return undefined
}
const payload = {
uri: actor.outboxUrl,
type: 'activity' as 'activity'
2018-05-25 11:17:41 +02:00
}
return JobQueue.Instance.createJob({ type: 'activitypub-http-fetcher', payload })
}
2019-01-14 11:30:15 +01:00
async function refreshActorIfNeeded (
actorArg: ActorModel,
fetchedType: ActorFetchByUrlType
): Promise<{ actor: ActorModel, refreshed: boolean }> {
if (!actorArg.isOutdated()) return { actor: actorArg, refreshed: false }
// We need more attributes
const actor = fetchedType === 'all' ? actorArg : await ActorModel.loadByUrlAndPopulateAccountAndChannel(actorArg.url)
try {
2019-01-14 12:11:06 +01:00
let actorUrl: string
try {
actorUrl = await getUrlFromWebfinger(actor.preferredUsername + '@' + actor.getHost())
} catch (err) {
logger.warn('Cannot get actor URL from webfinger, keeping the old one.', err)
actorUrl = actor.url
}
2019-01-14 11:30:15 +01:00
const { result, statusCode } = await fetchRemoteActor(actorUrl)
if (statusCode === 404) {
logger.info('Deleting actor %s because there is a 404 in refresh actor.', actor.url)
actor.Account ? actor.Account.destroy() : actor.VideoChannel.destroy()
return { actor: undefined, refreshed: false }
}
if (result === undefined) {
logger.warn('Cannot fetch remote actor in refresh actor.')
return { actor, refreshed: false }
}
return sequelizeTypescript.transaction(async t => {
updateInstanceWithAnother(actor, result.actor)
if (result.avatarName !== undefined) {
await updateActorAvatarInstance(actor, result.avatarName, t)
}
// Force update
actor.setDataValue('updatedAt', new Date())
await actor.save({ transaction: t })
if (actor.Account) {
actor.Account.set('name', result.name)
actor.Account.set('description', result.summary)
await actor.Account.save({ transaction: t })
} else if (actor.VideoChannel) {
actor.VideoChannel.set('name', result.name)
actor.VideoChannel.set('description', result.summary)
actor.VideoChannel.set('support', result.support)
await actor.VideoChannel.save({ transaction: t })
}
return { refreshed: true, actor }
})
} catch (err) {
logger.warn('Cannot refresh actor %s.', actor.url, { err })
2019-01-14 11:30:15 +01:00
return { actor, refreshed: false }
}
}
2017-12-29 19:10:13 +01:00
export {
getOrCreateActorAndServerAndModel,
buildActorInstance,
2018-01-03 16:38:50 +01:00
setAsyncActorKeys,
fetchActorTotalItems,
2018-01-04 14:04:02 +01:00
fetchAvatarIfExists,
updateActorInstance,
2019-01-14 11:30:15 +01:00
refreshActorIfNeeded,
2018-05-25 11:17:41 +02:00
updateActorAvatarInstance,
addFetchOutboxJob
2017-12-29 19:10:13 +01:00
}
// ---------------------------------------------------------------------------
2017-12-14 17:38:41 +01:00
function saveActorAndServerAndModelIfNotExist (
result: FetchRemoteActorResult,
ownerActor?: ActorModel,
t?: Transaction
): Bluebird<ActorModel> | Promise<ActorModel> {
let actor = result.actor
if (t !== undefined) return save(t)
return sequelizeTypescript.transaction(t => save(t))
async function save (t: Transaction) {
const actorHost = url.parse(actor.url).host
const serverOptions = {
where: {
host: actorHost
},
defaults: {
host: actorHost
},
transaction: t
}
const [ server ] = await ServerModel.findOrCreate(serverOptions)
// Save our new account in database
actor.set('serverId', server.id)
2017-12-29 19:10:13 +01:00
// Avatar?
if (result.avatarName) {
const avatar = await AvatarModel.create({
filename: result.avatarName
}, { transaction: t })
actor.set('avatarId', avatar.id)
}
2017-12-14 17:38:41 +01:00
// Force the actor creation, sometimes Sequelize skips the save() when it thinks the instance already exists
// (which could be false in a retried query)
const [ actorCreated ] = await ActorModel.findOrCreate({
defaults: actor.toJSON(),
where: {
url: actor.url
},
transaction: t
})
2017-12-14 17:38:41 +01:00
if (actorCreated.type === 'Person' || actorCreated.type === 'Application') {
actorCreated.Account = await saveAccount(actorCreated, result, t)
2017-12-14 17:38:41 +01:00
actorCreated.Account.Actor = actorCreated
} else if (actorCreated.type === 'Group') { // Video channel
actorCreated.VideoChannel = await saveVideoChannel(actorCreated, result, ownerActor, t)
2017-12-14 17:38:41 +01:00
actorCreated.VideoChannel.Actor = actorCreated
actorCreated.VideoChannel.Account = ownerActor.Account
2017-12-14 17:38:41 +01:00
}
actorCreated.Server = server
2017-12-14 17:38:41 +01:00
return actorCreated
}
}
type FetchRemoteActorResult = {
actor: ActorModel
2017-12-19 10:34:56 +01:00
name: string
2017-12-14 17:38:41 +01:00
summary: string
support?: string
2019-02-26 10:55:40 +01:00
playlists?: string
2017-12-29 19:10:13 +01:00
avatarName?: string
2017-12-14 17:38:41 +01:00
attributedTo: ActivityPubAttributedTo[]
}
2018-08-24 11:04:02 +02:00
async function fetchRemoteActor (actorUrl: string): Promise<{ statusCode?: number, result: FetchRemoteActorResult }> {
2017-12-14 17:38:41 +01:00
const options = {
uri: actorUrl,
method: 'GET',
2017-12-28 11:16:08 +01:00
json: true,
activityPub: true
2017-12-14 17:38:41 +01:00
}
logger.info('Fetching remote actor %s.', actorUrl)
const requestResult = await doRequest<ActivityPubActor>(options)
2018-03-19 10:23:42 +01:00
normalizeActor(requestResult.body)
const actorJSON = requestResult.body
2018-01-03 16:38:50 +01:00
if (isActorObjectValid(actorJSON) === false) {
logger.debug('Remote actor JSON is not valid.', { actorJSON })
2018-08-24 11:04:02 +02:00
return { result: undefined, statusCode: requestResult.response.statusCode }
2017-12-14 17:38:41 +01:00
}
2018-11-14 15:01:28 +01:00
if (checkUrlsSameHost(actorJSON.id, actorUrl) !== true) {
2019-03-19 14:13:53 +01:00
logger.warn('Actor url %s has not the same host than its AP id %s', actorUrl, actorJSON.id)
return { result: undefined, statusCode: requestResult.response.statusCode }
2018-11-14 15:01:28 +01:00
}
2017-12-14 17:38:41 +01:00
const followersCount = await fetchActorTotalItems(actorJSON.followers)
const followingCount = await fetchActorTotalItems(actorJSON.following)
const actor = new ActorModel({
type: actorJSON.type,
uuid: actorJSON.uuid,
2017-12-19 10:34:56 +01:00
preferredUsername: actorJSON.preferredUsername,
url: actorJSON.id,
2017-12-14 17:38:41 +01:00
publicKey: actorJSON.publicKey.publicKeyPem,
privateKey: null,
followersCount: followersCount,
followingCount: followingCount,
inboxUrl: actorJSON.inbox,
outboxUrl: actorJSON.outbox,
sharedInboxUrl: actorJSON.endpoints.sharedInbox,
followersUrl: actorJSON.followers,
followingUrl: actorJSON.following
})
2018-01-03 16:38:50 +01:00
const avatarName = await fetchAvatarIfExists(actorJSON)
2017-12-29 19:10:13 +01:00
2017-12-19 10:34:56 +01:00
const name = actorJSON.name || actorJSON.preferredUsername
2017-12-14 17:38:41 +01:00
return {
2018-08-24 11:04:02 +02:00
statusCode: requestResult.response.statusCode,
result: {
actor,
name,
avatarName,
summary: actorJSON.summary,
support: actorJSON.support,
2019-02-26 10:55:40 +01:00
playlists: actorJSON.playlists,
2018-08-24 11:04:02 +02:00
attributedTo: actorJSON.attributedTo
}
2017-12-14 17:38:41 +01:00
}
}
async function saveAccount (actor: ActorModel, result: FetchRemoteActorResult, t: Transaction) {
const [ accountCreated ] = await AccountModel.findOrCreate({
defaults: {
name: result.name,
description: result.summary,
actorId: actor.id
},
where: {
actorId: actor.id
},
transaction: t
2017-12-14 17:38:41 +01:00
})
return accountCreated
2017-12-14 17:38:41 +01:00
}
async function saveVideoChannel (actor: ActorModel, result: FetchRemoteActorResult, ownerActor: ActorModel, t: Transaction) {
const [ videoChannelCreated ] = await VideoChannelModel.findOrCreate({
defaults: {
name: result.name,
description: result.summary,
support: result.support,
actorId: actor.id,
accountId: ownerActor.Account.id
},
where: {
actorId: actor.id
},
transaction: t
2017-12-14 17:38:41 +01:00
})
return videoChannelCreated
2017-12-14 17:38:41 +01:00
}