873444c3c6
* Fix #5580 * Improve AP logging
84 lines
2.3 KiB
TypeScript
84 lines
2.3 KiB
TypeScript
import * as Bull from 'bull';
|
|
import request from '../../remote/activitypub/request';
|
|
import { registerOrFetchInstanceDoc } from '../../services/register-or-fetch-instance-doc';
|
|
import Logger from '../../services/logger';
|
|
import { Instances } from '../../models';
|
|
import { instanceChart } from '../../services/chart';
|
|
import { fetchNodeinfo } from '../../services/fetch-nodeinfo';
|
|
import { fetchMeta } from '../../misc/fetch-meta';
|
|
import { toPuny } from '../../misc/convert-host';
|
|
|
|
const logger = new Logger('deliver');
|
|
|
|
let latest: string | null = null;
|
|
|
|
export default async (job: Bull.Job) => {
|
|
const { host } = new URL(job.data.to);
|
|
|
|
// ブロックしてたら中断
|
|
const meta = await fetchMeta();
|
|
if (meta.blockedHosts.includes(toPuny(host))) {
|
|
return 'skip (blocked)';
|
|
}
|
|
|
|
// closedなら中断
|
|
const closedHosts = await Instances.find({
|
|
where: {
|
|
isMarkedAsClosed: true
|
|
},
|
|
cache: 60 * 1000
|
|
});
|
|
if (closedHosts.map(x => x.host).includes(toPuny(host))) {
|
|
return 'skip (closed)';
|
|
}
|
|
|
|
try {
|
|
if (latest !== (latest = JSON.stringify(job.data.content, null, 2))) {
|
|
logger.debug(`delivering ${latest}`);
|
|
}
|
|
|
|
await request(job.data.user, job.data.to, job.data.content);
|
|
|
|
// Update stats
|
|
registerOrFetchInstanceDoc(host).then(i => {
|
|
Instances.update(i.id, {
|
|
latestRequestSentAt: new Date(),
|
|
latestStatus: 200,
|
|
lastCommunicatedAt: new Date(),
|
|
isNotResponding: false
|
|
});
|
|
|
|
fetchNodeinfo(i);
|
|
|
|
instanceChart.requestSent(i.host, true);
|
|
});
|
|
|
|
return 'Success';
|
|
} catch (res) {
|
|
// Update stats
|
|
registerOrFetchInstanceDoc(host).then(i => {
|
|
Instances.update(i.id, {
|
|
latestRequestSentAt: new Date(),
|
|
latestStatus: res != null && res.hasOwnProperty('statusCode') ? res.statusCode : null,
|
|
isNotResponding: true
|
|
});
|
|
|
|
instanceChart.requestSent(i.host, false);
|
|
});
|
|
|
|
if (res != null && res.hasOwnProperty('statusCode')) {
|
|
// 4xx
|
|
if (res.statusCode >= 400 && res.statusCode < 500) {
|
|
// HTTPステータスコード4xxはクライアントエラーであり、それはつまり
|
|
// 何回再送しても成功することはないということなのでエラーにはしないでおく
|
|
return `${res.statusCode} ${res.statusMessage}`;
|
|
}
|
|
|
|
// 5xx etc.
|
|
throw `${res.statusCode} ${res.statusMessage}`;
|
|
} else {
|
|
// DNS error, socket error, timeout ...
|
|
throw res;
|
|
}
|
|
}
|
|
};
|