mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 05:57:32 -07:00
[mastodon-client] GET /statuses/:id/history
This commit is contained in:
parent
9454540385
commit
85a13d8bd7
4 changed files with 67 additions and 20 deletions
|
@ -75,6 +75,15 @@ export function convertStatus(status: MastodonEntity.Status) {
|
|||
return status;
|
||||
}
|
||||
|
||||
export function convertStatusEdit(edit: MastodonEntity.StatusEdit) {
|
||||
edit.account = convertAccount(edit.account);
|
||||
edit.media_attachments = edit.media_attachments.map((attachment) =>
|
||||
convertAttachment(attachment),
|
||||
);
|
||||
if (edit.poll) edit.poll = convertPoll(edit.poll);
|
||||
return edit;
|
||||
}
|
||||
|
||||
export function convertConversation(conversation: MastodonEntity.Conversation) {
|
||||
conversation.id = convertId(conversation.id, IdType.MastodonId);
|
||||
conversation.accounts = conversation.accounts.map(convertAccount);
|
||||
|
|
|
@ -3,7 +3,7 @@ import { getClient } from "../index.js";
|
|||
import querystring from "node:querystring";
|
||||
import qs from "qs";
|
||||
import { convertId, IdType } from "../../index.js";
|
||||
import { convertAccount, convertPoll, convertStatus, } from "../converters.js";
|
||||
import { convertAccount, convertPoll, convertStatus, convertStatusEdit, } from "../converters.js";
|
||||
import { NoteConverter } from "@/server/api/mastodon/converters/note.js";
|
||||
import { getNote } from "@/server/api/common/getters.js";
|
||||
import authenticate from "@/server/api/authenticate.js";
|
||||
|
@ -183,14 +183,20 @@ export function setupEndpointsStatus(router: Router): void {
|
|||
router.get<{ Params: { id: string } }>(
|
||||
"/v1/statuses/:id/history",
|
||||
async (ctx) => {
|
||||
const BASE_URL = `${ctx.protocol}://${ctx.hostname}`;
|
||||
const accessTokens = ctx.headers.authorization;
|
||||
const client = getClient(BASE_URL, accessTokens);
|
||||
try {
|
||||
const data = await client.getStatusHistory(
|
||||
convertId(ctx.params.id, IdType.IceshrimpId),
|
||||
);
|
||||
ctx.body = data.data.map((account) => convertAccount(account));
|
||||
const auth = await authenticate(ctx.headers.authorization, null);
|
||||
const user = auth[0] ?? null;
|
||||
|
||||
const id = convertId(ctx.params.id, IdType.IceshrimpId);
|
||||
const note = await getNote(id, user).catch(_ => null);
|
||||
|
||||
if (note === null) {
|
||||
ctx.status = 404;
|
||||
return;
|
||||
}
|
||||
|
||||
const res = await NoteHelpers.getNoteEditHistory(note);
|
||||
ctx.body = res.map(p => convertStatusEdit(p));
|
||||
} catch (e: any) {
|
||||
console.error(e);
|
||||
ctx.status = 401;
|
||||
|
@ -205,11 +211,6 @@ export function setupEndpointsStatus(router: Router): void {
|
|||
const auth = await authenticate(ctx.headers.authorization, null);
|
||||
const user = auth[0] ?? null;
|
||||
|
||||
if (!user) {
|
||||
ctx.status = 401;
|
||||
return;
|
||||
}
|
||||
|
||||
const id = convertId(ctx.params.id, IdType.IceshrimpId);
|
||||
const note = await getNote(id, user).catch(_ => null);
|
||||
|
||||
|
@ -238,11 +239,6 @@ export function setupEndpointsStatus(router: Router): void {
|
|||
const auth = await authenticate(ctx.headers.authorization, null);
|
||||
const user = auth[0] ?? null;
|
||||
|
||||
if (!user) {
|
||||
ctx.status = 401;
|
||||
return;
|
||||
}
|
||||
|
||||
const id = convertId(ctx.params.id, IdType.IceshrimpId);
|
||||
const note = await getNote(id, user).catch(_ => null);
|
||||
|
||||
|
|
|
@ -12,7 +12,6 @@ namespace MastodonEntity {
|
|||
export type StatusEdit = {
|
||||
account: Account;
|
||||
content: string;
|
||||
plain_content: string | null;
|
||||
created_at: string;
|
||||
emojis: Emoji[];
|
||||
sensitive: boolean;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import { makePaginationQuery } from "@/server/api/common/make-pagination-query.js";
|
||||
import {
|
||||
DriveFiles,
|
||||
Metas,
|
||||
Metas, NoteEdits,
|
||||
NoteFavorites,
|
||||
NoteReactions,
|
||||
Notes,
|
||||
|
@ -33,6 +33,8 @@ import { awaitAll } from "@/prelude/await-all.js";
|
|||
import { IsNull } from "typeorm";
|
||||
import { VisibilityConverter } from "@/server/api/mastodon/converters/visibility.js";
|
||||
import mfm from "mfm-js";
|
||||
import { FileConverter } from "@/server/api/mastodon/converters/file.js";
|
||||
import { toHtml } from "@/mfm/to-html.js";
|
||||
|
||||
export class NoteHelpers {
|
||||
public static async getDefaultReaction(): Promise<string> {
|
||||
|
@ -163,6 +165,47 @@ export class NoteHelpers {
|
|||
});
|
||||
}
|
||||
|
||||
public static async getNoteEditHistory(note: Note): Promise<MastodonEntity.StatusEdit[]> {
|
||||
if (!note.updatedAt) return [];
|
||||
const cache = UserHelpers.getFreshAccountCache();
|
||||
const account = Promise.resolve(note.user ?? await UserHelpers.getUserCached(note.userId, cache))
|
||||
.then(p => UserConverter.encode(p, cache));
|
||||
const edits = await NoteEdits.find({where: {noteId: note.id}, order: {id: "ASC"}});
|
||||
const history: Promise<MastodonEntity.StatusEdit>[] = [];
|
||||
if (edits.length < 1) return [];
|
||||
|
||||
const curr = {
|
||||
id: note.id,
|
||||
noteId: note.id,
|
||||
note: note,
|
||||
text: note.text,
|
||||
cw: note.cw,
|
||||
fileIds: note.fileIds,
|
||||
updatedAt: note.updatedAt
|
||||
}
|
||||
|
||||
edits.push(curr);
|
||||
|
||||
let lastDate = note.createdAt;
|
||||
for (const edit of edits) {
|
||||
const files = DriveFiles.packMany(edit.fileIds);
|
||||
const item = {
|
||||
account: account,
|
||||
content: toHtml(mfm.parse(edit.text ?? ''), JSON.parse(note.mentionedRemoteUsers)) ?? '',
|
||||
created_at: lastDate.toISOString(),
|
||||
emojis: [],
|
||||
sensitive: files.then(files => files.length > 0 ? files.some((f) => f.isSensitive) : false),
|
||||
spoiler_text: edit.cw ?? '',
|
||||
poll: null,
|
||||
media_attachments: files.then(files => files.length > 0 ? files.map((f) => FileConverter.encode(f)) : [])
|
||||
};
|
||||
lastDate = edit.updatedAt;
|
||||
history.unshift(awaitAll(item));
|
||||
}
|
||||
|
||||
return Promise.all(history);
|
||||
}
|
||||
|
||||
public static async getNoteRebloggedBy(note: Note, maxId: string | undefined, sinceId: string | undefined, minId: string | undefined, limit: number = 40): Promise<LinkPaginationObject<User[]>> {
|
||||
if (limit > 80) limit = 80;
|
||||
const query = PaginationHelpers.makePaginationQuery(
|
||||
|
|
Loading…
Reference in a new issue