2026-03-04 22:58:00 -06:00
# UniFi Access Badge-In Dashboard
2026-03-04 17:45:28 -06:00
2026-03-04 22:58:00 -06:00
A Dockerised Flask + SQLite attendance dashboard that receives real-time door unlock
2026-05-28 00:39:46 -05:00
webhooks from one or more **UniFi Access Developer API ** controllers, resolves
badge holders to real names, and displays a unified live attendance table with
first/latest badge times, source controller, and ON TIME / LATE status.
**Multi-controller: ** add as many UniFi Access controllers as the host can reach.
Webhooks are auto-registered when you add a controller from the UI.
2026-03-04 19:42:38 -06:00
---
2026-03-04 17:45:28 -06:00
2026-03-04 22:58:00 -06:00
## Requirements
2026-03-04 17:45:28 -06:00
2026-05-28 00:39:46 -05:00
- Linux host with Docker + Docker Compose (Unraid works great)
- One or more UniFi OS consoles running **UniFi Access 1.9.1 or later **
- Network reachability from the dashboard host to each controller on port **12445 **
- A **Developer API token ** from each UniFi Access controller you plan to add
2026-03-04 19:42:38 -06:00
---
2026-05-28 00:39:46 -05:00
## Step 1 — Open firewall port 12445 to each controller
2026-03-04 17:45:28 -06:00
2026-03-04 22:58:00 -06:00
The UniFi Access Open API runs exclusively on **port 12445 ** (HTTPS, self-signed cert).
2026-05-28 00:39:46 -05:00
The host running the dashboard must be able to reach each controller on that port.
2026-03-04 22:58:00 -06:00
2026-05-28 00:39:46 -05:00
In UniFi Network → Settings → Firewall & Security → Firewall Rules, add a **LAN IN ** rule on each controller:
2026-03-04 22:58:00 -06:00
| Field | Value |
|---|---|
| Action | Accept |
| Protocol | TCP |
| Destination Port | 12445 |
2026-05-28 00:39:46 -05:00
| Source | the subnet your dashboard host lives on |
2026-03-04 22:58:00 -06:00
2026-05-28 00:39:46 -05:00
Verify from the dashboard host:
2026-03-04 22:58:00 -06:00
``` bash
2026-05-28 00:39:46 -05:00
# Linux:
2026-03-04 22:58:00 -06:00
nc -zv 10.0.0.1 12445
# Windows PowerShell:
Test-NetConnection -ComputerName 10.0.0.1 -Port 12445
2026-03-04 19:42:38 -06:00
```
2026-03-04 17:45:28 -06:00
2026-03-04 19:42:38 -06:00
---
2026-03-04 17:45:28 -06:00
2026-05-28 00:39:46 -05:00
## Step 2 — Generate a Developer API token on each controller
2026-03-04 17:45:28 -06:00
2026-05-28 00:39:46 -05:00
> ⚠️ This token is **different** from the UniFi OS / Network API token.
2026-03-04 22:58:00 -06:00
> Creating it in the wrong place will result in 401 Unauthorized errors.
2026-03-04 17:45:28 -06:00
2026-05-28 00:39:46 -05:00
1. Open the UniFi OS console at `https://<controller-ip>` in a browser.
2. Open the **Access ** app (blue door icon).
2026-03-04 22:58:00 -06:00
3. Go to **Settings → General → Advanced → API Token ** .
2026-05-28 00:39:46 -05:00
4. Click **Create New ** , name it, enable **all permission scopes ** , and pick a validity period.
5. Click **Create ** and **immediately copy the token ** — it's only shown once.
2026-03-04 17:45:28 -06:00
2026-05-28 00:39:46 -05:00
Repeat for each controller you plan to add.
2026-03-04 20:56:30 -06:00
2026-05-28 00:39:46 -05:00
---
2026-03-04 20:56:30 -06:00
2026-05-28 00:39:46 -05:00
## Step 3 — Clone the repo on the host
2026-03-04 20:56:30 -06:00
``` bash
cd /mnt/user/appdata
2026-03-04 23:32:53 -06:00
git clone https://github.com/jasonMPM/unifi-access-dashboard.git unifi-access-dashboard
2026-03-04 20:56:30 -06:00
cd unifi-access-dashboard
```
---
2026-03-04 22:58:00 -06:00
## Step 4 — Create your .env file
2026-03-04 17:45:28 -06:00
``` bash
2026-03-04 19:42:38 -06:00
cp .env.example .env
2026-03-04 20:56:30 -06:00
nano .env
```
2026-05-28 00:39:46 -05:00
The `UNIFI_*` and `WEBHOOK_SECRET` values are **optional ** . If set, they auto-create
a "Default" controller on first boot — handy for single-controller installs. You can
leave them blank and add every controller via the UI instead.
2026-03-04 20:56:30 -06:00
``` dotenv
2026-05-28 00:39:46 -05:00
# Optional: seeds a "Default" controller on first boot
UNIFI_HOST=10.0.0.1
UNIFI_PORT=12445
UNIFI_API_TOKEN=YOUR_TOKEN_HERE
WEBHOOK_SECRET=
# Required
TZ=America/Chicago
DB_PATH=/data/dashboard.db
# Optional: override the URL the dashboard uses when registering webhooks
# DASHBOARD_BASE_URL=http://10.0.0.5:8000
2026-03-04 19:42:38 -06:00
```
2026-03-04 20:56:30 -06:00
> **Never commit `.env` to git.** It is listed in `.gitignore`.
---
2026-03-04 22:58:00 -06:00
## Step 5 — Build and start the container
2026-03-04 20:56:30 -06:00
``` bash
2026-03-04 22:58:00 -06:00
cd /mnt/user/appdata/unifi-access-dashboard
/usr/bin/docker compose up -d --build
2026-03-04 20:56:30 -06:00
```
The container will:
- Build the image from the local `Dockerfile`
- Start Flask on port **8000 **
- Create `/data/dashboard.db` inside the container (mapped to `./data/` on the host)
2026-05-28 00:39:46 -05:00
- If env-var credentials are set, seed a "Default" controller and sync its users
- Schedule a user-cache refresh every 6 hours for every enabled controller
2026-03-04 20:56:30 -06:00
2026-05-28 00:39:46 -05:00
Verify it's running:
2026-03-04 20:56:30 -06:00
``` bash
2026-03-04 22:58:00 -06:00
/usr/bin/docker ps
/usr/bin/docker logs -f unifi-access-dashboard
2026-03-04 20:56:30 -06:00
```
---
2026-05-28 00:39:46 -05:00
## Step 6 — Add controllers from the UI
2026-03-04 22:58:00 -06:00
2026-05-28 00:39:46 -05:00
Navigate to:
2026-03-04 17:45:28 -06:00
2026-03-04 22:58:00 -06:00
```
2026-05-28 00:39:46 -05:00
http://<HOST-IP>:8000/
2026-03-04 17:45:28 -06:00
```
2026-05-28 00:39:46 -05:00
Click the * * ⚙ Controllers** button in the header. For each UniFi Access instance you want
to receive events from, fill in:
2026-03-04 22:58:00 -06:00
2026-05-28 00:39:46 -05:00
| Field | Value |
|---|---|
| **Name ** | Friendly label shown in the Source column (e.g. "Main Office", "Warehouse") |
| **Host / IP ** | Controller IP, e.g. `10.0.0.1` |
| **Port ** | `12445` (don't change unless your controller is non-standard) |
| **Developer API Token ** | Token from Step 2 |
2026-03-04 19:42:38 -06:00
2026-05-28 00:39:46 -05:00
Click **Add Controller ** . The dashboard will:
2026-03-04 20:56:30 -06:00
2026-05-28 00:39:46 -05:00
1. Call the controller's `POST /webhooks/endpoints` with this dashboard's URL.
2. Store the returned webhook secret so it can verify incoming events (HMAC-SHA256).
3. Immediately sync the controller's user list to resolve names.
2026-03-04 20:56:30 -06:00
2026-05-28 00:39:46 -05:00
If the controller can't reach this dashboard at the URL shown in the form hint
(it uses `window.location.origin` by default), set `DASHBOARD_BASE_URL` in `.env`
and restart.
2026-03-04 20:56:30 -06:00
2026-05-28 00:39:46 -05:00
Per-controller actions in the modal:
2026-03-04 20:56:30 -06:00
2026-05-28 00:39:46 -05:00
| Action | Description |
|---|---|
| **Test ** | Hits the controller's `/users` endpoint to confirm the token works |
| **Sync ** | Pulls latest users from this controller right now |
| **Enable / Disable ** | Pause ingestion + sync without deleting the controller |
| **Remove ** | Deletes the webhook from the controller and wipes all its badge events from the dashboard |
2026-03-04 20:56:30 -06:00
2026-05-28 00:39:46 -05:00
---
2026-03-04 20:56:30 -06:00
2026-05-28 00:39:46 -05:00
## Dashboard controls
2026-03-04 20:56:30 -06:00
| Control | Description |
|---|---|
| **Date picker ** | Choose which day to view |
2026-05-28 00:39:46 -05:00
| **Badged in by ** | Set your on-time cutoff (HH:MM) |
| **Controller ** | Filter the table to one controller, or show All |
| **Refresh ** | Reload the table |
| **Sync Users ** | Pull latest users from every enabled controller |
| * * ⚙ Controllers** | Add / manage controllers |
| **Reset Day ** | Delete all badge records for the selected date (respects the Controller filter — testing only) |
2026-03-04 20:56:30 -06:00
2026-03-04 22:58:00 -06:00
### Dashboard columns
2026-03-04 20:56:30 -06:00
| Column | Description |
|---|---|
| * * #** | Row number |
| **Name ** | Resolved display name from UniFi Access |
2026-05-28 00:39:46 -05:00
| **Source ** | Controller this badge event came from |
2026-03-04 22:58:00 -06:00
| **First Badge In ** | Earliest door entry for the day — never changes once set |
| **Latest Badge In ** | Most recent entry — shows * "— same" * if only one badge event |
2026-03-04 20:56:30 -06:00
| **Actor ID ** | First 8 characters of the UniFi user UUID |
2026-03-04 22:58:00 -06:00
| **Status ** | ON TIME (green) or LATE (red) based on first badge vs cutoff |
2026-03-04 20:56:30 -06:00
2026-05-28 00:39:46 -05:00
> The same physical person on two different controllers will appear as two rows
> (different controllers issue different user UUIDs). They're distinguishable
> by the Source column.
2026-03-04 20:56:30 -06:00
---
## Updating from GitHub
2026-03-04 17:45:28 -06:00
``` bash
2026-03-04 19:53:39 -06:00
cd /mnt/user/appdata/unifi-access-dashboard
git pull
2026-03-04 22:58:00 -06:00
/usr/bin/docker compose up -d --build
2026-03-04 17:45:28 -06:00
```
2026-05-28 00:39:46 -05:00
The SQLite database in `./data/` persists across rebuilds. On first start after
upgrading from a single-controller install, existing badge events are
automatically attached to the seeded "Default" controller — nothing to migrate
by hand.
2026-03-04 22:58:00 -06:00
2026-03-04 19:42:38 -06:00
---
2026-03-04 17:45:28 -06:00
2026-03-04 22:58:00 -06:00
## API reference
2026-03-04 17:45:28 -06:00
2026-05-28 00:39:46 -05:00
All endpoints are unauthenticated by design — this app assumes a LAN-only
deployment. Do not expose port 8000 to the internet without putting a
reverse proxy with auth in front of it.
| Method | Path | Params / Body | Description |
2026-03-04 20:56:30 -06:00
|---|---|---|---|
2026-05-28 00:39:46 -05:00
| `POST` | `/api/unifi-access/<controller_id>` | webhook body | Receives UniFi Access webhook for that controller |
| `POST` | `/api/unifi-access` | webhook body | Legacy alias — routes to the oldest controller |
| `GET` | `/api/first-badge-status` | `date` , `cutoff` , `controller_id?` | Returns first + latest badge per user |
| `GET` | `/api/controllers` | — | List configured controllers |
| `POST` | `/api/controllers` | `name` , `host` , `port` , `api_token` | Add a controller (also registers webhook) |
| `PATCH` | `/api/controllers/<id>` | `name?` , `enabled?` | Rename or enable/disable a controller |
| `DELETE` | `/api/controllers/<id>` | — | Remove a controller (deletes webhook + its events) |
| `POST` | `/api/controllers/<id>/test` | — | Test controller reachability + token |
| `POST` | `/api/controllers/<id>/sync` | — | Sync one controller's user cache immediately |
| `GET` | `/api/sync-users` | — | Sync every enabled controller |
| `DELETE` | `/api/reset-day` | `date` , `controller_id?` | Delete badge records for a date (optionally scoped to one controller) |
2026-03-04 17:45:28 -06:00
2026-03-04 19:42:38 -06:00
---
## Troubleshooting
2026-03-04 22:58:00 -06:00
| Symptom | Cause | Fix |
2026-03-04 19:42:38 -06:00
|---|---|---|
2026-05-28 00:39:46 -05:00
| Add Controller fails with "webhook registration rejected" | Token invalid or wrong scope | Regenerate token in Access → Settings → General → API Token with all scopes enabled |
| Add Controller fails with a connection error | Host unreachable on port 12445 | Verify firewall rule from Step 1; `nc -zv <ip> 12445` from the dashboard host |
| Events arrive but signature is rejected | Webhook secret missing or stale | Remove the controller and re-add it (the dashboard re-registers and gets a fresh secret) |
| Source column says "—" | Pre-migration row with no controller_id | Restart the container; the migration runs on every boot |
| Names show as `Unknown (xxxxxxxx...)` | Users not synced yet for that controller | Click **Sync ** in the Controllers modal |
| Webhook URL stored in controller points to the wrong address | Browser's origin isn't reachable from the controller | Set `DASHBOARD_BASE_URL` in `.env` , remove + re-add the controller |
2026-03-04 22:58:00 -06:00
| `Port 12445 connection refused` | Firewall blocking port | Add LAN IN firewall rule in UniFi Network (Step 1) |
2026-05-28 00:39:46 -05:00
| Dashboard shows stale names after a user rename | Cache not refreshed | Click **Sync Users ** or wait for the 6-hour auto-sync |
2026-03-04 20:56:30 -06:00
---
## Security notes
- `.env` is excluded from git via `.gitignore` — never commit it.
2026-05-28 00:39:46 -05:00
- API tokens are stored **in plaintext ** in the SQLite DB; the dashboard
assumes a LAN-only deployment. Filesystem permissions on `./data/dashboard.db`
are the only thing protecting them.
- All admin endpoints (`/api/controllers/*` , `/api/sync-users` , `/api/reset-day` )
are **unauthenticated ** . Do not expose port 8000 publicly. If external access
is required, place Nginx, Traefik, or Caddy with HTTPS + auth in front of port `8000` .
- Each controller's `webhook_secret` is enforced via HMAC-SHA256 on incoming
events so spoofed webhook posts from outside the LAN are rejected.