2019-03-07 14:07:21 +00:00
|
|
|
import * as Bull from 'bull';
|
|
|
|
import request from '../../remote/activitypub/request';
|
|
|
|
import { registerOrFetchInstanceDoc } from '../../services/register-or-fetch-instance-doc';
|
2019-03-09 01:18:59 +00:00
|
|
|
import Logger from '../../services/logger';
|
2019-04-07 12:50:36 +00:00
|
|
|
import { Instances } from '../../models';
|
|
|
|
import { instanceChart } from '../../services/chart';
|
2020-07-26 02:04:07 +00:00
|
|
|
import { fetchInstanceMetadata } from '../../services/fetch-instance-metadata';
|
2019-11-06 15:02:18 +00:00
|
|
|
import { fetchMeta } from '../../misc/fetch-meta';
|
|
|
|
import { toPuny } from '../../misc/convert-host';
|
2021-03-18 01:49:14 +00:00
|
|
|
import { Cache } from '../../misc/cache';
|
|
|
|
import { Instance } from '../../models/entities/instance';
|
2019-03-09 01:18:59 +00:00
|
|
|
|
|
|
|
const logger = new Logger('deliver');
|
2018-04-04 14:12:35 +00:00
|
|
|
|
2019-04-12 16:43:22 +00:00
|
|
|
let latest: string | null = null;
|
2019-03-06 13:55:47 +00:00
|
|
|
|
2021-03-18 01:49:14 +00:00
|
|
|
const suspendedHostsCache = new Cache<Instance[]>(1000 * 60 * 60);
|
|
|
|
|
2019-03-08 23:57:55 +00:00
|
|
|
export default async (job: Bull.Job) => {
|
2019-02-07 14:37:39 +00:00
|
|
|
const { host } = new URL(job.data.to);
|
|
|
|
|
2019-11-06 15:02:18 +00:00
|
|
|
// ブロックしてたら中断
|
|
|
|
const meta = await fetchMeta();
|
|
|
|
if (meta.blockedHosts.includes(toPuny(host))) {
|
|
|
|
return 'skip (blocked)';
|
|
|
|
}
|
|
|
|
|
2020-01-29 20:56:14 +00:00
|
|
|
// isSuspendedなら中断
|
2021-03-18 01:49:14 +00:00
|
|
|
let suspendedHosts = suspendedHostsCache.get(null);
|
|
|
|
if (suspendedHosts == null) {
|
|
|
|
suspendedHosts = await Instances.find({
|
|
|
|
where: {
|
|
|
|
isSuspended: true
|
|
|
|
},
|
|
|
|
});
|
|
|
|
suspendedHostsCache.set(null, suspendedHosts);
|
|
|
|
}
|
2020-01-29 20:56:14 +00:00
|
|
|
if (suspendedHosts.map(x => x.host).includes(toPuny(host))) {
|
|
|
|
return 'skip (suspended)';
|
2019-11-06 15:02:18 +00:00
|
|
|
}
|
|
|
|
|
2018-04-05 09:43:06 +00:00
|
|
|
try {
|
2019-03-09 01:18:59 +00:00
|
|
|
if (latest !== (latest = JSON.stringify(job.data.content, null, 2))) {
|
|
|
|
logger.debug(`delivering ${latest}`);
|
|
|
|
}
|
2019-03-06 13:55:47 +00:00
|
|
|
|
2018-04-05 09:43:06 +00:00
|
|
|
await request(job.data.user, job.data.to, job.data.content);
|
2019-02-07 06:00:44 +00:00
|
|
|
|
|
|
|
// Update stats
|
2019-02-07 14:37:39 +00:00
|
|
|
registerOrFetchInstanceDoc(host).then(i => {
|
2019-04-07 12:50:36 +00:00
|
|
|
Instances.update(i.id, {
|
|
|
|
latestRequestSentAt: new Date(),
|
|
|
|
latestStatus: 200,
|
|
|
|
lastCommunicatedAt: new Date(),
|
|
|
|
isNotResponding: false
|
2019-02-07 06:00:44 +00:00
|
|
|
});
|
2019-02-08 07:58:57 +00:00
|
|
|
|
2020-07-26 02:04:07 +00:00
|
|
|
fetchInstanceMetadata(i);
|
2019-11-05 13:14:42 +00:00
|
|
|
|
2019-02-08 07:58:57 +00:00
|
|
|
instanceChart.requestSent(i.host, true);
|
2019-02-07 06:00:44 +00:00
|
|
|
});
|
2019-03-08 23:57:55 +00:00
|
|
|
|
|
|
|
return 'Success';
|
2018-04-06 21:22:03 +00:00
|
|
|
} catch (res) {
|
2019-02-07 06:00:44 +00:00
|
|
|
// Update stats
|
2019-02-07 14:37:39 +00:00
|
|
|
registerOrFetchInstanceDoc(host).then(i => {
|
2019-04-07 12:50:36 +00:00
|
|
|
Instances.update(i.id, {
|
|
|
|
latestRequestSentAt: new Date(),
|
|
|
|
latestStatus: res != null && res.hasOwnProperty('statusCode') ? res.statusCode : null,
|
|
|
|
isNotResponding: true
|
2019-02-07 06:00:44 +00:00
|
|
|
});
|
2019-02-08 07:58:57 +00:00
|
|
|
|
|
|
|
instanceChart.requestSent(i.host, false);
|
2019-02-07 06:00:44 +00:00
|
|
|
});
|
|
|
|
|
2018-10-04 16:58:41 +00:00
|
|
|
if (res != null && res.hasOwnProperty('statusCode')) {
|
2019-03-08 23:57:55 +00:00
|
|
|
// 4xx
|
2018-10-04 16:58:41 +00:00
|
|
|
if (res.statusCode >= 400 && res.statusCode < 500) {
|
|
|
|
// HTTPステータスコード4xxはクライアントエラーであり、それはつまり
|
|
|
|
// 何回再送しても成功することはないということなのでエラーにはしないでおく
|
2019-03-08 23:57:55 +00:00
|
|
|
return `${res.statusCode} ${res.statusMessage}`;
|
2018-10-04 16:58:41 +00:00
|
|
|
}
|
2019-03-07 20:22:14 +00:00
|
|
|
|
2019-03-08 23:57:55 +00:00
|
|
|
// 5xx etc.
|
|
|
|
throw `${res.statusCode} ${res.statusMessage}`;
|
2018-04-06 21:22:03 +00:00
|
|
|
} else {
|
2019-03-08 23:57:55 +00:00
|
|
|
// DNS error, socket error, timeout ...
|
|
|
|
throw res;
|
2018-04-06 21:22:03 +00:00
|
|
|
}
|
2018-04-05 09:43:06 +00:00
|
|
|
}
|
2018-04-04 14:22:48 +00:00
|
|
|
};
|