misskey-tools/src/services/worker.ts

39 lines
1.1 KiB
TypeScript
Raw Normal View History

2020-08-04 16:43:13 +09:00
import cron from 'node-cron';
2020-08-12 13:31:09 +09:00
import delay from 'delay';
2020-09-08 20:05:22 +09:00
import { Users } from '../models';
2020-08-04 16:43:13 +09:00
import { api } from './misskey';
2020-09-08 20:05:22 +09:00
import { format } from '../functions/format';
import { deleteUser } from '../functions/users';
2020-08-04 16:43:13 +09:00
export default (): void => {
cron.schedule('0 0 0 * * *', async () => {
const users = await Users.createQueryBuilder()
.select()
.getMany();
for (const user of users) {
try {
const text = await format(user);
2020-08-12 13:31:09 +09:00
const res = await api<Record<string, unknown>>(user.host, 'notes/create', {
2020-08-04 16:43:13 +09:00
text,
visibility: 'home'
}, user.token);
if (res.error) {
throw res.error;
}
2020-08-12 13:31:09 +09:00
2020-08-04 16:43:13 +09:00
} catch (e) {
if (e.code === 'NO_SUCH_USER' || e.code === 'AUTHENTICATION_FAILED') {
// ユーザーが削除されている場合、レコードからも消してとりやめ
console.info(`${user.username}@${user.host} is deleted, so delete this user from the system`);
await deleteUser(user.username, user.host);
} else {
console.error(e);
}
2020-08-12 13:31:09 +09:00
} finally {
await delay(3000);
2020-08-04 16:43:13 +09:00
}
}
});
};