diff --git a/public/locales/en/common.json b/public/locales/en/common.json index 4641a63b..a652abf8 100644 --- a/public/locales/en/common.json +++ b/public/locales/en/common.json @@ -179,5 +179,10 @@ "user_count": "Users", "status_count": "Posts", "domain_count": "Domains" + }, + "authentik": { + "users": "Users", + "loginsLast24H": "Logins (24h)", + "failedLoginsLast24H": "Failed Logins (24h)" } } diff --git a/src/utils/proxies/credentialed.js b/src/utils/proxies/credentialed.js index 016770a6..098fd8bc 100644 --- a/src/utils/proxies/credentialed.js +++ b/src/utils/proxies/credentialed.js @@ -1,8 +1,11 @@ import getServiceWidget from "utils/service-helpers"; import { formatApiCall } from "utils/api-helpers"; import { httpProxy } from "utils/http"; +import createLogger from "utils/logger"; import widgets from "widgets/widgets"; +const logger = createLogger("credentialedProxyHandler"); + export default async function credentialedProxyHandler(req, res) { const { group, service, endpoint } = req.query; @@ -24,6 +27,8 @@ export default async function credentialedProxyHandler(req, res) { headers["X-CMC_PRO_API_KEY"] = `${widget.key}`; } else if (widget.type === "gotify") { headers["X-gotify-Key"] = `${widget.key}`; + } else if (widget.type === "authentik") { + headers.Authorization = `Bearer ${widget.key}`; } else { headers["X-API-Key"] = `${widget.key}`; } @@ -39,10 +44,15 @@ export default async function credentialedProxyHandler(req, res) { return res.status(status).end(); } + if (status >= 400) { + logger.debug("HTTP Error %d calling %s//%s%s...", status, url.protocol, url.hostname, url.pathname); + } + if (contentType) res.setHeader("Content-Type", contentType); return res.status(status).send(data); } } + logger.debug("Invalid or missing proxy service type '%s' in group '%s'", service, group); return res.status(400).json({ error: "Invalid proxy service type" }); } diff --git a/src/widgets/authentik/component.jsx b/src/widgets/authentik/component.jsx new file mode 100644 index 00000000..365060b2 --- /dev/null +++ b/src/widgets/authentik/component.jsx @@ -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 ; + } + + if (!usersData || !loginsData || !failedLoginsData) { + return ( + + + + + + ); + } + + 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 ( + + + + + + ); +} diff --git a/src/widgets/authentik/widget.js b/src/widgets/authentik/widget.js new file mode 100644 index 00000000..e665d526 --- /dev/null +++ b/src/widgets/authentik/widget.js @@ -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; diff --git a/src/widgets/components.js b/src/widgets/components.js index f4003662..79c3b817 100644 --- a/src/widgets/components.js +++ b/src/widgets/components.js @@ -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")), diff --git a/src/widgets/widgets.js b/src/widgets/widgets.js index 8466a2c5..39c0aec7 100644 --- a/src/widgets/widgets.js +++ b/src/widgets/widgets.js @@ -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,