123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546 |
- import * as Bluebird from 'bluebird'
- import { values } from 'lodash'
- import {
- AfterCreate,
- AfterDestroy,
- AfterUpdate,
- AllowNull,
- BelongsTo,
- Column,
- CreatedAt,
- DataType,
- Default,
- ForeignKey,
- IsInt,
- Max,
- Model,
- Table,
- UpdatedAt
- } from 'sequelize-typescript'
- import { FollowState } from '../../../shared/models/actors'
- import { ActorFollow } from '../../../shared/models/actors/follow.model'
- import { logger } from '../../helpers/logger'
- import { getServerActor } from '../../helpers/utils'
- import { ACTOR_FOLLOW_SCORE, FOLLOW_STATES } from '../../initializers/constants'
- import { ServerModel } from '../server/server'
- import { getSort } from '../utils'
- import { ActorModel, unusedActorAttributesForAPI } from './actor'
- import { VideoChannelModel } from '../video/video-channel'
- import { AccountModel } from '../account/account'
- import { IncludeOptions, Op, Transaction, QueryTypes } from 'sequelize'
- @Table({
- tableName: 'actorFollow',
- indexes: [
- {
- fields: [ 'actorId' ]
- },
- {
- fields: [ 'targetActorId' ]
- },
- {
- fields: [ 'actorId', 'targetActorId' ],
- unique: true
- },
- {
- fields: [ 'score' ]
- }
- ]
- })
- export class ActorFollowModel extends Model<ActorFollowModel> {
- @AllowNull(false)
- @Column(DataType.ENUM(...values(FOLLOW_STATES)))
- state: FollowState
- @AllowNull(false)
- @Default(ACTOR_FOLLOW_SCORE.BASE)
- @IsInt
- @Max(ACTOR_FOLLOW_SCORE.MAX)
- @Column
- score: number
- @CreatedAt
- createdAt: Date
- @UpdatedAt
- updatedAt: Date
- @ForeignKey(() => ActorModel)
- @Column
- actorId: number
- @BelongsTo(() => ActorModel, {
- foreignKey: {
- name: 'actorId',
- allowNull: false
- },
- as: 'ActorFollower',
- onDelete: 'CASCADE'
- })
- ActorFollower: ActorModel
- @ForeignKey(() => ActorModel)
- @Column
- targetActorId: number
- @BelongsTo(() => ActorModel, {
- foreignKey: {
- name: 'targetActorId',
- allowNull: false
- },
- as: 'ActorFollowing',
- onDelete: 'CASCADE'
- })
- ActorFollowing: ActorModel
- @AfterCreate
- @AfterUpdate
- static incrementFollowerAndFollowingCount (instance: ActorFollowModel) {
- if (instance.state !== 'accepted') return undefined
- return Promise.all([
- ActorModel.incrementFollows(instance.actorId, 'followingCount', 1),
- ActorModel.incrementFollows(instance.targetActorId, 'followersCount', 1)
- ])
- }
- @AfterDestroy
- static decrementFollowerAndFollowingCount (instance: ActorFollowModel) {
- return Promise.all([
- ActorModel.incrementFollows(instance.actorId, 'followingCount',-1),
- ActorModel.incrementFollows(instance.targetActorId, 'followersCount', -1)
- ])
- }
- // Remove actor follows with a score of 0 (too many requests where they were unreachable)
- static async removeBadActorFollows () {
- const actorFollows = await ActorFollowModel.listBadActorFollows()
- const actorFollowsRemovePromises = actorFollows.map(actorFollow => actorFollow.destroy())
- await Promise.all(actorFollowsRemovePromises)
- const numberOfActorFollowsRemoved = actorFollows.length
- if (numberOfActorFollowsRemoved) logger.info('Removed bad %d actor follows.', numberOfActorFollowsRemoved)
- }
- static loadByActorAndTarget (actorId: number, targetActorId: number, t?: Transaction) {
- const query = {
- where: {
- actorId,
- targetActorId: targetActorId
- },
- include: [
- {
- model: ActorModel,
- required: true,
- as: 'ActorFollower'
- },
- {
- model: ActorModel,
- required: true,
- as: 'ActorFollowing'
- }
- ],
- transaction: t
- }
- return ActorFollowModel.findOne(query)
- }
- static loadByActorAndTargetNameAndHostForAPI (actorId: number, targetName: string, targetHost: string, t?: Transaction) {
- const actorFollowingPartInclude: IncludeOptions = {
- model: ActorModel,
- required: true,
- as: 'ActorFollowing',
- where: {
- preferredUsername: targetName
- },
- include: [
- {
- model: VideoChannelModel.unscoped(),
- required: false
- }
- ]
- }
- if (targetHost === null) {
- actorFollowingPartInclude.where['serverId'] = null
- } else {
- actorFollowingPartInclude.include.push({
- model: ServerModel,
- required: true,
- where: {
- host: targetHost
- }
- })
- }
- const query = {
- where: {
- actorId
- },
- include: [
- actorFollowingPartInclude,
- {
- model: ActorModel,
- required: true,
- as: 'ActorFollower'
- }
- ],
- transaction: t
- }
- return ActorFollowModel.findOne(query)
- .then(result => {
- if (result && result.ActorFollowing.VideoChannel) {
- result.ActorFollowing.VideoChannel.Actor = result.ActorFollowing
- }
- return result
- })
- }
- static listSubscribedIn (actorId: number, targets: { name: string, host?: string }[]) {
- const whereTab = targets
- .map(t => {
- if (t.host) {
- return {
- [ Op.and ]: [
- {
- '$preferredUsername$': t.name
- },
- {
- '$host$': t.host
- }
- ]
- }
- }
- return {
- [ Op.and ]: [
- {
- '$preferredUsername$': t.name
- },
- {
- '$serverId$': null
- }
- ]
- }
- })
- const query = {
- attributes: [],
- where: {
- [ Op.and ]: [
- {
- [ Op.or ]: whereTab
- },
- {
- actorId
- }
- ]
- },
- include: [
- {
- attributes: [ 'preferredUsername' ],
- model: ActorModel.unscoped(),
- required: true,
- as: 'ActorFollowing',
- include: [
- {
- attributes: [ 'host' ],
- model: ServerModel.unscoped(),
- required: false
- }
- ]
- }
- ]
- }
- return ActorFollowModel.findAll(query)
- }
- static listFollowingForApi (id: number, start: number, count: number, sort: string, search?: string) {
- const query = {
- distinct: true,
- offset: start,
- limit: count,
- order: getSort(sort),
- include: [
- {
- model: ActorModel,
- required: true,
- as: 'ActorFollower',
- where: {
- id
- }
- },
- {
- model: ActorModel,
- as: 'ActorFollowing',
- required: true,
- include: [
- {
- model: ServerModel,
- required: true,
- where: search ? {
- host: {
- [Op.iLike]: '%' + search + '%'
- }
- } : undefined
- }
- ]
- }
- ]
- }
- return ActorFollowModel.findAndCountAll(query)
- .then(({ rows, count }) => {
- return {
- data: rows,
- total: count
- }
- })
- }
- static listFollowersForApi (actorId: number, start: number, count: number, sort: string, search?: string) {
- const query = {
- distinct: true,
- offset: start,
- limit: count,
- order: getSort(sort),
- include: [
- {
- model: ActorModel,
- required: true,
- as: 'ActorFollower',
- include: [
- {
- model: ServerModel,
- required: true,
- where: search ? {
- host: {
- [ Op.iLike ]: '%' + search + '%'
- }
- } : undefined
- }
- ]
- },
- {
- model: ActorModel,
- as: 'ActorFollowing',
- required: true,
- where: {
- id: actorId
- }
- }
- ]
- }
- return ActorFollowModel.findAndCountAll(query)
- .then(({ rows, count }) => {
- return {
- data: rows,
- total: count
- }
- })
- }
- static listSubscriptionsForApi (actorId: number, start: number, count: number, sort: string) {
- const query = {
- attributes: [],
- distinct: true,
- offset: start,
- limit: count,
- order: getSort(sort),
- where: {
- actorId: actorId
- },
- include: [
- {
- attributes: [ 'id' ],
- model: ActorModel.unscoped(),
- as: 'ActorFollowing',
- required: true,
- include: [
- {
- model: VideoChannelModel.unscoped(),
- required: true,
- include: [
- {
- attributes: {
- exclude: unusedActorAttributesForAPI
- },
- model: ActorModel,
- required: true
- },
- {
- model: AccountModel.unscoped(),
- required: true,
- include: [
- {
- attributes: {
- exclude: unusedActorAttributesForAPI
- },
- model: ActorModel,
- required: true
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- }
- return ActorFollowModel.findAndCountAll(query)
- .then(({ rows, count }) => {
- return {
- data: rows.map(r => r.ActorFollowing.VideoChannel),
- total: count
- }
- })
- }
- static listAcceptedFollowerUrlsForAP (actorIds: number[], t: Transaction, start?: number, count?: number) {
- return ActorFollowModel.createListAcceptedFollowForApiQuery('followers', actorIds, t, start, count)
- }
- static listAcceptedFollowerSharedInboxUrls (actorIds: number[], t: Transaction) {
- return ActorFollowModel.createListAcceptedFollowForApiQuery(
- 'followers',
- actorIds,
- t,
- undefined,
- undefined,
- 'sharedInboxUrl',
- true
- )
- }
- static listAcceptedFollowingUrlsForApi (actorIds: number[], t: Transaction, start?: number, count?: number) {
- return ActorFollowModel.createListAcceptedFollowForApiQuery('following', actorIds, t, start, count)
- }
- static async getStats () {
- const serverActor = await getServerActor()
- const totalInstanceFollowing = await ActorFollowModel.count({
- where: {
- actorId: serverActor.id
- }
- })
- const totalInstanceFollowers = await ActorFollowModel.count({
- where: {
- targetActorId: serverActor.id
- }
- })
- return {
- totalInstanceFollowing,
- totalInstanceFollowers
- }
- }
- static updateFollowScore (inboxUrl: string, value: number, t?: Transaction) {
- const query = `UPDATE "actorFollow" SET "score" = LEAST("score" + ${value}, ${ACTOR_FOLLOW_SCORE.MAX}) ` +
- 'WHERE id IN (' +
- 'SELECT "actorFollow"."id" FROM "actorFollow" ' +
- 'INNER JOIN "actor" ON "actor"."id" = "actorFollow"."actorId" ' +
- `WHERE "actor"."inboxUrl" = '${inboxUrl}' OR "actor"."sharedInboxUrl" = '${inboxUrl}'` +
- ')'
- const options = {
- type: QueryTypes.BULKUPDATE,
- transaction: t
- }
- return ActorFollowModel.sequelize.query(query, options)
- }
- private static async createListAcceptedFollowForApiQuery (
- type: 'followers' | 'following',
- actorIds: number[],
- t: Transaction,
- start?: number,
- count?: number,
- columnUrl = 'url',
- distinct = false
- ) {
- let firstJoin: string
- let secondJoin: string
- if (type === 'followers') {
- firstJoin = 'targetActorId'
- secondJoin = 'actorId'
- } else {
- firstJoin = 'actorId'
- secondJoin = 'targetActorId'
- }
- const selections: string[] = []
- if (distinct === true) selections.push('DISTINCT("Follows"."' + columnUrl + '") AS "url"')
- else selections.push('"Follows"."' + columnUrl + '" AS "url"')
- selections.push('COUNT(*) AS "total"')
- const tasks: Bluebird<any>[] = []
- for (let selection of selections) {
- let query = 'SELECT ' + selection + ' FROM "actor" ' +
- 'INNER JOIN "actorFollow" ON "actorFollow"."' + firstJoin + '" = "actor"."id" ' +
- 'INNER JOIN "actor" AS "Follows" ON "actorFollow"."' + secondJoin + '" = "Follows"."id" ' +
- 'WHERE "actor"."id" = ANY ($actorIds) AND "actorFollow"."state" = \'accepted\' '
- if (count !== undefined) query += 'LIMIT ' + count
- if (start !== undefined) query += ' OFFSET ' + start
- const options = {
- bind: { actorIds },
- type: QueryTypes.SELECT,
- transaction: t
- }
- tasks.push(ActorFollowModel.sequelize.query(query, options))
- }
- const [ followers, [ dataTotal ] ] = await Promise.all(tasks)
- const urls: string[] = followers.map(f => f.url)
- return {
- data: urls,
- total: dataTotal ? parseInt(dataTotal.total, 10) : 0
- }
- }
- private static listBadActorFollows () {
- const query = {
- where: {
- score: {
- [Op.lte]: 0
- }
- },
- logging: false
- }
- return ActorFollowModel.findAll(query)
- }
- toFormattedJSON (): ActorFollow {
- const follower = this.ActorFollower.toFormattedJSON()
- const following = this.ActorFollowing.toFormattedJSON()
- return {
- id: this.id,
- follower,
- following,
- score: this.score,
- state: this.state,
- createdAt: this.createdAt,
- updatedAt: this.updatedAt
- }
- }
- }
|