Skip to content

Commit 7fa02c5

Browse files
authored
OIDC & store fixes (#358)
* fix: typos * fix: platform filtering * feat: fix tags and create option
1 parent 768a4e2 commit 7fa02c5

6 files changed

Lines changed: 134 additions & 23 deletions

File tree

components/GameEditor/Metadata.vue

Lines changed: 24 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,11 @@
3030
</div>
3131

3232
<div class="grid grid-cols-1 lg:grid-cols-3 gap-4 pt-8">
33-
<SelectorMultiItem v-model="currentTags" :items="tags" />
33+
<SelectorMultiItem
34+
v-model="currentTags"
35+
:items="tags"
36+
:create="createTag"
37+
/>
3438
<div class="flex flex-col">
3539
<label
3640
for="releaseDate"
@@ -493,8 +497,9 @@ if (!game.value)
493497
const currentTags = ref<{ [key: string]: boolean }>(
494498
Object.fromEntries(game.value.tags.map((e) => [e.id, true])),
495499
);
496-
const tags = (await $dropFetch("/api/v1/admin/tags")).map(
497-
(e) => ({ name: e.name, param: e.id }) satisfies StoreSortOption,
500+
const rawTags = await $dropFetch("/api/v1/admin/tags");
501+
const tags = ref(
502+
rawTags.map((e) => ({ name: e.name, param: e.id }) satisfies StoreSortOption),
498503
);
499504
500505
watch(
@@ -505,7 +510,11 @@ watch(
505510
params: {
506511
id: game.value.id,
507512
},
508-
body: { tags: Object.keys(v) },
513+
body: {
514+
tags: Object.entries(v)
515+
.filter((v) => v[1])
516+
.map((v) => v[0]),
517+
},
509518
failTitle: "Failed to update game tags",
510519
});
511520
},
@@ -816,4 +825,15 @@ async function updateImageCarousel() {
816825
);
817826
}
818827
}
828+
829+
async function createTag(value: string): Promise<string> {
830+
const tag = await $dropFetch(`/api/v1/admin/tags`, {
831+
method: "POST",
832+
body: {
833+
name: value,
834+
},
835+
});
836+
tags.value.push({ name: tag.name, param: tag.id });
837+
return tag.id;
838+
}
819839
</script>

components/Selector/MultiItem.vue

Lines changed: 76 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<ComboboxInput
3535
class="block w-full rounded-md bg-zinc-900 py-1.5 pr-12 pl-3 text-base text-zinc-100 outline-1 -outline-offset-1 outline-zinc-700 placeholder:text-zinc-500 focus:outline-2 focus:-outline-offset-2 focus:outline-blue-600 sm:text-sm/6"
3636
:display-value="(item) => (item as StoreSortOption)?.name"
37-
placeholder="Start typing..."
37+
:placeholder="$t('common.components.multiitem.placeholder')"
3838
@change="search = $event.target.value"
3939
@blur="search = ''"
4040
/>
@@ -68,7 +68,51 @@
6868
</span>
6969
</li>
7070
</ComboboxOption>
71+
<ComboboxOption
72+
v-if="$props.create"
73+
v-slot="{ active }"
74+
:value="CREATE_PREFIX + search"
75+
as="template"
76+
>
77+
<li
78+
:class="[
79+
'relative cursor-default py-2 pr-9 pl-3 select-none',
80+
active
81+
? 'bg-blue-600 text-white outline-hidden'
82+
: 'text-zinc-100',
83+
]"
84+
>
85+
<span class="block truncate">
86+
{{ $t("common.components.multiitem.new", [search]) }}
87+
</span>
88+
</li>
89+
</ComboboxOption>
7190
</ComboboxOptions>
91+
92+
<div
93+
v-if="createLoading"
94+
class="absolute inset-0 bg-zinc-950 flex items-center justify-center"
95+
>
96+
<div role="status">
97+
<svg
98+
aria-hidden="true"
99+
class="size-8 text-transparent animate-spin fill-white"
100+
viewBox="0 0 100 101"
101+
fill="none"
102+
xmlns="http://www.w3.org/2000/svg"
103+
>
104+
<path
105+
d="M100 50.5908C100 78.2051 77.6142 100.591 50 100.591C22.3858 100.591 0 78.2051 0 50.5908C0 22.9766 22.3858 0.59082 50 0.59082C77.6142 0.59082 100 22.9766 100 50.5908ZM9.08144 50.5908C9.08144 73.1895 27.4013 91.5094 50 91.5094C72.5987 91.5094 90.9186 73.1895 90.9186 50.5908C90.9186 27.9921 72.5987 9.67226 50 9.67226C27.4013 9.67226 9.08144 27.9921 9.08144 50.5908Z"
106+
fill="currentColor"
107+
/>
108+
<path
109+
d="M93.9676 39.0409C96.393 38.4038 97.8624 35.9116 97.0079 33.5539C95.2932 28.8227 92.871 24.3692 89.8167 20.348C85.8452 15.1192 80.8826 10.7238 75.2124 7.41289C69.5422 4.10194 63.2754 1.94025 56.7698 1.05124C51.7666 0.367541 46.6976 0.446843 41.7345 1.27873C39.2613 1.69328 37.813 4.19778 38.4501 6.62326C39.0873 9.04874 41.5694 10.4717 44.0505 10.1071C47.8511 9.54855 51.7191 9.52689 55.5402 10.0491C60.8642 10.7766 65.9928 12.5457 70.6331 15.2552C75.2735 17.9648 79.3347 21.5619 82.5849 25.841C84.9175 28.9121 86.7997 32.2913 88.1811 35.8758C89.083 38.2158 91.5421 39.6781 93.9676 39.0409Z"
110+
fill="currentFill"
111+
/>
112+
</svg>
113+
<span class="sr-only">{{ $t("common.srLoading") }}</span>
114+
</div>
115+
</div>
72116
</div>
73117
</Combobox>
74118
</div>
@@ -85,6 +129,7 @@ import {
85129
} from "@headlessui/vue";
86130
const props = defineProps<{
87131
items: Array<StoreSortOption>;
132+
create?: (value: string) => Promise<string>;
88133
}>();
89134
90135
const model = defineModel<{ [key: string]: boolean }>();
@@ -102,7 +147,37 @@ const enabledItems = computed(() =>
102147
props.items.filter((e) => model.value?.[e.param]),
103148
);
104149
150+
// I do not love how this works, but it's okay for now
151+
const CREATE_PREFIX = "CREATE";
152+
153+
const createLoading = ref(false);
105154
function add(item: string) {
155+
if (item.startsWith(CREATE_PREFIX)) {
156+
if (!props.create) return;
157+
const value = item.substring(CREATE_PREFIX.length);
158+
createLoading.value = true;
159+
props
160+
.create(value)
161+
.then(
162+
(result) => {
163+
add(result);
164+
},
165+
(err) => {
166+
createModal(
167+
ModalType.Notification,
168+
{
169+
title: "Failed to create value",
170+
description: err,
171+
},
172+
(_, c) => c(),
173+
);
174+
},
175+
)
176+
.finally(() => {
177+
createLoading.value = false;
178+
});
179+
return;
180+
}
106181
search.value = "";
107182
model.value ??= {};
108183
model.value[item] = true;

i18n/locales/en_us.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,13 @@
181181
"servers": "Servers",
182182
"srLoading": "Loading…",
183183
"tags": "Tags",
184-
"today": "Today"
184+
"today": "Today",
185+
"components": {
186+
"multiitem": {
187+
"placeholder": "Start typing...",
188+
"new": "Create new: \"{0}\""
189+
}
190+
}
185191
},
186192
"drop": {
187193
"desc": "An open-source game distribution platform built for speed, flexibility and beauty.",

server/api/v1/store/index.get.ts

Lines changed: 19 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -53,24 +53,34 @@ export default defineEventHandler(async (h3) => {
5353
: undefined;
5454
const platformFilter = filterPlatforms
5555
? ({
56-
versions: {
57-
some: {
58-
launches: {
56+
OR: [
57+
{
58+
versions: {
5959
some: {
60-
platform: {
61-
in: filterPlatforms,
60+
setups: {
61+
some: {
62+
platform: {
63+
in: filterPlatforms,
64+
},
65+
},
6266
},
6367
},
6468
},
65-
setups: {
69+
},
70+
{
71+
versions: {
6672
some: {
67-
platform: {
68-
in: filterPlatforms,
73+
launches: {
74+
some: {
75+
platform: {
76+
in: filterPlatforms,
77+
},
78+
},
6979
},
7080
},
7181
},
7282
},
73-
},
83+
],
7484
} satisfies Prisma.GameWhereInput)
7585
: undefined;
7686

server/internal/auth/oidc/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,14 +153,14 @@ export class OIDCManager {
153153

154154
this.JWKS = jose.createRemoteJWKSet(this.oidcConfiguration.jwks_uri);
155155
this.redirectUrl = new URL(
156-
`${this.externalUrl.toString()}api/v1/auth/odic/callback`,
156+
`${this.externalUrl.toString()}api/v1/auth/oidc/callback`,
157157
);
158158
}
159159

160160
static async create() {
161161
if (!systemConfig.shouldOidcRequireHttps()) {
162162
console.warn(
163-
"Disabling HTTPS requirement for ODIC provider, not recommened in production enviroments",
163+
"Disabling HTTPS requirement for OIDC provider, not recommened in production enviroments",
164164
);
165165
}
166166

server/internal/config/sys-conf.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class SystemConfig {
1212
);
1313
private dropVersion: string;
1414
private gitRef: string;
15-
private odicRequireHttps;
15+
private oidcRequireHttps;
1616

1717
private checkForUpdates = getUpdateCheckConfig();
1818

@@ -22,14 +22,14 @@ class SystemConfig {
2222
this.dropVersion = config.dropVersion;
2323
this.gitRef = config.gitRef;
2424

25-
const odicRequireHttps = process.env.OIDC_REQUIRE_HTTPS as
25+
const oidcRequireHttps = process.env.OIDC_REQUIRE_HTTPS as
2626
| string
2727
| undefined;
2828

2929
// default to true if not set
30-
this.odicRequireHttps =
31-
odicRequireHttps !== undefined &&
32-
odicRequireHttps.toLocaleLowerCase() === "false"
30+
this.oidcRequireHttps =
31+
oidcRequireHttps !== undefined &&
32+
oidcRequireHttps.toLocaleLowerCase() === "false"
3333
? false
3434
: true;
3535
}
@@ -64,7 +64,7 @@ class SystemConfig {
6464

6565
// if oidc should require https for endpoints
6666
shouldOidcRequireHttps() {
67-
return this.odicRequireHttps;
67+
return this.oidcRequireHttps;
6868
}
6969
}
7070

0 commit comments

Comments
 (0)