mirror of
https://github.com/versia-pub/server.git
synced 2025-12-06 16:38:19 +01:00
161 lines
4.3 KiB
TypeScript
161 lines
4.3 KiB
TypeScript
import { generateChallenge } from "@/challenges";
|
|
import { randomString } from "@/math";
|
|
import { Note, Token, User, db } from "@versia/kit/db";
|
|
import { Notes, Users } from "@versia/kit/tables";
|
|
import { solveChallenge } from "altcha-lib";
|
|
import { asc, inArray, like } from "drizzle-orm";
|
|
import { appFactory } from "~/app";
|
|
import type { Status } from "~/classes/functions/status";
|
|
import { searchManager } from "~/classes/search/search-manager";
|
|
import { setupDatabase } from "~/drizzle/db";
|
|
import { config } from "~/packages/config-manager";
|
|
|
|
await setupDatabase();
|
|
if (config.sonic.enabled) {
|
|
await searchManager.connect();
|
|
}
|
|
|
|
const app = await appFactory();
|
|
|
|
export function fakeRequest(
|
|
url: URL | string,
|
|
init?: RequestInit,
|
|
): Promise<Response> {
|
|
return Promise.resolve(
|
|
app.fetch(new Request(new URL(url, config.http.base_url), init)),
|
|
);
|
|
}
|
|
|
|
export const deleteOldTestUsers = async (): Promise<void> => {
|
|
// Deletes all users that match the test username (test-<32 random characters>)
|
|
await db.delete(Users).where(like(Users.username, "test-%"));
|
|
};
|
|
|
|
export const getTestUsers = async (
|
|
count: number,
|
|
): Promise<{
|
|
users: User[];
|
|
tokens: Token[];
|
|
passwords: string[];
|
|
deleteUsers: () => Promise<void>;
|
|
}> => {
|
|
const users: User[] = [];
|
|
const passwords: string[] = [];
|
|
|
|
for (let i = 0; i < count; i++) {
|
|
const password = randomString(32, "hex");
|
|
|
|
const user = await User.fromDataLocal({
|
|
username: `test-${randomString(32, "hex")}`,
|
|
email: `${randomString(32, "hex")}@test.com`,
|
|
password,
|
|
});
|
|
|
|
if (!user) {
|
|
throw new Error("Failed to create test user");
|
|
}
|
|
|
|
passwords.push(password);
|
|
users.push(user);
|
|
}
|
|
|
|
const tokens = await Token.insertMany(
|
|
users.map((u) => ({
|
|
accessToken: randomString(32, "hex"),
|
|
tokenType: "bearer",
|
|
userId: u.id,
|
|
applicationId: null,
|
|
code: randomString(32, "hex"),
|
|
scope: "read write follow push",
|
|
})),
|
|
);
|
|
|
|
return {
|
|
users,
|
|
// Order tokens in the same order as users
|
|
// The first token belongs to the first user, the second token belongs to the second user, etc.
|
|
tokens: users.map(
|
|
(u) => tokens.find((t) => t.data.userId === u.id) as Token,
|
|
),
|
|
passwords,
|
|
deleteUsers: async (): Promise<void> => {
|
|
await db.delete(Users).where(
|
|
inArray(
|
|
Users.id,
|
|
users.map((u) => u.id),
|
|
),
|
|
);
|
|
},
|
|
};
|
|
};
|
|
|
|
export const getTestStatuses = async (
|
|
count: number,
|
|
user: User,
|
|
partial?: Partial<Status>,
|
|
): Promise<Note["data"][]> => {
|
|
const statuses: Note[] = [];
|
|
|
|
for (let i = 0; i < count; i++) {
|
|
const newStatus = await Note.insert({
|
|
content: `${i} ${randomString(32, "hex")}`,
|
|
authorId: user.id,
|
|
sensitive: false,
|
|
updatedAt: new Date().toISOString(),
|
|
visibility: "public",
|
|
applicationId: null,
|
|
...partial,
|
|
});
|
|
|
|
if (!newStatus) {
|
|
throw new Error("Failed to create test status");
|
|
}
|
|
|
|
statuses.push(newStatus);
|
|
}
|
|
|
|
return (
|
|
await Note.manyFromSql(
|
|
inArray(
|
|
Notes.id,
|
|
statuses.map((s) => s.id),
|
|
),
|
|
asc(Notes.id),
|
|
undefined,
|
|
undefined,
|
|
user.id,
|
|
)
|
|
).map((n) => n.data);
|
|
};
|
|
|
|
/**
|
|
* Generates a solved challenge (with tiny difficulty)
|
|
*
|
|
* Only to be used in tests
|
|
* @returns Base64 encoded payload
|
|
*/
|
|
export const getSolvedChallenge = async (): Promise<string> => {
|
|
const { challenge } = await generateChallenge(100);
|
|
|
|
const solution = await solveChallenge(
|
|
challenge.challenge,
|
|
challenge.salt,
|
|
challenge.algorithm,
|
|
challenge.maxnumber,
|
|
).promise;
|
|
|
|
if (!solution) {
|
|
throw new Error("Failed to solve challenge");
|
|
}
|
|
|
|
return Buffer.from(
|
|
JSON.stringify({
|
|
number: solution.number,
|
|
algorithm: challenge.algorithm,
|
|
challenge: challenge.challenge,
|
|
salt: challenge.salt,
|
|
signature: challenge.signature,
|
|
}),
|
|
).toString("base64");
|
|
};
|