]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/controllers/api/server/follows.ts
Save
[github/Chocobozzz/PeerTube.git] / server / controllers / api / server / follows.ts
CommitLineData
4d4e5cd4 1import * as express from 'express'
3fd3ab2d
C
2import { UserRight } from '../../../../shared/models/users'
3import { getAccountFromWebfinger, getFormattedObjects, getServerAccount, logger, retryTransactionWrapper } from '../../../helpers'
4import { sequelizeTypescript, SERVER_ACCOUNT_NAME } from '../../../initializers'
5import { saveAccountAndServerIfNotExist } from '../../../lib/activitypub'
6import { sendUndoFollow } from '../../../lib/activitypub/send'
c46edbc2 7import { sendFollow } from '../../../lib/index'
3fd3ab2d
C
8import {
9 asyncMiddleware,
10 authenticate,
11 ensureUserHasRight,
12 paginationValidator,
13 removeFollowingValidator,
14 setBodyHostsPort,
15 setFollowersSort,
16 setFollowingSort,
17 setPagination
18} from '../../../middlewares'
19import { followersSortValidator, followingSortValidator, followValidator } from '../../../middlewares/validators'
20import { AccountModel } from '../../../models/account/account'
21import { AccountFollowModel } from '../../../models/account/account-follow'
51548b31 22
4610bc5b 23const serverFollowsRouter = express.Router()
51548b31 24
4610bc5b 25serverFollowsRouter.get('/following',
8a02bd04 26 paginationValidator,
7a7724e6
C
27 followingSortValidator,
28 setFollowingSort,
8a02bd04 29 setPagination,
7a7724e6
C
30 asyncMiddleware(listFollowing)
31)
32
9a27cdc2 33serverFollowsRouter.post('/following',
8e696487 34 authenticate,
4610bc5b 35 ensureUserHasRight(UserRight.MANAGE_SERVER_FOLLOW),
ce548a10
C
36 followValidator,
37 setBodyHostsPort,
0f91ae62 38 asyncMiddleware(followRetry)
ce548a10
C
39)
40
54141398
C
41serverFollowsRouter.delete('/following/:accountId',
42 authenticate,
43 ensureUserHasRight(UserRight.MANAGE_SERVER_FOLLOW),
a2431b7d 44 asyncMiddleware(removeFollowingValidator),
54141398
C
45 asyncMiddleware(removeFollow)
46)
47
4610bc5b 48serverFollowsRouter.get('/followers',
7a7724e6
C
49 paginationValidator,
50 followersSortValidator,
51 setFollowersSort,
52 setPagination,
53 asyncMiddleware(listFollowers)
65fcc311 54)
65fcc311
C
55
56// ---------------------------------------------------------------------------
57
58export {
4610bc5b 59 serverFollowsRouter
65fcc311
C
60}
61
62// ---------------------------------------------------------------------------
63
7a7724e6 64async function listFollowing (req: express.Request, res: express.Response, next: express.NextFunction) {
4610bc5b 65 const serverAccount = await getServerAccount()
3fd3ab2d 66 const resultList = await AccountFollowModel.listFollowingForApi(serverAccount.id, req.query.start, req.query.count, req.query.sort)
7a7724e6
C
67
68 return res.json(getFormattedObjects(resultList.data, resultList.total))
69}
70
71async function listFollowers (req: express.Request, res: express.Response, next: express.NextFunction) {
4610bc5b 72 const serverAccount = await getServerAccount()
3fd3ab2d 73 const resultList = await AccountFollowModel.listFollowersForApi(serverAccount.id, req.query.start, req.query.count, req.query.sort)
eb080476
C
74
75 return res.json(getFormattedObjects(resultList.data, resultList.total))
65fcc311 76}
ce548a10 77
0f91ae62 78async function followRetry (req: express.Request, res: express.Response, next: express.NextFunction) {
ce548a10 79 const hosts = req.body.hosts as string[]
efc32059 80 const fromAccount = await getServerAccount()
ce548a10 81
350e31d6
C
82 const tasks: Promise<any>[] = []
83 const accountName = SERVER_ACCOUNT_NAME
84
ce548a10 85 for (const host of hosts) {
ce548a10
C
86
87 // We process each host in a specific transaction
88 // First, we add the follow request in the database
89 // Then we send the follow request to other account
350e31d6
C
90 const p = loadLocalOrGetAccountFromWebfinger(accountName, host)
91 .then(accountResult => {
92 let targetAccount = accountResult.account
93
0f91ae62
C
94 const options = {
95 arguments: [ fromAccount, targetAccount, accountResult.loadedFromDB ],
96 errorMessage: 'Cannot follow with many retries.'
97 }
98
99 return retryTransactionWrapper(follow, options)
ce548a10 100 })
350e31d6 101 .catch(err => logger.warn('Cannot follow server %s.', `${accountName}@${host}`, err))
ce548a10
C
102
103 tasks.push(p)
104 }
105
8e10cf1a
C
106 // Don't make the client wait the tasks
107 Promise.all(tasks)
0f91ae62 108 .catch(err => logger.error('Error in follow.', err))
ce548a10
C
109
110 return res.status(204).end()
111}
350e31d6 112
3fd3ab2d 113async function follow (fromAccount: AccountModel, targetAccount: AccountModel, targetAlreadyInDB: boolean) {
0f91ae62 114 try {
3fd3ab2d 115 await sequelizeTypescript.transaction(async t => {
0f91ae62
C
116 if (targetAlreadyInDB === false) {
117 await saveAccountAndServerIfNotExist(targetAccount, t)
118 }
119
3fd3ab2d 120 const [ accountFollow ] = await AccountFollowModel.findOrCreate({
0f91ae62
C
121 where: {
122 accountId: fromAccount.id,
123 targetAccountId: targetAccount.id
124 },
125 defaults: {
126 state: 'pending',
127 accountId: fromAccount.id,
128 targetAccountId: targetAccount.id
129 },
130 transaction: t
131 })
132 accountFollow.AccountFollowing = targetAccount
133 accountFollow.AccountFollower = fromAccount
134
135 // Send a notification to remote server
136 if (accountFollow.state === 'pending') {
137 await sendFollow(accountFollow, t)
138 }
139 })
140 } catch (err) {
141 // Reset target account
142 targetAccount.isNewRecord = !targetAlreadyInDB
143 throw err
144 }
145}
146
54141398 147async function removeFollow (req: express.Request, res: express.Response, next: express.NextFunction) {
3fd3ab2d 148 const follow: AccountFollowModel = res.locals.follow
54141398 149
3fd3ab2d 150 await sequelizeTypescript.transaction(async t => {
40ff5707
C
151 if (follow.state === 'accepted') await sendUndoFollow(follow, t)
152
0f91ae62 153 await follow.destroy({ transaction: t })
54141398
C
154 })
155
40ff5707
C
156 // Destroy the account that will destroy video channels, videos and video files too
157 // This could be long so don't wait this task
158 const following = follow.AccountFollowing
159 following.destroy()
fadf619a 160 .catch(err => logger.error('Cannot destroy account that we do not follow anymore %s.', following.Actor.url, err))
40ff5707 161
54141398
C
162 return res.status(204).end()
163}
164
350e31d6
C
165async function loadLocalOrGetAccountFromWebfinger (name: string, host: string) {
166 let loadedFromDB = true
3fd3ab2d 167 let account = await AccountModel.loadByNameAndHost(name, host)
350e31d6
C
168
169 if (!account) {
170 const nameWithDomain = name + '@' + host
171 account = await getAccountFromWebfinger(nameWithDomain)
172 loadedFromDB = false
173 }
174
175 return { account, loadedFromDB }
176}