server/database/entities/Status.ts

324 lines
7.1 KiB
TypeScript
Raw Normal View History

2023-09-12 22:48:10 +02:00
import { getConfig } from "@config";
import {
BaseEntity,
Column,
CreateDateColumn,
Entity,
2023-09-22 03:09:14 +02:00
JoinTable,
2023-09-12 22:48:10 +02:00
ManyToMany,
ManyToOne,
PrimaryGeneratedColumn,
2023-09-27 00:19:10 +02:00
RemoveOptions,
2023-09-12 22:48:10 +02:00
UpdateDateColumn,
} from "typeorm";
import { APIStatus } from "~types/entities/status";
import { User } from "./User";
import { Application } from "./Application";
import { Emoji } from "./Emoji";
2023-09-13 07:30:45 +02:00
import { RawActivity } from "./RawActivity";
2023-09-27 00:19:10 +02:00
import { RawObject } from "./RawObject";
2023-09-12 22:48:10 +02:00
const config = getConfig();
/**
2023-09-28 20:19:21 +02:00
* Represents a status (i.e. a post)
2023-09-12 22:48:10 +02:00
*/
@Entity({
name: "statuses",
})
export class Status extends BaseEntity {
2023-09-28 20:19:21 +02:00
/**
* The unique identifier for this status.
*/
2023-09-12 22:48:10 +02:00
@PrimaryGeneratedColumn("uuid")
id!: string;
2023-09-28 20:19:21 +02:00
/**
* The user account that created this status.
*/
2023-09-13 02:29:13 +02:00
@ManyToOne(() => User, user => user.id)
2023-09-12 22:48:10 +02:00
account!: User;
2023-09-28 20:19:21 +02:00
/**
* The date and time when this status was created.
*/
2023-09-12 22:48:10 +02:00
@CreateDateColumn()
created_at!: Date;
2023-09-28 20:19:21 +02:00
/**
* The date and time when this status was last updated.
*/
2023-09-12 22:48:10 +02:00
@UpdateDateColumn()
updated_at!: Date;
2023-09-28 20:19:21 +02:00
/**
* The status that this status is a reblog of, if any.
*/
2023-09-13 02:29:13 +02:00
@ManyToOne(() => Status, status => status.id, {
2023-09-12 22:48:10 +02:00
nullable: true,
})
reblog?: Status;
2023-09-28 20:19:21 +02:00
/**
* The raw object associated with this status.
*/
2023-09-27 01:08:05 +02:00
@ManyToOne(() => RawObject, {
nullable: true,
onDelete: "SET NULL",
})
2023-09-27 00:19:10 +02:00
object!: RawObject;
2023-09-28 20:19:21 +02:00
/**
* Whether this status is a reblog.
*/
2023-09-12 22:48:10 +02:00
@Column("boolean")
isReblog!: boolean;
2023-09-28 20:19:21 +02:00
/**
* The content of this status.
*/
2023-09-12 22:48:10 +02:00
@Column("varchar", {
default: "",
})
content!: string;
2023-09-28 20:19:21 +02:00
/**
* The visibility of this status.
*/
2023-09-12 22:48:10 +02:00
@Column("varchar")
visibility!: APIStatus["visibility"];
2023-09-28 20:19:21 +02:00
/**
* The raw object that this status is a reply to, if any.
*/
2023-09-27 00:19:10 +02:00
@ManyToOne(() => RawObject, {
nullable: true,
})
2023-09-27 01:08:05 +02:00
in_reply_to_post!: RawObject | null;
2023-09-27 00:19:10 +02:00
2023-09-28 20:19:21 +02:00
/**
* The raw actor that this status is a reply to, if any.
*/
@ManyToOne(() => User, {
2023-09-27 00:19:10 +02:00
nullable: true,
})
in_reply_to_account!: User | null;
2023-09-27 00:19:10 +02:00
2023-09-28 20:19:21 +02:00
/**
* Whether this status is sensitive.
*/
2023-09-12 22:48:10 +02:00
@Column("boolean")
sensitive!: boolean;
2023-09-28 20:19:21 +02:00
/**
* The spoiler text for this status.
*/
2023-09-12 22:48:10 +02:00
@Column("varchar", {
default: "",
})
spoiler_text!: string;
2023-09-28 20:19:21 +02:00
/**
* The application associated with this status, if any.
*/
2023-09-13 02:29:13 +02:00
@ManyToOne(() => Application, app => app.id, {
nullable: true,
2023-09-12 22:48:10 +02:00
})
application!: Application | null;
2023-09-28 20:19:21 +02:00
/**
* The emojis associated with this status.
*/
2023-09-13 02:29:13 +02:00
@ManyToMany(() => Emoji, emoji => emoji.id)
2023-09-22 03:09:14 +02:00
@JoinTable()
2023-09-12 22:48:10 +02:00
emojis!: Emoji[];
2023-09-28 20:19:21 +02:00
/**
* The activities that have liked this status.
*/
2023-09-22 03:09:14 +02:00
@ManyToMany(() => RawActivity, activity => activity.id)
@JoinTable()
2023-09-14 04:25:45 +02:00
likes!: RawActivity[];
2023-09-13 07:30:45 +02:00
2023-09-28 20:19:21 +02:00
/**
* The activities that have announced this status.
*/
2023-09-22 03:09:14 +02:00
@ManyToMany(() => RawActivity, activity => activity.id)
@JoinTable()
2023-09-14 04:25:45 +02:00
announces!: RawActivity[];
2023-09-13 02:29:13 +02:00
2023-09-28 20:19:21 +02:00
/**
* Removes this status from the database.
* @param options The options for removing this status.
* @returns A promise that resolves when the status has been removed.
*/
2023-09-27 00:19:10 +02:00
async remove(options?: RemoveOptions | undefined) {
// Delete object
2023-09-27 20:45:07 +02:00
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
if (this.object) await this.object.remove(options);
2023-09-27 00:19:10 +02:00
2023-09-27 01:08:05 +02:00
return await super.remove(options);
2023-09-27 00:19:10 +02:00
}
async parseEmojis(string: string) {
const emojis = [...string.matchAll(/:([a-zA-Z0-9_]+):/g)].map(
match => match[1]
);
const emojiObjects = await Promise.all(
emojis.map(async emoji => {
const emojiObject = await Emoji.findOne({
where: {
shortcode: emoji,
},
});
return emojiObject;
})
);
return emojiObjects.filter(emoji => emoji !== null) as Emoji[];
}
2023-09-28 20:19:21 +02:00
/**
* Creates a new status and saves it to the database.
* @param data The data for the new status.
* @returns A promise that resolves with the new status.
*/
2023-09-22 03:09:14 +02:00
static async createNew(data: {
account: User;
application: Application | null;
content: string;
visibility: APIStatus["visibility"];
sensitive: boolean;
spoiler_text: string;
emojis: Emoji[];
2023-09-27 00:19:10 +02:00
reply?: {
object: RawObject;
user: User;
2023-09-27 00:19:10 +02:00
};
2023-09-22 03:09:14 +02:00
}) {
const newStatus = new Status();
newStatus.account = data.account;
newStatus.application = data.application ?? null;
newStatus.content = data.content;
newStatus.visibility = data.visibility;
newStatus.sensitive = data.sensitive;
newStatus.spoiler_text = data.spoiler_text;
newStatus.emojis = data.emojis;
newStatus.likes = [];
newStatus.announces = [];
newStatus.isReblog = false;
newStatus.announces = [];
2023-09-27 00:19:10 +02:00
newStatus.object = new RawObject();
if (data.reply) {
newStatus.in_reply_to_post = data.reply.object;
newStatus.in_reply_to_account = data.reply.user;
2023-09-27 00:19:10 +02:00
}
newStatus.object.data = {
2023-10-16 08:04:03 +02:00
id: `${config.http.base_url}/users/${data.account.username}/statuses/${newStatus.id}`,
2023-09-27 00:19:10 +02:00
type: "Note",
summary: data.spoiler_text,
2023-10-23 02:23:15 +02:00
content: data.content,
2023-09-27 00:19:10 +02:00
inReplyTo: data.reply?.object
? data.reply.object.data.id
: undefined,
2023-09-27 20:45:07 +02:00
published: new Date().toISOString(),
tag: [],
2023-10-16 08:04:03 +02:00
attributedTo: `${config.http.base_url}/users/${data.account.username}`,
2023-09-27 00:19:10 +02:00
};
// Get people mentioned in the content
const mentionedPeople = [
...data.content.matchAll(/@([a-zA-Z0-9_]+)/g),
].map(match => {
2023-10-16 08:04:03 +02:00
return `${config.http.base_url}/users/${match[1]}`;
2023-09-27 00:19:10 +02:00
});
// Map this to Users
const mentionedUsers = (
2023-09-27 00:19:10 +02:00
await Promise.all(
mentionedPeople.map(async person => {
// Check if post is in format @username or @username@instance.com
// If is @username, the user is a local user
const instanceUrl =
person.split("@").length === 3
? person.split("@")[2]
: null;
if (instanceUrl) {
const user = await User.findOne({
where: {
username: person.split("@")[1],
// If contains instanceUrl
instance: {
base_url: instanceUrl,
},
},
relations: {
actor: true,
instance: true,
},
});
return user?.actor.data.id;
2023-09-27 00:19:10 +02:00
} else {
const user = await User.findOne({
2023-09-27 00:19:10 +02:00
where: {
username: person.split("@")[1],
},
relations: {
actor: true,
},
});
return user?.actor.data.id;
2023-09-27 00:19:10 +02:00
}
})
)
).map(user => user as string);
2023-09-27 00:19:10 +02:00
newStatus.object.data.to = mentionedUsers;
2023-09-27 00:19:10 +02:00
if (data.visibility === "private") {
newStatus.object.data.cc = [
2023-10-16 08:04:03 +02:00
`${config.http.base_url}/users/${data.account.username}/followers`,
2023-09-27 00:19:10 +02:00
];
} else if (data.visibility === "direct") {
// Add nothing else
} else if (data.visibility === "public") {
newStatus.object.data.to = [
...newStatus.object.data.to,
"https://www.w3.org/ns/activitystreams#Public",
];
newStatus.object.data.cc = [
2023-10-16 08:04:03 +02:00
`${config.http.base_url}/users/${data.account.username}/followers`,
2023-09-27 00:19:10 +02:00
];
}
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
else if (data.visibility === "unlisted") {
newStatus.object.data.to = [
...newStatus.object.data.to,
"https://www.w3.org/ns/activitystreams#Public",
];
}
2023-09-22 23:41:05 +02:00
// TODO: Add default language
2023-09-27 01:08:05 +02:00
await newStatus.object.save();
2023-09-22 03:09:14 +02:00
await newStatus.save();
return newStatus;
}
2023-09-28 20:19:21 +02:00
/**
* Converts this status to an API status.
* @returns A promise that resolves with the API status.
*/
2023-09-12 22:48:10 +02:00
async toAPI(): Promise<APIStatus> {
2023-09-27 20:45:07 +02:00
return await this.object.toAPI();
2023-09-12 22:48:10 +02:00
}
}