-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
3,414 additions
and
62 deletions.
There are no files selected for viewing
75 changes: 75 additions & 0 deletions
75
apps/nextjs/src/app/[locale]/manage/tools/api/components/api-keys.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
"use client"; | ||
|
||
import { Button, Stack, Title, Group, Text } from "@mantine/core"; | ||
import type { MRT_ColumnDef} from "mantine-react-table"; | ||
import {MantineReactTable, useMantineReactTable } from "mantine-react-table"; | ||
import {useMemo} from "react"; | ||
import type {RouterOutputs} from "@homarr/api"; | ||
import { clientApi } from "@homarr/api/client"; | ||
import { useModalAction } from "@homarr/modals"; | ||
import { CopyApiKeyModal } from "~/app/[locale]/manage/tools/api/components/copy-api-key-modal"; | ||
import { UserAvatar } from "@homarr/ui"; | ||
|
||
interface ApiKeysManagementProps { | ||
apiKeys: RouterOutputs["apiKeys"]["getAll"] | ||
} | ||
|
||
export const ApiKeysManagement = ({ apiKeys }: ApiKeysManagementProps) => { | ||
const { openModal } = useModalAction(CopyApiKeyModal); | ||
const { mutate, isPending } = clientApi.apiKeys.create.useMutation({ | ||
onSettled: (data) => { | ||
openModal({ | ||
apiKey: data.randomToken | ||
}); | ||
} | ||
}); | ||
|
||
const columns = useMemo<MRT_ColumnDef<RouterOutputs["apiKeys"]["getAll"][number]>[]>( | ||
() => [ | ||
{ | ||
accessorKey: 'id', //access nested data with dot notation | ||
header: 'ID', | ||
}, | ||
{ | ||
accessorKey: 'apikey', | ||
header: 'Key', | ||
}, | ||
{ | ||
accessorKey: 'user', | ||
header: 'Created by', | ||
Cell: ({ row }) => ( | ||
<Group gap={"xs"}> | ||
<UserAvatar user={row.original.user} size={"sm"} /> | ||
<Text>{row.original.user.name}</Text> | ||
</Group> | ||
) | ||
} | ||
], | ||
[], | ||
); | ||
|
||
const table = useMantineReactTable({ | ||
columns, | ||
data: apiKeys, | ||
renderTopToolbarCustomActions: () => ( | ||
<Button | ||
onClick={() => { | ||
mutate(); | ||
}} | ||
disabled={isPending} | ||
loading={isPending} | ||
> | ||
Create API token | ||
</Button> | ||
), | ||
enableDensityToggle: false, | ||
state: { | ||
density: "xs" | ||
} | ||
}); | ||
|
||
return <Stack> | ||
<Title>API Keys</Title> | ||
<MantineReactTable table={table} /> | ||
</Stack> | ||
} |
38 changes: 38 additions & 0 deletions
38
apps/nextjs/src/app/[locale]/manage/tools/api/components/copy-api-key-modal.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import { createModal } from "@homarr/modals"; | ||
import { useScopedI18n } from "@homarr/translation/client"; | ||
import { Stack, Text, Button, CopyButton, PasswordInput } from "@mantine/core"; | ||
import { useDisclosure } from "@mantine/hooks"; | ||
|
||
export const CopyApiKeyModal = createModal<{ apiKey: string }>(({ actions, innerProps }) => { | ||
const t = useScopedI18n("management.page.tool.api.modal.createApiToken"); | ||
const [visible, { toggle }] = useDisclosure(false); | ||
return ( | ||
<Stack> | ||
<Text>{t("description")}</Text> | ||
<PasswordInput | ||
value={innerProps.apiKey} | ||
visible={visible} | ||
onVisibilityChange={toggle} | ||
readOnly | ||
/> | ||
<CopyButton value={innerProps.apiKey}> | ||
{({ copy }) => ( | ||
<Button | ||
onClick={() => { | ||
copy(); | ||
actions.closeModal(); | ||
}} | ||
variant="default" | ||
fullWidth | ||
> | ||
{t("button")} | ||
</Button> | ||
)} | ||
</CopyButton> | ||
</Stack> | ||
); | ||
}).withOptions({ | ||
defaultTitle(t) { | ||
return t("management.page.tool.api.modal.createApiToken.title"); | ||
}, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
import {createTRPCRouter, permissionRequiredProcedure} from "../trpc"; | ||
import {createId, db} from "@homarr/db"; | ||
import { apiKeys } from "@homarr/db/schema/sqlite"; | ||
import { createSaltAsync, hashPasswordAsync } from "@homarr/auth"; | ||
import { generateSecureRandomToken } from "@homarr/common/server"; | ||
|
||
export const apiKeysRouter = createTRPCRouter({ | ||
getAll: permissionRequiredProcedure | ||
.requiresPermission("admin") | ||
.query(() => { | ||
return db.query.apiKeys.findMany({ | ||
columns: { | ||
id: true, | ||
apiKey: false, | ||
salt: false | ||
}, | ||
with: { | ||
user: { | ||
columns: { | ||
id: true, | ||
name: true, | ||
image: true | ||
} | ||
} | ||
} | ||
}); | ||
}), | ||
create: permissionRequiredProcedure | ||
.requiresPermission("admin") | ||
.mutation(async ({ ctx }) => { | ||
const salt = await createSaltAsync(); | ||
const randomToken = generateSecureRandomToken(64); | ||
const hashedRandomToken = await hashPasswordAsync(randomToken, salt); | ||
await db.insert(apiKeys).values({ | ||
id: createId(), | ||
apiKey: hashedRandomToken, | ||
salt: salt, | ||
userId: ctx.session.user.id | ||
}); | ||
return { | ||
randomToken, | ||
}; | ||
}) | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
CREATE TABLE `apiKey` ( | ||
`id` varchar(64) NOT NULL, | ||
`apiKey` text NOT NULL, | ||
`salt` text NOT NULL, | ||
`userId` varchar(64) NOT NULL, | ||
CONSTRAINT `apiKey_id` PRIMARY KEY(`id`) | ||
); | ||
--> statement-breakpoint | ||
ALTER TABLE `apiKey` ADD CONSTRAINT `apiKey_userId_user_id_fk` FOREIGN KEY (`userId`) REFERENCES `user`(`id`) ON DELETE cascade ON UPDATE no action; |
Oops, something went wrong.