Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"username": "drop"
}
],
"typescript.experimental.useTsgo": true,
"typescript.experimental.useTsgo": false,
// prioritize ArkType's "type" for autoimports
"typescript.preferences.autoImportSpecifierExcludeRegexes": ["^(node:)?os$"]
}
2 changes: 1 addition & 1 deletion nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export default defineNuxtConfig({

experimental: {
buildCache: true,
viewTransition: true,
viewTransition: false,
componentIslands: true,
},

Expand Down
1 change: 0 additions & 1 deletion pages/account/tokens.vue
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,6 @@ async function createToken(
},
failTitle: "Failed to create API token.",
});
console.log(result);
newToken.value = result.token;
tokens.value.push(result);
} finally {
Expand Down
8 changes: 8 additions & 0 deletions server/api/v1/client/depots/index.get.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import prisma from "~/server/internal/db/database";
import { defineClientEventHandler } from "~/server/internal/clients/event-handler";

export default defineClientEventHandler(async () => {
const depots = await prisma.depot.findMany({ select: { endpoint: true } });

return depots;
});
105 changes: 98 additions & 7 deletions server/api/v1/client/game/versions.get.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
import type { Platform } from "~/prisma/client/enums";
import { defineClientEventHandler } from "~/server/internal/clients/event-handler";
import prisma from "~/server/internal/db/database";
import gameSizeManager from "~/server/internal/gamesize";

type VersionDownloadOption = {
versionId: string;
displayName?: string;
versionPath: string;
platform: Platform;
size: number;
requiredContent: Array<{
gameId: string;
versionId: string;
name: string;
iconObjectId: string;
shortDescription: string;
size: number;
}>;
};

export default defineClientEventHandler(async (h3) => {
const query = getQuery(h3);
Expand All @@ -10,21 +28,94 @@ export default defineClientEventHandler(async (h3) => {
statusMessage: "No ID in request query",
});

const versions = await prisma.gameVersion.findMany({
const rawVersions = await prisma.gameVersion.findMany({
where: {
gameId: id,
},
orderBy: {
versionIndex: "desc", // Latest one first
},
omit: {
dropletManifest: true,
},
include: {
launches: true,
setups: true,
select: {
versionId: true,
displayName: true,
versionPath: true,
gameId: true,
launches: {
select: {
platform: true,
executor: {
select: {
gameVersion: {
select: {
game: {
select: {
mName: true,
mShortDescription: true,
mIconObjectId: true,
id: true,
},
},
versionId: true,
},
},
},
},
},
},
},
});

const versions: Array<VersionDownloadOption> = (
await Promise.all(
rawVersions.map(async (v) => {
const platformOptions: Map<
Platform,
VersionDownloadOption["requiredContent"]
> = new Map();

for (const launch of v.launches) {
if (!platformOptions.has(launch.platform))
platformOptions.set(launch.platform, []);

if (launch.executor) {
const old = platformOptions.get(launch.platform)!;
old.push({
gameId: launch.executor.gameVersion.game.id,
versionId: launch.executor.gameVersion.versionId,
name: launch.executor.gameVersion.game.mName,
iconObjectId: launch.executor.gameVersion.game.mIconObjectId,
shortDescription:
launch.executor.gameVersion.game.mShortDescription,
size:
(await gameSizeManager.getGameVersionSize(
launch.executor.gameVersion.game.id,
launch.executor.gameVersion.versionId,
)) ?? 0,
});
}
}

const size = await gameSizeManager.getGameVersionSize(
v.gameId,
v.versionId,
);

return platformOptions
.entries()
.map(
([platform, requiredContent]) =>
({
versionId: v.versionId,
versionPath: v.versionPath,
platform,
requiredContent,
size: size!,
}) satisfies VersionDownloadOption,
)
.toArray();
}),
)
).flat();

return versions;
});
8 changes: 5 additions & 3 deletions server/internal/session/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,17 +55,20 @@ export class SessionHandler {
data: {},
};
const wasAuthenticated = !!session.authenticated;

session.authenticated = {
userId,
level: session.authenticated?.level ?? 10,
requiredLevel: mfaCount > 0 ? 20 : 10,
superleveledExpiry: undefined,
};

if (
!wasAuthenticated &&
wasAuthenticated &&
session.authenticated.level >= session.authenticated.requiredLevel
)
) {
session.authenticated.superleveledExpiry = Date.now() + SUPERLEVEL_LENGTH;
}
const success = await this.sessionProvider.setSession(token, session);
if (!success) return "fail";

Expand Down Expand Up @@ -123,7 +126,6 @@ export class SessionHandler {
expiresAt,
data: {},
};
console.log(session);
session.data[key] = value;
await this.sessionProvider.setSession(token, session);
return true;
Expand Down
Loading