Allow to auto follow a specific URL

pull/2621/head
Chocobozzz 2020-05-11 10:48:58 +02:00
parent 3a1a00a4af
commit 95cd31f1fe
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
5 changed files with 10 additions and 4 deletions

View File

@ -61,7 +61,7 @@ exports.config = {
}
],
maxSessions: 1,
// maxSessions: 1,
// BrowserStack compatible ports: https://www.browserstack.com/question/664
baseUrl: 'http://localhost:3333/',
framework: 'jasmine',

View File

@ -367,7 +367,8 @@ followings:
# /!\ Don't enable this if you don't have a reactive moderation team /!\
auto_follow_index:
enabled: false
index_url: 'https://instances.joinpeertube.org'
# Host your own using https://framagit.org/framasoft/peertube/instances-peertube#peertube-auto-follow
index_url: ''
theme:
default: 'default'

View File

@ -381,7 +381,8 @@ followings:
# /!\ Don't enable this if you don't have a reactive moderation team /!\
auto_follow_index:
enabled: false
index_url: 'https://instances.joinpeertube.org'
# Host your own using https://framagit.org/framasoft/peertube/instances-peertube#peertube-auto-follow
index_url: ''
theme:
default: 'default'

View File

@ -42,6 +42,10 @@ export class AutoFollowIndexInstances extends AbstractScheduler {
this.lastCheck = new Date()
const { body } = await doRequest<any>({ uri, qs, json: true })
if (!body.data || Array.isArray(body.data) === false) {
logger.error('Cannot auto follow instances of index %s: bad URL format. Please check the auto follow URL.', indexUrl)
return
}
const hosts: string[] = body.data.map(o => o.host)
const chunks = chunk(hosts, 20)

View File

@ -177,7 +177,7 @@ describe('Test auto follows', function () {
followings: {
instance: {
autoFollowIndex: {
indexUrl: 'http://localhost:42100',
indexUrl: 'http://localhost:42100/api/v1/instances/hosts',
enabled: true
}
}