1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-09-19 17:21:35 +02:00

bug fixes and improvements (i wrote this code a week ago and forgot what it does)

This commit is contained in:
Madeline 2023-10-26 05:39:22 +00:00
parent 34867e2154
commit cc48f595fd
7 changed files with 79 additions and 15 deletions

View File

@ -97,7 +97,7 @@ Follows/is followed by it's corresponding Guild, if applicable.
## Guild Federation
An automated actor. Follows and is followed by it's corresponding Channels.
An automated actor. Follows its Channels. Is followed by guild members.
Also contains a collection of [roles](#role-federation).
### Supported Activities

View File

@ -1,7 +1,9 @@
import { APOrderedCollection, AnyAPObject } from "activitypub-types";
import { APOrderedCollection, CollectionCurrentField } from "activitypub-types";
import { ACTIVITYSTREAMS_CONTEXT } from "./utils";
export const makeOrderedCollection = async <T extends AnyAPObject>(opts: {
export const makeOrderedCollection = async <
T extends CollectionCurrentField,
>(opts: {
page: boolean;
min_id?: string;
max_id?: string;

View File

@ -192,7 +192,7 @@ const addRemoteUserToGuild = async (
},
});
const { entity, keys } = await fetchFederatedUser(actor);
const { entity } = await fetchFederatedUser(actor);
await Member.addToGuild(entity.id, guild.actorId);

View File

@ -211,13 +211,13 @@ export const transformUserToPerson = async (user: User): Promise<APPerson> => {
const { host, accountDomain } = Config.get().federation;
const keys = await FederationKey.findOneOrFail({
where: { actorId: user.id, domain: accountDomain },
where: { actorId: user.id },
});
return {
"@context": ACTIVITYSTREAMS_CONTEXT,
type: "Person",
id: `https://${host}/federation/users/${user.id}`,
id: keys.federatedId,
name: user.username,
preferredUsername: user.id,
@ -232,9 +232,10 @@ export const transformUserToPerson = async (user: User): Promise<APPerson> => {
]
: undefined,
inbox: `https://${host}/federation/users/${user.id}/inbox`,
outbox: `https://${host}/federation/users/${user.id}/outbox`,
followers: `https://${host}/federation/users/${user.id}/followers`,
inbox: keys.inbox,
outbox: keys.outbox,
followers: keys.followers,
following: keys.following,
publicKey: {
id: `https://${host}/federation/users/${user.id}#main-key`,
owner: `https://${host}/federation/users/${user.id}`,
@ -266,6 +267,8 @@ export const transformPersonToUser = async (person: APPerson) => {
type: ActorType.USER,
inbox: person.inbox.toString(),
outbox: person.outbox.toString(),
followers: person.followers?.toString(),
following: person.following?.toString(),
}).save();
return await User.create({
@ -332,6 +335,8 @@ export const transformOrganisationToGuild = async (org: APOrganization) => {
type: ActorType.GUILD,
inbox: org.inbox.toString(),
outbox: org.outbox.toString(),
followers: org.followers?.toString(),
following: org.following?.toString(),
});
if (typeof org.attributedTo != "string")
@ -423,6 +428,8 @@ export const transformGroupToChannel = async (
type: ActorType.CHANNEL,
inbox: group.inbox.toString(),
outbox: group.outbox.toString(),
followers: group.followers?.toString(),
following: group.following?.toString(),
});
const channel = Channel.create({

View File

@ -191,8 +191,10 @@ export const fetchFederatedUser = async (
domain: mention.domain,
publicKey: remoteActor.publicKey?.publicKeyPem,
type,
inbox: remoteActor.inbox,
outbox: remoteActor.outbox,
inbox: remoteActor.inbox?.toString(),
outbox: remoteActor.outbox?.toString(),
following: remoteActor.following?.toString(),
followers: remoteActor.followers?.toString(),
});
let entity: BaseClass | undefined = undefined;

View File

@ -0,0 +1,41 @@
import { makeOrderedCollection } from "@spacebar/ap";
import { route } from "@spacebar/api";
import {
Channel,
Config,
Datasource,
FederationKey,
Member,
} from "@spacebar/util";
import { Request, Response, Router } from "express";
const router = Router();
router.get("/", route({}), async (req: Request, res: Response) => {
const { guild_id } = req.params;
const { page, min_id, max_id } = req.query;
const { host } = Config.get().federation;
const ret = await makeOrderedCollection({
page: page != undefined,
min_id: min_id?.toString(),
max_id: max_id?.toString(),
id: `https://${host}/federation/guilds/${guild_id}/following`,
getTotalElements: () => Channel.count({ where: { guild_id } }),
getElements: async (before, after): Promise<string[]> => {
const members = await Datasource.getRepository(FederationKey)
.createQueryBuilder("key")
.leftJoin(Member, "member", "member.id == key.actorId")
.where("member.guild_id = :guild_id", { guild_id })
.getMany();
// TODO: actual pagination
return members.map((x) => x.federatedId);
},
});
return res.json(ret);
});
export default router;

View File

@ -34,12 +34,20 @@ export class FederationKey extends BaseClassWithoutId {
federatedId: string;
/** The inbox of the remote user */
@Column({ nullable: true, type: String })
inbox: string | null;
@Column()
inbox: string;
/** The outbox of the remote user */
@Column({ nullable: true, type: String })
outbox: string | null;
@Column()
outbox: string;
/** The following collection of this user */
@Column()
following: string;
/** The followers collection of this user */
@Column()
followers: string;
/** The public key of this actor. Public keys of remote actors are cached. */
@Column()
@ -63,6 +71,10 @@ export class FederationKey extends BaseClassWithoutId {
actorId,
type,
federatedId: `https://${host}/federation/${type}/${actorId}`,
inbox: `https://${host}/federation/${type}/${actorId}/inbox`,
outbox: `https://${host}/federation/${type}/${actorId}/outbox`,
followers: `https://${host}/federation/${type}/${actorId}/followers`,
following: `https://${host}/federation/${type}/${actorId}/following`,
domain: accountDomain,
...(await generateKeyPair("rsa", {
modulusLength: 4096,