2021-01-19 10:42:45 +01:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
const fetch = require('node-fetch');
|
|
|
|
const { addonDefinitionSchema } = require('./addon-schema');
|
|
|
|
|
|
|
|
class Addon {
|
|
|
|
constructor(definition, { getLogger }) {
|
|
|
|
this.logger = getLogger(`addon/${definition.name}`);
|
|
|
|
const { error } = addonDefinitionSchema.validate(definition);
|
|
|
|
if (error) {
|
|
|
|
this.logger.warn(
|
|
|
|
`Could not load addon provider ${definition.name}`,
|
|
|
|
error,
|
|
|
|
);
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
this._name = definition.name;
|
|
|
|
this._definition = definition;
|
|
|
|
}
|
|
|
|
|
|
|
|
get name() {
|
|
|
|
return this._name;
|
|
|
|
}
|
|
|
|
|
|
|
|
get definition() {
|
|
|
|
return this._definition;
|
|
|
|
}
|
|
|
|
|
|
|
|
async fetchRetry(url, options = {}, retries = 1, backoff = 300) {
|
|
|
|
const retryCodes = [408, 500, 502, 503, 504, 522, 524];
|
2021-02-28 22:40:04 +01:00
|
|
|
let res;
|
2021-02-26 13:46:56 +01:00
|
|
|
try {
|
2021-02-28 22:40:04 +01:00
|
|
|
res = await fetch(url, options);
|
2021-02-26 13:46:56 +01:00
|
|
|
} catch (error) {
|
2021-02-28 22:40:04 +01:00
|
|
|
res = { status: 500, ok: false };
|
|
|
|
}
|
|
|
|
if (res.ok) {
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
if (retries > 0 && retryCodes.includes(res.status)) {
|
2021-04-16 15:29:23 +02:00
|
|
|
setTimeout(
|
|
|
|
() => this.fetchRetry(url, options, retries - 1, backoff * 2),
|
|
|
|
backoff,
|
|
|
|
);
|
2021-01-19 10:42:45 +01:00
|
|
|
}
|
2021-02-28 22:40:04 +01:00
|
|
|
return res;
|
2021-01-19 10:42:45 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = Addon;
|