diff options
author | Chocobozzz <me@florianbigard.com> | 2018-05-25 16:21:16 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-05-25 16:21:16 +0200 |
commit | 8fffe21a7bc96d08b229293d66ddba576e609790 (patch) | |
tree | 5ebd5f5198a59084c5338ce197d7e836b39200a4 /server/lib/job-queue/handlers | |
parent | e251f170b00b2014ac4e823113c6ff40e3fb1471 (diff) | |
download | PeerTube-8fffe21a7bc96d08b229293d66ddba576e609790.tar.gz PeerTube-8fffe21a7bc96d08b229293d66ddba576e609790.tar.zst PeerTube-8fffe21a7bc96d08b229293d66ddba576e609790.zip |
Refractor and optimize AP collections
Only display urls in general object, and paginate video comments, shares, likes and
dislikes
Diffstat (limited to 'server/lib/job-queue/handlers')
-rw-r--r-- | server/lib/job-queue/handlers/activitypub-http-fetcher.ts | 44 |
1 files changed, 3 insertions, 41 deletions
diff --git a/server/lib/job-queue/handlers/activitypub-http-fetcher.ts b/server/lib/job-queue/handlers/activitypub-http-fetcher.ts index 4683beb2f..10c0e606f 100644 --- a/server/lib/job-queue/handlers/activitypub-http-fetcher.ts +++ b/server/lib/job-queue/handlers/activitypub-http-fetcher.ts | |||
@@ -1,9 +1,9 @@ | |||
1 | import * as kue from 'kue' | 1 | import * as kue from 'kue' |
2 | import { logger } from '../../../helpers/logger' | 2 | import { logger } from '../../../helpers/logger' |
3 | import { doRequest } from '../../../helpers/requests' | ||
4 | import { ACTIVITY_PUB, JOB_REQUEST_TIMEOUT } from '../../../initializers' | ||
5 | import { processActivities } from '../../activitypub/process' | 3 | import { processActivities } from '../../activitypub/process' |
6 | import { ActivitypubHttpBroadcastPayload } from './activitypub-http-broadcast' | 4 | import { ActivitypubHttpBroadcastPayload } from './activitypub-http-broadcast' |
5 | import { crawlCollectionPage } from '../../activitypub/crawl' | ||
6 | import { Activity } from '../../../../shared/models/activitypub' | ||
7 | 7 | ||
8 | export type ActivitypubHttpFetcherPayload = { | 8 | export type ActivitypubHttpFetcherPayload = { |
9 | uris: string[] | 9 | uris: string[] |
@@ -14,46 +14,8 @@ async function processActivityPubHttpFetcher (job: kue.Job) { | |||
14 | 14 | ||
15 | const payload = job.data as ActivitypubHttpBroadcastPayload | 15 | const payload = job.data as ActivitypubHttpBroadcastPayload |
16 | 16 | ||
17 | const options = { | ||
18 | method: 'GET', | ||
19 | uri: '', | ||
20 | json: true, | ||
21 | activityPub: true, | ||
22 | timeout: JOB_REQUEST_TIMEOUT | ||
23 | } | ||
24 | |||
25 | for (const uri of payload.uris) { | 17 | for (const uri of payload.uris) { |
26 | options.uri = uri | 18 | await crawlCollectionPage<Activity>(uri, (items) => processActivities(items)) |
27 | logger.info('Fetching ActivityPub data on %s.', uri) | ||
28 | |||
29 | const response = await doRequest(options) | ||
30 | const firstBody = response.body | ||
31 | |||
32 | if (firstBody.first && Array.isArray(firstBody.first.orderedItems)) { | ||
33 | const activities = firstBody.first.orderedItems | ||
34 | |||
35 | logger.info('Processing %i items ActivityPub fetcher for %s.', activities.length, options.uri) | ||
36 | |||
37 | await processActivities(activities) | ||
38 | } | ||
39 | |||
40 | let limit = ACTIVITY_PUB.FETCH_PAGE_LIMIT | ||
41 | let i = 0 | ||
42 | let nextLink = firstBody.first.next | ||
43 | while (nextLink && i < limit) { | ||
44 | options.uri = nextLink | ||
45 | |||
46 | const { body } = await doRequest(options) | ||
47 | nextLink = body.next | ||
48 | i++ | ||
49 | |||
50 | if (Array.isArray(body.orderedItems)) { | ||
51 | const activities = body.orderedItems | ||
52 | logger.info('Processing %i items ActivityPub fetcher for %s.', activities.length, options.uri) | ||
53 | |||
54 | await processActivities(activities) | ||
55 | } | ||
56 | } | ||
57 | } | 19 | } |
58 | } | 20 | } |
59 | 21 | ||