* wip * wip * wip * Update following.ts * wip * wip * wip * Update resolve-user.ts * maxQueryExecutionTime * wip * wip
75 lines
1.8 KiB
TypeScript
75 lines
1.8 KiB
TypeScript
import Bull from 'bull';
|
|
|
|
import { queueLogger } from '../../logger.js';
|
|
import follow from '@/services/following/create.js';
|
|
import * as Acct from '@/misc/acct.js';
|
|
import { resolveUser } from '@/remote/resolve-user.js';
|
|
import { downloadTextFile } from '@/misc/download-text-file.js';
|
|
import { isSelfHost, toPuny } from '@/misc/convert-host.js';
|
|
import { Users, DriveFiles } from '@/models/index.js';
|
|
import { DbUserImportJobData } from '@/queue/types.js';
|
|
import { IsNull } from 'typeorm';
|
|
|
|
const logger = queueLogger.createSubLogger('import-following');
|
|
|
|
export async function importFollowing(job: Bull.Job<DbUserImportJobData>, done: any): Promise<void> {
|
|
logger.info(`Importing following of ${job.data.user.id} ...`);
|
|
|
|
const user = await Users.findOneBy({ id: job.data.user.id });
|
|
if (user == null) {
|
|
done();
|
|
return;
|
|
}
|
|
|
|
const file = await DriveFiles.findOneBy({
|
|
id: job.data.fileId,
|
|
});
|
|
if (file == null) {
|
|
done();
|
|
return;
|
|
}
|
|
|
|
const csv = await downloadTextFile(file.url);
|
|
|
|
let linenum = 0;
|
|
|
|
for (const line of csv.trim().split('\n')) {
|
|
linenum++;
|
|
|
|
try {
|
|
const acct = line.split(',')[0].trim();
|
|
const { username, host } = Acct.parse(acct);
|
|
|
|
let target = isSelfHost(host!) ? await Users.findOneBy({
|
|
host: IsNull(),
|
|
usernameLower: username.toLowerCase(),
|
|
}) : await Users.findOneBy({
|
|
host: toPuny(host!),
|
|
usernameLower: username.toLowerCase(),
|
|
});
|
|
|
|
if (host == null && target == null) continue;
|
|
|
|
if (target == null) {
|
|
target = await resolveUser(username, host);
|
|
}
|
|
|
|
if (target == null) {
|
|
throw `cannot resolve user: @${username}@${host}`;
|
|
}
|
|
|
|
// skip myself
|
|
if (target.id === job.data.user.id) continue;
|
|
|
|
logger.info(`Follow[${linenum}] ${target.id} ...`);
|
|
|
|
follow(user, target);
|
|
} catch (e) {
|
|
logger.warn(`Error in line:${linenum} ${e}`);
|
|
}
|
|
}
|
|
|
|
logger.succ('Imported');
|
|
done();
|
|
}
|