PeerTube/server/core/models/actor/actor.ts

704 lines
18 KiB
TypeScript
Raw Normal View History

import { forceNumber } from '@peertube/peertube-core-utils'
import { ActivityIconObject, ActorImageType, ActorImageType_Type, type ActivityPubActorType } from '@peertube/peertube-models'
import { getLowercaseExtension } from '@peertube/peertube-node-utils'
import { AttributesOnly } from '@peertube/peertube-typescript-utils'
import { activityPubContextify } from '@server/helpers/activity-pub-utils.js'
import { getContextFilter } from '@server/lib/activitypub/context.js'
import { getBiggestActorImage } from '@server/lib/actor-image.js'
import { ModelCache } from '@server/models/shared/model-cache.js'
import { col, fn, literal, Op, QueryTypes, Transaction, where } from 'sequelize'
2017-12-14 11:18:49 +01:00
import {
AllowNull,
BelongsTo,
Column,
CreatedAt,
DataType,
DefaultScope,
ForeignKey,
HasMany,
HasOne,
2024-02-22 10:12:04 +01:00
Is, Scopes,
Table,
UpdatedAt
2017-12-14 11:18:49 +01:00
} from 'sequelize-typescript'
import { Where } from 'sequelize/types/utils'
2017-12-14 11:18:49 +01:00
import {
isActorFollowersCountValid,
isActorFollowingCountValid,
isActorPreferredUsernameValid,
isActorPrivateKeyValid,
2017-12-28 11:16:08 +01:00
isActorPublicKeyValid
} from '../../helpers/custom-validators/activitypub/actor.js'
import { isActivityPubUrlValid } from '../../helpers/custom-validators/activitypub/misc.js'
2021-04-06 17:01:35 +02:00
import {
ACTIVITY_PUB,
ACTIVITY_PUB_ACTOR_TYPES,
CONSTRAINTS_FIELDS,
MIMETYPES,
SERVER_ACTOR_NAME,
WEBSERVER
} from '../../initializers/constants.js'
2019-08-20 19:05:31 +02:00
import {
MActor,
MActorAccountChannelId,
2021-04-06 17:01:35 +02:00
MActorAPAccount,
MActorAPChannel,
2022-06-17 10:49:37 +02:00
MActorFollowersUrl,
2019-08-20 19:05:31 +02:00
MActorFormattable,
2019-08-21 14:31:57 +02:00
MActorFull,
MActorHost,
Add Podcast RSS feeds (#5487) * Initial test implementation of Podcast RSS This is a pretty simple implementation to add support for The Podcast Namespace in RSS -- instead of affecting the existing RSS implementation, this adds a new UI option. I attempted to retain compatibility with the rest of the RSS feed implementation as much as possible and have created a temporary fork of the "pfeed" library to support this effort. * Update to pfeed-podcast 1.2.2 * Initial test implementation of Podcast RSS This is a pretty simple implementation to add support for The Podcast Namespace in RSS -- instead of affecting the existing RSS implementation, this adds a new UI option. I attempted to retain compatibility with the rest of the RSS feed implementation as much as possible and have created a temporary fork of the "pfeed" library to support this effort. * Update to pfeed-podcast 1.2.2 * Initial test implementation of Podcast RSS This is a pretty simple implementation to add support for The Podcast Namespace in RSS -- instead of affecting the existing RSS implementation, this adds a new UI option. I attempted to retain compatibility with the rest of the RSS feed implementation as much as possible and have created a temporary fork of the "pfeed" library to support this effort. * Update to pfeed-podcast 1.2.2 * Add correct feed image to RSS channel * Prefer HLS videos for podcast RSS Remove video/stream titles, add optional height attribute to podcast RSS * Prefix podcast RSS images with root server URL * Add optional video query support to include captions * Add transcripts & person images to podcast RSS feed * Prefer webseed/webtorrent files over HLS fragmented mp4s * Experimentally adding podcast fields to basic config page * Add validation for new basic config fields * Don't include "content" in podcast feed, use full description for "description" * Initial test implementation of Podcast RSS This is a pretty simple implementation to add support for The Podcast Namespace in RSS -- instead of affecting the existing RSS implementation, this adds a new UI option. I attempted to retain compatibility with the rest of the RSS feed implementation as much as possible and have created a temporary fork of the "pfeed" library to support this effort. * Update to pfeed-podcast 1.2.2 * Add correct feed image to RSS channel * Prefer HLS videos for podcast RSS Remove video/stream titles, add optional height attribute to podcast RSS * Prefix podcast RSS images with root server URL * Add optional video query support to include captions * Add transcripts & person images to podcast RSS feed * Prefer webseed/webtorrent files over HLS fragmented mp4s * Experimentally adding podcast fields to basic config page * Add validation for new basic config fields * Don't include "content" in podcast feed, use full description for "description" * Add medium/socialInteract to podcast RSS feeds. Use HTML for description * Change base production image to bullseye, install prosody in image * Add liveItem and trackers to Podcast RSS feeds Remove height from alternateEnclosure, replaced with title. * Clear Podcast RSS feed cache when live streams start/end * Upgrade to Node 16 * Refactor clearCacheRoute to use ApiCache * Remove unnecessary type hint * Update dockerfile to node 16, install python-is-python2 * Use new file paths for captions/playlists * Fix legacy videos in RSS after migration to object storage * Improve method of identifying non-fragmented mp4s in podcast RSS feeds * Don't include fragmented MP4s in podcast RSS feeds * Add experimental support for podcast:categories on the podcast RSS item * Fix undefined category when no videos exist Allows for empty feeds to exist (important for feeds that might only go live) * Add support for podcast:locked -- user has to opt in to show their email * Use comma for podcast:categories delimiter * Make cache clearing async * Fix merge, temporarily test with pfeed-podcast * Syntax changes * Add EXT_MIMETYPE constants for captions * Update & fix tests, fix enclosure mimetypes, remove admin email * Add test for podacst:socialInteract * Add filters hooks for podcast customTags * Remove showdown, updated to pfeed-podcast 6.1.2 * Add 'action:api.live-video.state.updated' hook * Avoid assigning undefined category to podcast feeds * Remove nvmrc * Remove comment * Remove unused podcast config * Remove more unused podcast config * Fix MChannelAccountDefault type hint missed in merge * Remove extra line * Re-add newline in config * Fix lint errors for isEmailPublic * Fix thumbnails in podcast feeds * Requested changes based on review * Provide podcast rss 2.0 only on video channels * Misc cleanup for a less messy PR * Lint fixes * Remove pfeed-podcast * Add peertube version to new hooks * Don't use query include, remove TODO * Remove film medium hack * Clear podcast rss cache before video/channel update hooks * Clear podcast rss cache before video uploaded/deleted hooks * Refactor podcast feed cache clearing * Set correct person name from video channel * Styling * Fix tests --------- Co-authored-by: Chocobozzz <me@florianbigard.com>
2023-05-22 16:00:05 +02:00
MActorHostOnly,
2022-06-17 10:49:37 +02:00
MActorId,
2020-12-08 14:30:29 +01:00
MActorSummaryFormattable,
MActorUrl,
MActorWithInboxes
} from '../../types/models/index.js'
import { AccountModel } from '../account/account.js'
import { getServerActor } from '../application/application.js'
import { ServerModel } from '../server/server.js'
2024-02-22 10:12:04 +01:00
import { SequelizeModel, buildSQLAttributes, isOutdated, throwIfNotValid } from '../shared/index.js'
import { VideoChannelModel } from '../video/video-channel.js'
import { VideoModel } from '../video/video.js'
import { ActorFollowModel } from './actor-follow.js'
import { ActorImageModel } from './actor-image.js'
2024-02-12 10:47:52 +01:00
import maxBy from 'lodash-es/maxBy.js'
2017-12-14 11:18:49 +01:00
2017-12-14 17:38:41 +01:00
enum ScopeNames {
FULL = 'FULL'
}
2023-01-09 10:29:23 +01:00
export const unusedActorAttributesForAPI: (keyof AttributesOnly<ActorModel>)[] = [
2018-08-23 17:58:39 +02:00
'publicKey',
'privateKey',
'inboxUrl',
'outboxUrl',
'sharedInboxUrl',
'followersUrl',
2021-05-07 08:59:59 +02:00
'followingUrl'
2018-08-23 17:58:39 +02:00
]
2019-04-23 09:50:57 +02:00
@DefaultScope(() => ({
2017-12-18 11:53:04 +01:00
include: [
{
2019-04-23 09:50:57 +02:00
model: ServerModel,
2017-12-18 11:53:04 +01:00
required: false
2017-12-29 19:10:13 +01:00
},
{
2021-04-06 11:35:56 +02:00
model: ActorImageModel,
as: 'Avatars',
2017-12-29 19:10:13 +01:00
required: false
2017-12-18 11:53:04 +01:00
}
]
2019-04-23 09:50:57 +02:00
}))
@Scopes(() => ({
2017-12-14 17:38:41 +01:00
[ScopeNames.FULL]: {
include: [
{
2019-04-23 09:50:57 +02:00
model: AccountModel.unscoped(),
2017-12-14 17:38:41 +01:00
required: false
},
{
2019-04-23 09:50:57 +02:00
model: VideoChannelModel.unscoped(),
2018-09-11 16:27:07 +02:00
required: false,
include: [
{
2019-04-23 09:50:57 +02:00
model: AccountModel,
2018-09-11 16:27:07 +02:00
required: true
}
]
2017-12-18 11:53:04 +01:00
},
{
2019-04-23 09:50:57 +02:00
model: ServerModel,
2017-12-18 11:53:04 +01:00
required: false
2017-12-29 19:10:13 +01:00
},
{
2021-04-06 11:35:56 +02:00
model: ActorImageModel,
as: 'Avatars',
2017-12-29 19:10:13 +01:00
required: false
2021-04-06 17:01:35 +02:00
},
{
model: ActorImageModel,
as: 'Banners',
2021-04-06 17:01:35 +02:00
required: false
2017-12-14 17:38:41 +01:00
}
2019-04-23 09:50:57 +02:00
]
2017-12-14 17:38:41 +01:00
}
2019-04-23 09:50:57 +02:00
}))
2017-12-14 11:18:49 +01:00
@Table({
2017-12-14 17:38:41 +01:00
tableName: 'actor',
indexes: [
2018-01-10 17:18:12 +01:00
{
2018-07-23 20:13:30 +02:00
fields: [ 'url' ],
unique: true
2018-01-10 17:18:12 +01:00
},
2017-12-14 17:38:41 +01:00
{
fields: [ fn('lower', col('preferredUsername')), 'serverId' ],
name: 'actor_preferred_username_lower_server_id',
unique: true,
where: {
serverId: {
[Op.ne]: null
}
}
},
{
fields: [ fn('lower', col('preferredUsername')) ],
name: 'actor_preferred_username_lower',
unique: true,
where: {
serverId: null
}
},
{
fields: [ 'inboxUrl', 'sharedInboxUrl' ]
2018-07-19 16:17:54 +02:00
},
2018-07-31 18:04:45 +02:00
{
fields: [ 'sharedInboxUrl' ]
},
2018-07-19 16:17:54 +02:00
{
fields: [ 'serverId' ]
},
2018-07-23 20:13:30 +02:00
{
fields: [ 'followersUrl' ]
2017-12-14 17:38:41 +01:00
}
]
2017-12-14 11:18:49 +01:00
})
2024-02-22 10:12:04 +01:00
export class ActorModel extends SequelizeModel<ActorModel> {
2017-12-14 11:18:49 +01:00
2017-12-14 17:38:41 +01:00
@AllowNull(false)
2022-08-17 15:36:03 +02:00
@Column(DataType.ENUM(...Object.values(ACTIVITY_PUB_ACTOR_TYPES)))
2017-12-14 17:38:41 +01:00
type: ActivityPubActorType
2017-12-14 11:18:49 +01:00
@AllowNull(false)
2017-12-19 10:34:56 +01:00
@Is('ActorPreferredUsername', value => throwIfNotValid(value, isActorPreferredUsernameValid, 'actor preferred username'))
2017-12-14 11:18:49 +01:00
@Column
2017-12-19 10:34:56 +01:00
preferredUsername: string
2017-12-14 11:18:49 +01:00
@AllowNull(false)
@Is('ActorUrl', value => throwIfNotValid(value, isActivityPubUrlValid, 'url'))
2018-01-03 11:10:40 +01:00
@Column(DataType.STRING(CONSTRAINTS_FIELDS.ACTORS.URL.max))
2017-12-14 11:18:49 +01:00
url: string
@AllowNull(true)
2019-04-18 11:28:17 +02:00
@Is('ActorPublicKey', value => throwIfNotValid(value, isActorPublicKeyValid, 'public key', true))
2018-01-03 11:10:40 +01:00
@Column(DataType.STRING(CONSTRAINTS_FIELDS.ACTORS.PUBLIC_KEY.max))
2017-12-14 11:18:49 +01:00
publicKey: string
@AllowNull(true)
2019-04-18 11:28:17 +02:00
@Is('ActorPublicKey', value => throwIfNotValid(value, isActorPrivateKeyValid, 'private key', true))
2018-01-03 11:10:40 +01:00
@Column(DataType.STRING(CONSTRAINTS_FIELDS.ACTORS.PRIVATE_KEY.max))
2017-12-14 11:18:49 +01:00
privateKey: string
@AllowNull(false)
@Is('ActorFollowersCount', value => throwIfNotValid(value, isActorFollowersCountValid, 'followers count'))
@Column
followersCount: number
@AllowNull(false)
@Is('ActorFollowersCount', value => throwIfNotValid(value, isActorFollowingCountValid, 'following count'))
@Column
followingCount: number
@AllowNull(false)
@Is('ActorInboxUrl', value => throwIfNotValid(value, isActivityPubUrlValid, 'inbox url'))
2018-01-03 11:10:40 +01:00
@Column(DataType.STRING(CONSTRAINTS_FIELDS.ACTORS.URL.max))
2017-12-14 11:18:49 +01:00
inboxUrl: string
2019-08-30 09:40:21 +02:00
@AllowNull(true)
@Is('ActorOutboxUrl', value => throwIfNotValid(value, isActivityPubUrlValid, 'outbox url', true))
2018-01-03 11:10:40 +01:00
@Column(DataType.STRING(CONSTRAINTS_FIELDS.ACTORS.URL.max))
2017-12-14 11:18:49 +01:00
outboxUrl: string
@AllowNull(true)
@Is('ActorSharedInboxUrl', value => throwIfNotValid(value, isActivityPubUrlValid, 'shared inbox url', true))
2018-01-03 11:10:40 +01:00
@Column(DataType.STRING(CONSTRAINTS_FIELDS.ACTORS.URL.max))
2017-12-14 11:18:49 +01:00
sharedInboxUrl: string
2019-08-30 09:40:21 +02:00
@AllowNull(true)
@Is('ActorFollowersUrl', value => throwIfNotValid(value, isActivityPubUrlValid, 'followers url', true))
2018-01-03 11:10:40 +01:00
@Column(DataType.STRING(CONSTRAINTS_FIELDS.ACTORS.URL.max))
2017-12-14 11:18:49 +01:00
followersUrl: string
2019-08-30 09:40:21 +02:00
@AllowNull(true)
@Is('ActorFollowingUrl', value => throwIfNotValid(value, isActivityPubUrlValid, 'following url', true))
2018-01-03 11:10:40 +01:00
@Column(DataType.STRING(CONSTRAINTS_FIELDS.ACTORS.URL.max))
2017-12-14 11:18:49 +01:00
followingUrl: string
2021-05-07 08:59:59 +02:00
@AllowNull(true)
@Column
remoteCreatedAt: Date
2017-12-14 11:18:49 +01:00
@CreatedAt
createdAt: Date
@UpdatedAt
updatedAt: Date
@HasMany(() => ActorImageModel, {
as: 'Avatars',
onDelete: 'cascade',
hooks: true,
2021-04-06 11:35:56 +02:00
foreignKey: {
allowNull: false
2021-04-06 11:35:56 +02:00
},
scope: {
type: ActorImageType.AVATAR
}
2021-04-06 11:35:56 +02:00
})
Avatars: Awaited<ActorImageModel>[]
2021-04-06 11:35:56 +02:00
@HasMany(() => ActorImageModel, {
as: 'Banners',
onDelete: 'cascade',
hooks: true,
2017-12-14 11:18:49 +01:00
foreignKey: {
allowNull: false
2017-12-14 11:18:49 +01:00
},
scope: {
type: ActorImageType.BANNER
}
2017-12-14 11:18:49 +01:00
})
Banners: Awaited<ActorImageModel>[]
2017-12-14 11:18:49 +01:00
2017-12-14 17:38:41 +01:00
@HasMany(() => ActorFollowModel, {
2017-12-14 11:18:49 +01:00
foreignKey: {
2017-12-14 17:38:41 +01:00
name: 'actorId',
2017-12-14 11:18:49 +01:00
allowNull: false
},
2018-12-26 10:36:24 +01:00
as: 'ActorFollowings',
2017-12-14 11:18:49 +01:00
onDelete: 'cascade'
})
ActorFollowing: Awaited<ActorFollowModel>[]
2017-12-14 11:18:49 +01:00
2017-12-14 17:38:41 +01:00
@HasMany(() => ActorFollowModel, {
2017-12-14 11:18:49 +01:00
foreignKey: {
2017-12-14 17:38:41 +01:00
name: 'targetActorId',
2017-12-14 11:18:49 +01:00
allowNull: false
},
as: 'ActorFollowers',
2017-12-14 11:18:49 +01:00
onDelete: 'cascade'
})
ActorFollowers: Awaited<ActorFollowModel>[]
2017-12-14 11:18:49 +01:00
@ForeignKey(() => ServerModel)
@Column
serverId: number
@BelongsTo(() => ServerModel, {
foreignKey: {
allowNull: true
},
onDelete: 'cascade'
})
Server: Awaited<ServerModel>
2017-12-14 11:18:49 +01:00
2017-12-14 17:38:41 +01:00
@HasOne(() => AccountModel, {
foreignKey: {
allowNull: true
},
onDelete: 'cascade',
hooks: true
2017-12-14 17:38:41 +01:00
})
Account: Awaited<AccountModel>
2017-12-14 17:38:41 +01:00
@HasOne(() => VideoChannelModel, {
foreignKey: {
allowNull: true
},
onDelete: 'cascade',
hooks: true
2017-12-14 17:38:41 +01:00
})
VideoChannel: Awaited<VideoChannelModel>
2017-12-14 17:38:41 +01:00
2023-01-09 10:29:23 +01:00
// ---------------------------------------------------------------------------
static getSQLAttributes (tableName: string, aliasPrefix = '') {
return buildSQLAttributes({
model: this,
tableName,
aliasPrefix
})
}
static getSQLAPIAttributes (tableName: string, aliasPrefix = '') {
return buildSQLAttributes({
model: this,
tableName,
aliasPrefix,
excludeAttributes: unusedActorAttributesForAPI
})
}
// ---------------------------------------------------------------------------
// FIXME: have to specify the result type to not break peertube typings generation
static wherePreferredUsername (preferredUsername: string, colName = 'preferredUsername'): Where {
return where(fn('lower', col(colName)), preferredUsername.toLowerCase())
}
// ---------------------------------------------------------------------------
2022-06-17 10:49:37 +02:00
static async load (id: number): Promise<MActor> {
const actorServer = await getServerActor()
if (id === actorServer.id) return actorServer
2019-02-21 14:28:06 +01:00
return ActorModel.unscoped().findByPk(id)
2017-12-14 17:38:41 +01:00
}
2020-12-08 14:30:29 +01:00
static loadFull (id: number): Promise<MActorFull> {
2019-08-15 11:53:26 +02:00
return ActorModel.scope(ScopeNames.FULL).findByPk(id)
}
2022-06-17 10:49:37 +02:00
static loadAccountActorFollowerUrlByVideoId (videoId: number, transaction: Transaction) {
const query = `SELECT "actor"."id" AS "id", "actor"."followersUrl" AS "followersUrl" ` +
`FROM "actor" ` +
`INNER JOIN "account" ON "actor"."id" = "account"."actorId" ` +
`INNER JOIN "videoChannel" ON "videoChannel"."accountId" = "account"."id" ` +
`INNER JOIN "video" ON "video"."channelId" = "videoChannel"."id" AND "video"."id" = :videoId`
const options = {
type: QueryTypes.SELECT as QueryTypes.SELECT,
replacements: { videoId },
plain: true as true,
transaction
}
2022-06-17 10:49:37 +02:00
return ActorModel.sequelize.query<MActorId & MActorFollowersUrl>(query, options)
2018-09-19 11:41:21 +02:00
}
2020-12-08 14:30:29 +01:00
static listByFollowersUrls (followersUrls: string[], transaction?: Transaction): Promise<MActorFull[]> {
2017-12-14 11:18:49 +01:00
const query = {
where: {
followersUrl: {
2020-01-31 16:56:52 +01:00
[Op.in]: followersUrls
2017-12-14 11:18:49 +01:00
}
},
transaction
}
2017-12-14 17:38:41 +01:00
return ActorModel.scope(ScopeNames.FULL).findAll(query)
}
2020-12-08 14:30:29 +01:00
static loadLocalByName (preferredUsername: string, transaction?: Transaction): Promise<MActorFull> {
2020-02-04 11:26:51 +01:00
const fun = () => {
const query = {
where: {
[Op.and]: [
2023-05-12 09:06:16 +02:00
this.wherePreferredUsername(preferredUsername, '"ActorModel"."preferredUsername"'),
{
serverId: null
}
]
2020-02-04 11:26:51 +01:00
},
transaction
}
2019-12-27 13:33:16 +01:00
return ActorModel.scope(ScopeNames.FULL).findOne(query)
2017-12-14 17:38:41 +01:00
}
2020-02-04 11:26:51 +01:00
return ModelCache.Instance.doCache({
cacheType: 'local-actor-name',
key: preferredUsername,
// The server actor never change, so we can easily cache it
whitelist: () => preferredUsername === SERVER_ACTOR_NAME,
fun
})
2020-01-28 14:45:17 +01:00
}
2020-12-08 14:30:29 +01:00
static loadLocalUrlByName (preferredUsername: string, transaction?: Transaction): Promise<MActorUrl> {
2020-02-04 11:26:51 +01:00
const fun = () => {
const query = {
attributes: [ 'url' ],
where: {
[Op.and]: [
this.wherePreferredUsername(preferredUsername),
{
serverId: null
}
]
2020-02-04 11:26:51 +01:00
},
transaction
}
2020-01-28 14:45:17 +01:00
return ActorModel.unscoped().findOne(query)
2020-01-28 14:45:17 +01:00
}
2020-02-04 11:26:51 +01:00
return ModelCache.Instance.doCache({
cacheType: 'local-actor-url',
2020-02-04 11:26:51 +01:00
key: preferredUsername,
// The server actor never change, so we can easily cache it
whitelist: () => preferredUsername === SERVER_ACTOR_NAME,
fun
})
2017-12-14 17:38:41 +01:00
}
2020-12-08 14:30:29 +01:00
static loadByNameAndHost (preferredUsername: string, host: string): Promise<MActorFull> {
2017-12-14 17:38:41 +01:00
const query = {
2023-05-12 09:06:16 +02:00
where: this.wherePreferredUsername(preferredUsername, '"ActorModel"."preferredUsername"'),
2017-12-14 17:38:41 +01:00
include: [
{
model: ServerModel,
required: true,
where: {
host
}
}
]
}
return ActorModel.scope(ScopeNames.FULL).findOne(query)
}
2020-12-08 14:30:29 +01:00
static loadByUrl (url: string, transaction?: Transaction): Promise<MActorAccountChannelId> {
const query = {
where: {
url
},
transaction,
include: [
{
attributes: [ 'id' ],
model: AccountModel.unscoped(),
required: false
},
{
attributes: [ 'id' ],
model: VideoChannelModel.unscoped(),
required: false
}
]
}
return ActorModel.unscoped().findOne(query)
}
2020-12-08 14:30:29 +01:00
static loadByUrlAndPopulateAccountAndChannel (url: string, transaction?: Transaction): Promise<MActorFull> {
2017-12-14 17:38:41 +01:00
const query = {
where: {
url
},
transaction
}
return ActorModel.scope(ScopeNames.FULL).findOne(query)
2017-12-14 11:18:49 +01:00
}
static rebuildFollowsCount (ofId: number, type: 'followers' | 'following', transaction?: Transaction) {
const sanitizedOfId = forceNumber(ofId)
const where = { id: sanitizedOfId }
let columnToUpdate: string
let columnOfCount: string
if (type === 'followers') {
columnToUpdate = 'followersCount'
columnOfCount = 'targetActorId'
} else {
columnToUpdate = 'followingCount'
columnOfCount = 'actorId'
}
return ActorModel.update({
[columnToUpdate]: literal(`(SELECT COUNT(*) FROM "actorFollow" WHERE "${columnOfCount}" = ${sanitizedOfId} AND "state" = 'accepted')`)
}, { where, transaction })
2018-01-12 11:47:45 +01:00
}
2021-07-01 16:47:14 +02:00
static loadAccountActorByVideoId (videoId: number, transaction: Transaction): Promise<MActor> {
2020-02-04 16:14:33 +01:00
const query = {
include: [
{
attributes: [ 'id' ],
model: AccountModel.unscoped(),
required: true,
include: [
{
attributes: [ 'id', 'accountId' ],
model: VideoChannelModel.unscoped(),
required: true,
include: [
{
attributes: [ 'id', 'channelId' ],
model: VideoModel.unscoped(),
where: {
id: videoId
}
}
]
}
]
}
2021-07-01 16:47:14 +02:00
],
transaction
2020-02-04 16:14:33 +01:00
}
return ActorModel.unscoped().findOne(query)
}
getSharedInbox (this: MActorWithInboxes) {
return this.sharedInboxUrl || this.inboxUrl
}
2019-08-20 19:05:31 +02:00
toFormattedSummaryJSON (this: MActorSummaryFormattable) {
2017-12-14 11:18:49 +01:00
return {
2018-01-04 11:19:16 +01:00
url: this.url,
name: this.preferredUsername,
2017-12-19 10:34:56 +01:00
host: this.getHost(),
avatars: (this.Avatars || []).map(a => a.toFormattedJSON())
2019-08-20 19:05:31 +02:00
}
}
toFormattedJSON (this: MActorFormattable) {
return {
...this.toFormattedSummaryJSON(),
2021-04-06 17:01:35 +02:00
2019-08-20 19:05:31 +02:00
id: this.id,
2018-09-11 16:27:07 +02:00
hostRedundancyAllowed: this.getRedundancyAllowed(),
2017-12-14 11:18:49 +01:00
followingCount: this.followingCount,
followersCount: this.followersCount,
createdAt: this.getCreatedAt(),
banners: (this.Banners || []).map(b => b.toFormattedJSON())
}
2017-12-14 11:18:49 +01:00
}
2021-04-06 17:01:35 +02:00
toActivityPubObject (this: MActorAPChannel | MActorAPAccount, name: string) {
let icon: ActivityIconObject[]
2021-04-06 17:01:35 +02:00
let image: ActivityIconObject
2020-01-31 16:56:52 +01:00
if (this.hasImage(ActorImageType.AVATAR)) {
icon = this.Avatars.map(a => a.toActivityPubObject())
2017-12-29 19:10:13 +01:00
}
if (this.hasImage(ActorImageType.BANNER)) {
const banner = getBiggestActorImage((this as MActorAPChannel).Banners)
const extension = getLowercaseExtension(banner.filename)
2021-04-06 17:01:35 +02:00
image = {
type: 'Image',
mediaType: MIMETYPES.IMAGE.EXT_MIMETYPE[extension],
2021-04-08 11:23:45 +02:00
height: banner.height,
width: banner.width,
url: ActorImageModel.getImageUrl(banner)
2021-04-06 17:01:35 +02:00
}
}
2017-12-14 11:18:49 +01:00
const json = {
type: this.type,
2017-12-14 11:18:49 +01:00
id: this.url,
following: this.getFollowingUrl(),
followers: this.getFollowersUrl(),
2019-02-26 10:55:40 +01:00
playlists: this.getPlaylistsUrl(),
2017-12-14 11:18:49 +01:00
inbox: this.inboxUrl,
outbox: this.outboxUrl,
2017-12-19 10:34:56 +01:00
preferredUsername: this.preferredUsername,
2017-12-14 11:18:49 +01:00
url: this.url,
2017-12-19 10:34:56 +01:00
name,
2017-12-14 11:18:49 +01:00
endpoints: {
sharedInbox: this.sharedInboxUrl
},
publicKey: {
id: this.getPublicKeyUrl(),
owner: this.url,
publicKeyPem: this.publicKey
2017-12-29 19:10:13 +01:00
},
2021-05-07 08:59:59 +02:00
published: this.getCreatedAt().toISOString(),
2021-04-06 17:01:35 +02:00
icon,
2021-04-06 17:01:35 +02:00
image
2017-12-14 11:18:49 +01:00
}
return activityPubContextify(json, 'Actor', getContextFilter())
2017-12-14 11:18:49 +01:00
}
2019-12-06 09:55:36 +01:00
getFollowerSharedInboxUrls (t: Transaction) {
2017-12-14 11:18:49 +01:00
const query = {
attributes: [ 'sharedInboxUrl' ],
include: [
{
attribute: [],
model: ActorFollowModel.unscoped(),
2017-12-14 11:18:49 +01:00
required: true,
2018-01-26 11:44:08 +01:00
as: 'ActorFollowing',
2017-12-14 11:18:49 +01:00
where: {
state: 'accepted',
2017-12-14 17:38:41 +01:00
targetActorId: this.id
2017-12-14 11:18:49 +01:00
}
}
],
transaction: t
}
return ActorModel.findAll(query)
.then(accounts => accounts.map(a => a.sharedInboxUrl))
}
getFollowingUrl () {
return this.url + '/following'
}
getFollowersUrl () {
return this.url + '/followers'
}
2019-02-26 10:55:40 +01:00
getPlaylistsUrl () {
return this.url + '/playlists'
}
2017-12-14 11:18:49 +01:00
getPublicKeyUrl () {
return this.url + '#main-key'
}
isOwned () {
return this.serverId === null
}
2017-12-19 10:34:56 +01:00
Add Podcast RSS feeds (#5487) * Initial test implementation of Podcast RSS This is a pretty simple implementation to add support for The Podcast Namespace in RSS -- instead of affecting the existing RSS implementation, this adds a new UI option. I attempted to retain compatibility with the rest of the RSS feed implementation as much as possible and have created a temporary fork of the "pfeed" library to support this effort. * Update to pfeed-podcast 1.2.2 * Initial test implementation of Podcast RSS This is a pretty simple implementation to add support for The Podcast Namespace in RSS -- instead of affecting the existing RSS implementation, this adds a new UI option. I attempted to retain compatibility with the rest of the RSS feed implementation as much as possible and have created a temporary fork of the "pfeed" library to support this effort. * Update to pfeed-podcast 1.2.2 * Initial test implementation of Podcast RSS This is a pretty simple implementation to add support for The Podcast Namespace in RSS -- instead of affecting the existing RSS implementation, this adds a new UI option. I attempted to retain compatibility with the rest of the RSS feed implementation as much as possible and have created a temporary fork of the "pfeed" library to support this effort. * Update to pfeed-podcast 1.2.2 * Add correct feed image to RSS channel * Prefer HLS videos for podcast RSS Remove video/stream titles, add optional height attribute to podcast RSS * Prefix podcast RSS images with root server URL * Add optional video query support to include captions * Add transcripts & person images to podcast RSS feed * Prefer webseed/webtorrent files over HLS fragmented mp4s * Experimentally adding podcast fields to basic config page * Add validation for new basic config fields * Don't include "content" in podcast feed, use full description for "description" * Initial test implementation of Podcast RSS This is a pretty simple implementation to add support for The Podcast Namespace in RSS -- instead of affecting the existing RSS implementation, this adds a new UI option. I attempted to retain compatibility with the rest of the RSS feed implementation as much as possible and have created a temporary fork of the "pfeed" library to support this effort. * Update to pfeed-podcast 1.2.2 * Add correct feed image to RSS channel * Prefer HLS videos for podcast RSS Remove video/stream titles, add optional height attribute to podcast RSS * Prefix podcast RSS images with root server URL * Add optional video query support to include captions * Add transcripts & person images to podcast RSS feed * Prefer webseed/webtorrent files over HLS fragmented mp4s * Experimentally adding podcast fields to basic config page * Add validation for new basic config fields * Don't include "content" in podcast feed, use full description for "description" * Add medium/socialInteract to podcast RSS feeds. Use HTML for description * Change base production image to bullseye, install prosody in image * Add liveItem and trackers to Podcast RSS feeds Remove height from alternateEnclosure, replaced with title. * Clear Podcast RSS feed cache when live streams start/end * Upgrade to Node 16 * Refactor clearCacheRoute to use ApiCache * Remove unnecessary type hint * Update dockerfile to node 16, install python-is-python2 * Use new file paths for captions/playlists * Fix legacy videos in RSS after migration to object storage * Improve method of identifying non-fragmented mp4s in podcast RSS feeds * Don't include fragmented MP4s in podcast RSS feeds * Add experimental support for podcast:categories on the podcast RSS item * Fix undefined category when no videos exist Allows for empty feeds to exist (important for feeds that might only go live) * Add support for podcast:locked -- user has to opt in to show their email * Use comma for podcast:categories delimiter * Make cache clearing async * Fix merge, temporarily test with pfeed-podcast * Syntax changes * Add EXT_MIMETYPE constants for captions * Update & fix tests, fix enclosure mimetypes, remove admin email * Add test for podacst:socialInteract * Add filters hooks for podcast customTags * Remove showdown, updated to pfeed-podcast 6.1.2 * Add 'action:api.live-video.state.updated' hook * Avoid assigning undefined category to podcast feeds * Remove nvmrc * Remove comment * Remove unused podcast config * Remove more unused podcast config * Fix MChannelAccountDefault type hint missed in merge * Remove extra line * Re-add newline in config * Fix lint errors for isEmailPublic * Fix thumbnails in podcast feeds * Requested changes based on review * Provide podcast rss 2.0 only on video channels * Misc cleanup for a less messy PR * Lint fixes * Remove pfeed-podcast * Add peertube version to new hooks * Don't use query include, remove TODO * Remove film medium hack * Clear podcast rss cache before video/channel update hooks * Clear podcast rss cache before video uploaded/deleted hooks * Refactor podcast feed cache clearing * Set correct person name from video channel * Styling * Fix tests --------- Co-authored-by: Chocobozzz <me@florianbigard.com>
2023-05-22 16:00:05 +02:00
getWebfingerUrl (this: MActorHost) {
2017-12-19 10:34:56 +01:00
return 'acct:' + this.preferredUsername + '@' + this.getHost()
}
Add Podcast RSS feeds (#5487) * Initial test implementation of Podcast RSS This is a pretty simple implementation to add support for The Podcast Namespace in RSS -- instead of affecting the existing RSS implementation, this adds a new UI option. I attempted to retain compatibility with the rest of the RSS feed implementation as much as possible and have created a temporary fork of the "pfeed" library to support this effort. * Update to pfeed-podcast 1.2.2 * Initial test implementation of Podcast RSS This is a pretty simple implementation to add support for The Podcast Namespace in RSS -- instead of affecting the existing RSS implementation, this adds a new UI option. I attempted to retain compatibility with the rest of the RSS feed implementation as much as possible and have created a temporary fork of the "pfeed" library to support this effort. * Update to pfeed-podcast 1.2.2 * Initial test implementation of Podcast RSS This is a pretty simple implementation to add support for The Podcast Namespace in RSS -- instead of affecting the existing RSS implementation, this adds a new UI option. I attempted to retain compatibility with the rest of the RSS feed implementation as much as possible and have created a temporary fork of the "pfeed" library to support this effort. * Update to pfeed-podcast 1.2.2 * Add correct feed image to RSS channel * Prefer HLS videos for podcast RSS Remove video/stream titles, add optional height attribute to podcast RSS * Prefix podcast RSS images with root server URL * Add optional video query support to include captions * Add transcripts & person images to podcast RSS feed * Prefer webseed/webtorrent files over HLS fragmented mp4s * Experimentally adding podcast fields to basic config page * Add validation for new basic config fields * Don't include "content" in podcast feed, use full description for "description" * Initial test implementation of Podcast RSS This is a pretty simple implementation to add support for The Podcast Namespace in RSS -- instead of affecting the existing RSS implementation, this adds a new UI option. I attempted to retain compatibility with the rest of the RSS feed implementation as much as possible and have created a temporary fork of the "pfeed" library to support this effort. * Update to pfeed-podcast 1.2.2 * Add correct feed image to RSS channel * Prefer HLS videos for podcast RSS Remove video/stream titles, add optional height attribute to podcast RSS * Prefix podcast RSS images with root server URL * Add optional video query support to include captions * Add transcripts & person images to podcast RSS feed * Prefer webseed/webtorrent files over HLS fragmented mp4s * Experimentally adding podcast fields to basic config page * Add validation for new basic config fields * Don't include "content" in podcast feed, use full description for "description" * Add medium/socialInteract to podcast RSS feeds. Use HTML for description * Change base production image to bullseye, install prosody in image * Add liveItem and trackers to Podcast RSS feeds Remove height from alternateEnclosure, replaced with title. * Clear Podcast RSS feed cache when live streams start/end * Upgrade to Node 16 * Refactor clearCacheRoute to use ApiCache * Remove unnecessary type hint * Update dockerfile to node 16, install python-is-python2 * Use new file paths for captions/playlists * Fix legacy videos in RSS after migration to object storage * Improve method of identifying non-fragmented mp4s in podcast RSS feeds * Don't include fragmented MP4s in podcast RSS feeds * Add experimental support for podcast:categories on the podcast RSS item * Fix undefined category when no videos exist Allows for empty feeds to exist (important for feeds that might only go live) * Add support for podcast:locked -- user has to opt in to show their email * Use comma for podcast:categories delimiter * Make cache clearing async * Fix merge, temporarily test with pfeed-podcast * Syntax changes * Add EXT_MIMETYPE constants for captions * Update & fix tests, fix enclosure mimetypes, remove admin email * Add test for podacst:socialInteract * Add filters hooks for podcast customTags * Remove showdown, updated to pfeed-podcast 6.1.2 * Add 'action:api.live-video.state.updated' hook * Avoid assigning undefined category to podcast feeds * Remove nvmrc * Remove comment * Remove unused podcast config * Remove more unused podcast config * Fix MChannelAccountDefault type hint missed in merge * Remove extra line * Re-add newline in config * Fix lint errors for isEmailPublic * Fix thumbnails in podcast feeds * Requested changes based on review * Provide podcast rss 2.0 only on video channels * Misc cleanup for a less messy PR * Lint fixes * Remove pfeed-podcast * Add peertube version to new hooks * Don't use query include, remove TODO * Remove film medium hack * Clear podcast rss cache before video/channel update hooks * Clear podcast rss cache before video uploaded/deleted hooks * Refactor podcast feed cache clearing * Set correct person name from video channel * Styling * Fix tests --------- Co-authored-by: Chocobozzz <me@florianbigard.com>
2023-05-22 16:00:05 +02:00
getIdentifier (this: MActorHost) {
return this.Server ? `${this.preferredUsername}@${this.Server.host}` : this.preferredUsername
}
2024-02-12 10:47:52 +01:00
getFullIdentifier (this: MActorHost) {
return `${this.preferredUsername}@${this.getHost()}`
}
Add Podcast RSS feeds (#5487) * Initial test implementation of Podcast RSS This is a pretty simple implementation to add support for The Podcast Namespace in RSS -- instead of affecting the existing RSS implementation, this adds a new UI option. I attempted to retain compatibility with the rest of the RSS feed implementation as much as possible and have created a temporary fork of the "pfeed" library to support this effort. * Update to pfeed-podcast 1.2.2 * Initial test implementation of Podcast RSS This is a pretty simple implementation to add support for The Podcast Namespace in RSS -- instead of affecting the existing RSS implementation, this adds a new UI option. I attempted to retain compatibility with the rest of the RSS feed implementation as much as possible and have created a temporary fork of the "pfeed" library to support this effort. * Update to pfeed-podcast 1.2.2 * Initial test implementation of Podcast RSS This is a pretty simple implementation to add support for The Podcast Namespace in RSS -- instead of affecting the existing RSS implementation, this adds a new UI option. I attempted to retain compatibility with the rest of the RSS feed implementation as much as possible and have created a temporary fork of the "pfeed" library to support this effort. * Update to pfeed-podcast 1.2.2 * Add correct feed image to RSS channel * Prefer HLS videos for podcast RSS Remove video/stream titles, add optional height attribute to podcast RSS * Prefix podcast RSS images with root server URL * Add optional video query support to include captions * Add transcripts & person images to podcast RSS feed * Prefer webseed/webtorrent files over HLS fragmented mp4s * Experimentally adding podcast fields to basic config page * Add validation for new basic config fields * Don't include "content" in podcast feed, use full description for "description" * Initial test implementation of Podcast RSS This is a pretty simple implementation to add support for The Podcast Namespace in RSS -- instead of affecting the existing RSS implementation, this adds a new UI option. I attempted to retain compatibility with the rest of the RSS feed implementation as much as possible and have created a temporary fork of the "pfeed" library to support this effort. * Update to pfeed-podcast 1.2.2 * Add correct feed image to RSS channel * Prefer HLS videos for podcast RSS Remove video/stream titles, add optional height attribute to podcast RSS * Prefix podcast RSS images with root server URL * Add optional video query support to include captions * Add transcripts & person images to podcast RSS feed * Prefer webseed/webtorrent files over HLS fragmented mp4s * Experimentally adding podcast fields to basic config page * Add validation for new basic config fields * Don't include "content" in podcast feed, use full description for "description" * Add medium/socialInteract to podcast RSS feeds. Use HTML for description * Change base production image to bullseye, install prosody in image * Add liveItem and trackers to Podcast RSS feeds Remove height from alternateEnclosure, replaced with title. * Clear Podcast RSS feed cache when live streams start/end * Upgrade to Node 16 * Refactor clearCacheRoute to use ApiCache * Remove unnecessary type hint * Update dockerfile to node 16, install python-is-python2 * Use new file paths for captions/playlists * Fix legacy videos in RSS after migration to object storage * Improve method of identifying non-fragmented mp4s in podcast RSS feeds * Don't include fragmented MP4s in podcast RSS feeds * Add experimental support for podcast:categories on the podcast RSS item * Fix undefined category when no videos exist Allows for empty feeds to exist (important for feeds that might only go live) * Add support for podcast:locked -- user has to opt in to show their email * Use comma for podcast:categories delimiter * Make cache clearing async * Fix merge, temporarily test with pfeed-podcast * Syntax changes * Add EXT_MIMETYPE constants for captions * Update & fix tests, fix enclosure mimetypes, remove admin email * Add test for podacst:socialInteract * Add filters hooks for podcast customTags * Remove showdown, updated to pfeed-podcast 6.1.2 * Add 'action:api.live-video.state.updated' hook * Avoid assigning undefined category to podcast feeds * Remove nvmrc * Remove comment * Remove unused podcast config * Remove more unused podcast config * Fix MChannelAccountDefault type hint missed in merge * Remove extra line * Re-add newline in config * Fix lint errors for isEmailPublic * Fix thumbnails in podcast feeds * Requested changes based on review * Provide podcast rss 2.0 only on video channels * Misc cleanup for a less messy PR * Lint fixes * Remove pfeed-podcast * Add peertube version to new hooks * Don't use query include, remove TODO * Remove film medium hack * Clear podcast rss cache before video/channel update hooks * Clear podcast rss cache before video uploaded/deleted hooks * Refactor podcast feed cache clearing * Set correct person name from video channel * Styling * Fix tests --------- Co-authored-by: Chocobozzz <me@florianbigard.com>
2023-05-22 16:00:05 +02:00
getHost (this: MActorHostOnly) {
2019-04-11 11:33:44 +02:00
return this.Server ? this.Server.host : WEBSERVER.HOST
2017-12-19 10:34:56 +01:00
}
2017-12-29 19:10:13 +01:00
2019-08-21 14:31:57 +02:00
getRedundancyAllowed () {
2018-09-11 16:27:07 +02:00
return this.Server ? this.Server.redundancyAllowed : false
}
hasImage (type: ActorImageType_Type) {
const images = type === ActorImageType.AVATAR
? this.Avatars
: this.Banners
2021-04-06 17:01:35 +02:00
return Array.isArray(images) && images.length !== 0
2021-04-06 17:01:35 +02:00
}
2024-02-12 10:47:52 +01:00
getMaxQualityImage (type: ActorImageType_Type) {
if (!this.hasImage(type)) return undefined
const images = type === ActorImageType.AVATAR
? this.Avatars
: this.Banners
return maxBy(images, 'height')
}
2018-01-04 14:04:02 +01:00
isOutdated () {
if (this.isOwned()) return false
2019-03-19 14:13:53 +01:00
return isOutdated(this, ACTIVITY_PUB.ACTOR_REFRESH_INTERVAL)
2018-01-04 14:04:02 +01:00
}
2021-05-07 08:59:59 +02:00
getCreatedAt (this: MActorAPChannel | MActorAPAccount | MActorFormattable) {
return this.remoteCreatedAt || this.createdAt
}
2017-12-14 11:18:49 +01:00
}