Feat: move post imports to new jobs
This commit is contained in:
parent
e4a821a494
commit
657857e8d6
|
@ -0,0 +1,53 @@
|
||||||
|
import * as Post from "@/misc/post.js";
|
||||||
|
import create from "@/services/note/create.js";
|
||||||
|
import { Users } from "@/models/index.js";
|
||||||
|
import type {
|
||||||
|
DbUserImportMastoPostJobData,
|
||||||
|
} from "@/queue/types.js";
|
||||||
|
import { queueLogger } from "../../logger.js";
|
||||||
|
import type Bull from "bull";
|
||||||
|
|
||||||
|
const logger = queueLogger.createSubLogger("import-calckey-post");
|
||||||
|
|
||||||
|
export async function importCkPost(
|
||||||
|
job: Bull.Job<DbUserImportMastoPostJobData>,
|
||||||
|
done: any,
|
||||||
|
): Promise<void> {
|
||||||
|
const user = await Users.findOneBy({ id: job.data.user.id });
|
||||||
|
if (user == null) {
|
||||||
|
done();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const post = job.data.post;
|
||||||
|
if (post.replyId != null) {
|
||||||
|
done();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (post.renoteId != null) {
|
||||||
|
done();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (post.visibility !== "public") {
|
||||||
|
done();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const { text, cw, localOnly, createdAt } = Post.parse(post);
|
||||||
|
const note = await create(user, {
|
||||||
|
createdAt: createdAt,
|
||||||
|
files: undefined,
|
||||||
|
poll: undefined,
|
||||||
|
text: text || undefined,
|
||||||
|
reply: null,
|
||||||
|
renote: null,
|
||||||
|
cw: cw,
|
||||||
|
localOnly,
|
||||||
|
visibility: "hidden",
|
||||||
|
visibleUsers: [],
|
||||||
|
channel: null,
|
||||||
|
apMentions: new Array(0),
|
||||||
|
apHashtags: undefined,
|
||||||
|
apEmojis: undefined,
|
||||||
|
});
|
||||||
|
logger.succ("Imported");
|
||||||
|
done();
|
||||||
|
}
|
|
@ -0,0 +1,61 @@
|
||||||
|
import create from "@/services/note/create.js";
|
||||||
|
import { Users } from "@/models/index.js";
|
||||||
|
import type {
|
||||||
|
DbUserImportMastoPostJobData,
|
||||||
|
} from "@/queue/types.js";
|
||||||
|
import { queueLogger } from "../../logger.js";
|
||||||
|
import type Bull from "bull";
|
||||||
|
import { htmlToMfm } from "@/remote/activitypub/misc/html-to-mfm.js";
|
||||||
|
import { resolveNote } from "@/remote/activitypub/models/note.js";
|
||||||
|
import { Note } from "@/models/entities/note.js";
|
||||||
|
|
||||||
|
const logger = queueLogger.createSubLogger("import-masto-post");
|
||||||
|
|
||||||
|
export async function importMastoPost(
|
||||||
|
job: Bull.Job<DbUserImportMastoPostJobData>,
|
||||||
|
done: any,
|
||||||
|
): Promise<void> {
|
||||||
|
const user = await Users.findOneBy({ id: job.data.user.id });
|
||||||
|
if (user == null) {
|
||||||
|
done();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const post = job.data.post;
|
||||||
|
let reply: Note | null = null;
|
||||||
|
if (post.object.inReplyTo != null) {
|
||||||
|
reply = await resolveNote(post.object.inReplyTo);
|
||||||
|
}
|
||||||
|
if (post.directMessage) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (job.data.signatureCheck) {
|
||||||
|
if (!post.signature) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
let text;
|
||||||
|
try {
|
||||||
|
text = htmlToMfm(post.object.content, post.object.tag);
|
||||||
|
} catch (e) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const note = await create(user, {
|
||||||
|
createdAt: new Date(post.object.published),
|
||||||
|
files: undefined,
|
||||||
|
poll: undefined,
|
||||||
|
text: text || undefined,
|
||||||
|
reply,
|
||||||
|
renote: null,
|
||||||
|
cw: post.sensitive,
|
||||||
|
localOnly: false,
|
||||||
|
visibility: "hidden",
|
||||||
|
visibleUsers: [],
|
||||||
|
channel: null,
|
||||||
|
apMentions: new Array(0),
|
||||||
|
apHashtags: undefined,
|
||||||
|
apEmojis: undefined,
|
||||||
|
});
|
||||||
|
logger.succ("Imported");
|
||||||
|
done();
|
||||||
|
}
|
Loading…
Reference in New Issue