2019-04-25 08:23:15 -04:00
|
|
|
import { ACTIVITY_PUB, JOB_REQUEST_TIMEOUT, WEBSERVER } from '../../initializers/constants'
|
2018-05-25 10:21:16 -04:00
|
|
|
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'
|
2020-01-31 10:56:52 -05:00
|
|
|
import { URL } from 'url'
|
2018-05-25 10:21:16 -04:00
|
|
|
|
2019-03-19 11:23:02 -04:00
|
|
|
type HandlerFunction<T> = (items: T[]) => (Promise<any> | Bluebird<any>)
|
|
|
|
type CleanerFunction = (startedDate: Date) => (Promise<any> | Bluebird<any>)
|
|
|
|
|
|
|
|
async function crawlCollectionPage <T> (uri: string, handler: HandlerFunction<T>, cleaner?: CleanerFunction) {
|
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
|
|
|
|
}
|
|
|
|
|
2019-03-19 11:23:02 -04:00
|
|
|
const startDate = new Date()
|
|
|
|
|
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
|
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
const limit = ACTIVITY_PUB.FETCH_PAGE_LIMIT
|
2018-05-25 10:21:16 -04:00
|
|
|
let i = 0
|
|
|
|
let nextLink = firstBody.first
|
|
|
|
while (nextLink && i < limit) {
|
2019-05-31 09:14:40 -04:00
|
|
|
let body: any
|
2019-04-25 08:23:15 -04:00
|
|
|
|
2019-05-31 09:14:40 -04:00
|
|
|
if (typeof nextLink === 'string') {
|
|
|
|
// Don't crawl ourselves
|
2020-01-31 10:56:52 -05:00
|
|
|
const remoteHost = new URL(nextLink).host
|
2019-05-31 09:14:40 -04:00
|
|
|
if (remoteHost === WEBSERVER.HOST) continue
|
|
|
|
|
|
|
|
options.uri = nextLink
|
|
|
|
|
|
|
|
const res = await doRequest<ActivityPubOrderedCollection<T>>(options)
|
|
|
|
body = res.body
|
|
|
|
} else {
|
|
|
|
// nextLink is already the object we want
|
|
|
|
body = nextLink
|
|
|
|
}
|
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)
|
|
|
|
}
|
|
|
|
}
|
2019-03-19 11:23:02 -04:00
|
|
|
|
|
|
|
if (cleaner) await cleaner(startDate)
|
2018-05-25 10:21:16 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
export {
|
|
|
|
crawlCollectionPage
|
|
|
|
}
|