2018-05-25 10:21:16 -04:00
|
|
|
import { ACTIVITY_PUB, JOB_REQUEST_TIMEOUT } from '../../initializers'
|
|
|
|
import { doRequest } from '../../helpers/requests'
|
|
|
|
import { logger } from '../../helpers/logger'
|
2018-10-08 10:26:04 -04:00
|
|
|
import * as Bluebird from 'bluebird'
|
2018-11-14 09:01:28 -05:00
|
|
|
import { ActivityPubOrderedCollection } from '../../../shared/models/activitypub'
|
2018-05-25 10:21:16 -04:00
|
|
|
|
2018-08-22 05:51:39 -04:00
|
|
|
async function crawlCollectionPage <T> (uri: string, handler: (items: T[]) => Promise<any> | Bluebird<any>) {
|
2018-05-25 10:21:16 -04:00
|
|
|
logger.info('Crawling ActivityPub data on %s.', uri)
|
|
|
|
|
|
|
|
const options = {
|
|
|
|
method: 'GET',
|
|
|
|
uri,
|
|
|
|
json: true,
|
|
|
|
activityPub: true,
|
|
|
|
timeout: JOB_REQUEST_TIMEOUT
|
|
|
|
}
|
|
|
|
|
2018-11-14 09:01:28 -05:00
|
|
|
const response = await doRequest<ActivityPubOrderedCollection<T>>(options)
|
2018-05-25 10:21:16 -04:00
|
|
|
const firstBody = response.body
|
|
|
|
|
|
|
|
let limit = ACTIVITY_PUB.FETCH_PAGE_LIMIT
|
|
|
|
let i = 0
|
|
|
|
let nextLink = firstBody.first
|
|
|
|
while (nextLink && i < limit) {
|
|
|
|
options.uri = nextLink
|
|
|
|
|
2018-11-14 09:01:28 -05:00
|
|
|
const { body } = await doRequest<ActivityPubOrderedCollection<T>>(options)
|
2018-05-25 10:21:16 -04:00
|
|
|
nextLink = body.next
|
|
|
|
i++
|
|
|
|
|
|
|
|
if (Array.isArray(body.orderedItems)) {
|
|
|
|
const items = body.orderedItems
|
2018-06-12 14:04:58 -04:00
|
|
|
logger.info('Processing %i ActivityPub items for %s.', items.length, options.uri)
|
2018-05-25 10:21:16 -04:00
|
|
|
|
|
|
|
await handler(items)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export {
|
|
|
|
crawlCollectionPage
|
|
|
|
}
|