handle mastodon style posts

This commit is contained in:
cutestnekoaqua 2023-03-29 21:10:01 +02:00
parent 7650c60cdf
commit 21c7f93d7a
No known key found for this signature in database
GPG Key ID: 6BF0964A5069C1E0
2 changed files with 53 additions and 18 deletions

View File

@ -8,6 +8,7 @@ import { Users, DriveFiles } from "@/models/index.js";
import type { DbUserImportJobData } from "@/queue/types.js"; import type { DbUserImportJobData } from "@/queue/types.js";
import { queueLogger } from "../../logger.js"; import { queueLogger } from "../../logger.js";
import type Bull from "bull"; import type Bull from "bull";
import { htmlToMfm } from "@/remote/activitypub/misc/html-to-mfm.js";
const logger = queueLogger.createSubLogger("import-posts"); const logger = queueLogger.createSubLogger("import-posts");
@ -36,34 +37,70 @@ export async function importPosts(
let linenum = 0; let linenum = 0;
try { try {
for (const post of JSON.parse(json)) { const parsed = JSON.parse(json);
try { if (parsed instanceof Array) {
for (const post of JSON.parse(json)) {
try {
linenum++;
if (post.replyId != null) {
logger.info(`Is reply, skip [${linenum}] ...`);
continue;
}
if (post.renoteId != null) {
logger.info(`Is boost, skip [${linenum}] ...`);
continue;
}
if (post.visibility !== "public") {
logger.info(`Is non-public, skip [${linenum}] ...`);
continue;
}
const { text, cw, localOnly, createdAt } = Post.parse(post);
logger.info(`Posting[${linenum}] ...`);
const note = await create(user, {
createdAt: createdAt,
files: undefined,
poll: undefined,
text: text || undefined,
reply: null,
renote: null,
cw: cw,
localOnly,
visibility: "public",
visibleUsers: [],
channel: null,
apMentions: null,
apHashtags: undefined,
apEmojis: undefined,
});
} catch (e) {
logger.warn(`Error in line:${linenum} ${e}`);
}
}
} else {
for (const post of parsed.orderedItems) {
linenum++; linenum++;
if (post.replyId != null) { if (post.inReplyTo != null) {
logger.info(`Is reply, skip [${linenum}] ...`); logger.info(`Is reply, skip [${linenum}] ...`);
continue; continue;
} }
if (post.renoteId != null) { if (post.directMessage) {
logger.info(`Is boost, skip [${linenum}] ...`); logger.info(`Is dm, skip [${linenum}] ...`);
continue; continue;
} }
if (post.visibility !== "public") { const text = htmlToMfm(post.content, post.tag);
logger.info(`Is non-public, skip [${linenum}] ...`);
continue;
}
const { text, cw, localOnly, createdAt } = Post.parse(post);
logger.info(`Posting[${linenum}] ...`); logger.info(`Posting[${linenum}] ...`);
const note = await create(user, { const note = await create(user, {
createdAt: createdAt, createdAt: new Date(post.published),
files: undefined, files: undefined,
poll: undefined, poll: undefined,
text: text || undefined, text: text || undefined,
reply: null, reply: null,
renote: null, renote: null,
cw: cw, cw: post.sensitive,
localOnly, localOnly: false,
visibility: "public", visibility: "public",
visibleUsers: [], visibleUsers: [],
channel: null, channel: null,
@ -71,8 +108,6 @@ export async function importPosts(
apHashtags: undefined, apHashtags: undefined,
apEmojis: undefined, apEmojis: undefined,
}); });
} catch (e) {
logger.warn(`Error in line:${linenum} ${e}`);
} }
} }
} catch (e) { } catch (e) {

View File

@ -112,13 +112,13 @@ export async function createNote(
const note: IPost = object; const note: IPost = object;
if (note.id && !note.id.startsWith("https://")) { if (note.id && !note.id.startsWith("https://")) {
throw new Error(`unexpected shcema of note.id: ${note.id}`); throw new Error(`unexpected schema of note.id: ${note.id}`);
} }
const url = getOneApHrefNullable(note.url); const url = getOneApHrefNullable(note.url);
if (url && !url.startsWith("https://")) { if (url && !url.startsWith("https://")) {
throw new Error(`unexpected shcema of note url: ${url}`); throw new Error(`unexpected schema of note url: ${url}`);
} }
logger.debug(`Note fetched: ${JSON.stringify(note, null, 2)}`); logger.debug(`Note fetched: ${JSON.stringify(note, null, 2)}`);