Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7dc895172c | ||
|
|
f252562103 | ||
|
|
3960931ebe | ||
|
|
aa07a78912 | ||
|
|
3de0e89e94 | ||
|
|
9097d45d6a | ||
|
|
a7d867dd6f | ||
|
|
196c640f9b | ||
|
|
7bd4a792ee | ||
|
|
e1e759f64e | ||
|
|
f071c21219 | ||
|
|
e984f36875 | ||
|
|
bbd517abbb | ||
|
|
403a928b9e | ||
|
|
7bb34f40fe | ||
|
|
ea72747822 | ||
|
|
a5bf8e6f7f | ||
|
|
203d0bfc01 | ||
|
|
1bdc122995 | ||
|
|
2d748458d0 | ||
|
|
bb8cd98e61 | ||
|
|
aafe112c36 | ||
|
|
1f1ad5d61f | ||
|
|
f0177e6628 | ||
|
|
15dc6eb7f2 |
@@ -1,5 +1,6 @@
|
||||
*
|
||||
!package.json
|
||||
!package-lock.json
|
||||
!build/
|
||||
!build/**
|
||||
!src/
|
||||
|
||||
@@ -4,6 +4,8 @@
|
||||
|
||||
- Treat `package.json` as the source of truth for the application version.
|
||||
- Keep `package.json`, `build/package.player.json`, and `build/package.web.json` on the same version number.
|
||||
- Keep dependency versions and package metadata in `package.json`, `package-lock.json`, `build/package.player.json`, and `build/package.web.json` aligned unless a dependency is intentionally omitted from a specific bundle.
|
||||
- When changing bundled library versions, update the About page source data from the same package metadata or vendored asset banner rather than hardcoding a fresh literal.
|
||||
- When the app version changes, update `CHANGELOG.md` in the same change.
|
||||
- Keep database migration versions aligned with the release they actually belong to.
|
||||
- If only part of a migration batch belongs to a newer release, split that batch into a separate migration entry instead of relabeling the earlier release.
|
||||
|
||||
@@ -7,17 +7,18 @@ on:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build-and-push:
|
||||
build-and-push-existing-registry:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
include:
|
||||
- name: web
|
||||
image: git.lzstealth.com/lzstealth/pulse-signage-web
|
||||
repository: pulse-signage-web
|
||||
dockerfile: ./build/Dockerfile
|
||||
- name: player
|
||||
image: git.lzstealth.com/lzstealth/pulse-signage-player
|
||||
repository: pulse-signage-player
|
||||
dockerfile: ./build/Dockerfile.player
|
||||
|
||||
steps:
|
||||
@@ -27,7 +28,7 @@ jobs:
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
|
||||
- name: Log in to container registry
|
||||
- name: Log in to existing package registry
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: git.lzstealth.com
|
||||
@@ -38,7 +39,8 @@ jobs:
|
||||
id: meta
|
||||
uses: docker/metadata-action@v5
|
||||
with:
|
||||
images: ${{ matrix.image }}
|
||||
images: |
|
||||
git.lzstealth.com/lzstealth/${{ matrix.repository }}
|
||||
tags: |
|
||||
type=raw,value=latest
|
||||
type=ref,event=tag
|
||||
|
||||
+219
@@ -2,6 +2,225 @@
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
## 2.10.2 - 2026-08-28
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fixed the weather forecast preview to show only its first-fetch message until a successful forecast is available.
|
||||
|
||||
## 2.10.1 - 2026-08-28
|
||||
|
||||
### Added
|
||||
|
||||
- Added linear gradient backgrounds to templates, including multiple colours and angle control.
|
||||
- Added a visual gradient stop editor with draggable stops, click-to-add support, and stop reordering.
|
||||
|
||||
## 2.10.0 - 2026-08-28
|
||||
|
||||
### Added
|
||||
|
||||
- Added secure kiosk onboarding with QR-first and manual pairing flows.
|
||||
- Added browser-specific pairing sessions with expiring pairing codes.
|
||||
- Added circular QR presentation and a compatible QR scanner with decoder fallbacks.
|
||||
- Added responsive player onboarding and a post-pair option to connect another player.
|
||||
- Added stable player identity bindings for paired players and moved-client aliases.
|
||||
- Added per-tab client identities backed by browser session storage for commands, pairing, and screen moves.
|
||||
- Added RBAC protection for player pairing through the `pairing.allow` permission.
|
||||
- Added a dedicated web onboarding workflow for pairing and managing player setup.
|
||||
|
||||
### Changed
|
||||
|
||||
- Restricted direct screen URLs to the player configured for the requested screen.
|
||||
- Added pairing entry points to the dashboard and connected clients workflows.
|
||||
- Made pairing QR codes easier to scan by encoding only the short pairing code.
|
||||
- Added a mobile-friendly connected clients link after successful pairing.
|
||||
- Made connected-client controls and player pairing UI render independently according to their permissions.
|
||||
- Added player keyboard feedback for slide navigation, plus `P` pause/unpause and `B` blackout toggles.
|
||||
- Removed client identities from onboarding and screen-move URLs; authorized player data now loads after the tab identity handshake.
|
||||
- Updated connected-client commands and screen moves to resolve tab and registered-player identities reliably.
|
||||
|
||||
## 2.9.0 - 2026-08-28
|
||||
|
||||
### Added
|
||||
|
||||
- API sources, RSS feeds, and weather locations can be enabled or disabled without deleting their cached data.
|
||||
- Added Weather slide regions with current, daily, and hourly placeholders, date/time transforms, and Bootstrap weather icon transforms.
|
||||
- Added multiple saved weather locations with provider, coordinate, unit, and refresh settings.
|
||||
- Added separate Allow permissions for manually refreshing API sources, RSS feeds, and weather locations.
|
||||
|
||||
### Changed
|
||||
|
||||
- API, RSS, and Weather refresh jobs now skip disabled sources across scheduled, startup, queued, and manual refresh paths, while re-enabling a source resumes refresh scheduling.
|
||||
- Weather placeholders now show all current fields, or all fields for the first daily/hourly entry before the remaining entries in a Show more section.
|
||||
- Weather previews, player playback, and slide thumbnails now use cached Weather data and consistent text/icon sizing.
|
||||
- API, RSS, and Weather lists now show enabled status and their forms provide action-oriented Enable/Disable controls.
|
||||
- Enable/Disable actions on API, RSS, and Weather forms now run asynchronously without reloading unsaved form changes.
|
||||
- Weather locations can now be duplicated from the weather list.
|
||||
- Startup data-source refreshes now respect each API, RSS, and weather source's configured repull interval.
|
||||
- RSS feeds now persist their last collection timestamp.
|
||||
- Refreshed the vendored AdminLTE assets to 4.8.5.
|
||||
- Added AdminLTE extended palette colours to announcement colour choices and player rendering.
|
||||
- Removed Digital Signage Subheading and top padding.
|
||||
- API and RSS source saves now preserve cached data without pulling; added explicit manual refresh actions.
|
||||
|
||||
## 2.8.7 - 2026-08-22
|
||||
|
||||
### Added
|
||||
|
||||
- Added configurable JSON POST requests and two-step login-then-token authentication for API sources.
|
||||
|
||||
## 2.8.6 - 2026-08-18
|
||||
|
||||
### Fixed
|
||||
|
||||
- Added live URL validation with inline feedback and explicit HTTP or HTTPS scheme enforcement for URL fields.
|
||||
- Prevented Enter in slide editor inputs from implicitly saving the slide.
|
||||
- Collapsed nested API response JSON sections by default while keeping the root response visible.
|
||||
|
||||
## 2.8.5 - 2026-08-17
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fixed thumbnail capture timing so video assets are ready before the preview canvas is captured.
|
||||
- Replaced unavailable webpage thumbnails with a subdued placeholder while keeping live webpage previews intact.
|
||||
|
||||
## 2.8.4 - 2026-08-17
|
||||
|
||||
### Added
|
||||
|
||||
- Added local caching for API and RSS image placeholders under `player-cache/remote-images` for offline player playback.
|
||||
- Added reconciliation of cached remote images so files no longer referenced by slides are removed.
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fixed popup preview authentication for background thumbnail capture.
|
||||
- Fixed thumbnails so they use the same popup-preview canvas and resolve API/RSS placeholders, fonts, styles, and cached images correctly.
|
||||
- Fixed manual scheduled-task run notifications so they use task-neutral wording.
|
||||
|
||||
## 2.8.3 - 2026-08-17
|
||||
|
||||
### Added
|
||||
|
||||
- Added API, RSS, Timetable, and Time / Date placeholder help panels with shared transform and date-token documentation.
|
||||
- Added render-time API and RSS image placeholders with proportional sizing and preview-only bounding boxes.
|
||||
|
||||
### Changed
|
||||
|
||||
- API and RSS regions now preserve authored content when no data source is selected and remain blank when a selected source has no authored content.
|
||||
- Normal WYSIWYG image insertion remains upload-backed and separate from image placeholder transforms.
|
||||
|
||||
## 2.8.2 - 2026-08-16
|
||||
|
||||
### Changed
|
||||
|
||||
- Standardized update audit events on from/to changes and added readable table diffs for nested JSON, arrays, null values, and empty strings.
|
||||
- Standardized internal `src/data` imports on the `#src` alias.
|
||||
|
||||
## 2.8.1 - 2026-08-16
|
||||
|
||||
### Fixed
|
||||
|
||||
- Prevented startup and runtime duplicate-key writes from consuming auto-increment values in permission, player, onboarding, settings, and relationship tables.
|
||||
- Prevented partial timetable schemas from being incorrectly treated as fully migrated during schema version detection.
|
||||
|
||||
### Changed
|
||||
|
||||
- Renamed the built-in administrator role key to `super-admin`, while allowing its display name and description to be edited without being overwritten on restart.
|
||||
|
||||
## 2.8.0 - 2026-08-16
|
||||
|
||||
### Added
|
||||
|
||||
- Filtered audit-log CSV export with a dedicated `audit-log.export` permission.
|
||||
- Canvas Sizes as an individual Content audit category.
|
||||
- Audit events for slide, template, playlist, and screen changes.
|
||||
- Audit events for System Settings changes.
|
||||
- Administration audit events for user and role management.
|
||||
- Audit logging enablement, category selection, and request metadata controls.
|
||||
- The extensible audit event storage, retention setting, dedicated audit-log permission, and paginated viewer foundation.
|
||||
- A Defaults settings section for player and announcement defaults.
|
||||
- A configurable maximum active session limit that removes the oldest sessions first.
|
||||
- IP address and user-agent metadata to active sessions.
|
||||
- The option for users to sign out their other active sessions from My Account.
|
||||
- Persistent administrator-controlled account locking and unlocking.
|
||||
- Database-backed login rate limiting with configurable attempts, lockout duration, and tracking scope.
|
||||
- A permissions-gated System Settings page for announcement icon suggestions, media upload limits and MIME types, session lifetime, and password-change policies.
|
||||
- Configurable forced password changes for newly created users and administrator password resets.
|
||||
- The database foundation for key-based application settings, including typed defaults and validation.
|
||||
|
||||
### Changed
|
||||
|
||||
- Updated the API and database documentation and added the Docker publish status badge to the project README.
|
||||
- Renamed the audit export permission to `audit-log.allow`.
|
||||
- Made Content and Data Sources audit categories opt-in and excluded automatic data-source refreshes from audit logging.
|
||||
- Split Content audit logging into individual Slides, Templates, Playlists, Screens, and Announcements categories.
|
||||
- Renamed the System Settings audit category key from `settings` to `system-settings`.
|
||||
- Split audit administration events into separate Users and Roles categories.
|
||||
- Split RSS and API data-source refresh defaults.
|
||||
- Made the default announcement duration use a value and unit selector, matching announcement forms.
|
||||
- Replaced password strength presets with customizable length, category, and character requirements.
|
||||
- Session expiration now uses the configured system setting, and user and role administration is grouped under the Settings area.
|
||||
- Renamed the system settings permissions to the `system-settings.*` namespace and migrated existing role assignments.
|
||||
- Added numeric auto-increment identifiers to every table and retained natural or relationship keys as unique constraints.
|
||||
|
||||
## 2.7.6 - 2026-08-15
|
||||
|
||||
### Changed
|
||||
|
||||
- The announcement icon picker now supports searching the full Bootstrap Icons catalog while still showing the curated suggestion set by default.
|
||||
|
||||
### Fixed
|
||||
|
||||
- The announcement Play/Stop button now refreshes after saving screen-group changes, so Play stays disabled until the announcement actually has targets again.
|
||||
|
||||
## 2.7.5 - 2026-08-15
|
||||
|
||||
### Changed
|
||||
|
||||
- The About page now reads bundled library versions from package metadata and the vendored AdminLTE stylesheet.
|
||||
- AdminLTE is now reported as 4.3.1.
|
||||
- Animate.css is now reported as 4.1.1.
|
||||
- Bootstrap Icons is now reported as 1.13.1.
|
||||
- Cropper.js is now reported as 1.6.2.
|
||||
- Express is now reported as 5.2.1.
|
||||
- Handlebars is now reported as 4.7.8.
|
||||
- hls.js is now reported as 1.7.0.
|
||||
- Multer is now reported as 2.2.0.
|
||||
- MySQL2 is now reported as 3.23.3.
|
||||
- Sharp is now reported as 0.35.3.
|
||||
- TinyMCE is now reported from the vendored package metadata.
|
||||
- ws is now reported as 8.21.3.
|
||||
- The runtime and container images now target Node.js 26.
|
||||
|
||||
## 2.7.4 - 2026-08-15
|
||||
|
||||
### Added
|
||||
|
||||
- A new About page.
|
||||
|
||||
### Changed
|
||||
|
||||
- Refreshed the vendored AdminLTE assets to 4.3.1.
|
||||
|
||||
## 2.7.3 - 2026-08-15
|
||||
|
||||
### Changed
|
||||
|
||||
- The slide image cropper now warns that SVG and GIF files will be rasterized if they are edited, and it keeps the original file only when the full image remains selected.
|
||||
- The slide image upload flow now accepts PNG, JPG, GIF, WebP, and SVG images, while the WYSIWYG image uploader now matches that same allowlist.
|
||||
- TIFF is no longer accepted by the WYSIWYG image uploader.
|
||||
|
||||
### Fixed
|
||||
|
||||
- The player now preserves quoted custom font-family values from rich text content, so fonts with spaces such as Old London render correctly on screens.
|
||||
|
||||
## 2.7.2 - 2026-08-14
|
||||
|
||||
### Fixed
|
||||
|
||||
- HTML and webpage region previews now normalize object-shaped content before rendering, so the player, thumbnails, and popup preview show the intended iframe content instead of leaking raw objects.
|
||||
- HTML and webpage preview iframes now size explicitly to the full region bounds in the player, thumbnails, and popup preview.
|
||||
|
||||
## 2.7.1 - 2026-08-14
|
||||
|
||||
### Changed
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
# Pulse Signage
|
||||
|
||||
[](https://git.lzstealth.com/lzstealth/pulse-signage/actions?workflow=docker-publish.yml)
|
||||
|
||||
Pulse Signage is a self-hosted digital signage platform for teams that want clear, reliable control over the content on every screen.
|
||||
|
||||
It gives you one place to publish playlists, slides, announcements, and live updates without handing the workflow to a third-party service.
|
||||
|
||||
+2
-1
@@ -1,4 +1,4 @@
|
||||
FROM node:24-alpine
|
||||
FROM node:26-alpine
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
@@ -6,6 +6,7 @@ RUN apk add --no-cache chromium nss freetype harfbuzz ttf-freefont
|
||||
|
||||
COPY build/package.web.json ./package.json
|
||||
RUN npm install --omit=dev --no-audit --no-fund
|
||||
COPY package-lock.json ./package-lock.json
|
||||
|
||||
COPY src ./src
|
||||
COPY scripts ./scripts
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
FROM node:24-alpine
|
||||
FROM node:26-alpine
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
@@ -6,6 +6,7 @@ RUN apk add --no-cache ffmpeg
|
||||
|
||||
COPY build/package.player.json ./package.json
|
||||
RUN npm install --omit=dev --no-audit --no-fund
|
||||
COPY package-lock.json ./package-lock.json
|
||||
|
||||
COPY src ./src
|
||||
COPY scripts ./scripts
|
||||
|
||||
@@ -1,8 +1,11 @@
|
||||
{
|
||||
"name": "pulse-signage-player",
|
||||
"version": "2.7.1",
|
||||
"version": "2.10.2",
|
||||
"private": false,
|
||||
"description": "Pulse Signage player application bundle",
|
||||
"engines": {
|
||||
"node": ">=26.0.0"
|
||||
},
|
||||
"main": "src/common.js",
|
||||
"scripts": {
|
||||
"start": "node -r dotenv/config src/player.js",
|
||||
@@ -10,10 +13,10 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"dotenv": "^17.4.2",
|
||||
"express": "^4.21.2",
|
||||
"express": "^5.2.1",
|
||||
"handlebars": "^4.7.8",
|
||||
"hls.js": "^1.5.15",
|
||||
"mysql2": "^3.14.3",
|
||||
"ws": "^8.21.0"
|
||||
"hls.js": "^1.7.0",
|
||||
"mysql2": "^3.23.3",
|
||||
"ws": "^8.21.3"
|
||||
}
|
||||
}
|
||||
+10
-6
@@ -1,22 +1,26 @@
|
||||
{
|
||||
"name": "pulse-signage-web",
|
||||
"version": "2.7.1",
|
||||
"version": "2.10.2",
|
||||
"private": false,
|
||||
"description": "Pulse Signage web and bridge application bundle",
|
||||
"engines": {
|
||||
"node": ">=26.0.0"
|
||||
},
|
||||
"main": "src/common.js",
|
||||
"scripts": {
|
||||
"start": "node -r dotenv/config src/web.js",
|
||||
"start:web": "node -r dotenv/config src/web.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@sparticuz/chromium": "^137.0.0",
|
||||
"@sparticuz/chromium": "^149.0.0",
|
||||
"dotenv": "^17.4.2",
|
||||
"express": "^4.21.2",
|
||||
"express": "^5.2.1",
|
||||
"handlebars": "^4.7.8",
|
||||
"multer": "^2.2.0",
|
||||
"mysql2": "^3.14.3",
|
||||
"puppeteer-core": "^24.16.0",
|
||||
"mysql2": "^3.23.3",
|
||||
"puppeteer-core": "^25.7.0",
|
||||
"sharp": "^0.35.3",
|
||||
"ws": "^8.21.0"
|
||||
"jsqr": "^1.4.0",
|
||||
"ws": "^8.21.3"
|
||||
}
|
||||
}
|
||||
@@ -15,12 +15,12 @@ MYSQL_ROOT_PASSWORD="root_password"
|
||||
PLAYER_IDENTIFIER="player-local"
|
||||
PLAYER_PUBLIC_URL="http://localhost:8081"
|
||||
PLAYER_INTERNAL_URL="http://player:8081"
|
||||
WEB_PUBLIC_URL="http://localhost:8080"
|
||||
|
||||
# Web app bootstrap settings
|
||||
SESSION_MAX_AGE_DAYS=14
|
||||
DEFAULT_ADMIN_USERNAME="admin"
|
||||
DEFAULT_ADMIN_NAME="Admin"
|
||||
DEFAULT_ADMIN_PASSWORD="password123"
|
||||
DEFAULT_ADMIN_PASSWORD="password123!"
|
||||
|
||||
# Bridge settings for the player-bridge service
|
||||
WEB_INTERNAL_URL="http://web:8080"
|
||||
|
||||
@@ -45,7 +45,6 @@ Key configuration:
|
||||
|
||||
- `DB_HOST`, `DB_PORT`, `DB_NAME`, `DB_USER`, `DB_PASSWORD`
|
||||
- `PULSE_SIGNAGE_SHARED_SECRET`
|
||||
- `SESSION_MAX_AGE_DAYS`
|
||||
- `DEFAULT_ADMIN_USERNAME`
|
||||
- `DEFAULT_ADMIN_NAME`
|
||||
- `DEFAULT_ADMIN_PASSWORD`
|
||||
@@ -122,7 +121,6 @@ Important values:
|
||||
- `PLAYER_INTERNAL_URL` - internal URL the web app uses for local player calls
|
||||
- `BRIDGE_INTERNAL_URL` - bridge URL the web app uses for player snapshot and command forwarding
|
||||
- `WEB_INTERNAL_URL` - internal URL the bridge uses to call the web app directly
|
||||
- `SESSION_MAX_AGE_DAYS` - dashboard session lifetime
|
||||
- `DEFAULT_ADMIN_*` - bootstrap admin account values
|
||||
- `PASSWORD_HASH_ITERATIONS` - password hashing cost
|
||||
- `MYSQL_ROOT_PASSWORD` - root password for the local MySQL container
|
||||
@@ -167,7 +165,6 @@ Leave it blank only if you intentionally want to run without request signing in
|
||||
| `DB_USER` | web, player, bridge, mysql | Database user. |
|
||||
| `DB_PASSWORD` | web, player, bridge, mysql | Database password. |
|
||||
| `MYSQL_ROOT_PASSWORD` | mysql | Root password for the local MySQL container. |
|
||||
| `SESSION_MAX_AGE_DAYS` | web | Session cookie lifetime. |
|
||||
| `DEFAULT_ADMIN_USERNAME` | web | Bootstrap admin username. |
|
||||
| `DEFAULT_ADMIN_NAME` | web | Bootstrap admin display name. |
|
||||
| `DEFAULT_ADMIN_PASSWORD` | web | Bootstrap admin password. |
|
||||
|
||||
@@ -15,8 +15,8 @@ services:
|
||||
DB_USER: ${DB_USER:-pulse-signage}
|
||||
DB_PASSWORD: ${DB_PASSWORD:-signage_password}
|
||||
PULSE_SIGNAGE_SHARED_SECRET: ${PULSE_SIGNAGE_SHARED_SECRET:-}
|
||||
WEB_PUBLIC_URL: ${WEB_PUBLIC_URL:-http://localhost:8080}
|
||||
BRIDGE_INTERNAL_URL: ${BRIDGE_INTERNAL_URL:-http://player-bridge:8090}
|
||||
SESSION_MAX_AGE_DAYS: ${SESSION_MAX_AGE_DAYS:-14}
|
||||
DEFAULT_ADMIN_USERNAME: ${DEFAULT_ADMIN_USERNAME:-admin}
|
||||
DEFAULT_ADMIN_NAME: ${DEFAULT_ADMIN_NAME:-Admin}
|
||||
DEFAULT_ADMIN_PASSWORD: ${DEFAULT_ADMIN_PASSWORD:-password123}
|
||||
@@ -39,6 +39,7 @@ services:
|
||||
PLAYER_INTERNAL_URL: ${PLAYER_INTERNAL_URL:-http://player:8081}
|
||||
PLAYER_IDENTIFIER: ${PLAYER_IDENTIFIER:-player-local}
|
||||
PULSE_SIGNAGE_SHARED_SECRET: ${PULSE_SIGNAGE_SHARED_SECRET:-}
|
||||
WEB_PUBLIC_URL: ${WEB_PUBLIC_URL:-http://localhost:8080}
|
||||
DB_HOST: ${DB_HOST:-mysql}
|
||||
DB_PORT: ${DB_PORT:-3306}
|
||||
DB_NAME: ${DB_NAME:-pulse-signage}
|
||||
@@ -60,6 +61,7 @@ services:
|
||||
- "8090:8090"
|
||||
environment:
|
||||
WEB_INTERNAL_URL: ${WEB_INTERNAL_URL:-http://web:8080}
|
||||
WEB_PUBLIC_URL: ${WEB_PUBLIC_URL:-http://localhost:8080}
|
||||
PULSE_SIGNAGE_SHARED_SECRET: ${PULSE_SIGNAGE_SHARED_SECRET:-}
|
||||
DB_HOST: ${DB_HOST:-mysql}
|
||||
DB_PORT: ${DB_PORT:-3306}
|
||||
|
||||
+10
-11
@@ -6,7 +6,7 @@ Player service base URL: `http://localhost:8081`
|
||||
|
||||
This document covers the player HTTP surface only. The admin dashboard exposes its own routes for screen commands and onboarding management.
|
||||
|
||||
Access note: most player endpoints are unauthenticated because they are meant to run inside a trusted deployment network. Anything that mutates state or writes files should be treated as internal-only unless you add your own auth layer in front of it.
|
||||
Access note: most player endpoints are unauthenticated because they are meant to run inside a trusted deployment network. Anything that mutates state or writes files should be treated as internal-only unless you add your own auth layer in front of it. Pairing uses a short-lived random PIN displayed by the kiosk; the PIN is accepted only through the authenticated Web UI pairing flow.
|
||||
|
||||
When `PULSE_SIGNAGE_SHARED_SECRET` is set, the player pages sign same-origin API fetches with `x-pulse-page-auth`, and the web app signs server-to-player requests with `x-pulse-request-timestamp` plus `x-pulse-request-signature`. Page tokens auto-renew before expiry while the page stays active, and signed server requests are only accepted when their timestamp is fresh. If the secret is unset, those checks stay disabled for compatibility.
|
||||
|
||||
@@ -17,12 +17,12 @@ Returns the player onboarding landing page.
|
||||
Access: public within the trusted player deployment.
|
||||
|
||||
### `GET /onboard`
|
||||
Returns the onboarding form page.
|
||||
Access: public within the trusted player deployment.
|
||||
Redirects to the authenticated Web UI pairing page for compatibility with older QR codes.
|
||||
Access: the Web UI pairing page requires a logged-in Web UI session.
|
||||
|
||||
### `GET /screen/{slug}`
|
||||
Returns the rendered player page for a screen.
|
||||
Access: public within the trusted player deployment.
|
||||
Access: the configured player may load only its persisted paired screen. An unpaired player is redirected to `/`; a different screen slug is rejected. The route is public within the trusted player deployment, but it no longer changes the player's binding.
|
||||
|
||||
### `GET /api/onboarding/status`
|
||||
Returns the persisted onboarding status for a device.
|
||||
@@ -56,7 +56,7 @@ Response fields:
|
||||
|
||||
### `POST /api/onboarding`
|
||||
Binds a device to a screen and client name.
|
||||
Access: internal-only. Protect this endpoint if the player service is reachable outside your trusted network.
|
||||
Access: internal-only. Browser submissions must go through the authenticated Web UI pairing page. The Web UI resolves the short-lived kiosk PIN to a device ID before forwarding the signed request. Protect this endpoint if the player service is reachable outside your trusted network.
|
||||
|
||||
Accepted request fields:
|
||||
|
||||
@@ -286,6 +286,8 @@ Response fields:
|
||||
- `id`
|
||||
- `name`
|
||||
- `fade_between_slides`
|
||||
- `skip_unavailable_rtmp`
|
||||
- `canvas_id`
|
||||
|
||||
### Slide
|
||||
|
||||
@@ -293,12 +295,9 @@ Response fields:
|
||||
- `title`
|
||||
- `body`
|
||||
- `duration_seconds`
|
||||
- `schedule_mode`
|
||||
- `schedule_start_datetime`
|
||||
- `schedule_end_datetime`
|
||||
- `schedule_start_time`
|
||||
- `schedule_end_time`
|
||||
- `schedule_days_json`
|
||||
- `use_video_duration`
|
||||
- `disable_audio`
|
||||
- `scheduleRules`
|
||||
- `media_url`
|
||||
- `media_type`
|
||||
- `kind`
|
||||
|
||||
+40
-22
@@ -3,7 +3,7 @@
|
||||
This app creates and maintains its schema at startup through `src/db/index.js`.
|
||||
The sections below summarize the current tables and their purpose.
|
||||
|
||||
Primary keys are `id` unless noted otherwise. Timestamps are stored as `created_at` and `modified_at` when a table supports auditing.
|
||||
Tables generally use a numeric auto-increment `id` primary key. The relationship table `d_announcement_screens` intentionally uses the composite `(announcement_id, screen_id)` primary key instead. Natural and relationship keys remain as unique constraints where needed. Timestamps are stored as `created_at` and `modified_at` when a table supports auditing.
|
||||
|
||||
## Admin
|
||||
|
||||
@@ -16,7 +16,7 @@ Primary keys are `id` unless noted otherwise. Timestamps are stored as `created_
|
||||
|
||||
### `a_users`
|
||||
|
||||
- `id`, `name`, `username`, `password_hash`, `password_salt`, `password_iterations`, `created_at`, `created_by`, `modified_at`, `modified_by`
|
||||
- `id`, `name`, `username`, `password_hash`, `password_salt`, `password_iterations`, `must_change_password`, `account_locked`, `created_at`, `created_by`, `modified_at`, `modified_by`
|
||||
- `username` is unique.
|
||||
|
||||
### `a_roles`
|
||||
@@ -32,24 +32,24 @@ Primary keys are `id` unless noted otherwise. Timestamps are stored as `created_
|
||||
|
||||
### `a_role_permissions`
|
||||
|
||||
- `role_id`, `permission_id`, `created_at`, `modified_at`
|
||||
- `id`, `role_id`, `permission_id`, `created_at`, `modified_at`
|
||||
- Foreign keys:
|
||||
- `role_id` -> `a_roles.id`
|
||||
- `permission_id` -> `a_permissions.id`
|
||||
- Composite primary key: `(role_id, permission_id)`
|
||||
- Unique key: `(role_id, permission_id)`
|
||||
|
||||
### `a_user_roles`
|
||||
|
||||
- `user_id`, `role_id`, `created_at`, `modified_at`
|
||||
- `id`, `user_id`, `role_id`, `created_at`, `modified_at`
|
||||
- Foreign keys:
|
||||
- `user_id` -> `a_users.id`
|
||||
- `role_id` -> `a_roles.id`
|
||||
- Composite primary key: `(user_id, role_id)`
|
||||
- Unique key: `(user_id, role_id)`
|
||||
|
||||
### `a_sessions`
|
||||
|
||||
- `session_hash`, `user_id`, `expires_at`, `created_at`, `created_by`, `last_used_at`, `modified_by`
|
||||
- `session_hash` is the primary key.
|
||||
- `id`, `session_hash`, `user_id`, `ip_address`, `user_agent`, `expires_at`, `created_at`, `created_by`, `last_used_at`, `modified_by`
|
||||
- `session_hash` is unique.
|
||||
- Foreign key:
|
||||
- `user_id` -> `a_users.id`
|
||||
|
||||
@@ -116,11 +116,6 @@ Primary keys are `id` unless noted otherwise. Timestamps are stored as `created_
|
||||
- `d_screens` - screen records and playlist assignment.
|
||||
- `d_onboarding_devices` - device-to-screen bindings and onboarded client names.
|
||||
|
||||
## Announcements
|
||||
|
||||
- `d_announcements` - announcement content and display metadata.
|
||||
- `d_announcement_screens` - announcement-to-screen assignments.
|
||||
|
||||
### `d_players`
|
||||
|
||||
- `id`, `identifier`, `public_base_url`, `internal_base_url`, `last_seen_at`, `created_at`, `modified_at`
|
||||
@@ -138,11 +133,20 @@ Primary keys are `id` unless noted otherwise. Timestamps are stored as `created_
|
||||
|
||||
### `d_onboarding_devices`
|
||||
|
||||
- `device_id`, `client_name`, `screen_id`, `created_at`, `created_by`, `modified_at`, `modified_by`
|
||||
- `device_id` is the primary key.
|
||||
- `id`, `device_id`, `client_name`, `screen_id`, `created_at`, `created_by`, `modified_at`, `modified_by`
|
||||
- `device_id` is unique.
|
||||
- Foreign key:
|
||||
- `screen_id` -> `d_screens.id` with `ON DELETE SET NULL`
|
||||
|
||||
## Onboarding
|
||||
|
||||
- The onboarding flow uses `d_onboarding_devices` to bind a device to a screen and persist the client name.
|
||||
|
||||
## Announcements
|
||||
|
||||
- `d_announcements` - announcement content and display metadata.
|
||||
- `d_announcement_screens` - announcement-to-screen assignments.
|
||||
|
||||
### `d_announcements`
|
||||
|
||||
- `id`, `message`, `short_label`, `announcement_type`, `color_key`, `icon_key`, `duration_seconds`, `expires_at`, `created_at`, `created_by`, `modified_at`, `modified_by`
|
||||
@@ -154,11 +158,7 @@ Primary keys are `id` unless noted otherwise. Timestamps are stored as `created_
|
||||
- Foreign keys:
|
||||
- `announcement_id` -> `d_announcements.id` with `ON DELETE CASCADE`
|
||||
- `screen_id` -> `d_screens.id` with `ON DELETE CASCADE`
|
||||
- Composite primary key: `(announcement_id, screen_id)`
|
||||
|
||||
## Onboarding
|
||||
|
||||
- The onboarding flow uses `d_onboarding_devices` to bind a device to a screen and persist the client name.
|
||||
- Unique key: `(announcement_id, screen_id)`
|
||||
|
||||
## Integrations
|
||||
|
||||
@@ -201,6 +201,8 @@ Primary keys are `id` unless noted otherwise. Timestamps are stored as `created_
|
||||
|
||||
- `o_background_tasks` - queue and history for background jobs.
|
||||
- `o_app_state` - generic app state and version markers stored as key/value pairs.
|
||||
- `o_app_settings` - administrator-configurable application settings stored by key.
|
||||
- `o_audit_events` - retained audit events for administrator activity and system changes.
|
||||
|
||||
### `o_background_tasks`
|
||||
|
||||
@@ -209,10 +211,21 @@ Primary keys are `id` unless noted otherwise. Timestamps are stored as `created_
|
||||
|
||||
### `o_app_state`
|
||||
|
||||
- `state_key`, `state_value`, `created_at`, `modified_at`
|
||||
- `state_key` is the primary key.
|
||||
- `id`, `state_key`, `state_value`, `created_at`, `modified_at`
|
||||
- `state_key` is unique.
|
||||
- `schema_version` is stored here so startup can detect the previously recorded schema version before deciding whether migrations need to run.
|
||||
|
||||
### `o_app_settings`
|
||||
|
||||
- `id`, `setting_key`, `setting_value`, `created_at`, `created_by`, `modified_at`, `modified_by`
|
||||
- `setting_key` is unique.
|
||||
- Values are stored as JSON and validated against the application setting definitions in `src/data/app-settings.js`.
|
||||
|
||||
### `o_audit_events`
|
||||
|
||||
- `id`, `occurred_at`, `category`, `event_type`, `actor_user_id`, `target_type`, `target_id`, `target_label`, `ip_address`, `user_agent`, `details_json`
|
||||
- Indexed by occurrence time, category and event type, actor, and target.
|
||||
|
||||
## Notes
|
||||
|
||||
- The schema is initialized with `CREATE TABLE IF NOT EXISTS`, so new installs can start from an empty database.
|
||||
@@ -269,14 +282,19 @@ erDiagram
|
||||
}
|
||||
O_APP_STATE {
|
||||
}
|
||||
O_APP_SETTINGS {
|
||||
}
|
||||
O_BACKGROUND_TASKS {
|
||||
}
|
||||
O_AUDIT_EVENTS {
|
||||
}
|
||||
|
||||
A_USERS ||--o{ A_USER_ROLES : has
|
||||
A_ROLES ||--o{ A_USER_ROLES : assigned_to
|
||||
A_ROLES ||--o{ A_ROLE_PERMISSIONS : has
|
||||
A_PERMISSIONS ||--o{ A_ROLE_PERMISSIONS : granted_to
|
||||
A_USERS ||--o{ A_SESSIONS : owns
|
||||
A_USERS ||--o{ O_AUDIT_EVENTS : acts
|
||||
|
||||
C_CANVAS_SIZES ||--o{ C_TEMPLATES : used_by
|
||||
C_CANVAS_SIZES ||--o{ C_PLAYLISTS : used_by
|
||||
|
||||
Generated
+580
-984
File diff suppressed because it is too large
Load Diff
+12
-8
@@ -1,8 +1,11 @@
|
||||
{
|
||||
"name": "pulse-signage",
|
||||
"version": "2.7.1",
|
||||
"version": "2.10.2",
|
||||
"private": false,
|
||||
"description": "Pulse Signage application with MySQL and media storage",
|
||||
"engines": {
|
||||
"node": ">=26.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://git.lzstealth.com/LZStealth/pulse-signage.git"
|
||||
@@ -17,19 +20,20 @@
|
||||
"test": "node --test"
|
||||
},
|
||||
"dependencies": {
|
||||
"@sparticuz/chromium": "^137.0.0",
|
||||
"@sparticuz/chromium": "^149.0.0",
|
||||
"animate.css": "^4.1.1",
|
||||
"bootstrap-icons": "1.11.3",
|
||||
"bootstrap-icons": "1.13.1",
|
||||
"cropperjs": "^1.6.2",
|
||||
"dotenv": "^17.4.2",
|
||||
"express": "^4.21.2",
|
||||
"express": "^5.2.1",
|
||||
"handlebars": "^4.7.8",
|
||||
"hls.js": "^1.5.15",
|
||||
"hls.js": "^1.7.0",
|
||||
"jsqr": "^1.4.0",
|
||||
"multer": "^2.2.0",
|
||||
"mysql2": "^3.14.3",
|
||||
"puppeteer-core": "^24.16.0",
|
||||
"mysql2": "^3.23.3",
|
||||
"puppeteer-core": "^25.7.0",
|
||||
"sharp": "^0.35.3",
|
||||
"ws": "^8.21.0"
|
||||
"ws": "^8.21.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"nodemon": "^3.1.10"
|
||||
|
||||
@@ -53,9 +53,12 @@ if not defined BROWSER_PATH (
|
||||
exit /b 1
|
||||
)
|
||||
|
||||
set "KIOSK_PROFILE=%LocalAppData%\PulseSignage\kiosk-browser-profile"
|
||||
if not exist "!KIOSK_PROFILE!" mkdir "!KIOSK_PROFILE!"
|
||||
|
||||
echo Launching !BROWSER_KIND! in kiosk mode: !TARGET_URL!
|
||||
if /I "!BROWSER_KIND!"=="firefox" (
|
||||
start "" "!BROWSER_PATH!" -kiosk "!TARGET_URL!"
|
||||
start "" "!BROWSER_PATH!" -no-remote -profile "!KIOSK_PROFILE!" -new-window -kiosk "!TARGET_URL!"
|
||||
) else (
|
||||
start "" "!BROWSER_PATH!" --disable-notifications --kiosk "!TARGET_URL!"
|
||||
start "" "!BROWSER_PATH!" --disable-notifications --no-first-run --no-default-browser-check --new-window --kiosk --user-data-dir="!KIOSK_PROFILE!" "!TARGET_URL!"
|
||||
)
|
||||
@@ -35,13 +35,16 @@ else
|
||||
exit 1
|
||||
fi
|
||||
|
||||
kiosk_profile="${XDG_DATA_HOME:-$HOME/.local/share}/pulse-signage/kiosk-browser-profile"
|
||||
mkdir -p "$kiosk_profile"
|
||||
|
||||
echo "Launching ${browser_kind} in kiosk mode: ${target_url}"
|
||||
|
||||
case "$browser_kind" in
|
||||
firefox)
|
||||
exec "$browser" -kiosk "$target_url"
|
||||
exec "$browser" -no-remote -profile "$kiosk_profile" -new-window -kiosk "$target_url"
|
||||
;;
|
||||
edge|chrome)
|
||||
exec "$browser" --disable-notifications --kiosk "$target_url"
|
||||
exec "$browser" --disable-notifications --no-first-run --no-default-browser-check --new-window --kiosk --user-data-dir="$kiosk_profile" "$target_url"
|
||||
;;
|
||||
esac
|
||||
+37
-3
@@ -7,21 +7,55 @@ const PASSWORD_KEY_LENGTH = 32;
|
||||
const PASSWORD_DIGEST = 'sha256';
|
||||
const SESSION_BYTES = 32;
|
||||
|
||||
function validatePasswordStrength(password) {
|
||||
function validatePasswordStrength(password, options) {
|
||||
const value = String(password || '');
|
||||
const requirements = options && options.policy
|
||||
? getPasswordPolicyPreset(options.policy)
|
||||
: {
|
||||
minimumLength: Number(options && options.minimumLength) || 10,
|
||||
minimumCategories: Number(options && options.minimumCategories) || 3,
|
||||
requireLowercase: Boolean(options && options.requireLowercase),
|
||||
requireUppercase: Boolean(options && options.requireUppercase),
|
||||
requireNumber: Boolean(options && options.requireNumber),
|
||||
requireSymbol: Boolean(options && options.requireSymbol)
|
||||
};
|
||||
const hasLowercase = /[a-z]/.test(value);
|
||||
const hasUppercase = /[A-Z]/.test(value);
|
||||
const hasNumber = /[0-9]/.test(value);
|
||||
const hasSymbol = /[^A-Za-z0-9]/.test(value);
|
||||
const categoryCount = [hasLowercase, hasUppercase, hasNumber, hasSymbol].filter(Boolean).length;
|
||||
|
||||
if (value.length < 10 || categoryCount < 3) {
|
||||
return 'Password must be at least 10 characters and include 3 of: uppercase, lowercase, number, and symbol.';
|
||||
const missingRequiredCategory = requirements.requireLowercase && !hasLowercase
|
||||
|| requirements.requireUppercase && !hasUppercase
|
||||
|| requirements.requireNumber && !hasNumber
|
||||
|| requirements.requireSymbol && !hasSymbol;
|
||||
if (value.length < requirements.minimumLength || categoryCount < requirements.minimumCategories || missingRequiredCategory) {
|
||||
if (missingRequiredCategory) {
|
||||
const requiredCategories = [];
|
||||
if (requirements.requireLowercase) requiredCategories.push('lowercase');
|
||||
if (requirements.requireUppercase) requiredCategories.push('uppercase');
|
||||
if (requirements.requireNumber) requiredCategories.push('number');
|
||||
if (requirements.requireSymbol) requiredCategories.push('symbol');
|
||||
return `Password must be at least ${requirements.minimumLength} characters and include ${requiredCategories.join(', ')}.`;
|
||||
}
|
||||
if (requirements.minimumCategories === 4) {
|
||||
return `Password must be at least ${requirements.minimumLength} characters and include uppercase, lowercase, number, and symbol.`;
|
||||
}
|
||||
return `Password must be at least ${requirements.minimumLength} characters and include ${requirements.minimumCategories} of: uppercase, lowercase, number, and symbol.`;
|
||||
}
|
||||
|
||||
return '';
|
||||
}
|
||||
|
||||
function getPasswordPolicyPreset(policy) {
|
||||
const normalizedPolicy = String(policy || 'standard').trim().toLowerCase();
|
||||
return normalizedPolicy === 'strict'
|
||||
? { minimumLength: 14, minimumCategories: 4 }
|
||||
: normalizedPolicy === 'strong'
|
||||
? { minimumLength: 12, minimumCategories: 3 }
|
||||
: { minimumLength: 10, minimumCategories: 3 };
|
||||
}
|
||||
|
||||
function hashPassword(password, salt) {
|
||||
const safePassword = String(password || '');
|
||||
const safeSalt = salt || crypto.randomBytes(16).toString('hex');
|
||||
|
||||
+7
-2
@@ -27,7 +27,7 @@ const dbBootstrap = require('#src/db/bootstrap');
|
||||
const data = require('#src/data');
|
||||
const player = require('#src/player/render');
|
||||
const listQuery = require('#src/web/lib/list-query');
|
||||
const { fetchPlaylistCanvasId, fetchPlaylistCanvasSignature } = require('#src/web/lib/helpers');
|
||||
const { fetchPlaylistCanvasId } = require('#src/web/lib/helpers');
|
||||
|
||||
module.exports = {
|
||||
createPool: dbCommon.createPool,
|
||||
@@ -63,7 +63,6 @@ module.exports = {
|
||||
getSortDirectionQuery: listQuery.getSortDirectionQuery,
|
||||
fetchPlaylistById: data.fetchPlaylistById,
|
||||
fetchPlaylistCanvasId: fetchPlaylistCanvasId,
|
||||
fetchPlaylistCanvasSignature: fetchPlaylistCanvasSignature,
|
||||
normalizeDisplayMode: data.normalizeDisplayMode,
|
||||
fetchTimetablesData: data.fetchTimetablesData,
|
||||
fetchTimetableGroupsPage: data.fetchTimetableGroupsPage,
|
||||
@@ -83,6 +82,12 @@ module.exports = {
|
||||
buildRssFeedPayload: data.buildRssFeedPayload,
|
||||
fetchRssFeedItems: data.fetchRssFeedItems,
|
||||
replaceRssFeedItems: data.replaceRssFeedItems,
|
||||
fetchWeatherLocationsData: data.fetchWeatherLocationsData,
|
||||
fetchWeatherLocationsPage: data.fetchWeatherLocationsPage,
|
||||
fetchWeatherLocationById: data.fetchWeatherLocationById,
|
||||
fetchWeatherLocationSuggestions: data.fetchWeatherLocationSuggestions,
|
||||
fetchWeatherLocationForecast: data.fetchWeatherLocationForecast,
|
||||
buildWeatherLocationPayload: data.buildWeatherLocationPayload,
|
||||
fetchScreenById: data.fetchScreenById,
|
||||
fetchScreenEditData: data.fetchScreenEditData,
|
||||
fetchScreenPlayerUrls: data.fetchScreenPlayerUrls,
|
||||
|
||||
+2
-2
@@ -6,7 +6,7 @@ async function fetchAdminData(pool) {
|
||||
const [playlists] = await pool.query('SELECT id, name, fade_between_slides, skip_unavailable_rtmp, created_at, modified_at, created_by, modified_by FROM c_playlists ORDER BY id DESC');
|
||||
const [canvasSizes] = await pool.query('SELECT id, name, width, height, created_at, modified_at, created_by, modified_by FROM c_canvas_sizes ORDER BY width ASC, height ASC, name ASC');
|
||||
const [templates] = await pool.query(`
|
||||
SELECT st.id, st.name, st.canvas_size_id, st.background_image_path, st.background_color, st.created_at, st.modified_at,
|
||||
SELECT st.id, st.name, st.canvas_size_id, st.background_image_path, st.background_color, st.background_gradient, st.created_at, st.modified_at,
|
||||
cs.name AS canvas_size_name, cs.width AS canvas_size_width, cs.height AS canvas_size_height
|
||||
FROM c_templates st
|
||||
LEFT JOIN c_canvas_sizes cs ON cs.id = st.canvas_size_id
|
||||
@@ -112,7 +112,7 @@ async function fetchSlidesPage(pool, page, pageSize, searchTerm, sortKey, sortDi
|
||||
|
||||
async function fetchTemplatesPage(pool, page, pageSize, searchTerm, sortKey, sortDirection) {
|
||||
const paged = await fetchPagedRows(pool, {
|
||||
selectSql: `SELECT st.id, st.name, st.canvas_size_id, st.background_image_path, st.background_color, st.created_at, st.modified_at,
|
||||
selectSql: `SELECT st.id, st.name, st.canvas_size_id, st.background_image_path, st.background_color, st.background_gradient, st.created_at, st.modified_at,
|
||||
cs.name AS canvas_size_name, cs.width AS canvas_size_width, cs.height AS canvas_size_height,
|
||||
(SELECT COUNT(*) FROM c_template_regions str WHERE str.template_id = st.id) AS region_count,
|
||||
(SELECT COUNT(*) FROM c_slides s WHERE s.template_id = st.id) AS slide_count
|
||||
|
||||
@@ -1,55 +1,69 @@
|
||||
const ANNOUNCEMENT_ICON_OPTIONS = [
|
||||
{ value: 'megaphone-fill', label: 'Megaphone' },
|
||||
{ value: 'megaphone', label: 'Megaphone outline' },
|
||||
{ value: 'bell-fill', label: 'Bell' },
|
||||
{ value: 'bell', label: 'Bell outline' },
|
||||
{ value: 'exclamation-triangle-fill', label: 'Warning' },
|
||||
{ value: 'exclamation-triangle', label: 'Warning outline' },
|
||||
{ value: 'info-circle-fill', label: 'Info' },
|
||||
{ value: 'info-circle', label: 'Info outline' },
|
||||
{ value: 'check-circle-fill', label: 'Success' },
|
||||
{ value: 'check-circle', label: 'Success outline' },
|
||||
{ value: 'lightbulb-fill', label: 'Idea' },
|
||||
{ value: 'lightbulb', label: 'Idea outline' },
|
||||
{ value: 'calendar-event-fill', label: 'Calendar' },
|
||||
{ value: 'calendar-event', label: 'Calendar outline' },
|
||||
{ value: 'clock-fill', label: 'Clock' },
|
||||
{ value: 'clock', label: 'Clock outline' },
|
||||
{ value: 'wifi-off', label: 'Wi-Fi Offline' },
|
||||
{ value: 'wifi', label: 'Wi-Fi' },
|
||||
{ value: 'hdd-network', label: 'Network' },
|
||||
{ value: 'hdd-network-fill', label: 'Network fill' },
|
||||
{ value: 'speaker-fill', label: 'Speaker' },
|
||||
{ value: 'speaker', label: 'Speaker outline' },
|
||||
{ value: 'shield-fill', label: 'Shield' },
|
||||
{ value: 'shield', label: 'Shield outline' },
|
||||
{ value: 'collection-play-fill', label: 'Playlist' },
|
||||
{ value: 'collection-play', label: 'Playlist outline' },
|
||||
{ value: 'broadcast', label: 'Broadcast' },
|
||||
{ value: 'broadcast-pin', label: 'Broadcast pin' },
|
||||
{ value: 'plug-fill', label: 'Plug' },
|
||||
{ value: 'plug', label: 'Plug outline' },
|
||||
{ value: 'lightning-charge-fill', label: 'Urgent' },
|
||||
{ value: 'lightning-charge', label: 'Urgent outline' },
|
||||
{ value: 'car-front-fill', label: 'Car Front' },
|
||||
{ value: 'car-front', label: 'Car Front outline' },
|
||||
{ value: 'lamp-fill', label: 'Lamp' },
|
||||
{ value: 'lamp', label: 'Lamp outline' },
|
||||
{ value: 'envelope-fill', label: 'Message' },
|
||||
{ value: 'envelope', label: 'Message outline' },
|
||||
{ value: 'people-fill', label: 'Audience' },
|
||||
{ value: 'people', label: 'Audience outline' },
|
||||
{ value: 'browser-chrome', label: 'Browser Chrome' },
|
||||
{ value: 'browser-edge', label: 'Browser Edge' },
|
||||
{ value: 'browser-firefox', label: 'Browser Firefox' },
|
||||
{ value: 'browser-safari', label: 'Browser Safari' },
|
||||
{ value: 'cone', label: 'Cone' },
|
||||
{ value: 'cone-striped', label: 'Cone striped' },
|
||||
{ value: 'cup-straw', label: 'Cup straw' },
|
||||
{ value: 'fire', label: 'Fire' }
|
||||
const fs = require('fs');
|
||||
const path = require('path');
|
||||
|
||||
const BOOTSTRAP_ICON_CSS_PATH = path.join(__dirname, '..', 'web', 'public', 'adminlte', 'bootstrap-icons', 'css', 'bootstrap-icons.min.css');
|
||||
|
||||
const DEFAULT_ANNOUNCEMENT_ICON_KEYS = [
|
||||
'megaphone-fill', 'megaphone', 'bell-fill', 'bell',
|
||||
'exclamation-triangle-fill', 'exclamation-triangle', 'info-circle-fill', 'info-circle',
|
||||
'check-circle-fill', 'check-circle', 'lightbulb-fill', 'lightbulb',
|
||||
'calendar-event-fill', 'calendar-event', 'clock-fill', 'clock',
|
||||
'wifi-off', 'wifi', 'hdd-network', 'hdd-network-fill',
|
||||
'speaker-fill', 'speaker', 'shield-fill', 'shield',
|
||||
'collection-play-fill', 'collection-play', 'broadcast', 'broadcast-pin',
|
||||
'plug-fill', 'plug', 'lightning-charge-fill', 'lightning-charge',
|
||||
'car-front-fill', 'car-front', 'lamp-fill', 'lamp',
|
||||
'envelope-fill', 'envelope', 'people-fill', 'people',
|
||||
'browser-chrome', 'browser-edge', 'browser-firefox', 'browser-safari',
|
||||
'cone', 'cone-striped', 'cup-straw', 'fire'
|
||||
];
|
||||
|
||||
const ANNOUNCEMENT_ICON_KEYS = ANNOUNCEMENT_ICON_OPTIONS.map(function (option) {
|
||||
function humanizeBootstrapIconLabel(iconKey) {
|
||||
return String(iconKey || '')
|
||||
.trim()
|
||||
.replace(/[-_]+/g, ' ')
|
||||
.replace(/\b\w/g, function (character) {
|
||||
return character.toUpperCase();
|
||||
});
|
||||
}
|
||||
|
||||
function loadBootstrapIconCatalog() {
|
||||
try {
|
||||
const css = fs.readFileSync(BOOTSTRAP_ICON_CSS_PATH, 'utf8');
|
||||
const keys = Array.from(new Set((css.match(/\.bi-([a-z0-9-]+)::?before/g) || []).map(function (match) {
|
||||
return String(match || '')
|
||||
.replace(/^\.bi-/, '')
|
||||
.replace(/::?before$/, '')
|
||||
.trim()
|
||||
.toLowerCase();
|
||||
}).filter(Boolean)));
|
||||
|
||||
return keys.map(function (value) {
|
||||
return {
|
||||
value: value,
|
||||
label: humanizeBootstrapIconLabel(value)
|
||||
};
|
||||
}).sort(function (left, right) {
|
||||
return left.value.localeCompare(right.value);
|
||||
});
|
||||
} catch (_error) {
|
||||
return DEFAULT_ANNOUNCEMENT_ICON_KEYS.map(function (value) {
|
||||
return { value: value, label: humanizeBootstrapIconLabel(value) };
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
const ANNOUNCEMENT_ICON_CATALOG = loadBootstrapIconCatalog();
|
||||
const ANNOUNCEMENT_ICON_OPTIONS = DEFAULT_ANNOUNCEMENT_ICON_KEYS.map(function (value) {
|
||||
const catalogOption = ANNOUNCEMENT_ICON_CATALOG.find(function (option) {
|
||||
return option.value === value;
|
||||
});
|
||||
return catalogOption || { value: value, label: humanizeBootstrapIconLabel(value) };
|
||||
});
|
||||
|
||||
const ANNOUNCEMENT_ICON_KEYS = DEFAULT_ANNOUNCEMENT_ICON_KEYS.slice();
|
||||
|
||||
const ANNOUNCEMENT_ICON_CATALOG_KEYS = ANNOUNCEMENT_ICON_CATALOG.map(function (option) {
|
||||
return option.value;
|
||||
});
|
||||
|
||||
@@ -58,17 +72,27 @@ const ANNOUNCEMENT_ICON_LABELS = ANNOUNCEMENT_ICON_OPTIONS.reduce(function (labe
|
||||
return labels;
|
||||
}, Object.create(null));
|
||||
|
||||
ANNOUNCEMENT_ICON_CATALOG.forEach(function (option) {
|
||||
if (!Object.prototype.hasOwnProperty.call(ANNOUNCEMENT_ICON_LABELS, option.value)) {
|
||||
ANNOUNCEMENT_ICON_LABELS[option.value] = option.label;
|
||||
}
|
||||
});
|
||||
|
||||
const DEFAULT_ANNOUNCEMENT_ICON = 'megaphone-fill';
|
||||
|
||||
function normalizeAnnouncementIcon(value) {
|
||||
const normalized = String(value || '').trim().toLowerCase();
|
||||
return ANNOUNCEMENT_ICON_KEYS.includes(normalized) ? normalized : DEFAULT_ANNOUNCEMENT_ICON;
|
||||
return ANNOUNCEMENT_ICON_CATALOG_KEYS.includes(normalized) ? normalized : DEFAULT_ANNOUNCEMENT_ICON;
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
DEFAULT_ANNOUNCEMENT_ICON_KEYS,
|
||||
ANNOUNCEMENT_ICON_OPTIONS,
|
||||
ANNOUNCEMENT_ICON_KEYS,
|
||||
ANNOUNCEMENT_ICON_CATALOG,
|
||||
ANNOUNCEMENT_ICON_CATALOG_KEYS,
|
||||
ANNOUNCEMENT_ICON_LABELS,
|
||||
DEFAULT_ANNOUNCEMENT_ICON,
|
||||
humanizeBootstrapIconLabel,
|
||||
normalizeAnnouncementIcon
|
||||
};
|
||||
@@ -11,7 +11,11 @@ const { validateMaxLength } = require('./utils');
|
||||
const SHORT_LABEL_MAX_LENGTH = 255;
|
||||
|
||||
const ANNOUNCEMENT_TYPES = ['lower-third', 'fullscreen', 'top-banner'];
|
||||
const ANNOUNCEMENT_COLORS = ['primary', 'secondary', 'success', 'info', 'warning', 'danger', 'dark', 'light'];
|
||||
const ANNOUNCEMENT_COLORS = [
|
||||
'primary', 'secondary', 'success', 'info', 'warning', 'danger', 'dark', 'light',
|
||||
'orange', 'amber', 'olive', 'teal', 'sky', 'indigo', 'violet', 'fuchsia', 'pink',
|
||||
'navy', 'steel', 'slate', 'graphite', 'midnight'
|
||||
];
|
||||
|
||||
function normalizeAnnouncementType(value) {
|
||||
const normalized = String(value || '').trim().toLowerCase();
|
||||
|
||||
+179
-21
@@ -8,6 +8,11 @@ const NAME_MAX_LENGTH = 255;
|
||||
const URL_MAX_LENGTH = 1024;
|
||||
const AUTH_MAX_LENGTH = 255;
|
||||
const ITEMS_PATH_MAX_LENGTH = 255;
|
||||
const REQUEST_BODY_MAX_LENGTH = 1000000;
|
||||
const TOKEN_URL_MAX_LENGTH = 1024;
|
||||
const TOKEN_RESPONSE_PATH_MAX_LENGTH = 255;
|
||||
const TOKEN_HEADER_PREFIX_MAX_LENGTH = 64;
|
||||
const tokenCache = new Map();
|
||||
|
||||
function normalizeUpdateIntervalUnit(value) {
|
||||
const unit = String(value || '').trim().toLowerCase();
|
||||
@@ -19,11 +24,11 @@ function normalizeUpdateIntervalUnit(value) {
|
||||
|
||||
function normalizeAuthMethod(value) {
|
||||
const method = String(value || '').trim().toLowerCase();
|
||||
return ['basic', 'bearer', 'api_key_header'].includes(method) ? method : 'none';
|
||||
return ['basic', 'bearer', 'api_key_header', 'token_login'].includes(method) ? method : 'none';
|
||||
}
|
||||
|
||||
function getItemsPath(source) {
|
||||
return String(source && (source.items_path || source.itemsPath) || '').trim();
|
||||
function normalizeRequestMethod(value) {
|
||||
return String(value || '').trim().toUpperCase() === 'POST' ? 'POST' : 'GET';
|
||||
}
|
||||
|
||||
function buildAuthHeaders(source) {
|
||||
@@ -54,7 +59,7 @@ function buildAuthHeaders(source) {
|
||||
|
||||
async function fetchApiSourcesData(pool) {
|
||||
const [apiSources] = await pool.query(
|
||||
'SELECT id, name, api_url, auth_method, auth_username, auth_password, auth_bearer_token, auth_header_name, auth_header_value, items_path, update_interval_value, update_interval_unit, last_pulled_at, last_pull_error, last_response_status, last_response_content_type, last_response_json, created_at, modified_at, created_by, modified_by FROM i_api_sources ORDER BY modified_at DESC, id DESC'
|
||||
'SELECT id, name, api_url, request_method, request_body_json, auth_method, auth_username, auth_password, auth_bearer_token, auth_header_name, auth_header_value, token_url, token_request_body_json, token_response_path, token_header_name, token_header_prefix, items_path, enabled, update_interval_value, update_interval_unit, last_pulled_at, last_pull_error, last_response_status, last_response_content_type, last_response_json, created_at, modified_at, created_by, modified_by FROM i_api_sources ORDER BY modified_at DESC, id DESC'
|
||||
);
|
||||
|
||||
return { apiSources: apiSources };
|
||||
@@ -62,7 +67,7 @@ async function fetchApiSourcesData(pool) {
|
||||
|
||||
async function fetchApiSourcesPage(pool, page, pageSize, searchTerm, sortKey, sortDirection) {
|
||||
const paged = await fetchPagedRows(pool, {
|
||||
selectSql: 'SELECT id, name, api_url, auth_method, auth_username, auth_password, auth_bearer_token, auth_header_name, auth_header_value, items_path, update_interval_value, update_interval_unit, last_pulled_at, last_pull_error, last_response_status, last_response_content_type, last_response_json, created_at, modified_at, created_by, modified_by FROM i_api_sources ORDER BY modified_at DESC, id DESC',
|
||||
selectSql: 'SELECT id, name, api_url, request_method, request_body_json, auth_method, auth_username, auth_password, auth_bearer_token, auth_header_name, auth_header_value, token_url, token_request_body_json, token_response_path, token_header_name, token_header_prefix, items_path, enabled, update_interval_value, update_interval_unit, last_pulled_at, last_pull_error, last_response_status, last_response_content_type, last_response_json, created_at, modified_at, created_by, modified_by FROM i_api_sources ORDER BY modified_at DESC, id DESC',
|
||||
countSql: 'SELECT COUNT(*) AS count FROM i_api_sources',
|
||||
searchColumns: ['name', 'api_url', 'last_pull_error'],
|
||||
searchTerm: searchTerm,
|
||||
@@ -86,7 +91,7 @@ async function fetchApiSourcesPage(pool, page, pageSize, searchTerm, sortKey, so
|
||||
|
||||
async function fetchApiSourceById(pool, id) {
|
||||
const [rows] = await pool.query(
|
||||
'SELECT id, name, api_url, auth_method, auth_username, auth_password, auth_bearer_token, auth_header_name, auth_header_value, items_path, update_interval_value, update_interval_unit, last_pulled_at, last_pull_error, last_response_status, last_response_content_type, last_response_json, created_at, modified_at, created_by, modified_by FROM i_api_sources WHERE id = ?',
|
||||
'SELECT id, name, api_url, request_method, request_body_json, auth_method, auth_username, auth_password, auth_bearer_token, auth_header_name, auth_header_value, token_url, token_request_body_json, token_response_path, token_header_name, token_header_prefix, items_path, enabled, update_interval_value, update_interval_unit, last_pulled_at, last_pull_error, last_response_status, last_response_content_type, last_response_json, created_at, modified_at, created_by, modified_by FROM i_api_sources WHERE id = ?',
|
||||
[id]
|
||||
);
|
||||
|
||||
@@ -95,13 +100,18 @@ async function fetchApiSourceById(pool, id) {
|
||||
|
||||
async function loadUrlText(urlValue, requestOptions) {
|
||||
const extraHeaders = requestOptions && requestOptions.headers ? requestOptions.headers : {};
|
||||
const method = String(requestOptions && requestOptions.method || 'GET').toUpperCase();
|
||||
const body = requestOptions && requestOptions.body !== undefined ? requestOptions.body : undefined;
|
||||
const headers = Object.assign({
|
||||
Accept: 'application/json, text/plain;q=0.9, */*;q=0.8',
|
||||
'User-Agent': 'Pulse Signage API Reader'
|
||||
}, extraHeaders);
|
||||
if (typeof fetch === 'function') {
|
||||
const response = await fetch(urlValue, {
|
||||
headers: Object.assign({
|
||||
Accept: 'application/json, text/plain;q=0.9, */*;q=0.8',
|
||||
'User-Agent': 'Pulse Signage API Reader'
|
||||
}, extraHeaders)
|
||||
});
|
||||
const fetchOptions = { method: method, headers: headers };
|
||||
if (body !== undefined && method !== 'GET' && method !== 'HEAD') {
|
||||
fetchOptions.body = body;
|
||||
}
|
||||
const response = await fetch(urlValue, fetchOptions);
|
||||
|
||||
return {
|
||||
statusCode: response.status,
|
||||
@@ -114,12 +124,9 @@ async function loadUrlText(urlValue, requestOptions) {
|
||||
return await new Promise(function (resolve, reject) {
|
||||
const url = new URL(urlValue);
|
||||
const transport = url.protocol === 'https:' ? https : http;
|
||||
const requestHeaders = Object.assign({
|
||||
Accept: 'application/json, text/plain;q=0.9, */*;q=0.8',
|
||||
'User-Agent': 'Pulse Signage API Reader'
|
||||
}, extraHeaders);
|
||||
const request = transport.get(url, Object.assign({}, requestOptions || {}, {
|
||||
headers: requestHeaders
|
||||
const request = transport.request(url, Object.assign({}, requestOptions || {}, {
|
||||
method: method,
|
||||
headers: headers
|
||||
}), function (response) {
|
||||
response.setEncoding('utf8');
|
||||
let body = '';
|
||||
@@ -137,15 +144,126 @@ async function loadUrlText(urlValue, requestOptions) {
|
||||
response.on('error', reject);
|
||||
});
|
||||
|
||||
if (body !== undefined && method !== 'GET' && method !== 'HEAD') {
|
||||
request.write(body);
|
||||
}
|
||||
request.end();
|
||||
request.on('error', reject);
|
||||
});
|
||||
}
|
||||
|
||||
function parseJsonRequestBody(value, fieldName) {
|
||||
const text = String(value || '').trim();
|
||||
if (!text) {
|
||||
return undefined;
|
||||
}
|
||||
try {
|
||||
return JSON.parse(text);
|
||||
} catch (_error) {
|
||||
const error = new Error(fieldName + ' must contain valid JSON.');
|
||||
error.statusCode = 400;
|
||||
throw error;
|
||||
}
|
||||
}
|
||||
|
||||
function resolveResponsePath(value, responsePath) {
|
||||
let current = value;
|
||||
String(responsePath || '').split('.').forEach(function (segment) {
|
||||
if (current === undefined || current === null) {
|
||||
current = undefined;
|
||||
return;
|
||||
}
|
||||
current = current[segment];
|
||||
});
|
||||
return current;
|
||||
}
|
||||
|
||||
function getTokenCacheKey(source) {
|
||||
return JSON.stringify([
|
||||
source && source.id || '',
|
||||
source && (source.token_url || source.tokenUrl) || '',
|
||||
source && (source.token_request_body_json || source.tokenRequestBodyJson) || '',
|
||||
source && (source.token_response_path || source.tokenResponsePath) || 'access_token',
|
||||
source && (source.token_header_name || source.tokenHeaderName) || 'Authorization',
|
||||
source && (source.token_header_prefix || source.tokenHeaderPrefix) || 'Bearer'
|
||||
]);
|
||||
}
|
||||
|
||||
function clearCachedToken(source) {
|
||||
tokenCache.delete(getTokenCacheKey(source));
|
||||
}
|
||||
|
||||
async function fetchLoginToken(source) {
|
||||
const cacheKey = getTokenCacheKey(source);
|
||||
const cached = tokenCache.get(cacheKey);
|
||||
if (cached && cached.expiresAt > Date.now()) {
|
||||
return cached.value;
|
||||
}
|
||||
|
||||
const tokenUrl = source.token_url || source.tokenUrl;
|
||||
const tokenBody = parseJsonRequestBody(source.token_request_body_json || source.tokenRequestBodyJson, 'Login request body');
|
||||
const tokenHeaders = { 'Content-Type': 'application/json' };
|
||||
const response = await loadUrlText(tokenUrl, {
|
||||
method: 'POST',
|
||||
headers: tokenHeaders,
|
||||
body: tokenBody === undefined ? undefined : JSON.stringify(tokenBody)
|
||||
});
|
||||
if (!response.ok) {
|
||||
throw new Error(`Unable to obtain API token (${response.statusCode}).`);
|
||||
}
|
||||
|
||||
let parsed;
|
||||
try {
|
||||
parsed = JSON.parse(String(response.bodyText || '').trim());
|
||||
} catch (_error) {
|
||||
throw new Error('Token response was not valid JSON.');
|
||||
}
|
||||
|
||||
const tokenPath = source.token_response_path || source.tokenResponsePath || 'access_token';
|
||||
const token = resolveResponsePath(parsed, tokenPath);
|
||||
if (token === undefined || token === null || String(token).trim() === '') {
|
||||
throw new Error('Token response did not contain a token at the configured path.');
|
||||
}
|
||||
|
||||
const expiresIn = Number(parsed && (parsed.expires_in || parsed.expiresIn));
|
||||
const lifetimeMs = Number.isFinite(expiresIn) && expiresIn > 0
|
||||
? Math.max(30000, expiresIn * 1000 - 60000)
|
||||
: 300000;
|
||||
tokenCache.set(cacheKey, { value: String(token), expiresAt: Date.now() + lifetimeMs });
|
||||
return String(token);
|
||||
}
|
||||
|
||||
async function buildRequestHeaders(source) {
|
||||
const method = normalizeAuthMethod(source && (source.auth_method || source.authMethod));
|
||||
if (method !== 'token_login') {
|
||||
return buildAuthHeaders(source);
|
||||
}
|
||||
|
||||
const token = await fetchLoginToken(source);
|
||||
const headerName = String(source.token_header_name || source.tokenHeaderName || 'Authorization').trim() || 'Authorization';
|
||||
const prefix = String(source.token_header_prefix || source.tokenHeaderPrefix || 'Bearer').trim();
|
||||
return { [headerName]: prefix ? prefix + ' ' + token : token };
|
||||
}
|
||||
|
||||
async function fetchApiSourceResponse(apiSource) {
|
||||
const source = apiSource && typeof apiSource === 'object' ? apiSource : { api_url: apiSource };
|
||||
const response = await loadUrlText(source.api_url, {
|
||||
headers: buildAuthHeaders(source)
|
||||
});
|
||||
const requestMethod = normalizeRequestMethod(source.request_method || source.requestMethod);
|
||||
const requestBody = parseJsonRequestBody(source.request_body_json || source.requestBodyJson, 'API request body');
|
||||
let response;
|
||||
let tokenRetry = false;
|
||||
do {
|
||||
response = await loadUrlText(source.api_url || source.apiUrl, {
|
||||
method: requestMethod,
|
||||
headers: Object.assign({}, await buildRequestHeaders(source), requestBody === undefined ? {} : { 'Content-Type': 'application/json' }),
|
||||
body: requestBody === undefined ? undefined : JSON.stringify(requestBody)
|
||||
});
|
||||
if (response.statusCode === 401 && normalizeAuthMethod(source.auth_method || source.authMethod) === 'token_login' && !tokenRetry) {
|
||||
clearCachedToken(source);
|
||||
tokenRetry = true;
|
||||
} else {
|
||||
break;
|
||||
}
|
||||
} while (true);
|
||||
if (!response.ok) {
|
||||
throw new Error(`Unable to load API response (${response.statusCode}).`);
|
||||
}
|
||||
@@ -182,11 +300,18 @@ function buildApiSourcePayload(req, existingApiSource) {
|
||||
const name = validateMaxLength(req.body.name || fallback.name || '', NAME_MAX_LENGTH, 'API source name');
|
||||
const apiUrl = validateMaxLength(req.body.api_url || req.body.apiUrl || fallback.api_url || '', URL_MAX_LENGTH, 'API source URL');
|
||||
const authMethod = normalizeAuthMethod(readBodyValue('auth_method', readBodyValue('authMethod', fallback.auth_method || 'none')));
|
||||
const requestMethod = normalizeRequestMethod(readBodyValue('request_method', readBodyValue('requestMethod', fallback.request_method || 'GET')));
|
||||
const requestBodyJson = validateMaxLength(readBodyValue('request_body_json', readBodyValue('requestBodyJson', fallback.request_body_json || '')) || '', REQUEST_BODY_MAX_LENGTH, 'API request body');
|
||||
const authUsername = validateMaxLength(readBodyValue('auth_username', readBodyValue('authUsername', fallback.auth_username || '')) || '', AUTH_MAX_LENGTH, 'API source username');
|
||||
const authPassword = validateMaxLength(readBodyValue('auth_password', readBodyValue('authPassword', fallback.auth_password || '')) || '', AUTH_MAX_LENGTH, 'API source password');
|
||||
const authBearerToken = validateMaxLength(readBodyValue('auth_bearer_token', readBodyValue('authBearerToken', fallback.auth_bearer_token || '')) || '', AUTH_MAX_LENGTH, 'API source bearer token');
|
||||
const authHeaderName = validateMaxLength(readBodyValue('auth_header_name', readBodyValue('authHeaderName', fallback.auth_header_name || 'X-API-Key')) || 'X-API-Key', AUTH_MAX_LENGTH, 'API source header name') || 'X-API-Key';
|
||||
const authHeaderValue = validateMaxLength(readBodyValue('auth_header_value', readBodyValue('authHeaderValue', fallback.auth_header_value || '')) || '', AUTH_MAX_LENGTH, 'API source header value');
|
||||
const tokenUrl = validateMaxLength(readBodyValue('token_url', readBodyValue('tokenUrl', fallback.token_url || '')) || '', TOKEN_URL_MAX_LENGTH, 'API token URL');
|
||||
const tokenRequestBodyJson = validateMaxLength(readBodyValue('token_request_body_json', readBodyValue('tokenRequestBodyJson', fallback.token_request_body_json || '')) || '', REQUEST_BODY_MAX_LENGTH, 'Login request body');
|
||||
const tokenResponsePath = validateMaxLength(readBodyValue('token_response_path', readBodyValue('tokenResponsePath', fallback.token_response_path || 'access_token')) || 'access_token', TOKEN_RESPONSE_PATH_MAX_LENGTH, 'Token response path');
|
||||
const tokenHeaderName = validateMaxLength(readBodyValue('token_header_name', readBodyValue('tokenHeaderName', fallback.token_header_name || 'Authorization')) || 'Authorization', AUTH_MAX_LENGTH, 'Token header name');
|
||||
const tokenHeaderPrefix = validateMaxLength(readBodyValue('token_header_prefix', readBodyValue('tokenHeaderPrefix', fallback.token_header_prefix || 'Bearer')) || '', TOKEN_HEADER_PREFIX_MAX_LENGTH, 'Token prefix');
|
||||
const itemsPath = validateMaxLength(readBodyValue('items_path', readBodyValue('itemsPath', fallback.items_path || '')) || '', ITEMS_PATH_MAX_LENGTH, 'API source items path');
|
||||
const updateIntervalValue = Math.max(1, Number(req.body.update_interval_value || req.body.updateIntervalValue || fallback.update_interval_value || 60));
|
||||
const updateIntervalUnit = normalizeUpdateIntervalUnit(req.body.update_interval_unit || req.body.updateIntervalUnit || fallback.update_interval_unit || 'minutes');
|
||||
@@ -242,15 +367,48 @@ function buildApiSourcePayload(req, existingApiSource) {
|
||||
throw error;
|
||||
}
|
||||
|
||||
parseJsonRequestBody(requestBodyJson, 'API request body');
|
||||
parseJsonRequestBody(tokenRequestBodyJson, 'Login request body');
|
||||
|
||||
if (authMethod === 'token_login') {
|
||||
if (!tokenUrl) {
|
||||
const error = new Error('Token login requires a login URL.');
|
||||
error.statusCode = 400;
|
||||
throw error;
|
||||
}
|
||||
try {
|
||||
const tokenParsedUrl = new URL(tokenUrl);
|
||||
if (tokenParsedUrl.protocol !== 'http:' && tokenParsedUrl.protocol !== 'https:') {
|
||||
throw new Error('invalid protocol');
|
||||
}
|
||||
} catch (_error) {
|
||||
const error = new Error('Enter a valid API token URL.');
|
||||
error.statusCode = 400;
|
||||
throw error;
|
||||
}
|
||||
if (!tokenRequestBodyJson) {
|
||||
const error = new Error('Token login requires a JSON request body.');
|
||||
error.statusCode = 400;
|
||||
throw error;
|
||||
}
|
||||
}
|
||||
|
||||
return {
|
||||
name: name,
|
||||
apiUrl: parsedUrl.toString(),
|
||||
requestMethod: requestMethod,
|
||||
requestBodyJson: requestBodyJson,
|
||||
authMethod: authMethod,
|
||||
authUsername: authUsername,
|
||||
authPassword: authPassword,
|
||||
authBearerToken: authBearerToken,
|
||||
authHeaderName: authHeaderName,
|
||||
authHeaderValue: authHeaderValue,
|
||||
tokenUrl: tokenUrl,
|
||||
tokenRequestBodyJson: tokenRequestBodyJson,
|
||||
tokenResponsePath: tokenResponsePath,
|
||||
tokenHeaderName: tokenHeaderName,
|
||||
tokenHeaderPrefix: tokenHeaderPrefix,
|
||||
itemsPath: itemsPath,
|
||||
updateIntervalValue: Math.floor(updateIntervalValue),
|
||||
updateIntervalUnit: updateIntervalUnit
|
||||
|
||||
@@ -0,0 +1,209 @@
|
||||
const { DEFAULT_ANNOUNCEMENT_ICON_KEYS } = require('./announcement-icons');
|
||||
|
||||
const SETTING_DEFINITIONS = [
|
||||
{ key: 'app.name', type: 'string', defaultValue: 'Pulse Signage' },
|
||||
{ key: 'locale.timezone', type: 'string', defaultValue: 'Europe/London' },
|
||||
{ key: 'locale.language', type: 'string', defaultValue: 'en' },
|
||||
{ key: 'ui.theme', type: 'enum', values: ['dark', 'light', 'auto'], defaultValue: 'dark' },
|
||||
{ key: 'security.session_lifetime_days', type: 'integer', min: 1, defaultValue: 14 },
|
||||
{ key: 'security.allow_user_session_revocation', type: 'boolean', defaultValue: true },
|
||||
{ key: 'security.max_active_sessions', type: 'integer', min: 0, defaultValue: 0 },
|
||||
{ key: 'security.password_min_length', type: 'integer', min: 8, defaultValue: 10 },
|
||||
{ key: 'security.password_min_categories', type: 'integer', min: 1, defaultValue: 3 },
|
||||
{ key: 'security.password_require_lowercase', type: 'boolean', defaultValue: false },
|
||||
{ key: 'security.password_require_uppercase', type: 'boolean', defaultValue: false },
|
||||
{ key: 'security.password_require_number', type: 'boolean', defaultValue: false },
|
||||
{ key: 'security.password_require_symbol', type: 'boolean', defaultValue: false },
|
||||
{ key: 'security.require_password_change_for_new_users', type: 'boolean', defaultValue: true },
|
||||
{ key: 'security.require_password_change_after_admin_reset', type: 'boolean', defaultValue: true },
|
||||
{ key: 'security.login_max_attempts', type: 'integer', min: 1, defaultValue: 5 },
|
||||
{ key: 'security.login_lockout_minutes', type: 'integer', min: 1, defaultValue: 15 },
|
||||
{ key: 'security.login_rate_limit_scope', type: 'enum', values: ['both', 'username', 'ip'], defaultValue: 'both' },
|
||||
{ key: 'audit.enabled', type: 'boolean', defaultValue: true },
|
||||
{ key: 'audit.categories', type: 'string_array', defaultValue: ['authentication', 'security', 'sessions', 'users', 'roles', 'system-settings'] },
|
||||
{ key: 'audit.include_request_metadata', type: 'boolean', defaultValue: true },
|
||||
{ key: 'audit.retention_days', type: 'integer', min: 0, defaultValue: 180 },
|
||||
{ key: 'uploads.image_max_bytes', type: 'integer', min: 1, defaultValue: 100 * 1024 * 1024 },
|
||||
{ key: 'uploads.video_max_bytes', type: 'integer', min: 1, defaultValue: 1024 * 1024 * 1024 },
|
||||
{ key: 'uploads.wysiwyg_image_max_bytes', type: 'integer', min: 1, defaultValue: 2 * 1024 * 1024 },
|
||||
{ key: 'uploads.allowed_mime_types', type: 'string_array', defaultValue: ['image/png', 'image/jpeg', 'image/gif', 'image/webp', 'image/svg+xml', 'video/mp4', 'video/webm', 'video/ogg'] },
|
||||
{ key: 'uploads.cleanup_days', type: 'integer', min: 0, defaultValue: 30 },
|
||||
{ key: 'uploads.optimize_images', type: 'boolean', defaultValue: true },
|
||||
{ key: 'announcements.default_icon', type: 'string', defaultValue: 'megaphone-fill' },
|
||||
{ key: 'announcements.default_duration_value', type: 'integer', min: 1, defaultValue: 10 },
|
||||
{ key: 'announcements.default_duration_unit', type: 'enum', values: ['seconds', 'minutes'], defaultValue: 'seconds' },
|
||||
{ key: 'announcements.suggested_icons', type: 'string_array', defaultValue: DEFAULT_ANNOUNCEMENT_ICON_KEYS.slice() },
|
||||
{ key: 'player.default_slide_duration_seconds', type: 'integer', min: 1, defaultValue: 10 },
|
||||
{ key: 'player.default_fade_between_slides', type: 'boolean', defaultValue: true },
|
||||
{ key: 'player.skip_unavailable_rtmp', type: 'boolean', defaultValue: true }
|
||||
,{ key: 'data-sources.rss_default_interval_value', type: 'integer', min: 1, defaultValue: 60 }
|
||||
,{ key: 'data-sources.rss_default_interval_unit', type: 'enum', values: ['seconds', 'minutes', 'hours'], defaultValue: 'minutes' }
|
||||
,{ key: 'data-sources.api_default_interval_value', type: 'integer', min: 1, defaultValue: 60 }
|
||||
,{ key: 'data-sources.api_default_interval_unit', type: 'enum', values: ['seconds', 'minutes', 'hours'], defaultValue: 'minutes' }
|
||||
,{ key: 'weather.open_meteo_api_key', type: 'string', defaultValue: '' }
|
||||
,{ key: 'weather.pirate_weather_api_key', type: 'string', defaultValue: '' }
|
||||
];
|
||||
|
||||
const DEFINITIONS_BY_KEY = new Map(SETTING_DEFINITIONS.map(function (definition) {
|
||||
return [definition.key, definition];
|
||||
}));
|
||||
|
||||
function cloneValue(value) {
|
||||
if (Array.isArray(value)) {
|
||||
return value.slice();
|
||||
}
|
||||
return value;
|
||||
}
|
||||
|
||||
function getAppSettingDefinitions() {
|
||||
return SETTING_DEFINITIONS.map(function (definition) {
|
||||
return Object.assign({}, definition, {
|
||||
values: definition.values ? definition.values.slice() : undefined,
|
||||
defaultValue: cloneValue(definition.defaultValue)
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
function getDefaultAppSettings() {
|
||||
return SETTING_DEFINITIONS.reduce(function (settings, definition) {
|
||||
settings[definition.key] = cloneValue(definition.defaultValue);
|
||||
return settings;
|
||||
}, {});
|
||||
}
|
||||
|
||||
function normalizeSettingValue(key, value) {
|
||||
const definition = DEFINITIONS_BY_KEY.get(String(key || '').trim());
|
||||
if (!definition) {
|
||||
throw new Error('Unknown application setting: ' + key);
|
||||
}
|
||||
|
||||
if (definition.type === 'string') {
|
||||
return String(value == null ? '' : value).trim();
|
||||
}
|
||||
|
||||
if (definition.type === 'integer') {
|
||||
const normalized = Number(value);
|
||||
if (!Number.isInteger(normalized) || normalized < definition.min) {
|
||||
throw new Error('Invalid value for application setting: ' + definition.key);
|
||||
}
|
||||
return normalized;
|
||||
}
|
||||
|
||||
if (definition.type === 'boolean') {
|
||||
if (value === true || value === 1 || value === '1' || value === 'true') {
|
||||
return true;
|
||||
}
|
||||
if (value === false || value === 0 || value === '0' || value === 'false') {
|
||||
return false;
|
||||
}
|
||||
throw new Error('Invalid value for application setting: ' + definition.key);
|
||||
}
|
||||
|
||||
if (definition.type === 'enum') {
|
||||
const normalized = String(value == null ? '' : value).trim();
|
||||
if (!definition.values.includes(normalized)) {
|
||||
throw new Error('Invalid value for application setting: ' + definition.key);
|
||||
}
|
||||
return normalized;
|
||||
}
|
||||
|
||||
if (definition.type === 'string_array') {
|
||||
if (!Array.isArray(value)) {
|
||||
throw new Error('Invalid value for application setting: ' + definition.key);
|
||||
}
|
||||
return Array.from(new Set(value.map(function (item) {
|
||||
return String(item || '').trim();
|
||||
}).filter(Boolean)));
|
||||
}
|
||||
|
||||
throw new Error('Unsupported application setting type: ' + definition.type);
|
||||
}
|
||||
|
||||
function normalizeAppSettings(settings) {
|
||||
const input = settings && typeof settings === 'object' ? settings : {};
|
||||
return SETTING_DEFINITIONS.reduce(function (normalized, definition) {
|
||||
const value = Object.prototype.hasOwnProperty.call(input, definition.key)
|
||||
? input[definition.key]
|
||||
: definition.defaultValue;
|
||||
normalized[definition.key] = normalizeSettingValue(definition.key, value);
|
||||
return normalized;
|
||||
}, {});
|
||||
}
|
||||
|
||||
function parseStoredValue(value) {
|
||||
if (typeof value !== 'string') {
|
||||
return value;
|
||||
}
|
||||
try {
|
||||
return JSON.parse(value);
|
||||
} catch (_error) {
|
||||
return value;
|
||||
}
|
||||
}
|
||||
|
||||
async function fetchAppSettings(pool) {
|
||||
const [rows] = await pool.query('SELECT id, setting_key, setting_value FROM o_app_settings ORDER BY setting_key');
|
||||
const storedSettings = {};
|
||||
(rows || []).forEach(function (row) {
|
||||
const key = String(row && row.setting_key || '').trim();
|
||||
if (DEFINITIONS_BY_KEY.has(key)) {
|
||||
storedSettings[key] = parseStoredValue(row.setting_value);
|
||||
}
|
||||
});
|
||||
return normalizeAppSettings(Object.assign({}, getDefaultAppSettings(), storedSettings));
|
||||
}
|
||||
|
||||
async function saveAppSettings(pool, settings, modifiedBy) {
|
||||
const inputSettings = settings && typeof settings === 'object' ? settings : {};
|
||||
const normalizedSettings = normalizeAppSettings(inputSettings);
|
||||
const connection = typeof pool.getConnection === 'function' ? await pool.getConnection() : pool;
|
||||
const shouldRelease = connection !== pool;
|
||||
|
||||
try {
|
||||
if (typeof connection.beginTransaction === 'function') {
|
||||
await connection.beginTransaction();
|
||||
}
|
||||
for (const definition of SETTING_DEFINITIONS) {
|
||||
if (!Object.prototype.hasOwnProperty.call(inputSettings, definition.key)) {
|
||||
continue;
|
||||
}
|
||||
await connection.query(
|
||||
`UPDATE o_app_settings
|
||||
SET setting_value = ?, modified_by = ?
|
||||
WHERE setting_key = ?`,
|
||||
[JSON.stringify(normalizedSettings[definition.key]), modifiedBy || null, definition.key]
|
||||
);
|
||||
await connection.query(
|
||||
`INSERT INTO o_app_settings (setting_key, setting_value, created_by, modified_by)
|
||||
SELECT ?, ?, ?, ?
|
||||
WHERE NOT EXISTS (
|
||||
SELECT 1 FROM o_app_settings WHERE setting_key = ?
|
||||
)`,
|
||||
[definition.key, JSON.stringify(normalizedSettings[definition.key]), modifiedBy || null, modifiedBy || null, definition.key]
|
||||
);
|
||||
}
|
||||
if (typeof connection.commit === 'function') {
|
||||
await connection.commit();
|
||||
}
|
||||
} catch (error) {
|
||||
if (typeof connection.rollback === 'function') {
|
||||
await connection.rollback();
|
||||
}
|
||||
throw error;
|
||||
} finally {
|
||||
if (shouldRelease && typeof connection.release === 'function') {
|
||||
connection.release();
|
||||
}
|
||||
}
|
||||
|
||||
return normalizedSettings;
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
getAppSettingDefinitions,
|
||||
getDefaultAppSettings,
|
||||
normalizeSettingValue,
|
||||
normalizeAppSettings,
|
||||
fetchAppSettings,
|
||||
saveAppSettings
|
||||
};
|
||||
@@ -0,0 +1,118 @@
|
||||
const AUDIT_EVENT_CATEGORIES = Object.freeze({
|
||||
AUTHENTICATION: 'authentication',
|
||||
SECURITY: 'security',
|
||||
SESSIONS: 'sessions',
|
||||
USERS: 'users',
|
||||
ROLES: 'roles',
|
||||
SETTINGS: 'system-settings',
|
||||
SLIDES: 'slides',
|
||||
TEMPLATES: 'templates',
|
||||
PLAYLISTS: 'playlists',
|
||||
SCREENS: 'screens',
|
||||
ANNOUNCEMENTS: 'announcements',
|
||||
CANVAS_SIZES: 'canvas-sizes',
|
||||
API_SOURCES: 'api-sources',
|
||||
RSS_FEEDS: 'rss-feeds',
|
||||
TIMETABLES: 'timetables'
|
||||
});
|
||||
const AUDIT_CATEGORY_KEYS = Object.freeze(Object.values(AUDIT_EVENT_CATEGORIES));
|
||||
const AUDIT_CATEGORY_LABELS = Object.freeze({
|
||||
authentication: 'Authentication',
|
||||
security: 'Security',
|
||||
sessions: 'Sessions',
|
||||
users: 'Users',
|
||||
roles: 'Roles',
|
||||
'system-settings': 'System Settings',
|
||||
slides: 'Slides',
|
||||
templates: 'Templates',
|
||||
playlists: 'Playlists',
|
||||
screens: 'Screens',
|
||||
announcements: 'Announcements',
|
||||
'canvas-sizes': 'Canvas Sizes',
|
||||
'api-sources': 'API Sources',
|
||||
'rss-feeds': 'RSS Feeds',
|
||||
timetables: 'Timetables'
|
||||
});
|
||||
const { fetchAppSettings } = require('./app-settings');
|
||||
|
||||
function normalizeDetails(details) {
|
||||
if (details === undefined || details === null) {
|
||||
return null;
|
||||
}
|
||||
return JSON.stringify(details);
|
||||
}
|
||||
|
||||
function buildAuditChanges(previousValues, nextValues) {
|
||||
const previous = previousValues && typeof previousValues === 'object' ? previousValues : {};
|
||||
const next = nextValues && typeof nextValues === 'object' ? nextValues : {};
|
||||
const changes = {};
|
||||
const keys = new Set(Object.keys(previous).concat(Object.keys(next)));
|
||||
|
||||
keys.forEach(function (key) {
|
||||
if (JSON.stringify(previous[key]) !== JSON.stringify(next[key])) {
|
||||
changes[key] = { from: previous[key], to: next[key] };
|
||||
}
|
||||
});
|
||||
|
||||
return changes;
|
||||
}
|
||||
|
||||
function getRequestMetadata(req) {
|
||||
const forwardedAddress = String(req && req.headers && req.headers['x-forwarded-for'] || '').split(',')[0].trim();
|
||||
return {
|
||||
ipAddress: forwardedAddress || String(req && req.ip || req && req.socket && req.socket.remoteAddress || '').trim() || null,
|
||||
userAgent: String(req && req.headers && req.headers['user-agent'] || '').trim() || null
|
||||
};
|
||||
}
|
||||
|
||||
async function recordAuditEvent(pool, event) {
|
||||
const input = event && typeof event === 'object' ? event : {};
|
||||
const category = String(input.category || '').trim().toLowerCase();
|
||||
const eventType = String(input.eventType || '').trim().toLowerCase();
|
||||
if (!category || !eventType) {
|
||||
throw new Error('Audit events require a category and event type.');
|
||||
}
|
||||
|
||||
await pool.query(
|
||||
`INSERT INTO o_audit_events
|
||||
(category, event_type, actor_user_id, target_type, target_id, target_label, ip_address, user_agent, details_json)
|
||||
VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)`,
|
||||
[
|
||||
category,
|
||||
eventType,
|
||||
Number.isInteger(Number(input.actorUserId)) && Number(input.actorUserId) > 0 ? Number(input.actorUserId) : null,
|
||||
String(input.targetType || '').trim() || null,
|
||||
String(input.targetId || '').trim() || null,
|
||||
String(input.targetLabel || '').trim() || null,
|
||||
String(input.ipAddress || '').trim() || null,
|
||||
String(input.userAgent || '').trim() || null,
|
||||
normalizeDetails(input.details)
|
||||
]
|
||||
);
|
||||
}
|
||||
|
||||
async function recordRequestAuditEvent(pool, req, event) {
|
||||
try {
|
||||
const settings = await fetchAppSettings(pool);
|
||||
const category = String(event && event.category || '').trim().toLowerCase();
|
||||
const enabledCategories = Array.isArray(settings['audit.categories']) ? settings['audit.categories'] : AUDIT_CATEGORY_KEYS;
|
||||
if (!settings['audit.enabled'] || !enabledCategories.includes(category)) {
|
||||
return;
|
||||
}
|
||||
const metadata = settings['audit.include_request_metadata'] ? getRequestMetadata(req) : {};
|
||||
await recordAuditEvent(pool, Object.assign({}, event, metadata));
|
||||
} catch (error) {
|
||||
// Auditing must not turn a successful login or administration action into a failed request.
|
||||
console.error('Unable to record audit event:', error.message);
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
AUDIT_EVENT_CATEGORIES,
|
||||
AUDIT_CATEGORY_KEYS,
|
||||
AUDIT_CATEGORY_LABELS,
|
||||
getRequestMetadata,
|
||||
buildAuditChanges,
|
||||
recordAuditEvent,
|
||||
recordRequestAuditEvent
|
||||
};
|
||||
@@ -7,6 +7,7 @@ const { fetchPlaylistById } = require('./playlists');
|
||||
const { normalizeDisplayMode, fetchTimetablesData, fetchTimetableGroupsPage, fetchTimetableGroupById, fetchTimetableEntriesByGroupId, buildTimetableGroupPayload } = require('./timetables');
|
||||
const { fetchApiSourcesData, fetchApiSourcesPage, fetchApiSourceById, fetchApiSourceResponse, buildApiSourcePayload } = require('./api-sources');
|
||||
const { fetchRssFeedsData, fetchRssFeedsPage, fetchRssFeedById, fetchRssFeedItemsByFeedId, normalizeRssFeedItem, buildRssFeedPayload, fetchRssFeedItems, replaceRssFeedItems } = require('./rss-feeds');
|
||||
const { fetchWeatherLocationsData, fetchWeatherLocationsPage, fetchWeatherLocationById, fetchWeatherLocationSuggestions, fetchWeatherLocationForecast, buildWeatherLocationPayload } = require('./weather');
|
||||
const { slugify, uniqueScreenSlug, fetchScreenById, fetchScreenEditData, fetchScreenPlayerUrls, fetchPlayerPublicBaseUrl, fetchScreenPlayerRecord, fetchPlayerRecordByIdentifier } = require('./screens');
|
||||
const { fetchPlayerRegistrations } = require('./player-registry');
|
||||
const { fetchTemplateById, fetchTemplatesData, extractTemplateRegions, buildTemplatePayload } = require('./templates');
|
||||
@@ -59,6 +60,12 @@ module.exports = {
|
||||
buildRssFeedPayload,
|
||||
fetchRssFeedItems,
|
||||
replaceRssFeedItems,
|
||||
fetchWeatherLocationsData,
|
||||
fetchWeatherLocationsPage,
|
||||
fetchWeatherLocationById,
|
||||
fetchWeatherLocationSuggestions,
|
||||
fetchWeatherLocationForecast,
|
||||
buildWeatherLocationPayload,
|
||||
fetchScreenById,
|
||||
fetchScreenEditData,
|
||||
fetchScreenPlayerUrls,
|
||||
|
||||
+25
-14
@@ -92,15 +92,19 @@ async function upsertPlayerRegistration(pool, options) {
|
||||
return null;
|
||||
}
|
||||
|
||||
await pool.query(
|
||||
`UPDATE d_players
|
||||
SET public_base_url = ?, internal_base_url = ?, last_seen_at = CURRENT_TIMESTAMP, modified_at = CURRENT_TIMESTAMP
|
||||
WHERE identifier = ?`,
|
||||
[publicBaseUrl || null, internalBaseUrl || null, identifier]
|
||||
);
|
||||
await pool.query(
|
||||
`INSERT INTO d_players (identifier, public_base_url, internal_base_url, last_seen_at)
|
||||
VALUES (?, ?, ?, CURRENT_TIMESTAMP)
|
||||
ON DUPLICATE KEY UPDATE
|
||||
public_base_url = VALUES(public_base_url),
|
||||
internal_base_url = VALUES(internal_base_url),
|
||||
last_seen_at = CURRENT_TIMESTAMP,
|
||||
modified_at = CURRENT_TIMESTAMP`,
|
||||
[identifier, publicBaseUrl || null, internalBaseUrl || null]
|
||||
SELECT ?, ?, ?, CURRENT_TIMESTAMP
|
||||
WHERE NOT EXISTS (
|
||||
SELECT 1 FROM d_players WHERE identifier = ?
|
||||
)`,
|
||||
[identifier, publicBaseUrl || null, internalBaseUrl || null, identifier]
|
||||
);
|
||||
|
||||
return resolvePlayerRegistration(pool, identifier);
|
||||
@@ -115,15 +119,22 @@ async function recordPlayerHeartbeat(pool, options) {
|
||||
return null;
|
||||
}
|
||||
|
||||
await pool.query(
|
||||
`UPDATE d_players
|
||||
SET public_base_url = COALESCE(?, public_base_url),
|
||||
internal_base_url = COALESCE(?, internal_base_url),
|
||||
last_seen_at = CURRENT_TIMESTAMP,
|
||||
modified_at = CURRENT_TIMESTAMP
|
||||
WHERE identifier = ?`,
|
||||
[publicBaseUrl || null, internalBaseUrl || null, identifier]
|
||||
);
|
||||
await pool.query(
|
||||
`INSERT INTO d_players (identifier, public_base_url, internal_base_url, last_seen_at)
|
||||
VALUES (?, ?, ?, CURRENT_TIMESTAMP)
|
||||
ON DUPLICATE KEY UPDATE
|
||||
public_base_url = COALESCE(VALUES(public_base_url), public_base_url),
|
||||
internal_base_url = COALESCE(VALUES(internal_base_url), internal_base_url),
|
||||
last_seen_at = CURRENT_TIMESTAMP,
|
||||
modified_at = CURRENT_TIMESTAMP`,
|
||||
[identifier, publicBaseUrl || null, internalBaseUrl || null]
|
||||
SELECT ?, ?, ?, CURRENT_TIMESTAMP
|
||||
WHERE NOT EXISTS (
|
||||
SELECT 1 FROM d_players WHERE identifier = ?
|
||||
)`,
|
||||
[identifier, publicBaseUrl || null, internalBaseUrl || null, identifier]
|
||||
);
|
||||
|
||||
return resolvePlayerRegistration(pool, identifier);
|
||||
|
||||
@@ -1,17 +1,6 @@
|
||||
const fs = require('fs');
|
||||
const path = require('path');
|
||||
const QRCodeStyling = require(path.join(__dirname, '..', 'web', 'public', 'vendor', 'qr-code-styling', 'qr-code-styling.js'));
|
||||
const QR_PNG_WIDTH = 2048;
|
||||
const QR_STYLING_SCRIPT_PATH = path.join(__dirname, '..', 'web', 'public', 'vendor', 'qr-code-styling', 'qr-code-styling.js');
|
||||
const SYSTEM_CHROMIUM_PATHS = [
|
||||
process.env.PUPPETEER_EXECUTABLE_PATH,
|
||||
process.env.CHROMIUM_PATH,
|
||||
'/usr/bin/chromium',
|
||||
'/usr/bin/chromium-browser',
|
||||
'/usr/local/bin/chromium',
|
||||
'/snap/bin/chromium'
|
||||
].filter(Boolean);
|
||||
let qrBrowserPromise = null;
|
||||
|
||||
function escapeXml(value) {
|
||||
return String(value === undefined || value === null ? '' : value).replace(/[&<>"']/g, function (character) {
|
||||
@@ -340,81 +329,6 @@ function buildQrStylingOptions(source) {
|
||||
};
|
||||
}
|
||||
|
||||
function getQrBrowser() {
|
||||
if (qrBrowserPromise) {
|
||||
return qrBrowserPromise;
|
||||
}
|
||||
|
||||
qrBrowserPromise = (async function () {
|
||||
const puppeteer = require('puppeteer-core');
|
||||
const chromiumModule = require('@sparticuz/chromium');
|
||||
const chromium = chromiumModule && typeof chromiumModule.executablePath === 'function'
|
||||
? chromiumModule
|
||||
: chromiumModule && chromiumModule.default && typeof chromiumModule.default.executablePath === 'function'
|
||||
? chromiumModule.default
|
||||
: chromiumModule;
|
||||
let executablePath = SYSTEM_CHROMIUM_PATHS.find(function (candidate) {
|
||||
return fs.existsSync(candidate);
|
||||
}) || '';
|
||||
const usingSystemChromium = Boolean(executablePath);
|
||||
|
||||
if (!executablePath && chromium && typeof chromium.executablePath === 'function') {
|
||||
executablePath = await chromium.executablePath();
|
||||
}
|
||||
|
||||
if (!executablePath || !fs.existsSync(executablePath)) {
|
||||
throw new Error('Chromium executable was not found.');
|
||||
}
|
||||
|
||||
return puppeteer.launch({
|
||||
args: usingSystemChromium
|
||||
? [
|
||||
'--no-sandbox',
|
||||
'--disable-setuid-sandbox',
|
||||
'--disable-dev-shm-usage',
|
||||
'--disable-gpu'
|
||||
]
|
||||
: puppeteer.defaultArgs({
|
||||
args: chromium && chromium.args ? chromium.args : [],
|
||||
headless: 'shell'
|
||||
}),
|
||||
defaultViewport: usingSystemChromium
|
||||
? { width: QR_PNG_WIDTH, height: QR_PNG_WIDTH, deviceScaleFactor: 1 }
|
||||
: chromium && chromium.defaultViewport ? chromium.defaultViewport : null,
|
||||
executablePath: executablePath,
|
||||
headless: usingSystemChromium ? true : 'shell'
|
||||
});
|
||||
})();
|
||||
|
||||
return qrBrowserPromise;
|
||||
}
|
||||
|
||||
async function blobToDataUrl(blob) {
|
||||
if (!blob) {
|
||||
return '';
|
||||
}
|
||||
|
||||
if (typeof blob === 'string') {
|
||||
return blob;
|
||||
}
|
||||
|
||||
if (typeof blob.arrayBuffer === 'function') {
|
||||
const buffer = await blob.arrayBuffer();
|
||||
const bytes = new Uint8Array(buffer);
|
||||
let binary = '';
|
||||
for (let index = 0; index < bytes.length; index += 1) {
|
||||
binary += String.fromCharCode(bytes[index]);
|
||||
}
|
||||
return 'data:' + String(blob.type || 'image/png') + ';base64,' + Buffer.from(binary, 'binary').toString('base64');
|
||||
}
|
||||
|
||||
if (typeof blob.text === 'function') {
|
||||
return blob.text();
|
||||
}
|
||||
|
||||
return '';
|
||||
}
|
||||
|
||||
async function createStyledQrCodeDataUrl(value) {
|
||||
const source = value && typeof value === 'object' ? value : { value: value };
|
||||
const options = buildQrStylingOptions(source);
|
||||
@@ -435,10 +349,6 @@ async function createStyledQrCodeSvg(value) {
|
||||
return renderStyledQrRawData(options, 'svg');
|
||||
}
|
||||
|
||||
async function createQrCodeDataUrlPlain(value) {
|
||||
return createStyledQrCodeDataUrl(value);
|
||||
}
|
||||
|
||||
async function createQrCodeSvg(value) {
|
||||
return createStyledQrCodeSvg(value);
|
||||
}
|
||||
|
||||
@@ -17,7 +17,7 @@ function normalizeUpdateIntervalUnit(value) {
|
||||
|
||||
async function fetchRssFeedsData(pool) {
|
||||
const [rssFeeds] = await pool.query(
|
||||
'SELECT id, name, feed_url, update_interval_value, update_interval_unit, item_limit, created_at, modified_at, created_by, modified_by FROM i_rss_feeds ORDER BY modified_at DESC, id DESC'
|
||||
'SELECT id, name, feed_url, enabled, update_interval_value, update_interval_unit, item_limit, last_pulled_at, created_at, modified_at, created_by, modified_by FROM i_rss_feeds ORDER BY modified_at DESC, id DESC'
|
||||
);
|
||||
|
||||
return { rssFeeds: rssFeeds };
|
||||
@@ -25,7 +25,7 @@ async function fetchRssFeedsData(pool) {
|
||||
|
||||
async function fetchRssFeedsPage(pool, page, pageSize, searchTerm, sortKey, sortDirection) {
|
||||
const paged = await fetchPagedRows(pool, {
|
||||
selectSql: 'SELECT id, name, feed_url, update_interval_value, update_interval_unit, item_limit, created_at, modified_at, created_by, modified_by FROM i_rss_feeds ORDER BY modified_at DESC, id DESC',
|
||||
selectSql: 'SELECT id, name, feed_url, enabled, update_interval_value, update_interval_unit, item_limit, last_pulled_at, created_at, modified_at, created_by, modified_by FROM i_rss_feeds ORDER BY modified_at DESC, id DESC',
|
||||
countSql: 'SELECT COUNT(*) AS count FROM i_rss_feeds',
|
||||
searchColumns: ['name', 'feed_url'],
|
||||
searchTerm: searchTerm,
|
||||
@@ -48,7 +48,7 @@ async function fetchRssFeedsPage(pool, page, pageSize, searchTerm, sortKey, sort
|
||||
|
||||
async function fetchRssFeedById(pool, id) {
|
||||
const [rows] = await pool.query(
|
||||
'SELECT id, name, feed_url, update_interval_value, update_interval_unit, item_limit, created_at, modified_at, created_by, modified_by FROM i_rss_feeds WHERE id = ?',
|
||||
'SELECT id, name, feed_url, enabled, update_interval_value, update_interval_unit, item_limit, last_pulled_at, created_at, modified_at, created_by, modified_by FROM i_rss_feeds WHERE id = ?',
|
||||
[id]
|
||||
);
|
||||
|
||||
|
||||
+18
-11
@@ -93,14 +93,6 @@ function sanitizeRichText(html) {
|
||||
});
|
||||
}
|
||||
|
||||
function normalizePlainText(value) {
|
||||
return String(value === undefined || value === null ? '' : value)
|
||||
.replace(/<\s*br\s*\/?\s*>/gi, '\n')
|
||||
.replace(/<[^>]*>/g, '')
|
||||
.replace(/ /gi, ' ')
|
||||
.trim();
|
||||
}
|
||||
|
||||
function stripEditorOnlyMarkup(value) {
|
||||
return String(value || '')
|
||||
.replace(/<pre[^>]*class="[^"]*api-region-sample-preview[^"]*"[^>]*>[\s\S]*?<\/pre>/gi, '')
|
||||
@@ -426,7 +418,7 @@ async function buildTemplateContent(pool, template, body, filesByField, existing
|
||||
content[region.region_key] = {
|
||||
type: 'rss',
|
||||
value: stripEditorOnlyMarkup(normalizeEditorMarkup(submitted === undefined ? String(current.value || '') : String(submitted || ''))),
|
||||
feed_id: feedId === undefined || feedId === null || feedId === '' ? (current.feed_id || null) : Number(feedId),
|
||||
feed_id: feedId === undefined || feedId === null ? (current.feed_id || null) : (feedId === '' ? null : Number(feedId)),
|
||||
item_number: Math.min(itemCount, Number.isFinite(parsedItemNumber) && parsedItemNumber > 0 ? parsedItemNumber : 1),
|
||||
variable_name: 'item',
|
||||
font_family: style.font_family,
|
||||
@@ -444,7 +436,7 @@ async function buildTemplateContent(pool, template, body, filesByField, existing
|
||||
content[region.region_key] = {
|
||||
type: 'api',
|
||||
value: stripEditorOnlyMarkup(normalizeEditorMarkup(submitted === undefined ? String(current.value || '') : String(submitted || ''))),
|
||||
source_id: sourceId === undefined || sourceId === null || sourceId === '' ? (current.source_id || null) : Number(sourceId),
|
||||
source_id: sourceId === undefined || sourceId === null ? (current.source_id || null) : (sourceId === '' ? null : Number(sourceId)),
|
||||
item_number: Number.isFinite(parsedItemNumber) && parsedItemNumber > 0 ? parsedItemNumber : 1,
|
||||
items_path: itemsPath === undefined || itemsPath === null ? (current.items_path === undefined || current.items_path === null ? '' : String(current.items_path)) : String(itemsPath || '').trim(),
|
||||
variable_name: 'item',
|
||||
@@ -452,7 +444,22 @@ async function buildTemplateContent(pool, template, body, filesByField, existing
|
||||
font_size: style.font_size,
|
||||
font_color: style.font_color
|
||||
};
|
||||
} else if (!['text', 'image', 'video', 'webpage', 'qr-code', 'html', 'rtmp', 'rss', 'api'].includes(String(region.region_type || '').trim())) {
|
||||
} else if (region.region_type === 'weather') {
|
||||
const current = existingContent && existingContent[region.region_key] ? existingContent[region.region_key] : {};
|
||||
const locationId = body[`region_weather_location_id_${region.id}`];
|
||||
const submittedForecastMode = body[`region_weather_forecast_mode_${region.id}`];
|
||||
const forecastMode = ['current', 'hourly'].includes(submittedForecastMode) ? submittedForecastMode : 'daily';
|
||||
const style = getTextRegionStyle(body, region, existingContent);
|
||||
content[region.region_key] = {
|
||||
type: 'weather',
|
||||
value: body[`region_text_${region.id}`] !== undefined ? String(body[`region_text_${region.id}`] || '') : String(current.value || ''),
|
||||
weather_location_id: locationId === undefined || locationId === null ? (current.weather_location_id || null) : (locationId === '' ? null : Number(locationId)),
|
||||
forecast_mode: body[`region_weather_forecast_mode_${region.id}`] === undefined ? (['current', 'hourly'].includes(current.forecast_mode) ? current.forecast_mode : 'daily') : forecastMode,
|
||||
font_family: style.font_family,
|
||||
font_size: style.font_size,
|
||||
font_color: style.font_color
|
||||
};
|
||||
} else if (!['text', 'image', 'video', 'webpage', 'qr-code', 'html', 'rtmp', 'rss', 'api', 'weather'].includes(String(region.region_type || '').trim())) {
|
||||
const current = existingContent && existingContent[region.region_key] && typeof existingContent[region.region_key] === 'object' ? existingContent[region.region_key] : {};
|
||||
const suffix = '_' + region.id;
|
||||
const generic = {};
|
||||
|
||||
+41
-39
@@ -14,6 +14,39 @@ function sanitizeBackgroundColor(value) {
|
||||
return '#111111';
|
||||
}
|
||||
|
||||
function normalizeBackgroundGradient(value) {
|
||||
let gradient = value;
|
||||
if (typeof gradient === 'string') {
|
||||
try {
|
||||
gradient = JSON.parse(gradient);
|
||||
} catch (_error) {
|
||||
gradient = null;
|
||||
}
|
||||
}
|
||||
if (!gradient || typeof gradient !== 'object' || Array.isArray(gradient)) {
|
||||
return null;
|
||||
}
|
||||
const sourceStops = Array.isArray(gradient.stops) && gradient.stops.length
|
||||
? gradient.stops
|
||||
: (Array.isArray(gradient.colors) ? gradient.colors.map((color, index, colors) => ({
|
||||
color,
|
||||
position: colors.length > 1 ? Math.round((index / (colors.length - 1)) * 100) : 0
|
||||
})) : []);
|
||||
const stops = sourceStops.slice(0, 12).map((stop) => ({
|
||||
color: sanitizeBackgroundColor(stop && stop.color),
|
||||
position: Math.max(0, Math.min(100, Number.isFinite(Number(stop && stop.position)) ? Number(stop.position) : 0))
|
||||
}));
|
||||
if (stops.length < 2) {
|
||||
return null;
|
||||
}
|
||||
const angle = Number(gradient.angle);
|
||||
return JSON.stringify({
|
||||
type: 'linear',
|
||||
stops,
|
||||
angle: Number.isFinite(angle) ? Math.max(0, Math.min(360, angle)) : 90
|
||||
});
|
||||
}
|
||||
|
||||
function normalizeTemplateRegionType(value) {
|
||||
const rawType = String(value || 'text').trim();
|
||||
return rawType || 'text';
|
||||
@@ -106,7 +139,7 @@ function ensureUniqueTemplateRegionNames(regions) {
|
||||
|
||||
async function fetchTemplateById(pool, id) {
|
||||
const [templates] = await pool.query(`
|
||||
SELECT st.id, st.name, st.canvas_size_id, st.background_image_path, st.background_color, st.created_at, st.modified_at,
|
||||
SELECT st.id, st.name, st.canvas_size_id, st.background_image_path, st.background_color, st.background_gradient, st.created_at, st.modified_at,
|
||||
cs.name AS canvas_size_name, cs.width AS canvas_size_width, cs.height AS canvas_size_height
|
||||
FROM c_templates st
|
||||
LEFT JOIN c_canvas_sizes cs ON cs.id = st.canvas_size_id
|
||||
@@ -123,7 +156,7 @@ async function fetchTemplateById(pool, id) {
|
||||
|
||||
async function fetchTemplatesData(pool) {
|
||||
const [templates] = await pool.query(`
|
||||
SELECT st.id, st.name, st.canvas_size_id, st.background_image_path, st.background_color, st.created_at, st.modified_at,
|
||||
SELECT st.id, st.name, st.canvas_size_id, st.background_image_path, st.background_color, st.background_gradient, st.created_at, st.modified_at,
|
||||
cs.name AS canvas_size_name, cs.width AS canvas_size_width, cs.height AS canvas_size_height
|
||||
FROM c_templates st
|
||||
LEFT JOIN c_canvas_sizes cs ON cs.id = st.canvas_size_id
|
||||
@@ -194,43 +227,6 @@ function extractTemplateRegions(body) {
|
||||
return regions;
|
||||
}
|
||||
|
||||
function extractGenericRegionContent(region, body, filesByField, existingContent) {
|
||||
const content = {};
|
||||
const current = existingContent && existingContent[region.region_key] && typeof existingContent[region.region_key] === 'object' ? existingContent[region.region_key] : {};
|
||||
const suffix = '_' + region.id;
|
||||
|
||||
Object.keys(body || {}).forEach((key) => {
|
||||
if (!key.startsWith('region_') || !key.endsWith(suffix)) {
|
||||
return;
|
||||
}
|
||||
const field = key.slice('region_'.length, -suffix.length);
|
||||
if (!field || field === 'type' || field === 'key' || field === 'name' || field === 'label') {
|
||||
return;
|
||||
}
|
||||
content[field] = body[key];
|
||||
});
|
||||
|
||||
Object.keys(filesByField || {}).forEach((fieldName) => {
|
||||
if (!fieldName.startsWith('region_') || !fieldName.endsWith(suffix)) {
|
||||
return;
|
||||
}
|
||||
const field = fieldName.slice('region_'.length, -suffix.length);
|
||||
if (!field) {
|
||||
return;
|
||||
}
|
||||
content[field] = `/media/uploads/${filesByField[fieldName].filename}`;
|
||||
});
|
||||
|
||||
Object.keys(current).forEach((key) => {
|
||||
if (content[key] === undefined) {
|
||||
content[key] = current[key];
|
||||
}
|
||||
});
|
||||
|
||||
content.type = region.region_type;
|
||||
return content;
|
||||
}
|
||||
|
||||
function getFilesByField(files) {
|
||||
const map = {};
|
||||
(files || []).forEach((file) => {
|
||||
@@ -249,6 +245,10 @@ async function buildTemplatePayload(pool, req, existingTemplate) {
|
||||
const backgroundImage = filesByField.background_image;
|
||||
const removeBackgroundImage = Boolean(req.body.remove_background_image);
|
||||
const backgroundColor = sanitizeBackgroundColor(req.body.background_color || (existingTemplate && existingTemplate.background_color));
|
||||
const submittedBackgroundGradient = Object.prototype.hasOwnProperty.call(req.body, 'background_gradient')
|
||||
? req.body.background_gradient
|
||||
: existingTemplate && existingTemplate.background_gradient;
|
||||
const backgroundGradient = normalizeBackgroundGradient(submittedBackgroundGradient);
|
||||
const backgroundImagePath = backgroundImage
|
||||
? `/media/uploads/${backgroundImage.filename}`
|
||||
: removeBackgroundImage
|
||||
@@ -293,6 +293,7 @@ async function buildTemplatePayload(pool, req, existingTemplate) {
|
||||
canvasSizeHeight: canvasHeight,
|
||||
backgroundImagePath,
|
||||
backgroundColor,
|
||||
backgroundGradient,
|
||||
regions
|
||||
};
|
||||
}
|
||||
@@ -302,5 +303,6 @@ module.exports = {
|
||||
fetchTemplatesData,
|
||||
extractTemplateRegions,
|
||||
buildTemplatePayload,
|
||||
normalizeBackgroundGradient,
|
||||
parseJsonSafe
|
||||
};
|
||||
|
||||
@@ -0,0 +1,67 @@
|
||||
// Convert cached weather snapshots for display without refetching.
|
||||
|
||||
function convertTemperature(value, fromUnit, toUnit) {
|
||||
const number = Number(value);
|
||||
if (!Number.isFinite(number) || fromUnit === toUnit) return value;
|
||||
const converted = toUnit === 'fahrenheit' ? number * 9 / 5 + 32 : (number - 32) * 5 / 9;
|
||||
return Math.round(converted * 10) / 10;
|
||||
}
|
||||
|
||||
function convertWind(value, fromUnit, toUnit) {
|
||||
const number = Number(value);
|
||||
if (!Number.isFinite(number) || fromUnit === toUnit) return value;
|
||||
const metresPerSecond = fromUnit === 'mph' ? number * 0.44704 : fromUnit === 'kmh' ? number / 3.6 : number;
|
||||
const converted = toUnit === 'mph' ? metresPerSecond / 0.44704 : toUnit === 'kmh' ? metresPerSecond * 3.6 : metresPerSecond;
|
||||
return Math.round(converted * 10) / 10;
|
||||
}
|
||||
|
||||
function convertPrecipitation(value, fromUnit, toUnit) {
|
||||
const number = Number(value);
|
||||
if (!Number.isFinite(number) || fromUnit === toUnit) return value;
|
||||
const converted = toUnit === 'inch' ? number / 25.4 : number * 25.4;
|
||||
return Math.round(converted * 100) / 100;
|
||||
}
|
||||
|
||||
function temperatureUnitFromLabel(label) {
|
||||
return /f/i.test(String(label || '')) ? 'fahrenheit' : 'celsius';
|
||||
}
|
||||
|
||||
function windUnitFromLabel(label) {
|
||||
const value = String(label || '').toLowerCase();
|
||||
return value.includes('mph') ? 'mph' : value.includes('m/s') ? 'ms' : 'kmh';
|
||||
}
|
||||
|
||||
function precipitationUnitFromLabel(label) {
|
||||
return /in/i.test(String(label || '')) ? 'inch' : 'mm';
|
||||
}
|
||||
|
||||
function convertField(data, fields, converter, fromUnit, toUnit) {
|
||||
fields.forEach(function (field) {
|
||||
if (data[field] === undefined || data[field] === null) return;
|
||||
data[field] = Array.isArray(data[field])
|
||||
? data[field].map(function (value) { return converter(value, fromUnit, toUnit); })
|
||||
: converter(data[field], fromUnit, toUnit);
|
||||
});
|
||||
}
|
||||
|
||||
function convertWeatherSnapshot(snapshot, targetUnits) {
|
||||
const source = snapshot && typeof snapshot === 'object' ? snapshot : {};
|
||||
const target = Object.assign({ temperature: 'celsius', wind: 'kmh', precipitation: 'mm' }, targetUnits || {});
|
||||
const result = JSON.parse(JSON.stringify(source));
|
||||
const currentUnits = source.current_units || {};
|
||||
const hourlyUnits = source.hourly_units || currentUnits;
|
||||
const dailyUnits = source.daily_units || currentUnits;
|
||||
|
||||
convertField(result.current || {}, ['temperature_2m', 'apparent_temperature'], convertTemperature, temperatureUnitFromLabel(currentUnits.temperature_2m), target.temperature);
|
||||
convertField(result.current || {}, ['wind_speed_10m'], convertWind, windUnitFromLabel(currentUnits.wind_speed_10m), target.wind);
|
||||
convertField(result.current || {}, ['precipitation', 'rain'], convertPrecipitation, precipitationUnitFromLabel(currentUnits.precipitation), target.precipitation);
|
||||
convertField(result.hourly || {}, ['temperature_2m'], convertTemperature, temperatureUnitFromLabel(hourlyUnits.temperature_2m), target.temperature);
|
||||
convertField(result.hourly || {}, ['wind_speed_10m'], convertWind, windUnitFromLabel(hourlyUnits.wind_speed_10m), target.wind);
|
||||
convertField(result.hourly || {}, ['precipitation'], convertPrecipitation, precipitationUnitFromLabel(hourlyUnits.precipitation), target.precipitation);
|
||||
convertField(result.daily || {}, ['temperature_2m_max', 'temperature_2m_min'], convertTemperature, temperatureUnitFromLabel(dailyUnits.temperature_2m_max), target.temperature);
|
||||
convertField(result.daily || {}, ['wind_speed_10m_max'], convertWind, windUnitFromLabel(dailyUnits.wind_speed_10m_max), target.wind);
|
||||
convertField(result.daily || {}, ['precipitation_sum'], convertPrecipitation, precipitationUnitFromLabel(dailyUnits.precipitation_sum), target.precipitation);
|
||||
return result;
|
||||
}
|
||||
|
||||
module.exports = { convertWeatherSnapshot };
|
||||
@@ -0,0 +1,138 @@
|
||||
// Weather location data access and form normalization.
|
||||
|
||||
const { fetchPagedRows, validateMaxLength } = require('./utils');
|
||||
const { fetchAppSettings } = require('./app-settings');
|
||||
|
||||
const NAME_MAX_LENGTH = 255;
|
||||
const LOCATION_MAX_LENGTH = 255;
|
||||
const TIMEZONE_MAX_LENGTH = 128;
|
||||
const PROVIDERS = ['open-meteo', 'pirate-weather'];
|
||||
const TEMPERATURE_UNITS = ['celsius', 'fahrenheit'];
|
||||
const WIND_UNITS = ['kmh', 'mph', 'ms'];
|
||||
const PRECIPITATION_UNITS = ['mm', 'inch'];
|
||||
|
||||
async function fetchWeatherLocationSuggestions(query) {
|
||||
const search = validateMaxLength(query, LOCATION_MAX_LENGTH, 'Location search');
|
||||
if (!search) {
|
||||
return [];
|
||||
}
|
||||
|
||||
const response = await fetch('https://geocoding-api.open-meteo.com/v1/search?name=' + encodeURIComponent(search) + '&count=8&language=en&format=json', {
|
||||
headers: { Accept: 'application/json', 'User-Agent': 'Pulse Signage weather location lookup' }
|
||||
});
|
||||
if (!response.ok) {
|
||||
throw new Error('Weather location lookup failed.');
|
||||
}
|
||||
const data = await response.json();
|
||||
return (Array.isArray(data.results) ? data.results : []).map(function (result) {
|
||||
return {
|
||||
label: [result.name, result.admin1, result.country].filter(Boolean).join(', '),
|
||||
latitude: Number(result.latitude),
|
||||
longitude: Number(result.longitude),
|
||||
timezone: String(result.timezone || '')
|
||||
};
|
||||
}).filter(function (result) {
|
||||
return result.label && Number.isFinite(result.latitude) && Number.isFinite(result.longitude) && result.timezone;
|
||||
});
|
||||
}
|
||||
|
||||
function normalizeChoice(value, choices, fallback) {
|
||||
const normalized = String(value || '').trim().toLowerCase();
|
||||
return choices.includes(normalized) ? normalized : fallback;
|
||||
}
|
||||
|
||||
async function fetchWeatherLocationsPage(pool, page, pageSize, searchTerm, sortKey, sortDirection) {
|
||||
const paged = await fetchPagedRows(pool, {
|
||||
selectSql: 'SELECT id, name, location_label, latitude, longitude, timezone, provider, temperature_unit, wind_unit, precipitation_unit, enabled, update_interval_value, update_interval_unit, last_pulled_at, last_pull_error, created_at, modified_at FROM i_weather_locations ORDER BY modified_at DESC, id DESC',
|
||||
countSql: 'SELECT COUNT(*) AS count FROM i_weather_locations',
|
||||
searchColumns: ['name', 'location_label', 'timezone', 'provider'],
|
||||
searchTerm: searchTerm,
|
||||
sortColumns: {
|
||||
name: 'name',
|
||||
location: 'location_label',
|
||||
provider: 'provider',
|
||||
interval: ['update_interval_value', 'update_interval_unit'],
|
||||
last_pulled: 'last_pulled_at',
|
||||
modified: 'modified_at'
|
||||
},
|
||||
sortKey: sortKey,
|
||||
sortDirection: sortDirection,
|
||||
page: page,
|
||||
pageSize: pageSize
|
||||
});
|
||||
return Object.assign({ weatherLocations: paged.rows }, paged);
|
||||
}
|
||||
|
||||
async function fetchWeatherLocationsData(pool) {
|
||||
const [rows] = await pool.query('SELECT id, name, location_label, latitude, longitude, timezone, provider, temperature_unit, wind_unit, precipitation_unit, enabled, update_interval_value, update_interval_unit, last_pulled_at, last_pull_error, last_response_json, created_at, modified_at FROM i_weather_locations ORDER BY modified_at DESC, id DESC');
|
||||
return { weatherLocations: rows };
|
||||
}
|
||||
|
||||
async function fetchWeatherLocationById(pool, id) {
|
||||
const [rows] = await pool.query('SELECT id, name, location_label, latitude, longitude, timezone, provider, temperature_unit, wind_unit, precipitation_unit, enabled, update_interval_value, update_interval_unit, last_pulled_at, last_pull_error, last_response_json, created_at, modified_at, created_by, modified_by FROM i_weather_locations WHERE id = ?', [id]);
|
||||
return rows[0] || null;
|
||||
}
|
||||
|
||||
async function fetchWeatherLocationForecast(pool, location) {
|
||||
const source = location || {};
|
||||
const settings = await fetchAppSettings(pool);
|
||||
const latitude = Number(source.latitude);
|
||||
const longitude = Number(source.longitude);
|
||||
const temperatureUnit = source.temperature_unit === 'fahrenheit' ? 'fahrenheit' : 'celsius';
|
||||
const windUnit = source.wind_unit === 'mph' ? 'mph' : source.wind_unit === 'ms' ? 'ms' : 'kmh';
|
||||
const precipitationUnit = source.precipitation_unit === 'inch' ? 'inch' : 'mm';
|
||||
let url;
|
||||
let headers = { Accept: 'application/json', 'User-Agent': 'Pulse Signage weather reader' };
|
||||
|
||||
if (source.provider === 'pirate-weather') {
|
||||
const apiKey = String(settings['weather.pirate_weather_api_key'] || '').trim();
|
||||
if (!apiKey) throw new Error('Pirate Weather API key is not configured.');
|
||||
url = 'https://api.pirateweather.net/forecast/' + encodeURIComponent(apiKey) + '/' + latitude + ',' + longitude + '?units=' + (temperatureUnit === 'fahrenheit' ? 'us' : 'si');
|
||||
} else {
|
||||
const params = new URLSearchParams({ latitude: String(latitude), longitude: String(longitude), timezone: String(source.timezone || 'auto'), forecast_days: '7', forecast_hours: '24', current: 'temperature_2m,relative_humidity_2m,apparent_temperature,is_day,precipitation,rain,weather_code,wind_speed_10m,wind_direction_10m,uv_index,cloud_cover', hourly: 'temperature_2m,precipitation_probability,precipitation,weather_code,wind_speed_10m,uv_index,cloud_cover', daily: 'weather_code,temperature_2m_max,temperature_2m_min,sunrise,sunset,precipitation_probability_max,precipitation_sum,wind_speed_10m_max,uv_index_max,cloud_cover_mean', temperature_unit: temperatureUnit, wind_speed_unit: windUnit, precipitation_unit: precipitationUnit });
|
||||
const apiKey = String(settings['weather.open_meteo_api_key'] || '').trim();
|
||||
if (apiKey) params.set('apikey', apiKey);
|
||||
url = 'https://api.open-meteo.com/v1/forecast?' + params.toString();
|
||||
}
|
||||
|
||||
const response = await fetch(url, { headers: headers });
|
||||
if (!response.ok) throw new Error('Weather provider returned HTTP ' + response.status + '.');
|
||||
const snapshot = await response.json();
|
||||
return { snapshot: snapshot, responseJson: JSON.stringify(snapshot), fetchedAt: new Date() };
|
||||
}
|
||||
|
||||
function buildWeatherLocationPayload(req, existingLocation) {
|
||||
const body = req && req.body ? req.body : {};
|
||||
const fallback = existingLocation || {};
|
||||
const name = validateMaxLength(body.name || fallback.name || '', NAME_MAX_LENGTH, 'Weather location name');
|
||||
const locationLabel = validateMaxLength(body.location_label || fallback.location_label || '', LOCATION_MAX_LENGTH, 'Location label');
|
||||
const latitude = Number(body.latitude !== undefined ? body.latitude : fallback.latitude);
|
||||
const longitude = Number(body.longitude !== undefined ? body.longitude : fallback.longitude);
|
||||
const timezone = validateMaxLength(body.timezone || fallback.timezone || '', TIMEZONE_MAX_LENGTH, 'Timezone');
|
||||
const provider = normalizeChoice(body.provider || fallback.provider, PROVIDERS, 'open-meteo');
|
||||
const temperatureUnit = normalizeChoice(body.temperature_unit || fallback.temperature_unit, TEMPERATURE_UNITS, 'celsius');
|
||||
const windUnit = normalizeChoice(body.wind_unit || fallback.wind_unit, WIND_UNITS, 'kmh');
|
||||
const precipitationUnit = normalizeChoice(body.precipitation_unit || fallback.precipitation_unit, PRECIPITATION_UNITS, 'mm');
|
||||
const updateIntervalValue = Number(body.update_interval_value || fallback.update_interval_value || 30);
|
||||
const updateIntervalUnit = normalizeChoice(body.update_interval_unit || fallback.update_interval_unit, ['minutes', 'hours'], 'minutes');
|
||||
|
||||
if (!name || !locationLabel || !timezone) {
|
||||
const error = new Error('Name, location label, and timezone are required.');
|
||||
error.statusCode = 400;
|
||||
throw error;
|
||||
}
|
||||
if (!Number.isFinite(latitude) || latitude < -90 || latitude > 90 || !Number.isFinite(longitude) || longitude < -180 || longitude > 180) {
|
||||
const error = new Error('Latitude must be between -90 and 90, and longitude must be between -180 and 180.');
|
||||
error.statusCode = 400;
|
||||
throw error;
|
||||
}
|
||||
if (!Number.isInteger(updateIntervalValue) || updateIntervalValue < 1 || updateIntervalValue > 1440) {
|
||||
const error = new Error('Update interval must be a whole number between 1 and 1440.');
|
||||
error.statusCode = 400;
|
||||
throw error;
|
||||
}
|
||||
|
||||
return { name, locationLabel, latitude, longitude, timezone, provider, temperatureUnit, windUnit, precipitationUnit, updateIntervalValue, updateIntervalUnit };
|
||||
}
|
||||
|
||||
module.exports = { fetchWeatherLocationsData, fetchWeatherLocationsPage, fetchWeatherLocationById, fetchWeatherLocationSuggestions, fetchWeatherLocationForecast, buildWeatherLocationPayload, PROVIDERS, TEMPERATURE_UNITS, WIND_UNITS, PRECIPITATION_UNITS };
|
||||
Vendored
+33
-10
@@ -15,11 +15,19 @@ async function bootstrapDatabase(pool) {
|
||||
}
|
||||
|
||||
for (const permission of PERMISSIONS) {
|
||||
await pool.query(
|
||||
`UPDATE a_permissions
|
||||
SET name = ?, section_name = ?, description = ?, modified_by = ?
|
||||
WHERE permission_key = ?`,
|
||||
[permission.name, permission.sectionName, permission.description || null, null, permission.key]
|
||||
);
|
||||
await pool.query(
|
||||
`INSERT INTO a_permissions (permission_key, name, section_name, description, created_by, modified_by)
|
||||
VALUES (?, ?, ?, ?, ?, ?)
|
||||
ON DUPLICATE KEY UPDATE name = VALUES(name), section_name = VALUES(section_name), description = VALUES(description), modified_by = VALUES(modified_by)` ,
|
||||
[permission.key, permission.name, permission.sectionName, permission.description || null, null, null]
|
||||
SELECT ?, ?, ?, ?, ?, ?
|
||||
WHERE NOT EXISTS (
|
||||
SELECT 1 FROM a_permissions WHERE permission_key = ?
|
||||
)`,
|
||||
[permission.key, permission.name, permission.sectionName, permission.description || null, null, null, permission.key]
|
||||
);
|
||||
}
|
||||
|
||||
@@ -35,22 +43,37 @@ async function bootstrapDatabase(pool) {
|
||||
);
|
||||
}
|
||||
|
||||
await pool.query('UPDATE a_users SET name = username WHERE name IS NULL OR name = ""');
|
||||
const [legacyRoleRows] = await pool.query('SELECT id FROM a_roles WHERE role_key = ? LIMIT 1', ['administrators']);
|
||||
const [currentRoleRows] = await pool.query('SELECT id FROM a_roles WHERE role_key = ? LIMIT 1', [DEFAULT_ROLE.key]);
|
||||
if (legacyRoleRows.length && !currentRoleRows.length) {
|
||||
await pool.query(
|
||||
`UPDATE a_roles
|
||||
SET role_key = ?, name = ?, description = ?, modified_by = ?
|
||||
WHERE role_key = ?`,
|
||||
[DEFAULT_ROLE.key, DEFAULT_ROLE.name, DEFAULT_ROLE.description || null, null, 'administrators']
|
||||
);
|
||||
}
|
||||
|
||||
await pool.query(
|
||||
`INSERT INTO a_roles (role_key, name, description, created_by, modified_by)
|
||||
VALUES (?, ?, ?, ?, ?)
|
||||
ON DUPLICATE KEY UPDATE name = VALUES(name), description = VALUES(description), modified_by = VALUES(modified_by)`,
|
||||
[DEFAULT_ROLE.key, DEFAULT_ROLE.name, DEFAULT_ROLE.description || null, null, null]
|
||||
SELECT ?, ?, ?, ?, ?
|
||||
WHERE NOT EXISTS (
|
||||
SELECT 1 FROM a_roles WHERE role_key = ?
|
||||
)`,
|
||||
[DEFAULT_ROLE.key, DEFAULT_ROLE.name, DEFAULT_ROLE.description || null, null, null, DEFAULT_ROLE.key]
|
||||
);
|
||||
|
||||
const [defaultRoleRows] = await pool.query('SELECT id FROM a_roles WHERE role_key = ? LIMIT 1', [DEFAULT_ROLE.key]);
|
||||
const defaultRoleId = defaultRoleRows.length ? Number(defaultRoleRows[0].id) : null;
|
||||
if (defaultRoleId) {
|
||||
await pool.query(
|
||||
`INSERT IGNORE INTO a_role_permissions (role_id, permission_id, created_by, modified_by)
|
||||
SELECT ?, id, NULL, NULL FROM a_permissions`,
|
||||
[defaultRoleId]
|
||||
`INSERT INTO a_role_permissions (role_id, permission_id, created_by, modified_by)
|
||||
SELECT ?, permissions.id, NULL, NULL
|
||||
FROM a_permissions permissions
|
||||
LEFT JOIN a_role_permissions existing
|
||||
ON existing.role_id = ? AND existing.permission_id = permissions.id
|
||||
WHERE existing.id IS NULL`,
|
||||
[defaultRoleId, defaultRoleId]
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
+2
-1
@@ -17,7 +17,8 @@ function createPool() {
|
||||
async function pruneStaleOnboardingDevices(pool) {
|
||||
await pool.query(
|
||||
`DELETE FROM d_onboarding_devices
|
||||
WHERE modified_at < (CURRENT_TIMESTAMP - INTERVAL 1 MINUTE)`
|
||||
WHERE screen_id IS NULL
|
||||
AND modified_at < (CURRENT_TIMESTAMP - INTERVAL 1 MINUTE)`
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
+82
-5
@@ -57,6 +57,7 @@ async function ensureSchema(pool, options) {
|
||||
canvas_size_id INT NULL,
|
||||
background_image_path VARCHAR(512) NULL,
|
||||
background_color VARCHAR(32) NULL,
|
||||
background_gradient LONGTEXT NULL,
|
||||
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
created_by INT NULL,
|
||||
modified_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
@@ -184,13 +185,14 @@ async function ensureSchema(pool, options) {
|
||||
|
||||
await pool.query(`
|
||||
CREATE TABLE IF NOT EXISTS d_announcement_screens (
|
||||
id BIGINT AUTO_INCREMENT PRIMARY KEY,
|
||||
announcement_id INT NOT NULL,
|
||||
screen_id INT NOT NULL,
|
||||
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
created_by INT NULL,
|
||||
modified_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
modified_by INT NULL,
|
||||
PRIMARY KEY (announcement_id, screen_id),
|
||||
UNIQUE KEY uq_announcement_screens_pair (announcement_id, screen_id),
|
||||
INDEX idx_announcement_screens_screen_id (screen_id),
|
||||
CONSTRAINT fk_announcement_screens_announcement FOREIGN KEY (announcement_id) REFERENCES d_announcements(id) ON DELETE CASCADE,
|
||||
CONSTRAINT fk_announcement_screens_screen FOREIGN KEY (screen_id) REFERENCES d_screens(id) ON DELETE CASCADE
|
||||
@@ -202,9 +204,11 @@ async function ensureSchema(pool, options) {
|
||||
id INT AUTO_INCREMENT PRIMARY KEY,
|
||||
name VARCHAR(255) NOT NULL,
|
||||
feed_url VARCHAR(1024) NOT NULL,
|
||||
enabled TINYINT(1) NOT NULL DEFAULT 1,
|
||||
update_interval_value INT NOT NULL DEFAULT 60,
|
||||
update_interval_unit VARCHAR(10) NOT NULL DEFAULT 'minutes',
|
||||
item_limit INT NOT NULL DEFAULT 1,
|
||||
last_pulled_at DATETIME NULL,
|
||||
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
created_by INT NULL,
|
||||
modified_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
@@ -232,6 +236,21 @@ async function ensureSchema(pool, options) {
|
||||
id INT AUTO_INCREMENT PRIMARY KEY,
|
||||
name VARCHAR(255) NOT NULL,
|
||||
api_url VARCHAR(1024) NOT NULL,
|
||||
request_method VARCHAR(10) NOT NULL DEFAULT 'GET',
|
||||
request_body_json MEDIUMTEXT NULL,
|
||||
auth_method VARCHAR(32) NOT NULL DEFAULT 'none',
|
||||
auth_username VARCHAR(255) NULL,
|
||||
auth_password MEDIUMTEXT NULL,
|
||||
auth_bearer_token MEDIUMTEXT NULL,
|
||||
auth_header_name VARCHAR(255) NULL,
|
||||
auth_header_value MEDIUMTEXT NULL,
|
||||
token_url VARCHAR(1024) NULL,
|
||||
token_request_body_json MEDIUMTEXT NULL,
|
||||
token_response_path VARCHAR(255) NULL DEFAULT 'access_token',
|
||||
token_header_name VARCHAR(255) NULL DEFAULT 'Authorization',
|
||||
token_header_prefix VARCHAR(64) NULL DEFAULT 'Bearer',
|
||||
items_path VARCHAR(255) NULL,
|
||||
enabled TINYINT(1) NOT NULL DEFAULT 1,
|
||||
update_interval_value INT NOT NULL DEFAULT 60,
|
||||
update_interval_unit VARCHAR(10) NOT NULL DEFAULT 'minutes',
|
||||
last_pulled_at TIMESTAMP NULL,
|
||||
@@ -246,6 +265,32 @@ async function ensureSchema(pool, options) {
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
|
||||
`);
|
||||
|
||||
await pool.query(`
|
||||
CREATE TABLE IF NOT EXISTS i_weather_locations (
|
||||
id BIGINT AUTO_INCREMENT PRIMARY KEY,
|
||||
name VARCHAR(255) NOT NULL UNIQUE,
|
||||
location_label VARCHAR(255) NOT NULL,
|
||||
latitude DECIMAL(9,6) NOT NULL,
|
||||
longitude DECIMAL(9,6) NOT NULL,
|
||||
timezone VARCHAR(128) NOT NULL,
|
||||
provider VARCHAR(32) NOT NULL DEFAULT 'open-meteo',
|
||||
temperature_unit VARCHAR(16) NOT NULL DEFAULT 'celsius',
|
||||
wind_unit VARCHAR(16) NOT NULL DEFAULT 'kmh',
|
||||
precipitation_unit VARCHAR(16) NOT NULL DEFAULT 'mm',
|
||||
enabled TINYINT(1) NOT NULL DEFAULT 1,
|
||||
update_interval_value INT NOT NULL DEFAULT 30,
|
||||
update_interval_unit VARCHAR(16) NOT NULL DEFAULT 'minutes',
|
||||
last_pulled_at DATETIME NULL,
|
||||
last_pull_error VARCHAR(1024) NULL,
|
||||
last_response_json MEDIUMTEXT NULL,
|
||||
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
created_by INT NULL,
|
||||
modified_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
modified_by INT NULL,
|
||||
INDEX idx_weather_locations_modified_at (modified_at)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
|
||||
`);
|
||||
|
||||
await pool.query(`
|
||||
CREATE TABLE IF NOT EXISTS i_timetable_groups (
|
||||
id INT AUTO_INCREMENT PRIMARY KEY,
|
||||
@@ -278,7 +323,8 @@ async function ensureSchema(pool, options) {
|
||||
|
||||
await pool.query(`
|
||||
CREATE TABLE IF NOT EXISTS d_onboarding_devices (
|
||||
device_id VARCHAR(128) PRIMARY KEY,
|
||||
id BIGINT AUTO_INCREMENT PRIMARY KEY,
|
||||
device_id VARCHAR(128) NOT NULL UNIQUE,
|
||||
client_name VARCHAR(255) NULL,
|
||||
screen_id INT NULL,
|
||||
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
@@ -297,6 +343,8 @@ async function ensureSchema(pool, options) {
|
||||
password_hash CHAR(64) NOT NULL,
|
||||
password_salt VARCHAR(64) NOT NULL,
|
||||
password_iterations INT NOT NULL,
|
||||
must_change_password TINYINT(1) NOT NULL DEFAULT 0,
|
||||
account_locked TINYINT(1) NOT NULL DEFAULT 0,
|
||||
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
created_by INT NULL,
|
||||
modified_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
@@ -333,13 +381,14 @@ async function ensureSchema(pool, options) {
|
||||
|
||||
await pool.query(`
|
||||
CREATE TABLE IF NOT EXISTS a_role_permissions (
|
||||
id BIGINT AUTO_INCREMENT PRIMARY KEY,
|
||||
role_id INT NOT NULL,
|
||||
permission_id INT NOT NULL,
|
||||
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
created_by INT NULL,
|
||||
modified_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
modified_by INT NULL,
|
||||
PRIMARY KEY (role_id, permission_id),
|
||||
UNIQUE KEY uq_role_permissions_pair (role_id, permission_id),
|
||||
CONSTRAINT fk_role_permissions_role FOREIGN KEY (role_id) REFERENCES a_roles(id) ON DELETE CASCADE,
|
||||
CONSTRAINT fk_role_permissions_permission FOREIGN KEY (permission_id) REFERENCES a_permissions(id) ON DELETE CASCADE
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
|
||||
@@ -347,13 +396,14 @@ async function ensureSchema(pool, options) {
|
||||
|
||||
await pool.query(`
|
||||
CREATE TABLE IF NOT EXISTS a_user_roles (
|
||||
id BIGINT AUTO_INCREMENT PRIMARY KEY,
|
||||
user_id INT NOT NULL,
|
||||
role_id INT NOT NULL,
|
||||
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
created_by INT NULL,
|
||||
modified_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
modified_by INT NULL,
|
||||
PRIMARY KEY (user_id, role_id),
|
||||
UNIQUE KEY uq_user_roles_pair (user_id, role_id),
|
||||
CONSTRAINT fk_user_roles_user FOREIGN KEY (user_id) REFERENCES a_users(id) ON DELETE CASCADE,
|
||||
CONSTRAINT fk_user_roles_role FOREIGN KEY (role_id) REFERENCES a_roles(id) ON DELETE CASCADE
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
|
||||
@@ -361,8 +411,11 @@ async function ensureSchema(pool, options) {
|
||||
|
||||
await pool.query(`
|
||||
CREATE TABLE IF NOT EXISTS a_sessions (
|
||||
session_hash CHAR(64) PRIMARY KEY,
|
||||
id BIGINT AUTO_INCREMENT PRIMARY KEY,
|
||||
session_hash CHAR(64) NOT NULL UNIQUE,
|
||||
user_id INT NOT NULL,
|
||||
ip_address VARCHAR(255) NULL,
|
||||
user_agent VARCHAR(512) NULL,
|
||||
expires_at DATETIME NOT NULL,
|
||||
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
created_by INT NULL,
|
||||
@@ -372,6 +425,18 @@ async function ensureSchema(pool, options) {
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
|
||||
`);
|
||||
|
||||
await pool.query(`
|
||||
CREATE TABLE IF NOT EXISTS a_login_attempts (
|
||||
id BIGINT AUTO_INCREMENT PRIMARY KEY,
|
||||
rate_key VARCHAR(600) NOT NULL UNIQUE,
|
||||
failed_count INT NOT NULL DEFAULT 0,
|
||||
last_failed_at DATETIME NULL,
|
||||
locked_until DATETIME NULL,
|
||||
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
modified_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
|
||||
`);
|
||||
|
||||
await pool.query(`
|
||||
CREATE TABLE IF NOT EXISTS o_background_tasks (
|
||||
id BIGINT AUTO_INCREMENT PRIMARY KEY,
|
||||
@@ -393,6 +458,18 @@ async function ensureSchema(pool, options) {
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
|
||||
`);
|
||||
|
||||
await pool.query(`
|
||||
CREATE TABLE IF NOT EXISTS o_app_settings (
|
||||
id BIGINT AUTO_INCREMENT PRIMARY KEY,
|
||||
setting_key VARCHAR(191) NOT NULL UNIQUE,
|
||||
setting_value JSON NOT NULL,
|
||||
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
created_by INT NULL,
|
||||
modified_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
modified_by INT NULL
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
|
||||
`);
|
||||
|
||||
await runMigrations(pool, Object.assign({}, options, { currentVersion: currentVersion }));
|
||||
await recordSchemaVersion(pool, appVersion);
|
||||
} finally {
|
||||
|
||||
+177
-4
@@ -385,6 +385,173 @@ const VERSIONED_MIGRATIONS = [
|
||||
await pool.query('DROP TABLE i_schedule_groups');
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
version: '2.8.0',
|
||||
label: 'v2.8.0 combined application schema',
|
||||
run: async function (pool) {
|
||||
await pool.query(`
|
||||
CREATE TABLE IF NOT EXISTS o_app_settings (
|
||||
id BIGINT AUTO_INCREMENT PRIMARY KEY,
|
||||
setting_key VARCHAR(191) NOT NULL UNIQUE,
|
||||
setting_value JSON NOT NULL,
|
||||
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
created_by INT NULL,
|
||||
modified_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
modified_by INT NULL
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
|
||||
`);
|
||||
await pool.query(`
|
||||
CREATE TABLE IF NOT EXISTS o_app_state (
|
||||
id BIGINT AUTO_INCREMENT PRIMARY KEY,
|
||||
state_key VARCHAR(191) NOT NULL UNIQUE,
|
||||
state_value MEDIUMTEXT NULL,
|
||||
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
modified_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
|
||||
`);
|
||||
|
||||
const numericIdTables = [
|
||||
['d_announcement_screens', 'uq_announcement_screens_pair', '(announcement_id, screen_id)'],
|
||||
['d_onboarding_devices', 'uq_onboarding_devices_device_id', '(device_id)'],
|
||||
['a_role_permissions', 'uq_role_permissions_pair', '(role_id, permission_id)'],
|
||||
['a_user_roles', 'uq_user_roles_pair', '(user_id, role_id)'],
|
||||
['a_sessions', 'uq_sessions_hash', '(session_hash)'],
|
||||
['o_app_state', 'uq_app_state_key', '(state_key)']
|
||||
];
|
||||
|
||||
for (const [tableName, uniqueKeyName, uniqueColumns] of numericIdTables) {
|
||||
if (!(await tableExists(pool, tableName)) || await columnExists(pool, tableName, 'id')) {
|
||||
continue;
|
||||
}
|
||||
await pool.query('ALTER TABLE ' + tableName + ' DROP PRIMARY KEY, ADD COLUMN id BIGINT NOT NULL AUTO_INCREMENT PRIMARY KEY FIRST, ADD UNIQUE KEY ' + uniqueKeyName + ' ' + uniqueColumns);
|
||||
}
|
||||
await ensureColumn(pool, 'a_users', 'must_change_password', 'TINYINT(1) NOT NULL DEFAULT 0', 'password_iterations');
|
||||
await pool.query(`
|
||||
CREATE TABLE IF NOT EXISTS a_login_attempts (
|
||||
id BIGINT AUTO_INCREMENT PRIMARY KEY,
|
||||
rate_key VARCHAR(600) NOT NULL UNIQUE,
|
||||
failed_count INT NOT NULL DEFAULT 0,
|
||||
last_failed_at DATETIME NULL,
|
||||
locked_until DATETIME NULL,
|
||||
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
modified_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
|
||||
`);
|
||||
await ensureColumn(pool, 'a_users', 'account_locked', 'TINYINT(1) NOT NULL DEFAULT 0', 'must_change_password');
|
||||
await ensureColumn(pool, 'a_sessions', 'ip_address', 'VARCHAR(255) NULL', 'user_id');
|
||||
await ensureColumn(pool, 'a_sessions', 'user_agent', 'VARCHAR(512) NULL', 'ip_address');
|
||||
await pool.query(`
|
||||
CREATE TABLE IF NOT EXISTS o_audit_events (
|
||||
id BIGINT AUTO_INCREMENT PRIMARY KEY,
|
||||
occurred_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
category VARCHAR(64) NOT NULL,
|
||||
event_type VARCHAR(128) NOT NULL,
|
||||
actor_user_id INT NULL,
|
||||
target_type VARCHAR(64) NULL,
|
||||
target_id VARCHAR(191) NULL,
|
||||
target_label VARCHAR(255) NULL,
|
||||
ip_address VARCHAR(255) NULL,
|
||||
user_agent VARCHAR(512) NULL,
|
||||
details_json JSON NULL,
|
||||
INDEX idx_audit_events_occurred_at (occurred_at),
|
||||
INDEX idx_audit_events_category_type (category, event_type),
|
||||
INDEX idx_audit_events_actor (actor_user_id),
|
||||
INDEX idx_audit_events_target (target_type, target_id)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
|
||||
`);
|
||||
await pool.query(
|
||||
`INSERT INTO o_app_settings (setting_key, setting_value, created_by, modified_by)
|
||||
VALUES (?, ?, NULL, NULL) ON DUPLICATE KEY UPDATE setting_value = VALUES(setting_value)`,
|
||||
['audit.retention_days', JSON.stringify(30)]
|
||||
);
|
||||
const settings = [
|
||||
['audit.enabled', true],
|
||||
['audit.categories', ['authentication', 'security', 'sessions', 'users', 'roles', 'system-settings']],
|
||||
['audit.include_request_metadata', true]
|
||||
];
|
||||
for (const [key, value] of settings) {
|
||||
await pool.query(
|
||||
`INSERT INTO o_app_settings (setting_key, setting_value, created_by, modified_by)
|
||||
VALUES (?, ?, NULL, NULL) ON DUPLICATE KEY UPDATE setting_value = VALUES(setting_value)`,
|
||||
[key, JSON.stringify(value)]
|
||||
);
|
||||
}
|
||||
await pool.query(
|
||||
`INSERT IGNORE INTO a_permissions
|
||||
(permission_key, name, section_name, description, created_by, modified_by)
|
||||
VALUES (?, ?, ?, ?, NULL, NULL)`,
|
||||
['audit-log.allow', 'Audit log', 'Settings', 'Download filtered audit events.']
|
||||
);
|
||||
await pool.query(
|
||||
`INSERT IGNORE INTO a_role_permissions (role_id, permission_id, created_by, modified_by)
|
||||
SELECT roles.id, permissions.id, NULL, NULL
|
||||
FROM a_roles roles
|
||||
CROSS JOIN a_permissions permissions
|
||||
WHERE roles.role_key = 'administrators'
|
||||
AND permissions.permission_key = 'audit-log.allow'`
|
||||
);
|
||||
}
|
||||
},
|
||||
{
|
||||
version: '2.8.7',
|
||||
label: 'v2.8.7 API request and token authentication schema',
|
||||
run: async function (pool) {
|
||||
await ensureColumn(pool, 'i_api_sources', 'request_method', "VARCHAR(10) NOT NULL DEFAULT 'GET'", 'api_url');
|
||||
await ensureColumn(pool, 'i_api_sources', 'request_body_json', 'MEDIUMTEXT NULL', 'request_method');
|
||||
await ensureColumn(pool, 'i_api_sources', 'token_url', 'VARCHAR(1024) NULL', 'auth_header_value');
|
||||
await ensureColumn(pool, 'i_api_sources', 'token_request_body_json', 'MEDIUMTEXT NULL', 'token_url');
|
||||
await ensureColumn(pool, 'i_api_sources', 'token_response_path', "VARCHAR(255) NULL DEFAULT 'access_token'", 'token_request_body_json');
|
||||
await ensureColumn(pool, 'i_api_sources', 'token_header_name', "VARCHAR(255) NULL DEFAULT 'Authorization'", 'token_response_path');
|
||||
await ensureColumn(pool, 'i_api_sources', 'token_header_prefix', "VARCHAR(64) NULL DEFAULT 'Bearer'", 'token_header_name');
|
||||
}
|
||||
},
|
||||
{
|
||||
version: '2.8.8',
|
||||
label: 'v2.8.8 weather locations and RSS collection timestamps schema',
|
||||
run: async function (pool) {
|
||||
await pool.query(`
|
||||
CREATE TABLE IF NOT EXISTS i_weather_locations (
|
||||
id BIGINT AUTO_INCREMENT PRIMARY KEY,
|
||||
name VARCHAR(255) NOT NULL UNIQUE,
|
||||
location_label VARCHAR(255) NOT NULL,
|
||||
latitude DECIMAL(9,6) NOT NULL,
|
||||
longitude DECIMAL(9,6) NOT NULL,
|
||||
timezone VARCHAR(128) NOT NULL,
|
||||
provider VARCHAR(32) NOT NULL DEFAULT 'open-meteo',
|
||||
temperature_unit VARCHAR(16) NOT NULL DEFAULT 'celsius',
|
||||
wind_unit VARCHAR(16) NOT NULL DEFAULT 'kmh',
|
||||
precipitation_unit VARCHAR(16) NOT NULL DEFAULT 'mm',
|
||||
update_interval_value INT NOT NULL DEFAULT 30,
|
||||
update_interval_unit VARCHAR(16) NOT NULL DEFAULT 'minutes',
|
||||
last_pulled_at DATETIME NULL,
|
||||
last_pull_error VARCHAR(1024) NULL,
|
||||
last_response_json MEDIUMTEXT NULL,
|
||||
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
created_by INT NULL,
|
||||
modified_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
modified_by INT NULL,
|
||||
INDEX idx_weather_locations_modified_at (modified_at)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
|
||||
`);
|
||||
await ensureColumn(pool, 'i_rss_feeds', 'last_pulled_at', 'DATETIME NULL', 'item_limit');
|
||||
}
|
||||
},
|
||||
{
|
||||
version: '2.8.9',
|
||||
label: 'v2.8.9 data source enablement schema',
|
||||
run: async function (pool) {
|
||||
await ensureColumn(pool, 'i_api_sources', 'enabled', 'TINYINT(1) NOT NULL DEFAULT 1', 'api_url');
|
||||
await ensureColumn(pool, 'i_rss_feeds', 'enabled', 'TINYINT(1) NOT NULL DEFAULT 1', 'feed_url');
|
||||
await ensureColumn(pool, 'i_weather_locations', 'enabled', 'TINYINT(1) NOT NULL DEFAULT 1', 'precipitation_unit');
|
||||
}
|
||||
},
|
||||
{
|
||||
version: '2.10.1',
|
||||
label: 'v2.10.1 template background gradient schema',
|
||||
run: async function (pool) {
|
||||
await ensureColumn(pool, 'c_templates', 'background_gradient', 'LONGTEXT NULL', 'background_color');
|
||||
}
|
||||
}
|
||||
];
|
||||
|
||||
@@ -431,7 +598,7 @@ async function detectSchemaVersion(pool) {
|
||||
const scheduleGroupsExists = await tableExists(pool, 'i_schedule_groups');
|
||||
const scheduleEntriesExists = await tableExists(pool, 'i_schedule_entries');
|
||||
|
||||
if ((timetableGroupsExists || timetableEntriesExists) && !scheduleGroupsExists && !scheduleEntriesExists) {
|
||||
if (timetableGroupsExists && timetableEntriesExists && !scheduleGroupsExists && !scheduleEntriesExists) {
|
||||
return '2.6.18';
|
||||
}
|
||||
|
||||
@@ -441,16 +608,22 @@ async function detectSchemaVersion(pool) {
|
||||
async function recordSchemaVersion(pool, version) {
|
||||
await pool.query(
|
||||
`CREATE TABLE IF NOT EXISTS ${APP_STATE_TABLE} (
|
||||
state_key VARCHAR(191) NOT NULL PRIMARY KEY,
|
||||
id BIGINT AUTO_INCREMENT PRIMARY KEY,
|
||||
state_key VARCHAR(191) NOT NULL UNIQUE,
|
||||
state_value MEDIUMTEXT NULL,
|
||||
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
modified_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci`
|
||||
);
|
||||
|
||||
const stateValue = String(version || appVersion || '0.0.0').trim();
|
||||
await pool.query(
|
||||
'INSERT INTO ' + APP_STATE_TABLE + ' (state_key, state_value) VALUES (?, ?) ON DUPLICATE KEY UPDATE state_value = VALUES(state_value)',
|
||||
[APP_STATE_SCHEMA_VERSION_KEY, String(version || appVersion || '0.0.0').trim()]
|
||||
'UPDATE ' + APP_STATE_TABLE + ' SET state_value = ? WHERE state_key = ?',
|
||||
[stateValue, APP_STATE_SCHEMA_VERSION_KEY]
|
||||
);
|
||||
await pool.query(
|
||||
'INSERT INTO ' + APP_STATE_TABLE + ' (state_key, state_value) SELECT ?, ? WHERE NOT EXISTS (SELECT 1 FROM ' + APP_STATE_TABLE + ' WHERE state_key = ?)',
|
||||
[APP_STATE_SCHEMA_VERSION_KEY, stateValue, APP_STATE_SCHEMA_VERSION_KEY]
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
+173
-22
@@ -13,6 +13,7 @@ const { commitDeviceBinding, bindPlayerToScreen, getOnboardingStatus, getPlayerP
|
||||
const { createStyledQrCodeSvg } = require('../data/qr-code');
|
||||
const { verifyPageAuthToken } = require('#src/request-auth');
|
||||
|
||||
|
||||
function createThinClientConfig() {
|
||||
return {
|
||||
port: Number(process.env.THIN_CLIENT_PORT || 8090),
|
||||
@@ -187,6 +188,7 @@ async function start() {
|
||||
const playerPlaylistService = createPlayerPlaylistService({
|
||||
pool: pool,
|
||||
common: common,
|
||||
mediaDir: config.mediaDir,
|
||||
snapshotDir: path.join(config.mediaDir, 'player-cache', 'screen-playlists')
|
||||
});
|
||||
app.use(express.json());
|
||||
@@ -353,6 +355,27 @@ async function start() {
|
||||
return socket && socket.playerDeviceId ? String(socket.playerDeviceId).trim() : '';
|
||||
}
|
||||
|
||||
function findPlayerByPairingCode(pairingCode) {
|
||||
const normalizedCode = String(pairingCode || '').trim().toUpperCase();
|
||||
if (!normalizedCode) {
|
||||
return null;
|
||||
}
|
||||
for (const [deviceId, socket] of playerSockets.entries()) {
|
||||
const pairingCodes = socket && Array.isArray(socket.pairingSessions)
|
||||
? socket.pairingSessions.map(function (entry) { return entry.code; })
|
||||
: (socket && Array.isArray(socket.pairingCodes) ? socket.pairingCodes : [socket && socket.pairingCode]);
|
||||
if (socket && pairingCodes.some(function (code) {
|
||||
return String(code || '').trim().toUpperCase() === normalizedCode;
|
||||
})) {
|
||||
const session = socket.pairingSessions && socket.pairingSessions.find(function (entry) {
|
||||
return String(entry.code || '').trim().toUpperCase() === normalizedCode;
|
||||
});
|
||||
return { deviceId: deviceId, socket: socket, clientId: session && session.clientId ? session.clientId : null, code: normalizedCode };
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
function removeConnectedPlayerSocket(socket) {
|
||||
if (!socket || !socket.playerDeviceId) {
|
||||
return false;
|
||||
@@ -513,6 +536,21 @@ async function start() {
|
||||
};
|
||||
}
|
||||
|
||||
function requireOnboardingAuth(req, res, next) {
|
||||
const token = String(req.headers['x-pulse-page-auth'] || '').trim();
|
||||
const payload = verifyPageAuthToken(token);
|
||||
if (payload && ['onboarding', 'player'].indexOf(String(payload.scope || '').trim()) !== -1) {
|
||||
req.playerPageAuth = payload;
|
||||
return next();
|
||||
}
|
||||
|
||||
if (verifyRequestAuth(req)) {
|
||||
return next();
|
||||
}
|
||||
|
||||
return res.status(401).json({ error: 'Onboarding authentication required.' });
|
||||
}
|
||||
|
||||
app.get('/api/media/config', requireRequestAuth, function (_req, res) {
|
||||
res.json({
|
||||
mediaDir: config.mediaDir,
|
||||
@@ -629,12 +667,45 @@ async function start() {
|
||||
}
|
||||
});
|
||||
|
||||
app.post('/api/screens/:slug/announcements/refresh', requireRequestAuth, function (req, res) {
|
||||
const slug = String(req.params.slug || '').trim();
|
||||
if (!slug) {
|
||||
return res.status(400).json({ error: 'Screen slug is required.' });
|
||||
}
|
||||
|
||||
const targetPlayers = Array.from(playerSockets.values()).filter(function (socket) {
|
||||
return socket && socket.readyState === WebSocket.OPEN;
|
||||
}).map(function (socket) {
|
||||
return { socket: socket };
|
||||
});
|
||||
let sent = 0;
|
||||
targetPlayers.forEach(function (target) {
|
||||
if (!target || !target.socket || target.socket.readyState !== WebSocket.OPEN) {
|
||||
return;
|
||||
}
|
||||
|
||||
try {
|
||||
target.socket.send(JSON.stringify({
|
||||
type: 'command',
|
||||
command: 'announcement-refresh',
|
||||
screenSlug: slug,
|
||||
sentAt: new Date().toISOString()
|
||||
}));
|
||||
sent += 1;
|
||||
} catch (_error) {
|
||||
}
|
||||
});
|
||||
|
||||
return res.json({ ok: true, screenSlug: slug, sent: sent });
|
||||
});
|
||||
|
||||
app.get('/api/onboarding/status', async function (req, res, next) {
|
||||
try {
|
||||
const deviceId = normalizeDeviceId(req.query.deviceId) || getConnectedPlayerDeviceId();
|
||||
const requestedDeviceId = normalizeDeviceId(req.query.deviceId);
|
||||
const deviceId = requestedDeviceId;
|
||||
const status = await getOnboardingStatus(pool, deviceId);
|
||||
res.json({
|
||||
deviceId: normalizeDeviceId(deviceId),
|
||||
deviceId: requestedDeviceId,
|
||||
onboarded: Boolean(status && status.screen_id),
|
||||
clientName: status ? status.client_name : null,
|
||||
screenId: status ? status.screen_id : null,
|
||||
@@ -647,6 +718,58 @@ async function start() {
|
||||
}
|
||||
});
|
||||
|
||||
app.get('/api/onboarding/resolve', requireRequestAuth, function (req, res) {
|
||||
const pairing = findPlayerByPairingCode(req.query.pairingCode);
|
||||
if (!pairing) {
|
||||
return res.status(401).json({ error: 'A valid kiosk pairing code is required.' });
|
||||
}
|
||||
res.json({
|
||||
deviceId: pairing.deviceId,
|
||||
clientId: pairing.clientId || null,
|
||||
});
|
||||
});
|
||||
|
||||
app.get('/api/onboarding/url', requireRequestAuth, function (req, res) {
|
||||
const pairing = findPlayerByPairingCode(req.query.pairingCode);
|
||||
if (!pairing) {
|
||||
return res.status(401).json({ error: 'A valid kiosk pairing code is required.' });
|
||||
}
|
||||
const webBaseUrl = String(process.env.WEB_PUBLIC_URL || '').trim().replace(/\/$/, '');
|
||||
if (!webBaseUrl) {
|
||||
return res.status(503).json({ error: 'WEB_PUBLIC_URL is not configured on the bridge.' });
|
||||
}
|
||||
res.json({ url: `${webBaseUrl}/pairing?code=${encodeURIComponent(pairing.code)}` });
|
||||
});
|
||||
|
||||
app.get('/api/onboarding/qr', requireRequestAuth, async function (req, res, next) {
|
||||
try {
|
||||
const pairing = findPlayerByPairingCode(req.query.pairingCode);
|
||||
if (!pairing) {
|
||||
return res.status(401).json({ error: 'A valid kiosk pairing code is required.' });
|
||||
}
|
||||
const webBaseUrl = String(process.env.WEB_PUBLIC_URL || '').trim().replace(/\/$/, '');
|
||||
if (!webBaseUrl) {
|
||||
return res.status(503).json({ error: 'WEB_PUBLIC_URL is not configured on the bridge.' });
|
||||
}
|
||||
const svg = await createStyledQrCodeSvg({
|
||||
value: `${webBaseUrl}/pairing?code=${encodeURIComponent(pairing.code)}`,
|
||||
qr_margin: 20,
|
||||
qr_dots_type: 'dots',
|
||||
qr_dots_color: '#f4f8f5',
|
||||
qr_corners_square_type: 'dot',
|
||||
qr_corners_square_color: '#f4f8f5',
|
||||
qr_corners_dot_type: 'dot',
|
||||
qr_corners_dot_color: '#f0bd70',
|
||||
qr_background_transparent: true
|
||||
});
|
||||
res.set('Content-Type', 'image/svg+xml; charset=utf-8');
|
||||
res.set('Cache-Control', 'no-store');
|
||||
res.send(svg);
|
||||
} catch (error) {
|
||||
next(error);
|
||||
}
|
||||
});
|
||||
|
||||
app.get('/api/onboarding/screens', requirePageAuth(['onboarding', 'player']), async function (_req, res, next) {
|
||||
try {
|
||||
const [rows] = await pool.query('SELECT id, name, slug FROM d_screens ORDER BY name ASC, id ASC');
|
||||
@@ -656,25 +779,18 @@ async function start() {
|
||||
}
|
||||
});
|
||||
|
||||
app.get('/api/onboarding/qr', async function (req, res, next) {
|
||||
app.post('/api/onboarding', express.json(), requireOnboardingAuth, async function (req, res, next) {
|
||||
try {
|
||||
const deviceId = normalizeDeviceId(req.query.deviceId) || getConnectedPlayerDeviceId();
|
||||
if (!deviceId) {
|
||||
return res.status(400).json({ error: 'Device ID is required' });
|
||||
const pairingCode = String(req.body && req.body.pairingCode || '').trim().toUpperCase();
|
||||
const pairing = findPlayerByPairingCode(pairingCode);
|
||||
const clientId = normalizeDeviceId(req.body && req.body.clientId);
|
||||
if (!pairing) {
|
||||
return res.status(401).json({ error: 'A valid kiosk pairing code is required.' });
|
||||
}
|
||||
const onboardingUrl = `${getPlayerPublicBaseUrl(req)}/onboard?deviceId=${encodeURIComponent(deviceId)}`;
|
||||
const svg = await createStyledQrCodeSvg({ value: onboardingUrl, qr_margin: 20 });
|
||||
res.set('Content-Type', 'image/svg+xml; charset=utf-8');
|
||||
res.set('Cache-Control', 'no-store');
|
||||
res.send(svg);
|
||||
} catch (error) {
|
||||
next(error);
|
||||
}
|
||||
});
|
||||
|
||||
app.post('/api/onboarding', requirePageAuth(['onboarding', 'player']), express.json(), async function (req, res, next) {
|
||||
try {
|
||||
const deviceId = normalizeDeviceId(req.body && req.body.deviceId) || getConnectedPlayerDeviceId();
|
||||
if (!clientId) {
|
||||
return res.status(400).json({ error: 'Client ID is required.' });
|
||||
}
|
||||
const deviceId = pairing.deviceId;
|
||||
const clientName = String((req.body && req.body.clientName) || '').trim();
|
||||
const screenSlug = String((req.body && req.body.screenSlug) || '').trim();
|
||||
if (!deviceId) {
|
||||
@@ -687,8 +803,13 @@ async function start() {
|
||||
return res.status(400).json({ error: 'Screen is required' });
|
||||
}
|
||||
|
||||
const status = await commitDeviceBinding(pool, deviceId, clientName, screenSlug, null, []);
|
||||
const status = await commitDeviceBinding(pool, clientId, clientName, screenSlug, null, []);
|
||||
await bindPlayerToScreen(pool, deviceId, screenSlug);
|
||||
await sendPlayerCommandToSocket(pairing.socket, {
|
||||
command: 'redirect',
|
||||
url: `${String(pairing.socket.publicBaseUrl || getPlayerPublicBaseUrl(req)).replace(/\/$/, '')}/screen/${encodeURIComponent(screenSlug)}`,
|
||||
clientId: clientId
|
||||
});
|
||||
res.json({
|
||||
deviceId: deviceId,
|
||||
clientName: status ? status.client_name : clientName,
|
||||
@@ -708,6 +829,11 @@ async function start() {
|
||||
|
||||
app.get('/api/screens/:slug/playlist', requirePageAuth(['player']), async function (req, res, next) {
|
||||
try {
|
||||
const clientId = String(req.headers['x-pulse-client-id'] || '').trim();
|
||||
const status = await getOnboardingStatus(pool, clientId);
|
||||
if (!clientId || !status || String(status.screen_slug || '').trim() !== String(req.params.slug || '').trim()) {
|
||||
return res.status(403).json({ error: 'This browser tab is not authorized for this screen.' });
|
||||
}
|
||||
res.set('Cache-Control', 'no-store, no-cache, must-revalidate, proxy-revalidate');
|
||||
const data = await playerPlaylistService.buildScreenPlaylist(req.params.slug);
|
||||
if (!data.screen) {
|
||||
@@ -728,6 +854,11 @@ async function start() {
|
||||
|
||||
app.get('/api/screens/:slug/announcement', requirePageAuth(['player']), async function (req, res, next) {
|
||||
try {
|
||||
const clientId = String(req.headers['x-pulse-client-id'] || '').trim();
|
||||
const status = await getOnboardingStatus(pool, clientId);
|
||||
if (!clientId || !status || String(status.screen_slug || '').trim() !== String(req.params.slug || '').trim()) {
|
||||
return res.status(403).json({ error: 'This browser tab is not authorized for this screen.' });
|
||||
}
|
||||
res.set('Cache-Control', 'no-store, no-cache, must-revalidate, proxy-revalidate');
|
||||
const announcement = typeof common.fetchActiveAnnouncement === 'function'
|
||||
? await common.fetchActiveAnnouncement(pool, req.params.slug)
|
||||
@@ -840,6 +971,17 @@ async function start() {
|
||||
}
|
||||
|
||||
socket.playerDeviceId = deviceId;
|
||||
socket.pairingSessions = Array.isArray(payload.pairingSessions) ? payload.pairingSessions.map(function (entry) {
|
||||
return {
|
||||
deviceId: normalizeDeviceId(entry && entry.deviceId),
|
||||
clientId: normalizeDeviceId(entry && entry.clientId),
|
||||
code: String(entry && entry.code || '').trim().toUpperCase()
|
||||
};
|
||||
}).filter(function (entry) { return entry.deviceId && entry.code; }) : [];
|
||||
socket.pairingCodes = Array.from(new Set((Array.isArray(payload.pairingCodes) ? payload.pairingCodes : [payload.pairingCode]).map(function (value) {
|
||||
return String(value || '').trim().toUpperCase();
|
||||
}).filter(Boolean)));
|
||||
socket.pairingCode = socket.pairingCodes[0] || '';
|
||||
|
||||
if (messageType === 'snapshot') {
|
||||
const slug = String(payload.slug || '').trim();
|
||||
@@ -852,19 +994,28 @@ async function start() {
|
||||
}
|
||||
|
||||
if (messageType === 'register') {
|
||||
socket.publicBaseUrl = String(payload.publicBaseUrl || '').trim().replace(/\/$/, '');
|
||||
const player = await upsertPlayerRegistration(pool, {
|
||||
deviceId: deviceId,
|
||||
publicBaseUrl: payload.publicBaseUrl,
|
||||
internalBaseUrl: payload.internalBaseUrl
|
||||
});
|
||||
|
||||
const previousSocket = playerSockets.get(deviceId);
|
||||
playerSockets.set(deviceId, socket);
|
||||
if (previousSocket && previousSocket !== socket && previousSocket.readyState !== WebSocket.CLOSED) {
|
||||
try {
|
||||
previousSocket.close(1000, 'Replaced by a newer player connection.');
|
||||
} catch (_error) {
|
||||
}
|
||||
}
|
||||
logBridge(`Player ${formatPlayerConnectionLabel(deviceId)} has connected`);
|
||||
socket.send(JSON.stringify({ type: 'registered', ok: true, player: player }));
|
||||
return;
|
||||
}
|
||||
|
||||
if (messageType === 'heartbeat') {
|
||||
socket.publicBaseUrl = String(payload.publicBaseUrl || socket.publicBaseUrl || '').trim().replace(/\/$/, '');
|
||||
const player = await recordPlayerHeartbeat(pool, {
|
||||
deviceId: deviceId,
|
||||
publicBaseUrl: payload.publicBaseUrl,
|
||||
@@ -927,15 +1078,15 @@ async function start() {
|
||||
});
|
||||
|
||||
socket.on('close', function () {
|
||||
clearPlayerSnapshotSources(socket.playerDeviceId);
|
||||
if (removeConnectedPlayerSocket(socket)) {
|
||||
clearPlayerSnapshotSources(socket.playerDeviceId);
|
||||
logPlayerDisconnect(socket);
|
||||
}
|
||||
});
|
||||
|
||||
socket.on('error', function () {
|
||||
clearPlayerSnapshotSources(socket.playerDeviceId);
|
||||
if (removeConnectedPlayerSocket(socket)) {
|
||||
clearPlayerSnapshotSources(socket.playerDeviceId);
|
||||
logPlayerDisconnect(socket);
|
||||
}
|
||||
});
|
||||
|
||||
+24
-4
@@ -37,6 +37,9 @@ async function start() {
|
||||
let lastDisconnectAt = 0;
|
||||
let playerPublicBaseUrl = PLAYER_PUBLIC_URL || null;
|
||||
let refreshThinClientRegistration = null;
|
||||
let activePairingCode = '';
|
||||
let activePairingCodes = [];
|
||||
let activePairingSessions = [];
|
||||
const playerRuntime = createPlayerRuntime({
|
||||
pool: pool,
|
||||
normalizeDeviceId: normalizeDeviceId,
|
||||
@@ -61,6 +64,7 @@ async function start() {
|
||||
: createPlayerPlaylistService({
|
||||
pool: pool,
|
||||
common: common,
|
||||
mediaDir: MEDIA_DIR,
|
||||
snapshotDir: path.join(MEDIA_DIR, 'player-cache', 'screen-playlists')
|
||||
});
|
||||
const rtmpStreamService = createRtmpStreamService({
|
||||
@@ -261,7 +265,7 @@ async function start() {
|
||||
}
|
||||
response.ok = true;
|
||||
}
|
||||
} else if (['refresh', 'reload', 'redirect', 'pause', 'blackout', 'previous', 'next', 'setclientname'].indexOf(command) !== -1) {
|
||||
} else if (['refresh', 'reload', 'redirect', 'pause', 'blackout', 'previous', 'next', 'setclientname', 'announcement-refresh'].indexOf(command) !== -1) {
|
||||
const screenSlug = String(payload.screenSlug || payload.slug || '').trim();
|
||||
if (!screenSlug) {
|
||||
response.error = 'Screen slug is required.';
|
||||
@@ -304,7 +308,17 @@ async function start() {
|
||||
playerPublicBaseUrl: getPlayerPublicBaseUrl(),
|
||||
playerInternalBaseUrl: PLAYER_INTERNAL_URL,
|
||||
bridgeBaseUrl: BRIDGE_PUBLIC_URL,
|
||||
playerDeviceId: PLAYER_DEVICE_ID
|
||||
playerDeviceId: PLAYER_DEVICE_ID,
|
||||
onPairingCode: function (code, codes) {
|
||||
activePairingCode = String(code || '').trim().toUpperCase();
|
||||
activePairingSessions = Array.isArray(codes) ? codes.map(function (entry) {
|
||||
return { deviceId: String(entry && entry.deviceId || '').trim(), clientId: String(entry && entry.clientId || '').trim(), code: String(entry && entry.code || '').trim().toUpperCase() };
|
||||
}).filter(function (entry) { return entry.deviceId && entry.code; }) : [];
|
||||
activePairingCodes = activePairingSessions.map(function (entry) { return entry.code; });
|
||||
if (typeof refreshThinClientRegistration === 'function') {
|
||||
refreshThinClientRegistration();
|
||||
}
|
||||
}
|
||||
});
|
||||
registerPlayerRoutes(app, {
|
||||
pool: pool,
|
||||
@@ -374,7 +388,10 @@ async function start() {
|
||||
type: 'heartbeat',
|
||||
deviceId: PLAYER_DEVICE_ID,
|
||||
publicBaseUrl: getPlayerPublicBaseUrl(),
|
||||
internalBaseUrl: PLAYER_INTERNAL_URL
|
||||
internalBaseUrl: PLAYER_INTERNAL_URL,
|
||||
pairingCode: activePairingCode,
|
||||
pairingCodes: activePairingCodes,
|
||||
pairingSessions: activePairingSessions
|
||||
}));
|
||||
}
|
||||
|
||||
@@ -438,7 +455,10 @@ async function start() {
|
||||
type: 'register',
|
||||
deviceId: PLAYER_DEVICE_ID,
|
||||
publicBaseUrl: getPlayerPublicBaseUrl(),
|
||||
internalBaseUrl: PLAYER_INTERNAL_URL
|
||||
internalBaseUrl: PLAYER_INTERNAL_URL,
|
||||
pairingCode: activePairingCode,
|
||||
pairingCodes: activePairingCodes,
|
||||
pairingSessions: activePairingSessions
|
||||
}));
|
||||
|
||||
playerRuntime.snapshotSlugs().forEach(function (slug) {
|
||||
|
||||
+198
-15
@@ -1,20 +1,44 @@
|
||||
// Player onboarding routes and signup flow helpers.
|
||||
|
||||
const express = require('express');
|
||||
const crypto = require('crypto');
|
||||
const { isClientNameAvailable, withClientNameReservation } = require('#src/data/client-name-check');
|
||||
const { createStyledQrCodeSvg } = require('#src/data/qr-code');
|
||||
const { getSharedSecret, verifyPageAuthToken, createRequestAuthHeaders } = require('#src/request-auth');
|
||||
const { getSharedSecret, verifyPageAuthToken, verifyRequestAuth, createRequestAuthHeaders } = require('#src/request-auth');
|
||||
const { resolvePlayerRegistration, upsertPlayerRegistration: upsertPlayerRegistrationRecord } = require('#src/data/player-registry');
|
||||
const { isTransientDbError } = require('./store');
|
||||
|
||||
const ONBOARDING_SIGNUP_LIMIT_WINDOW_MS = 5 * 60 * 1000;
|
||||
const ONBOARDING_SIGNUP_LIMIT_MAX_ATTEMPTS = 8;
|
||||
const PAIRING_CODE_LENGTH = 6;
|
||||
const PAIRING_CODE_TTL_MS = 15 * 60 * 1000;
|
||||
const PAIRING_CODE_ALPHABET = 'ABCDEFGHJKLMNPQRSTUVWXYZ23456789';
|
||||
const onboardingSignupAttempts = new Map();
|
||||
|
||||
function normalizeDeviceId(value) {
|
||||
return String(value || '').trim().replace(/[^a-zA-Z0-9_-]/g, '').slice(0, 128);
|
||||
}
|
||||
|
||||
function createPairingCode() {
|
||||
const bytes = crypto.randomBytes(PAIRING_CODE_LENGTH);
|
||||
let code = '';
|
||||
for (let index = 0; index < PAIRING_CODE_LENGTH; index += 1) {
|
||||
code += PAIRING_CODE_ALPHABET[bytes[index] % PAIRING_CODE_ALPHABET.length];
|
||||
}
|
||||
return code;
|
||||
}
|
||||
|
||||
function createPairingSession(deviceId, clientId) {
|
||||
return { deviceId: normalizeDeviceId(deviceId), clientId: normalizeDeviceId(clientId), code: createPairingCode(), expiresAt: Date.now() + PAIRING_CODE_TTL_MS };
|
||||
}
|
||||
|
||||
function isValidOnboardingPairingCode(pairingSession, pairingCode, now) {
|
||||
const suppliedCode = Buffer.from(String(pairingCode || '').trim().toUpperCase());
|
||||
const expectedCode = Buffer.from(String(pairingSession && pairingSession.code || '').trim());
|
||||
const currentTime = Number(now || Date.now());
|
||||
return Boolean(pairingSession && pairingSession.deviceId && pairingSession.expiresAt > currentTime && suppliedCode.length === expectedCode.length && suppliedCode.length > 0 && crypto.timingSafeEqual(suppliedCode, expectedCode));
|
||||
}
|
||||
|
||||
function getPublicBaseUrl(req, configuredUrl) {
|
||||
const forwardedProto = String(req.headers['x-forwarded-proto'] || '').trim().split(',')[0];
|
||||
const protocol = forwardedProto || (req.socket && req.socket.encrypted ? 'https' : 'http');
|
||||
@@ -120,7 +144,7 @@ async function commitDeviceBinding(pool, deviceId, clientName, screenSlug, isNam
|
||||
}
|
||||
const screen = screenRows[0];
|
||||
|
||||
const available = await isClientNameAvailable(pool, normalizedClientName, normalizedDeviceId, liveConnections);
|
||||
const available = await isClientNameAvailable(pool, normalizedClientName, null, liveConnections);
|
||||
if (!available) {
|
||||
const error = new Error('Client name already exists.');
|
||||
error.statusCode = 400;
|
||||
@@ -128,8 +152,18 @@ async function commitDeviceBinding(pool, deviceId, clientName, screenSlug, isNam
|
||||
}
|
||||
|
||||
await pool.query(
|
||||
'INSERT INTO d_onboarding_devices (device_id, client_name, screen_id) VALUES (?, ?, ?) ON DUPLICATE KEY UPDATE client_name = VALUES(client_name), screen_id = VALUES(screen_id), modified_at = CURRENT_TIMESTAMP',
|
||||
[normalizedDeviceId, normalizedClientName, screen.id]
|
||||
`UPDATE d_onboarding_devices
|
||||
SET client_name = ?, screen_id = ?, modified_at = CURRENT_TIMESTAMP
|
||||
WHERE device_id = ?`,
|
||||
[normalizedClientName, screen.id, normalizedDeviceId]
|
||||
);
|
||||
await pool.query(
|
||||
`INSERT INTO d_onboarding_devices (device_id, client_name, screen_id)
|
||||
SELECT ?, ?, ?
|
||||
WHERE NOT EXISTS (
|
||||
SELECT 1 FROM d_onboarding_devices WHERE device_id = ?
|
||||
)`,
|
||||
[normalizedDeviceId, normalizedClientName, screen.id, normalizedDeviceId]
|
||||
);
|
||||
|
||||
return getOnboardingStatus(pool, normalizedDeviceId);
|
||||
@@ -207,6 +241,38 @@ function registerPlayerOnboardingRoutes(app, options) {
|
||||
const playerPublicUrl = String(options && options.playerPublicBaseUrl || process.env.PLAYER_PUBLIC_URL || process.env.PLAYER_BASE_URL || '').trim().replace(/\/$/, '');
|
||||
const bridgeBaseUrl = String(options && options.bridgeBaseUrl || process.env.BRIDGE_PUBLIC_URL || '').trim().replace(/\/$/, '');
|
||||
const playerDeviceId = normalizeDeviceId(options && options.playerDeviceId);
|
||||
const onPairingCode = options && typeof options.onPairingCode === 'function' ? options.onPairingCode : null;
|
||||
const pairingSessions = new Map();
|
||||
|
||||
function getPairingSession(deviceId, clientId) {
|
||||
const normalizedDeviceId = normalizeDeviceId(deviceId) || playerDeviceId;
|
||||
if (!normalizedDeviceId) {
|
||||
return null;
|
||||
}
|
||||
const sessionKey = `${normalizedDeviceId}:${normalizeDeviceId(clientId) || 'default'}`;
|
||||
let pairingSession = pairingSessions.get(sessionKey);
|
||||
if (!isValidOnboardingPairingCode(pairingSession, pairingSession && pairingSession.code)) {
|
||||
pairingSession = createPairingSession(normalizedDeviceId, clientId);
|
||||
pairingSessions.set(sessionKey, pairingSession);
|
||||
}
|
||||
if (onPairingCode) {
|
||||
onPairingCode(pairingSession.code, Array.from(pairingSessions.entries()).filter(function (entry) {
|
||||
return isValidOnboardingPairingCode(entry[1], entry[1] && entry[1].code);
|
||||
}).map(function (entry) {
|
||||
return { deviceId: entry[1].deviceId, clientId: entry[1].clientId || null, code: entry[1].code };
|
||||
}));
|
||||
}
|
||||
return pairingSession;
|
||||
}
|
||||
|
||||
function findPairingSession(pairingCode) {
|
||||
for (const [deviceId, pairingSession] of pairingSessions.entries()) {
|
||||
if (isValidOnboardingPairingCode(pairingSession, pairingCode)) {
|
||||
return { deviceId: pairingSession.deviceId, session: pairingSession };
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
if (!app || !common) {
|
||||
throw new Error('registerPlayerOnboardingRoutes requires app and common.');
|
||||
@@ -279,15 +345,71 @@ function registerPlayerOnboardingRoutes(app, options) {
|
||||
next();
|
||||
}
|
||||
|
||||
app.get('/', function (_req, res) {
|
||||
function requireOnboardingAuth(req, res, next) {
|
||||
if (!sharedSecret) {
|
||||
return next();
|
||||
}
|
||||
|
||||
const pageToken = String(req.headers['x-pulse-page-auth'] || '').trim();
|
||||
const pagePayload = verifyPageAuthToken(pageToken);
|
||||
if (pagePayload && String(pagePayload.scope || '').trim() === 'onboarding') {
|
||||
req.playerPageAuth = pagePayload;
|
||||
return next();
|
||||
}
|
||||
|
||||
if (verifyRequestAuth(req)) {
|
||||
return next();
|
||||
}
|
||||
|
||||
return res.status(401).json({ error: 'Onboarding authentication required.' });
|
||||
}
|
||||
|
||||
app.get('/', async function (req, res, next) {
|
||||
res.set('Cache-Control', 'no-store, no-cache, must-revalidate, proxy-revalidate');
|
||||
res.send(common.renderPlayerOnboardingLandingPage());
|
||||
try {
|
||||
const deviceId = normalizeDeviceId(req.query && req.query.clientId);
|
||||
let status = null;
|
||||
if (deviceId) {
|
||||
if (bridgeBaseUrl) {
|
||||
const response = await fetchThinClient(req, '/api/onboarding/status?deviceId=' + encodeURIComponent(deviceId), {
|
||||
method: 'GET'
|
||||
});
|
||||
status = await readJsonResponse(response);
|
||||
} else {
|
||||
status = await getOnboardingStatus(pool, deviceId);
|
||||
}
|
||||
}
|
||||
const screenId = status && (status.screen_id || status.screenId);
|
||||
const screenSlug = status && (status.screen_slug || status.screenSlug);
|
||||
if (screenId && screenSlug) {
|
||||
return res.redirect('/screen/' + encodeURIComponent(screenSlug));
|
||||
}
|
||||
res.send(common.renderPlayerOnboardingLandingPage({ pairingCode: '' }));
|
||||
} catch (error) {
|
||||
next(error);
|
||||
}
|
||||
});
|
||||
|
||||
app.get('/onboard', async function (req, res, next) {
|
||||
res.set('Cache-Control', 'no-store, no-cache, must-revalidate, proxy-revalidate');
|
||||
try {
|
||||
res.send(common.renderPlayerOnboardingFormPage(String(req.query.deviceId || playerDeviceId || '').trim()));
|
||||
const deviceId = playerDeviceId;
|
||||
const onboardingBaseUrl = String(process.env.WEB_PUBLIC_URL || '').trim().replace(/\/$/, '') || getPublicBaseUrl(req, playerPublicUrl);
|
||||
const clientId = normalizeDeviceId(req.query.clientId);
|
||||
const pairingSession = getPairingSession(deviceId, clientId);
|
||||
const pairingParams = [];
|
||||
if (pairingSession && pairingSession.code) {
|
||||
pairingParams.push(`code=${encodeURIComponent(pairingSession.code)}`);
|
||||
}
|
||||
const pairingQuery = pairingParams.length ? `?${pairingParams.join('&')}` : '';
|
||||
if (bridgeBaseUrl && pairingSession && pairingSession.code) {
|
||||
const response = await fetchThinClient(req, `/api/onboarding/url?pairingCode=${encodeURIComponent(pairingSession.code)}`);
|
||||
const payload = await readJsonResponse(response);
|
||||
if (payload && payload.url) {
|
||||
return res.redirect(String(payload.url));
|
||||
}
|
||||
}
|
||||
return res.redirect(`${onboardingBaseUrl}/pairing${pairingQuery}`);
|
||||
} catch (error) {
|
||||
next(error);
|
||||
}
|
||||
@@ -305,7 +427,7 @@ function registerPlayerOnboardingRoutes(app, options) {
|
||||
next();
|
||||
}, async function (req, res, next) {
|
||||
try {
|
||||
const deviceId = normalizeDeviceId(req.query.deviceId) || playerDeviceId;
|
||||
const deviceId = normalizeDeviceId(req.query.deviceId || req.query.clientId);
|
||||
if (bridgeBaseUrl) {
|
||||
const response = await fetchThinClient(req, '/api/onboarding/status?deviceId=' + encodeURIComponent(deviceId || ''), {
|
||||
method: 'GET'
|
||||
@@ -337,6 +459,26 @@ function registerPlayerOnboardingRoutes(app, options) {
|
||||
}
|
||||
});
|
||||
|
||||
app.get('/api/onboarding/resolve', requireOnboardingAuth, function (req, res) {
|
||||
const pairingCode = String(req.query.pairingCode || '').trim();
|
||||
const pairing = findPairingSession(pairingCode);
|
||||
if (!pairing) {
|
||||
return res.status(401).json({ error: 'A valid kiosk pairing code is required.' });
|
||||
}
|
||||
res.json({ deviceId: pairing.deviceId, clientId: pairing.session.clientId || null });
|
||||
});
|
||||
|
||||
app.get('/api/onboarding/session', requireOnboardingPageAuth, function (req, res) {
|
||||
const deviceId = normalizeDeviceId(req.query.deviceId) || playerDeviceId;
|
||||
const clientId = normalizeDeviceId(req.query.clientId);
|
||||
const pairingSession = getPairingSession(deviceId, clientId);
|
||||
if (!pairingSession) {
|
||||
return res.status(503).json({ error: 'Player identity is unavailable.' });
|
||||
}
|
||||
res.set('Cache-Control', 'no-store');
|
||||
res.json({ deviceId: deviceId, pairingCode: pairingSession.code });
|
||||
});
|
||||
|
||||
app.get('/api/onboarding/screens', requireOnboardingPageAuth, async function (_req, res, next) {
|
||||
try {
|
||||
if (bridgeBaseUrl) {
|
||||
@@ -356,14 +498,40 @@ function registerPlayerOnboardingRoutes(app, options) {
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
app.get('/api/onboarding/qr', async function (req, res, next) {
|
||||
try {
|
||||
const deviceId = normalizeDeviceId(req.query.deviceId) || playerDeviceId;
|
||||
const clientId = normalizeDeviceId(req.query.clientId);
|
||||
if (!deviceId) {
|
||||
return res.status(400).json({ error: 'Device ID is required' });
|
||||
}
|
||||
const onboardingUrl = `${getPublicBaseUrl(req, playerPublicUrl)}/onboard?deviceId=${encodeURIComponent(deviceId)}`;
|
||||
const svg = await createStyledQrCodeSvg({ value: onboardingUrl, qr_margin: 20 });
|
||||
const pairingSession = getPairingSession(deviceId, clientId);
|
||||
if (!pairingSession) {
|
||||
return res.status(503).json({ error: 'Pairing session is unavailable.' });
|
||||
}
|
||||
if (bridgeBaseUrl) {
|
||||
const response = await fetchThinClient(req, `/api/onboarding/qr?pairingCode=${encodeURIComponent(pairingSession.code)}`);
|
||||
if (response && response.ok) {
|
||||
const svg = await response.text();
|
||||
res.set('Content-Type', response.headers.get('content-type') || 'image/svg+xml; charset=utf-8');
|
||||
res.set('Cache-Control', 'no-store');
|
||||
return res.send(svg);
|
||||
}
|
||||
}
|
||||
const onboardingBaseUrl = String(process.env.WEB_PUBLIC_URL || '').trim().replace(/\/$/, '') || getPublicBaseUrl(req, playerPublicUrl);
|
||||
const onboardingUrl = `${onboardingBaseUrl}/pairing?code=${encodeURIComponent(pairingSession.code)}`;
|
||||
const svg = await createStyledQrCodeSvg({
|
||||
value: onboardingUrl,
|
||||
qr_margin: 20,
|
||||
qr_dots_type: 'dots',
|
||||
qr_dots_color: '#f4f8f5',
|
||||
qr_corners_square_type: 'dot',
|
||||
qr_corners_square_color: '#f4f8f5',
|
||||
qr_corners_dot_type: 'dot',
|
||||
qr_corners_dot_color: '#f0bd70',
|
||||
qr_background_transparent: true
|
||||
});
|
||||
res.set('Content-Type', 'image/svg+xml; charset=utf-8');
|
||||
res.set('Cache-Control', 'no-store');
|
||||
res.send(svg);
|
||||
@@ -372,20 +540,28 @@ function registerPlayerOnboardingRoutes(app, options) {
|
||||
}
|
||||
});
|
||||
|
||||
app.post('/api/onboarding', requireOnboardingPageAuth, express.json(), async function (req, res, next) {
|
||||
app.post('/api/onboarding', express.json(), requireOnboardingAuth, async function (req, res, next) {
|
||||
try {
|
||||
const deviceId = normalizeDeviceId(req.body && req.body.deviceId) || playerDeviceId;
|
||||
const deviceId = playerDeviceId;
|
||||
const clientName = String((req.body && req.body.clientName) || '').trim();
|
||||
const screenSlug = String((req.body && req.body.screenSlug) || '').trim();
|
||||
const pairingCode = String((req.body && req.body.pairingCode) || '').trim();
|
||||
const clientId = normalizeDeviceId(req.body && req.body.clientId);
|
||||
const retryAfterSeconds = isOnboardingSignupRateLimited(req, deviceId);
|
||||
if (retryAfterSeconds) {
|
||||
res.set('Retry-After', String(retryAfterSeconds));
|
||||
return res.status(429).json({ error: 'Too many onboarding attempts. Please try again later.' });
|
||||
}
|
||||
|
||||
const pairing = findPairingSession(pairingCode);
|
||||
const pairingSession = pairing && pairing.session;
|
||||
if (!isValidOnboardingPairingCode(pairingSession, pairingCode)) {
|
||||
return res.status(401).json({ error: 'A valid kiosk pairing code is required.' });
|
||||
}
|
||||
|
||||
if (bridgeBaseUrl) {
|
||||
const forwardedBody = Object.assign({}, req.body || {}, {
|
||||
deviceId: deviceId
|
||||
clientId: clientId || null
|
||||
});
|
||||
const response = await fetch(new URL('/api/onboarding', bridgeBaseUrl).toString(), {
|
||||
method: 'POST',
|
||||
@@ -403,6 +579,9 @@ function registerPlayerOnboardingRoutes(app, options) {
|
||||
if (!payload) {
|
||||
return res.status(502).json({ error: 'Player bridge returned an invalid response.' });
|
||||
}
|
||||
if (response.ok) {
|
||||
pairingSessions.delete(deviceId);
|
||||
}
|
||||
payload.playerUrl = payload && payload.screenSlug ? `${getPublicBaseUrl(req, playerPublicUrl)}/screen/${encodeURIComponent(payload.screenSlug)}` : `${getPublicBaseUrl(req, playerPublicUrl)}/screen/${encodeURIComponent(screenSlug)}`;
|
||||
return res.json(payload);
|
||||
}
|
||||
@@ -416,8 +595,11 @@ function registerPlayerOnboardingRoutes(app, options) {
|
||||
return res.status(400).json({ error: 'Screen is required' });
|
||||
}
|
||||
|
||||
const status = await bindDeviceToScreen(pool, deviceId, clientName, screenSlug, playerRuntime.isClientNameAvailableOnScreen, playerRuntime, onboardingStore);
|
||||
await bindPlayerToScreen(pool, deviceId, screenSlug);
|
||||
if (!clientId) {
|
||||
return res.status(400).json({ error: 'Client ID is required' });
|
||||
}
|
||||
const status = await bindDeviceToScreen(pool, clientId, clientName, screenSlug, playerRuntime.isClientNameAvailableOnScreen, playerRuntime, onboardingStore);
|
||||
pairingSessions.delete(deviceId);
|
||||
res.json({
|
||||
deviceId: deviceId,
|
||||
clientName: status ? status.client_name : clientName,
|
||||
@@ -446,5 +628,6 @@ module.exports = {
|
||||
upsertPlayerRegistration: upsertPlayerRegistration,
|
||||
bindPlayerToScreen: bindPlayerToScreen,
|
||||
bindDeviceToScreen: bindDeviceToScreen,
|
||||
isValidOnboardingPairingCode: isValidOnboardingPairingCode,
|
||||
registerPlayerOnboardingRoutes: registerPlayerOnboardingRoutes
|
||||
};
|
||||
@@ -65,10 +65,11 @@
|
||||
var formData = new FormData(form);
|
||||
var clientName = String(formData.get("clientName") || "").trim();
|
||||
var screenSlug = String(formData.get("screenSlug") || "").trim();
|
||||
var pairingCode = String(formData.get("pairingCode") || "").trim();
|
||||
if (!clientName) { setMessage("Client name is required."); return; }
|
||||
if (!screenSlug) { setMessage("Screen is required."); return; }
|
||||
setMessage("Saving client...");
|
||||
var payload = { clientName: clientName, screenSlug: screenSlug };
|
||||
var payload = { clientName: clientName, screenSlug: screenSlug, pairingCode: pairingCode };
|
||||
if (deviceId) {
|
||||
payload.deviceId = deviceId;
|
||||
}
|
||||
|
||||
@@ -13,23 +13,12 @@
|
||||
}
|
||||
var screenKey = "pulse-signage-player-screen-slug";
|
||||
var qr = document.getElementById("onboarding-qr");
|
||||
var status = document.getElementById("onboarding-status");
|
||||
var localForm = document.getElementById("onboarding-local-form");
|
||||
var localMessage = document.getElementById("onboarding-message");
|
||||
var localScreenSelect = document.getElementById("onboarding-screen-select");
|
||||
var pairingCodeElement = document.getElementById("onboarding-pairing-code");
|
||||
var qrPlaceholderSrc = "data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 320 320%22%3E%3Crect width=%22320%22 height=%22320%22 rx=%2224%22 fill=%22%23ffffff%22/%3E%3Crect x=%2230%22 y=%2230%22 width=%22260%22 height=%22260%22 rx=%2218%22 fill=%22%23f8fafc%22 stroke=%22%23cbd5e1%22 stroke-width=%223%22 stroke-dasharray=%2212 10%22/%3E%3Cpath d=%22M106 118h108M106 156h108M106 194h72%22 stroke=%22%2394a3b8%22 stroke-width=%2214%22 stroke-linecap=%22round%22/%3E%3Ccircle cx=%22128%22 cy=%22248%22 r=%2212%22 fill=%22%2394a3b8%22/%3E%3Ctext x=%22160%22 y=%2278%22 text-anchor=%22middle%22 fill=%22%230f172a%22 font-family=%22Arial,sans-serif%22 font-size=%2224%22 font-weight=%22700%22%3EQR code loading%3C/text%3E%3Ctext x=%22160%22 y=%22266%22 text-anchor=%22middle%22 fill=%22%234b5563%22 font-family=%22Arial,sans-serif%22 font-size=%2214%22%3EPlease wait%3C/text%3E%3C/svg%3E";
|
||||
function parseResponseError(response) {
|
||||
return response.text().then(function (text) {
|
||||
var fallbackMessage = text && text.trim() ? text.trim() : "Unable to save onboarding.";
|
||||
try {
|
||||
var payload = JSON.parse(text);
|
||||
return payload && payload.error ? payload.error : fallbackMessage;
|
||||
} catch (_error) {
|
||||
return fallbackMessage;
|
||||
}
|
||||
});
|
||||
}
|
||||
function getDeviceId() {
|
||||
var configuredDeviceId = document.getElementById("onboarding-shell");
|
||||
configuredDeviceId = configuredDeviceId ? String(configuredDeviceId.getAttribute("data-player-device-id") || "").trim() : "";
|
||||
if (configuredDeviceId) { return configuredDeviceId; }
|
||||
var stored = "";
|
||||
try { stored = window.sessionStorage.getItem(deviceKey) || ""; } catch (_error) { stored = ""; }
|
||||
if (stored) { return stored; }
|
||||
@@ -37,115 +26,57 @@
|
||||
try { window.sessionStorage.setItem(deviceKey, next); } catch (_error2) {}
|
||||
return next;
|
||||
}
|
||||
function setStatus(message) { if (status) { status.textContent = message; } }
|
||||
function setLocalMessage(message) { if (localMessage) { localMessage.textContent = message || ""; } }
|
||||
function setSelectOptions(select, screens, selectedSlug) {
|
||||
if (!select) { return; }
|
||||
while (select.firstChild) { select.removeChild(select.firstChild); }
|
||||
var placeholder = document.createElement("option");
|
||||
placeholder.value = "";
|
||||
placeholder.textContent = "Select a screen";
|
||||
select.appendChild(placeholder);
|
||||
(Array.isArray(screens) ? screens : []).forEach(function (screen) {
|
||||
var option = document.createElement("option");
|
||||
option.value = String(screen && screen.slug ? screen.slug : "");
|
||||
option.textContent = String(screen && (screen.name || screen.slug) ? (screen.name || screen.slug) : "Screen");
|
||||
if (selectedSlug && String(option.value) === String(selectedSlug)) {
|
||||
option.selected = true;
|
||||
}
|
||||
select.appendChild(option);
|
||||
});
|
||||
}
|
||||
function loadScreens(selectedSlug) {
|
||||
return fetch("/api/onboarding/screens", { cache: "no-store" })
|
||||
.then(function (response) { return response.ok ? response.json() : null; })
|
||||
.then(function (payload) {
|
||||
var screens = payload && Array.isArray(payload.screens) ? payload.screens : [];
|
||||
setSelectOptions(localScreenSelect, screens, selectedSlug);
|
||||
return screens;
|
||||
})
|
||||
.catch(function () { setSelectOptions(localScreenSelect, [], selectedSlug); return []; });
|
||||
}
|
||||
function loadQr(deviceId) {
|
||||
function loadQr(deviceId, clientId) {
|
||||
if (!qr) { return; }
|
||||
qr.onerror = function () {
|
||||
qr.src = qrPlaceholderSrc;
|
||||
};
|
||||
qr.src = "/api/onboarding/qr?deviceId=" + encodeURIComponent(deviceId);
|
||||
qr.src = "/api/onboarding/qr?deviceId=" + encodeURIComponent(deviceId) + "&clientId=" + encodeURIComponent(clientId);
|
||||
}
|
||||
function submitOnboarding(deviceId, clientName, screenSlug) {
|
||||
return fetch("/api/onboarding", {
|
||||
method: "POST",
|
||||
headers: { "Content-Type": "application/json", Accept: "application/json" },
|
||||
body: JSON.stringify({ deviceId: deviceId, clientName: clientName, screenSlug: screenSlug })
|
||||
})
|
||||
.then(function (response) {
|
||||
if (response.ok) {
|
||||
return response.json();
|
||||
}
|
||||
return parseResponseError(response).then(function (messageText) {
|
||||
throw new Error(messageText);
|
||||
});
|
||||
})
|
||||
function loadPairingSession(deviceId, clientId) {
|
||||
return fetch("/api/onboarding/session?deviceId=" + encodeURIComponent(deviceId) + "&clientId=" + encodeURIComponent(clientId), { cache: "no-store" })
|
||||
.then(function (response) { return response.ok ? response.json() : null; })
|
||||
.then(function (payload) {
|
||||
if (!payload || !payload.screenSlug) { throw new Error("Unable to save onboarding."); }
|
||||
if (payload.clientName) { setSessionStorageItem(clientNameKey, payload.clientName); }
|
||||
if (payload.clientName && payload.screenSlug) { setSessionStorageItem(getClientNameStorageKey(payload.screenSlug), payload.clientName); }
|
||||
try { window.localStorage.setItem(screenKey, payload.screenSlug); } catch (_error) {}
|
||||
setLocalMessage("Onboarding complete.");
|
||||
if (localForm) {
|
||||
Array.prototype.slice.call(localForm.querySelectorAll("input, select, button")).forEach(function (control) {
|
||||
control.disabled = true;
|
||||
});
|
||||
if (payload && payload.pairingCode && pairingCodeElement) {
|
||||
pairingCodeElement.textContent = payload.pairingCode;
|
||||
}
|
||||
});
|
||||
return payload;
|
||||
})
|
||||
.catch(function () { return null; });
|
||||
}
|
||||
function getClientId() {
|
||||
var stored = getSessionStorageItem("pulse-signage-player-client-id");
|
||||
if (stored) { return stored; }
|
||||
var next = (window.crypto && window.crypto.randomUUID ? window.crypto.randomUUID() : "client-" + Date.now() + "-" + Math.random().toString(16).slice(2));
|
||||
setSessionStorageItem("pulse-signage-player-client-id", next);
|
||||
return next;
|
||||
}
|
||||
function redirectIfOnboarded(deviceId) {
|
||||
return fetch("/api/onboarding/status?deviceId=" + encodeURIComponent(deviceId), { cache: "no-store" })
|
||||
var bindingId = getClientId() || deviceId;
|
||||
return fetch("/api/onboarding/status?deviceId=" + encodeURIComponent(bindingId), { cache: "no-store" })
|
||||
.then(function (response) { return response.ok ? response.json() : null; })
|
||||
.then(function (payload) {
|
||||
if (payload && payload.onboarded && payload.screenSlug) {
|
||||
if (payload.clientName) { setSessionStorageItem(clientNameKey, payload.clientName); }
|
||||
if (payload.clientName && payload.screenSlug) { setSessionStorageItem(getClientNameStorageKey(payload.screenSlug), payload.clientName); }
|
||||
try { window.localStorage.setItem(screenKey, payload.screenSlug); } catch (_error) {}
|
||||
window.location.replace("/screen/" + encodeURIComponent(payload.screenSlug));
|
||||
window.location.replace("/screen/" + encodeURIComponent(payload.screenSlug) + "?clientId=" + encodeURIComponent(clientId));
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
})
|
||||
.catch(function () { return false; });
|
||||
}
|
||||
var clientId = getClientId();
|
||||
var deviceId = getDeviceId();
|
||||
if (localForm) {
|
||||
localForm.addEventListener("submit", function (event) {
|
||||
event.preventDefault();
|
||||
var formData = new FormData(localForm);
|
||||
var clientName = String(formData.get("clientName") || "").trim();
|
||||
var screenSlug = String(formData.get("screenSlug") || "").trim();
|
||||
if (!clientName) { setLocalMessage("Client name is required."); return; }
|
||||
if (!screenSlug) { setLocalMessage("Screen is required."); return; }
|
||||
setLocalMessage("Saving client...");
|
||||
submitOnboarding(deviceId, clientName, screenSlug).catch(function (error) {
|
||||
setLocalMessage(error && error.message ? error.message : "Unable to save onboarding.");
|
||||
});
|
||||
});
|
||||
}
|
||||
loadScreens().then(function () {
|
||||
try {
|
||||
var storedClientName = getSessionStorageItem(clientNameKey) || "";
|
||||
if (storedClientName && localForm) {
|
||||
var clientNameInput = localForm.querySelector("input[name=\"clientName\"]");
|
||||
if (clientNameInput) { clientNameInput.value = storedClientName; }
|
||||
}
|
||||
} catch (_error) {}
|
||||
});
|
||||
redirectIfOnboarded(deviceId).then(function (redirected) {
|
||||
if (redirected) { return; }
|
||||
if (qr && !qr.getAttribute("src")) {
|
||||
qr.src = qrPlaceholderSrc;
|
||||
}
|
||||
loadQr(deviceId);
|
||||
setStatus("Waiting for onboarding to finish.");
|
||||
loadPairingSession(deviceId, clientId).then(function () {
|
||||
loadQr(deviceId, clientId);
|
||||
});
|
||||
window.setInterval(function () { redirectIfOnboarded(deviceId); }, 2000);
|
||||
});
|
||||
}());
|
||||
|
||||
@@ -90,7 +90,7 @@
|
||||
});
|
||||
}).then(function (payload) {
|
||||
var serverName = payload && payload.clientName ? String(payload.clientName).trim() : '';
|
||||
if (serverName) {
|
||||
if (serverName && !getOnboardingClientName()) {
|
||||
applyOnboardingClientName(serverName, null);
|
||||
}
|
||||
return onboardingClientName || getOnboardingClientName();
|
||||
|
||||
@@ -131,6 +131,9 @@
|
||||
if (window.__pulsePageAuthToken) {
|
||||
request.setRequestHeader('x-pulse-page-auth', window.__pulsePageAuthToken);
|
||||
}
|
||||
if (typeof getCommandClientId === 'function') {
|
||||
request.setRequestHeader('x-pulse-client-id', getCommandClientId());
|
||||
}
|
||||
if (announcementEtag) {
|
||||
request.setRequestHeader('If-None-Match', announcementEtag);
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<script>
|
||||
const slug = {{SLUG_JSON}};
|
||||
const initialData = {{INITIAL_DATA_JSON}};
|
||||
let initialData = {{INITIAL_DATA_JSON}};
|
||||
window.slug = slug;
|
||||
window.initialData = initialData;
|
||||
const app = document.getElementById('app');
|
||||
@@ -73,7 +73,7 @@
|
||||
let slideExpiresAt = null;
|
||||
const slideFadeDurationMs = 560;
|
||||
const commandSocketPath = '/ws/screens/' + encodeURIComponent(slug);
|
||||
const commandClientStorageKey = 'pulse-signage-player-client-id:' + slug;
|
||||
const commandClientStorageKey = 'pulse-signage-player-client-id';
|
||||
const playlistSnapshotStorageKey = 'pulse-signage-player-playlist-snapshot:' + slug;
|
||||
const initialPlaylistSnapshot = loadPlaylistSnapshot();
|
||||
let offlineBanner = null;
|
||||
@@ -181,10 +181,6 @@
|
||||
releaseScreenWakeLock();
|
||||
});
|
||||
|
||||
if (initialPlaylistSnapshot && initialPlaylistSnapshot.slides.length) {
|
||||
applyPlaylistSnapshot(initialPlaylistSnapshot);
|
||||
}
|
||||
|
||||
if (slides.length) {
|
||||
if (!currentPlaylistSignature) {
|
||||
currentPlaylistSignature = getPlaylistRevision(initialData && initialData.slides ? initialData : { slides: slides });
|
||||
|
||||
+128
-5
@@ -1,6 +1,7 @@
|
||||
// Player playlist assembly, snapshot persistence, and playlist revision helpers.
|
||||
|
||||
const crypto = require('crypto');
|
||||
const { convertWeatherSnapshot } = require('#src/data/weather-units');
|
||||
const fs = require('fs');
|
||||
const path = require('path');
|
||||
const { createStyledQrCodeDataUrl } = require('../data/qr-code');
|
||||
@@ -9,6 +10,8 @@ function createPlayerPlaylistService(options) {
|
||||
const pool = options && options.pool ? options.pool : null;
|
||||
const common = options && options.common ? options.common : null;
|
||||
const snapshotDir = options && options.snapshotDir ? options.snapshotDir : null;
|
||||
const mediaDir = options && options.mediaDir ? path.resolve(String(options.mediaDir)) : null;
|
||||
const remoteImageCacheDir = mediaDir ? path.join(mediaDir, 'player-cache', 'remote-images') : null;
|
||||
|
||||
if (!pool) {
|
||||
throw new Error('pool is required');
|
||||
@@ -61,11 +64,110 @@ function createPlayerPlaylistService(options) {
|
||||
return createStyledQrCodeDataUrl(value);
|
||||
}
|
||||
|
||||
function getPlaceholderImageExpressions(value, output) {
|
||||
const expressions = output || [];
|
||||
const source = String(value || '');
|
||||
const pattern = /\{\{\s*([^{}]*?\.image\s*\([^{}]*\)[^{}]*?)\s*\}\}/gi;
|
||||
let match = null;
|
||||
while ((match = pattern.exec(source))) {
|
||||
expressions.push(String(match[1] || '').trim());
|
||||
}
|
||||
return expressions;
|
||||
}
|
||||
|
||||
function resolvePathValue(value, expression) {
|
||||
const parsed = String(expression || '').replace(/\.image\s*\([^)]*\)\s*$/i, '').trim();
|
||||
return parsed.split('.').reduce(function (current, segment) {
|
||||
return current === undefined || current === null ? '' : current[segment];
|
||||
}, value);
|
||||
}
|
||||
|
||||
function getApiItems(responseJson, itemsPath) {
|
||||
let current = responseJson;
|
||||
const pathValue = String(itemsPath || '').trim();
|
||||
if (pathValue) {
|
||||
pathValue.split('.').forEach(function (segment) {
|
||||
current = current === undefined || current === null ? '' : current[segment];
|
||||
});
|
||||
return Array.isArray(current) ? current : [];
|
||||
}
|
||||
if (Array.isArray(responseJson)) return responseJson;
|
||||
if (responseJson && Array.isArray(responseJson.items)) return responseJson.items;
|
||||
if (responseJson && Array.isArray(responseJson.results)) return responseJson.results;
|
||||
if (responseJson && Array.isArray(responseJson.data)) return responseJson.data;
|
||||
return responseJson ? [responseJson] : [];
|
||||
}
|
||||
|
||||
async function cacheRemoteImage(url) {
|
||||
const remoteUrl = String(url || '').trim();
|
||||
if (!remoteImageCacheDir || !/^https?:\/\//i.test(remoteUrl)) return '';
|
||||
const hash = crypto.createHash('sha256').update(remoteUrl).digest('hex');
|
||||
await fs.promises.mkdir(remoteImageCacheDir, { recursive: true });
|
||||
const existing = (await fs.promises.readdir(remoteImageCacheDir)).find(function (name) { return name.startsWith(hash + '.'); });
|
||||
if (existing) return '/media/player-cache/remote-images/' + existing;
|
||||
try {
|
||||
const response = await fetch(remoteUrl, { signal: AbortSignal.timeout(15000) });
|
||||
if (!response.ok || !String(response.headers.get('content-type') || '').toLowerCase().startsWith('image/')) return '';
|
||||
const bytes = Buffer.from(await response.arrayBuffer());
|
||||
if (bytes.length > 10 * 1024 * 1024) return '';
|
||||
const contentType = String(response.headers.get('content-type') || '').toLowerCase();
|
||||
const extension = contentType.includes('svg') ? '.svg' : contentType.includes('png') ? '.png' : contentType.includes('webp') ? '.webp' : contentType.includes('gif') ? '.gif' : '.jpg';
|
||||
const fileName = hash + extension;
|
||||
const filePath = path.join(remoteImageCacheDir, fileName);
|
||||
await fs.promises.writeFile(filePath, bytes);
|
||||
return '/media/player-cache/remote-images/' + fileName;
|
||||
} catch (_error) {
|
||||
return '';
|
||||
}
|
||||
}
|
||||
|
||||
async function cachePlaceholderImages(slides, rssFeeds, apiSources) {
|
||||
if (!remoteImageCacheDir) return;
|
||||
const usedPaths = new Set();
|
||||
const allSlideRows = await pool.query('SELECT content_json FROM c_slides').then(function (result) { return result[0] || []; });
|
||||
const allContents = allSlideRows.map(function (row) { return common.parseJsonSafe(row.content_json) || {}; });
|
||||
const sourceContent = allContents.concat((slides || []).map(function (slide) { return slide.content || {}; }));
|
||||
const cacheSource = async function (source, item, expressions) {
|
||||
if (!source || !item) return;
|
||||
for (const expression of expressions) {
|
||||
const remoteUrl = String(resolvePathValue(item, expression) || '').trim();
|
||||
const localPath = await cacheRemoteImage(remoteUrl);
|
||||
if (localPath) {
|
||||
source.imageCache = source.imageCache || {};
|
||||
source.imageCache[remoteUrl] = localPath;
|
||||
usedPaths.add(localPath);
|
||||
}
|
||||
}
|
||||
};
|
||||
for (const content of sourceContent) {
|
||||
for (const key of Object.keys(content || {})) {
|
||||
const region = content[key];
|
||||
if (!region || typeof region !== 'object') continue;
|
||||
const expressions = getPlaceholderImageExpressions(region.value, []);
|
||||
if (!expressions.length) continue;
|
||||
const itemNumber = Math.max(1, Number(region.item_number || 1)) - 1;
|
||||
if (String(region.type || '').toLowerCase() === 'api') {
|
||||
const source = (apiSources || []).find(function (entry) { return Number(entry.id) === Number(region.source_id); });
|
||||
const items = source ? getApiItems(source.responseJson, region.items_path) : [];
|
||||
await cacheSource(source, items[itemNumber], expressions);
|
||||
}
|
||||
if (String(region.type || '').toLowerCase() === 'rss') {
|
||||
const feed = (rssFeeds || []).find(function (entry) { return Number(entry.id) === Number(region.feed_id); });
|
||||
await cacheSource(feed, feed && feed.items && feed.items[itemNumber], expressions);
|
||||
}
|
||||
}
|
||||
}
|
||||
const files = await fs.promises.readdir(remoteImageCacheDir).catch(function () { return []; });
|
||||
await Promise.all(files.filter(function (file) { return !usedPaths.has('/media/player-cache/remote-images/' + file); }).map(function (file) {
|
||||
return fs.promises.unlink(path.join(remoteImageCacheDir, file)).catch(function () {});
|
||||
}));
|
||||
}
|
||||
|
||||
async function buildScreenPlaylist(slug) {
|
||||
try {
|
||||
const [screenRows] = await pool.query('SELECT id, name, slug, playlist_id, created_at, modified_at, created_by, modified_by FROM d_screens WHERE slug = ?', [slug]);
|
||||
if (!screenRows.length) {
|
||||
return { screen: null, playlist: null, slides: [], rssFeeds: [], apiSources: [], timetableGroups: [] };
|
||||
return { screen: null, playlist: null, slides: [], rssFeeds: [], apiSources: [], timetableGroups: [], weatherLocations: [] };
|
||||
}
|
||||
|
||||
const screen = screenRows[0];
|
||||
@@ -77,6 +179,7 @@ function createPlayerPlaylistService(options) {
|
||||
rssFeeds: [],
|
||||
apiSources: [],
|
||||
timetableGroups: [],
|
||||
weatherLocations: [],
|
||||
revision: getPlaylistRevision(screen, null, [], [], [], [], [], [])
|
||||
};
|
||||
await writeSnapshot(slug, payloadWithoutPlaylist);
|
||||
@@ -120,7 +223,7 @@ function createPlayerPlaylistService(options) {
|
||||
let regionRows = [];
|
||||
if (templateIds.length) {
|
||||
[templateRows] = await pool.query(`
|
||||
SELECT st.id, st.name, st.canvas_size_id, st.background_image_path, st.background_color, st.created_at, st.modified_at,
|
||||
SELECT st.id, st.name, st.canvas_size_id, st.background_image_path, st.background_color, st.background_gradient, st.created_at, st.modified_at,
|
||||
cs.name AS canvas_size_name, cs.width AS canvas_size_width, cs.height AS canvas_size_height, cs.width AS canvas_width, cs.height AS canvas_height
|
||||
FROM c_templates st
|
||||
LEFT JOIN c_canvas_sizes cs ON cs.id = st.canvas_size_id
|
||||
@@ -241,8 +344,25 @@ function createPlayerPlaylistService(options) {
|
||||
timetableGroups = Array.isArray(timetableData && timetableData.timetableGroups) ? timetableData.timetableGroups : [];
|
||||
}
|
||||
|
||||
const revision = getPlaylistRevision(screen, playlist, slideRows, scheduleRuleRows, templateRows, regionRows, rssFeeds, apiSources, timetableGroups);
|
||||
const payload = { screen: screen, playlist: playlist, slides: slides, rssFeeds: rssFeeds, apiSources: apiSources, timetableGroups: timetableGroups, revision: revision };
|
||||
let weatherLocations = [];
|
||||
if (typeof common.fetchWeatherLocationsData === 'function') {
|
||||
const weatherData = await common.fetchWeatherLocationsData(pool);
|
||||
weatherLocations = (weatherData.weatherLocations || []).map(function (location) {
|
||||
const responseJson = common.parseJsonSafe ? common.parseJsonSafe(location.last_response_json) : null;
|
||||
return Object.assign({}, location, {
|
||||
responseJson: convertWeatherSnapshot(responseJson, {
|
||||
temperature: location.temperature_unit === 'fahrenheit' ? 'fahrenheit' : 'celsius',
|
||||
wind: location.wind_unit === 'mph' ? 'mph' : location.wind_unit === 'ms' ? 'ms' : 'kmh',
|
||||
precipitation: location.precipitation_unit === 'inch' ? 'inch' : 'mm'
|
||||
})
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
await cachePlaceholderImages(slides, rssFeeds, apiSources);
|
||||
|
||||
const revision = getPlaylistRevision(screen, playlist, slideRows, scheduleRuleRows, templateRows, regionRows, rssFeeds, apiSources, timetableGroups, weatherLocations);
|
||||
const payload = { screen: screen, playlist: playlist, slides: slides, rssFeeds: rssFeeds, apiSources: apiSources, timetableGroups: timetableGroups, weatherLocations: weatherLocations, revision: revision };
|
||||
await writeSnapshot(slug, payload);
|
||||
return payload;
|
||||
} catch (error) {
|
||||
@@ -259,7 +379,7 @@ function createPlayerPlaylistService(options) {
|
||||
hash.update('\0');
|
||||
}
|
||||
|
||||
function getPlaylistRevision(screen, playlist, slideRows, scheduleRuleRows, templateRows, regionRows, rssFeeds, apiSources, timetableGroups) {
|
||||
function getPlaylistRevision(screen, playlist, slideRows, scheduleRuleRows, templateRows, regionRows, rssFeeds, apiSources, timetableGroups, weatherLocations) {
|
||||
const hash = crypto.createHash('sha1');
|
||||
|
||||
updatePlaylistRevisionHash(hash, screen && screen.id);
|
||||
@@ -302,6 +422,8 @@ function createPlayerPlaylistService(options) {
|
||||
updatePlaylistRevisionHash(hash, template.canvas_size_height);
|
||||
updatePlaylistRevisionHash(hash, template.background_image_path);
|
||||
updatePlaylistRevisionHash(hash, template.background_color);
|
||||
updatePlaylistRevisionHash(hash, template.background_gradient);
|
||||
updatePlaylistRevisionHash(hash, template.background_gradient);
|
||||
updatePlaylistRevisionHash(hash, template.modified_at);
|
||||
});
|
||||
|
||||
@@ -323,6 +445,7 @@ function createPlayerPlaylistService(options) {
|
||||
updatePlaylistRevisionHash(hash, JSON.stringify(rssFeeds || []));
|
||||
updatePlaylistRevisionHash(hash, JSON.stringify(apiSources || []));
|
||||
updatePlaylistRevisionHash(hash, JSON.stringify(timetableGroups || []));
|
||||
updatePlaylistRevisionHash(hash, JSON.stringify(weatherLocations || []));
|
||||
|
||||
return hash.digest('hex');
|
||||
}
|
||||
|
||||
@@ -11,9 +11,9 @@ body {
|
||||
|
||||
body.onboarding-page {
|
||||
background:
|
||||
radial-gradient(circle at top, rgba(82, 144, 255, 0.28), transparent 32%),
|
||||
radial-gradient(circle at bottom right, rgba(34, 197, 94, 0.18), transparent 26%),
|
||||
linear-gradient(160deg, #09111f 0%, #0b1323 52%, #111827 100%);
|
||||
radial-gradient(circle at 78% 20%, rgba(55, 195, 178, 0.16), transparent 28%),
|
||||
radial-gradient(circle at 12% 90%, rgba(237, 177, 89, 0.12), transparent 30%),
|
||||
linear-gradient(145deg, #07131b 0%, #0b2028 58%, #10252a 100%);
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
}
|
||||
@@ -48,14 +48,43 @@ body.thumbnail-preview .player-offline-banner {
|
||||
}
|
||||
|
||||
.onboarding-shell {
|
||||
min-height: 100vh;
|
||||
min-height: 100%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: clamp(16px, 3vw, 40px);
|
||||
padding: clamp(24px, 5vw, 72px);
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.onboarding-stage {
|
||||
width: min(100%, 1160px);
|
||||
}
|
||||
|
||||
.onboarding-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 14px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.onboarding-brand-mark {
|
||||
width: 42px;
|
||||
height: 42px;
|
||||
display: grid;
|
||||
place-items: center;
|
||||
border-radius: 13px;
|
||||
background: #f0bd70;
|
||||
color: #10252a;
|
||||
font-size: 1.45rem;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.onboarding-label {
|
||||
margin: 3px 0 0;
|
||||
color: #8faeb0;
|
||||
font-size: 0.88rem;
|
||||
}
|
||||
|
||||
.onboarding-card {
|
||||
width: min(100%, 1040px);
|
||||
padding: clamp(20px, 3vw, 40px);
|
||||
@@ -73,14 +102,35 @@ body.thumbnail-preview .player-offline-banner {
|
||||
line-height: 1.05;
|
||||
}
|
||||
|
||||
.onboarding-stage h1 {
|
||||
max-width: 560px;
|
||||
font-size: clamp(2.5rem, 5vw, 5rem);
|
||||
letter-spacing: 0;
|
||||
}
|
||||
|
||||
.onboarding-stage--landing h1 {
|
||||
max-width: 500px;
|
||||
font-size: clamp(2.1rem, 3.6vw, 3.4rem);
|
||||
line-height: 1.08;
|
||||
}
|
||||
|
||||
.onboarding-kicker {
|
||||
margin: 0 0 12px;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.14em;
|
||||
color: #8ab4ff;
|
||||
color: #f0bd70;
|
||||
font-size: 0.82rem;
|
||||
}
|
||||
|
||||
.onboarding-step {
|
||||
margin: 0 0 18px;
|
||||
color: #70d0c2;
|
||||
font-size: 0.9rem;
|
||||
font-weight: 700;
|
||||
letter-spacing: 0.08em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.onboarding-copy {
|
||||
margin: 0 0 28px;
|
||||
color: #cbd5e1;
|
||||
@@ -90,36 +140,123 @@ body.thumbnail-preview .player-offline-banner {
|
||||
|
||||
.onboarding-layout {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr);
|
||||
grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1.1fr);
|
||||
gap: clamp(20px, 3vw, 32px);
|
||||
align-items: stretch;
|
||||
}
|
||||
|
||||
.onboarding-copy-panel {
|
||||
display: flex;
|
||||
grid-column: 1;
|
||||
grid-row: 1;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.onboarding-instructions {
|
||||
display: grid;
|
||||
gap: 14px;
|
||||
max-width: 440px;
|
||||
margin: 18px 0 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
counter-reset: setup-step;
|
||||
}
|
||||
|
||||
.onboarding-instructions li {
|
||||
display: grid;
|
||||
grid-template-columns: 24px 1fr;
|
||||
gap: 10px;
|
||||
color: #b7cccd;
|
||||
font-size: 0.96rem;
|
||||
line-height: 1.35;
|
||||
counter-increment: setup-step;
|
||||
}
|
||||
|
||||
.onboarding-instructions li::before {
|
||||
content: counter(setup-step);
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
display: grid;
|
||||
place-items: center;
|
||||
border: 1px solid rgba(112, 208, 194, 0.55);
|
||||
border-radius: 50%;
|
||||
color: #70d0c2;
|
||||
font-size: 0.75rem;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.onboarding-pin-block {
|
||||
margin-top: 28px;
|
||||
}
|
||||
|
||||
.onboarding-pin-label {
|
||||
display: block;
|
||||
margin-bottom: 10px;
|
||||
color: #8faeb0;
|
||||
font-size: 0.92rem;
|
||||
}
|
||||
|
||||
.onboarding-pin-label strong { color: #f0bd70; }
|
||||
|
||||
.onboarding-pin {
|
||||
display: block;
|
||||
color: #f4f8f5;
|
||||
font-size: clamp(1.7rem, 3vw, 2.8rem);
|
||||
font-weight: 800;
|
||||
letter-spacing: 0.18em;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.onboarding-qr-pane {
|
||||
display: grid;
|
||||
gap: 16px;
|
||||
width: min(100%, 420px);
|
||||
grid-column: 2;
|
||||
grid-row: 1;
|
||||
gap: 0;
|
||||
align-content: start;
|
||||
justify-self: center;
|
||||
}
|
||||
|
||||
.onboarding-qr-frame {
|
||||
display: flex;
|
||||
width: min(100%, 420px);
|
||||
aspect-ratio: 1;
|
||||
box-sizing: border-box;
|
||||
justify-content: center;
|
||||
padding: 22px;
|
||||
border-radius: 26px;
|
||||
background: rgba(255, 255, 255, 0.04);
|
||||
border: 1px solid rgba(255, 255, 255, 0.08);
|
||||
align-items: center;
|
||||
justify-self: center;
|
||||
padding: 14px;
|
||||
border-radius: 22px;
|
||||
background: rgba(7, 19, 27, 0.7);
|
||||
border: 1px solid rgba(244, 248, 245, 0.42);
|
||||
box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
|
||||
}
|
||||
|
||||
.onboarding-qr-frame img {
|
||||
width: min(100%, 320px);
|
||||
width: min(100%, 390px);
|
||||
aspect-ratio: 1;
|
||||
display: block;
|
||||
background: #fff;
|
||||
border-radius: 18px;
|
||||
padding: 16px;
|
||||
background: transparent;
|
||||
border-radius: 16px;
|
||||
padding: 12px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.onboarding-qr-caption {
|
||||
margin: 6px 0 0;
|
||||
color: #8faeb0;
|
||||
font-size: 0.92rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.onboarding-brand-title {
|
||||
margin-bottom: 10px;
|
||||
font-size: 1.2rem;
|
||||
font-weight: 700;
|
||||
letter-spacing: 0.1em;
|
||||
}
|
||||
|
||||
.onboarding-form {
|
||||
display: grid;
|
||||
gap: 14px;
|
||||
@@ -181,14 +318,14 @@ body.thumbnail-preview .player-offline-banner {
|
||||
}
|
||||
|
||||
.onboarding-status {
|
||||
margin-top: 8px;
|
||||
margin-top: clamp(32px, 6vh, 56px);
|
||||
min-height: 1.4em;
|
||||
color: #cbd5e1;
|
||||
color: #8faeb0;
|
||||
font-size: 0.96rem;
|
||||
}
|
||||
|
||||
.onboarding-card--landing .onboarding-status {
|
||||
text-align: center;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
@media (max-width: 860px), (orientation: portrait) {
|
||||
@@ -200,12 +337,45 @@ body.thumbnail-preview .player-offline-banner {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.onboarding-copy-panel,
|
||||
.onboarding-qr-pane {
|
||||
grid-column: 1;
|
||||
}
|
||||
|
||||
.onboarding-copy-panel {
|
||||
grid-row: 1;
|
||||
}
|
||||
|
||||
.onboarding-qr-pane {
|
||||
grid-row: 2;
|
||||
}
|
||||
|
||||
.onboarding-card {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.onboarding-qr-frame img {
|
||||
width: min(100%, 280px);
|
||||
width: min(100%, 390px);
|
||||
}
|
||||
|
||||
.onboarding-qr-frame {
|
||||
width: min(100%, 420px);
|
||||
}
|
||||
|
||||
.onboarding-qr-pane {
|
||||
width: min(100%, 420px);
|
||||
}
|
||||
|
||||
.onboarding-stage--landing h1 {
|
||||
font-size: clamp(2rem, 7vw, 3rem);
|
||||
}
|
||||
|
||||
.onboarding-header {
|
||||
margin-bottom: 38px;
|
||||
}
|
||||
|
||||
.onboarding-pin {
|
||||
font-size: clamp(1.7rem, 9vw, 2.8rem);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -239,6 +409,29 @@ body.screen-blackout #app {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.player-keyboard-feedback {
|
||||
position: fixed;
|
||||
top: 1.5rem;
|
||||
left: 50%;
|
||||
z-index: 10000;
|
||||
padding: 0.65rem 1rem;
|
||||
border: 1px solid rgba(255, 255, 255, 0.32);
|
||||
border-radius: 0.4rem;
|
||||
background: rgba(15, 23, 42, 0.88);
|
||||
color: #fff;
|
||||
font-size: 0.95rem;
|
||||
font-weight: 700;
|
||||
opacity: 0;
|
||||
pointer-events: none;
|
||||
transform: translate(-50%, -0.5rem);
|
||||
transition: opacity 120ms ease, transform 120ms ease;
|
||||
}
|
||||
|
||||
.player-keyboard-feedback.is-visible {
|
||||
opacity: 1;
|
||||
transform: translate(-50%, 0);
|
||||
}
|
||||
|
||||
.player-announcement-layer {
|
||||
position: fixed;
|
||||
left: 50%;
|
||||
|
||||
@@ -22,7 +22,11 @@
|
||||
|
||||
function normalizeAnnouncementColor(value) {
|
||||
var normalized = String(value || '').trim().toLowerCase();
|
||||
if (['primary', 'secondary', 'success', 'info', 'warning', 'danger', 'dark', 'light'].indexOf(normalized) !== -1) {
|
||||
if ([
|
||||
'primary', 'secondary', 'success', 'info', 'warning', 'danger', 'dark', 'light',
|
||||
'orange', 'amber', 'olive', 'teal', 'sky', 'indigo', 'violet', 'fuchsia', 'pink',
|
||||
'navy', 'steel', 'slate', 'graphite', 'midnight'
|
||||
].indexOf(normalized) !== -1) {
|
||||
return normalized;
|
||||
}
|
||||
return 'primary';
|
||||
@@ -42,7 +46,21 @@
|
||||
warning: { accent: '#ffc107', foreground: '#201400', glow: 'rgba(255, 193, 7, 0.30)' },
|
||||
danger: { accent: '#dc3545', foreground: '#ffffff', glow: 'rgba(220, 53, 69, 0.34)' },
|
||||
dark: { accent: '#212529', foreground: '#ffffff', glow: 'rgba(33, 37, 41, 0.34)' },
|
||||
light: { accent: '#f8f9fa', foreground: '#1f2937', glow: 'rgba(248, 249, 250, 0.34)' }
|
||||
light: { accent: '#f8f9fa', foreground: '#1f2937', glow: 'rgba(248, 249, 250, 0.34)' },
|
||||
orange: { accent: '#c84e10', foreground: '#ffffff', glow: 'rgba(200, 78, 16, 0.34)' },
|
||||
amber: { accent: '#a56710', foreground: '#ffffff', glow: 'rgba(165, 103, 16, 0.34)' },
|
||||
olive: { accent: '#5f7f0f', foreground: '#ffffff', glow: 'rgba(95, 127, 15, 0.34)' },
|
||||
teal: { accent: '#12827d', foreground: '#ffffff', glow: 'rgba(18, 130, 125, 0.34)' },
|
||||
sky: { accent: '#127caf', foreground: '#ffffff', glow: 'rgba(18, 124, 175, 0.34)' },
|
||||
indigo: { accent: '#6f60ea', foreground: '#ffffff', glow: 'rgba(111, 96, 234, 0.34)' },
|
||||
violet: { accent: '#9553db', foreground: '#ffffff', glow: 'rgba(149, 83, 219, 0.34)' },
|
||||
fuchsia: { accent: '#b347be', foreground: '#ffffff', glow: 'rgba(179, 71, 190, 0.34)' },
|
||||
pink: { accent: '#cd388d', foreground: '#ffffff', glow: 'rgba(205, 56, 141, 0.34)' },
|
||||
navy: { accent: '#1d2d4c', foreground: '#ffffff', glow: 'rgba(29, 45, 76, 0.34)' },
|
||||
steel: { accent: '#3a4860', foreground: '#ffffff', glow: 'rgba(58, 72, 96, 0.34)' },
|
||||
slate: { accent: '#566577', foreground: '#ffffff', glow: 'rgba(86, 101, 119, 0.34)' },
|
||||
graphite: { accent: '#32363c', foreground: '#ffffff', glow: 'rgba(50, 54, 60, 0.34)' },
|
||||
midnight: { accent: '#1e1d2d', foreground: '#ffffff', glow: 'rgba(30, 29, 45, 0.34)' }
|
||||
};
|
||||
|
||||
return tokens[colorKey] || tokens.primary;
|
||||
|
||||
@@ -440,6 +440,34 @@ function isEditableTarget(target) {
|
||||
return ['INPUT', 'TEXTAREA', 'SELECT', 'OPTION'].indexOf(tagName) !== -1;
|
||||
}
|
||||
|
||||
var keyboardFeedbackTimer = null;
|
||||
|
||||
function showKeyboardFeedback(message) {
|
||||
if (typeof document === 'undefined' || !document.body) {
|
||||
return;
|
||||
}
|
||||
|
||||
var feedback = document.querySelector('.player-keyboard-feedback');
|
||||
if (!feedback) {
|
||||
feedback = document.createElement('div');
|
||||
feedback.className = 'player-keyboard-feedback';
|
||||
feedback.setAttribute('aria-live', 'polite');
|
||||
document.body.appendChild(feedback);
|
||||
}
|
||||
|
||||
feedback.textContent = String(message || '');
|
||||
feedback.classList.remove('is-visible');
|
||||
void feedback.offsetWidth;
|
||||
feedback.classList.add('is-visible');
|
||||
if (keyboardFeedbackTimer) {
|
||||
window.clearTimeout(keyboardFeedbackTimer);
|
||||
}
|
||||
keyboardFeedbackTimer = window.setTimeout(function () {
|
||||
feedback.classList.remove('is-visible');
|
||||
keyboardFeedbackTimer = null;
|
||||
}, 900);
|
||||
}
|
||||
|
||||
function handlePlayerKeydown(event) {
|
||||
if (!event || event.defaultPrevented || event.altKey || event.ctrlKey || event.metaKey) {
|
||||
return;
|
||||
@@ -452,12 +480,28 @@ function handlePlayerKeydown(event) {
|
||||
if (event.key === 'ArrowLeft') {
|
||||
event.preventDefault();
|
||||
navigateSlides(-1);
|
||||
showKeyboardFeedback('Previous slide');
|
||||
return;
|
||||
}
|
||||
|
||||
if (event.key === 'ArrowRight') {
|
||||
event.preventDefault();
|
||||
navigateSlides(1);
|
||||
showKeyboardFeedback('Next slide');
|
||||
return;
|
||||
}
|
||||
|
||||
if (String(event.key || '').toLowerCase() === 'p') {
|
||||
event.preventDefault();
|
||||
setPaused(!isPaused);
|
||||
showKeyboardFeedback(isPaused ? 'Paused' : 'Playing');
|
||||
return;
|
||||
}
|
||||
|
||||
if (String(event.key || '').toLowerCase() === 'b') {
|
||||
event.preventDefault();
|
||||
setBlackout(!isBlackout);
|
||||
showKeyboardFeedback(isBlackout ? 'Blackout on' : 'Blackout off');
|
||||
}
|
||||
}
|
||||
|
||||
@@ -489,6 +533,10 @@ function handleCommandMessage(rawMessage) {
|
||||
} catch (_error) {
|
||||
return;
|
||||
}
|
||||
if (payload && payload.type === 'client-id-conflict') {
|
||||
handleClientIdConflict();
|
||||
return;
|
||||
}
|
||||
|
||||
if (!payload || payload.type !== 'command') {
|
||||
return;
|
||||
@@ -505,7 +553,17 @@ function handleCommandMessage(rawMessage) {
|
||||
return;
|
||||
case 'redirect':
|
||||
if (payload.url) {
|
||||
window.location.replace(String(payload.url));
|
||||
var redirectUrl = String(payload.url);
|
||||
var authorizeMove = payload.moveToken
|
||||
? fetch('/api/screen-move-authorize', {
|
||||
method: 'POST',
|
||||
headers: { 'Content-Type': 'application/json', 'Accept': 'application/json' },
|
||||
body: JSON.stringify({ moveToken: String(payload.moveToken) })
|
||||
})
|
||||
: Promise.resolve();
|
||||
authorizeMove.finally(function () {
|
||||
window.location.replace(redirectUrl);
|
||||
});
|
||||
}
|
||||
return;
|
||||
case 'pause':
|
||||
@@ -541,6 +599,13 @@ function handleCommandMessage(rawMessage) {
|
||||
}
|
||||
}
|
||||
|
||||
function handleClientIdConflict() {
|
||||
var replacementClientId = regenerateCommandClientId();
|
||||
var onboardingUrl = new URL('/', window.location.origin);
|
||||
onboardingUrl.searchParams.set('clientId', replacementClientId);
|
||||
window.location.replace(onboardingUrl.toString());
|
||||
}
|
||||
|
||||
// Retry the command websocket after a disconnect.
|
||||
function scheduleCommandReconnect() {
|
||||
if (commandReconnectTimer) {
|
||||
@@ -577,8 +642,12 @@ function connectCommandSocket() {
|
||||
handleCommandMessage(event.data);
|
||||
};
|
||||
|
||||
socket.onclose = function () {
|
||||
socket.onclose = function (event) {
|
||||
commandSocket = null;
|
||||
if (event && event.code === 4009) {
|
||||
handleClientIdConflict();
|
||||
return;
|
||||
}
|
||||
scheduleCommandReconnect();
|
||||
};
|
||||
|
||||
|
||||
@@ -156,6 +156,9 @@ function refresh() {
|
||||
if (window.__pulsePageAuthToken) {
|
||||
request.setRequestHeader('x-pulse-page-auth', window.__pulsePageAuthToken);
|
||||
}
|
||||
if (typeof getCommandClientId === 'function') {
|
||||
request.setRequestHeader('x-pulse-client-id', getCommandClientId());
|
||||
}
|
||||
if (currentPlaylistEtag) {
|
||||
request.setRequestHeader('If-None-Match', currentPlaylistEtag);
|
||||
}
|
||||
@@ -172,6 +175,10 @@ function refresh() {
|
||||
return;
|
||||
}
|
||||
if (request.status < 200 || request.status >= 300) {
|
||||
if (request.status === 401 || request.status === 403) {
|
||||
window.location.replace('/');
|
||||
return;
|
||||
}
|
||||
setOfflineBannerVisible(true);
|
||||
scheduleRefreshRetry();
|
||||
logDebug(
|
||||
@@ -189,15 +196,21 @@ function refresh() {
|
||||
const nextActiveSlides = getActiveSlidesFrom(nextSlides);
|
||||
const nextFadeBetweenSlides = Boolean(data && data.playlist && data.playlist.fade_between_slides);
|
||||
const nextSkipUnavailableRtmp = Boolean(data && data.playlist && data.playlist.skip_unavailable_rtmp);
|
||||
if (window.initialData && typeof window.initialData === 'object') {
|
||||
window.initialData.screen = data.screen || window.initialData.screen || null;
|
||||
window.initialData.playlist = data.playlist || null;
|
||||
window.initialData.slides = nextSlides;
|
||||
window.initialData.rssFeeds = Array.isArray(data.rssFeeds) ? data.rssFeeds : [];
|
||||
window.initialData.apiSources = Array.isArray(data.apiSources) ? data.apiSources : [];
|
||||
window.initialData.timetableGroups = Array.isArray(data.timetableGroups) ? data.timetableGroups : [];
|
||||
window.initialData.revision = nextSignature;
|
||||
var refreshedInitialData = Object.assign({},
|
||||
typeof initialData !== 'undefined' && initialData ? initialData : (window.initialData || {}), {
|
||||
screen: data.screen || null,
|
||||
playlist: data.playlist || null,
|
||||
slides: nextSlides,
|
||||
rssFeeds: Array.isArray(data.rssFeeds) ? data.rssFeeds : [],
|
||||
apiSources: Array.isArray(data.apiSources) ? data.apiSources : [],
|
||||
timetableGroups: Array.isArray(data.timetableGroups) ? data.timetableGroups : [],
|
||||
weatherLocations: Array.isArray(data.weatherLocations) ? data.weatherLocations : [],
|
||||
revision: nextSignature
|
||||
});
|
||||
if (typeof initialData !== 'undefined') {
|
||||
initialData = refreshedInitialData;
|
||||
}
|
||||
window.initialData = refreshedInitialData;
|
||||
savePlaylistSnapshot({
|
||||
slides: nextSlides,
|
||||
signature: nextSignature,
|
||||
|
||||
@@ -211,6 +211,16 @@ function getCommandClientId() {
|
||||
return commandClientId;
|
||||
}
|
||||
|
||||
function regenerateCommandClientId() {
|
||||
commandClientId = null;
|
||||
try {
|
||||
window.sessionStorage.removeItem(commandClientStorageKey);
|
||||
} catch (_error) {
|
||||
// ignore storage errors
|
||||
}
|
||||
return getCommandClientId();
|
||||
}
|
||||
|
||||
// Load the most recent playlist snapshot from browser storage.
|
||||
function loadPlaylistSnapshot() {
|
||||
try {
|
||||
|
||||
@@ -4,6 +4,14 @@ function sanitizeFontFamily(value) {
|
||||
return String(value || '').replace(/[^a-zA-Z0-9 ,\"-]/g, '').trim();
|
||||
}
|
||||
|
||||
function normalizeStyleAttributeValue(value) {
|
||||
return String(value || '')
|
||||
.replace(/"/g, '"')
|
||||
.replace(/'/g, "'")
|
||||
.replace(/&quot;/g, '"')
|
||||
.replace(/&#39;/g, "'");
|
||||
}
|
||||
|
||||
// Clamp font size to the supported range.
|
||||
function sanitizeFontSize(value) {
|
||||
return Math.max(8, Number(value || 0) || 24);
|
||||
@@ -350,6 +358,7 @@ function sanitizeRichTextAttributes(tagName, attrText) {
|
||||
h5: ['class', 'style'],
|
||||
h6: ['class', 'style'],
|
||||
img: ['src', 'alt', 'title', 'width', 'height', 'class', 'style', 'loading', 'decoding'],
|
||||
i: ['class', 'style', 'aria-hidden'],
|
||||
col: ['class', 'style', 'span', 'width'],
|
||||
colgroup: ['class', 'style', 'span'],
|
||||
li: ['class', 'style'],
|
||||
@@ -401,7 +410,7 @@ function sanitizeRichTextAttributes(tagName, attrText) {
|
||||
return '';
|
||||
}
|
||||
}
|
||||
attrs.push(' ' + lowerKey + '="' + escapeHtml(value) + '"');
|
||||
attrs.push(' ' + lowerKey + '="' + escapeHtml(lowerKey === 'style' ? normalizeStyleAttributeValue(value) : value) + '"');
|
||||
return '';
|
||||
});
|
||||
|
||||
@@ -773,6 +782,7 @@ function getTemplateLayout(template) {
|
||||
canvasHeight: canvasSize.height,
|
||||
background: template.background_image_path ? '<img class="template-background" src="' + escapeHtml(template.background_image_path) + '" alt="" />' : '',
|
||||
backgroundColor: template.background_color || '#111111',
|
||||
backgroundGradient: template.background_gradient || '',
|
||||
regions: regions
|
||||
};
|
||||
|
||||
@@ -781,17 +791,31 @@ function getTemplateLayout(template) {
|
||||
}
|
||||
|
||||
// Build a dark backdrop style for template and media canvases.
|
||||
function buildBackdropStyle(backgroundColor, backgroundImagePath) {
|
||||
function buildBackdropStyle(backgroundColor, backgroundImagePath, backgroundGradient) {
|
||||
var color = String(backgroundColor || '#111111').trim() || '#111111';
|
||||
var style = 'background-color:' + escapeHtml(color) + ';';
|
||||
var gradient = '';
|
||||
try {
|
||||
var gradientData = typeof backgroundGradient === 'string' ? JSON.parse(backgroundGradient) : backgroundGradient;
|
||||
if (gradientData && gradientData.type === 'linear' && Array.isArray(gradientData.colors) && gradientData.colors.length >= 2) {
|
||||
var stops = Array.isArray(gradientData.stops) ? gradientData.stops : (gradientData.colors || []).map(function (color, index, colors) { return { color: color, position: colors.length > 1 ? Math.round(index * 100 / (colors.length - 1)) : 0 }; });
|
||||
stops = stops.filter(function (stop) { return stop && /^#[0-9a-fA-F]{3,8}$/.test(String(stop.color || '').trim()); }).slice(0, 12);
|
||||
if (stops.length >= 2) {
|
||||
var angle = Number(gradientData.angle);
|
||||
gradient = 'linear-gradient(' + (Number.isFinite(angle) ? Math.max(0, Math.min(360, angle)) : 90) + 'deg,' + stops.map(function (stop) { return stop.color + ' ' + Math.max(0, Math.min(100, Number(stop.position) || 0)) + '%'; }).join(',') + ')';
|
||||
}
|
||||
}
|
||||
} catch (_error) {
|
||||
gradient = '';
|
||||
}
|
||||
|
||||
if (backgroundImagePath) {
|
||||
style += 'background-image:url("' + escapeHtml(backgroundImagePath) + '");';
|
||||
style += 'background-position:center;background-size:contain;background-repeat:no-repeat;';
|
||||
style += 'background-image:url("' + escapeHtml(backgroundImagePath) + '")' + (gradient ? ',' + gradient : '') + ';';
|
||||
style += 'background-position:center,center;background-size:contain,cover;background-repeat:no-repeat,no-repeat;';
|
||||
return style;
|
||||
}
|
||||
|
||||
style += 'background-image:none;background-position:center;background-size:cover;background-repeat:no-repeat;';
|
||||
style += 'background-image:' + (gradient || 'none') + ';background-position:center;background-size:cover;background-repeat:no-repeat;';
|
||||
return style;
|
||||
}
|
||||
|
||||
@@ -867,7 +891,7 @@ function renderTemplateSlideMarkup(slide) {
|
||||
animationConfig: normalizePlayerAnimationConfig(region.animationJson)
|
||||
});
|
||||
}).join('') : '';
|
||||
const stageStyle = layout ? buildBackdropStyle(layout.backgroundColor || '#111111', template.background_image_path) : '';
|
||||
const stageStyle = layout ? buildBackdropStyle(layout.backgroundColor || '#111111', template.background_image_path, layout.backgroundGradient) : '';
|
||||
if (layout) {
|
||||
setPlayerCanvasDimensions(layout.canvasWidth, layout.canvasHeight);
|
||||
}
|
||||
|
||||
@@ -56,7 +56,7 @@ function getApiItem(sourceId, itemNumber, itemsPathOverride) {
|
||||
return items[index] || null;
|
||||
}
|
||||
|
||||
function substituteApiVariables(html, item) {
|
||||
function substituteApiVariables(html, item, sourceId) {
|
||||
var source = String(html || '');
|
||||
return source.replace(/\{\{\s*([^{}]+?)\s*\}\}/g, function (_match, expression) {
|
||||
if (!item || typeof item !== 'object') {
|
||||
@@ -67,7 +67,25 @@ function substituteApiVariables(html, item) {
|
||||
return '';
|
||||
}
|
||||
|
||||
return escapeHtml(placeholderUtils.formatPlaceholderValue(placeholderUtils.resolvePlaceholderExpression(item, expression)));
|
||||
var resolved = placeholderUtils.resolvePlaceholderExpression(item, expression);
|
||||
if (typeof placeholderUtils.isImagePlaceholderExpression === 'function' && placeholderUtils.isImagePlaceholderExpression(expression)) {
|
||||
var imageSource = placeholderUtils.formatPlaceholderValue(resolved);
|
||||
var source = getApiSourceById(sourceId);
|
||||
imageSource = source && source.imageCache && source.imageCache[imageSource] ? source.imageCache[imageSource] : imageSource;
|
||||
if (!/^(?:https?:\/\/|\/media\/|\/assets\/|\/[^/])/i.test(imageSource)) {
|
||||
return '';
|
||||
}
|
||||
var imageConfig = typeof placeholderUtils.getImagePlaceholderConfig === 'function' ? placeholderUtils.getImagePlaceholderConfig(expression) : {};
|
||||
var hasImageBounds = imageConfig.width && imageConfig.height;
|
||||
var imageStyle = hasImageBounds
|
||||
? 'display:block;width:100%;height:100%;object-fit:contain;'
|
||||
: 'display:block;width:auto;height:auto;' + (imageConfig.width ? 'max-width:' + imageConfig.width + 'px;' : '') + (imageConfig.height ? 'max-height:' + imageConfig.height + 'px;' : '');
|
||||
var image = '<img src="' + escapeHtml(imageSource) + '" alt="" style="' + imageStyle + '" />';
|
||||
return hasImageBounds
|
||||
? '<span style="display:inline-flex;align-items:center;justify-content:center;box-sizing:border-box;width:' + imageConfig.width + 'px;height:' + imageConfig.height + 'px;">' + image + '</span>'
|
||||
: image;
|
||||
}
|
||||
return escapeHtml(placeholderUtils.formatPlaceholderValue(resolved));
|
||||
});
|
||||
}
|
||||
|
||||
@@ -120,10 +138,8 @@ function renderApiRegion(region, regionContent) {
|
||||
var fontSize = sanitizeFontSize(regionContent.font_size || region.fontSize);
|
||||
var fontColor = sanitizeTextColor(regionContent.font_color || region.fontColor);
|
||||
var item = getApiItem(sourceId, itemNumber, itemsPath);
|
||||
var body = item ? substituteApiVariables(content, item) : '';
|
||||
if (!body && item) {
|
||||
body = getApiPreviewFallback(item);
|
||||
}
|
||||
var hasSource = String(sourceId === undefined || sourceId === null ? '' : sourceId).trim() !== '';
|
||||
var body = hasSource ? (item ? substituteApiVariables(content, item, sourceId) : '') : content;
|
||||
var contentStyle = 'width:' + region.pixelWidth + 'px;height:' + region.pixelHeight + 'px;transform:scale(' + region.canvasScale + ');transform-origin:top left;' + (fontFamily ? 'font-family:' + escapeHtml(fontFamily) + ';' : '') + 'font-size:' + fontSize + 'px;color:' + escapeHtml(fontColor) + ';';
|
||||
if (!body) {
|
||||
return '';
|
||||
|
||||
@@ -2,16 +2,52 @@
|
||||
|
||||
var registry = window.pulsePlayerRegionTypes;
|
||||
|
||||
function normalizeRenderableValue(value) {
|
||||
if (value && typeof value === 'object') {
|
||||
if (value.value !== undefined) {
|
||||
return normalizeRenderableValue(value.value);
|
||||
}
|
||||
if (value.text !== undefined) {
|
||||
return normalizeRenderableValue(value.text);
|
||||
}
|
||||
if (value.html !== undefined) {
|
||||
return normalizeRenderableValue(value.html);
|
||||
}
|
||||
if (value.content !== undefined) {
|
||||
return normalizeRenderableValue(value.content);
|
||||
}
|
||||
return '';
|
||||
}
|
||||
|
||||
return String(value === undefined || value === null ? '' : value);
|
||||
}
|
||||
|
||||
function buildHtmlDocument(html) {
|
||||
var raw = String(html || '').trim();
|
||||
if (!raw) {
|
||||
return '';
|
||||
}
|
||||
|
||||
if (/^<!doctype\b/i.test(raw) || /^<html\b/i.test(raw)) {
|
||||
return raw;
|
||||
}
|
||||
|
||||
return '<!doctype html><html><head><style>html,body{margin:0;width:100%;height:100%;overflow:hidden;background:transparent;}html,body{background:transparent !important;}</style></head><body>' + raw + '</body></html>';
|
||||
}
|
||||
|
||||
function renderHtmlRegionContent(value) {
|
||||
var html = String(value || '').trim();
|
||||
var html = normalizeRenderableValue(value).trim();
|
||||
if (!html) {
|
||||
return '';
|
||||
}
|
||||
return '<iframe class="template-region-html-frame" sandbox="" scrolling="no" srcdoc="<!doctype html><html><head><style>html,body{margin:0;width:100%;height:100%;overflow:hidden;background:transparent;}</style></head><body>' + escapeHtml(html) + '</body></html>" title="HTML region" loading="eager"></iframe>';
|
||||
if (/^<!doctype\b/i.test(html) || /^<html\b/i.test(html)) {
|
||||
return '<iframe class="template-region-html-frame" sandbox="" allowtransparency="true" scrolling="no" srcdoc="' + escapeHtml(html) + '" title="HTML region" loading="eager" style="width:100%;height:100%;border:0;display:block;background:transparent;overflow:hidden;"></iframe>';
|
||||
}
|
||||
return '<div class="template-region-html-content" style="width:100%;height:100%;overflow:hidden;background:transparent;">' + html + '</div>';
|
||||
}
|
||||
|
||||
function renderHtmlRegion(region, regionContent) {
|
||||
return '<div class="template-region html" style="' + region.baseStyle + '">' + renderHtmlRegionContent(regionContent.value || '') + '</div>';
|
||||
return '<div class="template-region html" style="' + region.baseStyle + '">' + renderHtmlRegionContent(regionContent && regionContent.value !== undefined ? regionContent.value : '') + '</div>';
|
||||
}
|
||||
|
||||
registry.register('html', {
|
||||
|
||||
+27
-15
@@ -1,6 +1,7 @@
|
||||
// RSS region helpers for resolving feeds, items, and nested values.
|
||||
|
||||
var registry = window.pulsePlayerRegionTypes;
|
||||
var placeholderUtils = window.placeholderUtils || {};
|
||||
|
||||
function getDefaultStyle() {
|
||||
return {
|
||||
@@ -63,14 +64,34 @@ function resolveRssPath(value, path) {
|
||||
return current === undefined || current === null ? '' : current;
|
||||
}
|
||||
|
||||
function substituteRssVariables(html, item) {
|
||||
function substituteRssVariables(html, item, feedId) {
|
||||
var source = String(html || '');
|
||||
return source.replace(/\{\{\s*([a-zA-Z0-9_]+)(?:\.([a-zA-Z0-9_.]+))?\s*\}\}/g, function (_match, tokenName, tokenPath) {
|
||||
return source.replace(/\{\{\s*([^{}]+?)\s*\}\}/g, function (_match, expression) {
|
||||
if (!item || typeof item !== 'object') {
|
||||
return '';
|
||||
}
|
||||
var key = tokenPath ? tokenName + '.' + tokenPath : tokenName;
|
||||
return escapeHtml(resolveRssPath(item, key || ''));
|
||||
if (typeof placeholderUtils.resolvePlaceholderExpression !== 'function' || typeof placeholderUtils.formatPlaceholderValue !== 'function') {
|
||||
return '';
|
||||
}
|
||||
var resolved = placeholderUtils.resolvePlaceholderExpression(item, expression);
|
||||
if (typeof placeholderUtils.isImagePlaceholderExpression === 'function' && placeholderUtils.isImagePlaceholderExpression(expression)) {
|
||||
var imageSource = placeholderUtils.formatPlaceholderValue(resolved);
|
||||
var feed = getRssFeedById(feedId);
|
||||
imageSource = feed && feed.imageCache && feed.imageCache[imageSource] ? feed.imageCache[imageSource] : imageSource;
|
||||
if (!/^(?:https?:\/\/|\/media\/|\/assets\/|\/[^/])/i.test(imageSource)) {
|
||||
return '';
|
||||
}
|
||||
var imageConfig = typeof placeholderUtils.getImagePlaceholderConfig === 'function' ? placeholderUtils.getImagePlaceholderConfig(expression) : {};
|
||||
var hasImageBounds = imageConfig.width && imageConfig.height;
|
||||
var imageStyle = hasImageBounds
|
||||
? 'display:block;width:100%;height:100%;object-fit:contain;'
|
||||
: 'display:block;width:auto;height:auto;' + (imageConfig.width ? 'max-width:' + imageConfig.width + 'px;' : '') + (imageConfig.height ? 'max-height:' + imageConfig.height + 'px;' : '');
|
||||
var image = '<img src="' + escapeHtml(imageSource) + '" alt="" style="' + imageStyle + '" />';
|
||||
return hasImageBounds
|
||||
? '<span style="display:inline-flex;align-items:center;justify-content:center;box-sizing:border-box;width:' + imageConfig.width + 'px;height:' + imageConfig.height + 'px;">' + image + '</span>'
|
||||
: image;
|
||||
}
|
||||
return escapeHtml(placeholderUtils.formatPlaceholderValue(resolved));
|
||||
});
|
||||
}
|
||||
|
||||
@@ -83,17 +104,8 @@ function renderRssRegion(region, regionContent) {
|
||||
var fontSize = sanitizeFontSize(regionContent.font_size || region.fontSize || defaultStyle.font_size);
|
||||
var fontColor = sanitizeTextColor(regionContent.font_color || region.fontColor || defaultStyle.font_color);
|
||||
var item = getRssFeedItem(feedId, itemNumber);
|
||||
var body = item ? substituteRssVariables(content, item) : '';
|
||||
if (!body && item) {
|
||||
var summaryParts = [];
|
||||
if (item.title) {
|
||||
summaryParts.push('<h3>' + escapeHtml(item.title) + '</h3>');
|
||||
}
|
||||
if (item.description) {
|
||||
summaryParts.push('<div>' + sanitizeRichText(item.description) + '</div>');
|
||||
}
|
||||
body = summaryParts.join('');
|
||||
}
|
||||
var hasFeed = String(feedId === undefined || feedId === null ? '' : feedId).trim() !== '';
|
||||
var body = hasFeed ? (item ? substituteRssVariables(content, item, feedId) : '') : content;
|
||||
var contentStyle = 'width:' + region.pixelWidth + 'px;height:' + region.pixelHeight + 'px;transform:scale(' + region.canvasScale + ');transform-origin:top left;' + (fontFamily ? 'font-family:' + escapeHtml(fontFamily) + ';' : '') + 'font-size:' + fontSize + 'px;color:' + escapeHtml(fontColor) + ';';
|
||||
if (!body) {
|
||||
return '';
|
||||
|
||||
@@ -0,0 +1,90 @@
|
||||
// Weather region rendering for live playback.
|
||||
|
||||
var weatherRegistry = window.pulsePlayerRegionTypes;
|
||||
var weatherPlaceholderUtils = window.placeholderUtils || {};
|
||||
|
||||
function weatherIconForCode(code) {
|
||||
var value = Number(code);
|
||||
if (value === 0) return 'bi-sun';
|
||||
if (value <= 3) return 'bi-cloud-sun';
|
||||
if (value <= 48) return 'bi-cloud-fog';
|
||||
if (value <= 67 || value > 77 && value <= 82) return 'bi-cloud-rain';
|
||||
if (value <= 77) return 'bi-cloud-snow';
|
||||
return 'bi-cloud-lightning-rain';
|
||||
}
|
||||
|
||||
function getWeatherLocation(locationId) {
|
||||
var locations = Array.isArray(initialData && initialData.weatherLocations) ? initialData.weatherLocations : [];
|
||||
return locations.find(function (location) { return Number(location.id) === Number(locationId); }) || null;
|
||||
}
|
||||
|
||||
function normalizeWeatherExpression(expression) {
|
||||
var value = String(expression || '').trim();
|
||||
var currentAliases = { temp: 'current.temperature_2m', temp_unit: 'current.temperature_unit', feels_like: 'current.apparent_temperature', humidity: 'current.relative_humidity_2m', code: 'current.weather_code', wind: 'current.wind_speed_10m', wind_unit: 'current.wind_speed_unit', precip: 'current.precipitation', precip_unit: 'current.precipitation_unit', uv_index: 'current.uv_index', cloud_cover: 'current.cloud_cover', icon: 'current.weather_code.icon' };
|
||||
var globalAliases = { temp_unit: 'temperature_unit', wind_unit: 'wind_speed_unit', precip_unit: 'precipitation_unit' };
|
||||
if (globalAliases[value]) return globalAliases[value];
|
||||
var currentField = value.replace(/^current\./, '');
|
||||
var currentMatch = currentField.match(/^([^.()]+)((?:\(.*\))|(?:\..*))?$/);
|
||||
if (currentMatch && currentAliases[currentMatch[1]]) return currentAliases[currentMatch[1]] + (currentMatch[2] || '');
|
||||
var indexed = value.match(/^(daily|hourly)\.(\d+)\.(.+)$/);
|
||||
if (!indexed) return value;
|
||||
var fieldMatch = indexed[3].match(/^([^.()]+)((?:\(.*\))|(?:\..*))?$/);
|
||||
var field = fieldMatch ? fieldMatch[1] : indexed[3];
|
||||
var aliases = indexed[1] === 'daily' ? { time: 'time', code: 'weather_code', temp_max: 'temperature_2m_max', temp_min: 'temperature_2m_min', precip: 'precipitation_sum', wind: 'wind_speed_10m_max', uv_index: 'uv_index_max', cloud_cover: 'cloud_cover_mean', sunrise: 'sunrise', sunset: 'sunset', icon: 'weather_code' } : { time: 'time', code: 'weather_code', temp: 'temperature_2m', precip: 'precipitation', wind: 'wind_speed_10m', uv_index: 'uv_index', cloud_cover: 'cloud_cover', icon: 'weather_code' };
|
||||
if (!Object.prototype.hasOwnProperty.call(aliases, field)) return value;
|
||||
return field === 'icon' ? indexed[1] + '.' + aliases[field] + '.' + indexed[2] + '.icon' + (fieldMatch[2] || '') : indexed[1] + '.' + aliases[field] + '.' + indexed[2] + (fieldMatch[2] || '');
|
||||
}
|
||||
|
||||
function withWeatherUnits(snapshot, location) {
|
||||
var data = Object.assign({}, snapshot, { location_label: location.location_label || '', name: location.name || '', timezone: location.timezone || '', temp_unit: location.temperature_unit === 'fahrenheit' ? '°F' : '°C', wind_unit: location.wind_unit === 'mph' ? 'mph' : location.wind_unit === 'ms' ? 'm/s' : 'km/h', precip_unit: location.precipitation_unit === 'inch' ? 'in' : 'mm' });
|
||||
var temperatureUnit = location.temperature_unit === 'fahrenheit' ? '°F' : '°C';
|
||||
var windUnit = location.wind_unit === 'mph' ? 'mph' : location.wind_unit === 'ms' ? 'm/s' : 'km/h';
|
||||
var precipitationUnit = location.precipitation_unit === 'inch' ? 'in' : 'mm';
|
||||
data.current = Object.assign({}, snapshot.current || {}, { temperature_unit: temperatureUnit, wind_speed_unit: windUnit, precipitation_unit: precipitationUnit });
|
||||
data.daily = Object.assign({}, snapshot.daily || {}, { temperature_unit: temperatureUnit });
|
||||
data.hourly = Object.assign({}, snapshot.hourly || {}, { temperature_unit: temperatureUnit });
|
||||
return data;
|
||||
}
|
||||
|
||||
function substituteWeatherVariables(html, value) {
|
||||
return String(html || '').replace(/\{\{\s*([^{}]+?)\s*\}\}/g, function (_match, expression) {
|
||||
if (!value || typeof value !== 'object' || typeof weatherPlaceholderUtils.resolvePlaceholderExpression !== 'function' || typeof weatherPlaceholderUtils.formatPlaceholderValue !== 'function') return '';
|
||||
var rawExpression = String(expression).trim();
|
||||
var normalizedExpression = normalizeWeatherExpression(rawExpression);
|
||||
var iconMatch = normalizedExpression.match(/^(?:current\.weather_code|daily\.weather_code\.\d+|hourly\.weather_code\.\d+)\.icon(?:\((\d+)(?:\s*,\s*(\d+))?\))?$/);
|
||||
if (iconMatch) {
|
||||
var codeExpression = normalizedExpression.replace(/\.icon(?:\(.*\))?$/, '');
|
||||
var width = iconMatch[1] ? Math.max(1, Math.min(1000, Number(iconMatch[1]))) : 0;
|
||||
var height = iconMatch[2] ? Math.max(1, Math.min(1000, Number(iconMatch[2]))) : width;
|
||||
var style = width ? ' style="display:inline-block;vertical-align:middle;font-size:' + width + 'px;line-height:' + height + 'px;width:' + width + 'px;height:' + height + 'px;"' : '';
|
||||
var weatherCode = weatherPlaceholderUtils.resolvePlaceholderExpression(value, codeExpression, { timeZone: value.timezone });
|
||||
var icon = '<i class="bi ' + weatherIconForCode(weatherCode) + '"' + style + ' aria-hidden="true"></i>';
|
||||
return width ? '<span style="display:inline-flex;align-items:center;justify-content:center;box-sizing:border-box;width:' + width + 'px;height:' + height + 'px;">' + icon + '</span>' : icon;
|
||||
}
|
||||
return escapeHtml(weatherPlaceholderUtils.formatPlaceholderValue(weatherPlaceholderUtils.resolvePlaceholderExpression(value, normalizeWeatherExpression(expression), { timeZone: value.timezone })));
|
||||
});
|
||||
}
|
||||
|
||||
function renderWeatherRegion(region, regionContent) {
|
||||
var location = getWeatherLocation(regionContent && regionContent.weather_location_id);
|
||||
var snapshot = location && location.responseJson && typeof location.responseJson === 'object' ? location.responseJson : null;
|
||||
var width = Math.max(1, Math.round(Number(region && region.pixelWidth) || 1));
|
||||
var height = Math.max(1, Math.round(Number(region && region.pixelHeight) || 1));
|
||||
var scale = Number(region && region.canvasScale) || 1;
|
||||
var style = 'width:' + width + 'px;height:' + height + 'px;transform:scale(' + scale + ');transform-origin:top left;overflow:hidden;';
|
||||
if (!location || !snapshot) return '<div class="template-region weather" style="' + region.baseStyle + '"><div style="' + style + '"></div></div>';
|
||||
var current = snapshot.current || {};
|
||||
var value = String(regionContent && regionContent.value || '');
|
||||
if (value) {
|
||||
var weatherData = withWeatherUnits(snapshot, location);
|
||||
var fontSize = Math.max(8, Number(regionContent && regionContent.font_size || region && (region.font_size || region.fontSize) || 32) || 32);
|
||||
return '<div class="template-region weather" style="' + region.baseStyle + '"><div style="' + style + 'font-family:Arial,sans-serif;font-size:' + fontSize + 'px;line-height:1.5;">' + renderEditorJsContent(substituteWeatherVariables(value, weatherData)) + '</div></div>';
|
||||
}
|
||||
var daily = snapshot.daily || {};
|
||||
var days = (daily.time || []).slice(0, 7).map(function (day, index) {
|
||||
return '<div class="weather-region-day"><strong>' + escapeHtml(index === 0 ? 'Today' : String(day).slice(5)) + '</strong><i class="bi ' + weatherIconForCode(daily.weather_code && daily.weather_code[index]) + '"></i><span>' + escapeHtml(daily.temperature_2m_max && daily.temperature_2m_max[index] !== undefined ? daily.temperature_2m_max[index] + '°' : '-') + '</span></div>';
|
||||
}).join('');
|
||||
return '<div class="template-region weather" style="' + region.baseStyle + '"><div style="' + style + 'padding:3%;font-family:Arial,sans-serif;"><div style="display:flex;align-items:center;justify-content:space-between;"><div><div style="font-size:.8em;opacity:.72;">' + escapeHtml(location.location_label || location.name) + '</div><strong style="font-size:2em;">' + escapeHtml(current.temperature_2m === undefined ? '-' : current.temperature_2m) + '°</strong></div><i class="bi ' + weatherIconForCode(current.weather_code) + '" style="font-size:3em;"></i></div><div style="display:grid;grid-template-columns:repeat(7,minmax(0,1fr));gap:.35em;margin-top:1em;">' + days + '</div></div></div>';
|
||||
}
|
||||
|
||||
weatherRegistry.register('weather', { renderRegion: renderWeatherRegion });
|
||||
@@ -2,12 +2,38 @@
|
||||
|
||||
var registry = window.pulsePlayerRegionTypes;
|
||||
|
||||
function normalizeRenderableValue(value) {
|
||||
if (value && typeof value === 'object') {
|
||||
if (value.value !== undefined) {
|
||||
return normalizeRenderableValue(value.value);
|
||||
}
|
||||
if (value.text !== undefined) {
|
||||
return normalizeRenderableValue(value.text);
|
||||
}
|
||||
if (value.url !== undefined) {
|
||||
return normalizeRenderableValue(value.url);
|
||||
}
|
||||
if (value.href !== undefined) {
|
||||
return normalizeRenderableValue(value.href);
|
||||
}
|
||||
if (value.src !== undefined) {
|
||||
return normalizeRenderableValue(value.src);
|
||||
}
|
||||
if (value.content !== undefined) {
|
||||
return normalizeRenderableValue(value.content);
|
||||
}
|
||||
return '';
|
||||
}
|
||||
|
||||
return String(value === undefined || value === null ? '' : value);
|
||||
}
|
||||
|
||||
function renderWebpageRegion(region, regionContent) {
|
||||
var url = String(regionContent.value || '').trim();
|
||||
var url = normalizeRenderableValue(regionContent && regionContent.value !== undefined ? regionContent.value : '').trim();
|
||||
if (!url) {
|
||||
return '';
|
||||
}
|
||||
return '<div class="template-region webpage" style="' + region.baseStyle + '"><iframe src="' + escapeHtml(url) + '" title="' + escapeHtml(region.label) + '" loading="eager" referrerpolicy="no-referrer" scrolling="no"></iframe></div>';
|
||||
return '<div class="template-region webpage" style="' + region.baseStyle + '"><iframe src="' + escapeHtml(url) + '" title="' + escapeHtml(region.label) + '" loading="eager" referrerpolicy="no-referrer" scrolling="no" style="width:100%;height:100%;border:0;display:block;background:#fff;overflow:hidden;"></iframe></div>';
|
||||
}
|
||||
|
||||
registry.register('webpage', {
|
||||
|
||||
@@ -25,6 +25,14 @@ function escapeHtml(value) {
|
||||
.replace(/'/g, ''');
|
||||
}
|
||||
|
||||
function normalizeStyleAttributeValue(value) {
|
||||
return String(value || '')
|
||||
.replace(/"/g, '"')
|
||||
.replace(/'/g, "'")
|
||||
.replace(/&quot;/g, '"')
|
||||
.replace(/&#39;/g, "'");
|
||||
}
|
||||
|
||||
function sanitizeFontFamily(value) {
|
||||
return String(value || '').replace(/[^a-zA-Z0-9 ,"-]/g, '').trim();
|
||||
}
|
||||
@@ -56,6 +64,7 @@ function sanitizeRichTextAttributes(tagName, attrText) {
|
||||
h4: ['class', 'style'],
|
||||
h5: ['class', 'style'],
|
||||
h6: ['class', 'style'],
|
||||
i: ['class', 'style', 'aria-hidden'],
|
||||
img: ['src', 'alt', 'title', 'width', 'height', 'class', 'style', 'loading', 'decoding'],
|
||||
col: ['class', 'style', 'span', 'width'],
|
||||
colgroup: ['class', 'style', 'span'],
|
||||
@@ -106,7 +115,7 @@ function sanitizeRichTextAttributes(tagName, attrText) {
|
||||
return '';
|
||||
}
|
||||
}
|
||||
attrs.push(' ' + lowerKey + '="' + escapeHtml(value) + '"');
|
||||
attrs.push(' ' + lowerKey + '="' + escapeHtml(lowerKey === 'style' ? normalizeStyleAttributeValue(value) : value) + '"');
|
||||
return '';
|
||||
});
|
||||
|
||||
@@ -279,12 +288,45 @@ function renderEditorJsContent(value) {
|
||||
return wrapRichTextParagraph(sanitizeRichText(raw));
|
||||
}
|
||||
|
||||
function buildHtmlDocument(html) {
|
||||
const raw = String(html || '').trim();
|
||||
if (!raw) {
|
||||
return '';
|
||||
}
|
||||
|
||||
if (/^<!doctype\b/i.test(raw) || /^<html\b/i.test(raw)) {
|
||||
return raw;
|
||||
}
|
||||
|
||||
return '<!doctype html><html><head><style>html,body{margin:0;width:100%;height:100%;overflow:hidden;background:transparent;}</style></head><body>' + raw + '</body></html>';
|
||||
}
|
||||
|
||||
function renderHtmlRegionContent(value) {
|
||||
const html = String(value || '').trim();
|
||||
const html = normalizeRenderableValue(value).trim();
|
||||
if (!html) {
|
||||
return '<div class="template-region-placeholder">HTML</div>';
|
||||
}
|
||||
return '<iframe class="template-region-html-frame" sandbox="" srcdoc="' + escapeHtml(html) + '" title="HTML region" loading="eager"></iframe>';
|
||||
return '<iframe class="template-region-html-frame" sandbox="" srcdoc="' + escapeHtml(buildHtmlDocument(html)) + '" title="HTML region" loading="eager" style="width:100%;height:100%;border:0;display:block;background:transparent;overflow:hidden;"></iframe>';
|
||||
}
|
||||
|
||||
function normalizeRenderableValue(value) {
|
||||
if (value && typeof value === 'object') {
|
||||
if (value.value !== undefined) {
|
||||
return normalizeRenderableValue(value.value);
|
||||
}
|
||||
if (value.text !== undefined) {
|
||||
return normalizeRenderableValue(value.text);
|
||||
}
|
||||
if (value.html !== undefined) {
|
||||
return normalizeRenderableValue(value.html);
|
||||
}
|
||||
if (value.content !== undefined) {
|
||||
return normalizeRenderableValue(value.content);
|
||||
}
|
||||
return '';
|
||||
}
|
||||
|
||||
return String(value === undefined || value === null ? '' : value);
|
||||
}
|
||||
|
||||
function fitCanvasSize(canvasWidth, canvasHeight, maxWidth, maxHeight) {
|
||||
@@ -385,7 +427,7 @@ function getPlayerAnnouncementTemplatesScript() {
|
||||
function getAnnouncementIconsDataScript() {
|
||||
return [
|
||||
'(function () {',
|
||||
' window.pulseAnnouncementIconKeys = ' + safeJsonForScript(announcementIcons.ANNOUNCEMENT_ICON_KEYS) + ';',
|
||||
' window.pulseAnnouncementIconKeys = ' + safeJsonForScript(announcementIcons.ANNOUNCEMENT_ICON_CATALOG_KEYS) + ';',
|
||||
' window.pulseAnnouncementDefaultIconKey = ' + safeJsonForScript(announcementIcons.DEFAULT_ANNOUNCEMENT_ICON) + ';',
|
||||
'}());'
|
||||
].join('\n');
|
||||
|
||||
+24
-23
@@ -36,34 +36,31 @@ function getPlayerServiceWorkerRegistrationScript() {
|
||||
].join('');
|
||||
}
|
||||
|
||||
function renderOnboardingLandingBody() {
|
||||
function renderOnboardingLandingBody(options) {
|
||||
const onboardingCode = String(options && options.pairingCode || '').trim();
|
||||
const deviceId = String(options && options.deviceId || '').trim();
|
||||
return [
|
||||
'<main class="onboarding-shell">',
|
||||
' <section class="onboarding-card onboarding-card--landing">',
|
||||
' <p class="onboarding-kicker">Pulse Signage</p>',
|
||||
' <h1>Onboard this player</h1>',
|
||||
' <p class="onboarding-copy">Choose an existing screen, name the client, and either scan the QR code or finish right here with a keyboard and mouse.</p>',
|
||||
' <main id="onboarding-shell" class="onboarding-shell">',
|
||||
' <section class="onboarding-stage onboarding-stage--landing">',
|
||||
' <div class="onboarding-layout">',
|
||||
' <div class="onboarding-qr-pane">',
|
||||
' <div class="onboarding-qr-frame">',
|
||||
' <img id="onboarding-qr" alt="Onboarding QR code" src="data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 320 320%22%3E%3Crect width=%22320%22 height=%22320%22 rx=%2224%22 fill=%22%23ffffff%22/%3E%3Crect x=%2230%22 y=%2230%22 width=%22260%22 height=%22260%22 rx=%2218%22 fill=%22%23f8fafc%22 stroke=%22%23cbd5e1%22 stroke-width=%223%22 stroke-dasharray=%2212 10%22/%3E%3Cpath d=%22M106 118h108M106 156h108M106 194h72%22 stroke=%22%2394a3b8%22 stroke-width=%2214%22 stroke-linecap=%22round%22/%3E%3Ccircle cx=%22128%22 cy=%22248%22 r=%2212%22 fill=%22%2394a3b8%22/%3E%3Ctext x=%22160%22 y=%2278%22 text-anchor=%22middle%22 fill=%22%230f172a%22 font-family=%22Arial,sans-serif%22 font-size=%2224%22 font-weight=%22700%22%3EQR code loading%3C/text%3E%3Ctext x=%22160%22 y=%22266%22 text-anchor=%22middle%22 fill=%22%234b5563%22 font-family=%22Arial,sans-serif%22 font-size=%2214%22%3EPlease wait%3C/text%3E%3C/svg%3E" />',
|
||||
' </div>',
|
||||
' <div id="onboarding-status" class="onboarding-status">Preparing onboarding link...</div>',
|
||||
' <p class="onboarding-qr-caption">Scan this QR code with your phone</p>',
|
||||
' </div>',
|
||||
' <div class="onboarding-copy-panel">',
|
||||
' <p class="onboarding-kicker onboarding-brand-title">Pulse Signage</p>',
|
||||
' <h1>Quickly set up with your phone</h1>',
|
||||
' <ol class="onboarding-instructions">',
|
||||
' <li>Open the camera and scan the QR code.</li>',
|
||||
' <li>Log in to Pulse Signage and choose a screen.</li>',
|
||||
' </ol>',
|
||||
' <div class="onboarding-pin-block">',
|
||||
' <span class="onboarding-pin-label">Pairing Code</span>',
|
||||
' <strong id="onboarding-pairing-code" class="onboarding-pin">' + Handlebars.escapeExpression(onboardingCode || 'Loading...') + '</strong>',
|
||||
' </div>',
|
||||
' </div>',
|
||||
' <form id="onboarding-local-form" class="onboarding-form onboarding-form--local">',
|
||||
' <label>',
|
||||
' <span>Client name</span>',
|
||||
' <input name="clientName" type="text" maxlength="255" required placeholder="Lobby player" autocomplete="off" />',
|
||||
' </label>',
|
||||
' <label>',
|
||||
' <span>Screen</span>',
|
||||
' <select name="screenSlug" id="onboarding-screen-select" required>',
|
||||
' <option value="">Loading screens...</option>',
|
||||
' </select>',
|
||||
' </label>',
|
||||
' <button type="submit">Save client</button>',
|
||||
' <div id="onboarding-message" class="onboarding-status"></div>',
|
||||
' </form>',
|
||||
' </div>',
|
||||
' </section>',
|
||||
'</main>'
|
||||
@@ -79,6 +76,10 @@ function renderOnboardingFormBody(deviceId) {
|
||||
' <p class="onboarding-copy">Pick an existing screen and give this player a friendly name that will persist after refreshes.</p>',
|
||||
' <form id="onboarding-form" class="onboarding-form">',
|
||||
' <label>',
|
||||
' <span>Pairing code</span>',
|
||||
' <input name="pairingCode" type="text" inputmode="numeric" pattern="[0-9]{6}" maxlength="6" required autocomplete="one-time-code" placeholder="Enter the code shown on the kiosk" />',
|
||||
' </label>',
|
||||
' <label>',
|
||||
' <span>Client name</span>',
|
||||
' <input name="clientName" type="text" maxlength="255" required placeholder="Lobby player" />',
|
||||
' </label>',
|
||||
@@ -136,13 +137,13 @@ function renderPlayerPage(slug, initialData) {
|
||||
});
|
||||
}
|
||||
|
||||
function renderPlayerOnboardingLandingPage() {
|
||||
function renderPlayerOnboardingLandingPage(options) {
|
||||
const pageAuthToken = createPageAuthBundle({ scope: 'onboarding' });
|
||||
const fontStylesheetHref = getFontStylesheetHref(PLAYER_MEDIA_DIR);
|
||||
return renderPage(getPlayerPageTemplate(), {
|
||||
title: 'Onboard player',
|
||||
bodyClass: 'onboarding-page',
|
||||
body: renderOnboardingLandingBody(),
|
||||
body: renderOnboardingLandingBody(options),
|
||||
stylesheets: fontStylesheetHref ? [fontStylesheetHref] : [],
|
||||
script: createPageFetchAuthScript(pageAuthToken) + getPlayerServiceWorkerRegistrationScript() + renderOnboardingLandingScript()
|
||||
});
|
||||
|
||||
+87
-14
@@ -62,11 +62,15 @@ function registerPlayerRoutes(app, options) {
|
||||
body: body
|
||||
}));
|
||||
|
||||
if (req.headers['x-pulse-page-auth']) {
|
||||
headers['x-pulse-page-auth'] = String(req.headers['x-pulse-page-auth']).trim();
|
||||
const requestHeaders = req && req.headers ? req.headers : {};
|
||||
if (requestHeaders['x-pulse-page-auth']) {
|
||||
headers['x-pulse-page-auth'] = String(requestHeaders['x-pulse-page-auth']).trim();
|
||||
}
|
||||
if (req.headers['if-none-match']) {
|
||||
headers['if-none-match'] = String(req.headers['if-none-match']).trim();
|
||||
if (requestHeaders['if-none-match']) {
|
||||
headers['if-none-match'] = String(requestHeaders['if-none-match']).trim();
|
||||
}
|
||||
if (requestHeaders['x-pulse-client-id']) {
|
||||
headers['x-pulse-client-id'] = String(requestHeaders['x-pulse-client-id']).trim();
|
||||
}
|
||||
if (requestOptions.contentType) {
|
||||
headers['content-type'] = requestOptions.contentType;
|
||||
@@ -96,6 +100,76 @@ function registerPlayerRoutes(app, options) {
|
||||
}
|
||||
}
|
||||
|
||||
async function getBoundScreenSlug(req) {
|
||||
if (!playerDeviceId) {
|
||||
return null;
|
||||
}
|
||||
|
||||
const clientId = String(req.query && req.query.clientId || '').trim();
|
||||
if (!clientId) {
|
||||
return null;
|
||||
}
|
||||
const bindingId = clientId;
|
||||
|
||||
if (bridgeBaseUrl) {
|
||||
const response = await fetchBridge(req, '/api/onboarding/status?deviceId=' + encodeURIComponent(bindingId), {
|
||||
method: 'GET'
|
||||
});
|
||||
const status = await readJsonResponse(response);
|
||||
return status && status.screenSlug ? String(status.screenSlug).trim() : null;
|
||||
}
|
||||
|
||||
const [rows] = await pool.query(
|
||||
`SELECT s.slug
|
||||
FROM d_onboarding_devices d
|
||||
JOIN d_screens s ON s.id = d.screen_id
|
||||
WHERE d.device_id = ?`,
|
||||
[bindingId]
|
||||
);
|
||||
return rows[0] && rows[0].slug ? String(rows[0].slug).trim() : null;
|
||||
}
|
||||
|
||||
async function isClientAuthorizedForScreen(req, requestedSlug) {
|
||||
const clientId = String(req.headers['x-pulse-client-id'] || '').trim();
|
||||
if (!clientId) {
|
||||
return false;
|
||||
}
|
||||
const boundSlug = await getBoundScreenSlug({ query: { clientId: clientId } });
|
||||
return boundSlug === String(requestedSlug || '').trim();
|
||||
}
|
||||
|
||||
function isAuthorizedScreenMove(req, requestedSlug) {
|
||||
const queryToken = String(req.query && req.query.moveToken || '').trim();
|
||||
const cookieHeader = String(req.headers && req.headers.cookie || '');
|
||||
const cookieToken = cookieHeader.split(';').map(function (part) {
|
||||
const separator = part.indexOf('=');
|
||||
return separator === -1 ? null : [part.slice(0, separator).trim(), part.slice(separator + 1).trim()];
|
||||
}).filter(Boolean).find(function (entry) { return entry[0] === 'pulse-screen-move'; });
|
||||
const token = queryToken || (cookieToken ? decodeURIComponent(cookieToken[1]) : '');
|
||||
if (!token) {
|
||||
return false;
|
||||
}
|
||||
|
||||
const payload = verifyPageAuthToken(token);
|
||||
return Boolean(payload
|
||||
&& String(payload.scope || '').trim() === 'screen-move'
|
||||
&& String(payload.playerId || '').trim() === String(playerDeviceId || '').trim()
|
||||
&& String(payload.screenSlug || '').trim() === String(requestedSlug || '').trim());
|
||||
}
|
||||
|
||||
app.post('/api/screen-move-authorize', express.json(), function (req, res) {
|
||||
const token = String(req.body && req.body.moveToken || '').trim();
|
||||
const payload = verifyPageAuthToken(token);
|
||||
if (!payload
|
||||
|| String(payload.scope || '').trim() !== 'screen-move'
|
||||
|| String(payload.playerId || '').trim() !== String(playerDeviceId || '').trim()) {
|
||||
return res.status(401).json({ error: 'Invalid screen move authorization.' });
|
||||
}
|
||||
|
||||
res.setHeader('Set-Cookie', `pulse-screen-move=${encodeURIComponent(token)}; Max-Age=60; Path=/; HttpOnly; SameSite=Lax`);
|
||||
return res.json({ ok: true });
|
||||
});
|
||||
|
||||
function requirePageAuth(allowedScopes) {
|
||||
return function (req, res, next) {
|
||||
if (!sharedSecret) {
|
||||
@@ -296,7 +370,7 @@ function registerPlayerRoutes(app, options) {
|
||||
}
|
||||
});
|
||||
|
||||
app.get('/screen/:slug', function (req, res) {
|
||||
app.get('/screen/:slug', async function (req, res, next) {
|
||||
if (onPlayerPublicBaseUrl) {
|
||||
try {
|
||||
onPlayerPublicBaseUrl(getPlayerPublicBaseUrl(req, null));
|
||||
@@ -321,7 +395,7 @@ function registerPlayerRoutes(app, options) {
|
||||
res.set('X-Player-Offline', '1');
|
||||
return res.send(common.renderPlayerPage(req.params.slug, null));
|
||||
}
|
||||
res.send(common.renderPlayerPage(req.params.slug, data));
|
||||
res.send(common.renderPlayerPage(req.params.slug, null));
|
||||
}).catch(function (error) {
|
||||
if (!isBridgeFetchError(error)) {
|
||||
console.error(error);
|
||||
@@ -332,15 +406,8 @@ function registerPlayerRoutes(app, options) {
|
||||
return;
|
||||
}
|
||||
|
||||
const { bindPlayerToScreen } = require('./onboarding');
|
||||
if (playerDeviceId) {
|
||||
void bindPlayerToScreen(pool, playerDeviceId, req.params.slug)
|
||||
.catch(function (error) {
|
||||
console.error(error);
|
||||
});
|
||||
}
|
||||
playerPlaylistService.buildScreenPlaylist(req.params.slug).then(function (data) {
|
||||
res.send(common.renderPlayerPage(req.params.slug, data));
|
||||
res.send(common.renderPlayerPage(req.params.slug, null));
|
||||
}).catch(function (error) {
|
||||
console.error(error);
|
||||
res.set('X-Player-Offline', '1');
|
||||
@@ -405,6 +472,9 @@ function registerPlayerRoutes(app, options) {
|
||||
|
||||
app.get('/api/screens/:slug/playlist', requirePageAuth(['player']), async function (req, res, next) {
|
||||
try {
|
||||
if (playerDeviceId && !(await isClientAuthorizedForScreen(req, req.params.slug))) {
|
||||
return res.status(403).json({ error: 'This browser tab is not authorized for this screen.' });
|
||||
}
|
||||
if (bridgeBaseUrl) {
|
||||
const response = await fetchBridge(req, '/api/screens/' + encodeURIComponent(req.params.slug) + '/playlist', {
|
||||
method: 'GET'
|
||||
@@ -448,6 +518,9 @@ function registerPlayerRoutes(app, options) {
|
||||
|
||||
app.get('/api/screens/:slug/announcement', requirePageAuth(['player']), async function (req, res, next) {
|
||||
try {
|
||||
if (playerDeviceId && !(await isClientAuthorizedForScreen(req, req.params.slug))) {
|
||||
return res.status(403).json({ error: 'This browser tab is not authorized for this screen.' });
|
||||
}
|
||||
if (bridgeBaseUrl) {
|
||||
const response = await fetchBridge(req, '/api/screens/' + encodeURIComponent(req.params.slug) + '/announcement', {
|
||||
method: 'GET'
|
||||
|
||||
+22
-1
@@ -32,6 +32,21 @@ function createPlayerRuntime(options) {
|
||||
const announcementListenersBySlug = new Map();
|
||||
const wss = new WebSocketServer({ noServer: true });
|
||||
|
||||
function hasActiveClientId(clientId, currentConnection) {
|
||||
const normalizedClientId = String(clientId || '').trim();
|
||||
if (!normalizedClientId) {
|
||||
return false;
|
||||
}
|
||||
for (const connections of connectionsBySlug.values()) {
|
||||
for (const connection of connections.values()) {
|
||||
if (connection !== currentConnection && String(connection.clientId || '').trim() === normalizedClientId) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
function normalizeClientIp(value) {
|
||||
const ip = String(value || '').trim();
|
||||
if (!ip) {
|
||||
@@ -534,7 +549,13 @@ function createPlayerRuntime(options) {
|
||||
return;
|
||||
}
|
||||
|
||||
connection.clientId = payload.clientId ? String(payload.clientId).trim() : connection.clientId;
|
||||
const nextClientId = payload.clientId ? String(payload.clientId).trim() : connection.clientId;
|
||||
if (nextClientId && hasActiveClientId(nextClientId, connection)) {
|
||||
socket.send(JSON.stringify({ type: 'client-id-conflict' }));
|
||||
socket.close(4009, 'Client ID is already in use.');
|
||||
return;
|
||||
}
|
||||
connection.clientId = nextClientId;
|
||||
connection.clientName = payload.clientName ? String(payload.clientName).trim() : connection.clientName;
|
||||
connection.deviceId = payload.deviceId ? normalizeDeviceId(payload.deviceId) || connection.deviceId : connection.deviceId;
|
||||
if (!connection.clientName && connection.clientId) {
|
||||
|
||||
+42
-2
@@ -22,6 +22,14 @@ const PERMISSION_SECTIONS = [
|
||||
{ key: 'read', name: 'Read', description: 'View connected player clients and live status.' },
|
||||
{ key: 'allow', name: 'Allow', description: 'Use the connected client command buttons.' }
|
||||
]
|
||||
},
|
||||
{
|
||||
key: 'pairing',
|
||||
order: 30,
|
||||
name: 'Player pairing',
|
||||
permissions: [
|
||||
{ key: 'allow', name: 'Allow', description: 'Pair players with screen groups.' }
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -109,6 +117,7 @@ const PERMISSION_SECTIONS = [
|
||||
{ key: 'read', name: 'Read', description: 'View configured RSS feeds.' },
|
||||
{ key: 'create', name: 'Create', description: 'Create new RSS feeds.' },
|
||||
{ key: 'update', name: 'Update', description: 'Update RSS feeds.' },
|
||||
{ key: 'allow', name: 'Allow', description: 'Manually refresh RSS feeds.' },
|
||||
{ key: 'delete', name: 'Delete', description: 'Delete RSS feeds.' }
|
||||
]
|
||||
},
|
||||
@@ -120,6 +129,7 @@ const PERMISSION_SECTIONS = [
|
||||
{ key: 'read', name: 'Read', description: 'View configured API sources.' },
|
||||
{ key: 'create', name: 'Create', description: 'Create new API sources.' },
|
||||
{ key: 'update', name: 'Update', description: 'Update API sources.' },
|
||||
{ key: 'allow', name: 'Allow', description: 'Manually refresh API sources.' },
|
||||
{ key: 'delete', name: 'Delete', description: 'Delete API sources.' }
|
||||
]
|
||||
},
|
||||
@@ -133,6 +143,18 @@ const PERMISSION_SECTIONS = [
|
||||
{ key: 'update', name: 'Update', description: 'Update timetable groups and entries.' },
|
||||
{ key: 'delete', name: 'Delete', description: 'Delete timetable groups.' }
|
||||
]
|
||||
},
|
||||
{
|
||||
key: 'weather',
|
||||
order: 40,
|
||||
name: 'Weather locations',
|
||||
permissions: [
|
||||
{ key: 'read', name: 'Read', description: 'View configured weather locations.' },
|
||||
{ key: 'create', name: 'Create', description: 'Create new weather locations.' },
|
||||
{ key: 'update', name: 'Update', description: 'Update weather locations.' },
|
||||
{ key: 'allow', name: 'Allow', description: 'Manually refresh weather locations.' },
|
||||
{ key: 'delete', name: 'Delete', description: 'Delete weather locations.' }
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -140,6 +162,24 @@ const PERMISSION_SECTIONS = [
|
||||
sectionName: 'Settings',
|
||||
order: 40,
|
||||
permissions: [
|
||||
{
|
||||
key: 'system-settings',
|
||||
order: 70,
|
||||
name: 'System settings',
|
||||
permissions: [
|
||||
{ key: 'read', name: 'Read', description: 'View global application settings.' },
|
||||
{ key: 'update', name: 'Update', description: 'Update global application settings.' }
|
||||
]
|
||||
},
|
||||
{
|
||||
key: 'audit-log',
|
||||
order: 60,
|
||||
name: 'Audit log',
|
||||
permissions: [
|
||||
{ key: 'read', name: 'Read', description: 'View security and session audit events.' },
|
||||
{ key: 'allow', name: 'Allow', description: 'Download filtered audit events.' }
|
||||
]
|
||||
},
|
||||
{
|
||||
key: 'users',
|
||||
order: 10,
|
||||
@@ -218,8 +258,8 @@ const PERMISSIONS = PERMISSION_SECTIONS.flatMap(function (section, sectionIndex)
|
||||
});
|
||||
|
||||
const DEFAULT_ROLE = {
|
||||
key: 'administrators',
|
||||
name: 'Administrators',
|
||||
key: 'super-admin',
|
||||
name: 'Super Admin',
|
||||
description: 'Full access to the admin interface.'
|
||||
};
|
||||
|
||||
|
||||
+23
-4
@@ -9,6 +9,7 @@ const common = require('./common');
|
||||
const { verifyPassword, createSessionToken, hashSessionToken, hashPassword, validatePasswordStrength } = require('#src/auth');
|
||||
const pages = require('#src/web/pages');
|
||||
const registerMiddleware = require('#src/web/middleware');
|
||||
const registerNotFoundHandler = require('#src/web/middleware/not-found');
|
||||
const { createBackgroundTaskQueue } = require('#src/web/lib/background-tasks/queue');
|
||||
const { initializeBackgroundTasks } = require('#src/web/lib/background-tasks');
|
||||
const { createDataSourceTaskService } = require('#src/web/lib/background-tasks/tasks-scheduled/data-source-refresh');
|
||||
@@ -23,6 +24,8 @@ const { rbacData } = require('#src/web/lib/auth');
|
||||
const { createPlayerActionService } = require('#src/web/lib/player-actions');
|
||||
const { isClientNameAvailable, withClientNameReservation } = require('#src/data/client-name-check');
|
||||
const { createSessionService } = require('#src/web/lib/auth');
|
||||
const { fetchAppSettings } = require('#src/data/app-settings');
|
||||
const { recordRequestAuditEvent } = require('#src/data/audit-log');
|
||||
const { hasAnyPermission } = require('#src/rbac');
|
||||
const { ensureFontLibrary } = require('#src/web/lib/media/font-library');
|
||||
const {
|
||||
@@ -34,7 +37,6 @@ const {
|
||||
getAuditUserId,
|
||||
getCanvasSignature,
|
||||
fetchPlaylistCanvasId,
|
||||
fetchPlaylistCanvasSignature,
|
||||
fetchScreensByPlaylistId,
|
||||
fetchScreensBySlideId,
|
||||
fetchScreensByTemplateId,
|
||||
@@ -92,6 +94,14 @@ async function start() {
|
||||
const sessionService = createSessionService({
|
||||
sessionCookieName: webConfig.sessionCookieName,
|
||||
sessionMaxAgeMs: webConfig.sessionMaxAgeMs,
|
||||
getConfiguredSessionMaxAgeMs: async function () {
|
||||
const settings = await fetchAppSettings(pool);
|
||||
return Number(settings['security.session_lifetime_days']) * 24 * 60 * 60 * 1000;
|
||||
},
|
||||
getConfiguredMaxActiveSessions: async function () {
|
||||
const settings = await fetchAppSettings(pool);
|
||||
return Number(settings['security.max_active_sessions']);
|
||||
},
|
||||
hashSessionToken: hashSessionToken,
|
||||
createSessionToken: createSessionToken
|
||||
});
|
||||
@@ -99,6 +109,7 @@ async function start() {
|
||||
const createUserSession = sessionService.createUserSession;
|
||||
const clearSessionCookie = sessionService.clearSessionCookie;
|
||||
const setSessionCookie = sessionService.setSessionCookie;
|
||||
const getSessionMaxAgeMs = sessionService.getSessionMaxAgeMs;
|
||||
const setAuthMessageCookie = sessionService.setAuthMessageCookie;
|
||||
const consumeAuthMessageCookie = sessionService.consumeAuthMessageCookie;
|
||||
const loadCurrentUser = sessionService.loadCurrentUser;
|
||||
@@ -119,9 +130,11 @@ async function start() {
|
||||
common: common,
|
||||
pages: pages,
|
||||
upload: upload,
|
||||
mediaDir: webConfig.mediaDir,
|
||||
uploadDir: webConfig.uploadsDir,
|
||||
createUserSession: createUserSession,
|
||||
setSessionCookie: setSessionCookie,
|
||||
getSessionMaxAgeMs: getSessionMaxAgeMs,
|
||||
clearSessionCookie: clearSessionCookie,
|
||||
setAuthMessageCookie: setAuthMessageCookie,
|
||||
consumeAuthMessageCookie: consumeAuthMessageCookie,
|
||||
@@ -131,6 +144,7 @@ async function start() {
|
||||
sessionCookieName: webConfig.sessionCookieName,
|
||||
formatDashboardDate: formatDashboardDate,
|
||||
getAuditUserId: getAuditUserId,
|
||||
recordRequestAuditEvent: recordRequestAuditEvent,
|
||||
hashPassword: hashPassword,
|
||||
validatePasswordStrength: validatePasswordStrength,
|
||||
readArrayField: readArrayField,
|
||||
@@ -140,7 +154,6 @@ async function start() {
|
||||
fetchScreensBySlideId: fetchScreensBySlideId,
|
||||
fetchScreensByTemplateId: fetchScreensByTemplateId,
|
||||
fetchPlaylistCanvasId: fetchPlaylistCanvasId,
|
||||
fetchPlaylistCanvasSignature: fetchPlaylistCanvasSignature,
|
||||
getCanvasSignature: getCanvasSignature,
|
||||
normalizeScheduleMode: normalizeScheduleMode,
|
||||
parseDateTimeLocal: parseDateTimeLocal,
|
||||
@@ -150,6 +163,7 @@ async function start() {
|
||||
broadcastDashboardState: broadcastDashboardState,
|
||||
dataSourceTasks: dataSourceTasks,
|
||||
playerActionService: playerActionService,
|
||||
playerInternalBaseUrl: webConfig.playerInternalUrl,
|
||||
isClientNameAvailable: isClientNameAvailable,
|
||||
withClientNameReservation: withClientNameReservation,
|
||||
requirePermission: function (permissionKey, options) {
|
||||
@@ -157,7 +171,6 @@ async function start() {
|
||||
},
|
||||
hasAnyPermission: hasAnyPermission,
|
||||
backgroundTaskQueue: backgroundTaskQueue,
|
||||
mediaDir: webConfig.mediaDir,
|
||||
uploadSyncService: webBootstrap.uploadSyncService,
|
||||
collectUploadReferencesFromSlide: collectUploadReferencesFromSlide,
|
||||
collectUploadReferencesFromTemplate: collectUploadReferencesFromTemplate,
|
||||
@@ -167,9 +180,15 @@ async function start() {
|
||||
buildDashboardState: webBootstrap.buildDashboardState
|
||||
});
|
||||
|
||||
registerNotFoundHandler(app);
|
||||
|
||||
app.use(function (error, req, res, _next) {
|
||||
console.error(error);
|
||||
const statusCode = Number(error && (error.statusCode || error.status)) || 500;
|
||||
if (statusCode >= 500) {
|
||||
console.error(error);
|
||||
} else if (statusCode >= 400 && statusCode !== 404) {
|
||||
console.warn(error && error.message ? error.message : 'Request failed.', { statusCode: statusCode });
|
||||
}
|
||||
const isXhr = String(req.get && req.get('X-Requested-With') || '').toLowerCase() === 'xmlhttprequest';
|
||||
const wantsHtml = !isXhr && !String(req.originalUrl || '').startsWith('/api/') && (!req.accepts || req.accepts('html'));
|
||||
|
||||
|
||||
@@ -179,6 +179,8 @@ function registerPartials(Handlebars, viewsRoot) {
|
||||
Handlebars.registerPartial('signage/templates/animation-advanced-modal', fs.readFileSync(path.join(viewsRoot, 'signage', 'templates', 'animation-advanced-modal.hbs'), 'utf8'));
|
||||
Handlebars.registerPartial('data-sources/api-sources/form', fs.readFileSync(path.join(viewsRoot, 'data-sources', 'api-sources', 'form.hbs'), 'utf8'));
|
||||
Handlebars.registerPartial('data-sources/rss-feeds/form', fs.readFileSync(path.join(viewsRoot, 'data-sources', 'rss-feeds', 'form.hbs'), 'utf8'));
|
||||
Handlebars.registerPartial('data-sources/weather/preview', fs.readFileSync(path.join(viewsRoot, 'data-sources', 'weather', 'preview.hbs'), 'utf8'));
|
||||
Handlebars.registerPartial('data-sources/weather/forecast-preview', fs.readFileSync(path.join(viewsRoot, 'data-sources', 'weather', 'forecast-preview.hbs'), 'utf8'));
|
||||
}
|
||||
|
||||
// One entry point keeps Handlebars bootstrap centralized.
|
||||
|
||||
@@ -113,7 +113,7 @@ async function fetchRolesForUser(pool, userId) {
|
||||
|
||||
async function fetchUsersWithRoles(pool) {
|
||||
const [rows] = await pool.query(
|
||||
`SELECT u.id, u.name, u.username, u.created_at, u.modified_at,
|
||||
`SELECT u.id, u.name, u.username, u.account_locked, u.created_at, u.modified_at,
|
||||
COALESCE(role_data.role_names, '') AS role_names,
|
||||
COALESCE(role_data.role_ids_csv, '') AS role_ids_csv
|
||||
FROM a_users u
|
||||
@@ -142,7 +142,7 @@ async function fetchUsersWithRolesPage(pool, page, pageSize, searchTerm, sortKey
|
||||
const whereSql = hasExcludedUserId ? 'WHERE u.id <> ?' : '';
|
||||
const queryArgs = hasExcludedUserId ? [excludedUserId] : [];
|
||||
const paged = await fetchPagedRows(pool, {
|
||||
selectSql: `SELECT u.id, u.name, u.username, u.created_at, u.modified_at,
|
||||
selectSql: `SELECT u.id, u.name, u.username, u.account_locked, u.created_at, u.modified_at,
|
||||
COALESCE(role_data.role_names, '') AS role_names,
|
||||
COALESCE(role_data.role_ids_csv, '') AS role_ids_csv
|
||||
FROM a_users u
|
||||
@@ -189,7 +189,7 @@ async function fetchUsersWithRolesPage(pool, page, pageSize, searchTerm, sortKey
|
||||
|
||||
async function fetchUserWithRoles(pool, userId) {
|
||||
const [rows] = await pool.query(
|
||||
`SELECT u.id, u.name, u.username, u.created_at, u.modified_at,
|
||||
`SELECT u.id, u.name, u.username, u.account_locked, u.created_at, u.modified_at,
|
||||
COALESCE(role_data.role_names, '') AS role_names,
|
||||
COALESCE(role_data.role_ids_csv, '') AS role_ids_csv
|
||||
FROM a_users u
|
||||
@@ -216,6 +216,17 @@ async function fetchUserWithRoles(pool, userId) {
|
||||
});
|
||||
}
|
||||
|
||||
async function fetchActiveUserSessions(pool, userId) {
|
||||
const [rows] = await pool.query(
|
||||
`SELECT id, ip_address, user_agent, created_at, last_used_at, expires_at
|
||||
FROM a_sessions
|
||||
WHERE user_id = ? AND expires_at > NOW()
|
||||
ORDER BY last_used_at DESC`,
|
||||
[userId]
|
||||
);
|
||||
return rows || [];
|
||||
}
|
||||
|
||||
async function syncUserRoles(pool, userId, roleIds) {
|
||||
const uniqueRoleIds = Array.from(new Set((Array.isArray(roleIds) ? roleIds : []).map(function (roleId) {
|
||||
return Number(roleId);
|
||||
@@ -225,7 +236,14 @@ async function syncUserRoles(pool, userId, roleIds) {
|
||||
|
||||
await pool.query('DELETE FROM a_user_roles WHERE user_id = ?', [userId]);
|
||||
for (const roleId of uniqueRoleIds) {
|
||||
await pool.query('INSERT IGNORE INTO a_user_roles (user_id, role_id, created_by, modified_by) VALUES (?, ?, ?, ?)', [userId, roleId, null, null]);
|
||||
await pool.query(
|
||||
`INSERT INTO a_user_roles (user_id, role_id, created_by, modified_by)
|
||||
SELECT ?, ?, ?, ?
|
||||
WHERE NOT EXISTS (
|
||||
SELECT 1 FROM a_user_roles WHERE user_id = ? AND role_id = ?
|
||||
)`,
|
||||
[userId, roleId, null, null, userId, roleId]
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -238,7 +256,14 @@ async function syncRoleUsers(pool, roleId, userIds) {
|
||||
|
||||
await pool.query('DELETE FROM a_user_roles WHERE role_id = ?', [roleId]);
|
||||
for (const userId of uniqueUserIds) {
|
||||
await pool.query('INSERT IGNORE INTO a_user_roles (user_id, role_id, created_by, modified_by) VALUES (?, ?, ?, ?)', [userId, roleId, null, null]);
|
||||
await pool.query(
|
||||
`INSERT INTO a_user_roles (user_id, role_id, created_by, modified_by)
|
||||
SELECT ?, ?, ?, ?
|
||||
WHERE NOT EXISTS (
|
||||
SELECT 1 FROM a_user_roles WHERE user_id = ? AND role_id = ?
|
||||
)`,
|
||||
[userId, roleId, null, null, userId, roleId]
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -257,7 +282,15 @@ async function syncRolePermissions(pool, roleId, permissionKeys) {
|
||||
|
||||
await pool.query('DELETE FROM a_role_permissions WHERE role_id = ?', [roleId]);
|
||||
for (const permissionRow of permissionRows) {
|
||||
await pool.query('INSERT IGNORE INTO a_role_permissions (role_id, permission_id, created_by, modified_by) VALUES (?, ?, ?, ?)', [roleId, Number(permissionRow.id), null, null]);
|
||||
const permissionId = Number(permissionRow.id);
|
||||
await pool.query(
|
||||
`INSERT INTO a_role_permissions (role_id, permission_id, created_by, modified_by)
|
||||
SELECT ?, ?, ?, ?
|
||||
WHERE NOT EXISTS (
|
||||
SELECT 1 FROM a_role_permissions WHERE role_id = ? AND permission_id = ?
|
||||
)`,
|
||||
[roleId, permissionId, null, null, roleId, permissionId]
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -273,6 +306,7 @@ module.exports = {
|
||||
fetchUsersWithRoles,
|
||||
fetchUsersWithRolesPage,
|
||||
fetchUserWithRoles,
|
||||
fetchActiveUserSessions,
|
||||
syncUserRoles,
|
||||
syncRoleUsers,
|
||||
syncRolePermissions
|
||||
|
||||
@@ -34,6 +34,8 @@ function normalizeReturnToPath(value, baseUrl) {
|
||||
function createSessionService(options) {
|
||||
const sessionCookieName = String(options && options.sessionCookieName || '').trim();
|
||||
const sessionMaxAgeMs = Number(options && options.sessionMaxAgeMs);
|
||||
const getConfiguredSessionMaxAgeMs = options && options.getConfiguredSessionMaxAgeMs;
|
||||
const getConfiguredMaxActiveSessions = options && options.getConfiguredMaxActiveSessions;
|
||||
const hashSessionToken = options && options.hashSessionToken;
|
||||
const createSessionToken = options && options.createSessionToken;
|
||||
const authMessageCookieName = 'pulse_auth_message';
|
||||
@@ -88,7 +90,20 @@ function createSessionService(options) {
|
||||
}
|
||||
|
||||
function setSessionCookie(res, token) {
|
||||
appendCookieHeader(res, serializeCookie(sessionCookieName, token, { maxAge: sessionMaxAgeMs }));
|
||||
const hasRequestedMaxAge = arguments.length > 2;
|
||||
const requestedMaxAgeMs = hasRequestedMaxAge ? Number(arguments[2]) : sessionMaxAgeMs;
|
||||
const cookieOptions = hasRequestedMaxAge && arguments[2] === null
|
||||
? {}
|
||||
: { maxAge: Number.isFinite(requestedMaxAgeMs) && requestedMaxAgeMs > 0 ? requestedMaxAgeMs : sessionMaxAgeMs };
|
||||
appendCookieHeader(res, serializeCookie(sessionCookieName, token, cookieOptions));
|
||||
}
|
||||
|
||||
async function getSessionMaxAgeMs() {
|
||||
const configuredValue = typeof getConfiguredSessionMaxAgeMs === 'function'
|
||||
? await getConfiguredSessionMaxAgeMs()
|
||||
: sessionMaxAgeMs;
|
||||
const normalizedValue = Number(configuredValue);
|
||||
return Number.isFinite(normalizedValue) && normalizedValue > 0 ? normalizedValue : sessionMaxAgeMs;
|
||||
}
|
||||
|
||||
function setAuthMessageCookie(res, message) {
|
||||
@@ -113,7 +128,7 @@ function createSessionService(options) {
|
||||
|
||||
const tokenHash = hashSessionToken(token);
|
||||
const [rows] = await pool.query(
|
||||
`SELECT s.user_id, u.id, u.name, u.username
|
||||
`SELECT s.user_id, u.id, u.name, u.username, u.must_change_password
|
||||
FROM a_sessions s
|
||||
JOIN a_users u ON u.id = s.user_id
|
||||
WHERE s.session_hash = ?
|
||||
@@ -146,6 +161,7 @@ function createSessionService(options) {
|
||||
|
||||
await pool.query('UPDATE a_sessions SET last_used_at = CURRENT_TIMESTAMP, modified_by = ? WHERE session_hash = ?', [rows[0].user_id, tokenHash]);
|
||||
return Object.assign({}, rows[0], {
|
||||
mustChangePassword: Boolean(rows[0].must_change_password),
|
||||
roleKeys: roleRows.map(function (row) {
|
||||
return String(row.role_key || '').trim();
|
||||
}).filter(Boolean),
|
||||
@@ -155,14 +171,34 @@ function createSessionService(options) {
|
||||
});
|
||||
}
|
||||
|
||||
async function createUserSession(pool, userId) {
|
||||
async function createUserSession(pool, userId, configuredMaxAgeMs, metadata) {
|
||||
const token = createSessionToken();
|
||||
const tokenHash = hashSessionToken(token);
|
||||
const expiresAt = new Date(Date.now() + sessionMaxAgeMs);
|
||||
const maxAgeMs = Number.isFinite(Number(configuredMaxAgeMs)) && Number(configuredMaxAgeMs) > 0
|
||||
? Number(configuredMaxAgeMs)
|
||||
: await getSessionMaxAgeMs();
|
||||
const expiresAt = new Date(Date.now() + maxAgeMs);
|
||||
const sessionMetadata = metadata && typeof metadata === 'object' ? metadata : {};
|
||||
await pool.query(
|
||||
'INSERT INTO a_sessions (session_hash, user_id, expires_at, created_by, modified_by) VALUES (?, ?, ?, ?, ?)',
|
||||
[tokenHash, userId, expiresAt, userId, userId]
|
||||
'INSERT INTO a_sessions (session_hash, user_id, ip_address, user_agent, expires_at, created_by, modified_by) VALUES (?, ?, ?, ?, ?, ?, ?)',
|
||||
[tokenHash, userId, String(sessionMetadata.ipAddress || '').slice(0, 255) || null, String(sessionMetadata.userAgent || '').slice(0, 512) || null, expiresAt, userId, userId]
|
||||
);
|
||||
|
||||
if (typeof getConfiguredMaxActiveSessions === 'function') {
|
||||
const maxActiveSessions = Number(await getConfiguredMaxActiveSessions());
|
||||
if (Number.isInteger(maxActiveSessions) && maxActiveSessions > 0) {
|
||||
const [sessionRows] = await pool.query(
|
||||
'SELECT id, session_hash FROM a_sessions WHERE user_id = ? AND expires_at > NOW() ORDER BY last_used_at ASC, created_at ASC, id ASC',
|
||||
[userId]
|
||||
);
|
||||
const sessionsToRemove = (sessionRows || []).filter(function (session) {
|
||||
return session.session_hash !== tokenHash;
|
||||
}).slice(0, Math.max(0, sessionRows.length - maxActiveSessions));
|
||||
for (const session of sessionsToRemove) {
|
||||
await pool.query('DELETE FROM a_sessions WHERE id = ? AND user_id = ?', [session.id, userId]);
|
||||
}
|
||||
}
|
||||
}
|
||||
return token;
|
||||
}
|
||||
|
||||
@@ -184,6 +220,7 @@ function createSessionService(options) {
|
||||
consumeAuthMessageCookie: consumeAuthMessageCookie,
|
||||
loadCurrentUser: loadCurrentUser,
|
||||
createUserSession: createUserSession,
|
||||
getSessionMaxAgeMs: getSessionMaxAgeMs,
|
||||
requireAuth: requireAuth,
|
||||
getRequestOrigin: getRequestOrigin
|
||||
};
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
const { refreshApiSource, refreshRssFeed } = require('../../data-source-refresh');
|
||||
const { refreshApiSource, refreshRssFeed, refreshWeatherLocation } = require('../../data-source-refresh');
|
||||
|
||||
const TASK = {
|
||||
taskType: 'data-source-refresh'
|
||||
@@ -24,6 +24,7 @@ function registerDataSourceRefreshTask(options) {
|
||||
if (!apiSource) {
|
||||
throw new Error('API source not found.');
|
||||
}
|
||||
if (apiSource.enabled === 0 || apiSource.enabled === false) return { skipped: true, reason: 'disabled' };
|
||||
return refreshApiSource(pool, common, apiSource, Number(payload.actorId) || null, options.notifyPlayerScreens);
|
||||
}
|
||||
|
||||
@@ -32,9 +33,19 @@ function registerDataSourceRefreshTask(options) {
|
||||
if (!rssFeed) {
|
||||
throw new Error('RSS feed not found.');
|
||||
}
|
||||
if (rssFeed.enabled === 0 || rssFeed.enabled === false) return { skipped: true, reason: 'disabled' };
|
||||
return refreshRssFeed(pool, common, rssFeed.id, rssFeed.feed_url, rssFeed.item_limit, Number(payload.actorId) || null, options.notifyPlayerScreens);
|
||||
}
|
||||
|
||||
if (sourceType === 'weather-location') {
|
||||
const location = await common.fetchWeatherLocationById(pool, sourceId);
|
||||
if (!location) {
|
||||
throw new Error('Weather location not found.');
|
||||
}
|
||||
if (location.enabled === 0 || location.enabled === false) return { skipped: true, reason: 'disabled' };
|
||||
return refreshWeatherLocation(pool, common, location, Number(payload.actorId) || null, options.notifyPlayerScreens);
|
||||
}
|
||||
|
||||
throw new Error('Unsupported data source refresh task.');
|
||||
});
|
||||
}
|
||||
|
||||
@@ -0,0 +1,34 @@
|
||||
const { fetchAppSettings } = require('#src/data/app-settings');
|
||||
|
||||
const TASK = {
|
||||
key: 'audit-log-sweep',
|
||||
title: 'Audit log cleanup',
|
||||
category: 'cleanup',
|
||||
intervalMs: 24 * 60 * 60 * 1000
|
||||
};
|
||||
|
||||
function registerAuditLogSweepTask(options) {
|
||||
const backgroundTaskQueue = options && options.backgroundTaskQueue;
|
||||
const pool = options && options.pool;
|
||||
if (!backgroundTaskQueue || !pool) {
|
||||
throw new Error('registerAuditLogSweepTask requires audit cleanup dependencies.');
|
||||
}
|
||||
backgroundTaskQueue.registerRecurringTask({
|
||||
key: TASK.key,
|
||||
title: TASK.title,
|
||||
category: TASK.category,
|
||||
intervalMs: TASK.intervalMs,
|
||||
metadata: {},
|
||||
run: async function () {
|
||||
const settings = await fetchAppSettings(pool);
|
||||
const retentionDays = Number(settings['audit.retention_days']);
|
||||
if (!Number.isInteger(retentionDays) || retentionDays <= 0) {
|
||||
return;
|
||||
}
|
||||
const cutoff = new Date(Date.now() - retentionDays * 24 * 60 * 60 * 1000);
|
||||
await pool.query('DELETE FROM o_audit_events WHERE occurred_at < ?', [cutoff]);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
module.exports = { registerAuditLogSweepTask };
|
||||
@@ -9,7 +9,7 @@ const TASK = {
|
||||
};
|
||||
|
||||
const { normalizeIntervalMs } = require('../queue');
|
||||
const { refreshApiSource, refreshRssFeed } = require('../../data-source-refresh');
|
||||
const { refreshApiSource, refreshRssFeed, refreshWeatherLocation } = require('../../data-source-refresh');
|
||||
|
||||
function registerRecurringDataSourceRefreshes(options) {
|
||||
const pool = options && options.pool;
|
||||
@@ -23,6 +23,7 @@ function registerRecurringDataSourceRefreshes(options) {
|
||||
return (async function () {
|
||||
const apiSourcesData = await common.fetchApiSourcesData(pool);
|
||||
(apiSourcesData.apiSources || []).forEach(function (apiSource) {
|
||||
if (apiSource.enabled === 0 || apiSource.enabled === false) return;
|
||||
backgroundTaskQueue.registerRecurringTask({
|
||||
key: 'api-source-refresh:' + Number(apiSource.id),
|
||||
title: 'API source refresh',
|
||||
@@ -41,6 +42,7 @@ function registerRecurringDataSourceRefreshes(options) {
|
||||
|
||||
const rssFeedsData = await common.fetchRssFeedsData(pool);
|
||||
(rssFeedsData.rssFeeds || []).forEach(function (rssFeed) {
|
||||
if (rssFeed.enabled === 0 || rssFeed.enabled === false) return;
|
||||
backgroundTaskQueue.registerRecurringTask({
|
||||
key: 'rss-feed-refresh:' + Number(rssFeed.id),
|
||||
title: 'RSS feed refresh',
|
||||
@@ -56,6 +58,19 @@ function registerRecurringDataSourceRefreshes(options) {
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
const weatherLocationsData = await common.fetchWeatherLocationsData(pool);
|
||||
(weatherLocationsData.weatherLocations || []).forEach(function (location) {
|
||||
if (location.enabled === 0 || location.enabled === false) return;
|
||||
backgroundTaskQueue.registerRecurringTask({
|
||||
key: 'weather-location-refresh:' + Number(location.id),
|
||||
title: 'Weather location refresh',
|
||||
category: TASK.category,
|
||||
intervalMs: normalizeIntervalMs(location.update_interval_value, location.update_interval_unit),
|
||||
metadata: { sourceType: 'weather-location', sourceId: Number(location.id), sourceName: location.name },
|
||||
run: function () { return refreshWeatherLocation(pool, common, location, null, options.notifyPlayerScreens); }
|
||||
});
|
||||
});
|
||||
})();
|
||||
}
|
||||
|
||||
@@ -73,7 +88,7 @@ function createDataSourceTaskService(options) {
|
||||
}
|
||||
|
||||
function buildRecurringTitle(sourceType) {
|
||||
return sourceType === 'rss-feed' ? 'RSS feed refresh' : 'API source refresh';
|
||||
return sourceType === 'rss-feed' ? 'RSS feed refresh' : sourceType === 'weather-location' ? 'Weather location refresh' : 'API source refresh';
|
||||
}
|
||||
|
||||
function registerRecurringRefresh(sourceType, id, name, intervalValue, intervalUnit, run) {
|
||||
@@ -122,6 +137,10 @@ function createDataSourceTaskService(options) {
|
||||
return refreshRssFeed(pool, common, rssFeedId, feedUrl, itemLimit, actorId, options.notifyPlayerScreens);
|
||||
}
|
||||
|
||||
async function refreshWeatherLocationInBackground(locationId, actorId) {
|
||||
return refreshWeatherLocation(pool, common, locationId, actorId, options.notifyPlayerScreens);
|
||||
}
|
||||
|
||||
return {
|
||||
formatRecurringKey: formatRecurringKey,
|
||||
buildRecurringTitle: buildRecurringTitle,
|
||||
@@ -129,7 +148,8 @@ function createDataSourceTaskService(options) {
|
||||
removeRecurringRefresh: removeRecurringRefresh,
|
||||
getTaskStatusById: getTaskStatusById,
|
||||
refreshApiSourceInBackground: refreshApiSourceInBackground,
|
||||
refreshRssFeedInBackground: refreshRssFeedInBackground
|
||||
refreshRssFeedInBackground: refreshRssFeedInBackground,
|
||||
refreshWeatherLocationInBackground: refreshWeatherLocationInBackground
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,31 @@
|
||||
const TASK = {
|
||||
key: 'expired-session-sweep',
|
||||
title: 'Expired session cleanup',
|
||||
category: 'cleanup',
|
||||
trigger: 'scheduled recurring task, hourly',
|
||||
purpose: 'remove expired authentication sessions and their metadata.',
|
||||
taskType: 'recurring-run',
|
||||
intervalMs: 60 * 60 * 1000
|
||||
};
|
||||
|
||||
function registerExpiredSessionSweepTask(options) {
|
||||
const backgroundTaskQueue = options && options.backgroundTaskQueue;
|
||||
const pool = options && options.pool;
|
||||
|
||||
if (!backgroundTaskQueue || !pool) {
|
||||
throw new Error('registerExpiredSessionSweepTask requires the session cleanup dependencies.');
|
||||
}
|
||||
|
||||
backgroundTaskQueue.registerRecurringTask({
|
||||
key: TASK.key,
|
||||
title: TASK.title,
|
||||
category: TASK.category,
|
||||
intervalMs: TASK.intervalMs,
|
||||
metadata: {},
|
||||
run: async function () {
|
||||
await pool.query('DELETE FROM a_sessions WHERE expires_at <= NOW()');
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
module.exports = { registerExpiredSessionSweepTask };
|
||||
@@ -3,7 +3,7 @@ const TASK = {
|
||||
title: 'Onboarding device prune',
|
||||
category: 'cleanup',
|
||||
trigger: 'scheduled recurring task, hourly',
|
||||
purpose: 'remove stale onboarding device bindings that have been idle for more than one minute.',
|
||||
purpose: 'remove unbound onboarding devices that have been idle for more than one minute.',
|
||||
taskType: 'recurring-run',
|
||||
intervalMs: 60 * 60 * 1000
|
||||
};
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
const { refreshApiSource, refreshRssFeed } = require('../../data-source-refresh');
|
||||
const { refreshApiSource, refreshRssFeed, refreshWeatherLocation } = require('../../data-source-refresh');
|
||||
const { normalizeIntervalMs } = require('../queue');
|
||||
|
||||
const TASK = {
|
||||
key: 'startup-data-source-refresh',
|
||||
@@ -26,23 +27,52 @@ function scheduleStartupDataSourceRefreshes(options) {
|
||||
};
|
||||
}
|
||||
|
||||
function shouldRefreshAtStartup(source) {
|
||||
const lastPulledAt = source && source.last_pulled_at ? new Date(source.last_pulled_at).getTime() : NaN;
|
||||
if (!Number.isFinite(lastPulledAt)) {
|
||||
return true;
|
||||
}
|
||||
|
||||
const intervalMs = normalizeIntervalMs(source.update_interval_value, source.update_interval_unit);
|
||||
return Date.now() - lastPulledAt >= intervalMs;
|
||||
}
|
||||
|
||||
return (async function () {
|
||||
const apiSourcesData = await common.fetchApiSourcesData(pool);
|
||||
const rssFeedsData = await common.fetchRssFeedsData(pool);
|
||||
const weatherLocationsData = await common.fetchWeatherLocationsData(pool);
|
||||
const startupSources = [];
|
||||
|
||||
(apiSourcesData.apiSources || []).forEach(function (apiSource) {
|
||||
if (apiSource.enabled === 0 || apiSource.enabled === false) return;
|
||||
if (!shouldRefreshAtStartup(apiSource)) {
|
||||
return;
|
||||
}
|
||||
startupSources.push(buildStartupSource('api-source', apiSource.id, apiSource.name, function () {
|
||||
return refreshApiSource(pool, common, apiSource, null, options.notifyPlayerScreens);
|
||||
}));
|
||||
});
|
||||
|
||||
(rssFeedsData.rssFeeds || []).forEach(function (rssFeed) {
|
||||
if (rssFeed.enabled === 0 || rssFeed.enabled === false) return;
|
||||
if (!shouldRefreshAtStartup(rssFeed)) {
|
||||
return;
|
||||
}
|
||||
startupSources.push(buildStartupSource('rss-feed', rssFeed.id, rssFeed.name, function () {
|
||||
return refreshRssFeed(pool, common, rssFeed.id, rssFeed.feed_url, rssFeed.item_limit, null, options.notifyPlayerScreens);
|
||||
}));
|
||||
});
|
||||
|
||||
(weatherLocationsData.weatherLocations || []).forEach(function (location) {
|
||||
if (location.enabled === 0 || location.enabled === false) return;
|
||||
if (!shouldRefreshAtStartup(location)) {
|
||||
return;
|
||||
}
|
||||
startupSources.push(buildStartupSource('weather-location', location.id, location.name, function () {
|
||||
return refreshWeatherLocation(pool, common, location, null, options.notifyPlayerScreens);
|
||||
}));
|
||||
});
|
||||
|
||||
// Stagger startup refreshes to avoid a burst against the DB/player.
|
||||
startupSources.forEach(function (source, index) {
|
||||
const startupDelayMs = index * staggerMs;
|
||||
@@ -50,7 +80,7 @@ function scheduleStartupDataSourceRefreshes(options) {
|
||||
setTimeout(function () {
|
||||
backgroundTaskQueue.enqueueTask({
|
||||
key: TASK.key + ':' + source.type + ':' + source.id + ':' + Date.now(),
|
||||
title: source.type === 'rss-feed' ? 'RSS feed refresh' : 'API source refresh',
|
||||
title: source.type === 'rss-feed' ? 'RSS feed refresh' : source.type === 'weather-location' ? 'Weather location refresh' : 'API source refresh',
|
||||
category: TASK.category,
|
||||
taskType: 'data-source-refresh',
|
||||
metadata: {
|
||||
|
||||
@@ -9,8 +9,7 @@ function createWebConfig() {
|
||||
const bridgeInternalUrl = (process.env.BRIDGE_INTERNAL_URL || 'http://player-bridge:8090').replace(/\/$/, '');
|
||||
const webInternalUrl = (process.env.WEB_INTERNAL_URL || `http://127.0.0.1:${Number(process.env.WEB_PORT || 8080)}`).replace(/\/$/, '');
|
||||
const sessionCookieName = 'digital_signage_session';
|
||||
const sessionMaxAgeDays = Number(process.env.SESSION_MAX_AGE_DAYS || 14);
|
||||
const sessionMaxAgeMs = (Number.isFinite(sessionMaxAgeDays) && sessionMaxAgeDays > 0 ? sessionMaxAgeDays : 14) * 24 * 60 * 60 * 1000;
|
||||
const sessionMaxAgeMs = 14 * 24 * 60 * 60 * 1000;
|
||||
const port = Number(process.env.WEB_PORT || 8080);
|
||||
const dataSourceStartupRefreshStaggerMs = Math.max(100, Number(process.env.DATA_SOURCE_STARTUP_REFRESH_STAGGER_MS || 250));
|
||||
|
||||
|
||||
@@ -25,7 +25,17 @@ function enrichScreensWithConnections(screens, connectionsBySlug, onboardingName
|
||||
function buildClientRows(screens, connectionsBySlug, onboardingNameBySlug, onboardingNameByDeviceId, playerIdentifierByBaseUrl, formatDashboardDate) {
|
||||
return (screens || []).flatMap(function (screen) {
|
||||
const connectionState = connectionsBySlug[screen.slug] || { count: 0, connections: [] };
|
||||
return (connectionState.connections || []).map(function (connection) {
|
||||
const seenClientKeys = new Set();
|
||||
return (connectionState.connections || []).filter(function (connection) {
|
||||
const deviceId = String(connection && connection.deviceId || '').trim();
|
||||
const clientId = String(connection && connection.clientId || '').trim();
|
||||
const key = deviceId && clientId ? `${deviceId}:${clientId}` : String(connection && connection.id || '').trim();
|
||||
if (seenClientKeys.has(key)) {
|
||||
return false;
|
||||
}
|
||||
seenClientKeys.add(key);
|
||||
return true;
|
||||
}).map(function (connection) {
|
||||
const deviceId = String(connection.deviceId || '').trim();
|
||||
const playerBaseUrl = normalizePlayerBaseUrl(connection.playerPublicBaseUrl);
|
||||
return Object.assign({}, connection, {
|
||||
|
||||
@@ -153,6 +153,46 @@ async function refreshApiSource(pool, common, apiSourceOrId, actorId, notifyPlay
|
||||
}
|
||||
}
|
||||
|
||||
async function refreshWeatherLocation(pool, common, weatherLocationOrId, actorId, notifyPlayerScreens) {
|
||||
const connection = await pool.getConnection();
|
||||
try {
|
||||
const location = weatherLocationOrId && typeof weatherLocationOrId === 'object'
|
||||
? weatherLocationOrId
|
||||
: await common.fetchWeatherLocationById(pool, Number(weatherLocationOrId));
|
||||
if (!location) throw new Error('Weather location not found.');
|
||||
|
||||
let result = null;
|
||||
let pullError = '';
|
||||
try {
|
||||
result = await common.fetchWeatherLocationForecast(pool, location);
|
||||
} catch (error) {
|
||||
pullError = String(error && error.message ? error.message : 'Unable to load weather forecast.');
|
||||
}
|
||||
|
||||
await connection.beginTransaction();
|
||||
await connection.query(
|
||||
'UPDATE i_weather_locations SET last_pulled_at = ?, last_pull_error = ?, last_response_json = COALESCE(?, last_response_json), modified_by = ? WHERE id = ?',
|
||||
[new Date(), pullError || null, result ? result.responseJson : null, actorId, location.id]
|
||||
);
|
||||
await connection.commit();
|
||||
|
||||
if (pullError) {
|
||||
console.error('[data-source-refresh] Weather location refresh completed with an error for location ' + location.id + ': ' + pullError);
|
||||
} else if (typeof notifyAffectedScreens === 'function') {
|
||||
try {
|
||||
await notifyAffectedScreens(connection, common, notifyPlayerScreens, 'weather_location_id', location.id);
|
||||
} catch (notifyError) {
|
||||
console.warn('[data-source-refresh] Unable to notify players after weather refresh ' + location.id + ':', notifyError);
|
||||
}
|
||||
}
|
||||
} catch (error) {
|
||||
try { await connection.rollback(); } catch (_rollbackError) { }
|
||||
throw error;
|
||||
} finally {
|
||||
connection.release();
|
||||
}
|
||||
}
|
||||
|
||||
async function refreshRssFeed(pool, common, rssFeedId, feedUrl, itemLimit, actorId, notifyPlayerScreens) {
|
||||
const connection = await pool.getConnection();
|
||||
try {
|
||||
@@ -170,6 +210,10 @@ async function refreshRssFeed(pool, common, rssFeedId, feedUrl, itemLimit, actor
|
||||
if (typeof common.replaceRssFeedItems === 'function') {
|
||||
await common.replaceRssFeedItems(connection, rssFeedId, updatedItems);
|
||||
}
|
||||
await connection.query(
|
||||
'UPDATE i_rss_feeds SET last_pulled_at = ? WHERE id = ?',
|
||||
[new Date(), rssFeedId]
|
||||
);
|
||||
await connection.commit();
|
||||
|
||||
if (!pullError && rssFeedChanged) {
|
||||
@@ -197,5 +241,6 @@ async function refreshRssFeed(pool, common, rssFeedId, feedUrl, itemLimit, actor
|
||||
|
||||
module.exports = {
|
||||
refreshApiSource: refreshApiSource,
|
||||
refreshRssFeed: refreshRssFeed
|
||||
refreshRssFeed: refreshRssFeed,
|
||||
refreshWeatherLocation: refreshWeatherLocation
|
||||
};
|
||||
@@ -198,7 +198,6 @@ module.exports = {
|
||||
getAuditUserId: getAuditUserId,
|
||||
getCanvasSignature: getCanvasSignature,
|
||||
fetchPlaylistCanvasId: fetchPlaylistCanvasId,
|
||||
fetchPlaylistCanvasSignature: fetchPlaylistCanvasId,
|
||||
fetchScreensByPlaylistId: fetchScreensByPlaylistId,
|
||||
fetchScreensBySlideId: fetchScreensBySlideId,
|
||||
fetchScreensByTemplateId: fetchScreensByTemplateId,
|
||||
|
||||
@@ -30,6 +30,43 @@ function normalizeText(value) {
|
||||
return String(value || '').replace(/\s+/g, ' ').trim();
|
||||
}
|
||||
|
||||
function quoteFontFamilyToken(token) {
|
||||
const normalizedToken = normalizeText(token);
|
||||
if (!normalizedToken) {
|
||||
return '';
|
||||
}
|
||||
|
||||
if (normalizedToken === 'inherit' || /^[a-zA-Z0-9_-]+$/.test(normalizedToken)) {
|
||||
return normalizedToken;
|
||||
}
|
||||
|
||||
return `'${normalizedToken.replace(/\\/g, '\\\\').replace(/'/g, "\\'")}'`;
|
||||
}
|
||||
|
||||
function normalizeFontFamilyFormat(format) {
|
||||
return String(format || '')
|
||||
.split(',')
|
||||
.map(quoteFontFamilyToken)
|
||||
.filter(Boolean)
|
||||
.join(',');
|
||||
}
|
||||
|
||||
function normalizeFontFamilyFormatEntry(entry) {
|
||||
const value = String(entry || '').trim();
|
||||
if (!value) {
|
||||
return '';
|
||||
}
|
||||
|
||||
const separatorIndex = value.indexOf('=');
|
||||
if (separatorIndex === -1) {
|
||||
return `${value}=${normalizeFontFamilyFormat(value)}`;
|
||||
}
|
||||
|
||||
const label = value.slice(0, separatorIndex).trim();
|
||||
const format = value.slice(separatorIndex + 1).trim();
|
||||
return `${label}=${normalizeFontFamilyFormat(format || label)}`;
|
||||
}
|
||||
|
||||
function resolveMediaRoot(mediaRootOrUploadDir) {
|
||||
const resolved = path.resolve(String(mediaRootOrUploadDir || '').trim());
|
||||
return path.basename(resolved) === 'uploads' ? path.dirname(resolved) : resolved;
|
||||
@@ -119,22 +156,19 @@ function buildFontFaceRule(entry) {
|
||||
|
||||
function buildFontStylesheet(fonts) {
|
||||
const rules = (Array.isArray(fonts) ? fonts : [])
|
||||
.filter(function (font) {
|
||||
return font && font.enabled !== false;
|
||||
})
|
||||
.map(buildFontFaceRule)
|
||||
.filter(Boolean);
|
||||
return rules.length ? `/* Managed fonts */\n\n${rules.join('\n\n')}\n` : '/* Managed fonts */\n';
|
||||
}
|
||||
|
||||
function buildFontFamilyFormats(fonts) {
|
||||
const formatEntries = Array.from(new Set(DEFAULT_FONT_FAMILY_FORMATS.concat((Array.isArray(fonts) ? fonts : [])
|
||||
const formatEntries = Array.from(new Set(DEFAULT_FONT_FAMILY_FORMATS.map(normalizeFontFamilyFormatEntry).concat((Array.isArray(fonts) ? fonts : [])
|
||||
.filter(function (font) {
|
||||
return font && font.enabled !== false && normalizeText(font.family || font.name);
|
||||
})
|
||||
.map(function (font) {
|
||||
const family = normalizeText(font.family || font.name);
|
||||
return `${family}=${family}`;
|
||||
return `${family}=${normalizeFontFamilyFormat(family)}`;
|
||||
}))))
|
||||
.sort(function (left, right) {
|
||||
const leftLabel = String(left || '').split('=')[0];
|
||||
@@ -344,7 +378,7 @@ function collectFontLibrarySyncOperations(mediaRootOrUploadDir) {
|
||||
}
|
||||
|
||||
operations.push({
|
||||
type: font.enabled === false ? 'delete' : 'put',
|
||||
type: 'put',
|
||||
uploadPath: `/media/${FONT_LIBRARY_DIR_NAME}/${font.fileName}`
|
||||
});
|
||||
});
|
||||
@@ -363,7 +397,10 @@ module.exports = {
|
||||
collectFontLibraryDirectoryUploadPaths: collectFontLibraryDirectoryUploadPaths,
|
||||
collectFontLibrarySyncOperations: collectFontLibrarySyncOperations,
|
||||
getFontStylesheetHref: getFontStylesheetHref,
|
||||
buildFontStylesheet: buildFontStylesheet,
|
||||
buildFontFamilyFormats: buildFontFamilyFormats,
|
||||
normalizeFontFamilyFormat: normalizeFontFamilyFormat,
|
||||
normalizeFontFamilyFormatEntry: normalizeFontFamilyFormatEntry,
|
||||
isSupportedFontUpload: isSupportedFontUpload,
|
||||
getFontLibraryDir: getFontLibraryDir,
|
||||
getFontManifestPath: getFontManifestPath,
|
||||
|
||||
@@ -30,6 +30,35 @@ function resolveAssetUrl(baseUrl, value) {
|
||||
return normalizedBaseUrl + '/' + raw.replace(/^\/+/, '');
|
||||
}
|
||||
|
||||
function normalizeRenderableValue(value) {
|
||||
if (value && typeof value === 'object') {
|
||||
if (value.value !== undefined) {
|
||||
return normalizeRenderableValue(value.value);
|
||||
}
|
||||
if (value.text !== undefined) {
|
||||
return normalizeRenderableValue(value.text);
|
||||
}
|
||||
if (value.html !== undefined) {
|
||||
return normalizeRenderableValue(value.html);
|
||||
}
|
||||
if (value.url !== undefined) {
|
||||
return normalizeRenderableValue(value.url);
|
||||
}
|
||||
if (value.href !== undefined) {
|
||||
return normalizeRenderableValue(value.href);
|
||||
}
|
||||
if (value.src !== undefined) {
|
||||
return normalizeRenderableValue(value.src);
|
||||
}
|
||||
if (value.content !== undefined) {
|
||||
return normalizeRenderableValue(value.content);
|
||||
}
|
||||
return '';
|
||||
}
|
||||
|
||||
return String(value === undefined || value === null ? '' : value);
|
||||
}
|
||||
|
||||
function getThumbnailCanvasSize(slide) {
|
||||
const template = slide && slide.template ? slide.template : null;
|
||||
return {
|
||||
@@ -79,7 +108,7 @@ function buildTextRegionMarkup(region, regionContent) {
|
||||
|
||||
function buildRegionInnerHtml(region, regionContent, baseUrl) {
|
||||
const regionType = String(regionContent.type || region.region_type || 'text').trim().toLowerCase();
|
||||
const rawValue = regionContent && regionContent.value !== undefined ? regionContent.value : '';
|
||||
const rawValue = normalizeRenderableValue(regionContent && regionContent.value !== undefined ? regionContent.value : '');
|
||||
|
||||
if (regionType === 'image') {
|
||||
const src = resolveAssetUrl(baseUrl, rawValue);
|
||||
@@ -98,7 +127,7 @@ function buildRegionInnerHtml(region, regionContent, baseUrl) {
|
||||
if (regionType === 'webpage') {
|
||||
const src = resolveAssetUrl(baseUrl, rawValue);
|
||||
return src
|
||||
? '<div class="slide-preview-region slide-preview-webpage-region" style="' + region.baseStyle + '"><iframe src="' + escapeHtml(src) + '" title="' + escapeHtml(region.label || region.region_key || 'webpage') + '" loading="eager" referrerpolicy="no-referrer" scrolling="no"></iframe></div>'
|
||||
? '<div class="slide-preview-region slide-preview-webpage-region" style="' + region.baseStyle + '"><iframe src="' + escapeHtml(src) + '" title="' + escapeHtml(region.label || region.region_key || 'webpage') + '" loading="eager" referrerpolicy="no-referrer" scrolling="no" style="width:100%;height:100%;border:0;display:block;background:#fff;overflow:hidden;"></iframe></div>'
|
||||
: '';
|
||||
}
|
||||
|
||||
@@ -113,9 +142,13 @@ function buildRegionInnerHtml(region, regionContent, baseUrl) {
|
||||
|
||||
if (regionType === 'html') {
|
||||
const html = String(rawValue || '').trim();
|
||||
return html
|
||||
? '<div class="slide-preview-region slide-preview-html-region" style="' + region.baseStyle + '"><iframe sandbox="" srcdoc="<!doctype html><html><head><style>html,body{margin:0;width:100%;height:100%;overflow:hidden;background:transparent;}</style></head><body>' + escapeHtml(html) + '</body></html>" title="' + escapeHtml(region.label || region.region_key || 'html') + '" loading="eager" scrolling="no"></iframe></div>'
|
||||
: '';
|
||||
if (!html) {
|
||||
return '';
|
||||
}
|
||||
if (/^<!doctype\b/i.test(html) || /^<html\b/i.test(html)) {
|
||||
return '<div class="slide-preview-region slide-preview-html-region" style="' + region.baseStyle + '"><iframe sandbox="" allowtransparency="true" srcdoc="' + escapeHtml(html) + '" title="' + escapeHtml(region.label || region.region_key || 'html') + '" loading="eager" scrolling="no" style="width:100%;height:100%;border:0;display:block;background:transparent;overflow:hidden;"></iframe></div>';
|
||||
}
|
||||
return '<div class="slide-preview-region slide-preview-html-region" style="' + region.baseStyle + '"><div class="slide-preview-html-content" style="width:100%;height:100%;overflow:hidden;background:transparent;">' + html + '</div></div>';
|
||||
}
|
||||
|
||||
if (regionType === 'rtmp') {
|
||||
@@ -153,6 +186,7 @@ function buildThumbnailPreviewPayload(slide, options) {
|
||||
canvasWidth: canvasSize.width,
|
||||
canvasHeight: canvasSize.height,
|
||||
backgroundColor: template && template.background_color ? String(template.background_color) : '#111111',
|
||||
backgroundGradient: template && template.background_gradient ? String(template.background_gradient) : '',
|
||||
backgroundImagePath: template && template.background_image_path ? String(template.background_image_path) : '',
|
||||
fontStylesheetHref: String(options && options.fontStylesheetHref || '').trim(),
|
||||
html: buildThumbnailPreviewMarkup(slide, options && options.baseUrl)
|
||||
|
||||
@@ -2,6 +2,8 @@
|
||||
|
||||
const fs = require('fs');
|
||||
const path = require('path');
|
||||
const crypto = require('crypto');
|
||||
const vm = require('vm');
|
||||
const {
|
||||
escapeHtml,
|
||||
mediaKind,
|
||||
@@ -10,7 +12,14 @@ const {
|
||||
sanitizeFontSize,
|
||||
sanitizeTextColor
|
||||
} = require('#src/player/render-helpers');
|
||||
const { createRequestAuthHeaders } = require('#src/request-auth');
|
||||
const { createRequestAuthHeaders, createPageAuthToken } = require('#src/request-auth');
|
||||
const { convertWeatherSnapshot } = require('#src/data/weather-units');
|
||||
|
||||
const placeholderUtils = (() => {
|
||||
const sandbox = { window: {} };
|
||||
vm.runInNewContext(fs.readFileSync(path.join(__dirname, '..', '..', 'public', 'js', 'shared', 'placeholder-utils.js'), 'utf8'), sandbox);
|
||||
return sandbox.window.placeholderUtils || {};
|
||||
})();
|
||||
|
||||
const SYSTEM_CHROMIUM_PATHS = [
|
||||
process.env.PUPPETEER_EXECUTABLE_PATH,
|
||||
@@ -52,6 +61,35 @@ function resolveAssetUrl(baseUrl, value) {
|
||||
return normalizedBaseUrl + '/' + raw.replace(/^\/+/, '');
|
||||
}
|
||||
|
||||
function normalizeRenderableValue(value) {
|
||||
if (value && typeof value === 'object') {
|
||||
if (value.value !== undefined) {
|
||||
return normalizeRenderableValue(value.value);
|
||||
}
|
||||
if (value.text !== undefined) {
|
||||
return normalizeRenderableValue(value.text);
|
||||
}
|
||||
if (value.html !== undefined) {
|
||||
return normalizeRenderableValue(value.html);
|
||||
}
|
||||
if (value.url !== undefined) {
|
||||
return normalizeRenderableValue(value.url);
|
||||
}
|
||||
if (value.href !== undefined) {
|
||||
return normalizeRenderableValue(value.href);
|
||||
}
|
||||
if (value.src !== undefined) {
|
||||
return normalizeRenderableValue(value.src);
|
||||
}
|
||||
if (value.content !== undefined) {
|
||||
return normalizeRenderableValue(value.content);
|
||||
}
|
||||
return '';
|
||||
}
|
||||
|
||||
return String(value === undefined || value === null ? '' : value);
|
||||
}
|
||||
|
||||
function getCanvasSize(slide) {
|
||||
const template = slide && slide.template ? slide.template : null;
|
||||
return {
|
||||
@@ -95,11 +133,86 @@ function hasVisibleContent(html) {
|
||||
return Boolean(raw.replace(/<[^>]+>/g, '').trim());
|
||||
}
|
||||
|
||||
function buildTextRegionMarkup(region, regionContent) {
|
||||
function resolvePlaceholderPath(value, expression) {
|
||||
const pathValue = String(expression || '').replace(/\.image\s*\([^)]*\)\s*$/i, '').trim();
|
||||
return pathValue.split('.').reduce(function (current, segment) {
|
||||
return current === undefined || current === null ? '' : current[segment];
|
||||
}, value);
|
||||
}
|
||||
|
||||
function getImagePlaceholderConfig(expression) {
|
||||
const match = String(expression || '').match(/\.image\s*\(\s*([0-9]+)?\s*,?\s*([0-9]+)?\s*\)/i);
|
||||
return {
|
||||
width: match && match[1] ? Number(match[1]) : 0,
|
||||
height: match && match[2] ? Number(match[2]) : 0
|
||||
};
|
||||
}
|
||||
|
||||
function normalizeWeatherExpression(expression) {
|
||||
const value = String(expression || '').trim();
|
||||
const currentAliases = { temp: 'current.temperature_2m', feels_like: 'current.apparent_temperature', humidity: 'current.relative_humidity_2m', wind: 'current.wind_speed_10m', precip: 'current.precipitation', uv_index: 'current.uv_index', cloud_cover: 'current.cloud_cover', icon: 'current.weather_code.icon' };
|
||||
const globalAliases = { temp_unit: 'temperature_unit', wind_unit: 'wind_speed_unit', precip_unit: 'precipitation_unit' };
|
||||
if (globalAliases[value]) return globalAliases[value];
|
||||
const currentField = value.replace(/^current\./, '').match(/^([^.()]+)((?:\(.*\))|(?:\..*))?$/);
|
||||
if (currentField && currentAliases[currentField[1]]) return currentAliases[currentField[1]] + (currentField[2] || '');
|
||||
const indexed = value.match(/^(daily|hourly)\.(\d+)\.(.+)$/);
|
||||
if (!indexed) return value;
|
||||
const fieldMatch = indexed[3].match(/^([^.()]+)((?:\(.*\))|(?:\..*))?$/);
|
||||
const field = fieldMatch ? fieldMatch[1] : indexed[3];
|
||||
const aliases = indexed[1] === 'daily' ? { time: 'time', temp_max: 'temperature_2m_max', temp_min: 'temperature_2m_min', precip: 'precipitation_sum', wind: 'wind_speed_10m_max', uv_index: 'uv_index_max', cloud_cover: 'cloud_cover_mean', sunrise: 'sunrise', sunset: 'sunset', icon: 'weather_code' } : { time: 'time', temp: 'temperature_2m', precip: 'precipitation', wind: 'wind_speed_10m', uv_index: 'uv_index', cloud_cover: 'cloud_cover', icon: 'weather_code' };
|
||||
if (!Object.prototype.hasOwnProperty.call(aliases, field)) return value;
|
||||
return field === 'icon' ? indexed[1] + '.' + aliases[field] + '.' + indexed[2] + '.icon' + (fieldMatch[2] || '') : indexed[1] + '.' + aliases[field] + '.' + indexed[2] + (fieldMatch[2] || '');
|
||||
}
|
||||
|
||||
function weatherIconForCode(code) {
|
||||
const value = Number(code);
|
||||
if (value === 0) return 'bi-sun';
|
||||
if (value <= 3) return 'bi-cloud-sun';
|
||||
if (value <= 48) return 'bi-cloud-fog';
|
||||
if (value <= 67 || value > 77 && value <= 82) return 'bi-cloud-rain';
|
||||
if (value <= 77) return 'bi-cloud-snow';
|
||||
return 'bi-cloud-lightning-rain';
|
||||
}
|
||||
|
||||
function substitutePlaceholders(html, regionContent, options) {
|
||||
const source = String(html || '');
|
||||
const type = String(regionContent && regionContent.type || '').trim().toLowerCase();
|
||||
const item = options && typeof options.getItem === 'function' ? options.getItem(type, regionContent) : null;
|
||||
if (!item) return source;
|
||||
return source.replace(/\{\{\s*([^{}]+?)\s*\}\}/gi, function (_match, expression) {
|
||||
const weatherExpression = type === 'weather' ? normalizeWeatherExpression(expression) : expression;
|
||||
const resolved = typeof placeholderUtils.resolvePlaceholderExpression === 'function'
|
||||
? placeholderUtils.resolvePlaceholderExpression(item, weatherExpression, { timeZone: item.timezone })
|
||||
: resolvePlaceholderPath(item, expression);
|
||||
if (type === 'weather' && /(?:^|\.)weather_code\.\d+\.icon(?:\(|$)|^current\.weather_code\.icon/.test(weatherExpression)) {
|
||||
const codeExpression = weatherExpression.replace(/\.icon(?:\(.*\))?$/, '');
|
||||
const iconSize = String(expression).match(/\.icon\(\s*(\d+)(?:\s*,\s*(\d+))?\s*\)$/);
|
||||
const width = iconSize ? Number(iconSize[1]) : 0;
|
||||
const height = iconSize && iconSize[2] ? Number(iconSize[2]) : width;
|
||||
const sizeStyle = width ? ' style="display:inline-block;width:' + width + 'px;height:' + height + 'px;font-size:' + width + 'px;line-height:' + height + 'px;"' : '';
|
||||
return '<i class="bi ' + weatherIconForCode(placeholderUtils.resolvePlaceholderExpression(item, codeExpression)) + '"' + sizeStyle + ' aria-hidden="true"></i>';
|
||||
}
|
||||
const value = typeof placeholderUtils.formatPlaceholderValue === 'function' ? placeholderUtils.formatPlaceholderValue(resolved) : String(resolved || '');
|
||||
if (typeof placeholderUtils.isImagePlaceholderExpression !== 'function' || !placeholderUtils.isImagePlaceholderExpression(expression)) {
|
||||
return escapeHtml(value);
|
||||
}
|
||||
const remoteUrl = String(value || '').trim();
|
||||
if (!/^https?:\/\//i.test(remoteUrl)) return '';
|
||||
const imageConfig = typeof placeholderUtils.getImagePlaceholderConfig === 'function' ? placeholderUtils.getImagePlaceholderConfig(expression) : getImagePlaceholderConfig(expression);
|
||||
const cacheFile = options && typeof options.getCachedImagePath === 'function' ? options.getCachedImagePath(remoteUrl) : '';
|
||||
const imageUrl = cacheFile || remoteUrl;
|
||||
const style = imageConfig.width && imageConfig.height
|
||||
? 'display:block;width:' + imageConfig.width + 'px;height:' + imageConfig.height + 'px;object-fit:contain;'
|
||||
: 'display:block;max-width:' + (imageConfig.width || 100) + 'px;max-height:' + (imageConfig.height || 100) + 'px;width:auto;height:auto;';
|
||||
return '<img src="' + escapeHtml(resolveAssetUrl(options && options.baseUrl, imageUrl)) + '" alt="" style="' + style + '" />';
|
||||
});
|
||||
}
|
||||
|
||||
function buildTextRegionMarkup(region, regionContent, options) {
|
||||
const fontFamily = sanitizeFontFamily(regionContent.font_family || region.font_family);
|
||||
const fontSize = sanitizeFontSize(regionContent.font_size || region.font_size);
|
||||
const fontColor = sanitizeTextColor(regionContent.font_color || region.font_color);
|
||||
const renderedBody = renderEditorJsContent(regionContent.value || '');
|
||||
const renderedBody = renderEditorJsContent(substitutePlaceholders(regionContent.value || '', regionContent, options));
|
||||
if (!hasVisibleContent(renderedBody)) {
|
||||
return '';
|
||||
}
|
||||
@@ -107,9 +220,9 @@ function buildTextRegionMarkup(region, regionContent) {
|
||||
return '<div class="slide-preview-region slide-preview-text-region" style="' + region.baseStyle + '"><div class="slide-preview-text-content" style="width:' + region.pixelWidth + 'px;height:' + region.pixelHeight + 'px;overflow:hidden;' + (fontFamily ? 'font-family:' + escapeHtml(fontFamily) + ';' : '') + 'font-size:' + fontSize + 'px;color:' + escapeHtml(fontColor || '#000000') + ';">' + renderedBody + '</div></div>';
|
||||
}
|
||||
|
||||
function buildRegionInnerHtml(region, regionContent, baseUrl) {
|
||||
function buildRegionInnerHtml(region, regionContent, baseUrl, options) {
|
||||
const regionType = String(regionContent.type || region.region_type || 'text').trim().toLowerCase();
|
||||
const rawValue = regionContent && regionContent.value !== undefined ? regionContent.value : '';
|
||||
const rawValue = normalizeRenderableValue(regionContent && regionContent.value !== undefined ? regionContent.value : '');
|
||||
|
||||
if (regionType === 'image') {
|
||||
const src = resolveAssetUrl(baseUrl, rawValue);
|
||||
@@ -126,10 +239,7 @@ function buildRegionInnerHtml(region, regionContent, baseUrl) {
|
||||
}
|
||||
|
||||
if (regionType === 'webpage') {
|
||||
const src = resolveAssetUrl(baseUrl, rawValue);
|
||||
return src
|
||||
? '<div class="slide-preview-region slide-preview-webpage-region" style="' + region.baseStyle + '"><iframe src="' + escapeHtml(src) + '" title="' + escapeHtml(region.label || region.region_key || 'webpage') + '" loading="eager" referrerpolicy="no-referrer" scrolling="no"></iframe></div>'
|
||||
: '';
|
||||
return '<div class="slide-preview-region slide-preview-webpage-region" style="' + region.baseStyle + '"><div class="slide-preview-webpage-placeholder" style="width:100%;height:100%;display:flex;align-items:center;justify-content:center;background:rgba(255,255,255,0.08);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);border:1px solid rgba(255,255,255,0.14);box-sizing:border-box;color:rgba(255,255,255,0.72);font-size:24px;font-family:Arial,sans-serif;">Webpage preview unavailable</div></div>';
|
||||
}
|
||||
|
||||
if (regionType === 'qr-code') {
|
||||
@@ -143,9 +253,13 @@ function buildRegionInnerHtml(region, regionContent, baseUrl) {
|
||||
|
||||
if (regionType === 'html') {
|
||||
const html = String(rawValue || '').trim();
|
||||
return html
|
||||
? '<div class="slide-preview-region slide-preview-html-region" style="' + region.baseStyle + '"><iframe sandbox="" srcdoc="<!doctype html><html><head><style>html,body{margin:0;width:100%;height:100%;overflow:hidden;background:transparent;}</style></head><body>' + escapeHtml(html) + '</body></html>" title="' + escapeHtml(region.label || region.region_key || 'html') + '" loading="eager" scrolling="no"></iframe></div>'
|
||||
: '';
|
||||
if (!html) {
|
||||
return '';
|
||||
}
|
||||
if (/^<!doctype\b/i.test(html) || /^<html\b/i.test(html)) {
|
||||
return '<div class="slide-preview-region slide-preview-html-region" style="' + region.baseStyle + '"><iframe sandbox="" allowtransparency="true" srcdoc="' + escapeHtml(html) + '" title="' + escapeHtml(region.label || region.region_key || 'html') + '" loading="eager" scrolling="no" style="width:100%;height:100%;border:0;display:block;background:transparent;overflow:hidden;"></iframe></div>';
|
||||
}
|
||||
return '<div class="slide-preview-region slide-preview-html-region" style="' + region.baseStyle + '"><div class="slide-preview-html-content" style="width:100%;height:100%;overflow:hidden;background:transparent;">' + html + '</div></div>';
|
||||
}
|
||||
|
||||
if (regionType === 'rtmp') {
|
||||
@@ -153,7 +267,7 @@ function buildRegionInnerHtml(region, regionContent, baseUrl) {
|
||||
return '<div class="slide-preview-region slide-preview-rtmp-region" style="' + region.baseStyle + '"><div class="slide-preview-rtmp-placeholder">' + escapeHtml(label) + '</div></div>';
|
||||
}
|
||||
|
||||
return buildTextRegionMarkup(region, regionContent);
|
||||
return buildTextRegionMarkup(region, regionContent, Object.assign({}, options, { baseUrl: baseUrl }));
|
||||
}
|
||||
|
||||
async function loadChromium() {
|
||||
@@ -170,7 +284,7 @@ function loadSharp() {
|
||||
return require('sharp');
|
||||
}
|
||||
|
||||
function buildThumbnailPreviewMarkup(slide, baseUrl) {
|
||||
function buildThumbnailPreviewMarkup(slide, baseUrl, options) {
|
||||
const template = slide && slide.template ? slide.template : null;
|
||||
if (!template) {
|
||||
return '';
|
||||
@@ -185,7 +299,7 @@ function buildThumbnailPreviewMarkup(slide, baseUrl) {
|
||||
pixelWidth: Math.max(1, Math.round(Number(region && region.width || 0) || 1)),
|
||||
pixelHeight: Math.max(1, Math.round(Number(region && region.height || 0) || 1))
|
||||
});
|
||||
return buildRegionInnerHtml(previewRegion, regionContent, normalizedBaseUrl);
|
||||
return buildRegionInnerHtml(previewRegion, regionContent, normalizedBaseUrl, options);
|
||||
}).join('');
|
||||
}
|
||||
|
||||
@@ -197,9 +311,10 @@ function buildThumbnailPreviewPayload(slide, options) {
|
||||
canvasWidth: canvasSize.width,
|
||||
canvasHeight: canvasSize.height,
|
||||
backgroundColor: template && template.background_color ? String(template.background_color) : '#111111',
|
||||
backgroundGradient: template && template.background_gradient ? String(template.background_gradient) : '',
|
||||
backgroundImagePath: template && template.background_image_path ? String(template.background_image_path) : '',
|
||||
fontStylesheetHref: String(options && options.fontStylesheetHref || '').trim(),
|
||||
html: buildThumbnailPreviewMarkup(slide, options && options.baseUrl)
|
||||
html: buildThumbnailPreviewMarkup(slide, options && options.baseUrl, options)
|
||||
};
|
||||
}
|
||||
|
||||
@@ -224,8 +339,7 @@ async function launchBrowser() {
|
||||
args: [
|
||||
'--no-sandbox',
|
||||
'--disable-setuid-sandbox',
|
||||
'--disable-dev-shm-usage',
|
||||
'--disable-gpu'
|
||||
'--disable-dev-shm-usage'
|
||||
],
|
||||
defaultViewport: { width: 1920, height: 1080, deviceScaleFactor: 1 },
|
||||
executablePath: executablePath,
|
||||
@@ -262,6 +376,74 @@ async function captureSlideThumbnail(options) {
|
||||
throw new Error('Slide not found.');
|
||||
}
|
||||
|
||||
const rssFeedsData = typeof common.fetchRssFeedsData === 'function' ? await common.fetchRssFeedsData(pool) : { rssFeeds: [] };
|
||||
const rssFeeds = await Promise.all((rssFeedsData.rssFeeds || []).map(async function (feed) {
|
||||
const items = typeof common.fetchRssFeedItemsByFeedId === 'function' ? await common.fetchRssFeedItemsByFeedId(pool, feed.id) : [];
|
||||
return Object.assign({}, feed, { items: items });
|
||||
}));
|
||||
const apiSourcesData = typeof common.fetchApiSourcesData === 'function' ? await common.fetchApiSourcesData(pool) : { apiSources: [] };
|
||||
const apiSources = (apiSourcesData.apiSources || []).map(function (source) {
|
||||
return Object.assign({}, source, { responseJson: common.parseJsonSafe ? common.parseJsonSafe(source.last_response_json) : null });
|
||||
});
|
||||
const weatherLocationsData = typeof common.fetchWeatherLocationsData === 'function' ? await common.fetchWeatherLocationsData(pool) : { weatherLocations: [] };
|
||||
const weatherLocations = (weatherLocationsData.weatherLocations || []).map(function (location) {
|
||||
let snapshot = null;
|
||||
try {
|
||||
snapshot = JSON.parse(location.last_response_json || '');
|
||||
} catch (_error) {
|
||||
snapshot = null;
|
||||
}
|
||||
if (!snapshot || typeof snapshot !== 'object') return null;
|
||||
const temperatureUnit = location.temperature_unit === 'fahrenheit' ? '°F' : '°C';
|
||||
const windUnit = location.wind_unit === 'mph' ? 'mph' : location.wind_unit === 'ms' ? 'm/s' : 'km/h';
|
||||
const precipitationUnit = location.precipitation_unit === 'inch' ? 'in' : 'mm';
|
||||
const data = Object.assign({}, convertWeatherSnapshot(snapshot, { temperature: location.temperature_unit === 'fahrenheit' ? 'fahrenheit' : 'celsius', wind: location.wind_unit === 'mph' ? 'mph' : location.wind_unit === 'ms' ? 'ms' : 'kmh', precipitation: location.precipitation_unit === 'inch' ? 'inch' : 'mm' }), { location_label: location.location_label || '', name: location.name || '', timezone: location.timezone || '', temp_unit: temperatureUnit, wind_unit: windUnit, precip_unit: precipitationUnit });
|
||||
data.current = Object.assign({}, data.current || {}, { temperature_unit: temperatureUnit, wind_speed_unit: windUnit, precipitation_unit: precipitationUnit });
|
||||
data.daily = Object.assign({}, data.daily || {}, { temperature_unit: temperatureUnit });
|
||||
return { id: location.id, data: data };
|
||||
}).filter(Boolean);
|
||||
|
||||
function getApiItems(source) {
|
||||
const response = source && source.responseJson;
|
||||
const itemsPath = String(source && source.items_path || '').trim();
|
||||
if (itemsPath) {
|
||||
const selected = itemsPath.split('.').reduce(function (current, segment) {
|
||||
return current === undefined || current === null ? '' : current[segment];
|
||||
}, response);
|
||||
return Array.isArray(selected) ? selected : [];
|
||||
}
|
||||
if (Array.isArray(response)) return response;
|
||||
if (response && Array.isArray(response.items)) return response.items;
|
||||
if (response && Array.isArray(response.results)) return response.results;
|
||||
if (response && Array.isArray(response.data)) return response.data;
|
||||
return response ? [response] : [];
|
||||
}
|
||||
|
||||
function getThumbnailItem(type, regionContent) {
|
||||
const index = Math.max(0, Math.max(1, Number(regionContent && regionContent.item_number || 1)) - 1);
|
||||
if (type === 'api') {
|
||||
const source = apiSources.find(function (entry) { return Number(entry.id) === Number(regionContent.source_id); });
|
||||
return getApiItems(source)[index] || null;
|
||||
}
|
||||
if (type === 'rss') {
|
||||
const feed = rssFeeds.find(function (entry) { return Number(entry.id) === Number(regionContent.feed_id); });
|
||||
return feed && Array.isArray(feed.items) ? feed.items[index] || null : null;
|
||||
}
|
||||
if (type === 'weather') {
|
||||
const location = weatherLocations.find(function (entry) { return Number(entry.id) === Number(regionContent.weather_location_id); });
|
||||
return location ? location.data : null;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
function getCachedImagePath(remoteUrl) {
|
||||
const hash = crypto.createHash('sha256').update(String(remoteUrl || '')).digest('hex');
|
||||
const cacheDir = path.join(mediaDir, 'player-cache', 'remote-images');
|
||||
const candidates = ['.png', '.jpg', '.jpeg', '.gif', '.webp', '.svg'];
|
||||
const candidate = candidates.map(function (extension) { return path.join(cacheDir, hash + extension); }).find(function (filePath) { return fs.existsSync(filePath); });
|
||||
return candidate ? '/media/player-cache/remote-images/' + path.basename(candidate) : '';
|
||||
}
|
||||
|
||||
const thumbnailDir = path.join(mediaDir, 'thumbnails');
|
||||
const thumbnailRelativePath = String(slide.thumbnail_path || '').trim() || '/media/thumbnails/slides/slide-' + slide.id + '.png';
|
||||
const filePath = path.join(mediaDir, thumbnailRelativePath.replace(/^\/+media\//, ''));
|
||||
@@ -277,14 +459,9 @@ async function captureSlideThumbnail(options) {
|
||||
}, { timeout: 30000 });
|
||||
|
||||
await page.waitForFunction(function () {
|
||||
var canvas = document.querySelector('#popup-preview-canvas');
|
||||
if (!canvas) {
|
||||
return false;
|
||||
}
|
||||
|
||||
var images = Array.prototype.slice.call(canvas.querySelectorAll('img'));
|
||||
return images.every(function (image) {
|
||||
return image.complete && typeof image.naturalWidth === 'number';
|
||||
var videos = Array.prototype.slice.call(document.querySelectorAll('#popup-preview-canvas video'));
|
||||
return videos.every(function (video) {
|
||||
return video.readyState >= 2;
|
||||
});
|
||||
}, { timeout: 30000 });
|
||||
|
||||
@@ -293,17 +470,13 @@ async function captureSlideThumbnail(options) {
|
||||
try {
|
||||
await document.fonts.ready;
|
||||
} catch (_error) {
|
||||
// Ignore font readiness failures and fall back to the rendered frame.
|
||||
return null;
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
await page.evaluate(function () {
|
||||
return new Promise(function (resolve) {
|
||||
window.requestAnimationFrame(function () {
|
||||
window.requestAnimationFrame(resolve);
|
||||
});
|
||||
});
|
||||
await new Promise(function (resolve) {
|
||||
setTimeout(resolve, 1000);
|
||||
});
|
||||
}
|
||||
|
||||
@@ -311,28 +484,49 @@ async function captureSlideThumbnail(options) {
|
||||
try {
|
||||
const page = await browser.newPage();
|
||||
try {
|
||||
const previewPath = '/api/internal/slide-thumbnails/' + slide.id + '/popup-preview';
|
||||
const previewPath = '/api/internal/slide-thumbnails/' + encodeURIComponent(String(slide.id)) + '/popup-preview';
|
||||
const previewUrl = baseUrl + previewPath;
|
||||
const previewPayload = buildThumbnailPreviewPayload(slide, {
|
||||
baseUrl: baseUrl,
|
||||
fontStylesheetHref: options && options.fontStylesheetHref ? options.fontStylesheetHref : ''
|
||||
const canvasSize = getThumbnailCanvasSize(slide);
|
||||
await page.setViewport({
|
||||
width: Math.max(1, Number(canvasSize.width || PLAYER_VIEWPORT.width)),
|
||||
height: Math.max(1, Number(canvasSize.height || PLAYER_VIEWPORT.height)),
|
||||
deviceScaleFactor: 1
|
||||
});
|
||||
await page.setViewport({
|
||||
width: Math.max(1, Number(previewPayload.canvasWidth || PLAYER_VIEWPORT.width)),
|
||||
height: Math.max(1, Number(previewPayload.canvasHeight || PLAYER_VIEWPORT.height)),
|
||||
deviceScaleFactor: 1
|
||||
});
|
||||
await page.setExtraHTTPHeaders(createRequestAuthHeaders({
|
||||
await page.setExtraHTTPHeaders(Object.assign({}, createRequestAuthHeaders({
|
||||
method: 'GET',
|
||||
pathname: previewPath
|
||||
}), {
|
||||
'x-pulse-page-auth': createPageAuthToken({ scope: 'thumbnail-preview', slideId: slide.id })
|
||||
}));
|
||||
await page.goto(previewUrl, { waitUntil: 'domcontentloaded', timeout: 30000 });
|
||||
const previewResponse = await page.goto(previewUrl, { waitUntil: 'domcontentloaded', timeout: 30000 });
|
||||
if (!previewResponse || previewResponse.status() >= 400) {
|
||||
throw new Error('Popup preview returned HTTP ' + (previewResponse ? previewResponse.status() : 'no response') + '.');
|
||||
}
|
||||
await waitForThumbnailRender(page);
|
||||
const canvas = await page.$('#popup-preview-canvas');
|
||||
if (!canvas) {
|
||||
throw new Error('Popup preview did not produce a slide canvas.');
|
||||
}
|
||||
await canvas.screenshot({ path: fullSizePath });
|
||||
await page.evaluate(function () {
|
||||
var canvasElement = document.querySelector('#popup-preview-canvas');
|
||||
if (canvasElement) {
|
||||
canvasElement.style.transform = 'none';
|
||||
canvasElement.style.transformOrigin = 'top left';
|
||||
}
|
||||
});
|
||||
const canvasBounds = await canvas.boundingBox();
|
||||
if (!canvasBounds) {
|
||||
throw new Error('Popup preview canvas has no screenshot bounds.');
|
||||
}
|
||||
await page.screenshot({
|
||||
path: fullSizePath,
|
||||
clip: {
|
||||
x: Math.max(0, canvasBounds.x),
|
||||
y: Math.max(0, canvasBounds.y),
|
||||
width: Math.max(1, canvasBounds.width),
|
||||
height: Math.max(1, canvasBounds.height)
|
||||
}
|
||||
});
|
||||
} finally {
|
||||
await page.close().catch(function () {
|
||||
return null;
|
||||
|
||||
@@ -432,6 +432,10 @@ function createUploadSyncService(options) {
|
||||
const nextRelativePath = relativeDir ? path.posix.join(relativeDir, entryName) : entryName;
|
||||
const nextAbsolutePath = path.join(currentDir, entryName);
|
||||
|
||||
if (!relativeDir && entryName === 'player-cache') {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (entry.isDirectory && entry.isDirectory()) {
|
||||
await walkDirectory(nextAbsolutePath, nextRelativePath);
|
||||
continue;
|
||||
|
||||
@@ -216,35 +216,51 @@ function createPlayerActionService(options) {
|
||||
}
|
||||
|
||||
async function forwardAnnouncementRefresh(slug) {
|
||||
const authHeaders = createRequestAuthHeaders({
|
||||
method: 'POST',
|
||||
pathname: `/api/screens/${encodeURIComponent(slug)}/announcements/refresh`,
|
||||
body: { command: 'announcement-refresh' }
|
||||
});
|
||||
const resolvedPlayerInternalBaseUrl = await getPlayerInternalBaseUrl();
|
||||
if (!resolvedPlayerInternalBaseUrl) {
|
||||
const targetBaseUrls = Array.from(new Set([
|
||||
resolvedPlayerInternalBaseUrl,
|
||||
configuredBridgeInternalBaseUrl
|
||||
].map(normalizeBaseUrl).filter(Boolean)));
|
||||
if (!targetBaseUrls.length) {
|
||||
throw new Error('Unable to resolve the player internal base URL.');
|
||||
}
|
||||
|
||||
const response = await fetch(`${resolvedPlayerInternalBaseUrl}/api/screens/${encodeURIComponent(slug)}/announcements/refresh`, {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
Accept: 'application/json',
|
||||
...authHeaders
|
||||
},
|
||||
body: JSON.stringify({ command: 'announcement-refresh' })
|
||||
});
|
||||
const results = await Promise.allSettled(targetBaseUrls.map(async function (targetBaseUrl) {
|
||||
const authHeaders = createRequestAuthHeaders({
|
||||
method: 'POST',
|
||||
pathname: `/api/screens/${encodeURIComponent(slug)}/announcements/refresh`,
|
||||
body: { command: 'announcement-refresh' }
|
||||
});
|
||||
const response = await fetch(`${targetBaseUrl}/api/screens/${encodeURIComponent(slug)}/announcements/refresh`, {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
Accept: 'application/json',
|
||||
...authHeaders
|
||||
},
|
||||
body: JSON.stringify({ command: 'announcement-refresh' })
|
||||
});
|
||||
|
||||
if (!response.ok) {
|
||||
const errorText = await response.text().catch(function () { return ''; });
|
||||
const error = new Error(errorText || `Unable to refresh announcements for player ${slug}.`);
|
||||
error.statusCode = response.status;
|
||||
throw error;
|
||||
if (!response.ok) {
|
||||
const errorText = await response.text().catch(function () { return ''; });
|
||||
const error = new Error(errorText || `Unable to refresh announcements for player ${slug}.`);
|
||||
error.statusCode = response.status;
|
||||
throw error;
|
||||
}
|
||||
|
||||
return response.json().catch(function () {
|
||||
return { ok: true };
|
||||
});
|
||||
}));
|
||||
const successfulResults = results.filter(function (result) {
|
||||
return result.status === 'fulfilled';
|
||||
});
|
||||
if (!successfulResults.length) {
|
||||
throw (results[0] && results[0].reason) || new Error(`Unable to refresh announcements for player ${slug}.`);
|
||||
}
|
||||
|
||||
return response.json().catch(function () {
|
||||
return { ok: true };
|
||||
return successfulResults.map(function (result) {
|
||||
return result.value;
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@ const path = require('path');
|
||||
const PUBLIC_JS_ROOT = path.join(__dirname, '..', 'public', 'js');
|
||||
const REGION_ROOT_DIR = path.join(PUBLIC_JS_ROOT, 'regions');
|
||||
const REGION_TYPE_DIR = path.join(REGION_ROOT_DIR, 'type');
|
||||
const REGION_CORE_SCRIPTS = ['js/shared/placeholder-utils.js', 'js/shared/placeholder-chips.js', 'js/shared/time-date-placeholders.js', 'js/regions/region-utils.js', 'js/regions/region-types.js'];
|
||||
const REGION_CORE_SCRIPTS = ['js/shared/placeholder-utils.js', 'js/shared/placeholder-chips.js', 'js/shared/placeholder-info.js', 'js/shared/time-date-placeholders.js', 'js/regions/region-utils.js', 'js/regions/region-types.js'];
|
||||
|
||||
function withAssetVersion(scriptPath, assetVersion) {
|
||||
if (!assetVersion) {
|
||||
|
||||
@@ -29,10 +29,15 @@ module.exports = function registerMiddleware(app, deps) {
|
||||
});
|
||||
|
||||
app.use(function (req, res, next) {
|
||||
if (req.path === '/' || req.path === '/login' || req.path === '/logout' || req.path.indexOf('/api/internal/slide-thumbnails/') === 0 || req.path === '/api/internal/sync/player-media' || req.path === '/api/internal/sync/player-font') {
|
||||
if (req.path === '/' || req.path === '/login' || req.path === '/logout' || req.path === '/slides/popup-preview' || req.path.indexOf('/api/internal/slide-thumbnails/') === 0 || req.path === '/api/internal/sync/player-media' || req.path === '/api/internal/sync/player-font') {
|
||||
return next();
|
||||
}
|
||||
|
||||
return requireAuth(req, res, next);
|
||||
return requireAuth(req, res, function () {
|
||||
if (req.currentUser && req.currentUser.mustChangePassword && req.path !== '/account' && req.path !== '/account/password' && req.path !== '/account/sessions/revoke' && req.path !== '/logout') {
|
||||
return res.redirect('/account?message=' + encodeURIComponent('Please change your password before continuing.'));
|
||||
}
|
||||
next();
|
||||
});
|
||||
});
|
||||
};
|
||||
@@ -0,0 +1,9 @@
|
||||
// Forward unmatched requests to the shared error-page handler.
|
||||
|
||||
module.exports = function registerNotFoundHandler(app) {
|
||||
app.use(function (_req, _res, next) {
|
||||
const error = new Error('Page not found.');
|
||||
error.statusCode = 404;
|
||||
next(error);
|
||||
});
|
||||
};
|
||||
@@ -9,6 +9,8 @@ function routePath(...segments) {
|
||||
module.exports = {
|
||||
renderLoginPage: require(routePath('auth', 'login')),
|
||||
renderAccountPage: require(routePath('account', 'password')),
|
||||
renderSettingsPage: require(routePath('settings', 'index')),
|
||||
renderAboutPage: require(routePath('settings', 'about', 'index')),
|
||||
renderUsersPage: require(routePath('settings', 'users', 'list')),
|
||||
renderUsersAddPage: require(routePath('settings', 'users', 'add')),
|
||||
renderUsersEditPage: require(routePath('settings', 'users', 'edit')),
|
||||
@@ -27,6 +29,9 @@ module.exports = {
|
||||
renderRssFeedsPage: require(routePath('data-sources', 'rss-feeds', 'list')),
|
||||
renderRssFeedAddPage: require(routePath('data-sources', 'rss-feeds', 'add')),
|
||||
renderRssFeedEditPage: require(routePath('data-sources', 'rss-feeds', 'edit')),
|
||||
renderWeatherLocationsPage: require(routePath('data-sources', 'weather', 'list')),
|
||||
renderWeatherLocationAddPage: require(routePath('data-sources', 'weather', 'add')),
|
||||
renderWeatherLocationEditPage: require(routePath('data-sources', 'weather', 'edit')),
|
||||
renderScreensPage: require(routePath('signage', 'screens', 'list')),
|
||||
renderScreenFormPage: require(routePath('signage', 'screens', 'add')),
|
||||
renderScreenEditPage: require(routePath('signage', 'screens', 'edit')),
|
||||
|
||||
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+2
-2
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+2
-2
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -163,6 +163,37 @@
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
.settings-nav-card {
|
||||
position: sticky;
|
||||
top: 1rem;
|
||||
}
|
||||
|
||||
.settings-section-card h4.text-uppercase {
|
||||
color: var(--bs-emphasis-color) !important;
|
||||
font-size: 0.86rem;
|
||||
font-weight: 700;
|
||||
letter-spacing: 0.04em;
|
||||
margin-top: 0.25rem;
|
||||
}
|
||||
|
||||
.settings-audit-retention-input {
|
||||
max-width: 18rem;
|
||||
}
|
||||
|
||||
.settings-audit-category-label {
|
||||
color: var(--bs-secondary-color);
|
||||
font-size: 0.75rem;
|
||||
font-weight: 600;
|
||||
letter-spacing: 0.06em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
@media (max-width: 991.98px) {
|
||||
.settings-nav-card {
|
||||
position: static;
|
||||
}
|
||||
}
|
||||
|
||||
.card {
|
||||
box-shadow: none;
|
||||
}
|
||||
@@ -224,6 +255,39 @@
|
||||
.template-preview-card .btn-group {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
.audit-change-list {
|
||||
display: grid;
|
||||
padding: 0.08rem 0.3rem;
|
||||
border-radius: 0.2rem;
|
||||
gap: 0.2rem;
|
||||
min-width: 18rem;
|
||||
}
|
||||
.audit-change-row {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(8rem, 0.7fr) minmax(5rem, 1fr) auto minmax(5rem, 1fr);
|
||||
background: var(--bs-danger-bg-subtle);
|
||||
gap: 0.35rem;
|
||||
align-items: baseline;
|
||||
font-size: 0.78rem;
|
||||
}
|
||||
background: var(--bs-success-bg-subtle);
|
||||
.audit-change-to {
|
||||
overflow-wrap: anywhere;
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
.audit-change-from {
|
||||
color: var(--bs-danger-text-emphasis);
|
||||
}
|
||||
.audit-change-to {
|
||||
color: var(--bs-success-text-emphasis);
|
||||
}
|
||||
.audit-change-from del,
|
||||
.audit-change-to ins {
|
||||
text-decoration-thickness: 2px;
|
||||
}
|
||||
.audit-change-arrow {
|
||||
color: var(--bs-secondary-color);
|
||||
}
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
@@ -263,6 +327,12 @@
|
||||
border-bottom-width: 0;
|
||||
}
|
||||
|
||||
.rbac-permissions-table > thead > tr > * {
|
||||
background-color: var(--bs-tertiary-bg) !important;
|
||||
color: var(--bs-emphasis-color) !important;
|
||||
border-bottom-color: var(--bs-border-color) !important;
|
||||
}
|
||||
|
||||
.template-designer-form--previewing .region-item [disabled],
|
||||
.template-designer-form--previewing .template-details-card [disabled],
|
||||
.template-designer-form--previewing .template-options-card [disabled],
|
||||
@@ -405,6 +475,11 @@
|
||||
border-radius: 1rem;
|
||||
background: var(--bs-body-bg);
|
||||
box-shadow: 0 1rem 2rem rgba(15, 23, 42, 0.18);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.75rem;
|
||||
max-height: min(32rem, calc(100vh - 3rem));
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.announcement-type-picker__menu {
|
||||
@@ -437,15 +512,61 @@
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 0.75rem;
|
||||
margin-bottom: 0.75rem;
|
||||
font-size: 0.875rem;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.announcement-icon-picker__search {
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
|
||||
.announcement-icon-picker__search .input-group-text {
|
||||
background: var(--bs-body-bg);
|
||||
color: var(--bs-secondary-color);
|
||||
}
|
||||
|
||||
.announcement-icon-picker__section {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.5rem;
|
||||
min-height: 0;
|
||||
}
|
||||
|
||||
.announcement-icon-picker__section-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 0.75rem;
|
||||
color: var(--bs-secondary-color);
|
||||
font-size: 0.75rem;
|
||||
font-weight: 700;
|
||||
letter-spacing: 0.05em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.announcement-icon-picker__section-count {
|
||||
font-size: 0.7rem;
|
||||
letter-spacing: 0;
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
.announcement-icon-picker__grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(2.75rem, 1fr));
|
||||
gap: 0.5rem;
|
||||
align-content: start;
|
||||
}
|
||||
|
||||
.announcement-icon-picker__search-grid {
|
||||
max-height: none;
|
||||
overflow: hidden;
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
.announcement-icon-picker__search-empty {
|
||||
color: var(--bs-secondary-color);
|
||||
font-size: 0.875rem;
|
||||
line-height: 1.35;
|
||||
}
|
||||
|
||||
.announcement-type-picker__grid {
|
||||
@@ -742,6 +863,10 @@
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
[data-table-pagination-card] > .card-header {
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
|
||||
[data-table-pagination-card] > .card-footer {
|
||||
margin-top: auto;
|
||||
background: var(--bs-body-bg);
|
||||
@@ -752,10 +877,119 @@
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.account-lock-label-locked {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.btn-check:checked + label .account-lock-label-unlocked {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.btn-check:checked + label .account-lock-label-locked {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.admin-form-card .card-header {
|
||||
background: var(--bs-tertiary-bg);
|
||||
}
|
||||
|
||||
.onboarding-pairing-card > .card-header {
|
||||
padding: 0.75rem 1rem;
|
||||
}
|
||||
|
||||
.onboarding-pairing-card .card-body {
|
||||
padding: 0.75rem 1rem;
|
||||
}
|
||||
|
||||
.onboarding-pairing-card.is-pairing .card-body > :not(.onboarding-pairing-progress) {
|
||||
opacity: 0.55;
|
||||
}
|
||||
|
||||
.onboarding-pairing-progress {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 0.5rem;
|
||||
margin-bottom: 1rem;
|
||||
color: var(--bs-primary);
|
||||
}
|
||||
|
||||
.onboarding-pairing-card > .card-footer {
|
||||
padding: 0.5rem 1rem;
|
||||
}
|
||||
|
||||
@media (max-width: 575.98px) {
|
||||
.onboarding-client-list-link {
|
||||
flex-basis: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
.onboarding-pin-inputs {
|
||||
display: flex;
|
||||
width: fit-content;
|
||||
max-width: 100%;
|
||||
margin-inline: auto;
|
||||
}
|
||||
|
||||
.onboarding-pin-inputs .form-control {
|
||||
flex: 1 1 0;
|
||||
width: auto;
|
||||
min-width: 0;
|
||||
max-width: 3.5rem;
|
||||
height: 3.5rem;
|
||||
padding: 0.25rem;
|
||||
text-align: center;
|
||||
font-size: 1.5rem;
|
||||
line-height: 1;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.onboarding-pin-inputs .form-control + .form-control {
|
||||
margin-left: -1px;
|
||||
}
|
||||
|
||||
.onboarding-pin-inputs .form-control:first-child {
|
||||
border-radius: var(--bs-border-radius) 0 0 var(--bs-border-radius);
|
||||
}
|
||||
|
||||
.onboarding-pin-inputs .form-control:last-child {
|
||||
border-radius: 0 var(--bs-border-radius) var(--bs-border-radius) 0;
|
||||
}
|
||||
|
||||
.onboarding-pin-inputs .form-control:focus {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.onboarding-scanner {
|
||||
position: fixed;
|
||||
z-index: 1050;
|
||||
inset: 0;
|
||||
display: grid;
|
||||
place-items: center;
|
||||
padding: 1rem;
|
||||
background: rgba(0, 0, 0, 0.68);
|
||||
}
|
||||
|
||||
.onboarding-scanner-panel {
|
||||
width: min(100%, 32rem);
|
||||
padding: 1rem;
|
||||
border: 1px solid var(--bs-border-color);
|
||||
border-radius: var(--bs-border-radius-lg);
|
||||
background: var(--bs-body-bg);
|
||||
box-shadow: var(--bs-box-shadow-lg);
|
||||
}
|
||||
|
||||
.onboarding-scanner-video {
|
||||
display: block;
|
||||
width: 100%;
|
||||
aspect-ratio: 1;
|
||||
object-fit: cover;
|
||||
border-radius: var(--bs-border-radius);
|
||||
background: #000;
|
||||
}
|
||||
|
||||
.timetable-entries-table-shell {
|
||||
overflow: hidden;
|
||||
border-bottom-left-radius: calc(var(--bs-border-radius) - 1px);
|
||||
@@ -977,11 +1211,15 @@
|
||||
|
||||
.screen-command-panel {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
|
||||
grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) minmax(12rem, 0.7fr);
|
||||
gap: 1rem;
|
||||
align-items: start;
|
||||
}
|
||||
|
||||
.screen-command-panel-pairing-only {
|
||||
grid-template-columns: minmax(0, 1fr);
|
||||
}
|
||||
|
||||
.screen-command-panel-left {
|
||||
display: grid;
|
||||
gap: 0.85rem;
|
||||
@@ -1024,6 +1262,28 @@
|
||||
line-height: 1.35;
|
||||
}
|
||||
|
||||
.screen-command-pairing {
|
||||
display: grid;
|
||||
gap: 0.65rem;
|
||||
align-content: start;
|
||||
padding: 0.9rem 0 0.9rem 1rem;
|
||||
border-left: 1px solid var(--bs-border-color);
|
||||
}
|
||||
|
||||
.screen-command-pairing > div {
|
||||
display: grid;
|
||||
gap: 0.25rem;
|
||||
}
|
||||
|
||||
.screen-command-pairing .btn {
|
||||
justify-self: start;
|
||||
}
|
||||
|
||||
.screen-command-panel-pairing-only .screen-command-pairing {
|
||||
padding-left: 0;
|
||||
border-left: 0;
|
||||
}
|
||||
|
||||
.screen-command-pill {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
@@ -1069,6 +1329,11 @@
|
||||
border-left: 0;
|
||||
}
|
||||
|
||||
.screen-command-pairing {
|
||||
padding: 0;
|
||||
border-left: 0;
|
||||
}
|
||||
|
||||
.screen-command-actions {
|
||||
justify-content: stretch;
|
||||
}
|
||||
@@ -1652,6 +1917,31 @@ html[data-bs-theme='dark'] .template-field-card .tox .tox-collection {
|
||||
background: var(--bs-body-bg);
|
||||
}
|
||||
|
||||
.slide-image-cropper-frame.is-loading > :not(.slide-image-cropper-loading-overlay) {
|
||||
opacity: 0.22;
|
||||
filter: saturate(0.8);
|
||||
}
|
||||
|
||||
.slide-image-cropper-loading-overlay {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
z-index: 3;
|
||||
display: none;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background: rgba(var(--bs-body-bg-rgb, 255, 255, 255), 0.72);
|
||||
backdrop-filter: blur(1px);
|
||||
}
|
||||
|
||||
.slide-image-cropper-frame.is-loading .slide-image-cropper-loading-overlay {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.slide-image-cropper-loading-spinner {
|
||||
width: 2.5rem;
|
||||
height: 2.5rem;
|
||||
}
|
||||
|
||||
.slide-image-cropper-frame img {
|
||||
display: block;
|
||||
max-width: 100%;
|
||||
@@ -1689,6 +1979,10 @@ html[data-bs-theme='dark'] .template-field-card .tox .tox-collection {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
#slide-image-cropper-status:empty {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.slide-image-region-preview-box {
|
||||
display: grid;
|
||||
gap: 0;
|
||||
@@ -2139,10 +2433,21 @@ html[data-bs-theme='dark'] .template-field-card .tox .tox-collection {
|
||||
.template-field-actions {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
justify-content: flex-end;
|
||||
gap: 0.5rem;
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.template-editor-size-controls {
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.template-editor-size-controls .btn {
|
||||
min-width: 2rem;
|
||||
padding-inline: 0.45rem;
|
||||
}
|
||||
|
||||
.template-field-head strong {
|
||||
font-size: 0.95rem;
|
||||
min-width: 0;
|
||||
@@ -2206,6 +2511,11 @@ html[data-bs-theme='dark'] .template-field-card .tox .tox-collection {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.template-field-card .form-label,
|
||||
.region-item .form-label {
|
||||
margin-bottom: 0.35rem;
|
||||
}
|
||||
|
||||
.template-field-card .form-control,
|
||||
.template-field-card .form-select,
|
||||
.template-field-card textarea,
|
||||
@@ -2221,6 +2531,14 @@ html[data-bs-theme='dark'] .template-field-card .tox .tox-collection {
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.template-field-card .editor-holder[data-editor-height] {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.template-field-card .editor-holder .tox.tox-tinymce {
|
||||
height: 100% !important;
|
||||
}
|
||||
|
||||
.announcement-color-preview {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
@@ -2239,7 +2557,7 @@ html[data-bs-theme='dark'] .template-field-card .tox .tox-collection {
|
||||
|
||||
.announcement-color-picker__grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(8, minmax(0, 1fr));
|
||||
grid-template-columns: repeat(auto-fit, minmax(5.5rem, 1fr));
|
||||
gap: 0.375rem;
|
||||
}
|
||||
|
||||
@@ -2348,6 +2666,13 @@ html[data-bs-theme='dark'] .template-field-card .tox .tox-collection {
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.api-region-placeholder-title-help {
|
||||
font-size: 0.9rem;
|
||||
font-weight: 800;
|
||||
letter-spacing: normal;
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
.api-region-sample-accordion {
|
||||
padding: 0.85rem 1rem 1rem;
|
||||
margin-bottom: 0.75rem;
|
||||
@@ -3082,4 +3407,94 @@ table.table thead th.sort-desc .table-sort-indicator {
|
||||
.card-body.table-responsive > table.table > thead th {
|
||||
position: static;
|
||||
}
|
||||
}
|
||||
|
||||
.weather-preview-card {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.weather-preview-card-body {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
|
||||
.weather-preview-card-footer {
|
||||
min-height: 3.5rem;
|
||||
}
|
||||
|
||||
.weather-preview-icon {
|
||||
font-size: 4rem;
|
||||
color: #e0a11a;
|
||||
}
|
||||
|
||||
.weather-preview-forecast-icon {
|
||||
display: block;
|
||||
font-size: 2rem;
|
||||
color: #e0a11a;
|
||||
margin: 1rem 0 0.65rem;
|
||||
}
|
||||
|
||||
.weather-daily-forecast {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.weather-daily-forecast > * {
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.weather-daily-forecast {
|
||||
grid-template-columns: repeat(4, minmax(0, 1fr));
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 992px) {
|
||||
.weather-daily-forecast {
|
||||
grid-template-columns: repeat(7, minmax(0, 1fr));
|
||||
}
|
||||
}
|
||||
|
||||
.weather-preview-hourly-item {
|
||||
width: 7.5rem;
|
||||
}
|
||||
|
||||
.gradient-stop-bar {
|
||||
position: relative;
|
||||
height: 2.25rem;
|
||||
padding: 0.45rem 0;
|
||||
cursor: crosshair;
|
||||
}
|
||||
|
||||
.gradient-stop-bar-track {
|
||||
height: 1.35rem;
|
||||
border: 1px solid var(--bs-border-color);
|
||||
border-radius: 0.35rem;
|
||||
background: var(--bs-secondary-bg);
|
||||
}
|
||||
|
||||
.gradient-stop-bar-handles {
|
||||
position: absolute;
|
||||
inset: 0 0.25rem;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.gradient-stop-handle {
|
||||
position: absolute;
|
||||
top: 0.1rem;
|
||||
width: 1rem;
|
||||
height: 2rem;
|
||||
padding: 0;
|
||||
border: 2px solid var(--bs-body-bg);
|
||||
border-radius: 0.35rem;
|
||||
box-shadow: 0 0 0 1px var(--bs-body-color);
|
||||
transform: translateX(-50%);
|
||||
cursor: grab;
|
||||
pointer-events: auto;
|
||||
touch-action: none;
|
||||
}
|
||||
|
||||
.gradient-stop-handle:active {
|
||||
cursor: grabbing;
|
||||
}
|
||||
@@ -77,6 +77,28 @@
|
||||
});
|
||||
}
|
||||
|
||||
function updateDataSourceToggle(form, response) {
|
||||
var toggleButton = document.querySelector('button[form="' + form.id + '"][data-async-data-source-toggle]');
|
||||
if (!toggleButton) {
|
||||
return;
|
||||
}
|
||||
|
||||
var willEnable = toggleButton.getAttribute('data-enabled') !== 'true';
|
||||
toggleButton.setAttribute('data-enabled', willEnable ? 'true' : 'false');
|
||||
toggleButton.className = toggleButton.className.replace(/btn-(danger|success)/g, willEnable ? 'btn-danger' : 'btn-success');
|
||||
toggleButton.innerHTML = '<i class="bi ' + (willEnable ? 'bi-pause-fill' : 'bi-play-fill') + ' me-1" aria-hidden="true"></i>' + (willEnable ? 'Disable' : 'Enable');
|
||||
|
||||
var message = '';
|
||||
try {
|
||||
message = new URL(response.url, window.location.href).searchParams.get('message') || '';
|
||||
} catch (_error) {
|
||||
message = '';
|
||||
}
|
||||
if (typeof showToast === 'function') {
|
||||
showToast(message || (willEnable ? 'Data source enabled.' : 'Data source disabled.'), 'success');
|
||||
}
|
||||
}
|
||||
|
||||
function initDeleteButtons() {
|
||||
document.addEventListener('click', function (event) {
|
||||
var deleteButton = event.target.closest('[data-delete-action-url]');
|
||||
@@ -441,6 +463,21 @@
|
||||
});
|
||||
}
|
||||
|
||||
try {
|
||||
form.dispatchEvent(new CustomEvent('web-async-save:success', {
|
||||
bubbles: true,
|
||||
detail: {
|
||||
form: form,
|
||||
response: response,
|
||||
responseText: responseText,
|
||||
responseDocument: responseDocument,
|
||||
submitterValue: submitterValue
|
||||
}
|
||||
}));
|
||||
} catch (_error) {
|
||||
// Ignore event dispatch failures and continue the save flow.
|
||||
}
|
||||
|
||||
clearFormDirty(form);
|
||||
|
||||
if (submitterValue === 'close' || submitterValue === 'new') {
|
||||
@@ -539,6 +576,39 @@
|
||||
return true;
|
||||
}
|
||||
|
||||
function updateFontToggleRow(form) {
|
||||
if (!form) {
|
||||
return false;
|
||||
}
|
||||
|
||||
var row = form.closest ? form.closest('tr[data-font-toggle-row]') : null;
|
||||
if (!row) {
|
||||
return false;
|
||||
}
|
||||
|
||||
var enabledInput = form.querySelector('input[name="enabled"]');
|
||||
var toggleButton = form.querySelector('button[type="submit"]');
|
||||
var statusBadge = row.querySelector('[data-font-status-badge]');
|
||||
var isCurrentlyEnabled = String(row.getAttribute('data-font-enabled') || '').trim() === 'true';
|
||||
var willEnable = !isCurrentlyEnabled;
|
||||
|
||||
if (enabledInput) {
|
||||
enabledInput.value = isCurrentlyEnabled ? '0' : '1';
|
||||
}
|
||||
|
||||
if (toggleButton) {
|
||||
toggleButton.textContent = willEnable ? 'Disable' : 'Enable';
|
||||
}
|
||||
|
||||
if (statusBadge) {
|
||||
statusBadge.className = statusBadge.className.replace(/text-bg-(success|secondary)/g, willEnable ? 'text-bg-success' : 'text-bg-secondary');
|
||||
statusBadge.textContent = willEnable ? 'Enabled' : 'Disabled';
|
||||
}
|
||||
|
||||
row.setAttribute('data-font-enabled', willEnable ? 'true' : 'false');
|
||||
return true;
|
||||
}
|
||||
|
||||
document.addEventListener('submit', function (event) {
|
||||
var form = event.target;
|
||||
if (!form || !form.hasAttribute || !form.hasAttribute('data-async-command')) {
|
||||
@@ -584,6 +654,20 @@
|
||||
body: body.toString(),
|
||||
credentials: 'same-origin'
|
||||
}).then(function (response) {
|
||||
if (!response || Number(response.status) >= 400) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (/^\/settings\/fonts\/[^/]+\/toggle$/.test(actionPath)) {
|
||||
updateFontToggleRow(form);
|
||||
return;
|
||||
}
|
||||
|
||||
if (/^\/data-sources\/(?:api-sources|rss-feeds|weather)\/\d+$/.test(actionPath)) {
|
||||
updateDataSourceToggle(form, response);
|
||||
return;
|
||||
}
|
||||
|
||||
if (shouldReloadAfterSuccess && response && response.ok) {
|
||||
window.location.reload();
|
||||
return;
|
||||
@@ -742,6 +826,28 @@
|
||||
return;
|
||||
}
|
||||
|
||||
var refreshButton = target.closest('[data-manual-refresh-url]');
|
||||
if (refreshButton) {
|
||||
event.preventDefault();
|
||||
if (refreshButton.disabled) {
|
||||
return;
|
||||
}
|
||||
refreshButton.disabled = true;
|
||||
fetch(refreshButton.getAttribute('data-manual-refresh-url'), {
|
||||
method: 'POST',
|
||||
credentials: 'same-origin',
|
||||
headers: { 'X-Requested-With': 'XMLHttpRequest' }
|
||||
}).then(function (response) {
|
||||
if (!response.ok) {
|
||||
throw new Error('Refresh failed');
|
||||
}
|
||||
window.location.assign(response.url);
|
||||
}).catch(function () {
|
||||
refreshButton.disabled = false;
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
var button = target.closest('button[name="save_action"], button[name="action"]');
|
||||
if (!button) {
|
||||
return;
|
||||
@@ -829,7 +935,7 @@
|
||||
var summaryLabel = isRoot ? (isArray ? 'Array' : 'Object') : String(key);
|
||||
var summaryMeta = isArray ? '[' + value.length + ']' : '{' + Object.keys(value).length + '}';
|
||||
return '' +
|
||||
'<details class="json-tree-node" open>' +
|
||||
'<details class="json-tree-node"' + (isRoot ? ' open' : '') + '>' +
|
||||
'<summary><span class="json-tree-key">' + escapeHtml(summaryLabel) + '</span><span class="mx-1">:</span><span class="text-body-secondary">' + escapeHtml(summaryMeta) + '</span></summary>' +
|
||||
'<div class="ms-3 ps-3 border-start">' + entries + '</div>' +
|
||||
'</details>';
|
||||
@@ -888,26 +994,30 @@
|
||||
detail.open = expanded;
|
||||
});
|
||||
|
||||
if (collapseButton) {
|
||||
collapseButton.disabled = !details.length || !expanded;
|
||||
}
|
||||
if (expandButton) {
|
||||
expandButton.disabled = !details.length || expanded;
|
||||
}
|
||||
syncButtons();
|
||||
}
|
||||
|
||||
function syncButtons() {
|
||||
var details = output.querySelectorAll('details');
|
||||
var allExpanded = details.length > 0 && Array.prototype.every.call(details, function (detail) { return detail.open; });
|
||||
var allCollapsed = details.length > 0 && Array.prototype.every.call(details, function (detail) { return !detail.open; });
|
||||
if (collapseButton) {
|
||||
collapseButton.setAttribute('aria-pressed', 'false');
|
||||
collapseButton.disabled = !details.length || allCollapsed;
|
||||
collapseButton.setAttribute('aria-pressed', String(allCollapsed));
|
||||
}
|
||||
if (expandButton) {
|
||||
expandButton.setAttribute('aria-pressed', 'true');
|
||||
expandButton.disabled = !details.length || allExpanded;
|
||||
expandButton.setAttribute('aria-pressed', String(allExpanded));
|
||||
}
|
||||
}
|
||||
|
||||
output.innerHTML = formattedTree;
|
||||
setAllSectionsExpanded(false);
|
||||
var rootDetails = output.querySelector('details');
|
||||
if (rootDetails) {
|
||||
rootDetails.open = true;
|
||||
}
|
||||
syncButtons();
|
||||
setAllSectionsExpanded(true);
|
||||
|
||||
if (collapseButton) {
|
||||
collapseButton.addEventListener('click', function () {
|
||||
|
||||
@@ -39,6 +39,63 @@ function setAnnouncementScreenSelection(isSelected) {
|
||||
});
|
||||
}
|
||||
|
||||
function getAnnouncementActionButtonState() {
|
||||
var actionForm = document.getElementById('announcement-action-form');
|
||||
var visibleButton = document.querySelector('button[form="announcement-action-form"]');
|
||||
var actionPath = actionForm ? String(actionForm.getAttribute('action') || '').trim() : '';
|
||||
var isPlay = /\/play$/.test(actionPath);
|
||||
var isActive = !isPlay;
|
||||
var selectedScreenCount = document.querySelectorAll('input[name="screen_ids[]"]:checked').length;
|
||||
|
||||
return {
|
||||
visibleButton: visibleButton,
|
||||
actionForm: actionForm,
|
||||
isActive: isActive,
|
||||
hasTargets: selectedScreenCount > 0,
|
||||
actionDisabled: !isActive && selectedScreenCount === 0,
|
||||
actionLabel: isActive ? 'Stop' : 'Play',
|
||||
actionIcon: isActive ? 'bi-stop-fill' : 'bi-play-fill',
|
||||
actionClassName: !isActive && selectedScreenCount === 0
|
||||
? 'btn-outline-info'
|
||||
: (isActive ? 'btn-outline-warning' : 'btn-info'),
|
||||
actionDisabledTitle: !isActive && selectedScreenCount === 0
|
||||
? 'Select at least one screen group to play this announcement.'
|
||||
: '',
|
||||
actionConfirmMessage: isActive
|
||||
? 'Stop this announcement on the selected screens now?'
|
||||
: 'Send this announcement to the selected screens now?'
|
||||
};
|
||||
}
|
||||
|
||||
function updateAnnouncementActionButtonState() {
|
||||
var state = getAnnouncementActionButtonState();
|
||||
if (!state.visibleButton) {
|
||||
return;
|
||||
}
|
||||
|
||||
state.visibleButton.className = state.visibleButton.className.replace(/btn-outline-(info|warning|success)|btn-info/g, state.actionClassName);
|
||||
state.visibleButton.disabled = state.actionDisabled;
|
||||
state.visibleButton.setAttribute('aria-disabled', state.actionDisabled ? 'true' : 'false');
|
||||
state.visibleButton.setAttribute('title', state.actionDisabled ? state.actionDisabledTitle : state.actionConfirmMessage);
|
||||
state.visibleButton.setAttribute('aria-label', state.actionLabel);
|
||||
|
||||
var icon = state.visibleButton.querySelector('i.bi');
|
||||
if (icon) {
|
||||
icon.className = 'bi ' + state.actionIcon + ' me-1';
|
||||
}
|
||||
|
||||
var label = state.visibleButton.childNodes.length > 1 ? state.visibleButton.childNodes[state.visibleButton.childNodes.length - 1] : null;
|
||||
if (label && label.nodeType === Node.TEXT_NODE) {
|
||||
label.textContent = state.actionLabel;
|
||||
} else {
|
||||
state.visibleButton.textContent = state.actionLabel;
|
||||
}
|
||||
|
||||
if (state.actionForm) {
|
||||
state.actionForm.setAttribute('data-confirm-message', state.actionConfirmMessage);
|
||||
}
|
||||
}
|
||||
|
||||
function positionAnnouncementTypePicker() {
|
||||
var picker = document.querySelector('[data-announcement-type-picker]');
|
||||
var toggle = document.querySelector('[data-announcement-type-picker-toggle]');
|
||||
@@ -141,125 +198,6 @@ function setAnnouncementTypeValue(typeKey) {
|
||||
updateAnnouncementTypePickerSelection();
|
||||
}
|
||||
|
||||
function updateAnnouncementIconPreview() {
|
||||
var iconSelect = document.getElementById('announcement-icon');
|
||||
var preview = document.querySelector('[data-announcement-icon-preview]');
|
||||
if (!iconSelect || !preview) {
|
||||
return;
|
||||
}
|
||||
|
||||
var selectedOption = iconSelect.options[iconSelect.selectedIndex] || null;
|
||||
var iconKey = selectedOption ? String(selectedOption.value || '').trim().toLowerCase() : '';
|
||||
var label = selectedOption ? String(selectedOption.textContent || selectedOption.label || iconKey).trim() : iconKey;
|
||||
|
||||
preview.className = 'announcement-icon-preview';
|
||||
preview.innerHTML = '<i class="bi bi-' + iconKey + '" aria-hidden="true"></i>';
|
||||
preview.setAttribute('aria-label', label);
|
||||
preview.setAttribute('title', label);
|
||||
}
|
||||
|
||||
function positionAnnouncementIconPicker() {
|
||||
var picker = document.querySelector('[data-announcement-icon-picker]');
|
||||
var toggle = document.querySelector('[data-announcement-icon-picker-toggle]');
|
||||
var shell = document.querySelector('[data-announcement-icon-picker-shell]');
|
||||
if (!picker || picker.hidden || !toggle || !shell) {
|
||||
return;
|
||||
}
|
||||
|
||||
var padding = 8;
|
||||
var toggleRect = toggle.getBoundingClientRect();
|
||||
var menuRect = picker.getBoundingClientRect();
|
||||
var viewportHeight = window.innerHeight || document.documentElement.clientHeight || toggleRect.bottom;
|
||||
var placementAbove = false;
|
||||
var spaceBelow = viewportHeight - toggleRect.bottom - padding;
|
||||
var spaceAbove = toggleRect.top - padding;
|
||||
|
||||
if (menuRect.height > spaceBelow && spaceAbove > spaceBelow) {
|
||||
placementAbove = true;
|
||||
}
|
||||
|
||||
picker.classList.toggle('is-open-above', placementAbove);
|
||||
}
|
||||
|
||||
function closeAnnouncementIconPicker() {
|
||||
var picker = document.querySelector('[data-announcement-icon-picker]');
|
||||
var toggle = document.querySelector('[data-announcement-icon-picker-toggle]');
|
||||
if (!picker) {
|
||||
return;
|
||||
}
|
||||
|
||||
picker.hidden = true;
|
||||
picker.classList.remove('is-open-above');
|
||||
if (toggle) {
|
||||
toggle.setAttribute('aria-expanded', 'false');
|
||||
}
|
||||
}
|
||||
|
||||
function openAnnouncementIconPicker() {
|
||||
var picker = document.querySelector('[data-announcement-icon-picker]');
|
||||
var toggle = document.querySelector('[data-announcement-icon-picker-toggle]');
|
||||
if (!picker) {
|
||||
return;
|
||||
}
|
||||
|
||||
picker.hidden = false;
|
||||
if (toggle) {
|
||||
toggle.setAttribute('aria-expanded', 'true');
|
||||
}
|
||||
|
||||
if (typeof window !== 'undefined' && window.requestAnimationFrame) {
|
||||
window.requestAnimationFrame(positionAnnouncementIconPicker);
|
||||
} else {
|
||||
positionAnnouncementIconPicker();
|
||||
}
|
||||
}
|
||||
|
||||
function updateAnnouncementIconPickerSelection() {
|
||||
var iconSelect = document.getElementById('announcement-icon');
|
||||
var previewButton = document.querySelector('[data-announcement-icon-picker-toggle]');
|
||||
var picker = document.querySelector('[data-announcement-icon-picker]');
|
||||
if (!iconSelect || !previewButton || !picker) {
|
||||
return;
|
||||
}
|
||||
|
||||
var selectedOption = iconSelect.options[iconSelect.selectedIndex] || null;
|
||||
var selectedValue = selectedOption ? String(selectedOption.value || '').trim().toLowerCase() : '';
|
||||
var label = selectedOption ? String(selectedOption.textContent || selectedOption.label || selectedValue).trim() : selectedValue;
|
||||
var icon = previewButton.querySelector('[data-announcement-icon-picker-icon]');
|
||||
var text = previewButton.querySelector('[data-announcement-icon-picker-label]');
|
||||
|
||||
previewButton.setAttribute('aria-label', label);
|
||||
previewButton.setAttribute('title', label);
|
||||
if (icon) {
|
||||
icon.className = 'bi bi-' + selectedValue;
|
||||
}
|
||||
if (text) {
|
||||
text.textContent = label;
|
||||
}
|
||||
|
||||
picker.querySelectorAll('[data-announcement-icon-option]').forEach(function (button) {
|
||||
var isSelected = String(button.getAttribute('data-icon-key') || '').trim().toLowerCase() === selectedValue;
|
||||
button.classList.toggle('is-selected', isSelected);
|
||||
button.setAttribute('aria-pressed', isSelected ? 'true' : 'false');
|
||||
});
|
||||
}
|
||||
|
||||
function setAnnouncementIconValue(iconKey) {
|
||||
var iconSelect = document.getElementById('announcement-icon');
|
||||
if (!iconSelect) {
|
||||
return;
|
||||
}
|
||||
|
||||
var normalized = String(iconKey || '').trim().toLowerCase();
|
||||
if (!normalized) {
|
||||
return;
|
||||
}
|
||||
|
||||
iconSelect.value = normalized;
|
||||
updateAnnouncementIconPreview();
|
||||
updateAnnouncementIconPickerSelection();
|
||||
}
|
||||
|
||||
function initAnnouncementForm() {
|
||||
var typeInput = document.getElementById('announcement-type');
|
||||
var typePickerToggle = document.querySelector('[data-announcement-type-picker-toggle]');
|
||||
@@ -270,10 +208,6 @@ function initAnnouncementForm() {
|
||||
var colorPicker = document.querySelector('[data-announcement-color-picker-shell]');
|
||||
var screenSelectAll = document.querySelector('[data-announcement-screen-select-all]');
|
||||
var screenSelectNone = document.querySelector('[data-announcement-screen-select-none]');
|
||||
var iconSelect = document.getElementById('announcement-icon');
|
||||
var iconPickerToggle = document.querySelector('[data-announcement-icon-picker-toggle]');
|
||||
var iconPicker = document.querySelector('[data-announcement-icon-picker]');
|
||||
var iconPickerClose = document.querySelector('[data-announcement-icon-picker-close]');
|
||||
|
||||
if (typeInput) {
|
||||
updateAnnouncementTypePickerSelection();
|
||||
@@ -347,44 +281,16 @@ function initAnnouncementForm() {
|
||||
});
|
||||
}
|
||||
|
||||
if (iconSelect) {
|
||||
iconSelect.addEventListener('change', updateAnnouncementIconPreview);
|
||||
updateAnnouncementIconPreview();
|
||||
}
|
||||
document.addEventListener('web-async-save:success', function (event) {
|
||||
var detail = event && event.detail ? event.detail : null;
|
||||
var form = detail && detail.form ? detail.form : null;
|
||||
if (!form || form.id !== 'announcement-form') {
|
||||
return;
|
||||
}
|
||||
|
||||
if (iconPickerToggle) {
|
||||
iconPickerToggle.addEventListener('click', function (event) {
|
||||
event.preventDefault();
|
||||
var isExpanded = iconPicker && !iconPicker.hidden;
|
||||
if (isExpanded) {
|
||||
closeAnnouncementIconPicker();
|
||||
} else {
|
||||
openAnnouncementIconPicker();
|
||||
}
|
||||
});
|
||||
}
|
||||
updateAnnouncementActionButtonState();
|
||||
});
|
||||
|
||||
if (iconPickerClose) {
|
||||
iconPickerClose.addEventListener('click', function (event) {
|
||||
event.preventDefault();
|
||||
closeAnnouncementIconPicker();
|
||||
});
|
||||
}
|
||||
|
||||
if (iconPicker) {
|
||||
iconPicker.addEventListener('click', function (event) {
|
||||
var button = event.target && event.target.closest ? event.target.closest('[data-announcement-icon-option]') : null;
|
||||
if (!button) {
|
||||
return;
|
||||
}
|
||||
|
||||
event.preventDefault();
|
||||
setAnnouncementIconValue(button.getAttribute('data-icon-key'));
|
||||
closeAnnouncementIconPicker();
|
||||
});
|
||||
}
|
||||
|
||||
window.addEventListener('resize', positionAnnouncementIconPicker);
|
||||
window.addEventListener('resize', positionAnnouncementTypePicker);
|
||||
|
||||
document.addEventListener('click', function (event) {
|
||||
@@ -396,20 +302,9 @@ function initAnnouncementForm() {
|
||||
}
|
||||
}
|
||||
|
||||
var picker = document.querySelector('[data-announcement-icon-picker]');
|
||||
var toggle = document.querySelector('[data-announcement-icon-picker-toggle]');
|
||||
if (!picker || picker.hidden) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (picker.contains(event.target) || (toggle && toggle.contains(event.target))) {
|
||||
return;
|
||||
}
|
||||
|
||||
closeAnnouncementIconPicker();
|
||||
});
|
||||
|
||||
updateAnnouncementIconPickerSelection();
|
||||
updateAnnouncementActionButtonState();
|
||||
}
|
||||
|
||||
if (typeof document !== 'undefined') {
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user