mirror of
https://github.com/versia-pub/server.git
synced 2026-04-27 12:49:16 +02:00
Some checks failed
CodeQL Scan / Analyze (push) Failing after 0s
Deploy Docs to GitHub Pages / build (push) Failing after 0s
Deploy Docs to GitHub Pages / Deploy (push) Has been skipped
Nix Build / check (push) Failing after 0s
Test Publish / build (client) (push) Failing after 0s
Test Publish / build (sdk) (push) Failing after 0s
Build Docker Images / lint (push) Has been cancelled
Build Docker Images / check (push) Has been cancelled
Build Docker Images / tests (push) Has been cancelled
Build Docker Images / detect-circular (push) Has been cancelled
Mirror to Codeberg / Mirror (push) Has been cancelled
Build Docker Images / build (server, Dockerfile, ${{ github.repository_owner }}/server) (push) Has been cancelled
Build Docker Images / build (worker, Worker.Dockerfile, ${{ github.repository_owner }}/worker) (push) Has been cancelled
70 lines
2 KiB
TypeScript
70 lines
2 KiB
TypeScript
import type { z } from "zod";
|
|
import { NoteSchema } from "../schemas/note.ts";
|
|
import type { JSONObject } from "../types.ts";
|
|
import { NonTextContentFormat, TextContentFormat } from "./contentformat.ts";
|
|
import { Entity, Reference } from "./entity.ts";
|
|
|
|
export class Note extends Entity {
|
|
public static override name = "Note";
|
|
|
|
public constructor(
|
|
public override data: z.infer<typeof NoteSchema>,
|
|
instanceDomain: string,
|
|
) {
|
|
super(data, instanceDomain);
|
|
}
|
|
|
|
public static override fromJSON(
|
|
json: JSONObject,
|
|
instanceDomain: string,
|
|
): Promise<Note> {
|
|
return NoteSchema.parseAsync(json).then(
|
|
(n) => new Note(n, instanceDomain),
|
|
);
|
|
}
|
|
|
|
public get author(): Reference {
|
|
return Reference.fromString(this.data.author, this.instanceDomain);
|
|
}
|
|
|
|
public get group(): Reference | null {
|
|
if (
|
|
!this.data.group ||
|
|
["public", "followers"].includes(this.data.group)
|
|
) {
|
|
return null;
|
|
}
|
|
|
|
return Reference.fromString(this.data.group, this.instanceDomain);
|
|
}
|
|
|
|
public get mentions(): Reference[] {
|
|
return this.data.mentions.map((m) =>
|
|
Reference.fromString(m, this.instanceDomain),
|
|
);
|
|
}
|
|
|
|
public get quotes(): Reference | null {
|
|
return this.data.quotes
|
|
? Reference.fromString(this.data.quotes, this.instanceDomain)
|
|
: null;
|
|
}
|
|
|
|
public get repliesTo(): Reference | null {
|
|
return this.data.replies_to
|
|
? Reference.fromString(this.data.replies_to, this.instanceDomain)
|
|
: null;
|
|
}
|
|
|
|
public get attachments(): NonTextContentFormat[] {
|
|
return (
|
|
this.data.attachments?.map((a) => new NonTextContentFormat(a)) ?? []
|
|
);
|
|
}
|
|
|
|
public get content(): TextContentFormat | undefined {
|
|
return this.data.content
|
|
? new TextContentFormat(this.data.content)
|
|
: undefined;
|
|
}
|
|
}
|