mirror of
https://github.com/DI0IK/homepage-plus.git
synced 2025-07-09 14:58:47 +00:00
Add authentik
This commit is contained in:
parent
d876ba30d4
commit
1840e9a57a
6 changed files with 84 additions and 0 deletions
46
src/widgets/authentik/component.jsx
Normal file
46
src/widgets/authentik/component.jsx
Normal file
|
@ -0,0 +1,46 @@
|
|||
import useSWR from "swr";
|
||||
import { useTranslation } from "next-i18next";
|
||||
|
||||
import Widget from "components/services/widgets/widget";
|
||||
import Block from "components/services/widgets/block";
|
||||
import { formatProxyUrl } from "utils/api-helpers";
|
||||
|
||||
export default function Component({ service }) {
|
||||
const { t } = useTranslation();
|
||||
|
||||
const config = service.widget;
|
||||
|
||||
const { data: usersData, error: usersError } = useSWR(formatProxyUrl(config, "users"));
|
||||
const { data: loginsData, error: loginsError } = useSWR(formatProxyUrl(config, "login"));
|
||||
const { data: failedLoginsData, error: failedLoginsError } = useSWR(formatProxyUrl(config, "login_failed"));
|
||||
|
||||
if (usersError || loginsError || failedLoginsError) {
|
||||
return <Widget error={t("widget.api_error")} />;
|
||||
}
|
||||
|
||||
if (!usersData || !loginsData || !failedLoginsData) {
|
||||
return (
|
||||
<Widget>
|
||||
<Block label={t("authentik.users")} />
|
||||
<Block label={t("authentik.loginsLast24H")} />
|
||||
<Block label={t("authentik.failedLoginsLast24H")} />
|
||||
</Widget>
|
||||
);
|
||||
}
|
||||
|
||||
const yesterday = new Date(Date.now()).setHours(-24);
|
||||
const loginsLast24H = loginsData.reduce(
|
||||
(total, current) => current.x_cord >= yesterday ? total + current.y_cord : total
|
||||
, 0);
|
||||
const failedLoginsLast24H = failedLoginsData.reduce(
|
||||
(total, current) => current.x_cord >= yesterday ? total + current.y_cord : total
|
||||
, 0);
|
||||
|
||||
return (
|
||||
<Widget>
|
||||
<Block label={t("authentik.users")} value={t("common.number", { value: usersData.pagination.count })} />
|
||||
<Block label={t("authentik.loginsLast24H")} value={t("common.number", { value: loginsLast24H })} />
|
||||
<Block label={t("authentik.failedLoginsLast24H")} value={t("common.number", { value: failedLoginsLast24H })} />
|
||||
</Widget>
|
||||
);
|
||||
}
|
20
src/widgets/authentik/widget.js
Normal file
20
src/widgets/authentik/widget.js
Normal file
|
@ -0,0 +1,20 @@
|
|||
import credentialedProxyHandler from "utils/proxies/credentialed";
|
||||
|
||||
const widget = {
|
||||
api: "{url}/api/v3/{endpoint}",
|
||||
proxyHandler: credentialedProxyHandler,
|
||||
|
||||
mappings: {
|
||||
"users": {
|
||||
endpoint: "core/users?page_size=1"
|
||||
},
|
||||
"login": {
|
||||
endpoint: "events/events/per_month/?action=login&query={}"
|
||||
},
|
||||
"login_failed": {
|
||||
endpoint: "events/events/per_month/?action=login_failed&query={}"
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
export default widget;
|
|
@ -2,6 +2,7 @@ import dynamic from "next/dynamic";
|
|||
|
||||
const components = {
|
||||
adguard: dynamic(() => import("./adguard/component")),
|
||||
authentik: dynamic(() => import("./authentik/component")),
|
||||
bazarr: dynamic(() => import("./bazarr/component")),
|
||||
coinmarketcap: dynamic(() => import("./coinmarketcap/component")),
|
||||
docker: dynamic(() => import("./docker/component")),
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
import adguard from "./adguard/widget";
|
||||
import authentik from "./authentik/widget";
|
||||
import bazarr from "./bazarr/widget";
|
||||
import coinmarketcap from "./coinmarketcap/widget";
|
||||
import emby from "./emby/widget";
|
||||
|
@ -27,6 +28,7 @@ import transmission from "./transmission/widget";
|
|||
|
||||
const widgets = {
|
||||
adguard,
|
||||
authentik,
|
||||
bazarr,
|
||||
coinmarketcap,
|
||||
emby,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue