Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
203d0bfc01 | ||
|
|
1bdc122995 | ||
|
|
2d748458d0 | ||
|
|
bb8cd98e61 | ||
|
|
aafe112c36 | ||
|
|
1f1ad5d61f | ||
|
|
f0177e6628 | ||
|
|
15dc6eb7f2 | ||
|
|
75b5cb5a6b | ||
|
|
e7ec276317 | ||
|
|
30f5ed11b8 | ||
|
|
d6a8b45357 | ||
|
|
f9425fc640 | ||
|
|
4491c15215 |
@@ -1,5 +1,6 @@
|
|||||||
*
|
*
|
||||||
!package.json
|
!package.json
|
||||||
|
!package-lock.json
|
||||||
!build/
|
!build/
|
||||||
!build/**
|
!build/**
|
||||||
!src/
|
!src/
|
||||||
|
|||||||
@@ -4,6 +4,8 @@
|
|||||||
|
|
||||||
- Treat `package.json` as the source of truth for the application version.
|
- 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 `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.
|
- When the app version changes, update `CHANGELOG.md` in the same change.
|
||||||
- Keep database migration versions aligned with the release they actually belong to.
|
- 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.
|
- 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:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-and-push:
|
build-and-push-existing-registry:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- name: web
|
- name: web
|
||||||
image: git.lzstealth.com/lzstealth/pulse-signage-web
|
repository: pulse-signage-web
|
||||||
dockerfile: ./build/Dockerfile
|
dockerfile: ./build/Dockerfile
|
||||||
- name: player
|
- name: player
|
||||||
image: git.lzstealth.com/lzstealth/pulse-signage-player
|
repository: pulse-signage-player
|
||||||
dockerfile: ./build/Dockerfile.player
|
dockerfile: ./build/Dockerfile.player
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
@@ -27,7 +28,7 @@ jobs:
|
|||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v3
|
uses: docker/setup-buildx-action@v3
|
||||||
|
|
||||||
- name: Log in to container registry
|
- name: Log in to existing package registry
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v3
|
||||||
with:
|
with:
|
||||||
registry: git.lzstealth.com
|
registry: git.lzstealth.com
|
||||||
@@ -38,7 +39,8 @@ jobs:
|
|||||||
id: meta
|
id: meta
|
||||||
uses: docker/metadata-action@v5
|
uses: docker/metadata-action@v5
|
||||||
with:
|
with:
|
||||||
images: ${{ matrix.image }}
|
images: |
|
||||||
|
git.lzstealth.com/lzstealth/${{ matrix.repository }}
|
||||||
tags: |
|
tags: |
|
||||||
type=raw,value=latest
|
type=raw,value=latest
|
||||||
type=ref,event=tag
|
type=ref,event=tag
|
||||||
|
|||||||
+136
@@ -2,6 +2,142 @@
|
|||||||
|
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
## 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
|
||||||
|
|
||||||
|
- The player page now supports keyboard navigation with arrow keys to move between slides.
|
||||||
|
|
||||||
|
## 2.7.0 - 2026-08-14
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- The WYSIWYG editor now supports adding small images.
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- The WYSIWYG image insertion flow also received a small code cleanup to simplify the related helper logic.
|
||||||
|
- The default table formatting has been applied.
|
||||||
|
- Timetable regions now use the renamed helpers end to end in the editor and player, including timezone-aware rendering for timetable entry placeholders.
|
||||||
|
|
||||||
|
## 2.6.27 - 2026-08-14
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Scheduled task intervals now display the most appropriate exact unit, such as seconds, minutes, hours, or days, while keeping the sort order numeric.
|
||||||
|
|
||||||
|
## 2.6.26 - 2026-08-10
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- API sources and RSS feeds now accept hours as an update interval unit, and the list and background task scheduling paths now format and convert that unit correctly.
|
||||||
|
|
||||||
|
## 2.6.25 - 2026-08-10
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Screen group edit now keeps the slug locked after creation, so existing screen group URLs remain stable.
|
||||||
|
|
||||||
|
## 2.6.24 - 2026-08-10
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Deferred playlist updates now keep the current slide index when the next playlist snapshot is applied, so playback no longer jumps back to the first slide mid-cycle.
|
||||||
|
|
||||||
## 2.6.23 - 2026-08-09
|
## 2.6.23 - 2026-08-09
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
# Pulse Signage
|
# 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.
|
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.
|
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
|
WORKDIR /app
|
||||||
|
|
||||||
@@ -6,6 +6,7 @@ RUN apk add --no-cache chromium nss freetype harfbuzz ttf-freefont
|
|||||||
|
|
||||||
COPY build/package.web.json ./package.json
|
COPY build/package.web.json ./package.json
|
||||||
RUN npm install --omit=dev --no-audit --no-fund
|
RUN npm install --omit=dev --no-audit --no-fund
|
||||||
|
COPY package-lock.json ./package-lock.json
|
||||||
|
|
||||||
COPY src ./src
|
COPY src ./src
|
||||||
COPY scripts ./scripts
|
COPY scripts ./scripts
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
FROM node:24-alpine
|
FROM node:26-alpine
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
@@ -6,6 +6,7 @@ RUN apk add --no-cache ffmpeg
|
|||||||
|
|
||||||
COPY build/package.player.json ./package.json
|
COPY build/package.player.json ./package.json
|
||||||
RUN npm install --omit=dev --no-audit --no-fund
|
RUN npm install --omit=dev --no-audit --no-fund
|
||||||
|
COPY package-lock.json ./package-lock.json
|
||||||
|
|
||||||
COPY src ./src
|
COPY src ./src
|
||||||
COPY scripts ./scripts
|
COPY scripts ./scripts
|
||||||
|
|||||||
@@ -1,8 +1,11 @@
|
|||||||
{
|
{
|
||||||
"name": "pulse-signage-player",
|
"name": "pulse-signage-player",
|
||||||
"version": "2.6.23",
|
"version": "2.8.0",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "Pulse Signage player application bundle",
|
"description": "Pulse Signage player application bundle",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=26.0.0"
|
||||||
|
},
|
||||||
"main": "src/common.js",
|
"main": "src/common.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "node -r dotenv/config src/player.js",
|
"start": "node -r dotenv/config src/player.js",
|
||||||
@@ -10,10 +13,10 @@
|
|||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"dotenv": "^17.4.2",
|
"dotenv": "^17.4.2",
|
||||||
"express": "^4.21.2",
|
"express": "^5.2.1",
|
||||||
"handlebars": "^4.7.8",
|
"handlebars": "^4.7.8",
|
||||||
"hls.js": "^1.5.15",
|
"hls.js": "^1.7.0",
|
||||||
"mysql2": "^3.14.3",
|
"mysql2": "^3.23.3",
|
||||||
"ws": "^8.21.0"
|
"ws": "^8.21.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,22 +1,25 @@
|
|||||||
{
|
{
|
||||||
"name": "pulse-signage-web",
|
"name": "pulse-signage-web",
|
||||||
"version": "2.6.23",
|
"version": "2.8.0",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "Pulse Signage web and bridge application bundle",
|
"description": "Pulse Signage web and bridge application bundle",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=26.0.0"
|
||||||
|
},
|
||||||
"main": "src/common.js",
|
"main": "src/common.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "node -r dotenv/config src/web.js",
|
"start": "node -r dotenv/config src/web.js",
|
||||||
"start:web": "node -r dotenv/config src/web.js"
|
"start:web": "node -r dotenv/config src/web.js"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@sparticuz/chromium": "^137.0.0",
|
"@sparticuz/chromium": "^149.0.0",
|
||||||
"dotenv": "^17.4.2",
|
"dotenv": "^17.4.2",
|
||||||
"express": "^4.21.2",
|
"express": "^5.2.1",
|
||||||
"handlebars": "^4.7.8",
|
"handlebars": "^4.7.8",
|
||||||
"multer": "^2.2.0",
|
"multer": "^2.2.0",
|
||||||
"mysql2": "^3.14.3",
|
"mysql2": "^3.23.3",
|
||||||
"puppeteer-core": "^24.16.0",
|
"puppeteer-core": "^25.7.0",
|
||||||
"sharp": "^0.35.3",
|
"sharp": "^0.35.3",
|
||||||
"ws": "^8.21.0"
|
"ws": "^8.21.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -17,7 +17,6 @@ PLAYER_PUBLIC_URL="http://localhost:8081"
|
|||||||
PLAYER_INTERNAL_URL="http://player:8081"
|
PLAYER_INTERNAL_URL="http://player:8081"
|
||||||
|
|
||||||
# Web app bootstrap settings
|
# Web app bootstrap settings
|
||||||
SESSION_MAX_AGE_DAYS=14
|
|
||||||
DEFAULT_ADMIN_USERNAME="admin"
|
DEFAULT_ADMIN_USERNAME="admin"
|
||||||
DEFAULT_ADMIN_NAME="Admin"
|
DEFAULT_ADMIN_NAME="Admin"
|
||||||
DEFAULT_ADMIN_PASSWORD="password123"
|
DEFAULT_ADMIN_PASSWORD="password123"
|
||||||
|
|||||||
@@ -45,7 +45,6 @@ Key configuration:
|
|||||||
|
|
||||||
- `DB_HOST`, `DB_PORT`, `DB_NAME`, `DB_USER`, `DB_PASSWORD`
|
- `DB_HOST`, `DB_PORT`, `DB_NAME`, `DB_USER`, `DB_PASSWORD`
|
||||||
- `PULSE_SIGNAGE_SHARED_SECRET`
|
- `PULSE_SIGNAGE_SHARED_SECRET`
|
||||||
- `SESSION_MAX_AGE_DAYS`
|
|
||||||
- `DEFAULT_ADMIN_USERNAME`
|
- `DEFAULT_ADMIN_USERNAME`
|
||||||
- `DEFAULT_ADMIN_NAME`
|
- `DEFAULT_ADMIN_NAME`
|
||||||
- `DEFAULT_ADMIN_PASSWORD`
|
- `DEFAULT_ADMIN_PASSWORD`
|
||||||
@@ -122,7 +121,6 @@ Important values:
|
|||||||
- `PLAYER_INTERNAL_URL` - internal URL the web app uses for local player calls
|
- `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
|
- `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
|
- `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
|
- `DEFAULT_ADMIN_*` - bootstrap admin account values
|
||||||
- `PASSWORD_HASH_ITERATIONS` - password hashing cost
|
- `PASSWORD_HASH_ITERATIONS` - password hashing cost
|
||||||
- `MYSQL_ROOT_PASSWORD` - root password for the local MySQL container
|
- `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_USER` | web, player, bridge, mysql | Database user. |
|
||||||
| `DB_PASSWORD` | web, player, bridge, mysql | Database password. |
|
| `DB_PASSWORD` | web, player, bridge, mysql | Database password. |
|
||||||
| `MYSQL_ROOT_PASSWORD` | mysql | Root password for the local MySQL container. |
|
| `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_USERNAME` | web | Bootstrap admin username. |
|
||||||
| `DEFAULT_ADMIN_NAME` | web | Bootstrap admin display name. |
|
| `DEFAULT_ADMIN_NAME` | web | Bootstrap admin display name. |
|
||||||
| `DEFAULT_ADMIN_PASSWORD` | web | Bootstrap admin password. |
|
| `DEFAULT_ADMIN_PASSWORD` | web | Bootstrap admin password. |
|
||||||
|
|||||||
@@ -16,7 +16,6 @@ services:
|
|||||||
DB_PASSWORD: ${DB_PASSWORD:-signage_password}
|
DB_PASSWORD: ${DB_PASSWORD:-signage_password}
|
||||||
PULSE_SIGNAGE_SHARED_SECRET: ${PULSE_SIGNAGE_SHARED_SECRET:-}
|
PULSE_SIGNAGE_SHARED_SECRET: ${PULSE_SIGNAGE_SHARED_SECRET:-}
|
||||||
BRIDGE_INTERNAL_URL: ${BRIDGE_INTERNAL_URL:-http://player-bridge:8090}
|
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_USERNAME: ${DEFAULT_ADMIN_USERNAME:-admin}
|
||||||
DEFAULT_ADMIN_NAME: ${DEFAULT_ADMIN_NAME:-Admin}
|
DEFAULT_ADMIN_NAME: ${DEFAULT_ADMIN_NAME:-Admin}
|
||||||
DEFAULT_ADMIN_PASSWORD: ${DEFAULT_ADMIN_PASSWORD:-password123}
|
DEFAULT_ADMIN_PASSWORD: ${DEFAULT_ADMIN_PASSWORD:-password123}
|
||||||
|
|||||||
+5
-6
@@ -286,6 +286,8 @@ Response fields:
|
|||||||
- `id`
|
- `id`
|
||||||
- `name`
|
- `name`
|
||||||
- `fade_between_slides`
|
- `fade_between_slides`
|
||||||
|
- `skip_unavailable_rtmp`
|
||||||
|
- `canvas_id`
|
||||||
|
|
||||||
### Slide
|
### Slide
|
||||||
|
|
||||||
@@ -293,12 +295,9 @@ Response fields:
|
|||||||
- `title`
|
- `title`
|
||||||
- `body`
|
- `body`
|
||||||
- `duration_seconds`
|
- `duration_seconds`
|
||||||
- `schedule_mode`
|
- `use_video_duration`
|
||||||
- `schedule_start_datetime`
|
- `disable_audio`
|
||||||
- `schedule_end_datetime`
|
- `scheduleRules`
|
||||||
- `schedule_start_time`
|
|
||||||
- `schedule_end_time`
|
|
||||||
- `schedule_days_json`
|
|
||||||
- `media_url`
|
- `media_url`
|
||||||
- `media_type`
|
- `media_type`
|
||||||
- `kind`
|
- `kind`
|
||||||
|
|||||||
+40
-22
@@ -3,7 +3,7 @@
|
|||||||
This app creates and maintains its schema at startup through `src/db/index.js`.
|
This app creates and maintains its schema at startup through `src/db/index.js`.
|
||||||
The sections below summarize the current tables and their purpose.
|
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
|
## Admin
|
||||||
|
|
||||||
@@ -16,7 +16,7 @@ Primary keys are `id` unless noted otherwise. Timestamps are stored as `created_
|
|||||||
|
|
||||||
### `a_users`
|
### `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.
|
- `username` is unique.
|
||||||
|
|
||||||
### `a_roles`
|
### `a_roles`
|
||||||
@@ -32,24 +32,24 @@ Primary keys are `id` unless noted otherwise. Timestamps are stored as `created_
|
|||||||
|
|
||||||
### `a_role_permissions`
|
### `a_role_permissions`
|
||||||
|
|
||||||
- `role_id`, `permission_id`, `created_at`, `modified_at`
|
- `id`, `role_id`, `permission_id`, `created_at`, `modified_at`
|
||||||
- Foreign keys:
|
- Foreign keys:
|
||||||
- `role_id` -> `a_roles.id`
|
- `role_id` -> `a_roles.id`
|
||||||
- `permission_id` -> `a_permissions.id`
|
- `permission_id` -> `a_permissions.id`
|
||||||
- Composite primary key: `(role_id, permission_id)`
|
- Unique key: `(role_id, permission_id)`
|
||||||
|
|
||||||
### `a_user_roles`
|
### `a_user_roles`
|
||||||
|
|
||||||
- `user_id`, `role_id`, `created_at`, `modified_at`
|
- `id`, `user_id`, `role_id`, `created_at`, `modified_at`
|
||||||
- Foreign keys:
|
- Foreign keys:
|
||||||
- `user_id` -> `a_users.id`
|
- `user_id` -> `a_users.id`
|
||||||
- `role_id` -> `a_roles.id`
|
- `role_id` -> `a_roles.id`
|
||||||
- Composite primary key: `(user_id, role_id)`
|
- Unique key: `(user_id, role_id)`
|
||||||
|
|
||||||
### `a_sessions`
|
### `a_sessions`
|
||||||
|
|
||||||
- `session_hash`, `user_id`, `expires_at`, `created_at`, `created_by`, `last_used_at`, `modified_by`
|
- `id`, `session_hash`, `user_id`, `ip_address`, `user_agent`, `expires_at`, `created_at`, `created_by`, `last_used_at`, `modified_by`
|
||||||
- `session_hash` is the primary key.
|
- `session_hash` is unique.
|
||||||
- Foreign key:
|
- Foreign key:
|
||||||
- `user_id` -> `a_users.id`
|
- `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_screens` - screen records and playlist assignment.
|
||||||
- `d_onboarding_devices` - device-to-screen bindings and onboarded client names.
|
- `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`
|
### `d_players`
|
||||||
|
|
||||||
- `id`, `identifier`, `public_base_url`, `internal_base_url`, `last_seen_at`, `created_at`, `modified_at`
|
- `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`
|
### `d_onboarding_devices`
|
||||||
|
|
||||||
- `device_id`, `client_name`, `screen_id`, `created_at`, `created_by`, `modified_at`, `modified_by`
|
- `id`, `device_id`, `client_name`, `screen_id`, `created_at`, `created_by`, `modified_at`, `modified_by`
|
||||||
- `device_id` is the primary key.
|
- `device_id` is unique.
|
||||||
- Foreign key:
|
- Foreign key:
|
||||||
- `screen_id` -> `d_screens.id` with `ON DELETE SET NULL`
|
- `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`
|
### `d_announcements`
|
||||||
|
|
||||||
- `id`, `message`, `short_label`, `announcement_type`, `color_key`, `icon_key`, `duration_seconds`, `expires_at`, `created_at`, `created_by`, `modified_at`, `modified_by`
|
- `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:
|
- Foreign keys:
|
||||||
- `announcement_id` -> `d_announcements.id` with `ON DELETE CASCADE`
|
- `announcement_id` -> `d_announcements.id` with `ON DELETE CASCADE`
|
||||||
- `screen_id` -> `d_screens.id` with `ON DELETE CASCADE`
|
- `screen_id` -> `d_screens.id` with `ON DELETE CASCADE`
|
||||||
- Composite primary key: `(announcement_id, screen_id)`
|
- Unique 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.
|
|
||||||
|
|
||||||
## Integrations
|
## 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_background_tasks` - queue and history for background jobs.
|
||||||
- `o_app_state` - generic app state and version markers stored as key/value pairs.
|
- `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`
|
### `o_background_tasks`
|
||||||
|
|
||||||
@@ -209,10 +211,21 @@ Primary keys are `id` unless noted otherwise. Timestamps are stored as `created_
|
|||||||
|
|
||||||
### `o_app_state`
|
### `o_app_state`
|
||||||
|
|
||||||
- `state_key`, `state_value`, `created_at`, `modified_at`
|
- `id`, `state_key`, `state_value`, `created_at`, `modified_at`
|
||||||
- `state_key` is the primary key.
|
- `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.
|
- `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
|
## Notes
|
||||||
|
|
||||||
- The schema is initialized with `CREATE TABLE IF NOT EXISTS`, so new installs can start from an empty database.
|
- 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_STATE {
|
||||||
}
|
}
|
||||||
|
O_APP_SETTINGS {
|
||||||
|
}
|
||||||
O_BACKGROUND_TASKS {
|
O_BACKGROUND_TASKS {
|
||||||
}
|
}
|
||||||
|
O_AUDIT_EVENTS {
|
||||||
|
}
|
||||||
|
|
||||||
A_USERS ||--o{ A_USER_ROLES : has
|
A_USERS ||--o{ A_USER_ROLES : has
|
||||||
A_ROLES ||--o{ A_USER_ROLES : assigned_to
|
A_ROLES ||--o{ A_USER_ROLES : assigned_to
|
||||||
A_ROLES ||--o{ A_ROLE_PERMISSIONS : has
|
A_ROLES ||--o{ A_ROLE_PERMISSIONS : has
|
||||||
A_PERMISSIONS ||--o{ A_ROLE_PERMISSIONS : granted_to
|
A_PERMISSIONS ||--o{ A_ROLE_PERMISSIONS : granted_to
|
||||||
A_USERS ||--o{ A_SESSIONS : owns
|
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_TEMPLATES : used_by
|
||||||
C_CANVAS_SIZES ||--o{ C_PLAYLISTS : used_by
|
C_CANVAS_SIZES ||--o{ C_PLAYLISTS : used_by
|
||||||
|
|||||||
Generated
+570
-984
File diff suppressed because it is too large
Load Diff
+11
-8
@@ -1,8 +1,11 @@
|
|||||||
{
|
{
|
||||||
"name": "pulse-signage",
|
"name": "pulse-signage",
|
||||||
"version": "2.6.23",
|
"version": "2.8.0",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "Pulse Signage application with MySQL and media storage",
|
"description": "Pulse Signage application with MySQL and media storage",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=26.0.0"
|
||||||
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://git.lzstealth.com/LZStealth/pulse-signage.git"
|
"url": "https://git.lzstealth.com/LZStealth/pulse-signage.git"
|
||||||
@@ -17,19 +20,19 @@
|
|||||||
"test": "node --test"
|
"test": "node --test"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@sparticuz/chromium": "^137.0.0",
|
"@sparticuz/chromium": "^149.0.0",
|
||||||
"animate.css": "^4.1.1",
|
"animate.css": "^4.1.1",
|
||||||
"bootstrap-icons": "1.11.3",
|
"bootstrap-icons": "1.13.1",
|
||||||
"cropperjs": "^1.6.2",
|
"cropperjs": "^1.6.2",
|
||||||
"dotenv": "^17.4.2",
|
"dotenv": "^17.4.2",
|
||||||
"express": "^4.21.2",
|
"express": "^5.2.1",
|
||||||
"handlebars": "^4.7.8",
|
"handlebars": "^4.7.8",
|
||||||
"hls.js": "^1.5.15",
|
"hls.js": "^1.7.0",
|
||||||
"multer": "^2.2.0",
|
"multer": "^2.2.0",
|
||||||
"mysql2": "^3.14.3",
|
"mysql2": "^3.23.3",
|
||||||
"puppeteer-core": "^24.16.0",
|
"puppeteer-core": "^25.7.0",
|
||||||
"sharp": "^0.35.3",
|
"sharp": "^0.35.3",
|
||||||
"ws": "^8.21.0"
|
"ws": "^8.21.3"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"nodemon": "^3.1.10"
|
"nodemon": "^3.1.10"
|
||||||
|
|||||||
+37
-3
@@ -7,21 +7,55 @@ const PASSWORD_KEY_LENGTH = 32;
|
|||||||
const PASSWORD_DIGEST = 'sha256';
|
const PASSWORD_DIGEST = 'sha256';
|
||||||
const SESSION_BYTES = 32;
|
const SESSION_BYTES = 32;
|
||||||
|
|
||||||
function validatePasswordStrength(password) {
|
function validatePasswordStrength(password, options) {
|
||||||
const value = String(password || '');
|
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 hasLowercase = /[a-z]/.test(value);
|
||||||
const hasUppercase = /[A-Z]/.test(value);
|
const hasUppercase = /[A-Z]/.test(value);
|
||||||
const hasNumber = /[0-9]/.test(value);
|
const hasNumber = /[0-9]/.test(value);
|
||||||
const hasSymbol = /[^A-Za-z0-9]/.test(value);
|
const hasSymbol = /[^A-Za-z0-9]/.test(value);
|
||||||
const categoryCount = [hasLowercase, hasUppercase, hasNumber, hasSymbol].filter(Boolean).length;
|
const categoryCount = [hasLowercase, hasUppercase, hasNumber, hasSymbol].filter(Boolean).length;
|
||||||
|
|
||||||
if (value.length < 10 || categoryCount < 3) {
|
const missingRequiredCategory = requirements.requireLowercase && !hasLowercase
|
||||||
return 'Password must be at least 10 characters and include 3 of: uppercase, lowercase, number, and symbol.';
|
|| 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 '';
|
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) {
|
function hashPassword(password, salt) {
|
||||||
const safePassword = String(password || '');
|
const safePassword = String(password || '');
|
||||||
const safeSalt = salt || crypto.randomBytes(16).toString('hex');
|
const safeSalt = salt || crypto.randomBytes(16).toString('hex');
|
||||||
|
|||||||
+1
-2
@@ -27,7 +27,7 @@ const dbBootstrap = require('#src/db/bootstrap');
|
|||||||
const data = require('#src/data');
|
const data = require('#src/data');
|
||||||
const player = require('#src/player/render');
|
const player = require('#src/player/render');
|
||||||
const listQuery = require('#src/web/lib/list-query');
|
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 = {
|
module.exports = {
|
||||||
createPool: dbCommon.createPool,
|
createPool: dbCommon.createPool,
|
||||||
@@ -63,7 +63,6 @@ module.exports = {
|
|||||||
getSortDirectionQuery: listQuery.getSortDirectionQuery,
|
getSortDirectionQuery: listQuery.getSortDirectionQuery,
|
||||||
fetchPlaylistById: data.fetchPlaylistById,
|
fetchPlaylistById: data.fetchPlaylistById,
|
||||||
fetchPlaylistCanvasId: fetchPlaylistCanvasId,
|
fetchPlaylistCanvasId: fetchPlaylistCanvasId,
|
||||||
fetchPlaylistCanvasSignature: fetchPlaylistCanvasSignature,
|
|
||||||
normalizeDisplayMode: data.normalizeDisplayMode,
|
normalizeDisplayMode: data.normalizeDisplayMode,
|
||||||
fetchTimetablesData: data.fetchTimetablesData,
|
fetchTimetablesData: data.fetchTimetablesData,
|
||||||
fetchTimetableGroupsPage: data.fetchTimetableGroupsPage,
|
fetchTimetableGroupsPage: data.fetchTimetableGroupsPage,
|
||||||
|
|||||||
@@ -1,55 +1,69 @@
|
|||||||
const ANNOUNCEMENT_ICON_OPTIONS = [
|
const fs = require('fs');
|
||||||
{ value: 'megaphone-fill', label: 'Megaphone' },
|
const path = require('path');
|
||||||
{ value: 'megaphone', label: 'Megaphone outline' },
|
|
||||||
{ value: 'bell-fill', label: 'Bell' },
|
const BOOTSTRAP_ICON_CSS_PATH = path.join(__dirname, '..', 'web', 'public', 'adminlte', 'bootstrap-icons', 'css', 'bootstrap-icons.min.css');
|
||||||
{ value: 'bell', label: 'Bell outline' },
|
|
||||||
{ value: 'exclamation-triangle-fill', label: 'Warning' },
|
const DEFAULT_ANNOUNCEMENT_ICON_KEYS = [
|
||||||
{ value: 'exclamation-triangle', label: 'Warning outline' },
|
'megaphone-fill', 'megaphone', 'bell-fill', 'bell',
|
||||||
{ value: 'info-circle-fill', label: 'Info' },
|
'exclamation-triangle-fill', 'exclamation-triangle', 'info-circle-fill', 'info-circle',
|
||||||
{ value: 'info-circle', label: 'Info outline' },
|
'check-circle-fill', 'check-circle', 'lightbulb-fill', 'lightbulb',
|
||||||
{ value: 'check-circle-fill', label: 'Success' },
|
'calendar-event-fill', 'calendar-event', 'clock-fill', 'clock',
|
||||||
{ value: 'check-circle', label: 'Success outline' },
|
'wifi-off', 'wifi', 'hdd-network', 'hdd-network-fill',
|
||||||
{ value: 'lightbulb-fill', label: 'Idea' },
|
'speaker-fill', 'speaker', 'shield-fill', 'shield',
|
||||||
{ value: 'lightbulb', label: 'Idea outline' },
|
'collection-play-fill', 'collection-play', 'broadcast', 'broadcast-pin',
|
||||||
{ value: 'calendar-event-fill', label: 'Calendar' },
|
'plug-fill', 'plug', 'lightning-charge-fill', 'lightning-charge',
|
||||||
{ value: 'calendar-event', label: 'Calendar outline' },
|
'car-front-fill', 'car-front', 'lamp-fill', 'lamp',
|
||||||
{ value: 'clock-fill', label: 'Clock' },
|
'envelope-fill', 'envelope', 'people-fill', 'people',
|
||||||
{ value: 'clock', label: 'Clock outline' },
|
'browser-chrome', 'browser-edge', 'browser-firefox', 'browser-safari',
|
||||||
{ value: 'wifi-off', label: 'Wi-Fi Offline' },
|
'cone', 'cone-striped', 'cup-straw', 'fire'
|
||||||
{ 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 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;
|
return option.value;
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -58,17 +72,27 @@ const ANNOUNCEMENT_ICON_LABELS = ANNOUNCEMENT_ICON_OPTIONS.reduce(function (labe
|
|||||||
return labels;
|
return labels;
|
||||||
}, Object.create(null));
|
}, 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';
|
const DEFAULT_ANNOUNCEMENT_ICON = 'megaphone-fill';
|
||||||
|
|
||||||
function normalizeAnnouncementIcon(value) {
|
function normalizeAnnouncementIcon(value) {
|
||||||
const normalized = String(value || '').trim().toLowerCase();
|
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 = {
|
module.exports = {
|
||||||
|
DEFAULT_ANNOUNCEMENT_ICON_KEYS,
|
||||||
ANNOUNCEMENT_ICON_OPTIONS,
|
ANNOUNCEMENT_ICON_OPTIONS,
|
||||||
ANNOUNCEMENT_ICON_KEYS,
|
ANNOUNCEMENT_ICON_KEYS,
|
||||||
|
ANNOUNCEMENT_ICON_CATALOG,
|
||||||
|
ANNOUNCEMENT_ICON_CATALOG_KEYS,
|
||||||
ANNOUNCEMENT_ICON_LABELS,
|
ANNOUNCEMENT_ICON_LABELS,
|
||||||
DEFAULT_ANNOUNCEMENT_ICON,
|
DEFAULT_ANNOUNCEMENT_ICON,
|
||||||
|
humanizeBootstrapIconLabel,
|
||||||
normalizeAnnouncementIcon
|
normalizeAnnouncementIcon
|
||||||
};
|
};
|
||||||
@@ -11,7 +11,10 @@ const ITEMS_PATH_MAX_LENGTH = 255;
|
|||||||
|
|
||||||
function normalizeUpdateIntervalUnit(value) {
|
function normalizeUpdateIntervalUnit(value) {
|
||||||
const unit = String(value || '').trim().toLowerCase();
|
const unit = String(value || '').trim().toLowerCase();
|
||||||
return unit === 'seconds' ? 'seconds' : 'minutes';
|
if (unit === 'seconds' || unit === 'minutes' || unit === 'hours') {
|
||||||
|
return unit;
|
||||||
|
}
|
||||||
|
return 'minutes';
|
||||||
}
|
}
|
||||||
|
|
||||||
function normalizeAuthMethod(value) {
|
function normalizeAuthMethod(value) {
|
||||||
@@ -19,10 +22,6 @@ function normalizeAuthMethod(value) {
|
|||||||
return ['basic', 'bearer', 'api_key_header'].includes(method) ? method : 'none';
|
return ['basic', 'bearer', 'api_key_header'].includes(method) ? method : 'none';
|
||||||
}
|
}
|
||||||
|
|
||||||
function getItemsPath(source) {
|
|
||||||
return String(source && (source.items_path || source.itemsPath) || '').trim();
|
|
||||||
}
|
|
||||||
|
|
||||||
function buildAuthHeaders(source) {
|
function buildAuthHeaders(source) {
|
||||||
const method = normalizeAuthMethod(source && (source.auth_method || source.authMethod));
|
const method = normalizeAuthMethod(source && (source.auth_method || source.authMethod));
|
||||||
const headers = {};
|
const headers = {};
|
||||||
|
|||||||
@@ -0,0 +1,199 @@
|
|||||||
|
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' }
|
||||||
|
];
|
||||||
|
|
||||||
|
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(
|
||||||
|
`INSERT INTO o_app_settings (setting_key, setting_value, created_by, modified_by)
|
||||||
|
VALUES (?, ?, ?, ?)
|
||||||
|
ON DUPLICATE KEY UPDATE setting_value = VALUES(setting_value), modified_by = VALUES(modified_by)`,
|
||||||
|
[definition.key, JSON.stringify(normalizedSettings[definition.key]), modifiedBy || null, modifiedBy || null]
|
||||||
|
);
|
||||||
|
}
|
||||||
|
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,102 @@
|
|||||||
|
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 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,
|
||||||
|
recordAuditEvent,
|
||||||
|
recordRequestAuditEvent
|
||||||
|
};
|
||||||
@@ -1,17 +1,6 @@
|
|||||||
const fs = require('fs');
|
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const QRCodeStyling = require(path.join(__dirname, '..', 'web', 'public', 'vendor', 'qr-code-styling', 'qr-code-styling.js'));
|
const QRCodeStyling = require(path.join(__dirname, '..', 'web', 'public', 'vendor', 'qr-code-styling', 'qr-code-styling.js'));
|
||||||
const QR_PNG_WIDTH = 2048;
|
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) {
|
function escapeXml(value) {
|
||||||
return String(value === undefined || value === null ? '' : value).replace(/[&<>"']/g, function (character) {
|
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) {
|
async function createStyledQrCodeDataUrl(value) {
|
||||||
const source = value && typeof value === 'object' ? value : { value: value };
|
const source = value && typeof value === 'object' ? value : { value: value };
|
||||||
const options = buildQrStylingOptions(source);
|
const options = buildQrStylingOptions(source);
|
||||||
@@ -435,10 +349,6 @@ async function createStyledQrCodeSvg(value) {
|
|||||||
return renderStyledQrRawData(options, 'svg');
|
return renderStyledQrRawData(options, 'svg');
|
||||||
}
|
}
|
||||||
|
|
||||||
async function createQrCodeDataUrlPlain(value) {
|
|
||||||
return createStyledQrCodeDataUrl(value);
|
|
||||||
}
|
|
||||||
|
|
||||||
async function createQrCodeSvg(value) {
|
async function createQrCodeSvg(value) {
|
||||||
return createStyledQrCodeSvg(value);
|
return createStyledQrCodeSvg(value);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,7 +9,10 @@ const URL_MAX_LENGTH = 1024;
|
|||||||
|
|
||||||
function normalizeUpdateIntervalUnit(value) {
|
function normalizeUpdateIntervalUnit(value) {
|
||||||
const unit = String(value || '').trim().toLowerCase();
|
const unit = String(value || '').trim().toLowerCase();
|
||||||
return unit === 'seconds' ? 'seconds' : 'minutes';
|
if (unit === 'seconds' || unit === 'minutes' || unit === 'hours') {
|
||||||
|
return unit;
|
||||||
|
}
|
||||||
|
return 'minutes';
|
||||||
}
|
}
|
||||||
|
|
||||||
async function fetchRssFeedsData(pool) {
|
async function fetchRssFeedsData(pool) {
|
||||||
|
|||||||
+69
-14
@@ -6,38 +6,93 @@ const { parseJsonSafe, validateMaxLength } = require('./utils');
|
|||||||
const TITLE_MAX_LENGTH = 255;
|
const TITLE_MAX_LENGTH = 255;
|
||||||
const { buildQrCodeContent } = require('./qr-code');
|
const { buildQrCodeContent } = require('./qr-code');
|
||||||
|
|
||||||
const ALLOWED_RICH_TEXT_TAGS = ['b', 'strong', 'i', 'em', 'u', 'br', 'p', 'div', 'ul', 'ol', 'li'];
|
|
||||||
const DEFAULT_FONT_SIZE = 32;
|
const DEFAULT_FONT_SIZE = 32;
|
||||||
|
|
||||||
|
const ALLOWED_RICH_TEXT_TAGS = ['a', 'b', 'blockquote', 'br', 'code', 'div', 'em', 'figure', 'figcaption', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'hr', 'i', 'img', 'li', 'ol', 'p', 'pre', 'span', 'strong', 'sub', 'sup', 'table', 'tbody', 'td', 'th', 'thead', 'tr', 'u', 'ul'];
|
||||||
|
|
||||||
|
function sanitizeRichTextAttributes(tagName, attrText) {
|
||||||
|
const allowedAttributes = {
|
||||||
|
a: ['href', 'title', 'target', 'rel', 'class', 'style'],
|
||||||
|
blockquote: ['class', 'style'],
|
||||||
|
div: ['class', 'style'],
|
||||||
|
figure: ['class', 'style'],
|
||||||
|
figcaption: ['class', 'style'],
|
||||||
|
h1: ['class', 'style'],
|
||||||
|
h2: ['class', 'style'],
|
||||||
|
h3: ['class', 'style'],
|
||||||
|
h4: ['class', 'style'],
|
||||||
|
h5: ['class', 'style'],
|
||||||
|
h6: ['class', 'style'],
|
||||||
|
img: ['src', 'alt', 'title', 'width', 'height', 'class', 'style', 'loading', 'decoding'],
|
||||||
|
li: ['class', 'style'],
|
||||||
|
ol: ['class', 'style', 'start'],
|
||||||
|
p: ['class', 'style'],
|
||||||
|
pre: ['class', 'style'],
|
||||||
|
span: ['class', 'style'],
|
||||||
|
table: ['class', 'style'],
|
||||||
|
td: ['class', 'style', 'colspan', 'rowspan'],
|
||||||
|
th: ['class', 'style', 'colspan', 'rowspan', 'scope'],
|
||||||
|
tr: ['class', 'style'],
|
||||||
|
ul: ['class', 'style']
|
||||||
|
};
|
||||||
|
const allowed = allowedAttributes[tagName] || [];
|
||||||
|
if (!allowed.length) {
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
|
const attrs = [];
|
||||||
|
String(attrText || '').replace(/([a-zA-Z0-9:-]+)(?:\s*=\s*("([^"]*)"|'([^']*)'|([^\s"'>/=`]+)))?/g, (_full, key, _valuePart, doubleQuoted, singleQuoted, bareValue) => {
|
||||||
|
const lowerKey = String(key || '').toLowerCase();
|
||||||
|
if (!allowed.includes(lowerKey)) {
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
|
const value = doubleQuoted !== undefined ? doubleQuoted : singleQuoted !== undefined ? singleQuoted : bareValue !== undefined ? bareValue : '';
|
||||||
|
if (lowerKey === 'href' && /^(?:\s*javascript:|\s*data:)/i.test(String(value || ''))) {
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
if (lowerKey === 'style' && /(?:expression\s*\(|javascript:|url\s*\()/i.test(String(value || ''))) {
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
if (lowerKey === 'target') {
|
||||||
|
const targetValue = String(value || '').trim();
|
||||||
|
if (targetValue === '_blank') {
|
||||||
|
attrs.push(' target="_blank"');
|
||||||
|
if (!attrs.includes(' rel="noreferrer noopener"')) {
|
||||||
|
attrs.push(' rel="noreferrer noopener"');
|
||||||
|
}
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
attrs.push(' ' + lowerKey + '="' + String(value || '').replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>').replace(/"/g, '"').replace(/'/g, ''') + '"');
|
||||||
|
return '';
|
||||||
|
});
|
||||||
|
|
||||||
|
return attrs.join('');
|
||||||
|
}
|
||||||
|
|
||||||
function sanitizeRichText(html) {
|
function sanitizeRichText(html) {
|
||||||
let output = String(html || '');
|
let output = String(html || '');
|
||||||
output = output.replace(/<script[\s\S]*?<\/script>/gi, '');
|
output = output.replace(/<script[\s\S]*?<\/script>/gi, '');
|
||||||
output = output.replace(/<style[\s\S]*?<\/style>/gi, '');
|
output = output.replace(/<style[\s\S]*?<\/style>/gi, '');
|
||||||
return output.replace(/<[^>]+>/g, (tag) => {
|
return output.replace(/<[^>]+>/g, (tag) => {
|
||||||
const match = tag.match(/^<\s*(\/?)\s*([a-z0-9]+)(?:\s[^>]*)?>$/i);
|
const match = tag.match(/^<\s*(\/?)\s*([a-z0-9]+)([\s\S]*?)(\/?)>$/i);
|
||||||
if (!match) {
|
if (!match) {
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
const closing = Boolean(match[1]);
|
const closing = Boolean(match[1]);
|
||||||
const name = String(match[2] || '').toLowerCase();
|
const name = String(match[2] || '').toLowerCase();
|
||||||
|
const attrText = String(match[3] || '');
|
||||||
if (!ALLOWED_RICH_TEXT_TAGS.includes(name)) {
|
if (!ALLOWED_RICH_TEXT_TAGS.includes(name)) {
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
if (name === 'br') {
|
if (closing) {
|
||||||
return '<br>';
|
return `</${name}>`;
|
||||||
}
|
}
|
||||||
return closing ? `</${name}>` : `<${name}>`;
|
return `<${name}${sanitizeRichTextAttributes(name, attrText)}>`;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
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) {
|
function stripEditorOnlyMarkup(value) {
|
||||||
return String(value || '')
|
return String(value || '')
|
||||||
.replace(/<pre[^>]*class="[^"]*api-region-sample-preview[^"]*"[^>]*>[\s\S]*?<\/pre>/gi, '')
|
.replace(/<pre[^>]*class="[^"]*api-region-sample-preview[^"]*"[^>]*>[\s\S]*?<\/pre>/gi, '')
|
||||||
@@ -430,7 +485,7 @@ async function buildTemplateContent(pool, template, body, filesByField, existing
|
|||||||
const style = getTextRegionStyle(body, region, existingContent);
|
const style = getTextRegionStyle(body, region, existingContent);
|
||||||
content[region.region_key] = {
|
content[region.region_key] = {
|
||||||
type: 'text',
|
type: 'text',
|
||||||
value: stripEditorOnlyMarkup(normalizeEditorMarkup(submitted === undefined ? current : String(submitted || ''))),
|
value: sanitizeRichText(stripEditorOnlyMarkup(normalizeEditorMarkup(submitted === undefined ? current : String(submitted || '')))),
|
||||||
font_family: style.font_family,
|
font_family: style.font_family,
|
||||||
font_size: style.font_size,
|
font_size: style.font_size,
|
||||||
font_color: style.font_color
|
font_color: style.font_color
|
||||||
|
|||||||
@@ -194,43 +194,6 @@ function extractTemplateRegions(body) {
|
|||||||
return regions;
|
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) {
|
function getFilesByField(files) {
|
||||||
const map = {};
|
const map = {};
|
||||||
(files || []).forEach((file) => {
|
(files || []).forEach((file) => {
|
||||||
|
|||||||
Vendored
-2
@@ -35,8 +35,6 @@ async function bootstrapDatabase(pool) {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
await pool.query('UPDATE a_users SET name = username WHERE name IS NULL OR name = ""');
|
|
||||||
|
|
||||||
await pool.query(
|
await pool.query(
|
||||||
`INSERT INTO a_roles (role_key, name, description, created_by, modified_by)
|
`INSERT INTO a_roles (role_key, name, description, created_by, modified_by)
|
||||||
VALUES (?, ?, ?, ?, ?)
|
VALUES (?, ?, ?, ?, ?)
|
||||||
|
|||||||
+38
-5
@@ -184,13 +184,14 @@ async function ensureSchema(pool, options) {
|
|||||||
|
|
||||||
await pool.query(`
|
await pool.query(`
|
||||||
CREATE TABLE IF NOT EXISTS d_announcement_screens (
|
CREATE TABLE IF NOT EXISTS d_announcement_screens (
|
||||||
|
id BIGINT AUTO_INCREMENT PRIMARY KEY,
|
||||||
announcement_id INT NOT NULL,
|
announcement_id INT NOT NULL,
|
||||||
screen_id INT NOT NULL,
|
screen_id INT NOT NULL,
|
||||||
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||||
created_by INT NULL,
|
created_by INT NULL,
|
||||||
modified_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
modified_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||||
modified_by INT NULL,
|
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),
|
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_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
|
CONSTRAINT fk_announcement_screens_screen FOREIGN KEY (screen_id) REFERENCES d_screens(id) ON DELETE CASCADE
|
||||||
@@ -278,7 +279,8 @@ async function ensureSchema(pool, options) {
|
|||||||
|
|
||||||
await pool.query(`
|
await pool.query(`
|
||||||
CREATE TABLE IF NOT EXISTS d_onboarding_devices (
|
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,
|
client_name VARCHAR(255) NULL,
|
||||||
screen_id INT NULL,
|
screen_id INT NULL,
|
||||||
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||||
@@ -297,6 +299,8 @@ async function ensureSchema(pool, options) {
|
|||||||
password_hash CHAR(64) NOT NULL,
|
password_hash CHAR(64) NOT NULL,
|
||||||
password_salt VARCHAR(64) NOT NULL,
|
password_salt VARCHAR(64) NOT NULL,
|
||||||
password_iterations INT 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_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||||
created_by INT NULL,
|
created_by INT NULL,
|
||||||
modified_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
modified_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||||
@@ -333,13 +337,14 @@ async function ensureSchema(pool, options) {
|
|||||||
|
|
||||||
await pool.query(`
|
await pool.query(`
|
||||||
CREATE TABLE IF NOT EXISTS a_role_permissions (
|
CREATE TABLE IF NOT EXISTS a_role_permissions (
|
||||||
|
id BIGINT AUTO_INCREMENT PRIMARY KEY,
|
||||||
role_id INT NOT NULL,
|
role_id INT NOT NULL,
|
||||||
permission_id INT NOT NULL,
|
permission_id INT NOT NULL,
|
||||||
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||||
created_by INT NULL,
|
created_by INT NULL,
|
||||||
modified_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
modified_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||||
modified_by INT NULL,
|
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_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
|
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
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
|
||||||
@@ -347,13 +352,14 @@ async function ensureSchema(pool, options) {
|
|||||||
|
|
||||||
await pool.query(`
|
await pool.query(`
|
||||||
CREATE TABLE IF NOT EXISTS a_user_roles (
|
CREATE TABLE IF NOT EXISTS a_user_roles (
|
||||||
|
id BIGINT AUTO_INCREMENT PRIMARY KEY,
|
||||||
user_id INT NOT NULL,
|
user_id INT NOT NULL,
|
||||||
role_id INT NOT NULL,
|
role_id INT NOT NULL,
|
||||||
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||||
created_by INT NULL,
|
created_by INT NULL,
|
||||||
modified_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
modified_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||||
modified_by INT NULL,
|
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_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
|
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
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
|
||||||
@@ -361,8 +367,11 @@ async function ensureSchema(pool, options) {
|
|||||||
|
|
||||||
await pool.query(`
|
await pool.query(`
|
||||||
CREATE TABLE IF NOT EXISTS a_sessions (
|
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,
|
user_id INT NOT NULL,
|
||||||
|
ip_address VARCHAR(255) NULL,
|
||||||
|
user_agent VARCHAR(512) NULL,
|
||||||
expires_at DATETIME NOT NULL,
|
expires_at DATETIME NOT NULL,
|
||||||
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||||
created_by INT NULL,
|
created_by INT NULL,
|
||||||
@@ -372,6 +381,18 @@ async function ensureSchema(pool, options) {
|
|||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
|
) 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(`
|
await pool.query(`
|
||||||
CREATE TABLE IF NOT EXISTS o_background_tasks (
|
CREATE TABLE IF NOT EXISTS o_background_tasks (
|
||||||
id BIGINT AUTO_INCREMENT PRIMARY KEY,
|
id BIGINT AUTO_INCREMENT PRIMARY KEY,
|
||||||
@@ -393,6 +414,18 @@ async function ensureSchema(pool, options) {
|
|||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
|
) 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 runMigrations(pool, Object.assign({}, options, { currentVersion: currentVersion }));
|
||||||
await recordSchemaVersion(pool, appVersion);
|
await recordSchemaVersion(pool, appVersion);
|
||||||
} finally {
|
} finally {
|
||||||
|
|||||||
+109
-1
@@ -385,6 +385,113 @@ const VERSIONED_MIGRATIONS = [
|
|||||||
await pool.query('DROP TABLE i_schedule_groups');
|
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'`
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
@@ -441,7 +548,8 @@ async function detectSchemaVersion(pool) {
|
|||||||
async function recordSchemaVersion(pool, version) {
|
async function recordSchemaVersion(pool, version) {
|
||||||
await pool.query(
|
await pool.query(
|
||||||
`CREATE TABLE IF NOT EXISTS ${APP_STATE_TABLE} (
|
`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,
|
state_value MEDIUMTEXT NULL,
|
||||||
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||||
modified_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
|
modified_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
<link rel="icon" type="image/png" href="/assets/favicon.png" />
|
<link rel="icon" type="image/png" href="/assets/favicon.png" />
|
||||||
<link rel="stylesheet" href="/assets/adminlte/bootstrap-icons/css/bootstrap-icons.min.css" />
|
<link rel="stylesheet" href="/assets/adminlte/bootstrap-icons/css/bootstrap-icons.min.css" />
|
||||||
<link rel="stylesheet" href="/assets/vendor/animate.css/animate.min.css" />
|
<link rel="stylesheet" href="/assets/vendor/animate.css/animate.min.css" />
|
||||||
<link rel="stylesheet" href="/assets/css/player.css?v=36" />
|
<link rel="stylesheet" href="/assets/css/player.css?v=37" />
|
||||||
{{{STYLESHEETS}}}
|
{{{STYLESHEETS}}}
|
||||||
</head>
|
</head>
|
||||||
<body class="{{BODY_CLASS}}">
|
<body class="{{BODY_CLASS}}">
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ body {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
background: #111;
|
background: #0a0a0a;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
font-family: Arial, sans-serif;
|
font-family: Arial, sans-serif;
|
||||||
}
|
}
|
||||||
@@ -43,7 +43,7 @@ body.thumbnail-preview .player-offline-banner {
|
|||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
background: #111;
|
background: #0a0a0a;
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -294,15 +294,6 @@ body.screen-blackout #app {
|
|||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
.slide img,
|
|
||||||
.slide video,
|
|
||||||
.slide iframe {
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
object-fit: contain;
|
|
||||||
border: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.body {
|
.body {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 5%;
|
left: 5%;
|
||||||
|
|||||||
@@ -427,6 +427,42 @@ function normalizeBoolean(value) {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function isEditableTarget(target) {
|
||||||
|
if (!target) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (target.isContentEditable) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
var tagName = String(target.tagName || '').toUpperCase();
|
||||||
|
return ['INPUT', 'TEXTAREA', 'SELECT', 'OPTION'].indexOf(tagName) !== -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
function handlePlayerKeydown(event) {
|
||||||
|
if (!event || event.defaultPrevented || event.altKey || event.ctrlKey || event.metaKey) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isEditableTarget(event.target)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (event.key === 'ArrowLeft') {
|
||||||
|
event.preventDefault();
|
||||||
|
navigateSlides(-1);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (event.key === 'ArrowRight') {
|
||||||
|
event.preventDefault();
|
||||||
|
navigateSlides(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
window.addEventListener('keydown', handlePlayerKeydown);
|
||||||
|
|
||||||
// Move to the previous or next active slide.
|
// Move to the previous or next active slide.
|
||||||
function navigateSlides(offset) {
|
function navigateSlides(offset) {
|
||||||
const manualSlides = getCurrentActiveSlides();
|
const manualSlides = getCurrentActiveSlides();
|
||||||
|
|||||||
@@ -70,6 +70,7 @@ function applyPendingPlaylistUpdate() {
|
|||||||
if (!pendingPlaylistUpdate) {
|
if (!pendingPlaylistUpdate) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
var nextIndex = Number(index || 0);
|
||||||
slides = pendingPlaylistUpdate.slides;
|
slides = pendingPlaylistUpdate.slides;
|
||||||
currentPlaylistSignature = pendingPlaylistUpdate.signature;
|
currentPlaylistSignature = pendingPlaylistUpdate.signature;
|
||||||
currentPlaylistFadeBetweenSlides = pendingPlaylistUpdate.fadeBetweenSlides;
|
currentPlaylistFadeBetweenSlides = pendingPlaylistUpdate.fadeBetweenSlides;
|
||||||
@@ -80,7 +81,11 @@ function applyPendingPlaylistUpdate() {
|
|||||||
templateLayoutCache = Object.create(null);
|
templateLayoutCache = Object.create(null);
|
||||||
templateRenderPlanCache = Object.create(null);
|
templateRenderPlanCache = Object.create(null);
|
||||||
renderCacheViewportKey = window.innerWidth + 'x' + window.innerHeight;
|
renderCacheViewportKey = window.innerWidth + 'x' + window.innerHeight;
|
||||||
index = 0;
|
const activeSlides = getCurrentActiveSlides();
|
||||||
|
if (!Number.isFinite(nextIndex) || nextIndex < 0) {
|
||||||
|
nextIndex = 0;
|
||||||
|
}
|
||||||
|
index = activeSlides.length ? Math.min(nextIndex, activeSlides.length - 1) : 0;
|
||||||
logDebug('Applied updated playlist on slide transition.');
|
logDebug('Applied updated playlist on slide transition.');
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@@ -184,6 +189,15 @@ function refresh() {
|
|||||||
const nextActiveSlides = getActiveSlidesFrom(nextSlides);
|
const nextActiveSlides = getActiveSlidesFrom(nextSlides);
|
||||||
const nextFadeBetweenSlides = Boolean(data && data.playlist && data.playlist.fade_between_slides);
|
const nextFadeBetweenSlides = Boolean(data && data.playlist && data.playlist.fade_between_slides);
|
||||||
const nextSkipUnavailableRtmp = Boolean(data && data.playlist && data.playlist.skip_unavailable_rtmp);
|
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;
|
||||||
|
}
|
||||||
savePlaylistSnapshot({
|
savePlaylistSnapshot({
|
||||||
slides: nextSlides,
|
slides: nextSlides,
|
||||||
signature: nextSignature,
|
signature: nextSignature,
|
||||||
|
|||||||
@@ -4,6 +4,14 @@ function sanitizeFontFamily(value) {
|
|||||||
return String(value || '').replace(/[^a-zA-Z0-9 ,\"-]/g, '').trim();
|
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.
|
// Clamp font size to the supported range.
|
||||||
function sanitizeFontSize(value) {
|
function sanitizeFontSize(value) {
|
||||||
return Math.max(8, Number(value || 0) || 24);
|
return Math.max(8, Number(value || 0) || 24);
|
||||||
@@ -334,7 +342,7 @@ function setPlayerCanvasDimensions(canvasWidth, canvasHeight) {
|
|||||||
document.documentElement.style.setProperty('--player-canvas-height', height + 'px');
|
document.documentElement.style.setProperty('--player-canvas-height', height + 'px');
|
||||||
}
|
}
|
||||||
|
|
||||||
const ALLOWED_RICH_TEXT_TAGS = ['a', 'b', 'blockquote', 'br', 'code', 'div', 'em', 'figure', 'figcaption', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'hr', 'i', 'li', 'ol', 'p', 'pre', 'span', 'strong', 'sub', 'sup', 'table', 'tbody', 'td', 'th', 'thead', 'tr', 'u', 'ul'];
|
const ALLOWED_RICH_TEXT_TAGS = ['a', 'b', 'blockquote', 'br', 'code', 'col', 'colgroup', 'div', 'em', 'figure', 'figcaption', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'hr', 'i', 'img', 'li', 'ol', 'p', 'pre', 'span', 'strong', 'sub', 'sup', 'table', 'tbody', 'td', 'th', 'thead', 'tr', 'u', 'ul'];
|
||||||
|
|
||||||
function sanitizeRichTextAttributes(tagName, attrText) {
|
function sanitizeRichTextAttributes(tagName, attrText) {
|
||||||
const allowedAttributes = {
|
const allowedAttributes = {
|
||||||
@@ -349,14 +357,19 @@ function sanitizeRichTextAttributes(tagName, attrText) {
|
|||||||
h4: ['class', 'style'],
|
h4: ['class', 'style'],
|
||||||
h5: ['class', 'style'],
|
h5: ['class', 'style'],
|
||||||
h6: ['class', 'style'],
|
h6: ['class', 'style'],
|
||||||
|
img: ['src', 'alt', 'title', 'width', 'height', 'class', 'style', 'loading', 'decoding'],
|
||||||
|
col: ['class', 'style', 'span', 'width'],
|
||||||
|
colgroup: ['class', 'style', 'span'],
|
||||||
li: ['class', 'style'],
|
li: ['class', 'style'],
|
||||||
ol: ['class', 'style', 'start'],
|
ol: ['class', 'style', 'start'],
|
||||||
p: ['class', 'style'],
|
p: ['class', 'style'],
|
||||||
pre: ['class', 'style'],
|
pre: ['class', 'style'],
|
||||||
span: ['class', 'style'],
|
span: ['class', 'style'],
|
||||||
table: ['class', 'style'],
|
table: ['class', 'style'],
|
||||||
|
tbody: ['class', 'style'],
|
||||||
td: ['class', 'style', 'colspan', 'rowspan'],
|
td: ['class', 'style', 'colspan', 'rowspan'],
|
||||||
th: ['class', 'style', 'colspan', 'rowspan', 'scope'],
|
th: ['class', 'style', 'colspan', 'rowspan', 'scope'],
|
||||||
|
thead: ['class', 'style'],
|
||||||
tr: ['class', 'style'],
|
tr: ['class', 'style'],
|
||||||
ul: ['class', 'style']
|
ul: ['class', 'style']
|
||||||
};
|
};
|
||||||
@@ -365,6 +378,14 @@ function sanitizeRichTextAttributes(tagName, attrText) {
|
|||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (tagName === 'img') {
|
||||||
|
const srcMatch = String(attrText || '').match(/\bsrc\s*=\s*("([^"]*)"|'([^']*)'|([^\s"'>/=`]+))/i);
|
||||||
|
const srcValue = srcMatch ? String(srcMatch[2] !== undefined ? srcMatch[2] : srcMatch[3] !== undefined ? srcMatch[3] : srcMatch[4] !== undefined ? srcMatch[4] : '').trim() : '';
|
||||||
|
if (!srcValue || !/^(?:https?:\/\/|\/media\/|\/assets\/|\/[^/]|data:image\/)/i.test(srcValue)) {
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const attrs = [];
|
const attrs = [];
|
||||||
String(attrText || '').replace(/([a-zA-Z0-9:-]+)(?:\s*=\s*("([^"]*)"|'([^']*)'|([^\s"'>/=`]+)))?/g, (_full, key, _valuePart, doubleQuoted, singleQuoted, bareValue) => {
|
String(attrText || '').replace(/([a-zA-Z0-9:-]+)(?:\s*=\s*("([^"]*)"|'([^']*)'|([^\s"'>/=`]+)))?/g, (_full, key, _valuePart, doubleQuoted, singleQuoted, bareValue) => {
|
||||||
const lowerKey = String(key || '').toLowerCase();
|
const lowerKey = String(key || '').toLowerCase();
|
||||||
@@ -388,7 +409,7 @@ function sanitizeRichTextAttributes(tagName, attrText) {
|
|||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
attrs.push(' ' + lowerKey + '="' + escapeHtml(value) + '"');
|
attrs.push(' ' + lowerKey + '="' + escapeHtml(lowerKey === 'style' ? normalizeStyleAttributeValue(value) : value) + '"');
|
||||||
return '';
|
return '';
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -2,16 +2,49 @@
|
|||||||
|
|
||||||
var registry = window.pulsePlayerRegionTypes;
|
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;}</style></head><body>' + raw + '</body></html>';
|
||||||
|
}
|
||||||
|
|
||||||
function renderHtmlRegionContent(value) {
|
function renderHtmlRegionContent(value) {
|
||||||
var html = String(value || '').trim();
|
var html = normalizeRenderableValue(value).trim();
|
||||||
if (!html) {
|
if (!html) {
|
||||||
return '';
|
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>';
|
return '<iframe class="template-region-html-frame" sandbox="" scrolling="no" srcdoc="' + escapeHtml(buildHtmlDocument(html)) + '" title="HTML region" loading="eager" style="width:100%;height:100%;border:0;display:block;background:transparent;overflow:hidden;"></iframe>';
|
||||||
}
|
}
|
||||||
|
|
||||||
function renderHtmlRegion(region, regionContent) {
|
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', {
|
registry.register('html', {
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
// Time/date region rendering and live updates.
|
// Time/date region rendering and live updates.
|
||||||
|
|
||||||
var registry = window.pulsePlayerRegionTypes;
|
var registry = window.pulsePlayerRegionTypes;
|
||||||
|
var placeholderUtils = window.placeholderUtils || {};
|
||||||
var DEFAULT_FORMAT = '{{hh}}:{{mm}}';
|
var DEFAULT_FORMAT = '{{hh}}:{{mm}}';
|
||||||
var DEFAULT_STYLE = {
|
var DEFAULT_STYLE = {
|
||||||
font_family: 'Arial',
|
font_family: 'Arial',
|
||||||
@@ -9,15 +10,6 @@ var DEFAULT_STYLE = {
|
|||||||
};
|
};
|
||||||
var timeDateFormatterCache = Object.create(null);
|
var timeDateFormatterCache = Object.create(null);
|
||||||
|
|
||||||
function escapeHtml(value) {
|
|
||||||
return String(value === undefined || value === null ? '' : value)
|
|
||||||
.replace(/&/g, '&')
|
|
||||||
.replace(/</g, '<')
|
|
||||||
.replace(/>/g, '>')
|
|
||||||
.replace(/"/g, '"')
|
|
||||||
.replace(/'/g, ''');
|
|
||||||
}
|
|
||||||
|
|
||||||
function sanitizeTagAttributes(tagName, attrText) {
|
function sanitizeTagAttributes(tagName, attrText) {
|
||||||
var allowedAttributes = {
|
var allowedAttributes = {
|
||||||
a: ['href', 'title', 'target', 'rel', 'class', 'style'],
|
a: ['href', 'title', 'target', 'rel', 'class', 'style'],
|
||||||
@@ -133,7 +125,7 @@ function resolveTimeZone(value) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function getFormatter(key, options) {
|
function getTimeDateFormatter(key, options) {
|
||||||
if (!timeDateFormatterCache[key]) {
|
if (!timeDateFormatterCache[key]) {
|
||||||
timeDateFormatterCache[key] = new Intl.DateTimeFormat('en-GB', options);
|
timeDateFormatterCache[key] = new Intl.DateTimeFormat('en-GB', options);
|
||||||
}
|
}
|
||||||
@@ -141,10 +133,10 @@ function getFormatter(key, options) {
|
|||||||
return timeDateFormatterCache[key];
|
return timeDateFormatterCache[key];
|
||||||
}
|
}
|
||||||
|
|
||||||
function getFormattedParts(timeZone, date) {
|
function getTimeDateFormattedParts(timeZone, date) {
|
||||||
var targetDate = date instanceof Date ? date : new Date();
|
var targetDate = date instanceof Date ? date : new Date();
|
||||||
var resolvedTimeZone = resolveTimeZone(timeZone);
|
var resolvedTimeZone = resolveTimeZone(timeZone);
|
||||||
var numericParts = getFormatter('numeric:' + resolvedTimeZone, {
|
var numericParts = getTimeDateFormatter('numeric:' + resolvedTimeZone, {
|
||||||
timeZone: resolvedTimeZone,
|
timeZone: resolvedTimeZone,
|
||||||
hour12: false,
|
hour12: false,
|
||||||
hour: '2-digit',
|
hour: '2-digit',
|
||||||
@@ -154,29 +146,29 @@ function getFormattedParts(timeZone, date) {
|
|||||||
month: '2-digit',
|
month: '2-digit',
|
||||||
year: 'numeric'
|
year: 'numeric'
|
||||||
}).formatToParts(targetDate);
|
}).formatToParts(targetDate);
|
||||||
var weekdayLong = getFormatter('weekday-long:' + resolvedTimeZone, {
|
var weekdayLong = getTimeDateFormatter('weekday-long:' + resolvedTimeZone, {
|
||||||
timeZone: resolvedTimeZone,
|
timeZone: resolvedTimeZone,
|
||||||
weekday: 'long'
|
weekday: 'long'
|
||||||
}).formatToParts(targetDate);
|
}).formatToParts(targetDate);
|
||||||
var weekdayShort = getFormatter('weekday-short:' + resolvedTimeZone, {
|
var weekdayShort = getTimeDateFormatter('weekday-short:' + resolvedTimeZone, {
|
||||||
timeZone: resolvedTimeZone,
|
timeZone: resolvedTimeZone,
|
||||||
weekday: 'short'
|
weekday: 'short'
|
||||||
}).formatToParts(targetDate);
|
}).formatToParts(targetDate);
|
||||||
var monthLong = getFormatter('month-long:' + resolvedTimeZone, {
|
var monthLong = getTimeDateFormatter('month-long:' + resolvedTimeZone, {
|
||||||
timeZone: resolvedTimeZone,
|
timeZone: resolvedTimeZone,
|
||||||
month: 'long'
|
month: 'long'
|
||||||
}).formatToParts(targetDate);
|
}).formatToParts(targetDate);
|
||||||
var monthShort = getFormatter('month-short:' + resolvedTimeZone, {
|
var monthShort = getTimeDateFormatter('month-short:' + resolvedTimeZone, {
|
||||||
timeZone: resolvedTimeZone,
|
timeZone: resolvedTimeZone,
|
||||||
month: 'short'
|
month: 'short'
|
||||||
}).formatToParts(targetDate);
|
}).formatToParts(targetDate);
|
||||||
var ampm = getFormatter('ampm:' + resolvedTimeZone, {
|
var ampm = getTimeDateFormatter('ampm:' + resolvedTimeZone, {
|
||||||
timeZone: resolvedTimeZone,
|
timeZone: resolvedTimeZone,
|
||||||
hour12: true,
|
hour12: true,
|
||||||
hour: '2-digit',
|
hour: '2-digit',
|
||||||
minute: '2-digit'
|
minute: '2-digit'
|
||||||
}).formatToParts(targetDate);
|
}).formatToParts(targetDate);
|
||||||
var timezoneShort = getFormatter('tz-short:' + resolvedTimeZone, {
|
var timezoneShort = getTimeDateFormatter('tz-short:' + resolvedTimeZone, {
|
||||||
timeZone: resolvedTimeZone,
|
timeZone: resolvedTimeZone,
|
||||||
timeZoneName: 'short'
|
timeZoneName: 'short'
|
||||||
}).formatToParts(targetDate);
|
}).formatToParts(targetDate);
|
||||||
@@ -220,20 +212,21 @@ function getFormattedParts(timeZone, date) {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
function resolveTimeDatePlaceholder(values, expression) {
|
function resolveTimeDateTemplatePlaceholder(values, expression) {
|
||||||
if (typeof placeholderUtils.resolvePlaceholderExpression === 'function' && typeof placeholderUtils.formatPlaceholderValue === 'function') {
|
var currentPlaceholderUtils = window.placeholderUtils || placeholderUtils || {};
|
||||||
return placeholderUtils.formatPlaceholderValue(placeholderUtils.resolvePlaceholderExpression(values, expression));
|
if (typeof currentPlaceholderUtils.resolvePlaceholderExpression === 'function' && typeof currentPlaceholderUtils.formatPlaceholderValue === 'function') {
|
||||||
|
return currentPlaceholderUtils.formatPlaceholderValue(currentPlaceholderUtils.resolvePlaceholderExpression(values, expression));
|
||||||
}
|
}
|
||||||
|
|
||||||
var parsed = String(expression || '').trim();
|
var parsed = String(expression || '').trim();
|
||||||
return Object.prototype.hasOwnProperty.call(values, parsed) ? values[parsed] : '';
|
return Object.prototype.hasOwnProperty.call(values, parsed) ? values[parsed] : '';
|
||||||
}
|
}
|
||||||
|
|
||||||
function renderTemplate(format, timeZone, date) {
|
function renderTimeDateTemplate(format, timeZone, date) {
|
||||||
var template = String(format || '').trim() || DEFAULT_FORMAT;
|
var template = String(format || '').trim() || DEFAULT_FORMAT;
|
||||||
var values = getFormattedParts(timeZone, date);
|
var values = getTimeDateFormattedParts(timeZone, date);
|
||||||
return template.replace(/\{\{\s*([a-zA-Z0-9_.()\-]+)\s*\}\}/g, function (_match, key) {
|
return template.replace(/\{\{\s*([a-zA-Z0-9_.()\-]+)\s*\}\}/g, function (_match, key) {
|
||||||
return String(resolveTimeDatePlaceholder(values, key, { timeZone: timeZone }) || '');
|
return String(resolveTimeDateTemplatePlaceholder(values, key, { timeZone: timeZone }) || '');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -257,7 +250,7 @@ function renderTimeDateRegion(region, regionContent) {
|
|||||||
var fontSize = style.font_size ? 'font-size:' + Math.max(1, Math.round(Number(style.font_size))) + 'px;' : '';
|
var fontSize = style.font_size ? 'font-size:' + Math.max(1, Math.round(Number(style.font_size))) + 'px;' : '';
|
||||||
var fontColor = style.font_color ? 'color:' + escapeHtml(style.font_color) + ';' : '';
|
var fontColor = style.font_color ? 'color:' + escapeHtml(style.font_color) + ';' : '';
|
||||||
var contentStyle = 'width:' + region.pixelWidth + 'px;height:' + region.pixelHeight + 'px;transform:scale(' + region.canvasScale + ');transform-origin:top left;' + (fontFamily ? fontFamily : '') + fontSize + fontColor + 'white-space:pre-wrap;line-height:1.1;';
|
var contentStyle = 'width:' + region.pixelWidth + 'px;height:' + region.pixelHeight + 'px;transform:scale(' + region.canvasScale + ');transform-origin:top left;' + (fontFamily ? fontFamily : '') + fontSize + fontColor + 'white-space:pre-wrap;line-height:1.1;';
|
||||||
var renderedText = renderTemplate(format, timeZone, new Date());
|
var renderedText = renderTimeDateTemplate(format, timeZone, new Date());
|
||||||
return '<div class="template-region time-date" data-time-date-format="' + escapeHtml(format) + '" data-time-date-timezone="' + escapeHtml(timeZone) + '" style="' + region.baseStyle + '"><div class="template-region-text-scale" style="' + contentStyle + '">' + renderEditorJsContent(renderedText) + '</div></div>';
|
return '<div class="template-region time-date" data-time-date-format="' + escapeHtml(format) + '" data-time-date-timezone="' + escapeHtml(timeZone) + '" style="' + region.baseStyle + '"><div class="template-region-text-scale" style="' + contentStyle + '">' + renderEditorJsContent(renderedText) + '</div></div>';
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -273,7 +266,7 @@ function updateTimeDateRegion(element) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
scaleWrapper.innerHTML = renderEditorJsContent(renderTemplate(format, timeZone, new Date()));
|
scaleWrapper.innerHTML = renderEditorJsContent(renderTimeDateTemplate(format, timeZone, new Date()));
|
||||||
}
|
}
|
||||||
|
|
||||||
function scheduleTimeDateRegionUpdate(element) {
|
function scheduleTimeDateRegionUpdate(element) {
|
||||||
|
|||||||
@@ -2,101 +2,6 @@
|
|||||||
|
|
||||||
var registry = window.pulsePlayerRegionTypes;
|
var registry = window.pulsePlayerRegionTypes;
|
||||||
|
|
||||||
function escapeHtml(value) {
|
|
||||||
return String(value === undefined || value === null ? '' : value)
|
|
||||||
.replace(/&/g, '&')
|
|
||||||
.replace(/</g, '<')
|
|
||||||
.replace(/>/g, '>')
|
|
||||||
.replace(/"/g, '"')
|
|
||||||
.replace(/'/g, ''');
|
|
||||||
}
|
|
||||||
|
|
||||||
function sanitizeRichTextAttributes(tagName, attrText) {
|
|
||||||
var allowedAttributes = {
|
|
||||||
a: ['href', 'title', 'target', 'rel', 'class', 'style'],
|
|
||||||
blockquote: ['class', 'style'],
|
|
||||||
col: ['class', 'style', 'span', 'width'],
|
|
||||||
colgroup: ['class', 'style', 'span'],
|
|
||||||
div: ['class', 'style'],
|
|
||||||
figure: ['class', 'style'],
|
|
||||||
figcaption: ['class', 'style'],
|
|
||||||
h1: ['class', 'style'],
|
|
||||||
h2: ['class', 'style'],
|
|
||||||
h3: ['class', 'style'],
|
|
||||||
h4: ['class', 'style'],
|
|
||||||
h5: ['class', 'style'],
|
|
||||||
h6: ['class', 'style'],
|
|
||||||
li: ['class', 'style'],
|
|
||||||
ol: ['class', 'style', 'start'],
|
|
||||||
p: ['class', 'style'],
|
|
||||||
pre: ['class', 'style'],
|
|
||||||
span: ['class', 'style'],
|
|
||||||
table: ['class', 'style'],
|
|
||||||
tbody: ['class', 'style'],
|
|
||||||
td: ['class', 'style', 'colspan', 'rowspan'],
|
|
||||||
th: ['class', 'style', 'colspan', 'rowspan', 'scope'],
|
|
||||||
thead: ['class', 'style'],
|
|
||||||
tr: ['class', 'style'],
|
|
||||||
ul: ['class', 'style']
|
|
||||||
};
|
|
||||||
var allowed = allowedAttributes[tagName] || [];
|
|
||||||
if (!allowed.length) {
|
|
||||||
return '';
|
|
||||||
}
|
|
||||||
|
|
||||||
var attrs = [];
|
|
||||||
String(attrText || '').replace(/([a-zA-Z0-9:-]+)(?:\s*=\s*("([^"]*)"|'([^']*)'|([^\s"'>/=`]+)))?/g, function (_full, key, _valuePart, doubleQuoted, singleQuoted, bareValue) {
|
|
||||||
var lowerKey = String(key || '').toLowerCase();
|
|
||||||
if (allowed.indexOf(lowerKey) === -1) {
|
|
||||||
return '';
|
|
||||||
}
|
|
||||||
|
|
||||||
var value = doubleQuoted !== undefined ? doubleQuoted : singleQuoted !== undefined ? singleQuoted : bareValue !== undefined ? bareValue : '';
|
|
||||||
if (lowerKey === 'href' && /^(?:\s*javascript:|\s*data:)/i.test(String(value || ''))) {
|
|
||||||
return '';
|
|
||||||
}
|
|
||||||
if (lowerKey === 'style' && /(?:expression\s*\(|javascript:|url\s*\()/i.test(String(value || ''))) {
|
|
||||||
return '';
|
|
||||||
}
|
|
||||||
if (lowerKey === 'target') {
|
|
||||||
var targetValue = String(value || '').trim();
|
|
||||||
if (targetValue === '_blank') {
|
|
||||||
attrs.push(' target="_blank"');
|
|
||||||
if (attrs.indexOf(' rel="noreferrer noopener"') === -1) {
|
|
||||||
attrs.push(' rel="noreferrer noopener"');
|
|
||||||
}
|
|
||||||
return '';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
attrs.push(' ' + lowerKey + '="' + escapeHtml(value) + '"');
|
|
||||||
return '';
|
|
||||||
});
|
|
||||||
|
|
||||||
return attrs.join('');
|
|
||||||
}
|
|
||||||
|
|
||||||
function sanitizeRichText(html) {
|
|
||||||
var output = String(html || '');
|
|
||||||
output = output.replace(/<script[\s\S]*?<\/script>/gi, '');
|
|
||||||
output = output.replace(/<style[\s\S]*?<\/style>/gi, '');
|
|
||||||
return output.replace(/<[^>]+>/g, function (tag) {
|
|
||||||
var match = tag.match(/^<\s*(\/?)\s*([a-z0-9]+)([\s\S]*?)(\/?)>$/i);
|
|
||||||
if (!match) {
|
|
||||||
return '';
|
|
||||||
}
|
|
||||||
var closing = Boolean(match[1]);
|
|
||||||
var name = String(match[2] || '').toLowerCase();
|
|
||||||
var allowed = ['a', 'b', 'blockquote', 'br', 'code', 'col', 'colgroup', 'div', 'em', 'figure', 'figcaption', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'hr', 'i', 'li', 'ol', 'p', 'pre', 'span', 'strong', 'sub', 'sup', 'table', 'tbody', 'td', 'th', 'thead', 'tr', 'u', 'ul'];
|
|
||||||
if (allowed.indexOf(name) === -1) {
|
|
||||||
return '';
|
|
||||||
}
|
|
||||||
if (closing) {
|
|
||||||
return '</' + name + '>';
|
|
||||||
}
|
|
||||||
return '<' + name + sanitizeRichTextAttributes(name, String(match[3] || '')) + '>';
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function substituteTimetableVariables(html, entry) {
|
function substituteTimetableVariables(html, entry) {
|
||||||
var source = String(html || '');
|
var source = String(html || '');
|
||||||
return source.replace(/\{\{\s*([^{}]+?)\s*\}\}/g, function (_match, expression) {
|
return source.replace(/\{\{\s*([^{}]+?)\s*\}\}/g, function (_match, expression) {
|
||||||
@@ -2,12 +2,38 @@
|
|||||||
|
|
||||||
var registry = window.pulsePlayerRegionTypes;
|
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) {
|
function renderWebpageRegion(region, regionContent) {
|
||||||
var url = String(regionContent.value || '').trim();
|
var url = normalizeRenderableValue(regionContent && regionContent.value !== undefined ? regionContent.value : '').trim();
|
||||||
if (!url) {
|
if (!url) {
|
||||||
return '';
|
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', {
|
registry.register('webpage', {
|
||||||
|
|||||||
@@ -25,6 +25,14 @@ function escapeHtml(value) {
|
|||||||
.replace(/'/g, ''');
|
.replace(/'/g, ''');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function normalizeStyleAttributeValue(value) {
|
||||||
|
return String(value || '')
|
||||||
|
.replace(/"/g, '"')
|
||||||
|
.replace(/'/g, "'")
|
||||||
|
.replace(/&quot;/g, '"')
|
||||||
|
.replace(/&#39;/g, "'");
|
||||||
|
}
|
||||||
|
|
||||||
function sanitizeFontFamily(value) {
|
function sanitizeFontFamily(value) {
|
||||||
return String(value || '').replace(/[^a-zA-Z0-9 ,"-]/g, '').trim();
|
return String(value || '').replace(/[^a-zA-Z0-9 ,"-]/g, '').trim();
|
||||||
}
|
}
|
||||||
@@ -41,7 +49,7 @@ function sanitizeTextColor(value, fallback) {
|
|||||||
return fallback || '#000000';
|
return fallback || '#000000';
|
||||||
}
|
}
|
||||||
|
|
||||||
const ALLOWED_RICH_TEXT_TAGS = ['a', 'b', 'blockquote', 'br', 'code', 'div', 'em', 'figure', 'figcaption', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'hr', 'i', 'li', 'ol', 'p', 'pre', 'span', 'strong', 'sub', 'sup', 'table', 'tbody', 'td', 'th', 'thead', 'tr', 'u', 'ul'];
|
const ALLOWED_RICH_TEXT_TAGS = ['a', 'b', 'blockquote', 'br', 'code', 'col', 'colgroup', 'div', 'em', 'figure', 'figcaption', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'hr', 'i', 'img', 'li', 'ol', 'p', 'pre', 'span', 'strong', 'sub', 'sup', 'table', 'tbody', 'td', 'th', 'thead', 'tr', 'u', 'ul'];
|
||||||
|
|
||||||
function sanitizeRichTextAttributes(tagName, attrText) {
|
function sanitizeRichTextAttributes(tagName, attrText) {
|
||||||
const allowedAttributes = {
|
const allowedAttributes = {
|
||||||
@@ -56,6 +64,9 @@ function sanitizeRichTextAttributes(tagName, attrText) {
|
|||||||
h4: ['class', 'style'],
|
h4: ['class', 'style'],
|
||||||
h5: ['class', 'style'],
|
h5: ['class', 'style'],
|
||||||
h6: ['class', 'style'],
|
h6: ['class', 'style'],
|
||||||
|
img: ['src', 'alt', 'title', 'width', 'height', 'class', 'style', 'loading', 'decoding'],
|
||||||
|
col: ['class', 'style', 'span', 'width'],
|
||||||
|
colgroup: ['class', 'style', 'span'],
|
||||||
li: ['class', 'style'],
|
li: ['class', 'style'],
|
||||||
ol: ['class', 'style', 'start'],
|
ol: ['class', 'style', 'start'],
|
||||||
p: ['class', 'style'],
|
p: ['class', 'style'],
|
||||||
@@ -72,6 +83,14 @@ function sanitizeRichTextAttributes(tagName, attrText) {
|
|||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (tagName === 'img') {
|
||||||
|
const srcMatch = String(attrText || '').match(/\bsrc\s*=\s*("([^"]*)"|'([^']*)'|([^\s"'>/=`]+))/i);
|
||||||
|
const srcValue = srcMatch ? String(srcMatch[2] !== undefined ? srcMatch[2] : srcMatch[3] !== undefined ? srcMatch[3] : srcMatch[4] !== undefined ? srcMatch[4] : '').trim() : '';
|
||||||
|
if (!srcValue || !/^(?:https?:\/\/|\/media\/|\/assets\/|\/[^/]|data:image\/)/i.test(srcValue)) {
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const attrs = [];
|
const attrs = [];
|
||||||
String(attrText || '').replace(/([a-zA-Z0-9:-]+)(?:\s*=\s*("([^"]*)"|'([^']*)'|([^\s"'>/=`]+)))?/g, (_full, key, _valuePart, doubleQuoted, singleQuoted, bareValue) => {
|
String(attrText || '').replace(/([a-zA-Z0-9:-]+)(?:\s*=\s*("([^"]*)"|'([^']*)'|([^\s"'>/=`]+)))?/g, (_full, key, _valuePart, doubleQuoted, singleQuoted, bareValue) => {
|
||||||
const lowerKey = String(key || '').toLowerCase();
|
const lowerKey = String(key || '').toLowerCase();
|
||||||
@@ -95,7 +114,7 @@ function sanitizeRichTextAttributes(tagName, attrText) {
|
|||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
attrs.push(' ' + lowerKey + '="' + escapeHtml(value) + '"');
|
attrs.push(' ' + lowerKey + '="' + escapeHtml(lowerKey === 'style' ? normalizeStyleAttributeValue(value) : value) + '"');
|
||||||
return '';
|
return '';
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -268,12 +287,45 @@ function renderEditorJsContent(value) {
|
|||||||
return wrapRichTextParagraph(sanitizeRichText(raw));
|
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) {
|
function renderHtmlRegionContent(value) {
|
||||||
const html = String(value || '').trim();
|
const html = normalizeRenderableValue(value).trim();
|
||||||
if (!html) {
|
if (!html) {
|
||||||
return '<div class="template-region-placeholder">HTML</div>';
|
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) {
|
function fitCanvasSize(canvasWidth, canvasHeight, maxWidth, maxHeight) {
|
||||||
|
|||||||
+18
@@ -140,6 +140,24 @@ const PERMISSION_SECTIONS = [
|
|||||||
sectionName: 'Settings',
|
sectionName: 'Settings',
|
||||||
order: 40,
|
order: 40,
|
||||||
permissions: [
|
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',
|
key: 'users',
|
||||||
order: 10,
|
order: 10,
|
||||||
|
|||||||
+22
-4
@@ -9,6 +9,7 @@ const common = require('./common');
|
|||||||
const { verifyPassword, createSessionToken, hashSessionToken, hashPassword, validatePasswordStrength } = require('#src/auth');
|
const { verifyPassword, createSessionToken, hashSessionToken, hashPassword, validatePasswordStrength } = require('#src/auth');
|
||||||
const pages = require('#src/web/pages');
|
const pages = require('#src/web/pages');
|
||||||
const registerMiddleware = require('#src/web/middleware');
|
const registerMiddleware = require('#src/web/middleware');
|
||||||
|
const registerNotFoundHandler = require('#src/web/middleware/not-found');
|
||||||
const { createBackgroundTaskQueue } = require('#src/web/lib/background-tasks/queue');
|
const { createBackgroundTaskQueue } = require('#src/web/lib/background-tasks/queue');
|
||||||
const { initializeBackgroundTasks } = require('#src/web/lib/background-tasks');
|
const { initializeBackgroundTasks } = require('#src/web/lib/background-tasks');
|
||||||
const { createDataSourceTaskService } = require('#src/web/lib/background-tasks/tasks-scheduled/data-source-refresh');
|
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 { createPlayerActionService } = require('#src/web/lib/player-actions');
|
||||||
const { isClientNameAvailable, withClientNameReservation } = require('#src/data/client-name-check');
|
const { isClientNameAvailable, withClientNameReservation } = require('#src/data/client-name-check');
|
||||||
const { createSessionService } = require('#src/web/lib/auth');
|
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 { hasAnyPermission } = require('#src/rbac');
|
||||||
const { ensureFontLibrary } = require('#src/web/lib/media/font-library');
|
const { ensureFontLibrary } = require('#src/web/lib/media/font-library');
|
||||||
const {
|
const {
|
||||||
@@ -34,7 +37,6 @@ const {
|
|||||||
getAuditUserId,
|
getAuditUserId,
|
||||||
getCanvasSignature,
|
getCanvasSignature,
|
||||||
fetchPlaylistCanvasId,
|
fetchPlaylistCanvasId,
|
||||||
fetchPlaylistCanvasSignature,
|
|
||||||
fetchScreensByPlaylistId,
|
fetchScreensByPlaylistId,
|
||||||
fetchScreensBySlideId,
|
fetchScreensBySlideId,
|
||||||
fetchScreensByTemplateId,
|
fetchScreensByTemplateId,
|
||||||
@@ -92,6 +94,14 @@ async function start() {
|
|||||||
const sessionService = createSessionService({
|
const sessionService = createSessionService({
|
||||||
sessionCookieName: webConfig.sessionCookieName,
|
sessionCookieName: webConfig.sessionCookieName,
|
||||||
sessionMaxAgeMs: webConfig.sessionMaxAgeMs,
|
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,
|
hashSessionToken: hashSessionToken,
|
||||||
createSessionToken: createSessionToken
|
createSessionToken: createSessionToken
|
||||||
});
|
});
|
||||||
@@ -99,6 +109,7 @@ async function start() {
|
|||||||
const createUserSession = sessionService.createUserSession;
|
const createUserSession = sessionService.createUserSession;
|
||||||
const clearSessionCookie = sessionService.clearSessionCookie;
|
const clearSessionCookie = sessionService.clearSessionCookie;
|
||||||
const setSessionCookie = sessionService.setSessionCookie;
|
const setSessionCookie = sessionService.setSessionCookie;
|
||||||
|
const getSessionMaxAgeMs = sessionService.getSessionMaxAgeMs;
|
||||||
const setAuthMessageCookie = sessionService.setAuthMessageCookie;
|
const setAuthMessageCookie = sessionService.setAuthMessageCookie;
|
||||||
const consumeAuthMessageCookie = sessionService.consumeAuthMessageCookie;
|
const consumeAuthMessageCookie = sessionService.consumeAuthMessageCookie;
|
||||||
const loadCurrentUser = sessionService.loadCurrentUser;
|
const loadCurrentUser = sessionService.loadCurrentUser;
|
||||||
@@ -119,9 +130,11 @@ async function start() {
|
|||||||
common: common,
|
common: common,
|
||||||
pages: pages,
|
pages: pages,
|
||||||
upload: upload,
|
upload: upload,
|
||||||
|
mediaDir: webConfig.mediaDir,
|
||||||
uploadDir: webConfig.uploadsDir,
|
uploadDir: webConfig.uploadsDir,
|
||||||
createUserSession: createUserSession,
|
createUserSession: createUserSession,
|
||||||
setSessionCookie: setSessionCookie,
|
setSessionCookie: setSessionCookie,
|
||||||
|
getSessionMaxAgeMs: getSessionMaxAgeMs,
|
||||||
clearSessionCookie: clearSessionCookie,
|
clearSessionCookie: clearSessionCookie,
|
||||||
setAuthMessageCookie: setAuthMessageCookie,
|
setAuthMessageCookie: setAuthMessageCookie,
|
||||||
consumeAuthMessageCookie: consumeAuthMessageCookie,
|
consumeAuthMessageCookie: consumeAuthMessageCookie,
|
||||||
@@ -131,6 +144,7 @@ async function start() {
|
|||||||
sessionCookieName: webConfig.sessionCookieName,
|
sessionCookieName: webConfig.sessionCookieName,
|
||||||
formatDashboardDate: formatDashboardDate,
|
formatDashboardDate: formatDashboardDate,
|
||||||
getAuditUserId: getAuditUserId,
|
getAuditUserId: getAuditUserId,
|
||||||
|
recordRequestAuditEvent: recordRequestAuditEvent,
|
||||||
hashPassword: hashPassword,
|
hashPassword: hashPassword,
|
||||||
validatePasswordStrength: validatePasswordStrength,
|
validatePasswordStrength: validatePasswordStrength,
|
||||||
readArrayField: readArrayField,
|
readArrayField: readArrayField,
|
||||||
@@ -140,7 +154,6 @@ async function start() {
|
|||||||
fetchScreensBySlideId: fetchScreensBySlideId,
|
fetchScreensBySlideId: fetchScreensBySlideId,
|
||||||
fetchScreensByTemplateId: fetchScreensByTemplateId,
|
fetchScreensByTemplateId: fetchScreensByTemplateId,
|
||||||
fetchPlaylistCanvasId: fetchPlaylistCanvasId,
|
fetchPlaylistCanvasId: fetchPlaylistCanvasId,
|
||||||
fetchPlaylistCanvasSignature: fetchPlaylistCanvasSignature,
|
|
||||||
getCanvasSignature: getCanvasSignature,
|
getCanvasSignature: getCanvasSignature,
|
||||||
normalizeScheduleMode: normalizeScheduleMode,
|
normalizeScheduleMode: normalizeScheduleMode,
|
||||||
parseDateTimeLocal: parseDateTimeLocal,
|
parseDateTimeLocal: parseDateTimeLocal,
|
||||||
@@ -157,7 +170,6 @@ async function start() {
|
|||||||
},
|
},
|
||||||
hasAnyPermission: hasAnyPermission,
|
hasAnyPermission: hasAnyPermission,
|
||||||
backgroundTaskQueue: backgroundTaskQueue,
|
backgroundTaskQueue: backgroundTaskQueue,
|
||||||
mediaDir: webConfig.mediaDir,
|
|
||||||
uploadSyncService: webBootstrap.uploadSyncService,
|
uploadSyncService: webBootstrap.uploadSyncService,
|
||||||
collectUploadReferencesFromSlide: collectUploadReferencesFromSlide,
|
collectUploadReferencesFromSlide: collectUploadReferencesFromSlide,
|
||||||
collectUploadReferencesFromTemplate: collectUploadReferencesFromTemplate,
|
collectUploadReferencesFromTemplate: collectUploadReferencesFromTemplate,
|
||||||
@@ -167,9 +179,15 @@ async function start() {
|
|||||||
buildDashboardState: webBootstrap.buildDashboardState
|
buildDashboardState: webBootstrap.buildDashboardState
|
||||||
});
|
});
|
||||||
|
|
||||||
|
registerNotFoundHandler(app);
|
||||||
|
|
||||||
app.use(function (error, req, res, _next) {
|
app.use(function (error, req, res, _next) {
|
||||||
console.error(error);
|
|
||||||
const statusCode = Number(error && (error.statusCode || error.status)) || 500;
|
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 isXhr = String(req.get && req.get('X-Requested-With') || '').toLowerCase() === 'xmlhttprequest';
|
||||||
const wantsHtml = !isXhr && !String(req.originalUrl || '').startsWith('/api/') && (!req.accepts || req.accepts('html'));
|
const wantsHtml = !isXhr && !String(req.originalUrl || '').startsWith('/api/') && (!req.accepts || req.accepts('html'));
|
||||||
|
|
||||||
|
|||||||
@@ -113,7 +113,7 @@ async function fetchRolesForUser(pool, userId) {
|
|||||||
|
|
||||||
async function fetchUsersWithRoles(pool) {
|
async function fetchUsersWithRoles(pool) {
|
||||||
const [rows] = await pool.query(
|
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_names, '') AS role_names,
|
||||||
COALESCE(role_data.role_ids_csv, '') AS role_ids_csv
|
COALESCE(role_data.role_ids_csv, '') AS role_ids_csv
|
||||||
FROM a_users u
|
FROM a_users u
|
||||||
@@ -142,7 +142,7 @@ async function fetchUsersWithRolesPage(pool, page, pageSize, searchTerm, sortKey
|
|||||||
const whereSql = hasExcludedUserId ? 'WHERE u.id <> ?' : '';
|
const whereSql = hasExcludedUserId ? 'WHERE u.id <> ?' : '';
|
||||||
const queryArgs = hasExcludedUserId ? [excludedUserId] : [];
|
const queryArgs = hasExcludedUserId ? [excludedUserId] : [];
|
||||||
const paged = await fetchPagedRows(pool, {
|
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_names, '') AS role_names,
|
||||||
COALESCE(role_data.role_ids_csv, '') AS role_ids_csv
|
COALESCE(role_data.role_ids_csv, '') AS role_ids_csv
|
||||||
FROM a_users u
|
FROM a_users u
|
||||||
@@ -189,7 +189,7 @@ async function fetchUsersWithRolesPage(pool, page, pageSize, searchTerm, sortKey
|
|||||||
|
|
||||||
async function fetchUserWithRoles(pool, userId) {
|
async function fetchUserWithRoles(pool, userId) {
|
||||||
const [rows] = await pool.query(
|
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_names, '') AS role_names,
|
||||||
COALESCE(role_data.role_ids_csv, '') AS role_ids_csv
|
COALESCE(role_data.role_ids_csv, '') AS role_ids_csv
|
||||||
FROM a_users u
|
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) {
|
async function syncUserRoles(pool, userId, roleIds) {
|
||||||
const uniqueRoleIds = Array.from(new Set((Array.isArray(roleIds) ? roleIds : []).map(function (roleId) {
|
const uniqueRoleIds = Array.from(new Set((Array.isArray(roleIds) ? roleIds : []).map(function (roleId) {
|
||||||
return Number(roleId);
|
return Number(roleId);
|
||||||
@@ -273,6 +284,7 @@ module.exports = {
|
|||||||
fetchUsersWithRoles,
|
fetchUsersWithRoles,
|
||||||
fetchUsersWithRolesPage,
|
fetchUsersWithRolesPage,
|
||||||
fetchUserWithRoles,
|
fetchUserWithRoles,
|
||||||
|
fetchActiveUserSessions,
|
||||||
syncUserRoles,
|
syncUserRoles,
|
||||||
syncRoleUsers,
|
syncRoleUsers,
|
||||||
syncRolePermissions
|
syncRolePermissions
|
||||||
|
|||||||
@@ -34,6 +34,8 @@ function normalizeReturnToPath(value, baseUrl) {
|
|||||||
function createSessionService(options) {
|
function createSessionService(options) {
|
||||||
const sessionCookieName = String(options && options.sessionCookieName || '').trim();
|
const sessionCookieName = String(options && options.sessionCookieName || '').trim();
|
||||||
const sessionMaxAgeMs = Number(options && options.sessionMaxAgeMs);
|
const sessionMaxAgeMs = Number(options && options.sessionMaxAgeMs);
|
||||||
|
const getConfiguredSessionMaxAgeMs = options && options.getConfiguredSessionMaxAgeMs;
|
||||||
|
const getConfiguredMaxActiveSessions = options && options.getConfiguredMaxActiveSessions;
|
||||||
const hashSessionToken = options && options.hashSessionToken;
|
const hashSessionToken = options && options.hashSessionToken;
|
||||||
const createSessionToken = options && options.createSessionToken;
|
const createSessionToken = options && options.createSessionToken;
|
||||||
const authMessageCookieName = 'pulse_auth_message';
|
const authMessageCookieName = 'pulse_auth_message';
|
||||||
@@ -88,7 +90,20 @@ function createSessionService(options) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function setSessionCookie(res, token) {
|
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) {
|
function setAuthMessageCookie(res, message) {
|
||||||
@@ -113,7 +128,7 @@ function createSessionService(options) {
|
|||||||
|
|
||||||
const tokenHash = hashSessionToken(token);
|
const tokenHash = hashSessionToken(token);
|
||||||
const [rows] = await pool.query(
|
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
|
FROM a_sessions s
|
||||||
JOIN a_users u ON u.id = s.user_id
|
JOIN a_users u ON u.id = s.user_id
|
||||||
WHERE s.session_hash = ?
|
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]);
|
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], {
|
return Object.assign({}, rows[0], {
|
||||||
|
mustChangePassword: Boolean(rows[0].must_change_password),
|
||||||
roleKeys: roleRows.map(function (row) {
|
roleKeys: roleRows.map(function (row) {
|
||||||
return String(row.role_key || '').trim();
|
return String(row.role_key || '').trim();
|
||||||
}).filter(Boolean),
|
}).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 token = createSessionToken();
|
||||||
const tokenHash = hashSessionToken(token);
|
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(
|
await pool.query(
|
||||||
'INSERT INTO a_sessions (session_hash, user_id, expires_at, created_by, modified_by) VALUES (?, ?, ?, ?, ?)',
|
'INSERT INTO a_sessions (session_hash, user_id, ip_address, user_agent, expires_at, created_by, modified_by) VALUES (?, ?, ?, ?, ?, ?, ?)',
|
||||||
[tokenHash, userId, expiresAt, userId, userId]
|
[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;
|
return token;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -184,6 +220,7 @@ function createSessionService(options) {
|
|||||||
consumeAuthMessageCookie: consumeAuthMessageCookie,
|
consumeAuthMessageCookie: consumeAuthMessageCookie,
|
||||||
loadCurrentUser: loadCurrentUser,
|
loadCurrentUser: loadCurrentUser,
|
||||||
createUserSession: createUserSession,
|
createUserSession: createUserSession,
|
||||||
|
getSessionMaxAgeMs: getSessionMaxAgeMs,
|
||||||
requireAuth: requireAuth,
|
requireAuth: requireAuth,
|
||||||
getRequestOrigin: getRequestOrigin
|
getRequestOrigin: getRequestOrigin
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -19,6 +19,9 @@ function normalizeIntervalMs(value, unit) {
|
|||||||
if (normalizedUnit === 'seconds') {
|
if (normalizedUnit === 'seconds') {
|
||||||
return numericValue * 1000;
|
return numericValue * 1000;
|
||||||
}
|
}
|
||||||
|
if (normalizedUnit === 'hours') {
|
||||||
|
return numericValue * 60 * 60 * 1000;
|
||||||
|
}
|
||||||
return numericValue * 60 * 1000;
|
return numericValue * 60 * 1000;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -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 };
|
||||||
@@ -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 };
|
||||||
@@ -9,8 +9,7 @@ function createWebConfig() {
|
|||||||
const bridgeInternalUrl = (process.env.BRIDGE_INTERNAL_URL || 'http://player-bridge:8090').replace(/\/$/, '');
|
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 webInternalUrl = (process.env.WEB_INTERNAL_URL || `http://127.0.0.1:${Number(process.env.WEB_PORT || 8080)}`).replace(/\/$/, '');
|
||||||
const sessionCookieName = 'digital_signage_session';
|
const sessionCookieName = 'digital_signage_session';
|
||||||
const sessionMaxAgeDays = Number(process.env.SESSION_MAX_AGE_DAYS || 14);
|
const sessionMaxAgeMs = 14 * 24 * 60 * 60 * 1000;
|
||||||
const sessionMaxAgeMs = (Number.isFinite(sessionMaxAgeDays) && sessionMaxAgeDays > 0 ? sessionMaxAgeDays : 14) * 24 * 60 * 60 * 1000;
|
|
||||||
const port = Number(process.env.WEB_PORT || 8080);
|
const port = Number(process.env.WEB_PORT || 8080);
|
||||||
const dataSourceStartupRefreshStaggerMs = Math.max(100, Number(process.env.DATA_SOURCE_STARTUP_REFRESH_STAGGER_MS || 250));
|
const dataSourceStartupRefreshStaggerMs = Math.max(100, Number(process.env.DATA_SOURCE_STARTUP_REFRESH_STAGGER_MS || 250));
|
||||||
|
|
||||||
|
|||||||
@@ -198,7 +198,6 @@ module.exports = {
|
|||||||
getAuditUserId: getAuditUserId,
|
getAuditUserId: getAuditUserId,
|
||||||
getCanvasSignature: getCanvasSignature,
|
getCanvasSignature: getCanvasSignature,
|
||||||
fetchPlaylistCanvasId: fetchPlaylistCanvasId,
|
fetchPlaylistCanvasId: fetchPlaylistCanvasId,
|
||||||
fetchPlaylistCanvasSignature: fetchPlaylistCanvasId,
|
|
||||||
fetchScreensByPlaylistId: fetchScreensByPlaylistId,
|
fetchScreensByPlaylistId: fetchScreensByPlaylistId,
|
||||||
fetchScreensBySlideId: fetchScreensBySlideId,
|
fetchScreensBySlideId: fetchScreensBySlideId,
|
||||||
fetchScreensByTemplateId: fetchScreensByTemplateId,
|
fetchScreensByTemplateId: fetchScreensByTemplateId,
|
||||||
|
|||||||
@@ -30,6 +30,43 @@ function normalizeText(value) {
|
|||||||
return String(value || '').replace(/\s+/g, ' ').trim();
|
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) {
|
function resolveMediaRoot(mediaRootOrUploadDir) {
|
||||||
const resolved = path.resolve(String(mediaRootOrUploadDir || '').trim());
|
const resolved = path.resolve(String(mediaRootOrUploadDir || '').trim());
|
||||||
return path.basename(resolved) === 'uploads' ? path.dirname(resolved) : resolved;
|
return path.basename(resolved) === 'uploads' ? path.dirname(resolved) : resolved;
|
||||||
@@ -119,22 +156,19 @@ function buildFontFaceRule(entry) {
|
|||||||
|
|
||||||
function buildFontStylesheet(fonts) {
|
function buildFontStylesheet(fonts) {
|
||||||
const rules = (Array.isArray(fonts) ? fonts : [])
|
const rules = (Array.isArray(fonts) ? fonts : [])
|
||||||
.filter(function (font) {
|
|
||||||
return font && font.enabled !== false;
|
|
||||||
})
|
|
||||||
.map(buildFontFaceRule)
|
.map(buildFontFaceRule)
|
||||||
.filter(Boolean);
|
.filter(Boolean);
|
||||||
return rules.length ? `/* Managed fonts */\n\n${rules.join('\n\n')}\n` : '/* Managed fonts */\n';
|
return rules.length ? `/* Managed fonts */\n\n${rules.join('\n\n')}\n` : '/* Managed fonts */\n';
|
||||||
}
|
}
|
||||||
|
|
||||||
function buildFontFamilyFormats(fonts) {
|
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) {
|
.filter(function (font) {
|
||||||
return font && font.enabled !== false && normalizeText(font.family || font.name);
|
return font && font.enabled !== false && normalizeText(font.family || font.name);
|
||||||
})
|
})
|
||||||
.map(function (font) {
|
.map(function (font) {
|
||||||
const family = normalizeText(font.family || font.name);
|
const family = normalizeText(font.family || font.name);
|
||||||
return `${family}=${family}`;
|
return `${family}=${normalizeFontFamilyFormat(family)}`;
|
||||||
}))))
|
}))))
|
||||||
.sort(function (left, right) {
|
.sort(function (left, right) {
|
||||||
const leftLabel = String(left || '').split('=')[0];
|
const leftLabel = String(left || '').split('=')[0];
|
||||||
@@ -344,7 +378,7 @@ function collectFontLibrarySyncOperations(mediaRootOrUploadDir) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
operations.push({
|
operations.push({
|
||||||
type: font.enabled === false ? 'delete' : 'put',
|
type: 'put',
|
||||||
uploadPath: `/media/${FONT_LIBRARY_DIR_NAME}/${font.fileName}`
|
uploadPath: `/media/${FONT_LIBRARY_DIR_NAME}/${font.fileName}`
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
@@ -363,7 +397,10 @@ module.exports = {
|
|||||||
collectFontLibraryDirectoryUploadPaths: collectFontLibraryDirectoryUploadPaths,
|
collectFontLibraryDirectoryUploadPaths: collectFontLibraryDirectoryUploadPaths,
|
||||||
collectFontLibrarySyncOperations: collectFontLibrarySyncOperations,
|
collectFontLibrarySyncOperations: collectFontLibrarySyncOperations,
|
||||||
getFontStylesheetHref: getFontStylesheetHref,
|
getFontStylesheetHref: getFontStylesheetHref,
|
||||||
|
buildFontStylesheet: buildFontStylesheet,
|
||||||
buildFontFamilyFormats: buildFontFamilyFormats,
|
buildFontFamilyFormats: buildFontFamilyFormats,
|
||||||
|
normalizeFontFamilyFormat: normalizeFontFamilyFormat,
|
||||||
|
normalizeFontFamilyFormatEntry: normalizeFontFamilyFormatEntry,
|
||||||
isSupportedFontUpload: isSupportedFontUpload,
|
isSupportedFontUpload: isSupportedFontUpload,
|
||||||
getFontLibraryDir: getFontLibraryDir,
|
getFontLibraryDir: getFontLibraryDir,
|
||||||
getFontManifestPath: getFontManifestPath,
|
getFontManifestPath: getFontManifestPath,
|
||||||
|
|||||||
@@ -30,6 +30,35 @@ function resolveAssetUrl(baseUrl, value) {
|
|||||||
return normalizedBaseUrl + '/' + raw.replace(/^\/+/, '');
|
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) {
|
function getThumbnailCanvasSize(slide) {
|
||||||
const template = slide && slide.template ? slide.template : null;
|
const template = slide && slide.template ? slide.template : null;
|
||||||
return {
|
return {
|
||||||
@@ -53,7 +82,16 @@ function buildThumbnailRegionStyle(region, canvasWidth, canvasHeight) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function hasVisibleContent(html) {
|
function hasVisibleContent(html) {
|
||||||
return Boolean(String(html || '').replace(/<[^>]+>/g, '').trim());
|
var raw = String(html || '').trim();
|
||||||
|
if (!raw) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (/<img\b/i.test(raw)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return Boolean(raw.replace(/<[^>]+>/g, '').trim());
|
||||||
}
|
}
|
||||||
|
|
||||||
function buildTextRegionMarkup(region, regionContent) {
|
function buildTextRegionMarkup(region, regionContent) {
|
||||||
@@ -70,7 +108,7 @@ function buildTextRegionMarkup(region, regionContent) {
|
|||||||
|
|
||||||
function buildRegionInnerHtml(region, regionContent, baseUrl) {
|
function buildRegionInnerHtml(region, regionContent, baseUrl) {
|
||||||
const regionType = String(regionContent.type || region.region_type || 'text').trim().toLowerCase();
|
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') {
|
if (regionType === 'image') {
|
||||||
const src = resolveAssetUrl(baseUrl, rawValue);
|
const src = resolveAssetUrl(baseUrl, rawValue);
|
||||||
@@ -89,7 +127,7 @@ function buildRegionInnerHtml(region, regionContent, baseUrl) {
|
|||||||
if (regionType === 'webpage') {
|
if (regionType === 'webpage') {
|
||||||
const src = resolveAssetUrl(baseUrl, rawValue);
|
const src = resolveAssetUrl(baseUrl, rawValue);
|
||||||
return src
|
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>'
|
||||||
: '';
|
: '';
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -105,7 +143,7 @@ function buildRegionInnerHtml(region, regionContent, baseUrl) {
|
|||||||
if (regionType === 'html') {
|
if (regionType === 'html') {
|
||||||
const html = String(rawValue || '').trim();
|
const html = String(rawValue || '').trim();
|
||||||
return html
|
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>'
|
? '<div class="slide-preview-region slide-preview-html-region" style="' + region.baseStyle + '"><iframe sandbox="" allowtransparency="true" srcdoc="' + escapeHtml('<!doctype html><html><head><style>html,body{margin:0;width:100%;height:100%;overflow:hidden;background:transparent;}</style></head><body>' + html + '</body></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>'
|
||||||
: '';
|
: '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -52,6 +52,35 @@ function resolveAssetUrl(baseUrl, value) {
|
|||||||
return normalizedBaseUrl + '/' + raw.replace(/^\/+/, '');
|
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) {
|
function getCanvasSize(slide) {
|
||||||
const template = slide && slide.template ? slide.template : null;
|
const template = slide && slide.template ? slide.template : null;
|
||||||
return {
|
return {
|
||||||
@@ -83,7 +112,16 @@ function buildThumbnailRegionStyle(region, canvasWidth, canvasHeight) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function hasVisibleContent(html) {
|
function hasVisibleContent(html) {
|
||||||
return Boolean(String(html || '').replace(/<[^>]+>/g, '').trim());
|
var raw = String(html || '').trim();
|
||||||
|
if (!raw) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (/<img\b/i.test(raw)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return Boolean(raw.replace(/<[^>]+>/g, '').trim());
|
||||||
}
|
}
|
||||||
|
|
||||||
function buildTextRegionMarkup(region, regionContent) {
|
function buildTextRegionMarkup(region, regionContent) {
|
||||||
@@ -100,7 +138,7 @@ function buildTextRegionMarkup(region, regionContent) {
|
|||||||
|
|
||||||
function buildRegionInnerHtml(region, regionContent, baseUrl) {
|
function buildRegionInnerHtml(region, regionContent, baseUrl) {
|
||||||
const regionType = String(regionContent.type || region.region_type || 'text').trim().toLowerCase();
|
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') {
|
if (regionType === 'image') {
|
||||||
const src = resolveAssetUrl(baseUrl, rawValue);
|
const src = resolveAssetUrl(baseUrl, rawValue);
|
||||||
@@ -119,7 +157,7 @@ function buildRegionInnerHtml(region, regionContent, baseUrl) {
|
|||||||
if (regionType === 'webpage') {
|
if (regionType === 'webpage') {
|
||||||
const src = resolveAssetUrl(baseUrl, rawValue);
|
const src = resolveAssetUrl(baseUrl, rawValue);
|
||||||
return src
|
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>'
|
||||||
: '';
|
: '';
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -135,7 +173,7 @@ function buildRegionInnerHtml(region, regionContent, baseUrl) {
|
|||||||
if (regionType === 'html') {
|
if (regionType === 'html') {
|
||||||
const html = String(rawValue || '').trim();
|
const html = String(rawValue || '').trim();
|
||||||
return html
|
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>'
|
? '<div class="slide-preview-region slide-preview-html-region" style="' + region.baseStyle + '"><iframe sandbox="" allowtransparency="true" srcdoc="' + escapeHtml('<!doctype html><html><head><style>html,body{margin:0;width:100%;height:100%;overflow:hidden;background:transparent;}</style></head><body>' + html + '</body></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>'
|
||||||
: '';
|
: '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -33,6 +33,11 @@ module.exports = function registerMiddleware(app, deps) {
|
|||||||
return next();
|
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 = {
|
module.exports = {
|
||||||
renderLoginPage: require(routePath('auth', 'login')),
|
renderLoginPage: require(routePath('auth', 'login')),
|
||||||
renderAccountPage: require(routePath('account', 'password')),
|
renderAccountPage: require(routePath('account', 'password')),
|
||||||
|
renderSettingsPage: require(routePath('settings', 'index')),
|
||||||
|
renderAboutPage: require(routePath('settings', 'about', 'index')),
|
||||||
renderUsersPage: require(routePath('settings', 'users', 'list')),
|
renderUsersPage: require(routePath('settings', 'users', 'list')),
|
||||||
renderUsersAddPage: require(routePath('settings', 'users', 'add')),
|
renderUsersAddPage: require(routePath('settings', 'users', 'add')),
|
||||||
renderUsersEditPage: require(routePath('settings', 'users', 'edit')),
|
renderUsersEditPage: require(routePath('settings', 'users', '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.
+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;
|
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 {
|
.card {
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
@@ -263,6 +294,12 @@
|
|||||||
border-bottom-width: 0;
|
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 .region-item [disabled],
|
||||||
.template-designer-form--previewing .template-details-card [disabled],
|
.template-designer-form--previewing .template-details-card [disabled],
|
||||||
.template-designer-form--previewing .template-options-card [disabled],
|
.template-designer-form--previewing .template-options-card [disabled],
|
||||||
@@ -405,6 +442,11 @@
|
|||||||
border-radius: 1rem;
|
border-radius: 1rem;
|
||||||
background: var(--bs-body-bg);
|
background: var(--bs-body-bg);
|
||||||
box-shadow: 0 1rem 2rem rgba(15, 23, 42, 0.18);
|
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 {
|
.announcement-type-picker__menu {
|
||||||
@@ -437,15 +479,61 @@
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
gap: 0.75rem;
|
gap: 0.75rem;
|
||||||
margin-bottom: 0.75rem;
|
|
||||||
font-size: 0.875rem;
|
font-size: 0.875rem;
|
||||||
font-weight: 700;
|
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 {
|
.announcement-icon-picker__grid {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(auto-fill, minmax(2.75rem, 1fr));
|
grid-template-columns: repeat(auto-fill, minmax(2.75rem, 1fr));
|
||||||
gap: 0.5rem;
|
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 {
|
.announcement-type-picker__grid {
|
||||||
@@ -742,6 +830,10 @@
|
|||||||
overflow: auto;
|
overflow: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[data-table-pagination-card] > .card-header {
|
||||||
|
flex: 0 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
[data-table-pagination-card] > .card-footer {
|
[data-table-pagination-card] > .card-footer {
|
||||||
margin-top: auto;
|
margin-top: auto;
|
||||||
background: var(--bs-body-bg);
|
background: var(--bs-body-bg);
|
||||||
@@ -752,6 +844,18 @@
|
|||||||
box-shadow: none;
|
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 {
|
.admin-form-card .card-header {
|
||||||
background: var(--bs-tertiary-bg);
|
background: var(--bs-tertiary-bg);
|
||||||
}
|
}
|
||||||
@@ -1652,6 +1756,31 @@ html[data-bs-theme='dark'] .template-field-card .tox .tox-collection {
|
|||||||
background: var(--bs-body-bg);
|
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 {
|
.slide-image-cropper-frame img {
|
||||||
display: block;
|
display: block;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
@@ -1689,6 +1818,10 @@ html[data-bs-theme='dark'] .template-field-card .tox .tox-collection {
|
|||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#slide-image-cropper-status:empty {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
.slide-image-region-preview-box {
|
.slide-image-region-preview-box {
|
||||||
display: grid;
|
display: grid;
|
||||||
gap: 0;
|
gap: 0;
|
||||||
@@ -2139,10 +2272,21 @@ html[data-bs-theme='dark'] .template-field-card .tox .tox-collection {
|
|||||||
.template-field-actions {
|
.template-field-actions {
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
justify-content: flex-end;
|
||||||
gap: 0.5rem;
|
gap: 0.5rem;
|
||||||
margin-left: auto;
|
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 {
|
.template-field-head strong {
|
||||||
font-size: 0.95rem;
|
font-size: 0.95rem;
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
@@ -2221,6 +2365,14 @@ html[data-bs-theme='dark'] .template-field-card .tox .tox-collection {
|
|||||||
min-width: 0;
|
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 {
|
.announcement-color-preview {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|||||||
@@ -423,19 +423,6 @@
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (submitterValue === 'close' || submitterValue === 'new') {
|
|
||||||
var redirectUrl = submitterValue === 'close'
|
|
||||||
? String(response.url || form.dataset.asyncSaveCloseUrl || window.location.href)
|
|
||||||
: String(response.url || form.dataset.asyncSaveNewUrl || window.location.href);
|
|
||||||
window.location.replace(redirectUrl);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (form.dataset && form.dataset.asyncSaveNewRedirect === 'response-url') {
|
|
||||||
window.location.replace(String(response.url || form.dataset.asyncSaveNewUrl || window.location.href));
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
var responseText = await response.text();
|
var responseText = await response.text();
|
||||||
var responseDocument = null;
|
var responseDocument = null;
|
||||||
try {
|
try {
|
||||||
@@ -454,8 +441,36 @@
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
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);
|
clearFormDirty(form);
|
||||||
|
|
||||||
|
if (submitterValue === 'close' || submitterValue === 'new') {
|
||||||
|
var redirectUrl = submitterValue === 'close'
|
||||||
|
? String(response.url || form.dataset.asyncSaveCloseUrl || window.location.href)
|
||||||
|
: String(response.url || form.dataset.asyncSaveNewUrl || window.location.href);
|
||||||
|
window.location.replace(redirectUrl);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (form.dataset && form.dataset.asyncSaveNewRedirect === 'response-url') {
|
||||||
|
window.location.replace(String(response.url || form.dataset.asyncSaveNewUrl || window.location.href));
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
var successMessage = typeof settings.getSuccessMessage === 'function'
|
var successMessage = typeof settings.getSuccessMessage === 'function'
|
||||||
? settings.getSuccessMessage({
|
? settings.getSuccessMessage({
|
||||||
form: form,
|
form: form,
|
||||||
@@ -539,6 +554,39 @@
|
|||||||
return true;
|
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) {
|
document.addEventListener('submit', function (event) {
|
||||||
var form = event.target;
|
var form = event.target;
|
||||||
if (!form || !form.hasAttribute || !form.hasAttribute('data-async-command')) {
|
if (!form || !form.hasAttribute || !form.hasAttribute('data-async-command')) {
|
||||||
@@ -584,6 +632,15 @@
|
|||||||
body: body.toString(),
|
body: body.toString(),
|
||||||
credentials: 'same-origin'
|
credentials: 'same-origin'
|
||||||
}).then(function (response) {
|
}).then(function (response) {
|
||||||
|
if (!response || Number(response.status) >= 400) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (/^\/settings\/fonts\/[^/]+\/toggle$/.test(actionPath)) {
|
||||||
|
updateFontToggleRow(form);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (shouldReloadAfterSuccess && response && response.ok) {
|
if (shouldReloadAfterSuccess && response && response.ok) {
|
||||||
window.location.reload();
|
window.location.reload();
|
||||||
return;
|
return;
|
||||||
|
|||||||
@@ -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() {
|
function positionAnnouncementTypePicker() {
|
||||||
var picker = document.querySelector('[data-announcement-type-picker]');
|
var picker = document.querySelector('[data-announcement-type-picker]');
|
||||||
var toggle = document.querySelector('[data-announcement-type-picker-toggle]');
|
var toggle = document.querySelector('[data-announcement-type-picker-toggle]');
|
||||||
@@ -141,125 +198,6 @@ function setAnnouncementTypeValue(typeKey) {
|
|||||||
updateAnnouncementTypePickerSelection();
|
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() {
|
function initAnnouncementForm() {
|
||||||
var typeInput = document.getElementById('announcement-type');
|
var typeInput = document.getElementById('announcement-type');
|
||||||
var typePickerToggle = document.querySelector('[data-announcement-type-picker-toggle]');
|
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 colorPicker = document.querySelector('[data-announcement-color-picker-shell]');
|
||||||
var screenSelectAll = document.querySelector('[data-announcement-screen-select-all]');
|
var screenSelectAll = document.querySelector('[data-announcement-screen-select-all]');
|
||||||
var screenSelectNone = document.querySelector('[data-announcement-screen-select-none]');
|
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) {
|
if (typeInput) {
|
||||||
updateAnnouncementTypePickerSelection();
|
updateAnnouncementTypePickerSelection();
|
||||||
@@ -347,44 +281,16 @@ function initAnnouncementForm() {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
if (iconSelect) {
|
document.addEventListener('web-async-save:success', function (event) {
|
||||||
iconSelect.addEventListener('change', updateAnnouncementIconPreview);
|
var detail = event && event.detail ? event.detail : null;
|
||||||
updateAnnouncementIconPreview();
|
var form = detail && detail.form ? detail.form : null;
|
||||||
}
|
if (!form || form.id !== 'announcement-form') {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (iconPickerToggle) {
|
updateAnnouncementActionButtonState();
|
||||||
iconPickerToggle.addEventListener('click', function (event) {
|
});
|
||||||
event.preventDefault();
|
|
||||||
var isExpanded = iconPicker && !iconPicker.hidden;
|
|
||||||
if (isExpanded) {
|
|
||||||
closeAnnouncementIconPicker();
|
|
||||||
} else {
|
|
||||||
openAnnouncementIconPicker();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
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);
|
window.addEventListener('resize', positionAnnouncementTypePicker);
|
||||||
|
|
||||||
document.addEventListener('click', function (event) {
|
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') {
|
if (typeof document !== 'undefined') {
|
||||||
|
|||||||
@@ -0,0 +1,111 @@
|
|||||||
|
(function () {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
function initIconPicker(root) {
|
||||||
|
var select = root.querySelector('select');
|
||||||
|
var toggle = root.querySelector('[data-icon-picker-toggle]');
|
||||||
|
var menu = root.querySelector('[data-icon-picker-menu]');
|
||||||
|
var preview = root.querySelector('[data-icon-picker-preview]');
|
||||||
|
var label = root.querySelector('[data-icon-picker-label]');
|
||||||
|
var search = root.querySelector('[data-icon-picker-search]');
|
||||||
|
var close = root.querySelector('[data-icon-picker-close]');
|
||||||
|
var grid = root.querySelector('[data-icon-picker-grid]');
|
||||||
|
var empty = root.querySelector('[data-icon-picker-empty]');
|
||||||
|
var initialOptions = Array.prototype.slice.call(root.querySelectorAll('[data-icon-picker-option]'));
|
||||||
|
|
||||||
|
if (!select || !toggle || !menu || !grid) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
function catalogOptions() {
|
||||||
|
return Array.prototype.slice.call(select.options).map(function (option) {
|
||||||
|
return { value: option.value, label: option.textContent || option.label || option.value };
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function createOption(option, selectedValue) {
|
||||||
|
var button = document.createElement('button');
|
||||||
|
button.type = 'button';
|
||||||
|
button.className = 'announcement-icon-picker__option';
|
||||||
|
button.setAttribute('data-icon-picker-option', '');
|
||||||
|
button.setAttribute('data-icon-key', option.value);
|
||||||
|
button.setAttribute('data-icon-label', option.label);
|
||||||
|
button.setAttribute('aria-pressed', option.value === selectedValue ? 'true' : 'false');
|
||||||
|
button.title = option.label;
|
||||||
|
button.innerHTML = '<i class="bi bi-' + option.value + '" aria-hidden="true"></i><span class="visually-hidden">' + option.label + '</span>';
|
||||||
|
return button;
|
||||||
|
}
|
||||||
|
|
||||||
|
function getOptionLimit() {
|
||||||
|
var firstOption = grid.querySelector('[data-icon-picker-option]');
|
||||||
|
var gridStyle = window.getComputedStyle(grid);
|
||||||
|
var gap = parseFloat(gridStyle.columnGap || gridStyle.gap || '0') || 0;
|
||||||
|
var optionWidth = firstOption ? firstOption.getBoundingClientRect().width : 0;
|
||||||
|
var columns = optionWidth && grid.clientWidth
|
||||||
|
? Math.max(1, Math.floor((grid.clientWidth + gap) / (optionWidth + gap)))
|
||||||
|
: 4;
|
||||||
|
return columns * 6;
|
||||||
|
}
|
||||||
|
|
||||||
|
function updatePreview() {
|
||||||
|
var option = select.options[select.selectedIndex];
|
||||||
|
var value = option ? option.value : '';
|
||||||
|
if (preview) {
|
||||||
|
preview.className = 'announcement-icon-picker__toggle-icon bi bi-' + value;
|
||||||
|
}
|
||||||
|
if (label) {
|
||||||
|
label.textContent = option ? option.textContent : 'Select an icon';
|
||||||
|
}
|
||||||
|
root.querySelectorAll('[data-icon-picker-option]').forEach(function (optionButton) {
|
||||||
|
var selected = optionButton.getAttribute('data-icon-key') === value;
|
||||||
|
optionButton.classList.toggle('is-selected', selected);
|
||||||
|
optionButton.setAttribute('aria-pressed', selected ? 'true' : 'false');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function render(query) {
|
||||||
|
var normalizedQuery = String(query || '').trim().toLowerCase();
|
||||||
|
var selectedValue = String(select.value || '').trim();
|
||||||
|
var options = normalizedQuery
|
||||||
|
? catalogOptions().filter(function (option) { return (option.value + ' ' + option.label).toLowerCase().indexOf(normalizedQuery) !== -1; })
|
||||||
|
: initialOptions.map(function (option) { return { value: option.getAttribute('data-icon-key') || '', label: option.getAttribute('data-icon-label') || '' }; });
|
||||||
|
var visibleOptions = options.slice(0, getOptionLimit());
|
||||||
|
grid.innerHTML = '';
|
||||||
|
visibleOptions.forEach(function (option) { grid.appendChild(createOption(option, selectedValue)); });
|
||||||
|
if (empty) empty.hidden = options.length > 0;
|
||||||
|
updatePreview();
|
||||||
|
}
|
||||||
|
|
||||||
|
function closeMenu() {
|
||||||
|
menu.hidden = true;
|
||||||
|
toggle.setAttribute('aria-expanded', 'false');
|
||||||
|
}
|
||||||
|
|
||||||
|
toggle.addEventListener('click', function (event) {
|
||||||
|
event.preventDefault();
|
||||||
|
menu.hidden = !menu.hidden;
|
||||||
|
toggle.setAttribute('aria-expanded', menu.hidden ? 'false' : 'true');
|
||||||
|
if (!menu.hidden) {
|
||||||
|
render(search ? search.value : '');
|
||||||
|
if (search) search.focus();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
if (close) close.addEventListener('click', function (event) { event.preventDefault(); closeMenu(); });
|
||||||
|
grid.addEventListener('click', function (event) {
|
||||||
|
var option = event.target.closest ? event.target.closest('[data-icon-picker-option]') : null;
|
||||||
|
if (!option) return;
|
||||||
|
select.value = option.getAttribute('data-icon-key') || '';
|
||||||
|
select.dispatchEvent(new Event('change', { bubbles: true }));
|
||||||
|
closeMenu();
|
||||||
|
});
|
||||||
|
if (search) search.addEventListener('input', function () { render(search.value); });
|
||||||
|
select.addEventListener('change', updatePreview);
|
||||||
|
document.addEventListener('click', function (event) {
|
||||||
|
if (!menu.hidden && !root.contains(event.target)) closeMenu();
|
||||||
|
});
|
||||||
|
updatePreview();
|
||||||
|
}
|
||||||
|
|
||||||
|
window.PulseIconPicker = { init: initIconPicker };
|
||||||
|
document.querySelectorAll('[data-icon-picker]').forEach(initIconPicker);
|
||||||
|
}());
|
||||||
@@ -1665,6 +1665,7 @@
|
|||||||
var slidePickerSlides = [];
|
var slidePickerSlides = [];
|
||||||
var lastDurationPointerDown = null;
|
var lastDurationPointerDown = null;
|
||||||
var lastDurationPointerUp = null;
|
var lastDurationPointerUp = null;
|
||||||
|
var defaultSlideDuration = Number(tbody.getAttribute('data-default-slide-duration')) || 10;
|
||||||
|
|
||||||
if (!tbody || !form) {
|
if (!tbody || !form) {
|
||||||
return;
|
return;
|
||||||
@@ -1961,8 +1962,8 @@
|
|||||||
videoDurationSeconds: slide.videoDurationSeconds,
|
videoDurationSeconds: slide.videoDurationSeconds,
|
||||||
disableAudio: slide.disableAudio,
|
disableAudio: slide.disableAudio,
|
||||||
title: slide.title || 'Slide',
|
title: slide.title || 'Slide',
|
||||||
duration_seconds: 10,
|
duration_seconds: defaultSlideDuration,
|
||||||
durationSeconds: 10,
|
durationSeconds: defaultSlideDuration,
|
||||||
scheduleRules: [],
|
scheduleRules: [],
|
||||||
summary: 'Always visible'
|
summary: 'Always visible'
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -105,6 +105,13 @@
|
|||||||
return document.querySelector('[data-permission-row-id="' + targetId + '"]');
|
return document.querySelector('[data-permission-row-id="' + targetId + '"]');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function markPermissionFormDirty(control) {
|
||||||
|
var form = control && (control.form || (typeof control.closest === 'function' ? control.closest('form') : null));
|
||||||
|
if (form && form.dataset) {
|
||||||
|
form.dataset.dirty = 'true';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
function handleRowChange(event) {
|
function handleRowChange(event) {
|
||||||
var checkbox = event.target && event.target.matches ? event.target : null;
|
var checkbox = event.target && event.target.matches ? event.target : null;
|
||||||
if (!checkbox || checkbox.tagName !== 'INPUT' || checkbox.type !== 'checkbox') {
|
if (!checkbox || checkbox.tagName !== 'INPUT' || checkbox.type !== 'checkbox') {
|
||||||
@@ -162,6 +169,7 @@
|
|||||||
|
|
||||||
if (control.hasAttribute('data-permission-row-toggle')) {
|
if (control.hasAttribute('data-permission-row-toggle')) {
|
||||||
toggleRowCheckboxes(findPermissionRow(targetId));
|
toggleRowCheckboxes(findPermissionRow(targetId));
|
||||||
|
markPermissionFormDirty(control);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -28,11 +28,19 @@
|
|||||||
var name = String(match[2] || '').toLowerCase();
|
var name = String(match[2] || '').toLowerCase();
|
||||||
var attrText = String(match[3] || '');
|
var attrText = String(match[3] || '');
|
||||||
var selfClosing = Boolean(match[4]) || name === 'br' || name === 'hr';
|
var selfClosing = Boolean(match[4]) || name === 'br' || name === 'hr';
|
||||||
var allowed = ['a', 'b', 'blockquote', 'br', 'code', 'div', 'em', 'figure', 'figcaption', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'hr', 'i', 'li', 'ol', 'p', 'pre', 'span', 'strong', 'sub', 'sup', 'table', 'tbody', 'td', 'th', 'thead', 'tr', 'u', 'ul'];
|
var allowed = ['a', 'b', 'blockquote', 'br', 'code', 'col', 'colgroup', 'div', 'em', 'figure', 'figcaption', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'hr', 'i', 'img', 'li', 'ol', 'p', 'pre', 'span', 'strong', 'sub', 'sup', 'table', 'tbody', 'td', 'th', 'thead', 'tr', 'u', 'ul'];
|
||||||
if (allowed.indexOf(name) === -1) {
|
if (allowed.indexOf(name) === -1) {
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (name === 'img') {
|
||||||
|
var srcMatch = String(attrText || '').match(/\bsrc\s*=\s*("([^"]*)"|'([^']*)'|([^\s"'>/=`]+))/i);
|
||||||
|
var srcValue = srcMatch ? String(srcMatch[2] !== undefined ? srcMatch[2] : srcMatch[3] !== undefined ? srcMatch[3] : srcMatch[4] !== undefined ? srcMatch[4] : '').trim() : '';
|
||||||
|
if (!srcValue || !/^(?:https?:\/\/|\/media\/|\/assets\/|\/[^/]|data:image\/)/i.test(srcValue)) {
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (closing) {
|
if (closing) {
|
||||||
return '</' + name + '>';
|
return '</' + name + '>';
|
||||||
}
|
}
|
||||||
@@ -42,7 +50,100 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
function sanitizeRichText(html) {
|
function sanitizeRichText(html) {
|
||||||
return sanitizePreviewHtml(html);
|
var output = String(html || '');
|
||||||
|
output = output.replace(/<script[\s\S]*?<\/script>/gi, '');
|
||||||
|
output = output.replace(/<style[\s\S]*?<\/style>/gi, '');
|
||||||
|
return output.replace(/<[^>]+>/g, function (tag) {
|
||||||
|
var match = tag.match(/^<\s*(\/?)\s*([a-z0-9]+)([\s\S]*?)(\/?)>$/i);
|
||||||
|
if (!match) {
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
|
var closing = Boolean(match[1]);
|
||||||
|
var name = String(match[2] || '').toLowerCase();
|
||||||
|
var attrText = String(match[3] || '');
|
||||||
|
var allowed = ['a', 'b', 'blockquote', 'br', 'code', 'col', 'colgroup', 'div', 'em', 'figure', 'figcaption', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'hr', 'i', 'img', 'li', 'ol', 'p', 'pre', 'span', 'strong', 'sub', 'sup', 'table', 'tbody', 'td', 'th', 'thead', 'tr', 'u', 'ul'];
|
||||||
|
if (allowed.indexOf(name) === -1) {
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (closing) {
|
||||||
|
return '</' + name + '>';
|
||||||
|
}
|
||||||
|
|
||||||
|
return '<' + name + sanitizeRichTextAttributes(name, attrText) + '>';
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function sanitizeRichTextAttributes(tagName, attrText) {
|
||||||
|
var allowedAttributes = {
|
||||||
|
a: ['href', 'title', 'target', 'rel', 'class', 'style'],
|
||||||
|
blockquote: ['class', 'style'],
|
||||||
|
div: ['class', 'style'],
|
||||||
|
figure: ['class', 'style'],
|
||||||
|
figcaption: ['class', 'style'],
|
||||||
|
h1: ['class', 'style'],
|
||||||
|
h2: ['class', 'style'],
|
||||||
|
h3: ['class', 'style'],
|
||||||
|
h4: ['class', 'style'],
|
||||||
|
h5: ['class', 'style'],
|
||||||
|
h6: ['class', 'style'],
|
||||||
|
img: ['src', 'alt', 'title', 'width', 'height', 'class', 'style', 'loading', 'decoding'],
|
||||||
|
col: ['class', 'style', 'span', 'width'],
|
||||||
|
colgroup: ['class', 'style', 'span'],
|
||||||
|
li: ['class', 'style'],
|
||||||
|
ol: ['class', 'style', 'start'],
|
||||||
|
p: ['class', 'style'],
|
||||||
|
pre: ['class', 'style'],
|
||||||
|
span: ['class', 'style'],
|
||||||
|
table: ['class', 'style'],
|
||||||
|
td: ['class', 'style', 'colspan', 'rowspan'],
|
||||||
|
th: ['class', 'style', 'colspan', 'rowspan', 'scope'],
|
||||||
|
tr: ['class', 'style'],
|
||||||
|
ul: ['class', 'style']
|
||||||
|
};
|
||||||
|
var allowed = allowedAttributes[tagName] || [];
|
||||||
|
if (!allowed.length) {
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (tagName === 'img') {
|
||||||
|
var srcMatch = String(attrText || '').match(/\bsrc\s*=\s*("([^"]*)"|'([^']*)'|([^\s"'>/=`]+))/i);
|
||||||
|
var srcValue = srcMatch ? String(srcMatch[2] !== undefined ? srcMatch[2] : srcMatch[3] !== undefined ? srcMatch[3] : srcMatch[4] !== undefined ? srcMatch[4] : '').trim() : '';
|
||||||
|
if (!srcValue || !/^(?:https?:\/\/|\/media\/|\/assets\/|\/[^/]|data:image\/)/i.test(srcValue)) {
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var attrs = [];
|
||||||
|
String(attrText || '').replace(/([a-zA-Z0-9:-]+)(?:\s*=\s*("([^"]*)"|'([^']*)'|([^\s"'>/=`]+)))?/g, function (_full, key, _valuePart, doubleQuoted, singleQuoted, bareValue) {
|
||||||
|
var lowerKey = String(key || '').toLowerCase();
|
||||||
|
if (allowed.indexOf(lowerKey) === -1) {
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
|
var value = doubleQuoted !== undefined ? doubleQuoted : singleQuoted !== undefined ? singleQuoted : bareValue !== undefined ? bareValue : '';
|
||||||
|
if (lowerKey === 'href' && /^(?:\s*javascript:|\s*data:)/i.test(String(value || ''))) {
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
if (lowerKey === 'style' && /(?:expression\s*\(|javascript:|url\s*\()/i.test(String(value || ''))) {
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
if (lowerKey === 'target') {
|
||||||
|
var targetValue = String(value || '').trim();
|
||||||
|
if (targetValue === '_blank') {
|
||||||
|
attrs.push(' target="_blank"');
|
||||||
|
if (attrs.indexOf(' rel="noreferrer noopener"') === -1) {
|
||||||
|
attrs.push(' rel="noreferrer noopener"');
|
||||||
|
}
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
attrs.push(' ' + lowerKey + '="' + escapeHtml(value) + '"');
|
||||||
|
return '';
|
||||||
|
});
|
||||||
|
|
||||||
|
return attrs.join('');
|
||||||
}
|
}
|
||||||
|
|
||||||
function sanitizeTagAttributes(tagName, attrText) {
|
function sanitizeTagAttributes(tagName, attrText) {
|
||||||
@@ -64,6 +165,7 @@
|
|||||||
pre: ['class', 'style'],
|
pre: ['class', 'style'],
|
||||||
span: ['class', 'style'],
|
span: ['class', 'style'],
|
||||||
table: ['class', 'style'],
|
table: ['class', 'style'],
|
||||||
|
img: ['src', 'alt', 'title', 'width', 'height', 'class', 'style', 'loading', 'decoding'],
|
||||||
td: ['class', 'style', 'colspan', 'rowspan'],
|
td: ['class', 'style', 'colspan', 'rowspan'],
|
||||||
th: ['class', 'style', 'colspan', 'rowspan', 'scope'],
|
th: ['class', 'style', 'colspan', 'rowspan', 'scope'],
|
||||||
tr: ['class', 'style'],
|
tr: ['class', 'style'],
|
||||||
@@ -844,6 +946,7 @@
|
|||||||
escapeHtml: escapeHtml,
|
escapeHtml: escapeHtml,
|
||||||
sanitizePreviewHtml: sanitizePreviewHtml,
|
sanitizePreviewHtml: sanitizePreviewHtml,
|
||||||
sanitizeRichText: sanitizeRichText,
|
sanitizeRichText: sanitizeRichText,
|
||||||
|
sanitizeRichTextAttributes: sanitizeRichTextAttributes,
|
||||||
sanitizeFontFamily: sanitizeFontFamily,
|
sanitizeFontFamily: sanitizeFontFamily,
|
||||||
sanitizeTextColor: sanitizeTextColor,
|
sanitizeTextColor: sanitizeTextColor,
|
||||||
normalizeAcceptList: normalizeAcceptList,
|
normalizeAcceptList: normalizeAcceptList,
|
||||||
|
|||||||
@@ -9,8 +9,8 @@
|
|||||||
return utils.escapeHtml ? utils.escapeHtml(value) : String(value === undefined || value === null ? '' : value);
|
return utils.escapeHtml ? utils.escapeHtml(value) : String(value === undefined || value === null ? '' : value);
|
||||||
}
|
}
|
||||||
|
|
||||||
function sanitizeRichText(html) {
|
function sanitizePreviewHtml(html) {
|
||||||
return utils.sanitizeRichText ? utils.sanitizeRichText(html) : escapeHtml(html);
|
return utils.sanitizePreviewHtml ? utils.sanitizePreviewHtml(html) : escapeHtml(html);
|
||||||
}
|
}
|
||||||
|
|
||||||
function sanitizeFontFamily(value) {
|
function sanitizeFontFamily(value) {
|
||||||
@@ -128,7 +128,7 @@
|
|||||||
summary.push('<h3>' + escapeHtml(title) + '</h3>');
|
summary.push('<h3>' + escapeHtml(title) + '</h3>');
|
||||||
}
|
}
|
||||||
if (description) {
|
if (description) {
|
||||||
summary.push('<div>' + sanitizeRichText(description) + '</div>');
|
summary.push('<div>' + sanitizePreviewHtml(description) + '</div>');
|
||||||
}
|
}
|
||||||
if (!summary.length) {
|
if (!summary.length) {
|
||||||
return '';
|
return '';
|
||||||
@@ -183,7 +183,7 @@
|
|||||||
if (!body) {
|
if (!body) {
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
var renderedBody = sanitizeRichText(body);
|
var renderedBody = sanitizePreviewHtml(body);
|
||||||
return renderedBody ? '<div class="template-region api" style="width:100%;height:100%;overflow:hidden;font-family:' + escapeHtml(fontFamily) + ';font-size:' + fontSize + 'px;color:' + escapeHtml(fontColor) + ';"><div class="template-region-text-scale" style="width:100%;height:100%;overflow:hidden;">' + renderedBody + '</div></div>' : '';
|
return renderedBody ? '<div class="template-region api" style="width:100%;height:100%;overflow:hidden;font-family:' + escapeHtml(fontFamily) + ';font-size:' + fontSize + 'px;color:' + escapeHtml(fontColor) + ';"><div class="template-region-text-scale" style="width:100%;height:100%;overflow:hidden;">' + renderedBody + '</div></div>' : '';
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -207,6 +207,12 @@
|
|||||||
'</div>' +
|
'</div>' +
|
||||||
'</div>' +
|
'</div>' +
|
||||||
'<div class="card-body p-3 d-grid gap-3 pb-0">' +
|
'<div class="card-body p-3 d-grid gap-3 pb-0">' +
|
||||||
|
'<div class="d-flex justify-content-end">' +
|
||||||
|
'<div class="btn-group btn-group-sm template-editor-size-controls" role="group" aria-label="Editor size controls">' +
|
||||||
|
'<button type="button" class="btn btn-outline-secondary" data-editor-size-action="decrease" aria-label="Decrease editor size">-</button>' +
|
||||||
|
'<button type="button" class="btn btn-outline-secondary" data-editor-size-action="increase" aria-label="Increase editor size">+</button>' +
|
||||||
|
'</div>' +
|
||||||
|
'</div>' +
|
||||||
'<div class="editor-holder" data-region-id="' + region.id + '">' +
|
'<div class="editor-holder" data-region-id="' + region.id + '">' +
|
||||||
'<textarea class="editor-source" rows="10">' + escapeHtml(current.value !== undefined ? current.value : '') + '</textarea>' +
|
'<textarea class="editor-source" rows="10">' + escapeHtml(current.value !== undefined ? current.value : '') + '</textarea>' +
|
||||||
'</div>' +
|
'</div>' +
|
||||||
|
|||||||
@@ -8,13 +8,49 @@
|
|||||||
return utils.escapeHtml ? utils.escapeHtml(value) : String(value === undefined || value === null ? '' : value);
|
return utils.escapeHtml ? utils.escapeHtml(value) : String(value === undefined || value === null ? '' : value);
|
||||||
}
|
}
|
||||||
|
|
||||||
function renderPreview(value) {
|
function normalizePreviewValue(value) {
|
||||||
var content = value && typeof value === 'object' && value.value !== undefined ? value : null;
|
if (value && typeof value === 'object') {
|
||||||
var html = String(content ? content.value : value || '').trim();
|
if (value.value !== undefined) {
|
||||||
|
return normalizePreviewValue(value.value);
|
||||||
|
}
|
||||||
|
if (value.text !== undefined) {
|
||||||
|
return normalizePreviewValue(value.text);
|
||||||
|
}
|
||||||
|
if (value.html !== undefined) {
|
||||||
|
return normalizePreviewValue(value.html);
|
||||||
|
}
|
||||||
|
if (value.content !== undefined) {
|
||||||
|
return normalizePreviewValue(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;}</style></head><body>' + raw + '</body></html>';
|
||||||
|
}
|
||||||
|
|
||||||
|
function renderPreview(region, value) {
|
||||||
|
var html = normalizePreviewValue(value !== undefined ? value : region).trim();
|
||||||
if (!html) {
|
if (!html) {
|
||||||
return '<div class="slide-preview-placeholder">HTML</div>';
|
return '<div class="slide-preview-placeholder">HTML</div>';
|
||||||
}
|
}
|
||||||
return '<iframe class="slide-preview-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 preview" loading="eager" style="width:100%;height:100%;border:0;display:block;background:transparent;overflow:hidden;"></iframe>';
|
if (/^<!doctype\b/i.test(html) || /^<html\b/i.test(html)) {
|
||||||
|
return '<iframe class="slide-preview-html-frame" sandbox="" allowtransparency="true" scrolling="no" srcdoc="' + escapeHtml(buildHtmlDocument(html)) + '" title="HTML preview" loading="eager" style="width:100%;height:100%;border:0;display:block;background:transparent;overflow:hidden;"></iframe>';
|
||||||
|
}
|
||||||
|
|
||||||
|
return '<div class="slide-preview-html-frame" style="width:100%;height:100%;overflow:hidden;background:transparent;">' + html + '</div>';
|
||||||
}
|
}
|
||||||
|
|
||||||
function renderEditorCard(context) {
|
function renderEditorCard(context) {
|
||||||
|
|||||||
@@ -32,8 +32,8 @@
|
|||||||
var regionRatio = String(context.regionRatio || '1:1');
|
var regionRatio = String(context.regionRatio || '1:1');
|
||||||
var uploadConfig = context.uploadConfig || {};
|
var uploadConfig = context.uploadConfig || {};
|
||||||
var uploadMaxLabel = String(uploadConfig.limitLabel || context.uploadMaxLabel || '100 MB');
|
var uploadMaxLabel = String(uploadConfig.limitLabel || context.uploadMaxLabel || '100 MB');
|
||||||
var uploadAccept = Array.isArray(uploadConfig.accept) ? uploadConfig.accept.join(', ') : String(uploadConfig.accept || 'image/png, image/jpeg, image/gif, image/webp');
|
var uploadAccept = Array.isArray(uploadConfig.accept) ? uploadConfig.accept.join(', ') : String(uploadConfig.accept || 'image/png, image/jpeg, image/gif, image/webp, image/svg+xml');
|
||||||
var uploadHelpText = String(uploadConfig.helpText || 'PNG, JPG, GIF, or WebP');
|
var uploadHelpText = String(uploadConfig.helpText || 'PNG, JPG, GIF, WebP, or SVG');
|
||||||
return registry.renderEditorCardShell({
|
return registry.renderEditorCardShell({
|
||||||
region: region,
|
region: region,
|
||||||
headerActions: '<span class="chip">Image</span>',
|
headerActions: '<span class="chip">Image</span>',
|
||||||
@@ -76,17 +76,31 @@
|
|||||||
|
|
||||||
function buildEditorCardContext(context) {
|
function buildEditorCardContext(context) {
|
||||||
var defaultConfig = context && context.uploadConfig ? context.uploadConfig : {};
|
var defaultConfig = context && context.uploadConfig ? context.uploadConfig : {};
|
||||||
|
var configuredTypes = Array.isArray(context && context.uploadMimeTypes)
|
||||||
|
? context.uploadMimeTypes.filter(function (mimeType) { return String(mimeType || '').indexOf('image/') === 0; })
|
||||||
|
: [];
|
||||||
|
var accept = configuredTypes.length
|
||||||
|
? configuredTypes
|
||||||
|
: (Array.isArray(defaultConfig.accept) ? defaultConfig.accept : ['image/png', 'image/jpeg', 'image/gif', 'image/webp', 'image/svg+xml']);
|
||||||
|
var acceptLabels = accept.map(function (mimeType) {
|
||||||
|
var subtype = String(mimeType).split('/')[1] || '';
|
||||||
|
return subtype === 'jpeg' ? 'JPG' : subtype === 'svg+xml' ? 'SVG' : subtype.toUpperCase();
|
||||||
|
});
|
||||||
|
var acceptLabel = acceptLabels.length > 1
|
||||||
|
? acceptLabels.slice(0, -1).join(', ') + ' or ' + acceptLabels[acceptLabels.length - 1]
|
||||||
|
: (acceptLabels[0] || 'supported image');
|
||||||
return {
|
return {
|
||||||
region: context.region,
|
region: context.region,
|
||||||
current: String(context.current || ''),
|
current: String(context.current || ''),
|
||||||
regionRatio: String(context.regionRatio || '1:1'),
|
regionRatio: String(context.regionRatio || '1:1'),
|
||||||
uploadConfig: {
|
uploadConfig: {
|
||||||
accept: Array.isArray(defaultConfig.accept) ? defaultConfig.accept : ['image/png', 'image/jpeg', 'image/gif', 'image/webp'],
|
accept: accept,
|
||||||
limitBytes: defaultConfig.limitBytes,
|
limitBytes: defaultConfig.limitBytes || context.uploadMaxBytes,
|
||||||
limitLabel: defaultConfig.limitLabel || context.uploadMaxLabel || '100 MB',
|
limitLabel: defaultConfig.limitLabel || context.uploadMaxLabel || '100 MB',
|
||||||
helpText: defaultConfig.helpText || 'PNG, JPG, GIF, or WebP'
|
helpText: defaultConfig.helpText || acceptLabel
|
||||||
},
|
},
|
||||||
uploadMaxLabel: context.uploadMaxLabel || '100 MB'
|
uploadMaxLabel: context.uploadMaxLabel || '100 MB',
|
||||||
|
uploadMimeTypes: context.uploadMimeTypes || []
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -107,11 +121,18 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
var uploadConfig = context.uploadConfig || {};
|
var uploadConfig = context.uploadConfig || {};
|
||||||
var accept = uploadConfig.accept || ['image/png', 'image/jpeg', 'image/gif', 'image/webp'];
|
var accept = uploadConfig.accept || ['image/png', 'image/jpeg', 'image/gif', 'image/webp', 'image/svg+xml'];
|
||||||
|
var acceptLabels = accept.map(function (mimeType) {
|
||||||
|
var subtype = String(mimeType).split('/')[1] || '';
|
||||||
|
return subtype === 'jpeg' ? 'JPG' : subtype === 'svg+xml' ? 'SVG' : subtype.toUpperCase();
|
||||||
|
});
|
||||||
|
var acceptLabel = acceptLabels.length > 1
|
||||||
|
? acceptLabels.slice(0, -1).join(', ') + (acceptLabels.length > 2 ? ', or ' : ' or ') + acceptLabels[acceptLabels.length - 1]
|
||||||
|
: (acceptLabels[0] || 'supported image');
|
||||||
var limitBytes = Number(uploadConfig.limitBytes || 100 * 1024 * 1024);
|
var limitBytes = Number(uploadConfig.limitBytes || 100 * 1024 * 1024);
|
||||||
|
|
||||||
if (!utils.fileMatchesAccept || !utils.fileMatchesAccept(context.file, accept)) {
|
if (!utils.fileMatchesAccept || !utils.fileMatchesAccept(context.file, accept)) {
|
||||||
showUploadWarning('This image region accepts PNG, JPG, GIF, or WebP files.');
|
showUploadWarning('This image region accepts ' + acceptLabel + ' files.');
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -132,10 +153,10 @@
|
|||||||
var defaultConfig = context && context.defaultConfig ? context.defaultConfig : {};
|
var defaultConfig = context && context.defaultConfig ? context.defaultConfig : {};
|
||||||
|
|
||||||
return {
|
return {
|
||||||
accept: ['image/png', 'image/jpeg', 'image/gif', 'image/webp'],
|
accept: ['image/png', 'image/jpeg', 'image/gif', 'image/webp', 'image/svg+xml'],
|
||||||
limitBytes: defaultConfig.limitBytes,
|
limitBytes: defaultConfig.limitBytes || context.uploadMaxBytes,
|
||||||
limitLabel: defaultConfig.limitLabel,
|
limitLabel: defaultConfig.limitLabel,
|
||||||
helpText: 'PNG, JPG, GIF, or WebP'
|
helpText: 'PNG, JPG, GIF, WebP, or SVG'
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
renderPreview: renderPreview,
|
renderPreview: renderPreview,
|
||||||
|
|||||||
@@ -17,10 +17,6 @@
|
|||||||
return utils.sanitizePreviewHtml ? utils.sanitizePreviewHtml(html) : escapeHtml(html);
|
return utils.sanitizePreviewHtml ? utils.sanitizePreviewHtml(html) : escapeHtml(html);
|
||||||
}
|
}
|
||||||
|
|
||||||
function sanitizeRichText(html) {
|
|
||||||
return utils.sanitizeRichText ? utils.sanitizeRichText(html) : sanitizePreviewHtml(html);
|
|
||||||
}
|
|
||||||
|
|
||||||
function sanitizeFontFamily(value) {
|
function sanitizeFontFamily(value) {
|
||||||
return utils.sanitizeFontFamily ? utils.sanitizeFontFamily(value) : String(value || '').trim();
|
return utils.sanitizeFontFamily ? utils.sanitizeFontFamily(value) : String(value || '').trim();
|
||||||
}
|
}
|
||||||
@@ -198,7 +194,7 @@
|
|||||||
summaryParts.push('<h3>' + escapeHtml(item.title) + '</h3>');
|
summaryParts.push('<h3>' + escapeHtml(item.title) + '</h3>');
|
||||||
}
|
}
|
||||||
if (item.description) {
|
if (item.description) {
|
||||||
summaryParts.push('<div>' + sanitizeRichText(item.description) + '</div>');
|
summaryParts.push('<div>' + sanitizePreviewHtml(item.description) + '</div>');
|
||||||
}
|
}
|
||||||
body = summaryParts.join('');
|
body = summaryParts.join('');
|
||||||
}
|
}
|
||||||
@@ -206,7 +202,7 @@
|
|||||||
if (!body) {
|
if (!body) {
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
var renderedBody = sanitizeRichText(body);
|
var renderedBody = sanitizePreviewHtml(body);
|
||||||
return renderedBody ? '<div class="template-region rss" style="width:100%;height:100%;overflow:hidden;font-family:' + escapeHtml(fontFamily) + ';font-size:' + fontSize + 'px;color:' + escapeHtml(fontColor) + ';"><div class="template-region-text-scale" style="width:100%;height:100%;overflow:hidden;">' + renderedBody + '</div></div>' : '';
|
return renderedBody ? '<div class="template-region rss" style="width:100%;height:100%;overflow:hidden;font-family:' + escapeHtml(fontFamily) + ';font-size:' + fontSize + 'px;color:' + escapeHtml(fontColor) + ';"><div class="template-region-text-scale" style="width:100%;height:100%;overflow:hidden;">' + renderedBody + '</div></div>' : '';
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -226,6 +222,12 @@
|
|||||||
'</div>' +
|
'</div>' +
|
||||||
'</div>' +
|
'</div>' +
|
||||||
'<div class="card-body p-3 d-grid gap-3 pb-0">' +
|
'<div class="card-body p-3 d-grid gap-3 pb-0">' +
|
||||||
|
'<div class="d-flex justify-content-end">' +
|
||||||
|
'<div class="btn-group btn-group-sm template-editor-size-controls" role="group" aria-label="Editor size controls">' +
|
||||||
|
'<button type="button" class="btn btn-outline-secondary" data-editor-size-action="decrease" aria-label="Decrease editor size">-</button>' +
|
||||||
|
'<button type="button" class="btn btn-outline-secondary" data-editor-size-action="increase" aria-label="Increase editor size">+</button>' +
|
||||||
|
'</div>' +
|
||||||
|
'</div>' +
|
||||||
'<div class="editor-holder" data-region-id="' + region.id + '">' +
|
'<div class="editor-holder" data-region-id="' + region.id + '">' +
|
||||||
'<textarea class="editor-source" rows="10">' + escapeHtml(current.value !== undefined ? current.value : '') + '</textarea>' +
|
'<textarea class="editor-source" rows="10">' + escapeHtml(current.value !== undefined ? current.value : '') + '</textarea>' +
|
||||||
'</div>' +
|
'</div>' +
|
||||||
|
|||||||
@@ -54,7 +54,13 @@
|
|||||||
'<span class="chip">Text</span>' +
|
'<span class="chip">Text</span>' +
|
||||||
'</div>' +
|
'</div>' +
|
||||||
'</div>' +
|
'</div>' +
|
||||||
'<div class="card-body p-3 d-grid">' +
|
'<div class="card-body p-3 d-grid gap-2">' +
|
||||||
|
'<div class="d-flex justify-content-end">' +
|
||||||
|
'<div class="btn-group btn-group-sm template-editor-size-controls" role="group" aria-label="Editor size controls">' +
|
||||||
|
'<button type="button" class="btn btn-outline-secondary" data-editor-size-action="decrease" aria-label="Decrease editor size">-</button>' +
|
||||||
|
'<button type="button" class="btn btn-outline-secondary" data-editor-size-action="increase" aria-label="Increase editor size">+</button>' +
|
||||||
|
'</div>' +
|
||||||
|
'</div>' +
|
||||||
'<div class="editor-holder" data-region-id="' + region.id + '">' +
|
'<div class="editor-holder" data-region-id="' + region.id + '">' +
|
||||||
'<textarea class="editor-source" rows="10">' + escapeHtml(current) + '</textarea>' +
|
'<textarea class="editor-source" rows="10">' + escapeHtml(current) + '</textarea>' +
|
||||||
'</div>' +
|
'</div>' +
|
||||||
|
|||||||
@@ -302,6 +302,12 @@
|
|||||||
'</div>' +
|
'</div>' +
|
||||||
'</div>' +
|
'</div>' +
|
||||||
'<div class="card-body p-3 d-grid gap-3">' +
|
'<div class="card-body p-3 d-grid gap-3">' +
|
||||||
|
'<div class="d-flex justify-content-end">' +
|
||||||
|
'<div class="btn-group btn-group-sm template-editor-size-controls" role="group" aria-label="Editor size controls">' +
|
||||||
|
'<button type="button" class="btn btn-outline-secondary" data-editor-size-action="decrease" aria-label="Decrease editor size">-</button>' +
|
||||||
|
'<button type="button" class="btn btn-outline-secondary" data-editor-size-action="increase" aria-label="Increase editor size">+</button>' +
|
||||||
|
'</div>' +
|
||||||
|
'</div>' +
|
||||||
'<div class="editor-holder" data-region-id="' + region.id + '">' +
|
'<div class="editor-holder" data-region-id="' + region.id + '">' +
|
||||||
'<textarea id="region_time_date_text_' + region.id + '" class="editor-source form-control" rows="4" name="region_text_' + region.id + '">' + escapeHtml(value) + '</textarea>' +
|
'<textarea id="region_time_date_text_' + region.id + '" class="editor-source form-control" rows="4" name="region_text_' + region.id + '">' + escapeHtml(value) + '</textarea>' +
|
||||||
'</div>' +
|
'</div>' +
|
||||||
|
|||||||
+17
-6
@@ -15,10 +15,6 @@
|
|||||||
return utils.escapeHtml ? utils.escapeHtml(value) : String(value === undefined || value === null ? '' : value);
|
return utils.escapeHtml ? utils.escapeHtml(value) : String(value === undefined || value === null ? '' : value);
|
||||||
}
|
}
|
||||||
|
|
||||||
function sanitizeRichText(html) {
|
|
||||||
return utils.sanitizeRichText ? utils.sanitizeRichText(html) : escapeHtml(html);
|
|
||||||
}
|
|
||||||
|
|
||||||
function getDefaultStyle() {
|
function getDefaultStyle() {
|
||||||
return {
|
return {
|
||||||
font_family: DEFAULT_STYLE.font_family,
|
font_family: DEFAULT_STYLE.font_family,
|
||||||
@@ -269,6 +265,12 @@
|
|||||||
'<div class="template-field-actions"><span class="chip">Timetable</span></div>' +
|
'<div class="template-field-actions"><span class="chip">Timetable</span></div>' +
|
||||||
'</div>' +
|
'</div>' +
|
||||||
'<div class="card-body p-3 d-grid gap-3">' +
|
'<div class="card-body p-3 d-grid gap-3">' +
|
||||||
|
'<div class="d-flex justify-content-end">' +
|
||||||
|
'<div class="btn-group btn-group-sm template-editor-size-controls" role="group" aria-label="Editor size controls">' +
|
||||||
|
'<button type="button" class="btn btn-outline-secondary" data-editor-size-action="decrease" aria-label="Decrease editor size">-</button>' +
|
||||||
|
'<button type="button" class="btn btn-outline-secondary" data-editor-size-action="increase" aria-label="Increase editor size">+</button>' +
|
||||||
|
'</div>' +
|
||||||
|
'</div>' +
|
||||||
'<div class="editor-holder" data-region-id="' + region.id + '">' +
|
'<div class="editor-holder" data-region-id="' + region.id + '">' +
|
||||||
'<textarea class="editor-source" rows="10">' + escapeHtml(currentValue) + '</textarea>' +
|
'<textarea class="editor-source" rows="10">' + escapeHtml(currentValue) + '</textarea>' +
|
||||||
'<input type="hidden" name="region_text_' + region.id + '" value="' + escapeHtml(currentValue) + '" />' +
|
'<input type="hidden" name="region_text_' + region.id + '" value="' + escapeHtml(currentValue) + '" />' +
|
||||||
@@ -417,7 +419,7 @@
|
|||||||
return '<div class="slide-preview-region timetable" style="width:100%;height:100%;overflow:hidden;' + (style.font_family ? 'font-family:' + escapeHtml(style.font_family) + ';' : '') + (style.font_size ? 'font-size:' + Math.max(1, Math.round(Number(style.font_size))) + 'px;' : '') + (style.font_color ? 'color:' + escapeHtml(style.font_color) + ';' : '') + '">' + entries.map(function (entry, index) {
|
return '<div class="slide-preview-region timetable" style="width:100%;height:100%;overflow:hidden;' + (style.font_family ? 'font-family:' + escapeHtml(style.font_family) + ';' : '') + (style.font_size ? 'font-size:' + Math.max(1, Math.round(Number(style.font_size))) + 'px;' : '') + (style.font_color ? 'color:' + escapeHtml(style.font_color) + ';' : '') + '">' + entries.map(function (entry, index) {
|
||||||
var entryDate = entry && (entry.start_datetime || entry.end_datetime || entry.date || entry.time || '');
|
var entryDate = entry && (entry.start_datetime || entry.end_datetime || entry.date || entry.time || '');
|
||||||
var timezoneValues = getTimezoneValues(group, entryDate);
|
var timezoneValues = getTimezoneValues(group, entryDate);
|
||||||
return '<div class="timetable-region-entry" data-timetable-entry-index="' + index + '">' + sanitizeRichText(renderTemplate(value, Object.assign({}, entry || {}, {
|
return '<div class="timetable-region-entry" data-timetable-entry-index="' + index + '">' + (utils.sanitizeRichText ? utils.sanitizeRichText(renderTemplate(value, Object.assign({}, entry || {}, {
|
||||||
start: entry && entry.start_datetime !== undefined ? entry.start_datetime : '',
|
start: entry && entry.start_datetime !== undefined ? entry.start_datetime : '',
|
||||||
end: entry && entry.end_datetime !== undefined ? entry.end_datetime : '',
|
end: entry && entry.end_datetime !== undefined ? entry.end_datetime : '',
|
||||||
tz: timezoneValues.tz,
|
tz: timezoneValues.tz,
|
||||||
@@ -426,7 +428,16 @@
|
|||||||
group: group || {},
|
group: group || {},
|
||||||
entries: entries,
|
entries: entries,
|
||||||
index: index + 1
|
index: index + 1
|
||||||
}))) + '</div>';
|
}))) : escapeHtml(renderTemplate(value, Object.assign({}, entry || {}, {
|
||||||
|
start: entry && entry.start_datetime !== undefined ? entry.start_datetime : '',
|
||||||
|
end: entry && entry.end_datetime !== undefined ? entry.end_datetime : '',
|
||||||
|
tz: timezoneValues.tz,
|
||||||
|
tz_long: timezoneValues.tz_long,
|
||||||
|
timeZone: timezoneValues.tz_long,
|
||||||
|
group: group || {},
|
||||||
|
entries: entries,
|
||||||
|
index: index + 1
|
||||||
|
})))) + '</div>';
|
||||||
}).join('') + '</div>';
|
}).join('') + '</div>';
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -82,17 +82,30 @@
|
|||||||
|
|
||||||
function buildEditorCardContext(context) {
|
function buildEditorCardContext(context) {
|
||||||
var defaultConfig = context && context.uploadConfig ? context.uploadConfig : {};
|
var defaultConfig = context && context.uploadConfig ? context.uploadConfig : {};
|
||||||
|
var configuredTypes = Array.isArray(context && context.uploadMimeTypes)
|
||||||
|
? context.uploadMimeTypes.filter(function (mimeType) { return String(mimeType || '').indexOf('video/') === 0; })
|
||||||
|
: [];
|
||||||
|
var accept = configuredTypes.length
|
||||||
|
? configuredTypes
|
||||||
|
: (Array.isArray(defaultConfig.accept) ? defaultConfig.accept : ['video/mp4', 'video/webm', 'video/ogg']);
|
||||||
|
var acceptLabels = accept.map(function (mimeType) {
|
||||||
|
return (String(mimeType).split('/')[1] || '').toUpperCase();
|
||||||
|
});
|
||||||
|
var acceptLabel = acceptLabels.length > 1
|
||||||
|
? acceptLabels.slice(0, -1).join(', ') + ' or ' + acceptLabels[acceptLabels.length - 1]
|
||||||
|
: (acceptLabels[0] || 'supported video');
|
||||||
return {
|
return {
|
||||||
region: context.region,
|
region: context.region,
|
||||||
current: String(context.current || ''),
|
current: String(context.current || ''),
|
||||||
currentDuration: String(context.currentDuration || ''),
|
currentDuration: String(context.currentDuration || ''),
|
||||||
uploadConfig: {
|
uploadConfig: {
|
||||||
accept: Array.isArray(defaultConfig.accept) ? defaultConfig.accept : ['video/mp4', 'video/webm', 'video/ogg'],
|
accept: accept,
|
||||||
limitBytes: defaultConfig.limitBytes,
|
limitBytes: defaultConfig.limitBytes || context.uploadVideoMaxBytes,
|
||||||
limitLabel: defaultConfig.limitLabel || context.uploadVideoMaxLabel || '1 GB',
|
limitLabel: defaultConfig.limitLabel || context.uploadVideoMaxLabel || '1 GB',
|
||||||
helpText: defaultConfig.helpText || 'MP4, WebM, or Ogg'
|
helpText: defaultConfig.helpText || acceptLabel
|
||||||
},
|
},
|
||||||
uploadVideoMaxLabel: context.uploadVideoMaxLabel || '1 GB'
|
uploadVideoMaxLabel: context.uploadVideoMaxLabel || '1 GB',
|
||||||
|
uploadMimeTypes: context.uploadMimeTypes || []
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -114,10 +127,16 @@
|
|||||||
|
|
||||||
var uploadConfig = context.uploadConfig || {};
|
var uploadConfig = context.uploadConfig || {};
|
||||||
var accept = uploadConfig.accept || ['video/mp4', 'video/webm', 'video/ogg'];
|
var accept = uploadConfig.accept || ['video/mp4', 'video/webm', 'video/ogg'];
|
||||||
|
var acceptLabels = accept.map(function (mimeType) {
|
||||||
|
return (String(mimeType).split('/')[1] || '').toUpperCase();
|
||||||
|
});
|
||||||
|
var acceptLabel = acceptLabels.length > 1
|
||||||
|
? acceptLabels.slice(0, -1).join(', ') + (acceptLabels.length > 2 ? ', or ' : ' or ') + acceptLabels[acceptLabels.length - 1]
|
||||||
|
: (acceptLabels[0] || 'supported video');
|
||||||
var limitBytes = Number(uploadConfig.limitBytes || 1024 * 1024 * 1024);
|
var limitBytes = Number(uploadConfig.limitBytes || 1024 * 1024 * 1024);
|
||||||
|
|
||||||
if (!utils.fileMatchesAccept || !utils.fileMatchesAccept(context.file, accept)) {
|
if (!utils.fileMatchesAccept || !utils.fileMatchesAccept(context.file, accept)) {
|
||||||
showUploadWarning('This video region accepts MP4, WebM, or Ogg files.');
|
showUploadWarning('This video region accepts ' + acceptLabel + ' files.');
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -163,7 +182,7 @@
|
|||||||
|
|
||||||
return {
|
return {
|
||||||
accept: ['video/mp4', 'video/webm', 'video/ogg'],
|
accept: ['video/mp4', 'video/webm', 'video/ogg'],
|
||||||
limitBytes: defaultConfig.limitBytes,
|
limitBytes: defaultConfig.limitBytes || context.uploadVideoMaxBytes,
|
||||||
limitLabel: defaultConfig.limitLabel,
|
limitLabel: defaultConfig.limitLabel,
|
||||||
helpText: 'MP4, WebM, or Ogg'
|
helpText: 'MP4, WebM, or Ogg'
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -8,9 +8,34 @@
|
|||||||
return utils.escapeHtml ? utils.escapeHtml(value) : String(value === undefined || value === null ? '' : value);
|
return utils.escapeHtml ? utils.escapeHtml(value) : String(value === undefined || value === null ? '' : value);
|
||||||
}
|
}
|
||||||
|
|
||||||
function renderPreview(value) {
|
function normalizePreviewValue(value) {
|
||||||
var content = value && typeof value === 'object' && value.value !== undefined ? value : null;
|
if (value && typeof value === 'object') {
|
||||||
var src = String(content ? content.value : value || '').trim();
|
if (value.value !== undefined) {
|
||||||
|
return normalizePreviewValue(value.value);
|
||||||
|
}
|
||||||
|
if (value.text !== undefined) {
|
||||||
|
return normalizePreviewValue(value.text);
|
||||||
|
}
|
||||||
|
if (value.url !== undefined) {
|
||||||
|
return normalizePreviewValue(value.url);
|
||||||
|
}
|
||||||
|
if (value.href !== undefined) {
|
||||||
|
return normalizePreviewValue(value.href);
|
||||||
|
}
|
||||||
|
if (value.src !== undefined) {
|
||||||
|
return normalizePreviewValue(value.src);
|
||||||
|
}
|
||||||
|
if (value.content !== undefined) {
|
||||||
|
return normalizePreviewValue(value.content);
|
||||||
|
}
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
|
return String(value === undefined || value === null ? '' : value);
|
||||||
|
}
|
||||||
|
|
||||||
|
function renderPreview(region, value) {
|
||||||
|
var src = normalizePreviewValue(value !== undefined ? value : region).trim();
|
||||||
if (!src) {
|
if (!src) {
|
||||||
return '<div class="slide-preview-placeholder">Webpage</div>';
|
return '<div class="slide-preview-placeholder">Webpage</div>';
|
||||||
}
|
}
|
||||||
@@ -24,7 +49,10 @@
|
|||||||
region: region,
|
region: region,
|
||||||
headerActions: '<span class="chip">Webpage</span>',
|
headerActions: '<span class="chip">Webpage</span>',
|
||||||
bodyHtml: '' +
|
bodyHtml: '' +
|
||||||
'<input type="url" name="region_webpage_' + region.id + '" class="form-control" value="' + escapeHtml(current) + '" placeholder="https://example.com" />'
|
'<div class="input-group flex-nowrap">' +
|
||||||
|
'<input type="url" name="region_webpage_' + region.id + '" class="form-control" value="' + escapeHtml(current) + '" placeholder="https://example.com" />' +
|
||||||
|
'<button type="button" class="btn btn-outline-secondary text-nowrap" data-webpage-preview-update data-region-id="' + region.id + '">Update</button>' +
|
||||||
|
'</div>'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,392 @@
|
|||||||
|
(function () {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
function initIconSuggestions() {
|
||||||
|
var searchInput = document.querySelector('[data-icon-suggestions-search]');
|
||||||
|
var countNode = document.querySelector('[data-icon-suggestions-count]');
|
||||||
|
var selectedList = document.querySelector('[data-selected-icon-list]');
|
||||||
|
var noSelectedNode = document.querySelector('[data-no-selected-icons]');
|
||||||
|
var addButton = document.querySelector('[data-add-icon-button]');
|
||||||
|
var iconForm = document.querySelector('[data-settings-form="icons"]');
|
||||||
|
var options = Array.prototype.slice.call(document.querySelectorAll('[data-icon-suggestion-option]'));
|
||||||
|
var maxSelected = 48;
|
||||||
|
var draggedItem = null;
|
||||||
|
var initialOrder = [];
|
||||||
|
|
||||||
|
if (!searchInput || !countNode || !selectedList || !options.length) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
function getOptionByKey(key) {
|
||||||
|
return options.find(function (option) {
|
||||||
|
var checkbox = option.querySelector('[data-icon-picker-checkbox]');
|
||||||
|
return checkbox && checkbox.value === key;
|
||||||
|
}) || null;
|
||||||
|
}
|
||||||
|
|
||||||
|
function getCheckedKeys() {
|
||||||
|
return options.filter(function (option) {
|
||||||
|
var checkbox = option.querySelector('[data-icon-picker-checkbox]');
|
||||||
|
return checkbox && checkbox.checked;
|
||||||
|
}).map(function (option) {
|
||||||
|
return option.querySelector('[data-icon-picker-checkbox]').value;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function getSelectedOrder() {
|
||||||
|
return Array.prototype.slice.call(selectedList.querySelectorAll('[data-selected-icon-item]')).map(function (item) {
|
||||||
|
return item.getAttribute('data-icon-key');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function createSelectedItem(key) {
|
||||||
|
var option = getOptionByKey(key);
|
||||||
|
var checkbox = option && option.querySelector('[data-icon-picker-checkbox]');
|
||||||
|
if (!option || !checkbox) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
var item = document.createElement('div');
|
||||||
|
var content = document.createElement('div');
|
||||||
|
var dragButton = document.createElement('button');
|
||||||
|
var dragIcon = document.createElement('i');
|
||||||
|
var icon = document.createElement('i');
|
||||||
|
var label = document.createElement('span');
|
||||||
|
var hiddenInput = document.createElement('input');
|
||||||
|
var removeButton = document.createElement('button');
|
||||||
|
var removeIcon = document.createElement('i');
|
||||||
|
var iconLabel = String(option.getAttribute('data-icon-label') || key);
|
||||||
|
|
||||||
|
item.className = 'col-12 col-sm-6 col-xl-3';
|
||||||
|
content.className = 'd-flex align-items-center gap-2 border rounded p-2 h-100';
|
||||||
|
item.draggable = true;
|
||||||
|
item.setAttribute('data-selected-icon-item', '');
|
||||||
|
item.setAttribute('data-icon-key', key);
|
||||||
|
|
||||||
|
dragButton.type = 'button';
|
||||||
|
dragButton.className = 'btn btn-link text-body-secondary p-1';
|
||||||
|
dragButton.setAttribute('data-drag-icon', '');
|
||||||
|
dragButton.title = 'Drag to reorder';
|
||||||
|
dragButton.setAttribute('aria-label', 'Drag ' + iconLabel + ' to reorder');
|
||||||
|
dragIcon.className = 'bi bi-grip-vertical';
|
||||||
|
dragIcon.setAttribute('aria-hidden', 'true');
|
||||||
|
dragButton.appendChild(dragIcon);
|
||||||
|
|
||||||
|
icon.className = 'bi bi-' + key + ' fs-5 text-primary';
|
||||||
|
icon.setAttribute('aria-hidden', 'true');
|
||||||
|
label.className = 'flex-grow-1';
|
||||||
|
label.textContent = iconLabel;
|
||||||
|
|
||||||
|
hiddenInput.type = 'hidden';
|
||||||
|
hiddenInput.name = 'suggested_icons[]';
|
||||||
|
hiddenInput.value = key;
|
||||||
|
hiddenInput.setAttribute('data-ordered-icon-input', '');
|
||||||
|
|
||||||
|
removeButton.type = 'button';
|
||||||
|
removeButton.className = 'btn btn-link text-danger p-1';
|
||||||
|
removeButton.setAttribute('data-remove-icon', '');
|
||||||
|
removeButton.title = 'Remove ' + iconLabel;
|
||||||
|
removeButton.setAttribute('aria-label', 'Remove ' + iconLabel);
|
||||||
|
removeIcon.className = 'bi bi-x-lg';
|
||||||
|
removeIcon.setAttribute('aria-hidden', 'true');
|
||||||
|
removeButton.appendChild(removeIcon);
|
||||||
|
|
||||||
|
content.appendChild(dragButton);
|
||||||
|
content.appendChild(icon);
|
||||||
|
content.appendChild(label);
|
||||||
|
content.appendChild(hiddenInput);
|
||||||
|
content.appendChild(removeButton);
|
||||||
|
item.appendChild(content);
|
||||||
|
return item;
|
||||||
|
}
|
||||||
|
|
||||||
|
function renderSelectedItems(order) {
|
||||||
|
selectedList.querySelectorAll('[data-selected-icon-item]').forEach(function (item) {
|
||||||
|
item.remove();
|
||||||
|
});
|
||||||
|
order.forEach(function (key) {
|
||||||
|
var item = createSelectedItem(key);
|
||||||
|
if (item) {
|
||||||
|
selectedList.insertBefore(item, noSelectedNode);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function syncSelectionState() {
|
||||||
|
var checkedKeys = getCheckedKeys();
|
||||||
|
var checkedSet = new Set(checkedKeys);
|
||||||
|
var currentOrder = getSelectedOrder().filter(function (key) {
|
||||||
|
return checkedSet.has(key);
|
||||||
|
});
|
||||||
|
checkedKeys.forEach(function (key) {
|
||||||
|
if (currentOrder.indexOf(key) === -1) {
|
||||||
|
currentOrder.push(key);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
renderSelectedItems(currentOrder);
|
||||||
|
countNode.textContent = String(currentOrder.length);
|
||||||
|
if (noSelectedNode) {
|
||||||
|
noSelectedNode.hidden = currentOrder.length > 0;
|
||||||
|
}
|
||||||
|
if (addButton) {
|
||||||
|
addButton.disabled = currentOrder.length >= maxSelected;
|
||||||
|
addButton.setAttribute('aria-disabled', addButton.disabled ? 'true' : 'false');
|
||||||
|
}
|
||||||
|
options.forEach(function (option) {
|
||||||
|
var checkbox = option.querySelector('[data-icon-picker-checkbox]');
|
||||||
|
if (checkbox) {
|
||||||
|
checkbox.disabled = !checkbox.checked && currentOrder.length >= maxSelected;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function resetIconForm() {
|
||||||
|
var initialSet = new Set(initialOrder);
|
||||||
|
options.forEach(function (option) {
|
||||||
|
var checkbox = option.querySelector('[data-icon-picker-checkbox]');
|
||||||
|
if (checkbox) {
|
||||||
|
checkbox.checked = initialSet.has(checkbox.value);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
renderSelectedItems(initialOrder.slice());
|
||||||
|
syncSelectionState();
|
||||||
|
if (iconForm) {
|
||||||
|
iconForm.dataset.dirty = 'false';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function markIconFormDirty() {
|
||||||
|
if (iconForm) {
|
||||||
|
iconForm.dataset.dirty = 'true';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function filterOptions() {
|
||||||
|
var query = String(searchInput.value || '').trim().toLowerCase();
|
||||||
|
options.forEach(function (option) {
|
||||||
|
var label = String(option.getAttribute('data-icon-label') || '').toLowerCase();
|
||||||
|
option.hidden = Boolean(query && label.indexOf(query) === -1);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
options.forEach(function (option) {
|
||||||
|
var checkbox = option.querySelector('[data-icon-picker-checkbox]');
|
||||||
|
if (checkbox) {
|
||||||
|
checkbox.addEventListener('change', function () {
|
||||||
|
markIconFormDirty();
|
||||||
|
syncSelectionState();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
selectedList.addEventListener('click', function (event) {
|
||||||
|
var removeButton = event.target.closest ? event.target.closest('[data-remove-icon]') : null;
|
||||||
|
if (!removeButton) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
var item = removeButton.closest('[data-selected-icon-item]');
|
||||||
|
var key = item && item.getAttribute('data-icon-key');
|
||||||
|
var option = getOptionByKey(key);
|
||||||
|
var checkbox = option && option.querySelector('[data-icon-picker-checkbox]');
|
||||||
|
if (checkbox) {
|
||||||
|
checkbox.checked = false;
|
||||||
|
}
|
||||||
|
markIconFormDirty();
|
||||||
|
syncSelectionState();
|
||||||
|
});
|
||||||
|
|
||||||
|
selectedList.addEventListener('dragstart', function (event) {
|
||||||
|
var item = event.target.closest ? event.target.closest('[data-selected-icon-item]') : null;
|
||||||
|
if (!item) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
draggedItem = item;
|
||||||
|
item.classList.add('opacity-50');
|
||||||
|
event.dataTransfer.effectAllowed = 'move';
|
||||||
|
event.dataTransfer.setData('text/plain', item.getAttribute('data-icon-key') || '');
|
||||||
|
});
|
||||||
|
|
||||||
|
selectedList.addEventListener('dragover', function (event) {
|
||||||
|
if (!draggedItem) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
event.preventDefault();
|
||||||
|
var target = event.target.closest ? event.target.closest('[data-selected-icon-item]') : null;
|
||||||
|
if (!target || target === draggedItem) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
var bounds = target.getBoundingClientRect();
|
||||||
|
var insertBefore = event.clientY < bounds.top + bounds.height / 2;
|
||||||
|
selectedList.insertBefore(draggedItem, insertBefore ? target : target.nextSibling);
|
||||||
|
});
|
||||||
|
|
||||||
|
selectedList.addEventListener('dragend', function () {
|
||||||
|
if (!draggedItem) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
draggedItem.classList.remove('opacity-50');
|
||||||
|
draggedItem = null;
|
||||||
|
markIconFormDirty();
|
||||||
|
syncSelectionState();
|
||||||
|
});
|
||||||
|
|
||||||
|
searchInput.addEventListener('input', filterOptions);
|
||||||
|
syncSelectionState();
|
||||||
|
initialOrder = getSelectedOrder();
|
||||||
|
document.addEventListener('settings:reset', resetIconForm);
|
||||||
|
}
|
||||||
|
|
||||||
|
function initDefaultAnnouncementIconPicker() {
|
||||||
|
return;
|
||||||
|
var shell = document.querySelector('[data-settings-default-icon-picker]');
|
||||||
|
if (!shell) return;
|
||||||
|
var select = shell.querySelector('select');
|
||||||
|
var toggle = shell.querySelector('[data-settings-default-icon-toggle]');
|
||||||
|
var menu = shell.querySelector('[data-settings-default-icon-menu]');
|
||||||
|
var preview = shell.querySelector('[data-settings-default-icon-preview]');
|
||||||
|
var label = shell.querySelector('[data-settings-default-icon-label]');
|
||||||
|
var search = shell.querySelector('[data-settings-default-icon-search]');
|
||||||
|
var empty = shell.querySelector('[data-settings-default-icon-empty]');
|
||||||
|
var options = Array.prototype.slice.call(shell.querySelectorAll('[data-settings-default-icon-option]'));
|
||||||
|
|
||||||
|
function getCatalogOptions() {
|
||||||
|
return Array.prototype.slice.call(select.options).map(function (option) {
|
||||||
|
return { value: option.value, label: option.textContent || option.label || option.value };
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function createOption(option, selectedValue) {
|
||||||
|
var item = document.createElement('button');
|
||||||
|
item.type = 'button';
|
||||||
|
item.className = 'announcement-icon-picker__option';
|
||||||
|
item.setAttribute('data-settings-default-icon-option', '');
|
||||||
|
item.setAttribute('data-icon-key', option.value);
|
||||||
|
item.setAttribute('data-icon-label', option.label);
|
||||||
|
item.setAttribute('data-icon-search-terms', option.value + ' ' + option.label);
|
||||||
|
item.setAttribute('aria-pressed', option.value === selectedValue ? 'true' : 'false');
|
||||||
|
item.title = option.label;
|
||||||
|
item.innerHTML = '<i class="bi bi-' + option.value + '" aria-hidden="true"></i><span class="visually-hidden">' + option.label + '</span>';
|
||||||
|
return item;
|
||||||
|
}
|
||||||
|
|
||||||
|
function renderOptions(query) {
|
||||||
|
var normalizedQuery = String(query || '').trim().toLowerCase();
|
||||||
|
var selectedValue = String(select.value || '').trim();
|
||||||
|
var sourceOptions = normalizedQuery ? getCatalogOptions().filter(function (option) {
|
||||||
|
return (option.value + ' ' + option.label).toLowerCase().indexOf(normalizedQuery) !== -1;
|
||||||
|
}) : options.map(function (option) {
|
||||||
|
return { value: option.getAttribute('data-icon-key') || '', label: option.getAttribute('data-icon-label') || '' };
|
||||||
|
});
|
||||||
|
var grid = shell.querySelector('[data-settings-default-icon-grid]');
|
||||||
|
grid.innerHTML = '';
|
||||||
|
sourceOptions.forEach(function (option) {
|
||||||
|
grid.appendChild(createOption(option, selectedValue));
|
||||||
|
});
|
||||||
|
options = Array.prototype.slice.call(grid.querySelectorAll('[data-settings-default-icon-option]'));
|
||||||
|
options.forEach(bindOption);
|
||||||
|
empty.hidden = Boolean(sourceOptions.length);
|
||||||
|
}
|
||||||
|
|
||||||
|
function bindOption(item) {
|
||||||
|
item.addEventListener('click', function () {
|
||||||
|
select.value = item.getAttribute('data-icon-key') || '';
|
||||||
|
select.dispatchEvent(new Event('change', { bubbles: true }));
|
||||||
|
menu.hidden = true;
|
||||||
|
toggle.setAttribute('aria-expanded', 'false');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function render() {
|
||||||
|
var option = select.options[select.selectedIndex];
|
||||||
|
var key = option ? option.value : '';
|
||||||
|
var text = option ? option.textContent : 'Select an icon';
|
||||||
|
preview.className = 'announcement-icon-picker__toggle-icon bi bi-' + key;
|
||||||
|
if (label) label.textContent = text;
|
||||||
|
options.forEach(function (item) {
|
||||||
|
item.classList.toggle('is-selected', item.getAttribute('data-icon-key') === key);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
toggle.addEventListener('click', function () {
|
||||||
|
menu.hidden = !menu.hidden;
|
||||||
|
toggle.setAttribute('aria-expanded', menu.hidden ? 'false' : 'true');
|
||||||
|
if (!menu.hidden && search) search.focus();
|
||||||
|
});
|
||||||
|
shell.querySelector('[data-settings-default-icon-close]').addEventListener('click', function () {
|
||||||
|
menu.hidden = true;
|
||||||
|
toggle.setAttribute('aria-expanded', 'false');
|
||||||
|
});
|
||||||
|
options.forEach(bindOption);
|
||||||
|
if (search) search.addEventListener('input', function () {
|
||||||
|
renderOptions(search.value);
|
||||||
|
});
|
||||||
|
select.addEventListener('change', render);
|
||||||
|
render();
|
||||||
|
}
|
||||||
|
|
||||||
|
function initSettingsSectionNavigation() {
|
||||||
|
var links = Array.prototype.slice.call(document.querySelectorAll('[data-settings-section-link]'));
|
||||||
|
var sections = Array.prototype.slice.call(document.querySelectorAll('[data-settings-section]'));
|
||||||
|
if (!links.length || !sections.length) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
function setActiveSection(sectionId) {
|
||||||
|
links.forEach(function (link) {
|
||||||
|
var isActive = link.getAttribute('href') === '#' + sectionId;
|
||||||
|
link.classList.toggle('active', isActive);
|
||||||
|
link.setAttribute('aria-current', isActive ? 'page' : 'false');
|
||||||
|
});
|
||||||
|
sections.forEach(function (section) {
|
||||||
|
section.hidden = section.id !== sectionId;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function hasDirtySettingsForm() {
|
||||||
|
return Array.prototype.some.call(document.querySelectorAll('[data-settings-form]'), function (form) {
|
||||||
|
return form.dataset && form.dataset.dirty === 'true';
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function resetSettingsForms() {
|
||||||
|
document.querySelectorAll('[data-settings-form]').forEach(function (form) {
|
||||||
|
if (typeof form.reset === 'function') {
|
||||||
|
form.reset();
|
||||||
|
}
|
||||||
|
form.dataset.dirty = 'false';
|
||||||
|
});
|
||||||
|
document.dispatchEvent(new CustomEvent('settings:reset'));
|
||||||
|
}
|
||||||
|
|
||||||
|
links.forEach(function (link) {
|
||||||
|
link.addEventListener('click', function (event) {
|
||||||
|
var target = document.getElementById(String(link.getAttribute('href') || '').replace(/^#/, ''));
|
||||||
|
if (!target) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
var currentSection = sections.find(function (section) { return !section.hidden; });
|
||||||
|
if (currentSection && target.id !== currentSection.id && hasDirtySettingsForm()) {
|
||||||
|
if (!window.confirm('You have unsaved settings. Switch sections anyway?')) {
|
||||||
|
event.preventDefault();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
resetSettingsForms();
|
||||||
|
}
|
||||||
|
event.preventDefault();
|
||||||
|
setActiveSection(target.id);
|
||||||
|
window.history.replaceState(null, '', '#' + target.id);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
var hashSectionId = String(window.location.hash || '').replace(/^#/, '');
|
||||||
|
var initialSection = sections.some(function (section) {
|
||||||
|
return section.id === hashSectionId;
|
||||||
|
}) ? hashSectionId : sections[0].id;
|
||||||
|
setActiveSection(initialSection);
|
||||||
|
}
|
||||||
|
|
||||||
|
document.addEventListener('DOMContentLoaded', function () {
|
||||||
|
initIconSuggestions();
|
||||||
|
initDefaultAnnouncementIconPicker();
|
||||||
|
initSettingsSectionNavigation();
|
||||||
|
});
|
||||||
|
}());
|
||||||
@@ -3,14 +3,39 @@ export function createSlideFormEditorController(options) {
|
|||||||
var templateFields = settings.templateFields || null;
|
var templateFields = settings.templateFields || null;
|
||||||
var templateSelectorLock = settings.templateSelectorLock || null;
|
var templateSelectorLock = settings.templateSelectorLock || null;
|
||||||
var requestPreviewRender = typeof settings.requestPreviewRender === 'function' ? settings.requestPreviewRender : function () {};
|
var requestPreviewRender = typeof settings.requestPreviewRender === 'function' ? settings.requestPreviewRender : function () {};
|
||||||
|
var markFormDirty = typeof settings.markFormDirty === 'function' ? settings.markFormDirty : function () {};
|
||||||
var defaultFontSize = Math.max(1, Number(settings.defaultFontSize || 32));
|
var defaultFontSize = Math.max(1, Number(settings.defaultFontSize || 32));
|
||||||
var fontFamilyFormats = String(settings.fontFamilyFormats || '').trim();
|
var fontFamilyFormats = String(settings.fontFamilyFormats || '').trim();
|
||||||
var fontStylesheetHref = String(settings.fontStylesheetHref || '').trim();
|
var fontStylesheetHref = String(settings.fontStylesheetHref || '').trim();
|
||||||
var defaultEditorFontFamily = 'Arial, Helvetica, sans-serif';
|
var defaultEditorFontFamily = 'Arial, Helvetica, sans-serif';
|
||||||
var editorInstances = new Map();
|
var editorInstances = new Map();
|
||||||
|
var editorHeights = new Map();
|
||||||
|
var editorSizeControlsBound = false;
|
||||||
var getRegionTypeModule = typeof settings.getRegionTypeModule === 'function' ? settings.getRegionTypeModule : function () {
|
var getRegionTypeModule = typeof settings.getRegionTypeModule === 'function' ? settings.getRegionTypeModule : function () {
|
||||||
return null;
|
return null;
|
||||||
};
|
};
|
||||||
|
var imageUploadUrl = String(settings.imageUploadUrl || '/slides/uploads').trim() || '/slides/uploads';
|
||||||
|
var imageUploadMaxBytes = Math.max(1, Number(settings.imageUploadMaxBytes || 2 * 1024 * 1024));
|
||||||
|
var imageUploadLimitLabel = String(settings.imageUploadLimitLabel || '').trim() || Math.max(1, Math.round(imageUploadMaxBytes / (1024 * 1024))) + ' MB';
|
||||||
|
var imageUploadContext = String(settings.imageUploadContext || 'wysiwyg').trim() || 'wysiwyg';
|
||||||
|
var configuredImageMimeTypes = Array.isArray(settings.uploadMimeTypes)
|
||||||
|
? settings.uploadMimeTypes.filter(function (mimeType) { return String(mimeType || '').indexOf('image/') === 0; })
|
||||||
|
: [];
|
||||||
|
var imageUploadAllowedMimeTypes = configuredImageMimeTypes.length
|
||||||
|
? configuredImageMimeTypes
|
||||||
|
: ['image/png', 'image/jpeg', 'image/gif', 'image/webp', 'image/svg+xml'];
|
||||||
|
var imageUploadAllowedExtensions = imageUploadAllowedMimeTypes.map(function (mimeType) {
|
||||||
|
var subtype = String(mimeType).split('/')[1] || '';
|
||||||
|
return subtype === 'jpeg' ? 'jpg' : subtype === 'svg+xml' ? 'svg' : subtype;
|
||||||
|
});
|
||||||
|
var imageUploadFileTypes = imageUploadAllowedExtensions.join(',');
|
||||||
|
var wysiwygEditorHeightStep = Math.max(1, Number(settings.wysiwygEditorHeightStep || 80));
|
||||||
|
var wysiwygEditorHeightMin = Math.max(1, Number(settings.wysiwygEditorHeightMin || 240));
|
||||||
|
var wysiwygEditorHeightMax = Math.max(wysiwygEditorHeightMin, Number(settings.wysiwygEditorHeightMax || 960));
|
||||||
|
var wysiwygEditorHeightDefault = Math.max(wysiwygEditorHeightMin, Number(settings.wysiwygEditorHeightDefault || 360));
|
||||||
|
var editorImageUploadPaths = new Set();
|
||||||
|
var committedEditorImageUploadPaths = new Set();
|
||||||
|
var pendingEditorImageUploadCleanupPaths = new Set();
|
||||||
var getEditorBackgroundColor = typeof settings.getEditorBackgroundColor === 'function' ? settings.getEditorBackgroundColor : function () {
|
var getEditorBackgroundColor = typeof settings.getEditorBackgroundColor === 'function' ? settings.getEditorBackgroundColor : function () {
|
||||||
return '#111111';
|
return '#111111';
|
||||||
};
|
};
|
||||||
@@ -29,6 +54,10 @@ export function createSlideFormEditorController(options) {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (/<img\b/i.test(raw)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
var stripped = raw
|
var stripped = raw
|
||||||
.replace(/<\s*br\s*\/?>/gi, '')
|
.replace(/<\s*br\s*\/?>/gi, '')
|
||||||
.replace(/<p[^>]*>(?:\s| |<br\s*\/?>)*<\/p>/gi, '')
|
.replace(/<p[^>]*>(?:\s| |<br\s*\/?>)*<\/p>/gi, '')
|
||||||
@@ -50,6 +79,99 @@ export function createSlideFormEditorController(options) {
|
|||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function normalizeEditorHeightValue(value) {
|
||||||
|
var numericValue = Number(value);
|
||||||
|
if (!Number.isFinite(numericValue) || numericValue <= 0) {
|
||||||
|
numericValue = wysiwygEditorHeightDefault;
|
||||||
|
}
|
||||||
|
|
||||||
|
return Math.min(wysiwygEditorHeightMax, Math.max(wysiwygEditorHeightMin, Math.round(numericValue)));
|
||||||
|
}
|
||||||
|
|
||||||
|
function getEditorHolder(regionId) {
|
||||||
|
if (!templateFields) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return templateFields.querySelector('.editor-holder[data-region-id="' + regionId + '"]');
|
||||||
|
}
|
||||||
|
|
||||||
|
function getEditorHeight(regionId) {
|
||||||
|
var key = String(regionId || '');
|
||||||
|
var storedHeight = editorHeights.get(key);
|
||||||
|
if (storedHeight !== undefined && storedHeight !== null) {
|
||||||
|
return normalizeEditorHeightValue(storedHeight);
|
||||||
|
}
|
||||||
|
|
||||||
|
var holder = getEditorHolder(key);
|
||||||
|
var holderHeight = holder && holder.dataset ? holder.dataset.editorHeight : '';
|
||||||
|
var normalizedHeight = normalizeEditorHeightValue(holderHeight || wysiwygEditorHeightDefault);
|
||||||
|
editorHeights.set(key, normalizedHeight);
|
||||||
|
return normalizedHeight;
|
||||||
|
}
|
||||||
|
|
||||||
|
function applyEditorHeight(regionId, height, options) {
|
||||||
|
var key = String(regionId || '');
|
||||||
|
var normalizedHeight = normalizeEditorHeightValue(height);
|
||||||
|
var holder = getEditorHolder(key);
|
||||||
|
var editor = editorInstances.get(key);
|
||||||
|
var container = editor && typeof editor.getContainer === 'function' ? editor.getContainer() : null;
|
||||||
|
var shouldRequestPreview = !(options && options.silent);
|
||||||
|
|
||||||
|
editorHeights.set(key, normalizedHeight);
|
||||||
|
|
||||||
|
if (holder) {
|
||||||
|
holder.dataset.editorHeight = String(normalizedHeight);
|
||||||
|
holder.style.height = normalizedHeight + 'px';
|
||||||
|
holder.style.minHeight = normalizedHeight + 'px';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (container) {
|
||||||
|
container.style.height = normalizedHeight + 'px';
|
||||||
|
container.style.minHeight = normalizedHeight + 'px';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (editor && typeof editor.dispatch === 'function') {
|
||||||
|
editor.dispatch('ResizeEditor');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (shouldRequestPreview) {
|
||||||
|
requestPreviewRender();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function adjustEditorHeight(regionId, delta) {
|
||||||
|
applyEditorHeight(regionId, getEditorHeight(regionId) + Number(delta || 0));
|
||||||
|
}
|
||||||
|
|
||||||
|
function bindEditorSizeControls() {
|
||||||
|
if (editorSizeControlsBound || !templateFields) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
editorSizeControlsBound = true;
|
||||||
|
templateFields.addEventListener('click', function (event) {
|
||||||
|
var button = event.target && typeof event.target.closest === 'function' ? event.target.closest('[data-editor-size-action]') : null;
|
||||||
|
if (!button) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var action = String(button.getAttribute('data-editor-size-action') || '').trim();
|
||||||
|
if (action !== 'increase' && action !== 'decrease') {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var card = typeof button.closest === 'function' ? button.closest('[data-region-id]') : null;
|
||||||
|
var regionId = card ? card.getAttribute('data-region-id') : '';
|
||||||
|
if (!regionId) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
event.preventDefault();
|
||||||
|
adjustEditorHeight(regionId, action === 'increase' ? wysiwygEditorHeightStep : -wysiwygEditorHeightStep);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
function getEditorHiddenInput(regionId) {
|
function getEditorHiddenInput(regionId) {
|
||||||
if (!templateFields) {
|
if (!templateFields) {
|
||||||
return null;
|
return null;
|
||||||
@@ -209,6 +331,191 @@ export function createSlideFormEditorController(options) {
|
|||||||
: themeAssets.contentCss;
|
: themeAssets.contentCss;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function normalizeUploadPath(value) {
|
||||||
|
return String(value || '').trim();
|
||||||
|
}
|
||||||
|
|
||||||
|
function collectEditorImageUploadPaths(html) {
|
||||||
|
var matches = String(html || '').match(/\/media\/uploads\/[^^\s"'<>]+/g);
|
||||||
|
return matches ? Array.from(new Set(matches.map(normalizeUploadPath).filter(Boolean))) : [];
|
||||||
|
}
|
||||||
|
|
||||||
|
function collectCurrentEditorImageUploadPaths() {
|
||||||
|
var currentPaths = new Set();
|
||||||
|
|
||||||
|
editorInstances.forEach(function (editor, regionId) {
|
||||||
|
var hidden = getEditorHiddenInput(regionId);
|
||||||
|
var sourceElm = editor && editor.targetElm ? editor.targetElm : null;
|
||||||
|
var fallbackContent = hidden && hidden.value !== undefined ? hidden.value : (sourceElm && sourceElm.value !== undefined ? sourceElm.value : '');
|
||||||
|
collectEditorImageUploadPaths(getEditorContentSafely(editor, fallbackContent)).forEach(function (path) {
|
||||||
|
currentPaths.add(path);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
return currentPaths;
|
||||||
|
}
|
||||||
|
|
||||||
|
function getImageUploadCleanupPaths() {
|
||||||
|
var currentPaths = collectCurrentEditorImageUploadPaths();
|
||||||
|
return Array.from(editorImageUploadPaths).filter(function (path) {
|
||||||
|
return !currentPaths.has(path);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function getCommittedImageUploadCleanupPaths() {
|
||||||
|
var currentPaths = collectCurrentEditorImageUploadPaths();
|
||||||
|
return Array.from(committedEditorImageUploadPaths).filter(function (path) {
|
||||||
|
return !currentPaths.has(path);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function getPendingImageUploadPaths() {
|
||||||
|
return Array.from(editorImageUploadPaths).filter(function (path) {
|
||||||
|
return !committedEditorImageUploadPaths.has(path);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function queueImageUploadCleanupPaths(paths) {
|
||||||
|
Array.from(new Set((paths || []).map(normalizeUploadPath).filter(Boolean))).forEach(function (path) {
|
||||||
|
pendingEditorImageUploadCleanupPaths.add(path);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function getPendingImageUploadCleanupPaths() {
|
||||||
|
var currentPaths = collectCurrentEditorImageUploadPaths();
|
||||||
|
return Array.from(pendingEditorImageUploadCleanupPaths).filter(function (path) {
|
||||||
|
return !currentPaths.has(path);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function markImageUploadsCommitted() {
|
||||||
|
committedEditorImageUploadPaths = collectCurrentEditorImageUploadPaths();
|
||||||
|
}
|
||||||
|
|
||||||
|
function getAllImageUploadPaths() {
|
||||||
|
return Array.from(editorImageUploadPaths);
|
||||||
|
}
|
||||||
|
|
||||||
|
function clearImageUploadPaths() {
|
||||||
|
editorImageUploadPaths.clear();
|
||||||
|
committedEditorImageUploadPaths.clear();
|
||||||
|
pendingEditorImageUploadCleanupPaths.clear();
|
||||||
|
}
|
||||||
|
|
||||||
|
function getFileExtension(fileName) {
|
||||||
|
var match = String(fileName || '').toLowerCase().match(/\.([a-z0-9]+)$/);
|
||||||
|
return match ? String(match[1] || '') : '';
|
||||||
|
}
|
||||||
|
|
||||||
|
function getImageUploadValidationMessage(blobInfo) {
|
||||||
|
var blob = blobInfo && typeof blobInfo.blob === 'function' ? blobInfo.blob() : null;
|
||||||
|
var fileName = blobInfo && typeof blobInfo.filename === 'function' ? String(blobInfo.filename() || '') : '';
|
||||||
|
var mimeType = blob && blob.type ? String(blob.type || '').trim().toLowerCase() : '';
|
||||||
|
var extension = getFileExtension(fileName);
|
||||||
|
|
||||||
|
if (!blob) {
|
||||||
|
return 'No image file was provided.';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (Number(blob.size || 0) > imageUploadMaxBytes) {
|
||||||
|
return 'Image must be ' + imageUploadLimitLabel + ' or smaller. Larger images should use the dedicated Image region.';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mimeType && imageUploadAllowedMimeTypes.indexOf(mimeType) === -1) {
|
||||||
|
return 'This editor accepts PNG, JPG, GIF, WebP, or SVG images.';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!mimeType && extension && imageUploadAllowedExtensions.indexOf(extension) === -1) {
|
||||||
|
return 'This editor accepts PNG, JPG, GIF, WebP, or SVG images.';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!mimeType && !extension) {
|
||||||
|
return 'This editor accepts PNG, JPG, GIF, WebP, or SVG images.';
|
||||||
|
}
|
||||||
|
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
|
function uploadEditorImage(blobInfo, progress) {
|
||||||
|
var validationError = getImageUploadValidationMessage(blobInfo);
|
||||||
|
if (validationError) {
|
||||||
|
return Promise.reject(new Error(validationError));
|
||||||
|
}
|
||||||
|
|
||||||
|
return new Promise(function (resolve, reject) {
|
||||||
|
var xhr = new XMLHttpRequest();
|
||||||
|
var formData = new FormData();
|
||||||
|
var blob = blobInfo.blob();
|
||||||
|
var fileName = typeof blobInfo.filename === 'function' ? String(blobInfo.filename() || 'image') : 'image';
|
||||||
|
|
||||||
|
formData.append('file', blob, fileName);
|
||||||
|
|
||||||
|
xhr.open('POST', imageUploadUrl, true);
|
||||||
|
xhr.responseType = 'text';
|
||||||
|
xhr.withCredentials = true;
|
||||||
|
xhr.setRequestHeader('X-Requested-With', 'XMLHttpRequest');
|
||||||
|
xhr.setRequestHeader('Accept', 'application/json, text/plain, */*');
|
||||||
|
xhr.setRequestHeader('X-Upload-Context', imageUploadContext);
|
||||||
|
|
||||||
|
xhr.upload.onprogress = function (event) {
|
||||||
|
if (!progress) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!event || !event.lengthComputable || !event.total) {
|
||||||
|
progress(0);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
progress(Math.round((event.loaded / event.total) * 100));
|
||||||
|
};
|
||||||
|
|
||||||
|
xhr.onload = function () {
|
||||||
|
var responseText = String(xhr.responseText || '');
|
||||||
|
if (xhr.status < 200 || xhr.status >= 300) {
|
||||||
|
reject(new Error(responseText || 'Unable to upload image.'));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (responseText.trim().toLowerCase().indexOf('<!doctype html') === 0 || responseText.toLowerCase().indexOf('<html') !== -1) {
|
||||||
|
reject(new Error('Upload redirected to an HTML page. Please sign in again and retry.'));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var payload = {};
|
||||||
|
try {
|
||||||
|
payload = JSON.parse(responseText || '{}') || {};
|
||||||
|
} catch (_error) {
|
||||||
|
reject(new Error('Unable to parse the upload response.'));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!payload.path) {
|
||||||
|
reject(new Error('Unable to upload image.'));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (progress) {
|
||||||
|
progress(100);
|
||||||
|
}
|
||||||
|
|
||||||
|
editorImageUploadPaths.add(String(payload.path || '').trim());
|
||||||
|
|
||||||
|
resolve(String(payload.path || ''));
|
||||||
|
};
|
||||||
|
|
||||||
|
xhr.onerror = function () {
|
||||||
|
reject(new Error('Unable to upload image.'));
|
||||||
|
};
|
||||||
|
|
||||||
|
xhr.ontimeout = function () {
|
||||||
|
reject(new Error('Upload timed out. Please try again.'));
|
||||||
|
};
|
||||||
|
|
||||||
|
xhr.send(formData);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
function attachEditorEvents(regionId, editor) {
|
function attachEditorEvents(regionId, editor) {
|
||||||
var hidden = getEditorHiddenInput(regionId);
|
var hidden = getEditorHiddenInput(regionId);
|
||||||
var source = editor && editor.targetElm ? editor.targetElm : null;
|
var source = editor && editor.targetElm ? editor.targetElm : null;
|
||||||
@@ -244,6 +551,9 @@ export function createSlideFormEditorController(options) {
|
|||||||
['change', 'keyup', 'undo', 'redo', 'Paste', 'input'].forEach(function (eventName) {
|
['change', 'keyup', 'undo', 'redo', 'Paste', 'input'].forEach(function (eventName) {
|
||||||
editor.on(eventName, function () {
|
editor.on(eventName, function () {
|
||||||
syncState(true);
|
syncState(true);
|
||||||
|
if (hydrated) {
|
||||||
|
markFormDirty();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@@ -271,6 +581,8 @@ export function createSlideFormEditorController(options) {
|
|||||||
source.id = 'slide-editor-region-' + regionId;
|
source.id = 'slide-editor-region-' + regionId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
applyEditorHeight(regionId, getEditorHeight(regionId), { silent: true });
|
||||||
|
|
||||||
function registerInlineFormat(editor, formatName, styles) {
|
function registerInlineFormat(editor, formatName, styles) {
|
||||||
editor.formatter.register(formatName, {
|
editor.formatter.register(formatName, {
|
||||||
inline: 'span',
|
inline: 'span',
|
||||||
@@ -305,16 +617,29 @@ export function createSlideFormEditorController(options) {
|
|||||||
menubar: false,
|
menubar: false,
|
||||||
branding: false,
|
branding: false,
|
||||||
promotion: false,
|
promotion: false,
|
||||||
|
relative_urls: false,
|
||||||
|
remove_script_host: false,
|
||||||
|
convert_urls: true,
|
||||||
paste_data_images: false,
|
paste_data_images: false,
|
||||||
plugins: 'lists code advlist fullscreen table',
|
automatic_uploads: true,
|
||||||
toolbar: 'undo redo | fontfamily fontsizeinput | forecolor backcolor bold italic underlineformats removeformat | align lineheight indent outdent bullist numlist table chip | fullscreen',
|
images_file_types: imageUploadFileTypes,
|
||||||
|
images_upload_handler: uploadEditorImage,
|
||||||
|
plugins: 'lists code advlist fullscreen table image',
|
||||||
|
toolbar: 'undo redo | fontfamily fontsizeinput | forecolor backcolor bold italic underlineformats removeformat | align lineheight indent outdent bullist numlist table image chip | fullscreen',
|
||||||
toolbar_mode: 'sliding',
|
toolbar_mode: 'sliding',
|
||||||
license_key: 'gpl',
|
license_key: 'gpl',
|
||||||
|
height: getEditorHeight(regionId),
|
||||||
|
min_height: wysiwygEditorHeightMin,
|
||||||
|
table_default_attributes: {
|
||||||
|
border: '1',
|
||||||
|
cellpadding: '0',
|
||||||
|
cellspacing: '0'
|
||||||
|
},
|
||||||
skin: themeAssets.skinName,
|
skin: themeAssets.skinName,
|
||||||
skin_url: themeAssets.skinUrl,
|
skin_url: themeAssets.skinUrl,
|
||||||
content_css: getContentCss(),
|
content_css: getContentCss(),
|
||||||
body_class: themeAssets.bodyClass,
|
body_class: themeAssets.bodyClass,
|
||||||
content_style: 'body { font-family: ' + defaultEditorFontFamily + '; font-size: 32px; line-height: 1.5; background-color: ' + getEditorBackgroundColorValue() + '; } p { margin: 1em 0; } p:first-child { margin-top: 0; } p:last-child { margin-bottom: 1em; } table { border-collapse: collapse; width: 100%; } td, th { border: 1px solid currentColor; padding: 0.35em 0.5em; vertical-align: top; } th { font-weight: 700; }' + (editorContentStyle ? ' ' + editorContentStyle : ''),
|
content_style: 'body { font-family: ' + defaultEditorFontFamily + '; font-size: 32px; line-height: 1.5; background-color: ' + getEditorBackgroundColorValue() + '; } p { margin: 1em 0; } p:first-child { margin-top: 0; } p:last-child { margin-bottom: 1em; } table { border-collapse: collapse; border-spacing: 0; width: 100%; } td, th { border: 1px solid currentColor; padding: 0; vertical-align: top; } th { font-weight: 700; }' + (editorContentStyle ? ' ' + editorContentStyle : ''),
|
||||||
font_family_formats: getFontFamilyFormats(),
|
font_family_formats: getFontFamilyFormats(),
|
||||||
font_size_input_default_unit: 'px',
|
font_size_input_default_unit: 'px',
|
||||||
invalid_elements: 'a',
|
invalid_elements: 'a',
|
||||||
@@ -391,9 +716,11 @@ export function createSlideFormEditorController(options) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
editorInstances.set(regionId, editor);
|
editorInstances.set(regionId, editor);
|
||||||
|
applyEditorHeight(regionId, getEditorHeight(regionId), { silent: true });
|
||||||
if (editor.targetElm) {
|
if (editor.targetElm) {
|
||||||
editor.targetElm.value = editor.getContent({ format: 'html' });
|
editor.targetElm.value = editor.getContent({ format: 'html' });
|
||||||
}
|
}
|
||||||
|
markImageUploadsCommitted();
|
||||||
return editor;
|
return editor;
|
||||||
}).catch(function (error) {
|
}).catch(function (error) {
|
||||||
console.error('Failed to initialize TinyMCE.', error);
|
console.error('Failed to initialize TinyMCE.', error);
|
||||||
@@ -406,6 +733,7 @@ export function createSlideFormEditorController(options) {
|
|||||||
return Promise.resolve([]);
|
return Promise.resolve([]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bindEditorSizeControls();
|
||||||
watchThemeChanges();
|
watchThemeChanges();
|
||||||
|
|
||||||
var holders = Array.prototype.slice.call(templateFields.querySelectorAll('.editor-holder'));
|
var holders = Array.prototype.slice.call(templateFields.querySelectorAll('.editor-holder'));
|
||||||
@@ -431,7 +759,10 @@ export function createSlideFormEditorController(options) {
|
|||||||
return Promise.resolve();
|
return Promise.resolve();
|
||||||
});
|
});
|
||||||
|
|
||||||
return Promise.all(saves);
|
return Promise.all(saves).then(function (results) {
|
||||||
|
getCommittedImageUploadCleanupPaths();
|
||||||
|
return results;
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function destroyEditors() {
|
function destroyEditors() {
|
||||||
@@ -469,6 +800,14 @@ export function createSlideFormEditorController(options) {
|
|||||||
return {
|
return {
|
||||||
renderEditors: renderEditors,
|
renderEditors: renderEditors,
|
||||||
syncEditors: syncEditors,
|
syncEditors: syncEditors,
|
||||||
|
getImageUploadCleanupPaths: getImageUploadCleanupPaths,
|
||||||
|
getCommittedImageUploadCleanupPaths: getCommittedImageUploadCleanupPaths,
|
||||||
|
getPendingImageUploadPaths: getPendingImageUploadPaths,
|
||||||
|
getPendingImageUploadCleanupPaths: getPendingImageUploadCleanupPaths,
|
||||||
|
getAllImageUploadPaths: getAllImageUploadPaths,
|
||||||
|
queueImageUploadCleanupPaths: queueImageUploadCleanupPaths,
|
||||||
|
markImageUploadsCommitted: markImageUploadsCommitted,
|
||||||
|
clearImageUploadPaths: clearImageUploadPaths,
|
||||||
destroyEditors: function () {
|
destroyEditors: function () {
|
||||||
if (themeObserver) {
|
if (themeObserver) {
|
||||||
themeObserver.disconnect();
|
themeObserver.disconnect();
|
||||||
|
|||||||
@@ -30,6 +30,9 @@ export function createSlideFormRegionHelpers(options) {
|
|||||||
var defaultFontSize = Math.max(1, Number(settings.defaultFontSize || 32));
|
var defaultFontSize = Math.max(1, Number(settings.defaultFontSize || 32));
|
||||||
var uploadMaxLabel = String(settings.uploadMaxLabel || '100 MB');
|
var uploadMaxLabel = String(settings.uploadMaxLabel || '100 MB');
|
||||||
var uploadVideoMaxLabel = String(settings.uploadVideoMaxLabel || '1 GB');
|
var uploadVideoMaxLabel = String(settings.uploadVideoMaxLabel || '1 GB');
|
||||||
|
var uploadMaxBytes = Number(settings.uploadMaxBytes || 100 * 1024 * 1024);
|
||||||
|
var uploadVideoMaxBytes = Number(settings.uploadVideoMaxBytes || 1024 * 1024 * 1024);
|
||||||
|
var uploadMimeTypes = Array.isArray(settings.uploadMimeTypes) ? settings.uploadMimeTypes : [];
|
||||||
|
|
||||||
function sanitizeFontSize(value) {
|
function sanitizeFontSize(value) {
|
||||||
var raw = String(value || '').trim().toLowerCase();
|
var raw = String(value || '').trim().toLowerCase();
|
||||||
@@ -539,6 +542,9 @@ export function createSlideFormRegionHelpers(options) {
|
|||||||
regionRatio: reduceAspectRatio(region.width, region.height),
|
regionRatio: reduceAspectRatio(region.width, region.height),
|
||||||
uploadMaxLabel: uploadMaxLabel,
|
uploadMaxLabel: uploadMaxLabel,
|
||||||
uploadVideoMaxLabel: uploadVideoMaxLabel,
|
uploadVideoMaxLabel: uploadVideoMaxLabel,
|
||||||
|
uploadMaxBytes: uploadMaxBytes,
|
||||||
|
uploadVideoMaxBytes: uploadVideoMaxBytes,
|
||||||
|
uploadMimeTypes: uploadMimeTypes,
|
||||||
disableAudio: (existingContent[region.region_key] || {}).disable_audio,
|
disableAudio: (existingContent[region.region_key] || {}).disable_audio,
|
||||||
config: region.region_type === 'api' ? getCurrentApiConfig(region) : region.region_type === 'timetable' ? getCurrentTimetableConfig(region) : getCurrentRssConfig(region),
|
config: region.region_type === 'api' ? getCurrentApiConfig(region) : region.region_type === 'timetable' ? getCurrentTimetableConfig(region) : getCurrentRssConfig(region),
|
||||||
style: getCurrentTextStyle(region),
|
style: getCurrentTextStyle(region),
|
||||||
@@ -579,6 +585,9 @@ export function createSlideFormRegionHelpers(options) {
|
|||||||
regionRatio: reduceAspectRatio(region.width, region.height),
|
regionRatio: reduceAspectRatio(region.width, region.height),
|
||||||
uploadMaxLabel: uploadMaxLabel,
|
uploadMaxLabel: uploadMaxLabel,
|
||||||
uploadVideoMaxLabel: uploadVideoMaxLabel,
|
uploadVideoMaxLabel: uploadVideoMaxLabel,
|
||||||
|
uploadMaxBytes: uploadMaxBytes,
|
||||||
|
uploadVideoMaxBytes: uploadVideoMaxBytes,
|
||||||
|
uploadMimeTypes: uploadMimeTypes,
|
||||||
disableAudio: currentContent.disable_audio,
|
disableAudio: currentContent.disable_audio,
|
||||||
config: region.region_type === 'api' ? apiConfig : region.region_type === 'timetable' ? getCurrentTimetableConfig(region) : rssConfig,
|
config: region.region_type === 'api' ? apiConfig : region.region_type === 'timetable' ? getCurrentTimetableConfig(region) : rssConfig,
|
||||||
style: textStyle,
|
style: textStyle,
|
||||||
|
|||||||
@@ -6,6 +6,14 @@ import { createSlideFormPreviewHelpers } from '/assets/js/slides/slide-form-prev
|
|||||||
(function () {
|
(function () {
|
||||||
var DEFAULT_FONT_SIZE = 32;
|
var DEFAULT_FONT_SIZE = 32;
|
||||||
|
|
||||||
|
function formatUploadLimitLabel(bytes) {
|
||||||
|
var megabytes = Number(bytes || 0) / 1024 / 1024;
|
||||||
|
if (megabytes >= 1024 && megabytes % 1024 === 0) {
|
||||||
|
return String(megabytes / 1024) + ' GB';
|
||||||
|
}
|
||||||
|
return (Number.isInteger(megabytes) ? String(megabytes) : megabytes.toFixed(2).replace(/0+$/, '').replace(/\.$/, '')) + ' MB';
|
||||||
|
}
|
||||||
|
|
||||||
var dataElement = document.getElementById('slide-editor-data');
|
var dataElement = document.getElementById('slide-editor-data');
|
||||||
if (!dataElement) {
|
if (!dataElement) {
|
||||||
return;
|
return;
|
||||||
@@ -37,10 +45,14 @@ import { createSlideFormPreviewHelpers } from '/assets/js/slides/slide-form-prev
|
|||||||
var slidePreviewEmpty = document.getElementById('slide-preview-empty');
|
var slidePreviewEmpty = document.getElementById('slide-preview-empty');
|
||||||
var slidePreviewOverlay = document.getElementById('slide-preview-overlay');
|
var slidePreviewOverlay = document.getElementById('slide-preview-overlay');
|
||||||
var openPreviewPopupButton = document.getElementById('open-preview-popup');
|
var openPreviewPopupButton = document.getElementById('open-preview-popup');
|
||||||
var uploadMaxBytes = 100 * 1024 * 1024;
|
var uploadLimits = slideEditorData.uploadLimits || {};
|
||||||
var uploadMaxLabel = '100 MB';
|
var uploadMaxBytes = Number(uploadLimits.imageMaxBytes || 100 * 1024 * 1024);
|
||||||
var uploadVideoMaxBytes = 1024 * 1024 * 1024;
|
var uploadMaxLabel = formatUploadLimitLabel(uploadMaxBytes);
|
||||||
var uploadVideoMaxLabel = '1 GB';
|
var uploadVideoMaxBytes = Number(uploadLimits.videoMaxBytes || 1024 * 1024 * 1024);
|
||||||
|
var uploadVideoMaxLabel = formatUploadLimitLabel(uploadVideoMaxBytes);
|
||||||
|
var wysiwygImageUploadMaxBytes = Number(uploadLimits.wysiwygImageMaxBytes || 2 * 1024 * 1024);
|
||||||
|
var wysiwygImageUploadLimitLabel = formatUploadLimitLabel(wysiwygImageUploadMaxBytes);
|
||||||
|
var uploadMimeTypes = Array.isArray(uploadLimits.allowedMimeTypes) ? uploadLimits.allowedMimeTypes : [];
|
||||||
var videoDurationCache = Object.create(null);
|
var videoDurationCache = Object.create(null);
|
||||||
var previewRenderFrame = 0;
|
var previewRenderFrame = 0;
|
||||||
var previewPopupWindow = null;
|
var previewPopupWindow = null;
|
||||||
@@ -106,7 +118,14 @@ import { createSlideFormPreviewHelpers } from '/assets/js/slides/slide-form-prev
|
|||||||
defaultFontSize: DEFAULT_FONT_SIZE,
|
defaultFontSize: DEFAULT_FONT_SIZE,
|
||||||
fontFamilyFormats: slideEditorData.fontFamilyFormats || '',
|
fontFamilyFormats: slideEditorData.fontFamilyFormats || '',
|
||||||
fontStylesheetHref: fontStylesheetHref,
|
fontStylesheetHref: fontStylesheetHref,
|
||||||
|
imageUploadMaxBytes: wysiwygImageUploadMaxBytes,
|
||||||
|
imageUploadLimitLabel: wysiwygImageUploadLimitLabel,
|
||||||
|
imageUploadContext: 'wysiwyg',
|
||||||
|
uploadMimeTypes: uploadMimeTypes,
|
||||||
getRegionTypeModule: getRegionTypeModule,
|
getRegionTypeModule: getRegionTypeModule,
|
||||||
|
markFormDirty: function () {
|
||||||
|
slideForm.dataset.dirty = 'true';
|
||||||
|
},
|
||||||
getEditorBackgroundColor: function () {
|
getEditorBackgroundColor: function () {
|
||||||
var template = getTemplateById(templateSelect.value);
|
var template = getTemplateById(templateSelect.value);
|
||||||
return template && template.background_color ? String(template.background_color) : '#111111';
|
return template && template.background_color ? String(template.background_color) : '#111111';
|
||||||
@@ -123,6 +142,9 @@ import { createSlideFormPreviewHelpers } from '/assets/js/slides/slide-form-prev
|
|||||||
defaultFontSize: DEFAULT_FONT_SIZE,
|
defaultFontSize: DEFAULT_FONT_SIZE,
|
||||||
uploadMaxLabel: uploadMaxLabel,
|
uploadMaxLabel: uploadMaxLabel,
|
||||||
uploadVideoMaxLabel: uploadVideoMaxLabel,
|
uploadVideoMaxLabel: uploadVideoMaxLabel,
|
||||||
|
uploadMaxBytes: uploadMaxBytes,
|
||||||
|
uploadVideoMaxBytes: uploadVideoMaxBytes,
|
||||||
|
uploadMimeTypes: uploadMimeTypes,
|
||||||
escapeHtml: escapeHtml,
|
escapeHtml: escapeHtml,
|
||||||
getRegionTypeModule: getRegionTypeModule,
|
getRegionTypeModule: getRegionTypeModule,
|
||||||
requestPreviewRender: requestPreviewRender
|
requestPreviewRender: requestPreviewRender
|
||||||
@@ -820,6 +842,16 @@ import { createSlideFormPreviewHelpers } from '/assets/js/slides/slide-form-prev
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
templateFields.querySelectorAll('input[type="url"][name^="region_webpage_"]').forEach(function (input) {
|
||||||
|
input.addEventListener('input', function () {
|
||||||
|
templateSelectorLock.markEdited();
|
||||||
|
});
|
||||||
|
|
||||||
|
input.addEventListener('change', function () {
|
||||||
|
templateSelectorLock.markEdited();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
if (existingTemplateId && hasExistingSlideContent()) {
|
if (existingTemplateId && hasExistingSlideContent()) {
|
||||||
templateSelectorLock.arm();
|
templateSelectorLock.arm();
|
||||||
templateSelectorLock.markEdited();
|
templateSelectorLock.markEdited();
|
||||||
@@ -875,18 +907,42 @@ import { createSlideFormPreviewHelpers } from '/assets/js/slides/slide-form-prev
|
|||||||
|
|
||||||
templateSelect.addEventListener('change', renderTemplate);
|
templateSelect.addEventListener('change', renderTemplate);
|
||||||
templateFields.addEventListener('change', function () {
|
templateFields.addEventListener('change', function () {
|
||||||
|
var webpageInput = event.target && typeof event.target.matches === 'function' && event.target.matches('input[type="url"][name^="region_webpage_"]');
|
||||||
|
if (webpageInput) {
|
||||||
|
templateSelectorLock.arm();
|
||||||
|
templateSelectorLock.markEdited();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
templateSelectorLock.arm();
|
templateSelectorLock.arm();
|
||||||
templateSelectorLock.markEdited();
|
templateSelectorLock.markEdited();
|
||||||
requestPreviewRender();
|
requestPreviewRender();
|
||||||
});
|
});
|
||||||
templateFields.addEventListener('input', function () {
|
templateFields.addEventListener('input', function () {
|
||||||
|
var webpageInput = event.target && typeof event.target.matches === 'function' && event.target.matches('input[type="url"][name^="region_webpage_"]');
|
||||||
|
if (webpageInput) {
|
||||||
|
templateSelectorLock.arm();
|
||||||
|
templateSelectorLock.markEdited();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
templateSelectorLock.arm();
|
templateSelectorLock.arm();
|
||||||
templateSelectorLock.markEdited();
|
templateSelectorLock.markEdited();
|
||||||
requestPreviewRender();
|
requestPreviewRender();
|
||||||
});
|
});
|
||||||
templateFields.addEventListener('click', function (event) {
|
templateFields.addEventListener('click', function (event) {
|
||||||
var button = event.target && typeof event.target.closest === 'function' ? event.target.closest('[data-api-items-path-reset]') : null;
|
var button = event.target && typeof event.target.closest === 'function' ? event.target.closest('[data-api-items-path-reset]') : null;
|
||||||
|
var webpageUpdateButton = event.target && typeof event.target.closest === 'function' ? event.target.closest('[data-webpage-preview-update]') : null;
|
||||||
if (!button) {
|
if (!button) {
|
||||||
|
if (!webpageUpdateButton) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (webpageUpdateButton) {
|
||||||
|
templateSelectorLock.arm();
|
||||||
|
templateSelectorLock.markEdited();
|
||||||
|
requestPreviewRender();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -923,6 +979,12 @@ import { createSlideFormPreviewHelpers } from '/assets/js/slides/slide-form-prev
|
|||||||
if (regionMediaController) {
|
if (regionMediaController) {
|
||||||
regionMediaController.queueUploadCleanup(regionMediaController.getPendingUploadCleanupPaths());
|
regionMediaController.queueUploadCleanup(regionMediaController.getPendingUploadCleanupPaths());
|
||||||
}
|
}
|
||||||
|
if (slideFormEditorController && typeof slideFormEditorController.getCommittedImageUploadCleanupPaths === 'function' && regionMediaController) {
|
||||||
|
regionMediaController.queueUploadCleanup(slideFormEditorController.getCommittedImageUploadCleanupPaths());
|
||||||
|
}
|
||||||
|
if (slideFormEditorController && typeof slideFormEditorController.getImageUploadCleanupPaths === 'function' && regionMediaController) {
|
||||||
|
regionMediaController.queueUploadCleanup(slideFormEditorController.getImageUploadCleanupPaths());
|
||||||
|
}
|
||||||
if (previewPopupWindow && !previewPopupWindow.closed) {
|
if (previewPopupWindow && !previewPopupWindow.closed) {
|
||||||
previewPopupWindow.close();
|
previewPopupWindow.close();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -14,6 +14,7 @@
|
|||||||
var currentInput = null;
|
var currentInput = null;
|
||||||
var currentFile = null;
|
var currentFile = null;
|
||||||
var currentObjectUrl = '';
|
var currentObjectUrl = '';
|
||||||
|
var cropperFrame = modal.querySelector('.slide-image-cropper-frame');
|
||||||
var flipX = 1;
|
var flipX = 1;
|
||||||
var flipY = 1;
|
var flipY = 1;
|
||||||
var currentAspectRatio = NaN;
|
var currentAspectRatio = NaN;
|
||||||
@@ -22,6 +23,14 @@
|
|||||||
var listenersAttached = false;
|
var listenersAttached = false;
|
||||||
var uploadMaxBytes = 100 * 1024 * 1024;
|
var uploadMaxBytes = 100 * 1024 * 1024;
|
||||||
var uploadMaxLabel = '100 MB';
|
var uploadMaxLabel = '100 MB';
|
||||||
|
var editorDataElement = document.getElementById('slide-editor-data');
|
||||||
|
try {
|
||||||
|
var editorData = JSON.parse(editorDataElement && (editorDataElement.value || editorDataElement.textContent) || '{}') || {};
|
||||||
|
uploadMaxBytes = Number(editorData.uploadLimits && editorData.uploadLimits.imageMaxBytes) || uploadMaxBytes;
|
||||||
|
var megabytes = uploadMaxBytes / 1024 / 1024;
|
||||||
|
uploadMaxLabel = Number.isInteger(megabytes) ? String(megabytes) + ' MB' : megabytes.toFixed(2).replace(/0+$/, '').replace(/\.$/, '') + ' MB';
|
||||||
|
} catch (_error) {
|
||||||
|
}
|
||||||
|
|
||||||
function getRegionId(input) {
|
function getRegionId(input) {
|
||||||
var match = String(input && input.name || '').match(/^region_image_(\d+)$/);
|
var match = String(input && input.name || '').match(/^region_image_(\d+)$/);
|
||||||
@@ -40,6 +49,12 @@
|
|||||||
status.textContent = String(message || '');
|
status.textContent = String(message || '');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function setCropperLoading(loading) {
|
||||||
|
if (cropperFrame) {
|
||||||
|
cropperFrame.classList.toggle('is-loading', Boolean(loading));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
function showModal() {
|
function showModal() {
|
||||||
if (window.pulseModal && typeof window.pulseModal.show === 'function') {
|
if (window.pulseModal && typeof window.pulseModal.show === 'function') {
|
||||||
window.pulseModal.show(modal);
|
window.pulseModal.show(modal);
|
||||||
@@ -79,6 +94,7 @@
|
|||||||
function resetModalState() {
|
function resetModalState() {
|
||||||
destroyCropper();
|
destroyCropper();
|
||||||
revokeObjectUrl();
|
revokeObjectUrl();
|
||||||
|
setCropperLoading(false);
|
||||||
currentInput = null;
|
currentInput = null;
|
||||||
currentFile = null;
|
currentFile = null;
|
||||||
flipX = 1;
|
flipX = 1;
|
||||||
@@ -118,6 +134,75 @@
|
|||||||
return width / height;
|
return width / height;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function isSvgFile(file) {
|
||||||
|
if (!file) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return String(file.type || '').toLowerCase() === 'image/svg+xml' || /\.svg$/i.test(String(file.name || ''));
|
||||||
|
}
|
||||||
|
|
||||||
|
function isGifFile(file) {
|
||||||
|
if (!file) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return String(file.type || '').toLowerCase() === 'image/gif' || /\.gif$/i.test(String(file.name || ''));
|
||||||
|
}
|
||||||
|
|
||||||
|
function isSpecialRasterizationFile(file) {
|
||||||
|
return isSvgFile(file) || isGifFile(file);
|
||||||
|
}
|
||||||
|
|
||||||
|
function getSpecialFileWarning(file) {
|
||||||
|
if (isGifFile(file)) {
|
||||||
|
return 'GIF selected. If you crop, rotate, or flip this image, it will be rasterized and the animation will be lost. Leave the full image selected to keep the original GIF.';
|
||||||
|
}
|
||||||
|
|
||||||
|
return 'SVG selected. If you crop, rotate, or flip this image, it will be rasterized. Leave the full image selected to keep the original SVG.';
|
||||||
|
}
|
||||||
|
|
||||||
|
function isOriginalSpecialSelection() {
|
||||||
|
if (!cropper || !currentFile || !isSpecialRasterizationFile(currentFile) || typeof cropper.getData !== 'function' || typeof cropper.getImageData !== 'function') {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
var cropData = cropper.getData(true) || {};
|
||||||
|
var imageData = cropper.getImageData() || {};
|
||||||
|
var width = Number(imageData.naturalWidth || 0);
|
||||||
|
var height = Number(imageData.naturalHeight || 0);
|
||||||
|
|
||||||
|
if (!Number.isFinite(width) || !Number.isFinite(height) || width <= 0 || height <= 0) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return Math.abs(Number(cropData.x || 0)) < 0.5 &&
|
||||||
|
Math.abs(Number(cropData.y || 0)) < 0.5 &&
|
||||||
|
Math.abs(Number(cropData.width || 0) - width) < 0.5 &&
|
||||||
|
Math.abs(Number(cropData.height || 0) - height) < 0.5 &&
|
||||||
|
Math.abs(Number(cropData.rotate || 0)) < 0.5 &&
|
||||||
|
Number(cropData.scaleX || 1) === 1 &&
|
||||||
|
Number(cropData.scaleY || 1) === 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
function getRasterizedFileName(sourceName) {
|
||||||
|
var name = String(sourceName || '').trim();
|
||||||
|
|
||||||
|
if (!name) {
|
||||||
|
return 'slide-region-image.png';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (/\.svg$/i.test(name)) {
|
||||||
|
return name.replace(/\.svg$/i, '.png');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (/\.[a-z0-9]+$/i.test(name)) {
|
||||||
|
return name.replace(/\.[a-z0-9]+$/i, '.png');
|
||||||
|
}
|
||||||
|
|
||||||
|
return name + '.png';
|
||||||
|
}
|
||||||
|
|
||||||
function setActiveRatioButton(value) {
|
function setActiveRatioButton(value) {
|
||||||
var targetValue = ratioLabelForValue(value);
|
var targetValue = ratioLabelForValue(value);
|
||||||
modal.querySelectorAll('[data-slide-image-cropper-action="ratio"]').forEach(function (button) {
|
modal.querySelectorAll('[data-slide-image-cropper-action="ratio"]').forEach(function (button) {
|
||||||
@@ -183,6 +268,8 @@
|
|||||||
zoomOnTouch: true,
|
zoomOnTouch: true,
|
||||||
zoomOnWheel: true,
|
zoomOnWheel: true,
|
||||||
ready: function () {
|
ready: function () {
|
||||||
|
setCropperLoading(false);
|
||||||
|
|
||||||
if (cropper && cropper.container) {
|
if (cropper && cropper.container) {
|
||||||
cropper.container.style.width = '100%';
|
cropper.container.style.width = '100%';
|
||||||
cropper.container.style.height = '560px';
|
cropper.container.style.height = '560px';
|
||||||
@@ -209,7 +296,10 @@
|
|||||||
|
|
||||||
setButtonState(false);
|
setButtonState(false);
|
||||||
setActiveRatioButton(currentAspectRatio === undefined ? 'free' : currentAspectRatio);
|
setActiveRatioButton(currentAspectRatio === undefined ? 'free' : currentAspectRatio);
|
||||||
setStatus('Use the toolbar to crop, rotate, or flip the image before applying it.');
|
|
||||||
|
if (isSpecialRasterizationFile(currentFile)) {
|
||||||
|
setStatus(getSpecialFileWarning(currentFile));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function openEditor(input, file) {
|
function openEditor(input, file) {
|
||||||
@@ -220,8 +310,9 @@
|
|||||||
currentAspectRatio = 'free';
|
currentAspectRatio = 'free';
|
||||||
currentRegionAspectRatio = parseAspectRatio(input && input.dataset && input.dataset.slideImageCropperRegionRatio);
|
currentRegionAspectRatio = parseAspectRatio(input && input.dataset && input.dataset.slideImageCropperRegionRatio);
|
||||||
currentRegionAspectRatioLabel = String(input && input.dataset && input.dataset.slideImageCropperRegionRatioLabel || 'Region').trim() || 'Region';
|
currentRegionAspectRatioLabel = String(input && input.dataset && input.dataset.slideImageCropperRegionRatioLabel || 'Region').trim() || 'Region';
|
||||||
|
setCropperLoading(true);
|
||||||
setButtonState(true);
|
setButtonState(true);
|
||||||
setStatus('Loading image editor...');
|
setStatus(isSpecialRasterizationFile(file) ? getSpecialFileWarning(file) : '');
|
||||||
|
|
||||||
modal.querySelectorAll('[data-slide-image-cropper-action="ratio"][data-slide-image-cropper-ratio="region"]').forEach(function (button) {
|
modal.querySelectorAll('[data-slide-image-cropper-action="ratio"][data-slide-image-cropper-ratio="region"]').forEach(function (button) {
|
||||||
button.title = currentRegionAspectRatioLabel ? 'Region ratio ' + currentRegionAspectRatioLabel : 'Region ratio';
|
button.title = currentRegionAspectRatioLabel ? 'Region ratio ' + currentRegionAspectRatioLabel : 'Region ratio';
|
||||||
@@ -286,11 +377,62 @@
|
|||||||
hideModal();
|
hideModal();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function finalizeCurrentSvgSelection() {
|
||||||
|
if (!currentFile) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isOriginalSpecialSelection()) {
|
||||||
|
finalizeCropFile(currentFile);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
setButtonState(true);
|
||||||
|
setStatus('Creating a rasterized image from the crop...');
|
||||||
|
|
||||||
|
var canvas = cropper && typeof cropper.getCroppedCanvas === 'function' ? cropper.getCroppedCanvas({
|
||||||
|
fillColor: 'transparent',
|
||||||
|
imageSmoothingEnabled: true,
|
||||||
|
imageSmoothingQuality: 'high'
|
||||||
|
}) : null;
|
||||||
|
|
||||||
|
if (!canvas) {
|
||||||
|
setStatus('Unable to create the cropped image.');
|
||||||
|
setButtonState(false);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
canvas.toBlob(function (blob) {
|
||||||
|
if (!blob) {
|
||||||
|
setStatus('Unable to create the cropped image.');
|
||||||
|
setButtonState(false);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var finalFile = new File([blob], getRasterizedFileName(currentFile.name), {
|
||||||
|
lastModified: Date.now(),
|
||||||
|
type: blob.type || 'image/png'
|
||||||
|
});
|
||||||
|
|
||||||
|
finalizeCropFile(finalFile);
|
||||||
|
}, 'image/png');
|
||||||
|
}
|
||||||
|
|
||||||
function commitCrop() {
|
function commitCrop() {
|
||||||
if (!currentInput || !currentFile) {
|
if (!currentInput || !currentFile) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (isSpecialRasterizationFile(currentFile)) {
|
||||||
|
if (!cropper) {
|
||||||
|
finalizeCropFile(currentFile);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
finalizeCurrentSvgSelection();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (!cropper) {
|
if (!cropper) {
|
||||||
finalizeCropFile(currentFile);
|
finalizeCropFile(currentFile);
|
||||||
return;
|
return;
|
||||||
@@ -381,7 +523,7 @@
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!/^image\//i.test(file.type || '')) {
|
if (!/^image\//i.test(file.type || '') && !/\.svg$/i.test(String(file.name || ''))) {
|
||||||
input.value = '';
|
input.value = '';
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,7 +13,26 @@ function normalizeReturnUrl(value) {
|
|||||||
return url;
|
return url;
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = function renderAccountPage(currentUser, message, returnUrl) {
|
module.exports = function renderAccountPage(currentUser, message, returnUrl, allowUserSessionRevocation, sessions, passwordRequirements) {
|
||||||
|
const requirements = passwordRequirements || {
|
||||||
|
minimumLength: 10,
|
||||||
|
minimumCategories: 3,
|
||||||
|
requireLowercase: false,
|
||||||
|
requireUppercase: false,
|
||||||
|
requireNumber: false,
|
||||||
|
requireSymbol: false
|
||||||
|
};
|
||||||
|
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');
|
||||||
|
const passwordRequirementsText = requiredCategories.length
|
||||||
|
? 'Use at least ' + requirements.minimumLength + ' characters and include ' + requiredCategories.join(', ') + '.'
|
||||||
|
: requirements.minimumCategories === 4
|
||||||
|
? 'Use at least ' + requirements.minimumLength + ' characters and include uppercase, lowercase, number, and symbol.'
|
||||||
|
: 'Use at least ' + requirements.minimumLength + ' characters and include ' + requirements.minimumCategories + ' of: uppercase, lowercase, number, and symbol.';
|
||||||
|
|
||||||
return renderView('account/password', {
|
return renderView('account/password', {
|
||||||
title: 'My account',
|
title: 'My account',
|
||||||
active: 'account',
|
active: 'account',
|
||||||
@@ -21,6 +40,10 @@ module.exports = function renderAccountPage(currentUser, message, returnUrl) {
|
|||||||
message: message || '',
|
message: message || '',
|
||||||
username: currentUser ? currentUser.username : '',
|
username: currentUser ? currentUser.username : '',
|
||||||
name: currentUser ? String(currentUser.name || '') : '',
|
name: currentUser ? String(currentUser.name || '') : '',
|
||||||
returnUrl: normalizeReturnUrl(returnUrl)
|
returnUrl: normalizeReturnUrl(returnUrl),
|
||||||
|
allowUserSessionRevocation: Boolean(allowUserSessionRevocation),
|
||||||
|
sessions: Array.isArray(sessions) ? sessions : [],
|
||||||
|
passwordMinimumLength: requirements.minimumLength,
|
||||||
|
passwordRequirementsText: passwordRequirementsText
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
@@ -1,5 +1,7 @@
|
|||||||
// Admin account route registration and profile helpers.
|
// Admin account route registration and profile helpers.
|
||||||
|
|
||||||
|
const { fetchAppSettings } = require('../../../data/app-settings');
|
||||||
|
|
||||||
module.exports = function registerAccountRoutes(app, deps) {
|
module.exports = function registerAccountRoutes(app, deps) {
|
||||||
const pool = deps.pool;
|
const pool = deps.pool;
|
||||||
const common = deps.common;
|
const common = deps.common;
|
||||||
@@ -11,9 +13,129 @@ module.exports = function registerAccountRoutes(app, deps) {
|
|||||||
const validatePasswordStrength = deps.validatePasswordStrength;
|
const validatePasswordStrength = deps.validatePasswordStrength;
|
||||||
const createUserSession = deps.createUserSession;
|
const createUserSession = deps.createUserSession;
|
||||||
const setSessionCookie = deps.setSessionCookie;
|
const setSessionCookie = deps.setSessionCookie;
|
||||||
|
const getSessionMaxAgeMs = deps.getSessionMaxAgeMs;
|
||||||
|
const parseCookies = deps.parseCookies;
|
||||||
|
const hashSessionToken = deps.hashSessionToken;
|
||||||
|
const sessionCookieName = deps.sessionCookieName;
|
||||||
|
const recordRequestAuditEvent = deps.recordRequestAuditEvent;
|
||||||
|
|
||||||
|
async function getPasswordRequirements() {
|
||||||
|
const settings = await fetchAppSettings(pool);
|
||||||
|
return buildPasswordRequirements(settings);
|
||||||
|
}
|
||||||
|
|
||||||
|
function buildPasswordRequirements(settings) {
|
||||||
|
return {
|
||||||
|
minimumLength: settings['security.password_min_length'],
|
||||||
|
minimumCategories: settings['security.password_min_categories'],
|
||||||
|
requireLowercase: settings['security.password_require_lowercase'],
|
||||||
|
requireUppercase: settings['security.password_require_uppercase'],
|
||||||
|
requireNumber: settings['security.password_require_number'],
|
||||||
|
requireSymbol: settings['security.password_require_symbol']
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
function getSessionMetadata(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 || 'unknown').trim(),
|
||||||
|
userAgent: req && req.headers && req.headers['user-agent']
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
app.get('/account', function (req, res) {
|
app.get('/account', function (req, res) {
|
||||||
res.send(pages.renderAccountPage(req.currentUser, req.query.message ? String(req.query.message) : '', '/dashboard'));
|
fetchAppSettings(pool).then(function (settings) {
|
||||||
|
const passwordRequirements = buildPasswordRequirements(settings);
|
||||||
|
if (!settings['security.allow_user_session_revocation']) {
|
||||||
|
return res.send(pages.renderAccountPage(req.currentUser, req.query.message ? String(req.query.message) : '', '/dashboard', false, [], passwordRequirements));
|
||||||
|
}
|
||||||
|
const cookies = parseCookies(req.headers.cookie || '');
|
||||||
|
const tokenHash = cookies[sessionCookieName] ? hashSessionToken(cookies[sessionCookieName]) : '';
|
||||||
|
return pool.query(
|
||||||
|
'SELECT id, session_hash, 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',
|
||||||
|
[req.currentUser.id]
|
||||||
|
).then(function (result) {
|
||||||
|
const rows = result[0] || [];
|
||||||
|
const sessions = rows.map(function (session) {
|
||||||
|
return {
|
||||||
|
id: Number(session.id),
|
||||||
|
isCurrent: Boolean(tokenHash && session.session_hash === tokenHash),
|
||||||
|
ipAddress: String(session.ip_address || 'Unknown'),
|
||||||
|
userAgent: String(session.user_agent || 'Unknown browser'),
|
||||||
|
createdAtLabel: formatDashboardDate(session.created_at),
|
||||||
|
lastUsedAtLabel: formatDashboardDate(session.last_used_at),
|
||||||
|
expiresAtLabel: formatDashboardDate(session.expires_at)
|
||||||
|
};
|
||||||
|
});
|
||||||
|
res.send(pages.renderAccountPage(req.currentUser, req.query.message ? String(req.query.message) : '', '/dashboard', true, sessions, passwordRequirements));
|
||||||
|
});
|
||||||
|
}).catch(function (error) {
|
||||||
|
res.status(500).send(error.message || 'Unable to load account settings.');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
app.post('/account/sessions/:id/revoke', async function (req, res, next) {
|
||||||
|
try {
|
||||||
|
const sessionId = Number(req.params.id);
|
||||||
|
if (!Number.isInteger(sessionId) || sessionId <= 0) {
|
||||||
|
return res.status(400).send('Invalid session.');
|
||||||
|
}
|
||||||
|
const settings = await fetchAppSettings(pool);
|
||||||
|
if (!settings['security.allow_user_session_revocation']) {
|
||||||
|
return res.redirect('/account?message=' + encodeURIComponent('Signing out other sessions is disabled by an administrator.'));
|
||||||
|
}
|
||||||
|
const cookies = parseCookies(req.headers.cookie || '');
|
||||||
|
const token = cookies[sessionCookieName];
|
||||||
|
if (!token) {
|
||||||
|
return res.redirect('/account?message=' + encodeURIComponent('Current session could not be identified.'));
|
||||||
|
}
|
||||||
|
const [result] = await pool.query(
|
||||||
|
'DELETE FROM a_sessions WHERE id = ? AND user_id = ? AND session_hash <> ?',
|
||||||
|
[sessionId, req.currentUser.id, hashSessionToken(token)]
|
||||||
|
);
|
||||||
|
if (result && result.affectedRows && typeof recordRequestAuditEvent === 'function') {
|
||||||
|
await recordRequestAuditEvent(pool, req, {
|
||||||
|
category: 'sessions',
|
||||||
|
eventType: 'session.revoked',
|
||||||
|
actorUserId: req.currentUser.id,
|
||||||
|
targetType: 'user',
|
||||||
|
targetId: req.currentUser.id,
|
||||||
|
targetLabel: req.currentUser.username,
|
||||||
|
details: { scope: 'single' }
|
||||||
|
});
|
||||||
|
}
|
||||||
|
res.redirect('/account?message=' + encodeURIComponent(result && result.affectedRows ? 'Session signed out.' : 'The current session cannot be signed out.'));
|
||||||
|
} catch (error) {
|
||||||
|
next(error);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
app.post('/account/sessions/revoke', async function (req, res, next) {
|
||||||
|
try {
|
||||||
|
const settings = await fetchAppSettings(pool);
|
||||||
|
if (!settings['security.allow_user_session_revocation']) {
|
||||||
|
return res.redirect('/account?message=' + encodeURIComponent('Signing out other sessions is disabled by an administrator.'));
|
||||||
|
}
|
||||||
|
const cookies = parseCookies(req.headers.cookie || '');
|
||||||
|
const token = cookies[sessionCookieName];
|
||||||
|
if (token) {
|
||||||
|
await pool.query('DELETE FROM a_sessions WHERE user_id = ? AND session_hash <> ?', [req.currentUser.id, hashSessionToken(token)]);
|
||||||
|
}
|
||||||
|
if (typeof recordRequestAuditEvent === 'function') {
|
||||||
|
await recordRequestAuditEvent(pool, req, {
|
||||||
|
category: 'sessions',
|
||||||
|
eventType: 'session.revoked',
|
||||||
|
actorUserId: req.currentUser.id,
|
||||||
|
targetType: 'user',
|
||||||
|
targetId: req.currentUser.id,
|
||||||
|
targetLabel: req.currentUser.username,
|
||||||
|
details: { scope: 'other_sessions' }
|
||||||
|
});
|
||||||
|
}
|
||||||
|
res.redirect('/account?message=' + encodeURIComponent('Other active sessions were signed out.'));
|
||||||
|
} catch (error) {
|
||||||
|
next(error);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
app.post('/account/name', async function (req, res, next) {
|
app.post('/account/name', async function (req, res, next) {
|
||||||
@@ -53,7 +175,7 @@ module.exports = function registerAccountRoutes(app, deps) {
|
|||||||
if (!verifyPassword(currentPassword, user)) {
|
if (!verifyPassword(currentPassword, user)) {
|
||||||
return res.status(400).send('Current password is incorrect.');
|
return res.status(400).send('Current password is incorrect.');
|
||||||
}
|
}
|
||||||
const passwordStrengthMessage = validatePasswordStrength(newPassword);
|
const passwordStrengthMessage = validatePasswordStrength(newPassword, await getPasswordRequirements());
|
||||||
if (passwordStrengthMessage) {
|
if (passwordStrengthMessage) {
|
||||||
return res.status(400).send(passwordStrengthMessage);
|
return res.status(400).send(passwordStrengthMessage);
|
||||||
}
|
}
|
||||||
@@ -63,13 +185,25 @@ module.exports = function registerAccountRoutes(app, deps) {
|
|||||||
|
|
||||||
const passwordRecord = hashPassword(newPassword);
|
const passwordRecord = hashPassword(newPassword);
|
||||||
await pool.query(
|
await pool.query(
|
||||||
'UPDATE a_users SET password_hash = ?, password_salt = ?, password_iterations = ?, modified_by = ? WHERE id = ?',
|
'UPDATE a_users SET password_hash = ?, password_salt = ?, password_iterations = ?, must_change_password = 0, modified_by = ? WHERE id = ?',
|
||||||
[passwordRecord.hash, passwordRecord.salt, passwordRecord.iterations, getAuditUserId(req), user.id]
|
[passwordRecord.hash, passwordRecord.salt, passwordRecord.iterations, getAuditUserId(req), user.id]
|
||||||
);
|
);
|
||||||
await pool.query('DELETE FROM a_sessions WHERE user_id = ?', [user.id]);
|
await pool.query('DELETE FROM a_sessions WHERE user_id = ?', [user.id]);
|
||||||
|
if (typeof recordRequestAuditEvent === 'function') {
|
||||||
|
await recordRequestAuditEvent(pool, req, {
|
||||||
|
category: 'security',
|
||||||
|
eventType: 'password.changed',
|
||||||
|
actorUserId: user.id,
|
||||||
|
targetType: 'user',
|
||||||
|
targetId: user.id,
|
||||||
|
targetLabel: user.username,
|
||||||
|
details: { source: 'account' }
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
const token = await createUserSession(pool, user.id);
|
const sessionMaxAgeMs = typeof getSessionMaxAgeMs === 'function' ? await getSessionMaxAgeMs() : undefined;
|
||||||
setSessionCookie(res, token);
|
const token = await createUserSession(pool, user.id, sessionMaxAgeMs, getSessionMetadata(req));
|
||||||
|
setSessionCookie(res, token, sessionMaxAgeMs);
|
||||||
res.redirect('/account?message=' + encodeURIComponent('Password updated.'));
|
res.redirect('/account?message=' + encodeURIComponent('Password updated.'));
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
next(error);
|
next(error);
|
||||||
|
|||||||
@@ -3,6 +3,7 @@
|
|||||||
const fs = require('fs');
|
const fs = require('fs');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const { loadFontLibrary } = require('#src/web/lib/media/font-library');
|
const { loadFontLibrary } = require('#src/web/lib/media/font-library');
|
||||||
|
const { fetchAppSettings } = require('#src/data/app-settings');
|
||||||
const { PERMISSION_DENIED_MESSAGE } = require('#src/rbac');
|
const { PERMISSION_DENIED_MESSAGE } = require('#src/rbac');
|
||||||
|
|
||||||
module.exports = function registerContentRoutes(app, deps) {
|
module.exports = function registerContentRoutes(app, deps) {
|
||||||
@@ -19,6 +20,7 @@ module.exports = function registerContentRoutes(app, deps) {
|
|||||||
const removeUnusedUploadFiles = deps.removeUnusedUploadFiles;
|
const removeUnusedUploadFiles = deps.removeUnusedUploadFiles;
|
||||||
const syncPlaylistUploadsOnChange = deps.syncPlaylistUploadsOnChange;
|
const syncPlaylistUploadsOnChange = deps.syncPlaylistUploadsOnChange;
|
||||||
const getAuditUserId = deps.getAuditUserId;
|
const getAuditUserId = deps.getAuditUserId;
|
||||||
|
const recordRequestAuditEvent = deps.recordRequestAuditEvent;
|
||||||
const redirectAfterSave = deps.redirectAfterSave;
|
const redirectAfterSave = deps.redirectAfterSave;
|
||||||
const notifyPlayerScreens = deps.notifyPlayerScreens;
|
const notifyPlayerScreens = deps.notifyPlayerScreens;
|
||||||
const broadcastDashboardState = deps.broadcastDashboardState;
|
const broadcastDashboardState = deps.broadcastDashboardState;
|
||||||
@@ -33,6 +35,7 @@ module.exports = function registerContentRoutes(app, deps) {
|
|||||||
const { buildDuplicateCanvasSizeName, buildDuplicateCanvasSize } = require('#src/web/routes/signage/canvas-sizes/duplicate');
|
const { buildDuplicateCanvasSizeName, buildDuplicateCanvasSize } = require('#src/web/routes/signage/canvas-sizes/duplicate');
|
||||||
|
|
||||||
const LIST_PAGE_SIZE = 25;
|
const LIST_PAGE_SIZE = 25;
|
||||||
|
const WYSIWYG_IMAGE_UPLOAD_MAX_BYTES = 2 * 1024 * 1024;
|
||||||
const IMAGE_UPLOAD_MAX_BYTES = 100 * 1024 * 1024;
|
const IMAGE_UPLOAD_MAX_BYTES = 100 * 1024 * 1024;
|
||||||
const VIDEO_UPLOAD_MAX_BYTES = 1024 * 1024 * 1024;
|
const VIDEO_UPLOAD_MAX_BYTES = 1024 * 1024 * 1024;
|
||||||
|
|
||||||
@@ -41,6 +44,7 @@ module.exports = function registerContentRoutes(app, deps) {
|
|||||||
const rssData = await common.fetchRssFeedsData(pool);
|
const rssData = await common.fetchRssFeedsData(pool);
|
||||||
const apiData = typeof common.fetchApiSourcesData === 'function' ? await common.fetchApiSourcesData(pool) : { apiSources: [] };
|
const apiData = typeof common.fetchApiSourcesData === 'function' ? await common.fetchApiSourcesData(pool) : { apiSources: [] };
|
||||||
const timetableData = typeof common.fetchTimetablesData === 'function' ? await common.fetchTimetablesData(pool) : { timetableGroups: [] };
|
const timetableData = typeof common.fetchTimetablesData === 'function' ? await common.fetchTimetablesData(pool) : { timetableGroups: [] };
|
||||||
|
const appSettings = await fetchAppSettings(pool);
|
||||||
const apiSources = Array.isArray(apiData.apiSources) ? apiData.apiSources.map(function (source) {
|
const apiSources = Array.isArray(apiData.apiSources) ? apiData.apiSources.map(function (source) {
|
||||||
return Object.assign({}, source, {
|
return Object.assign({}, source, {
|
||||||
responseJson: typeof common.parseJsonSafe === 'function' ? common.parseJsonSafe(source.last_response_json) : null
|
responseJson: typeof common.parseJsonSafe === 'function' ? common.parseJsonSafe(source.last_response_json) : null
|
||||||
@@ -59,7 +63,13 @@ module.exports = function registerContentRoutes(app, deps) {
|
|||||||
rssFeeds: rssFeeds,
|
rssFeeds: rssFeeds,
|
||||||
apiSources: apiSources,
|
apiSources: apiSources,
|
||||||
timetableGroups: timetableData.timetableGroups || [],
|
timetableGroups: timetableData.timetableGroups || [],
|
||||||
fontLibrary: loadFontLibrary(deps.uploadDir)
|
fontLibrary: loadFontLibrary(deps.uploadDir),
|
||||||
|
uploadLimits: {
|
||||||
|
imageMaxBytes: Number(appSettings['uploads.image_max_bytes']) || IMAGE_UPLOAD_MAX_BYTES,
|
||||||
|
videoMaxBytes: Number(appSettings['uploads.video_max_bytes']) || VIDEO_UPLOAD_MAX_BYTES,
|
||||||
|
wysiwygImageMaxBytes: Number(appSettings['uploads.wysiwyg_image_max_bytes']) || WYSIWYG_IMAGE_UPLOAD_MAX_BYTES,
|
||||||
|
allowedMimeTypes: Array.isArray(appSettings['uploads.allowed_mime_types']) ? appSettings['uploads.allowed_mime_types'] : []
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -104,24 +114,42 @@ module.exports = function registerContentRoutes(app, deps) {
|
|||||||
next(error);
|
next(error);
|
||||||
}
|
}
|
||||||
|
|
||||||
function getUploadedFileMediaType(file) {
|
function getUploadedFileMediaType(file, uploadContext) {
|
||||||
const mimeType = String(file && file.mimetype || '').trim().toLowerCase();
|
const mimeType = String(file && file.mimetype || '').trim().toLowerCase();
|
||||||
const extension = path.extname(String(file && file.originalname || '')).toLowerCase();
|
const extension = path.extname(String(file && file.originalname || '')).toLowerCase();
|
||||||
|
const isWysiwyg = String(uploadContext || '').trim().toLowerCase() === 'wysiwyg';
|
||||||
|
|
||||||
|
if (isWysiwyg && mimeType.indexOf('image/') !== 0 && ['.png', '.jpg', '.jpeg', '.gif', '.webp', '.svg'].indexOf(extension) === -1) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
if (mimeType.indexOf('video/') === 0 || ['.mp4', '.webm', '.ogg', '.ogv', '.mov', '.avi', '.mkv'].indexOf(extension) !== -1) {
|
if (mimeType.indexOf('video/') === 0 || ['.mp4', '.webm', '.ogg', '.ogv', '.mov', '.avi', '.mkv'].indexOf(extension) !== -1) {
|
||||||
return 'video';
|
return 'video';
|
||||||
}
|
}
|
||||||
if (mimeType.indexOf('image/') === 0 || ['.png', '.jpg', '.jpeg', '.gif', '.webp', '.bmp', '.avif', '.tif', '.tiff'].indexOf(extension) !== -1) {
|
if (mimeType.indexOf('image/') === 0 || ['.png', '.jpg', '.jpeg', '.gif', '.webp', '.svg'].indexOf(extension) !== -1) {
|
||||||
return 'image';
|
return 'image';
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
function getUploadedFileLimitBytes(file) {
|
function getUploadedFileLimitBytes(file, uploadContext, settings) {
|
||||||
return getUploadedFileMediaType(file) === 'video' ? VIDEO_UPLOAD_MAX_BYTES : IMAGE_UPLOAD_MAX_BYTES;
|
if (String(uploadContext || '').trim().toLowerCase() === 'wysiwyg') {
|
||||||
|
return Number(settings && settings['uploads.wysiwyg_image_max_bytes']) || WYSIWYG_IMAGE_UPLOAD_MAX_BYTES;
|
||||||
|
}
|
||||||
|
|
||||||
|
return getUploadedFileMediaType(file, uploadContext) === 'video'
|
||||||
|
? Number(settings && settings['uploads.video_max_bytes']) || VIDEO_UPLOAD_MAX_BYTES
|
||||||
|
: Number(settings && settings['uploads.image_max_bytes']) || IMAGE_UPLOAD_MAX_BYTES;
|
||||||
}
|
}
|
||||||
|
|
||||||
function getUploadedFileLimitLabel(file) {
|
function getUploadedFileLimitLabel(file, uploadContext, settings) {
|
||||||
return getUploadedFileMediaType(file) === 'video' ? '1 GB' : '100 MB';
|
if (String(uploadContext || '').trim().toLowerCase() === 'wysiwyg') {
|
||||||
|
const limitMb = getUploadedFileLimitBytes(file, uploadContext, settings) / 1024 / 1024;
|
||||||
|
return (Number.isInteger(limitMb) ? String(limitMb) : limitMb.toFixed(2).replace(/0+$/, '').replace(/\.$/, '')) + ' MB';
|
||||||
|
}
|
||||||
|
|
||||||
|
const limitMb = Math.round(getUploadedFileLimitBytes(file, uploadContext, settings) / 1024 / 1024);
|
||||||
|
return limitMb >= 1024 && limitMb % 1024 === 0 ? (limitMb / 1024) + ' GB' : limitMb + ' MB';
|
||||||
}
|
}
|
||||||
|
|
||||||
async function removeUploadedFile(file) {
|
async function removeUploadedFile(file) {
|
||||||
@@ -137,11 +165,21 @@ module.exports = function registerContentRoutes(app, deps) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async function validateUploadedFiles(files) {
|
async function validateUploadedFiles(files, uploadContext) {
|
||||||
const list = Array.isArray(files) ? files.filter(Boolean) : [];
|
const list = Array.isArray(files) ? files.filter(Boolean) : [];
|
||||||
|
const settings = await fetchAppSettings(pool);
|
||||||
for (let i = 0; i < list.length; i += 1) {
|
for (let i = 0; i < list.length; i += 1) {
|
||||||
const file = list[i];
|
const file = list[i];
|
||||||
const mediaType = getUploadedFileMediaType(file);
|
const fileMimeType = String(file && file.mimetype || '').trim().toLowerCase();
|
||||||
|
const allowedMimeTypes = Array.isArray(settings['uploads.allowed_mime_types']) ? settings['uploads.allowed_mime_types'] : [];
|
||||||
|
if (allowedMimeTypes.indexOf(fileMimeType) === -1) {
|
||||||
|
await removeUploadedFile(file);
|
||||||
|
const error = new Error('This upload type is disabled in Media Uploads settings.');
|
||||||
|
error.statusCode = 400;
|
||||||
|
error.expose = true;
|
||||||
|
throw error;
|
||||||
|
}
|
||||||
|
const mediaType = getUploadedFileMediaType(file, uploadContext);
|
||||||
if (!mediaType) {
|
if (!mediaType) {
|
||||||
await removeUploadedFile(file);
|
await removeUploadedFile(file);
|
||||||
const error = new Error('Unsupported upload type.');
|
const error = new Error('Unsupported upload type.');
|
||||||
@@ -150,9 +188,11 @@ module.exports = function registerContentRoutes(app, deps) {
|
|||||||
throw error;
|
throw error;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Number(file.size || 0) > getUploadedFileLimitBytes(file)) {
|
if (Number(file.size || 0) > getUploadedFileLimitBytes(file, uploadContext, settings)) {
|
||||||
await removeUploadedFile(file);
|
await removeUploadedFile(file);
|
||||||
const error = new Error('File must be ' + getUploadedFileLimitLabel(file) + ' or smaller.');
|
const error = new Error(String(uploadContext || '').trim().toLowerCase() === 'wysiwyg'
|
||||||
|
? 'Image must be ' + getUploadedFileLimitLabel(file, uploadContext, settings) + ' or smaller. Larger images should use the dedicated Image region.'
|
||||||
|
: 'File must be ' + getUploadedFileLimitLabel(file, uploadContext, settings) + ' or smaller.');
|
||||||
error.statusCode = 400;
|
error.statusCode = 400;
|
||||||
error.expose = true;
|
error.expose = true;
|
||||||
throw error;
|
throw error;
|
||||||
@@ -376,7 +416,9 @@ module.exports = function registerContentRoutes(app, deps) {
|
|||||||
return res.status(400).json({ error: 'No file was uploaded.' });
|
return res.status(400).json({ error: 'No file was uploaded.' });
|
||||||
}
|
}
|
||||||
|
|
||||||
await validateUploadedFiles([req.file]);
|
const uploadContext = String(req.get('X-Upload-Context') || req.query.context || '').trim().toLowerCase();
|
||||||
|
|
||||||
|
await validateUploadedFiles([req.file], uploadContext);
|
||||||
|
|
||||||
res.json({
|
res.json({
|
||||||
path: '/media/uploads/' + req.file.filename,
|
path: '/media/uploads/' + req.file.filename,
|
||||||
@@ -428,6 +470,7 @@ module.exports = function registerContentRoutes(app, deps) {
|
|||||||
queueSlideThumbnailRefresh(result.insertId, null).catch(function (error) {
|
queueSlideThumbnailRefresh(result.insertId, null).catch(function (error) {
|
||||||
console.warn('Unable to queue slide thumbnail refresh:', error);
|
console.warn('Unable to queue slide thumbnail refresh:', error);
|
||||||
});
|
});
|
||||||
|
if (typeof recordRequestAuditEvent === 'function') await recordRequestAuditEvent(pool, req, { category: 'slides', eventType: 'slide.created', actorUserId: actorId, targetType: 'slide', targetId: result.insertId, targetLabel: payload.title });
|
||||||
redirectAfterSave(req, res, '/slides/' + result.insertId + '/edit', {
|
redirectAfterSave(req, res, '/slides/' + result.insertId + '/edit', {
|
||||||
closeUrl: '/slides',
|
closeUrl: '/slides',
|
||||||
newUrl: '/slides/new',
|
newUrl: '/slides/new',
|
||||||
@@ -469,6 +512,7 @@ module.exports = function registerContentRoutes(app, deps) {
|
|||||||
screenSlideCounts: screenSlideCounts
|
screenSlideCounts: screenSlideCounts
|
||||||
});
|
});
|
||||||
await broadcastDashboardState();
|
await broadcastDashboardState();
|
||||||
|
if (typeof recordRequestAuditEvent === 'function') await recordRequestAuditEvent(pool, req, { category: 'slides', eventType: 'slide.updated', actorUserId: actorId, targetType: 'slide', targetId: slide.id, targetLabel: payload.title });
|
||||||
queueSlideThumbnailRefresh(slide.id, slide.thumbnail_path).catch(function (error) {
|
queueSlideThumbnailRefresh(slide.id, slide.thumbnail_path).catch(function (error) {
|
||||||
console.warn('Unable to queue slide thumbnail refresh:', error);
|
console.warn('Unable to queue slide thumbnail refresh:', error);
|
||||||
});
|
});
|
||||||
@@ -507,6 +551,7 @@ module.exports = function registerContentRoutes(app, deps) {
|
|||||||
screenSlideCounts: screenSlideCounts
|
screenSlideCounts: screenSlideCounts
|
||||||
});
|
});
|
||||||
await broadcastDashboardState();
|
await broadcastDashboardState();
|
||||||
|
if (typeof recordRequestAuditEvent === 'function') await recordRequestAuditEvent(pool, req, { category: 'slides', eventType: 'slide.deleted', actorUserId: getAuditUserId(req), targetType: 'slide', targetId: slide.id, targetLabel: slide.title });
|
||||||
res.redirect('/slides?message=' + encodeURIComponent('Slide deleted.'));
|
res.redirect('/slides?message=' + encodeURIComponent('Slide deleted.'));
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
next(error);
|
next(error);
|
||||||
@@ -565,6 +610,7 @@ module.exports = function registerContentRoutes(app, deps) {
|
|||||||
localUploadDir: deps.uploadDir,
|
localUploadDir: deps.uploadDir,
|
||||||
nextUploadRefs: collectUploadReferencesFromPayload(payload)
|
nextUploadRefs: collectUploadReferencesFromPayload(payload)
|
||||||
});
|
});
|
||||||
|
if (typeof recordRequestAuditEvent === 'function') await recordRequestAuditEvent(pool, req, { category: 'templates', eventType: 'template.created', actorUserId: actorId, targetType: 'template', targetId: result.insertId, targetLabel: payload.name });
|
||||||
redirectAfterSave(req, res, '/templates/' + result.insertId + '/edit', {
|
redirectAfterSave(req, res, '/templates/' + result.insertId + '/edit', {
|
||||||
closeUrl: '/templates',
|
closeUrl: '/templates',
|
||||||
newUrl: '/templates/new',
|
newUrl: '/templates/new',
|
||||||
@@ -635,6 +681,7 @@ module.exports = function registerContentRoutes(app, deps) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
await notifyPlayerScreens(affectedScreens, 'refresh');
|
await notifyPlayerScreens(affectedScreens, 'refresh');
|
||||||
|
if (typeof recordRequestAuditEvent === 'function') await recordRequestAuditEvent(pool, req, { category: 'templates', eventType: 'template.updated', actorUserId: actorId, targetType: 'template', targetId: template.id, targetLabel: payload.name });
|
||||||
redirectAfterSave(req, res, '/templates/' + template.id + '/edit', {
|
redirectAfterSave(req, res, '/templates/' + template.id + '/edit', {
|
||||||
closeUrl: '/templates',
|
closeUrl: '/templates',
|
||||||
newUrl: '/templates/new',
|
newUrl: '/templates/new',
|
||||||
@@ -667,6 +714,7 @@ module.exports = function registerContentRoutes(app, deps) {
|
|||||||
previousUploadRefs: uploadRefs
|
previousUploadRefs: uploadRefs
|
||||||
});
|
});
|
||||||
await notifyPlayerScreens(affectedScreens, 'refresh');
|
await notifyPlayerScreens(affectedScreens, 'refresh');
|
||||||
|
if (typeof recordRequestAuditEvent === 'function') await recordRequestAuditEvent(pool, req, { category: 'templates', eventType: 'template.deleted', actorUserId: getAuditUserId(req), targetType: 'template', targetId: template.id, targetLabel: template.name });
|
||||||
res.redirect('/templates?message=' + encodeURIComponent('Template deleted.'));
|
res.redirect('/templates?message=' + encodeURIComponent('Template deleted.'));
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
next(error);
|
next(error);
|
||||||
@@ -724,6 +772,7 @@ module.exports = function registerContentRoutes(app, deps) {
|
|||||||
}
|
}
|
||||||
const actorId = getAuditUserId(req);
|
const actorId = getAuditUserId(req);
|
||||||
const [result] = await pool.query('INSERT INTO c_canvas_sizes (name, width, height, created_by, modified_by) VALUES (?, ?, ?, ?, ?)', [payload.name, payload.width, payload.height, actorId, actorId]);
|
const [result] = await pool.query('INSERT INTO c_canvas_sizes (name, width, height, created_by, modified_by) VALUES (?, ?, ?, ?, ?)', [payload.name, payload.width, payload.height, actorId, actorId]);
|
||||||
|
if (typeof recordRequestAuditEvent === 'function') await recordRequestAuditEvent(pool, req, { category: 'canvas-sizes', eventType: 'canvas-size.created', actorUserId: actorId, targetType: 'canvas-size', targetId: result.insertId, targetLabel: payload.name, details: { width: payload.width, height: payload.height } });
|
||||||
redirectAfterSave(req, res, '/canvas-sizes/' + result.insertId + '/edit', {
|
redirectAfterSave(req, res, '/canvas-sizes/' + result.insertId + '/edit', {
|
||||||
closeUrl: '/canvas-sizes',
|
closeUrl: '/canvas-sizes',
|
||||||
newUrl: '/canvas-sizes/new',
|
newUrl: '/canvas-sizes/new',
|
||||||
@@ -765,6 +814,7 @@ module.exports = function registerContentRoutes(app, deps) {
|
|||||||
return res.status(400).send('That canvas size already exists.');
|
return res.status(400).send('That canvas size already exists.');
|
||||||
}
|
}
|
||||||
await pool.query('UPDATE c_canvas_sizes SET name = ?, width = ?, height = ?, modified_by = ? WHERE id = ?', [payload.name, payload.width, payload.height, getAuditUserId(req), canvasSize.id]);
|
await pool.query('UPDATE c_canvas_sizes SET name = ?, width = ?, height = ?, modified_by = ? WHERE id = ?', [payload.name, payload.width, payload.height, getAuditUserId(req), canvasSize.id]);
|
||||||
|
if (typeof recordRequestAuditEvent === 'function') await recordRequestAuditEvent(pool, req, { category: 'canvas-sizes', eventType: 'canvas-size.updated', actorUserId: getAuditUserId(req), targetType: 'canvas-size', targetId: canvasSize.id, targetLabel: payload.name, details: { width: payload.width, height: payload.height } });
|
||||||
redirectAfterSave(req, res, '/canvas-sizes', {
|
redirectAfterSave(req, res, '/canvas-sizes', {
|
||||||
closeUrl: '/canvas-sizes',
|
closeUrl: '/canvas-sizes',
|
||||||
newUrl: '/canvas-sizes/new',
|
newUrl: '/canvas-sizes/new',
|
||||||
@@ -787,6 +837,7 @@ module.exports = function registerContentRoutes(app, deps) {
|
|||||||
}
|
}
|
||||||
await pool.query('UPDATE c_templates SET canvas_size_id = NULL, modified_by = ? WHERE canvas_size_id = ?', [getAuditUserId(req), canvasSize.id]);
|
await pool.query('UPDATE c_templates SET canvas_size_id = NULL, modified_by = ? WHERE canvas_size_id = ?', [getAuditUserId(req), canvasSize.id]);
|
||||||
await pool.query('DELETE FROM c_canvas_sizes WHERE id = ?', [canvasSize.id]);
|
await pool.query('DELETE FROM c_canvas_sizes WHERE id = ?', [canvasSize.id]);
|
||||||
|
if (typeof recordRequestAuditEvent === 'function') await recordRequestAuditEvent(pool, req, { category: 'canvas-sizes', eventType: 'canvas-size.deleted', actorUserId: getAuditUserId(req), targetType: 'canvas-size', targetId: canvasSize.id, targetLabel: canvasSize.name });
|
||||||
res.redirect('/canvas-sizes?message=' + encodeURIComponent('Canvas size deleted.'));
|
res.redirect('/canvas-sizes?message=' + encodeURIComponent('Canvas size deleted.'));
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
next(error);
|
next(error);
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ module.exports = function registerManageRoutes(app, deps) {
|
|||||||
const common = deps.common;
|
const common = deps.common;
|
||||||
const pages = deps.pages;
|
const pages = deps.pages;
|
||||||
const getAuditUserId = deps.getAuditUserId;
|
const getAuditUserId = deps.getAuditUserId;
|
||||||
|
const recordRequestAuditEvent = deps.recordRequestAuditEvent;
|
||||||
const redirectAfterSave = deps.redirectAfterSave;
|
const redirectAfterSave = deps.redirectAfterSave;
|
||||||
const notifyPlayerScreens = deps.notifyPlayerScreens;
|
const notifyPlayerScreens = deps.notifyPlayerScreens;
|
||||||
const broadcastDashboardState = deps.broadcastDashboardState;
|
const broadcastDashboardState = deps.broadcastDashboardState;
|
||||||
@@ -26,10 +27,6 @@ module.exports = function registerManageRoutes(app, deps) {
|
|||||||
return text.slice(0, limit);
|
return text.slice(0, limit);
|
||||||
}
|
}
|
||||||
|
|
||||||
function normalizeBaseUrl(value) {
|
|
||||||
return String(value || '').trim().replace(/\/$/, '');
|
|
||||||
}
|
|
||||||
|
|
||||||
function normalizeExplicitPlayerBaseUrl(value) {
|
function normalizeExplicitPlayerBaseUrl(value) {
|
||||||
return String(value || '').trim().replace(/\/$/, '');
|
return String(value || '').trim().replace(/\/$/, '');
|
||||||
}
|
}
|
||||||
@@ -221,6 +218,7 @@ module.exports = function registerManageRoutes(app, deps) {
|
|||||||
const slug = await common.uniqueScreenSlug(pool, common.slugify(slugInput || name));
|
const slug = await common.uniqueScreenSlug(pool, common.slugify(slugInput || name));
|
||||||
const actorId = getAuditUserId(req);
|
const actorId = getAuditUserId(req);
|
||||||
const [result] = await pool.query('INSERT INTO d_screens (name, slug, playlist_id, created_by, modified_by) VALUES (?, ?, ?, ?, ?)', [name, slug, playlistId, actorId, actorId]);
|
const [result] = await pool.query('INSERT INTO d_screens (name, slug, playlist_id, created_by, modified_by) VALUES (?, ?, ?, ?, ?)', [name, slug, playlistId, actorId, actorId]);
|
||||||
|
if (typeof recordRequestAuditEvent === 'function') await recordRequestAuditEvent(pool, req, { category: 'screens', eventType: 'screen.created', actorUserId: actorId, targetType: 'screen', targetId: result.insertId, targetLabel: name, details: { slug: slug, playlistId: playlistId } });
|
||||||
redirectAfterSave(req, res, '/screens?edit=' + result.insertId, {
|
redirectAfterSave(req, res, '/screens?edit=' + result.insertId, {
|
||||||
closeUrl: '/screens',
|
closeUrl: '/screens',
|
||||||
newUrl: '/screens/new',
|
newUrl: '/screens/new',
|
||||||
@@ -246,41 +244,27 @@ module.exports = function registerManageRoutes(app, deps) {
|
|||||||
if (await common.fetchDuplicateName(pool, 'd_screens', name, screen.id)) {
|
if (await common.fetchDuplicateName(pool, 'd_screens', name, screen.id)) {
|
||||||
return res.status(400).send('A screen with that name already exists.');
|
return res.status(400).send('A screen with that name already exists.');
|
||||||
}
|
}
|
||||||
const slugInput = typeof common.validateMaxLength === 'function'
|
|
||||||
? common.validateMaxLength(req.body.slug || '', SCREEN_SLUG_MAX_LENGTH, 'Screen URL')
|
|
||||||
: readLimitedText(req.body.slug || '', 255);
|
|
||||||
const playlistId = req.body.playlist_id ? Number(req.body.playlist_id) : null;
|
const playlistId = req.body.playlist_id ? Number(req.body.playlist_id) : null;
|
||||||
const previousPlaylistId = screen.playlist_id;
|
const previousPlaylistId = screen.playlist_id;
|
||||||
const slug = await common.uniqueScreenSlug(pool, common.slugify(slugInput || name), screen.id);
|
const slug = String(screen.slug || '').trim();
|
||||||
const previousSlug = String(screen.slug || '').trim();
|
const previousSlug = String(screen.slug || '').trim();
|
||||||
await pool.query('UPDATE d_screens SET name = ?, slug = ?, playlist_id = ?, modified_by = ? WHERE id = ?', [name, slug, playlistId, getAuditUserId(req), screen.id]);
|
await pool.query('UPDATE d_screens SET name = ?, slug = ?, playlist_id = ?, modified_by = ? WHERE id = ?', [name, slug, playlistId, getAuditUserId(req), screen.id]);
|
||||||
if (previousPlaylistId !== playlistId && previousSlug) {
|
if (previousPlaylistId !== playlistId && previousSlug) {
|
||||||
await notifyPlayerScreens([previousSlug], 'refresh');
|
await notifyPlayerScreens([previousSlug], 'refresh');
|
||||||
}
|
}
|
||||||
if (previousSlug && previousSlug !== slug) {
|
if (previousSlug && previousSlug !== slug) {
|
||||||
const previousScreenTargets = await pool.query(
|
const previousConnections = await fetchLiveConnectionsForScreen(previousSlug);
|
||||||
`SELECT s.slug, s.player_id, p.public_base_url, p.internal_base_url
|
const redirectPayload = {
|
||||||
FROM d_screens s
|
command: 'redirect',
|
||||||
LEFT JOIN d_players p ON p.device_id = s.player_id
|
url: `/screen/${encodeURIComponent(slug)}`
|
||||||
WHERE s.slug = ?
|
};
|
||||||
LIMIT 1`,
|
if (previousConnections.length) {
|
||||||
[previousSlug]
|
await forwardPlayerCommandForConnections(previousSlug, previousConnections, redirectPayload);
|
||||||
);
|
|
||||||
const previousTargetRow = previousScreenTargets[0] && previousScreenTargets[0][0] || null;
|
|
||||||
const previousInternalBaseUrl = normalizeBaseUrl(previousTargetRow && previousTargetRow.internal_base_url) || '';
|
|
||||||
const previousPublicBaseUrl = normalizeBaseUrl(previousTargetRow && previousTargetRow.public_base_url) || '';
|
|
||||||
if (previousInternalBaseUrl && typeof forwardPlayerCommandToBaseUrl === 'function') {
|
|
||||||
await forwardPlayerCommandToBaseUrl(previousInternalBaseUrl, previousSlug, {
|
|
||||||
command: 'redirect',
|
|
||||||
url: previousPublicBaseUrl ? `${previousPublicBaseUrl}/screen/${encodeURIComponent(slug)}` : `/screen/${encodeURIComponent(slug)}`
|
|
||||||
});
|
|
||||||
} else {
|
} else {
|
||||||
await forwardPlayerCommand(previousSlug, {
|
await forwardPlayerCommand(previousSlug, redirectPayload);
|
||||||
command: 'redirect',
|
|
||||||
url: previousPublicBaseUrl ? `${previousPublicBaseUrl}/screen/${encodeURIComponent(slug)}` : `/screen/${encodeURIComponent(slug)}`
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (typeof recordRequestAuditEvent === 'function') await recordRequestAuditEvent(pool, req, { category: 'screens', eventType: 'screen.updated', actorUserId: getAuditUserId(req), targetType: 'screen', targetId: screen.id, targetLabel: name, details: { slug: slug, playlistId: playlistId } });
|
||||||
redirectAfterSave(req, res, '/screens?edit=' + screen.id, {
|
redirectAfterSave(req, res, '/screens?edit=' + screen.id, {
|
||||||
closeUrl: '/screens',
|
closeUrl: '/screens',
|
||||||
newUrl: '/screens/new',
|
newUrl: '/screens/new',
|
||||||
@@ -302,6 +286,7 @@ module.exports = function registerManageRoutes(app, deps) {
|
|||||||
return res.redirect('/screens?message=' + encodeURIComponent(blockMessage));
|
return res.redirect('/screens?message=' + encodeURIComponent(blockMessage));
|
||||||
}
|
}
|
||||||
await pool.query('DELETE FROM d_screens WHERE id = ?', [screen.id]);
|
await pool.query('DELETE FROM d_screens WHERE id = ?', [screen.id]);
|
||||||
|
if (typeof recordRequestAuditEvent === 'function') await recordRequestAuditEvent(pool, req, { category: 'screens', eventType: 'screen.deleted', actorUserId: getAuditUserId(req), targetType: 'screen', targetId: screen.id, targetLabel: screen.name });
|
||||||
res.redirect('/screens?message=' + encodeURIComponent('Screen deleted.'));
|
res.redirect('/screens?message=' + encodeURIComponent('Screen deleted.'));
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
next(error);
|
next(error);
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
// Playlist admin routes and playlist-slide management.
|
// Playlist admin routes and playlist-slide management.
|
||||||
|
|
||||||
|
const { fetchAppSettings } = require('../../../data/app-settings');
|
||||||
|
|
||||||
module.exports = function registerPlaylistRoutes(app, deps) {
|
module.exports = function registerPlaylistRoutes(app, deps) {
|
||||||
const pool = deps.pool;
|
const pool = deps.pool;
|
||||||
const common = deps.common;
|
const common = deps.common;
|
||||||
@@ -9,6 +11,7 @@ module.exports = function registerPlaylistRoutes(app, deps) {
|
|||||||
const fetchPlaylistCanvasId = deps.fetchPlaylistCanvasId;
|
const fetchPlaylistCanvasId = deps.fetchPlaylistCanvasId;
|
||||||
const readArrayField = deps.readArrayField;
|
const readArrayField = deps.readArrayField;
|
||||||
const getAuditUserId = deps.getAuditUserId;
|
const getAuditUserId = deps.getAuditUserId;
|
||||||
|
const recordRequestAuditEvent = deps.recordRequestAuditEvent;
|
||||||
const redirectAfterSave = deps.redirectAfterSave;
|
const redirectAfterSave = deps.redirectAfterSave;
|
||||||
const notifyPlayerScreens = deps.notifyPlayerScreens;
|
const notifyPlayerScreens = deps.notifyPlayerScreens;
|
||||||
const broadcastDashboardState = deps.broadcastDashboardState;
|
const broadcastDashboardState = deps.broadcastDashboardState;
|
||||||
@@ -295,6 +298,7 @@ module.exports = function registerPlaylistRoutes(app, deps) {
|
|||||||
};
|
};
|
||||||
await savePlaylistItems(connection, playlist, req.body, actorId, { updatePlaylist: false });
|
await savePlaylistItems(connection, playlist, req.body, actorId, { updatePlaylist: false });
|
||||||
await connection.commit();
|
await connection.commit();
|
||||||
|
if (typeof recordRequestAuditEvent === 'function') await recordRequestAuditEvent(pool, req, { category: 'playlists', eventType: 'playlist.created', actorUserId: actorId, targetType: 'playlist', targetId: result.insertId, targetLabel: name });
|
||||||
redirectAfterSave(req, res, '/playlists/' + result.insertId + '/edit', {
|
redirectAfterSave(req, res, '/playlists/' + result.insertId + '/edit', {
|
||||||
closeUrl: '/playlists',
|
closeUrl: '/playlists',
|
||||||
newUrl: '/playlists/new',
|
newUrl: '/playlists/new',
|
||||||
@@ -352,6 +356,7 @@ module.exports = function registerPlaylistRoutes(app, deps) {
|
|||||||
await connection.commit();
|
await connection.commit();
|
||||||
await notifyPlayerScreens(saveResult.affectedScreens, 'refresh');
|
await notifyPlayerScreens(saveResult.affectedScreens, 'refresh');
|
||||||
await broadcastDashboardState();
|
await broadcastDashboardState();
|
||||||
|
if (typeof recordRequestAuditEvent === 'function') await recordRequestAuditEvent(pool, req, { category: 'playlists', eventType: 'playlist.updated', actorUserId: actorId, targetType: 'playlist', targetId: playlist.id, targetLabel: name });
|
||||||
redirectAfterSave(req, res, '/playlists/' + playlist.id + '/edit', {
|
redirectAfterSave(req, res, '/playlists/' + playlist.id + '/edit', {
|
||||||
closeUrl: '/playlists',
|
closeUrl: '/playlists',
|
||||||
newUrl: '/playlists/new',
|
newUrl: '/playlists/new',
|
||||||
@@ -383,6 +388,7 @@ module.exports = function registerPlaylistRoutes(app, deps) {
|
|||||||
return res.redirect('/playlists?message=' + encodeURIComponent(blockMessage));
|
return res.redirect('/playlists?message=' + encodeURIComponent(blockMessage));
|
||||||
}
|
}
|
||||||
await pool.query('DELETE FROM c_playlists WHERE id = ?', [playlist.id]);
|
await pool.query('DELETE FROM c_playlists WHERE id = ?', [playlist.id]);
|
||||||
|
if (typeof recordRequestAuditEvent === 'function') await recordRequestAuditEvent(pool, req, { category: 'playlists', eventType: 'playlist.deleted', actorUserId: getAuditUserId(req), targetType: 'playlist', targetId: playlist.id, targetLabel: playlist.name });
|
||||||
res.redirect('/playlists?message=' + encodeURIComponent('Playlist deleted.'));
|
res.redirect('/playlists?message=' + encodeURIComponent('Playlist deleted.'));
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
next(error);
|
next(error);
|
||||||
@@ -411,7 +417,9 @@ module.exports = function registerPlaylistRoutes(app, deps) {
|
|||||||
if (playlistCanvasId && slideCanvasId !== playlistCanvasId) {
|
if (playlistCanvasId && slideCanvasId !== playlistCanvasId) {
|
||||||
return res.status(400).send('The slide canvas size must match the existing playlist items.');
|
return res.status(400).send('The slide canvas size must match the existing playlist items.');
|
||||||
}
|
}
|
||||||
const durationValue = Number(req.body.duration_seconds || 10);
|
const hasSubmittedDuration = req.body.duration_seconds !== undefined && String(req.body.duration_seconds).trim() !== '';
|
||||||
|
const settings = hasSubmittedDuration ? null : await fetchAppSettings(pool);
|
||||||
|
const durationValue = Number(hasSubmittedDuration ? req.body.duration_seconds : settings['player.default_slide_duration_seconds']);
|
||||||
const durationSeconds = Number.isFinite(durationValue) ? Math.max(0.001, Math.round(durationValue * 1000) / 1000) : 10;
|
const durationSeconds = Number.isFinite(durationValue) ? Math.max(0.001, Math.round(durationValue * 1000) / 1000) : 10;
|
||||||
const [positionRows] = await pool.query('SELECT COALESCE(MAX(position), -1) AS max_position FROM c_playlist_slides WHERE playlist_id = ?', [playlist.id]);
|
const [positionRows] = await pool.query('SELECT COALESCE(MAX(position), -1) AS max_position FROM c_playlist_slides WHERE playlist_id = ?', [playlist.id]);
|
||||||
const nextPosition = Number(positionRows[0].max_position) + 1;
|
const nextPosition = Number(positionRows[0].max_position) + 1;
|
||||||
|
|||||||
@@ -5,6 +5,7 @@
|
|||||||
const common = deps.common;
|
const common = deps.common;
|
||||||
const pages = deps.pages;
|
const pages = deps.pages;
|
||||||
const getAuditUserId = deps.getAuditUserId;
|
const getAuditUserId = deps.getAuditUserId;
|
||||||
|
const recordRequestAuditEvent = deps.recordRequestAuditEvent;
|
||||||
const rbacData = deps.rbacData;
|
const rbacData = deps.rbacData;
|
||||||
const permissions = Array.isArray(deps.permissions) ? deps.permissions : [];
|
const permissions = Array.isArray(deps.permissions) ? deps.permissions : [];
|
||||||
const readArrayField = deps.readArrayField;
|
const readArrayField = deps.readArrayField;
|
||||||
@@ -114,6 +115,7 @@
|
|||||||
sectionIndex: toSortIndex(permission.sectionIndex),
|
sectionIndex: toSortIndex(permission.sectionIndex),
|
||||||
sectionOrder: Number(permission.sectionOrder) || 999,
|
sectionOrder: Number(permission.sectionOrder) || 999,
|
||||||
resourceIndex: toSortIndex(permission.resourceIndex),
|
resourceIndex: toSortIndex(permission.resourceIndex),
|
||||||
|
resourceOrder: Number(permission.resourceOrder) || 999,
|
||||||
permissions: []
|
permissions: []
|
||||||
};
|
};
|
||||||
groupIndex.set(sectionKey, group);
|
groupIndex.set(sectionKey, group);
|
||||||
@@ -191,7 +193,7 @@
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
app.get('/rbac', requirePermission('rbac.read'), async function (req, res, next) {
|
app.get('/settings/roles', requirePermission('rbac.read'), async function (req, res, next) {
|
||||||
try {
|
try {
|
||||||
const page = Math.max(1, Math.floor(Number(req.query.page) || 1));
|
const page = Math.max(1, Math.floor(Number(req.query.page) || 1));
|
||||||
const search = common.getSearchQuery(req);
|
const search = common.getSearchQuery(req);
|
||||||
@@ -207,7 +209,7 @@
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
app.get('/rbac/new', requirePermission('rbac.create'), function (req, res, next) {
|
app.get('/settings/roles/new', requirePermission('rbac.create'), function (req, res, next) {
|
||||||
const page = Math.max(1, Math.floor(Number(req.query.page) || 1));
|
const page = Math.max(1, Math.floor(Number(req.query.page) || 1));
|
||||||
const search = common.getSearchQuery(req);
|
const search = common.getSearchQuery(req);
|
||||||
const sort = common.getSortQuery(req);
|
const sort = common.getSortQuery(req);
|
||||||
@@ -223,7 +225,7 @@
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
app.get('/rbac/:id/duplicate', requirePermission('rbac.read'), requirePermission('rbac.create'), async function (req, res, next) {
|
app.get('/settings/roles/:id/duplicate', requirePermission('rbac.read'), requirePermission('rbac.create'), async function (req, res, next) {
|
||||||
try {
|
try {
|
||||||
const roleId = Number(req.params.id);
|
const roleId = Number(req.params.id);
|
||||||
if (!Number.isInteger(roleId) || roleId <= 0) {
|
if (!Number.isInteger(roleId) || roleId <= 0) {
|
||||||
@@ -252,7 +254,7 @@
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
app.post('/rbac', requirePermission('rbac.create'), async function (req, res, next) {
|
app.post('/settings/roles', requirePermission('rbac.create'), async function (req, res, next) {
|
||||||
try {
|
try {
|
||||||
const name = common.validateMaxLength(req.body.name || '', ROLE_NAME_MAX_LENGTH, 'Role name');
|
const name = common.validateMaxLength(req.body.name || '', ROLE_NAME_MAX_LENGTH, 'Role name');
|
||||||
const description = common.validateMaxLength(req.body.description || '', ROLE_DESCRIPTION_MAX_LENGTH, 'Role description');
|
const description = common.validateMaxLength(req.body.description || '', ROLE_DESCRIPTION_MAX_LENGTH, 'Role description');
|
||||||
@@ -319,13 +321,24 @@
|
|||||||
} finally {
|
} finally {
|
||||||
connection.release();
|
connection.release();
|
||||||
}
|
}
|
||||||
res.redirect('/rbac/' + insertedRoleId + '/edit?message=' + encodeURIComponent('Role created.'));
|
if (typeof recordRequestAuditEvent === 'function') {
|
||||||
|
await recordRequestAuditEvent(pool, req, {
|
||||||
|
category: 'roles',
|
||||||
|
eventType: 'role.created',
|
||||||
|
actorUserId: actorId,
|
||||||
|
targetType: 'role',
|
||||||
|
targetId: insertedRoleId,
|
||||||
|
targetLabel: name,
|
||||||
|
details: { permissionKeys: selectedPermissionKeys, userIds: normalizedUserIds }
|
||||||
|
});
|
||||||
|
}
|
||||||
|
res.redirect('/settings/roles/' + insertedRoleId + '/edit?message=' + encodeURIComponent('Role created.'));
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
next(error);
|
next(error);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
app.get('/rbac/:id/edit', requirePermission('rbac.update'), async function (req, res, next) {
|
app.get('/settings/roles/:id/edit', requirePermission('rbac.update'), async function (req, res, next) {
|
||||||
try {
|
try {
|
||||||
const roleId = Number(req.params.id);
|
const roleId = Number(req.params.id);
|
||||||
if (!Number.isInteger(roleId) || roleId <= 0) {
|
if (!Number.isInteger(roleId) || roleId <= 0) {
|
||||||
@@ -354,7 +367,7 @@
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
app.post('/rbac/:id', requirePermission('rbac.update'), async function (req, res, next) {
|
app.post('/settings/roles/:id', requirePermission('rbac.update'), async function (req, res, next) {
|
||||||
try {
|
try {
|
||||||
const roleId = Number(req.params.id);
|
const roleId = Number(req.params.id);
|
||||||
if (!Number.isInteger(roleId) || roleId <= 0) {
|
if (!Number.isInteger(roleId) || roleId <= 0) {
|
||||||
@@ -376,15 +389,18 @@
|
|||||||
const selectedUserIds = shouldSyncUsers
|
const selectedUserIds = shouldSyncUsers
|
||||||
? readArrayField(req.body, ['user_ids[]', 'user_ids'])
|
? readArrayField(req.body, ['user_ids[]', 'user_ids'])
|
||||||
: [];
|
: [];
|
||||||
|
const visibleUserIds = shouldSyncUsers
|
||||||
|
? normalizeSelectedIds(readArrayField(req.body, ['user_ids_present[]', 'user_ids_present']))
|
||||||
|
: [];
|
||||||
const normalizedPermissionKeys = shouldSyncPermissions ? normalizePermissionKeys(selectedPermissionKeys) : [];
|
const normalizedPermissionKeys = shouldSyncPermissions ? normalizePermissionKeys(selectedPermissionKeys) : [];
|
||||||
const normalizedUserIds = shouldSyncUsers ? normalizeSelectedIds(selectedUserIds) : [];
|
let normalizedUserIds = shouldSyncUsers ? normalizeSelectedIds(selectedUserIds) : [];
|
||||||
|
|
||||||
if (!name) {
|
if (!name) {
|
||||||
return res.redirect('/rbac/' + roleId + '/edit?message=' + encodeURIComponent('Role name is required.'));
|
return res.redirect('/settings/roles/' + roleId + '/edit?message=' + encodeURIComponent('Role name is required.'));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (await common.fetchDuplicateName(pool, 'a_roles', name, roleId)) {
|
if (await common.fetchDuplicateName(pool, 'a_roles', name, roleId)) {
|
||||||
return res.redirect('/rbac/' + roleId + '/edit?message=' + encodeURIComponent('A role with that name already exists.'));
|
return res.redirect('/settings/roles/' + roleId + '/edit?message=' + encodeURIComponent('A role with that name already exists.'));
|
||||||
}
|
}
|
||||||
|
|
||||||
const validPermissionKeys = new Set(permissions.map(function (permission) {
|
const validPermissionKeys = new Set(permissions.map(function (permission) {
|
||||||
@@ -393,12 +409,17 @@
|
|||||||
if (shouldSyncPermissions && normalizedPermissionKeys.some(function (permissionKey) {
|
if (shouldSyncPermissions && normalizedPermissionKeys.some(function (permissionKey) {
|
||||||
return !validPermissionKeys.has(permissionKey);
|
return !validPermissionKeys.has(permissionKey);
|
||||||
})) {
|
})) {
|
||||||
return res.redirect('/rbac/' + roleId + '/edit?message=' + encodeURIComponent('One or more selected permissions are invalid.'));
|
return res.redirect('/settings/roles/' + roleId + '/edit?message=' + encodeURIComponent('One or more selected permissions are invalid.'));
|
||||||
}
|
}
|
||||||
|
|
||||||
let availableUsers = [];
|
let availableUsers = [];
|
||||||
if (shouldSyncUsers) {
|
if (shouldSyncUsers) {
|
||||||
availableUsers = await rbacData.fetchUsersWithRoles(pool);
|
availableUsers = await rbacData.fetchUsersWithRoles(pool);
|
||||||
|
const existingRoleUserIds = await rbacData.fetchRoleUserIds(pool, roleId);
|
||||||
|
const visibleUserIdSet = new Set(visibleUserIds);
|
||||||
|
normalizedUserIds = existingRoleUserIds.filter(function (userId) {
|
||||||
|
return !visibleUserIdSet.has(userId);
|
||||||
|
}).concat(normalizedUserIds);
|
||||||
}
|
}
|
||||||
const validUserIds = new Set(availableUsers.map(function (user) {
|
const validUserIds = new Set(availableUsers.map(function (user) {
|
||||||
return Number(user.id);
|
return Number(user.id);
|
||||||
@@ -406,7 +427,7 @@
|
|||||||
if (shouldSyncUsers && normalizedUserIds.some(function (userId) {
|
if (shouldSyncUsers && normalizedUserIds.some(function (userId) {
|
||||||
return !validUserIds.has(userId);
|
return !validUserIds.has(userId);
|
||||||
})) {
|
})) {
|
||||||
return res.redirect('/rbac/' + roleId + '/edit?message=' + encodeURIComponent('One or more selected users are invalid.'));
|
return res.redirect('/settings/roles/' + roleId + '/edit?message=' + encodeURIComponent('One or more selected users are invalid.'));
|
||||||
}
|
}
|
||||||
|
|
||||||
const connection = await pool.getConnection();
|
const connection = await pool.getConnection();
|
||||||
@@ -429,13 +450,24 @@
|
|||||||
} finally {
|
} finally {
|
||||||
connection.release();
|
connection.release();
|
||||||
}
|
}
|
||||||
res.redirect('/rbac/' + roleId + '/edit?message=' + encodeURIComponent('Role updated.'));
|
if (typeof recordRequestAuditEvent === 'function') {
|
||||||
|
await recordRequestAuditEvent(pool, req, {
|
||||||
|
category: 'roles',
|
||||||
|
eventType: 'role.updated',
|
||||||
|
actorUserId: req.currentUser.id,
|
||||||
|
targetType: 'role',
|
||||||
|
targetId: roleId,
|
||||||
|
targetLabel: name,
|
||||||
|
details: { permissionsChanged: shouldSyncPermissions, usersChanged: shouldSyncUsers }
|
||||||
|
});
|
||||||
|
}
|
||||||
|
res.redirect('/settings/roles/' + roleId + '/edit?message=' + encodeURIComponent('Role updated.'));
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
next(error);
|
next(error);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
app.post('/rbac/:id/permissions', requirePermission('rbac.update'), async function (req, res, next) {
|
app.post('/settings/roles/:id/permissions', requirePermission('rbac.update'), async function (req, res, next) {
|
||||||
try {
|
try {
|
||||||
const roleId = Number(req.params.id);
|
const roleId = Number(req.params.id);
|
||||||
if (!Number.isInteger(roleId) || roleId <= 0) {
|
if (!Number.isInteger(roleId) || roleId <= 0) {
|
||||||
@@ -459,7 +491,7 @@
|
|||||||
if (normalizedPermissionKeys.some(function (permissionKey) {
|
if (normalizedPermissionKeys.some(function (permissionKey) {
|
||||||
return !validPermissionKeys.has(permissionKey);
|
return !validPermissionKeys.has(permissionKey);
|
||||||
})) {
|
})) {
|
||||||
return res.redirect('/rbac/' + roleId + '/edit?message=' + encodeURIComponent('One or more selected permissions are invalid.'));
|
return res.redirect('/settings/roles/' + roleId + '/edit?message=' + encodeURIComponent('One or more selected permissions are invalid.'));
|
||||||
}
|
}
|
||||||
|
|
||||||
const connection = await pool.getConnection();
|
const connection = await pool.getConnection();
|
||||||
@@ -473,13 +505,24 @@
|
|||||||
} finally {
|
} finally {
|
||||||
connection.release();
|
connection.release();
|
||||||
}
|
}
|
||||||
res.redirect('/rbac/' + roleId + '/edit?message=' + encodeURIComponent('Permissions updated.'));
|
if (typeof recordRequestAuditEvent === 'function') {
|
||||||
|
await recordRequestAuditEvent(pool, req, {
|
||||||
|
category: 'roles',
|
||||||
|
eventType: 'role.permissions_updated',
|
||||||
|
actorUserId: req.currentUser.id,
|
||||||
|
targetType: 'role',
|
||||||
|
targetId: roleId,
|
||||||
|
targetLabel: role.name,
|
||||||
|
details: { permissionKeys: normalizedPermissionKeys }
|
||||||
|
});
|
||||||
|
}
|
||||||
|
res.redirect('/settings/roles/' + roleId + '/edit?message=' + encodeURIComponent('Permissions updated.'));
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
next(error);
|
next(error);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
app.post('/rbac/:id/users', requirePermission('rbac.update'), async function (req, res, next) {
|
app.post('/settings/roles/:id/users', requirePermission('rbac.update'), async function (req, res, next) {
|
||||||
try {
|
try {
|
||||||
const roleId = Number(req.params.id);
|
const roleId = Number(req.params.id);
|
||||||
if (!Number.isInteger(roleId) || roleId <= 0) {
|
if (!Number.isInteger(roleId) || roleId <= 0) {
|
||||||
@@ -505,17 +548,28 @@
|
|||||||
if (normalizedUserIds.some(function (userId) {
|
if (normalizedUserIds.some(function (userId) {
|
||||||
return !validUserIds.has(userId);
|
return !validUserIds.has(userId);
|
||||||
})) {
|
})) {
|
||||||
return res.redirect('/rbac/' + roleId + '/edit?message=' + encodeURIComponent('One or more selected users are invalid.'));
|
return res.redirect('/settings/roles/' + roleId + '/edit?message=' + encodeURIComponent('One or more selected users are invalid.'));
|
||||||
}
|
}
|
||||||
|
|
||||||
await rbacData.syncRoleUsers(pool, roleId, normalizedUserIds);
|
await rbacData.syncRoleUsers(pool, roleId, normalizedUserIds);
|
||||||
res.redirect('/rbac/' + roleId + '/edit?message=' + encodeURIComponent('Users updated.'));
|
if (typeof recordRequestAuditEvent === 'function') {
|
||||||
|
await recordRequestAuditEvent(pool, req, {
|
||||||
|
category: 'roles',
|
||||||
|
eventType: 'role.users_updated',
|
||||||
|
actorUserId: req.currentUser.id,
|
||||||
|
targetType: 'role',
|
||||||
|
targetId: roleId,
|
||||||
|
targetLabel: role.name,
|
||||||
|
details: { userIds: normalizedUserIds }
|
||||||
|
});
|
||||||
|
}
|
||||||
|
res.redirect('/settings/roles/' + roleId + '/edit?message=' + encodeURIComponent('Users updated.'));
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
next(error);
|
next(error);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
app.post('/rbac/:id/delete', requirePermission('rbac.delete'), async function (req, res, next) {
|
app.post('/settings/roles/:id/delete', requirePermission('rbac.delete'), async function (req, res, next) {
|
||||||
try {
|
try {
|
||||||
const roleId = Number(req.params.id);
|
const roleId = Number(req.params.id);
|
||||||
if (!Number.isInteger(roleId) || roleId <= 0) {
|
if (!Number.isInteger(roleId) || roleId <= 0) {
|
||||||
@@ -527,14 +581,24 @@
|
|||||||
return res.status(404).send('Role not found.');
|
return res.status(404).send('Role not found.');
|
||||||
}
|
}
|
||||||
if (String(role.role_key || '') === 'administrators') {
|
if (String(role.role_key || '') === 'administrators') {
|
||||||
return res.redirect('/rbac?message=' + encodeURIComponent('The built-in Administrators role cannot be deleted.'));
|
return res.redirect('/settings/roles?message=' + encodeURIComponent('The built-in Administrators role cannot be deleted.'));
|
||||||
}
|
}
|
||||||
if (Number(role.user_count) > 0) {
|
if (Number(role.user_count) > 0) {
|
||||||
return res.redirect('/rbac?message=' + encodeURIComponent('Remove all users from this role before deleting it.'));
|
return res.redirect('/settings/roles?message=' + encodeURIComponent('Remove all users from this role before deleting it.'));
|
||||||
}
|
}
|
||||||
|
|
||||||
await pool.query('DELETE FROM a_roles WHERE id = ?', [roleId]);
|
await pool.query('DELETE FROM a_roles WHERE id = ?', [roleId]);
|
||||||
res.redirect('/rbac?message=' + encodeURIComponent('Role deleted.'));
|
if (typeof recordRequestAuditEvent === 'function') {
|
||||||
|
await recordRequestAuditEvent(pool, req, {
|
||||||
|
category: 'roles',
|
||||||
|
eventType: 'role.deleted',
|
||||||
|
actorUserId: req.currentUser.id,
|
||||||
|
targetType: 'role',
|
||||||
|
targetId: roleId,
|
||||||
|
targetLabel: role.name
|
||||||
|
});
|
||||||
|
}
|
||||||
|
res.redirect('/settings/roles?message=' + encodeURIComponent('Role deleted.'));
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
next(error);
|
next(error);
|
||||||
}
|
}
|
||||||
|
|||||||
+180
-33
@@ -1,11 +1,14 @@
|
|||||||
// Admin user route registration and user-role management.
|
// Admin user route registration and user-role management.
|
||||||
|
|
||||||
|
const { fetchAppSettings } = require('../../../data/app-settings');
|
||||||
|
|
||||||
module.exports = function registerUsersRoutes(app, deps) {
|
module.exports = function registerUsersRoutes(app, deps) {
|
||||||
const pool = deps.pool;
|
const pool = deps.pool;
|
||||||
const common = deps.common;
|
const common = deps.common;
|
||||||
const pages = deps.pages;
|
const pages = deps.pages;
|
||||||
const formatDashboardDate = deps.formatDashboardDate;
|
const formatDashboardDate = deps.formatDashboardDate;
|
||||||
const getAuditUserId = deps.getAuditUserId;
|
const getAuditUserId = deps.getAuditUserId;
|
||||||
|
const recordRequestAuditEvent = deps.recordRequestAuditEvent;
|
||||||
const hashPassword = deps.hashPassword;
|
const hashPassword = deps.hashPassword;
|
||||||
const validatePasswordStrength = deps.validatePasswordStrength;
|
const validatePasswordStrength = deps.validatePasswordStrength;
|
||||||
const readArrayField = deps.readArrayField;
|
const readArrayField = deps.readArrayField;
|
||||||
@@ -23,6 +26,23 @@
|
|||||||
return rbacData.fetchRoles(pool);
|
return rbacData.fetchRoles(pool);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async function shouldRequirePasswordChange(settingKey) {
|
||||||
|
const settings = await fetchAppSettings(pool);
|
||||||
|
return Boolean(settings[settingKey]);
|
||||||
|
}
|
||||||
|
|
||||||
|
async function getPasswordRequirements() {
|
||||||
|
const settings = await fetchAppSettings(pool);
|
||||||
|
return {
|
||||||
|
minimumLength: settings['security.password_min_length'],
|
||||||
|
minimumCategories: settings['security.password_min_categories'],
|
||||||
|
requireLowercase: settings['security.password_require_lowercase'],
|
||||||
|
requireUppercase: settings['security.password_require_uppercase'],
|
||||||
|
requireNumber: settings['security.password_require_number'],
|
||||||
|
requireSymbol: settings['security.password_require_symbol']
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
function mapRolesForForm(roles, selectedRoleIds) {
|
function mapRolesForForm(roles, selectedRoleIds) {
|
||||||
const selectedIds = new Set((Array.isArray(selectedRoleIds) ? selectedRoleIds : []).map(function (roleId) {
|
const selectedIds = new Set((Array.isArray(selectedRoleIds) ? selectedRoleIds : []).map(function (roleId) {
|
||||||
return Number(roleId);
|
return Number(roleId);
|
||||||
@@ -57,7 +77,7 @@
|
|||||||
return { ok: true, roleIds: normalizedRoleIds };
|
return { ok: true, roleIds: normalizedRoleIds };
|
||||||
}
|
}
|
||||||
|
|
||||||
app.get('/users', requirePermission('users.read'), async function (req, res, next) {
|
app.get('/settings/users', requirePermission('users.read'), async function (req, res, next) {
|
||||||
try {
|
try {
|
||||||
const page = Math.max(1, Math.floor(Number(req.query.page) || 1));
|
const page = Math.max(1, Math.floor(Number(req.query.page) || 1));
|
||||||
const search = common.getSearchQuery(req);
|
const search = common.getSearchQuery(req);
|
||||||
@@ -81,7 +101,7 @@
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
app.get('/users/new', requirePermission('users.create'), function (req, res) {
|
app.get('/settings/users/new', requirePermission('users.create'), function (req, res) {
|
||||||
fetchRoleOptions().then(function (roles) {
|
fetchRoleOptions().then(function (roles) {
|
||||||
res.send(pages.renderUsersAddPage(req.query.message ? String(req.query.message) : '', req.currentUser, mapRolesForForm(roles, []), {}, 'primary'));
|
res.send(pages.renderUsersAddPage(req.query.message ? String(req.query.message) : '', req.currentUser, mapRolesForForm(roles, []), {}, 'primary'));
|
||||||
}).catch(function (error) {
|
}).catch(function (error) {
|
||||||
@@ -89,7 +109,7 @@
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
app.get('/users/:id/duplicate', requirePermission('users.read'), requirePermission('users.create'), async function (req, res, next) {
|
app.get('/settings/users/:id/duplicate', requirePermission('users.read'), requirePermission('users.create'), async function (req, res, next) {
|
||||||
try {
|
try {
|
||||||
const userId = Number(req.params.id);
|
const userId = Number(req.params.id);
|
||||||
if (!Number.isInteger(userId) || userId <= 0) {
|
if (!Number.isInteger(userId) || userId <= 0) {
|
||||||
@@ -100,8 +120,9 @@
|
|||||||
if (!user) {
|
if (!user) {
|
||||||
return res.status(404).send('User not found.');
|
return res.status(404).send('User not found.');
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Number(req.currentUser.id) === userId) {
|
if (Number(req.currentUser.id) === userId) {
|
||||||
return res.redirect('/users?message=' + encodeURIComponent('Use Add user to create another login for yourself.'));
|
return res.redirect('/settings/users?message=' + encodeURIComponent('Use Add user to create another login for yourself.'));
|
||||||
}
|
}
|
||||||
|
|
||||||
const roles = await fetchRoleOptions();
|
const roles = await fetchRoleOptions();
|
||||||
@@ -121,7 +142,7 @@
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
app.get('/users/:id/edit', requirePermission('users.update'), async function (req, res, next) {
|
app.get('/settings/users/:id/edit', requirePermission('users.update'), async function (req, res, next) {
|
||||||
try {
|
try {
|
||||||
const userId = Number(req.params.id);
|
const userId = Number(req.params.id);
|
||||||
if (!Number.isInteger(userId) || userId <= 0) {
|
if (!Number.isInteger(userId) || userId <= 0) {
|
||||||
@@ -140,19 +161,62 @@
|
|||||||
const canDelete = !countRows.length || Number(countRows[0].user_count) > 1;
|
const canDelete = !countRows.length || Number(countRows[0].user_count) > 1;
|
||||||
|
|
||||||
const roles = await fetchRoleOptions();
|
const roles = await fetchRoleOptions();
|
||||||
|
const sessions = (await rbacData.fetchActiveUserSessions(pool, userId)).map(function (session) {
|
||||||
|
return {
|
||||||
|
id: Number(session.id),
|
||||||
|
ipAddress: String(session.ip_address || 'Unknown'),
|
||||||
|
userAgent: String(session.user_agent || 'Unknown browser'),
|
||||||
|
createdAtLabel: formatDashboardDate(session.created_at),
|
||||||
|
lastUsedAtLabel: formatDashboardDate(session.last_used_at),
|
||||||
|
expiresAtLabel: formatDashboardDate(session.expires_at)
|
||||||
|
};
|
||||||
|
});
|
||||||
res.send(pages.renderUsersEditPage(Object.assign({}, user, {
|
res.send(pages.renderUsersEditPage(Object.assign({}, user, {
|
||||||
isCurrentUser: false,
|
isCurrentUser: false,
|
||||||
createdAtLabel: formatDashboardDate(user.created_at),
|
createdAtLabel: formatDashboardDate(user.created_at),
|
||||||
modifiedAtLabel: formatDashboardDate(user.modified_at),
|
modifiedAtLabel: formatDashboardDate(user.modified_at),
|
||||||
roleNames: String(user.roleNames || '').trim() || 'No roles assigned',
|
roleNames: String(user.roleNames || '').trim() || 'No roles assigned',
|
||||||
inUse: !canDelete
|
inUse: !canDelete
|
||||||
}), req.query.message ? String(req.query.message) : '', req.currentUser, mapRolesForForm(roles, user.roleIds)));
|
}), req.query.message ? String(req.query.message) : '', req.currentUser, mapRolesForForm(roles, user.roleIds), sessions));
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
next(error);
|
next(error);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
app.post('/users', requirePermission('users.create'), async function (req, res, next) {
|
app.post('/settings/users/:id/sessions/:sessionId/revoke', requirePermission('users.update'), async function (req, res, next) {
|
||||||
|
try {
|
||||||
|
const userId = Number(req.params.id);
|
||||||
|
const sessionId = Number(req.params.sessionId);
|
||||||
|
if (!Number.isInteger(userId) || userId <= 0 || !Number.isInteger(sessionId) || sessionId <= 0) {
|
||||||
|
return res.status(400).send('Invalid session.');
|
||||||
|
}
|
||||||
|
if (Number(req.currentUser.id) === userId) {
|
||||||
|
return res.redirect('/account?message=' + encodeURIComponent('Use My Account to manage your own sessions.'));
|
||||||
|
}
|
||||||
|
const [result] = await pool.query('DELETE FROM a_sessions WHERE id = ? AND user_id = ?', [sessionId, userId]);
|
||||||
|
res.redirect('/settings/users/' + userId + '/edit?message=' + encodeURIComponent(result && result.affectedRows ? 'Session signed out.' : 'Session was not found.'));
|
||||||
|
} catch (error) {
|
||||||
|
next(error);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
app.post('/settings/users/:id/sessions/revoke-all', requirePermission('users.update'), async function (req, res, next) {
|
||||||
|
try {
|
||||||
|
const userId = Number(req.params.id);
|
||||||
|
if (!Number.isInteger(userId) || userId <= 0) {
|
||||||
|
return res.status(400).send('Invalid user.');
|
||||||
|
}
|
||||||
|
if (Number(req.currentUser.id) === userId) {
|
||||||
|
return res.redirect('/account?message=' + encodeURIComponent('Use My Account to manage your own sessions.'));
|
||||||
|
}
|
||||||
|
await pool.query('DELETE FROM a_sessions WHERE user_id = ?', [userId]);
|
||||||
|
res.redirect('/settings/users/' + userId + '/edit?message=' + encodeURIComponent('All sessions signed out.'));
|
||||||
|
} catch (error) {
|
||||||
|
next(error);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
app.post('/settings/users', requirePermission('users.create'), async function (req, res, next) {
|
||||||
const connection = await pool.getConnection();
|
const connection = await pool.getConnection();
|
||||||
try {
|
try {
|
||||||
const name = common.validateMaxLength(req.body.name || '', USER_NAME_MAX_LENGTH, 'Name');
|
const name = common.validateMaxLength(req.body.name || '', USER_NAME_MAX_LENGTH, 'Name');
|
||||||
@@ -178,7 +242,7 @@
|
|||||||
if (!username) {
|
if (!username) {
|
||||||
return renderValidationError('Username is required.');
|
return renderValidationError('Username is required.');
|
||||||
}
|
}
|
||||||
const passwordStrengthMessage = validatePasswordStrength(password);
|
const passwordStrengthMessage = validatePasswordStrength(password, await getPasswordRequirements());
|
||||||
if (passwordStrengthMessage) {
|
if (passwordStrengthMessage) {
|
||||||
return renderValidationError(passwordStrengthMessage);
|
return renderValidationError(passwordStrengthMessage);
|
||||||
}
|
}
|
||||||
@@ -198,18 +262,30 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
const passwordRecord = hashPassword(password);
|
const passwordRecord = hashPassword(password);
|
||||||
|
const mustChangePassword = await shouldRequirePasswordChange('security.require_password_change_for_new_users');
|
||||||
const actorId = getAuditUserId(req);
|
const actorId = getAuditUserId(req);
|
||||||
await connection.beginTransaction();
|
await connection.beginTransaction();
|
||||||
const [result] = await connection.query(
|
const [result] = await connection.query(
|
||||||
'INSERT INTO a_users (name, username, password_hash, password_salt, password_iterations, created_by, modified_by) VALUES (?, ?, ?, ?, ?, ?, ?)',
|
'INSERT INTO a_users (name, username, password_hash, password_salt, password_iterations, must_change_password, created_by, modified_by) VALUES (?, ?, ?, ?, ?, ?, ?, ?)',
|
||||||
[name, username, passwordRecord.hash, passwordRecord.salt, passwordRecord.iterations, actorId, actorId]
|
[name, username, passwordRecord.hash, passwordRecord.salt, passwordRecord.iterations, mustChangePassword ? 1 : 0, actorId, actorId]
|
||||||
);
|
);
|
||||||
await rbacData.syncUserRoles(connection, result.insertId, roleCheck.roleIds);
|
await rbacData.syncUserRoles(connection, result.insertId, roleCheck.roleIds);
|
||||||
await connection.commit();
|
await connection.commit();
|
||||||
if (saveAction === 'new') {
|
if (typeof recordRequestAuditEvent === 'function') {
|
||||||
return res.redirect('/users/new?message=' + encodeURIComponent('User created.'));
|
await recordRequestAuditEvent(pool, req, {
|
||||||
|
category: 'users',
|
||||||
|
eventType: 'user.created',
|
||||||
|
actorUserId: actorId,
|
||||||
|
targetType: 'user',
|
||||||
|
targetId: result.insertId,
|
||||||
|
targetLabel: username,
|
||||||
|
details: { roleIds: roleCheck.roleIds }
|
||||||
|
});
|
||||||
}
|
}
|
||||||
res.redirect('/users/' + result.insertId + '/edit?message=' + encodeURIComponent('User created.'));
|
if (saveAction === 'new') {
|
||||||
|
return res.redirect('/settings/users/new?message=' + encodeURIComponent('User created.'));
|
||||||
|
}
|
||||||
|
res.redirect('/settings/users/' + result.insertId + '/edit?message=' + encodeURIComponent('User created.'));
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
try {
|
try {
|
||||||
await connection.rollback();
|
await connection.rollback();
|
||||||
@@ -222,7 +298,7 @@
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
app.post('/users/:id/roles', requirePermission('users.update'), async function (req, res, next) {
|
app.post('/settings/users/:id/roles', requirePermission('users.update'), async function (req, res, next) {
|
||||||
try {
|
try {
|
||||||
const userId = Number(req.params.id);
|
const userId = Number(req.params.id);
|
||||||
if (!Number.isInteger(userId) || userId <= 0) {
|
if (!Number.isInteger(userId) || userId <= 0) {
|
||||||
@@ -240,17 +316,28 @@
|
|||||||
const selectedRoleIds = readArrayField(req.body, ['role_ids[]', 'role_ids']);
|
const selectedRoleIds = readArrayField(req.body, ['role_ids[]', 'role_ids']);
|
||||||
const roleCheck = await validateRoleIds(selectedRoleIds);
|
const roleCheck = await validateRoleIds(selectedRoleIds);
|
||||||
if (!roleCheck.ok) {
|
if (!roleCheck.ok) {
|
||||||
return res.redirect('/users/' + userId + '/edit?message=' + encodeURIComponent(roleCheck.message));
|
return res.redirect('/settings/users/' + userId + '/edit?message=' + encodeURIComponent(roleCheck.message));
|
||||||
}
|
}
|
||||||
|
|
||||||
await rbacData.syncUserRoles(pool, userId, roleCheck.roleIds);
|
await rbacData.syncUserRoles(pool, userId, roleCheck.roleIds);
|
||||||
res.redirect('/users/' + userId + '/edit?message=' + encodeURIComponent('Roles updated.'));
|
if (typeof recordRequestAuditEvent === 'function') {
|
||||||
|
await recordRequestAuditEvent(pool, req, {
|
||||||
|
category: 'users',
|
||||||
|
eventType: 'user.roles_updated',
|
||||||
|
actorUserId: req.currentUser.id,
|
||||||
|
targetType: 'user',
|
||||||
|
targetId: userId,
|
||||||
|
targetLabel: String(userId),
|
||||||
|
details: { roleIds: roleCheck.roleIds }
|
||||||
|
});
|
||||||
|
}
|
||||||
|
res.redirect('/settings/users/' + userId + '/edit?message=' + encodeURIComponent('Roles updated.'));
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
next(error);
|
next(error);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
app.post('/users/:id/username', requirePermission('users.update'), async function (req, res, next) {
|
app.post('/settings/users/:id/username', requirePermission('users.update'), async function (req, res, next) {
|
||||||
const connection = await pool.getConnection();
|
const connection = await pool.getConnection();
|
||||||
try {
|
try {
|
||||||
const userId = Number(req.params.id);
|
const userId = Number(req.params.id);
|
||||||
@@ -274,6 +361,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
const username = common.validateMaxLength(req.body.username || user.username || '', USER_USERNAME_MAX_LENGTH, 'Username');
|
const username = common.validateMaxLength(req.body.username || user.username || '', USER_USERNAME_MAX_LENGTH, 'Username');
|
||||||
|
const accountLocked = req.body.account_locked === '1' || (Array.isArray(req.body.account_locked) && req.body.account_locked.includes('1'));
|
||||||
|
|
||||||
const [countRows] = await pool.query('SELECT COUNT(*) AS user_count FROM a_users');
|
const [countRows] = await pool.query('SELECT COUNT(*) AS user_count FROM a_users');
|
||||||
const canDelete = !countRows.length || Number(countRows[0].user_count) > 1;
|
const canDelete = !countRows.length || Number(countRows[0].user_count) > 1;
|
||||||
@@ -296,7 +384,7 @@
|
|||||||
return renderValidationError('Username is required.');
|
return renderValidationError('Username is required.');
|
||||||
}
|
}
|
||||||
if (shouldUpdatePassword) {
|
if (shouldUpdatePassword) {
|
||||||
const passwordStrengthMessage = validatePasswordStrength(password);
|
const passwordStrengthMessage = validatePasswordStrength(password, await getPasswordRequirements());
|
||||||
if (passwordStrengthMessage) {
|
if (passwordStrengthMessage) {
|
||||||
return renderValidationError(passwordStrengthMessage);
|
return renderValidationError(passwordStrengthMessage);
|
||||||
}
|
}
|
||||||
@@ -317,25 +405,61 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
await connection.beginTransaction();
|
await connection.beginTransaction();
|
||||||
const [result] = await connection.query('UPDATE a_users SET name = ?, username = ?, modified_by = ? WHERE id = ?', [name, username, getAuditUserId(req), userId]);
|
const [result] = await connection.query('UPDATE a_users SET name = ?, username = ?, account_locked = ?, modified_by = ? WHERE id = ?', [name, username, accountLocked ? 1 : 0, getAuditUserId(req), userId]);
|
||||||
if (!result.affectedRows) {
|
if (!result.affectedRows) {
|
||||||
await connection.rollback();
|
await connection.rollback();
|
||||||
return res.status(404).send('User not found.');
|
return res.status(404).send('User not found.');
|
||||||
}
|
}
|
||||||
await rbacData.syncUserRoles(connection, userId, roleCheck.roleIds);
|
await rbacData.syncUserRoles(connection, userId, roleCheck.roleIds);
|
||||||
|
if (accountLocked) {
|
||||||
|
await connection.query('DELETE FROM a_sessions WHERE user_id = ?', [userId]);
|
||||||
|
}
|
||||||
if (shouldUpdatePassword) {
|
if (shouldUpdatePassword) {
|
||||||
const passwordRecord = hashPassword(password);
|
const passwordRecord = hashPassword(password);
|
||||||
|
const mustChangePassword = await shouldRequirePasswordChange('security.require_password_change_after_admin_reset');
|
||||||
await connection.query(
|
await connection.query(
|
||||||
'UPDATE a_users SET password_hash = ?, password_salt = ?, password_iterations = ?, modified_by = ? WHERE id = ?',
|
'UPDATE a_users SET password_hash = ?, password_salt = ?, password_iterations = ?, must_change_password = ?, modified_by = ? WHERE id = ?',
|
||||||
[passwordRecord.hash, passwordRecord.salt, passwordRecord.iterations, getAuditUserId(req), userId]
|
[passwordRecord.hash, passwordRecord.salt, passwordRecord.iterations, mustChangePassword ? 1 : 0, getAuditUserId(req), userId]
|
||||||
);
|
);
|
||||||
await connection.query('DELETE FROM a_sessions WHERE user_id = ?', [userId]);
|
await connection.query('DELETE FROM a_sessions WHERE user_id = ?', [userId]);
|
||||||
}
|
}
|
||||||
await connection.commit();
|
await connection.commit();
|
||||||
if (saveAction === 'new') {
|
if (typeof recordRequestAuditEvent === 'function') {
|
||||||
return res.redirect('/users/new?message=' + encodeURIComponent('User updated.'));
|
await recordRequestAuditEvent(pool, req, {
|
||||||
|
category: 'users',
|
||||||
|
eventType: 'user.updated',
|
||||||
|
actorUserId: req.currentUser.id,
|
||||||
|
targetType: 'user',
|
||||||
|
targetId: userId,
|
||||||
|
targetLabel: username,
|
||||||
|
details: { roleIds: roleCheck.roleIds, passwordReset: shouldUpdatePassword, accountLocked: accountLocked }
|
||||||
|
});
|
||||||
|
if (Boolean(user.account_locked) !== accountLocked) {
|
||||||
|
await recordRequestAuditEvent(pool, req, {
|
||||||
|
category: 'security',
|
||||||
|
eventType: accountLocked ? 'account.locked' : 'account.unlocked',
|
||||||
|
actorUserId: req.currentUser.id,
|
||||||
|
targetType: 'user',
|
||||||
|
targetId: userId,
|
||||||
|
targetLabel: username
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (shouldUpdatePassword) {
|
||||||
|
await recordRequestAuditEvent(pool, req, {
|
||||||
|
category: 'security',
|
||||||
|
eventType: 'password.reset',
|
||||||
|
actorUserId: req.currentUser.id,
|
||||||
|
targetType: 'user',
|
||||||
|
targetId: userId,
|
||||||
|
targetLabel: username,
|
||||||
|
details: { source: 'administrator' }
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
res.redirect('/users?message=' + encodeURIComponent('User updated.'));
|
if (saveAction === 'new') {
|
||||||
|
return res.redirect('/settings/users/new?message=' + encodeURIComponent('User updated.'));
|
||||||
|
}
|
||||||
|
res.redirect('/settings/users?message=' + encodeURIComponent('User updated.'));
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
try {
|
try {
|
||||||
await connection.rollback();
|
await connection.rollback();
|
||||||
@@ -348,12 +472,12 @@
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
app.post('/users/:id/password', requirePermission('users.update'), async function (req, res, next) {
|
app.post('/settings/users/:id/password', requirePermission('users.update'), async function (req, res, next) {
|
||||||
try {
|
try {
|
||||||
const userId = Number(req.params.id);
|
const userId = Number(req.params.id);
|
||||||
const password = String(req.body.password || '');
|
const password = String(req.body.password || '');
|
||||||
const confirmPassword = String(req.body.confirm_password || '');
|
const confirmPassword = String(req.body.confirm_password || '');
|
||||||
const editUrl = '/users/' + userId + '/edit';
|
const editUrl = '/settings/users/' + userId + '/edit';
|
||||||
|
|
||||||
if (!Number.isInteger(userId) || userId <= 0) {
|
if (!Number.isInteger(userId) || userId <= 0) {
|
||||||
return res.status(400).send('Invalid user.');
|
return res.status(400).send('Invalid user.');
|
||||||
@@ -361,7 +485,7 @@
|
|||||||
if (Number(req.currentUser.id) === userId) {
|
if (Number(req.currentUser.id) === userId) {
|
||||||
return res.redirect('/account?message=' + encodeURIComponent('Use My Account to change your own password.'));
|
return res.redirect('/account?message=' + encodeURIComponent('Use My Account to change your own password.'));
|
||||||
}
|
}
|
||||||
const passwordStrengthMessage = validatePasswordStrength(password);
|
const passwordStrengthMessage = validatePasswordStrength(password, await getPasswordRequirements());
|
||||||
if (passwordStrengthMessage) {
|
if (passwordStrengthMessage) {
|
||||||
return res.redirect(editUrl + '?message=' + encodeURIComponent(passwordStrengthMessage));
|
return res.redirect(editUrl + '?message=' + encodeURIComponent(passwordStrengthMessage));
|
||||||
}
|
}
|
||||||
@@ -375,37 +499,60 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
const passwordRecord = hashPassword(password);
|
const passwordRecord = hashPassword(password);
|
||||||
|
const mustChangePassword = await shouldRequirePasswordChange('security.require_password_change_after_admin_reset');
|
||||||
await pool.query(
|
await pool.query(
|
||||||
'UPDATE a_users SET password_hash = ?, password_salt = ?, password_iterations = ?, modified_by = ? WHERE id = ?',
|
'UPDATE a_users SET password_hash = ?, password_salt = ?, password_iterations = ?, must_change_password = ?, modified_by = ? WHERE id = ?',
|
||||||
[passwordRecord.hash, passwordRecord.salt, passwordRecord.iterations, getAuditUserId(req), userId]
|
[passwordRecord.hash, passwordRecord.salt, passwordRecord.iterations, mustChangePassword ? 1 : 0, getAuditUserId(req), userId]
|
||||||
);
|
);
|
||||||
await pool.query('DELETE FROM a_sessions WHERE user_id = ?', [userId]);
|
await pool.query('DELETE FROM a_sessions WHERE user_id = ?', [userId]);
|
||||||
|
if (typeof recordRequestAuditEvent === 'function') {
|
||||||
|
await recordRequestAuditEvent(pool, req, {
|
||||||
|
category: 'security',
|
||||||
|
eventType: 'password.reset',
|
||||||
|
actorUserId: req.currentUser.id,
|
||||||
|
targetType: 'user',
|
||||||
|
targetId: userId,
|
||||||
|
targetLabel: rows[0].username || String(userId),
|
||||||
|
details: { source: 'administrator' }
|
||||||
|
});
|
||||||
|
}
|
||||||
res.redirect(editUrl + '?message=' + encodeURIComponent('Password updated.'));
|
res.redirect(editUrl + '?message=' + encodeURIComponent('Password updated.'));
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
next(error);
|
next(error);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
app.post('/users/:id/delete', requirePermission('users.delete'), async function (req, res, next) {
|
app.post('/settings/users/:id/delete', requirePermission('users.delete'), async function (req, res, next) {
|
||||||
try {
|
try {
|
||||||
const userId = Number(req.params.id);
|
const userId = Number(req.params.id);
|
||||||
if (!Number.isInteger(userId) || userId <= 0) {
|
if (!Number.isInteger(userId) || userId <= 0) {
|
||||||
return res.status(400).send('Invalid user.');
|
return res.status(400).send('Invalid user.');
|
||||||
}
|
}
|
||||||
if (Number(req.currentUser.id) === userId) {
|
if (Number(req.currentUser.id) === userId) {
|
||||||
return res.redirect('/users?message=' + encodeURIComponent('You cannot delete your own account from the users page.'));
|
return res.redirect('/settings/users?message=' + encodeURIComponent('You cannot delete your own account from the users page.'));
|
||||||
}
|
}
|
||||||
|
|
||||||
const [countRows] = await pool.query('SELECT COUNT(*) AS user_count FROM a_users');
|
const [countRows] = await pool.query('SELECT COUNT(*) AS user_count FROM a_users');
|
||||||
if (!countRows.length || Number(countRows[0].user_count) <= 1) {
|
if (!countRows.length || Number(countRows[0].user_count) <= 1) {
|
||||||
return res.redirect('/users?message=' + encodeURIComponent('At least one user must remain.'));
|
return res.redirect('/settings/users?message=' + encodeURIComponent('At least one user must remain.'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const [userRows] = await pool.query('SELECT username FROM a_users WHERE id = ? LIMIT 1', [userId]);
|
||||||
const [result] = await pool.query('DELETE FROM a_users WHERE id = ?', [userId]);
|
const [result] = await pool.query('DELETE FROM a_users WHERE id = ?', [userId]);
|
||||||
if (!result.affectedRows) {
|
if (!result.affectedRows) {
|
||||||
return res.status(404).send('User not found.');
|
return res.status(404).send('User not found.');
|
||||||
}
|
}
|
||||||
res.redirect('/users?message=' + encodeURIComponent('User deleted.'));
|
if (typeof recordRequestAuditEvent === 'function') {
|
||||||
|
await recordRequestAuditEvent(pool, req, {
|
||||||
|
category: 'users',
|
||||||
|
eventType: 'user.deleted',
|
||||||
|
actorUserId: req.currentUser.id,
|
||||||
|
targetType: 'user',
|
||||||
|
targetId: userId,
|
||||||
|
targetLabel: userRows[0] && userRows[0].username ? userRows[0].username : String(userId)
|
||||||
|
});
|
||||||
|
}
|
||||||
|
res.redirect('/settings/users?message=' + encodeURIComponent('User deleted.'));
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
next(error);
|
next(error);
|
||||||
}
|
}
|
||||||
|
|||||||
+147
-12
@@ -1,12 +1,14 @@
|
|||||||
// Authentication route registration for the web app.
|
// Authentication route registration for the web app.
|
||||||
|
|
||||||
const { normalizeReturnToPath, getRequestOrigin } = require('../../lib/auth/session');
|
const { normalizeReturnToPath, getRequestOrigin } = require('../../lib/auth/session');
|
||||||
|
const { fetchAppSettings } = require('../../../data/app-settings');
|
||||||
|
|
||||||
module.exports = function registerAuthRoutes(app, deps) {
|
module.exports = function registerAuthRoutes(app, deps) {
|
||||||
const pool = deps.pool;
|
const pool = deps.pool;
|
||||||
const pages = deps.pages;
|
const pages = deps.pages;
|
||||||
const createUserSession = deps.createUserSession;
|
const createUserSession = deps.createUserSession;
|
||||||
const setSessionCookie = deps.setSessionCookie;
|
const setSessionCookie = deps.setSessionCookie;
|
||||||
|
const getSessionMaxAgeMs = deps.getSessionMaxAgeMs;
|
||||||
const clearSessionCookie = deps.clearSessionCookie;
|
const clearSessionCookie = deps.clearSessionCookie;
|
||||||
const parseCookies = deps.parseCookies;
|
const parseCookies = deps.parseCookies;
|
||||||
const consumeAuthMessageCookie = deps.consumeAuthMessageCookie;
|
const consumeAuthMessageCookie = deps.consumeAuthMessageCookie;
|
||||||
@@ -14,13 +16,65 @@ module.exports = function registerAuthRoutes(app, deps) {
|
|||||||
const hashSessionToken = deps.hashSessionToken;
|
const hashSessionToken = deps.hashSessionToken;
|
||||||
const verifyPassword = deps.verifyPassword;
|
const verifyPassword = deps.verifyPassword;
|
||||||
const sessionCookieName = deps.sessionCookieName;
|
const sessionCookieName = deps.sessionCookieName;
|
||||||
|
const recordRequestAuditEvent = deps.recordRequestAuditEvent;
|
||||||
|
|
||||||
function getReturnTo(req) {
|
function getReturnTo(req) {
|
||||||
return normalizeReturnToPath(req && (req.query && req.query.returnTo || req.body && req.body.returnTo), getRequestOrigin(req));
|
return normalizeReturnToPath(req && (req.query && req.query.returnTo || req.body && req.body.returnTo), getRequestOrigin(req));
|
||||||
}
|
}
|
||||||
|
|
||||||
function buildLoginRedirect(returnTo) {
|
function buildLoginRedirect(returnTo, username) {
|
||||||
return returnTo ? '/login?returnTo=' + encodeURIComponent(returnTo) : '/login';
|
const query = [];
|
||||||
|
if (returnTo) query.push('returnTo=' + encodeURIComponent(returnTo));
|
||||||
|
if (username) query.push('username=' + encodeURIComponent(username));
|
||||||
|
return query.length ? '/login?' + query.join('&') : '/login';
|
||||||
|
}
|
||||||
|
|
||||||
|
function getClientAddress(req) {
|
||||||
|
const forwardedAddress = String(req && req.headers && req.headers['x-forwarded-for'] || '').split(',')[0].trim();
|
||||||
|
return forwardedAddress || String(req && req.ip || req && req.socket && req.socket.remoteAddress || 'unknown').trim() || 'unknown';
|
||||||
|
}
|
||||||
|
|
||||||
|
function getRateLimitKey(username, address, scope) {
|
||||||
|
if (scope === 'username') return 'username:' + username;
|
||||||
|
if (scope === 'ip') return 'ip:' + address;
|
||||||
|
return 'both:' + JSON.stringify([username, address]);
|
||||||
|
}
|
||||||
|
|
||||||
|
async function getLoginRateLimitSettings() {
|
||||||
|
const settings = await fetchAppSettings(pool);
|
||||||
|
return {
|
||||||
|
maxAttempts: Number(settings['security.login_max_attempts']) || 5,
|
||||||
|
lockoutMinutes: Number(settings['security.login_lockout_minutes']) || 15,
|
||||||
|
scope: String(settings['security.login_rate_limit_scope'] || 'both')
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
async function getLoginRateLimitStatus(rateKey) {
|
||||||
|
const [rows] = await pool.query('SELECT locked_until FROM a_login_attempts WHERE rate_key = ? LIMIT 1', [rateKey]);
|
||||||
|
const lockedUntil = rows && rows[0] && rows[0].locked_until ? new Date(rows[0].locked_until).getTime() : 0;
|
||||||
|
return {
|
||||||
|
limited: lockedUntil > Date.now(),
|
||||||
|
remainingMinutes: Math.max(1, Math.ceil((lockedUntil - Date.now()) / 60000))
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
async function recordFailedLogin(rateKey, settings) {
|
||||||
|
const [rows] = await pool.query('SELECT failed_count, locked_until FROM a_login_attempts WHERE rate_key = ? LIMIT 1', [rateKey]);
|
||||||
|
const existing = rows && rows[0] ? rows[0] : null;
|
||||||
|
const existingLockedUntil = existing && existing.locked_until ? new Date(existing.locked_until).getTime() : 0;
|
||||||
|
const currentCount = existingLockedUntil && existingLockedUntil <= Date.now() ? 0 : Number(existing && existing.failed_count) || 0;
|
||||||
|
const failedCount = currentCount + 1;
|
||||||
|
const lockedUntil = failedCount >= settings.maxAttempts ? new Date(Date.now() + settings.lockoutMinutes * 60 * 1000) : null;
|
||||||
|
if (existing) {
|
||||||
|
await pool.query('UPDATE a_login_attempts SET failed_count = ?, last_failed_at = ?, locked_until = ? WHERE rate_key = ?', [failedCount, new Date(), lockedUntil, rateKey]);
|
||||||
|
return lockedUntil ? { remainingMinutes: Math.max(1, Math.ceil((lockedUntil.getTime() - Date.now()) / 60000)) } : null;
|
||||||
|
}
|
||||||
|
await pool.query('INSERT INTO a_login_attempts (rate_key, failed_count, last_failed_at, locked_until) VALUES (?, ?, ?, ?)', [rateKey, failedCount, new Date(), lockedUntil]);
|
||||||
|
return lockedUntil ? { remainingMinutes: Math.max(1, Math.ceil((lockedUntil.getTime() - Date.now()) / 60000)) } : null;
|
||||||
|
}
|
||||||
|
|
||||||
|
async function clearFailedLogins(rateKey) {
|
||||||
|
await pool.query('DELETE FROM a_login_attempts WHERE rate_key = ?', [rateKey]);
|
||||||
}
|
}
|
||||||
|
|
||||||
app.get('/', function (req, res) {
|
app.get('/', function (req, res) {
|
||||||
@@ -36,7 +90,7 @@ module.exports = function registerAuthRoutes(app, deps) {
|
|||||||
const message = typeof consumeAuthMessageCookie === 'function'
|
const message = typeof consumeAuthMessageCookie === 'function'
|
||||||
? consumeAuthMessageCookie(req, res)
|
? consumeAuthMessageCookie(req, res)
|
||||||
: (req.query.message ? String(req.query.message) : '');
|
: (req.query.message ? String(req.query.message) : '');
|
||||||
res.send(pages.renderLoginPage(message, returnTo));
|
res.send(pages.renderLoginPage(message, returnTo, req.query.username ? String(req.query.username) : ''));
|
||||||
});
|
});
|
||||||
|
|
||||||
app.post('/login', async function (req, res, next) {
|
app.post('/login', async function (req, res, next) {
|
||||||
@@ -47,21 +101,92 @@ module.exports = function registerAuthRoutes(app, deps) {
|
|||||||
return res.status(400).send('Username and password are required.');
|
return res.status(400).send('Username and password are required.');
|
||||||
}
|
}
|
||||||
|
|
||||||
const [rows] = await pool.query('SELECT id, name, username, password_hash, password_salt, password_iterations FROM a_users WHERE username = ? LIMIT 1', [username]);
|
const loginRateLimitSettings = await getLoginRateLimitSettings();
|
||||||
const user = rows[0] || null;
|
const rateKey = getRateLimitKey(username.toLowerCase(), getClientAddress(req), loginRateLimitSettings.scope);
|
||||||
if (!user || !verifyPassword(password, user)) {
|
const rateLimitStatus = await getLoginRateLimitStatus(rateKey);
|
||||||
|
if (rateLimitStatus.limited) {
|
||||||
|
if (typeof recordRequestAuditEvent === 'function') {
|
||||||
|
await recordRequestAuditEvent(pool, req, {
|
||||||
|
category: 'authentication',
|
||||||
|
eventType: 'login.locked_out',
|
||||||
|
targetType: 'user',
|
||||||
|
targetLabel: username,
|
||||||
|
details: { reason: 'rate_limit' }
|
||||||
|
});
|
||||||
|
}
|
||||||
|
const message = 'Too many failed login attempts. Try again in ' + rateLimitStatus.remainingMinutes + ' minute' + (rateLimitStatus.remainingMinutes === 1 ? '' : 's') + '.';
|
||||||
const returnTo = getReturnTo(req);
|
const returnTo = getReturnTo(req);
|
||||||
if (typeof setAuthMessageCookie === 'function') {
|
if (typeof setAuthMessageCookie === 'function') {
|
||||||
setAuthMessageCookie(res, 'Invalid username or password.');
|
setAuthMessageCookie(res, message);
|
||||||
return res.redirect(buildLoginRedirect(returnTo));
|
return res.redirect(buildLoginRedirect(returnTo, username));
|
||||||
}
|
}
|
||||||
|
return res.status(401).send(pages.renderLoginPage(message, returnTo, username));
|
||||||
return res.status(401).send(pages.renderLoginPage('Invalid username or password.', returnTo));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const [rows] = await pool.query('SELECT id, name, username, password_hash, password_salt, password_iterations, account_locked FROM a_users WHERE username = ? LIMIT 1', [username]);
|
||||||
|
const user = rows[0] || null;
|
||||||
|
if (user && user.account_locked) {
|
||||||
|
if (typeof recordRequestAuditEvent === 'function') {
|
||||||
|
await recordRequestAuditEvent(pool, req, {
|
||||||
|
category: 'security',
|
||||||
|
eventType: 'login.blocked_account_locked',
|
||||||
|
targetType: 'user',
|
||||||
|
targetId: user.id,
|
||||||
|
targetLabel: user.username
|
||||||
|
});
|
||||||
|
}
|
||||||
|
const returnTo = getReturnTo(req);
|
||||||
|
const message = 'This account is locked. Contact an administrator.';
|
||||||
|
if (typeof setAuthMessageCookie === 'function') {
|
||||||
|
setAuthMessageCookie(res, message);
|
||||||
|
return res.redirect(buildLoginRedirect(returnTo, username));
|
||||||
|
}
|
||||||
|
return res.status(401).send(pages.renderLoginPage(message, returnTo, username));
|
||||||
|
}
|
||||||
|
if (!user || !verifyPassword(password, user)) {
|
||||||
|
const lockout = await recordFailedLogin(rateKey, loginRateLimitSettings);
|
||||||
|
if (typeof recordRequestAuditEvent === 'function') {
|
||||||
|
await recordRequestAuditEvent(pool, req, {
|
||||||
|
category: 'authentication',
|
||||||
|
eventType: lockout ? 'login.lockout' : 'login.failed',
|
||||||
|
targetType: user ? 'user' : 'username',
|
||||||
|
targetId: user ? user.id : null,
|
||||||
|
targetLabel: user ? user.username : username,
|
||||||
|
details: { reason: user ? 'invalid_password' : 'unknown_username' }
|
||||||
|
});
|
||||||
|
}
|
||||||
|
const message = lockout
|
||||||
|
? 'Too many failed login attempts. Try again in ' + lockout.remainingMinutes + ' minute' + (lockout.remainingMinutes === 1 ? '' : 's') + '.'
|
||||||
|
: 'Invalid username or password.';
|
||||||
|
const returnTo = getReturnTo(req);
|
||||||
|
if (typeof setAuthMessageCookie === 'function') {
|
||||||
|
setAuthMessageCookie(res, message);
|
||||||
|
return res.redirect(buildLoginRedirect(returnTo, username));
|
||||||
|
}
|
||||||
|
|
||||||
|
return res.status(401).send(pages.renderLoginPage(message, returnTo, username));
|
||||||
|
}
|
||||||
|
|
||||||
|
await clearFailedLogins(rateKey);
|
||||||
const returnTo = getReturnTo(req);
|
const returnTo = getReturnTo(req);
|
||||||
const token = await createUserSession(pool, user.id);
|
const sessionMaxAgeMs = typeof getSessionMaxAgeMs === 'function' ? await getSessionMaxAgeMs() : undefined;
|
||||||
setSessionCookie(res, token);
|
const token = await createUserSession(pool, user.id, sessionMaxAgeMs, {
|
||||||
|
ipAddress: getClientAddress(req),
|
||||||
|
userAgent: req.headers && req.headers['user-agent']
|
||||||
|
});
|
||||||
|
const rememberMe = req.body.remember_me === '1' || req.body.remember_me === 'true' || req.body.remember_me === true;
|
||||||
|
setSessionCookie(res, token, rememberMe ? sessionMaxAgeMs : null);
|
||||||
|
if (typeof recordRequestAuditEvent === 'function') {
|
||||||
|
await recordRequestAuditEvent(pool, req, {
|
||||||
|
category: 'authentication',
|
||||||
|
eventType: 'login.success',
|
||||||
|
actorUserId: user.id,
|
||||||
|
targetType: 'user',
|
||||||
|
targetId: user.id,
|
||||||
|
targetLabel: user.username,
|
||||||
|
details: { rememberMe: rememberMe }
|
||||||
|
});
|
||||||
|
}
|
||||||
res.redirect(returnTo || '/dashboard');
|
res.redirect(returnTo || '/dashboard');
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
next(error);
|
next(error);
|
||||||
@@ -75,6 +200,16 @@ module.exports = function registerAuthRoutes(app, deps) {
|
|||||||
if (token) {
|
if (token) {
|
||||||
await pool.query('DELETE FROM a_sessions WHERE session_hash = ?', [hashSessionToken(token)]);
|
await pool.query('DELETE FROM a_sessions WHERE session_hash = ?', [hashSessionToken(token)]);
|
||||||
}
|
}
|
||||||
|
if (typeof recordRequestAuditEvent === 'function' && req.currentUser) {
|
||||||
|
await recordRequestAuditEvent(pool, req, {
|
||||||
|
category: 'sessions',
|
||||||
|
eventType: 'session.logout',
|
||||||
|
actorUserId: req.currentUser.id,
|
||||||
|
targetType: 'user',
|
||||||
|
targetId: req.currentUser.id,
|
||||||
|
targetLabel: req.currentUser.username
|
||||||
|
});
|
||||||
|
}
|
||||||
clearSessionCookie(res);
|
clearSessionCookie(res);
|
||||||
if (typeof setAuthMessageCookie === 'function') {
|
if (typeof setAuthMessageCookie === 'function') {
|
||||||
setAuthMessageCookie(res, 'You have been signed out.');
|
setAuthMessageCookie(res, 'You have been signed out.');
|
||||||
|
|||||||
@@ -2,13 +2,14 @@
|
|||||||
|
|
||||||
const { renderView } = require('../../view');
|
const { renderView } = require('../../view');
|
||||||
|
|
||||||
module.exports = function renderLoginPage(message, returnTo) {
|
module.exports = function renderLoginPage(message, returnTo, username) {
|
||||||
return renderView('auth/login', {
|
return renderView('auth/login', {
|
||||||
title: 'Sign in',
|
title: 'Sign in',
|
||||||
authShell: true,
|
authShell: true,
|
||||||
bodyClass: 'login-page-body',
|
bodyClass: 'login-page-body',
|
||||||
message: message || '',
|
message: message || '',
|
||||||
returnTo: returnTo || '',
|
returnTo: returnTo || '',
|
||||||
|
username: username || '',
|
||||||
messageVariant: 'warning'
|
messageVariant: 'warning'
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
@@ -13,10 +13,13 @@ function toIsoTimestamp(value) {
|
|||||||
|
|
||||||
function formatIntervalLabel(interval, unit) {
|
function formatIntervalLabel(interval, unit) {
|
||||||
const value = Math.max(1, Number(interval) || 0);
|
const value = Math.max(1, Number(interval) || 0);
|
||||||
const normalizedUnit = String(unit || 'minutes').trim().toLowerCase() === 'seconds' ? 'seconds' : 'minutes';
|
const normalizedUnit = String(unit || 'minutes').trim().toLowerCase();
|
||||||
if (normalizedUnit === 'seconds') {
|
if (normalizedUnit === 'seconds') {
|
||||||
return value === 1 ? 'Every second' : `Every ${value} seconds`;
|
return value === 1 ? 'Every second' : `Every ${value} seconds`;
|
||||||
}
|
}
|
||||||
|
if (normalizedUnit === 'hours') {
|
||||||
|
return value === 1 ? 'Every hour' : `Every ${value} hours`;
|
||||||
|
}
|
||||||
return value === 1 ? 'Every minute' : `Every ${value} minutes`;
|
return value === 1 ? 'Every minute' : `Every ${value} minutes`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ const renderApiSourcesPage = require('./list');
|
|||||||
const renderApiSourceAddPage = require('./add');
|
const renderApiSourceAddPage = require('./add');
|
||||||
const renderApiSourceEditPage = require('./edit');
|
const renderApiSourceEditPage = require('./edit');
|
||||||
const { buildDuplicateApiSourceName, buildDuplicateApiSource } = require('./duplicate');
|
const { buildDuplicateApiSourceName, buildDuplicateApiSource } = require('./duplicate');
|
||||||
|
const { fetchAppSettings } = require('../../../../data/app-settings');
|
||||||
|
|
||||||
function toIsoTimestamp(value) {
|
function toIsoTimestamp(value) {
|
||||||
if (!value) {
|
if (!value) {
|
||||||
@@ -105,7 +106,9 @@ module.exports = function registerApiSourceRoutes(app, deps) {
|
|||||||
itemsPath: apiSource.items_path || '',
|
itemsPath: apiSource.items_path || '',
|
||||||
intervalLabel: apiSource.update_interval_unit === 'seconds'
|
intervalLabel: apiSource.update_interval_unit === 'seconds'
|
||||||
? (Math.max(1, Number(apiSource.update_interval_value) || 0) === 1 ? 'Every second' : `Every ${Math.max(1, Number(apiSource.update_interval_value) || 0)} seconds`)
|
? (Math.max(1, Number(apiSource.update_interval_value) || 0) === 1 ? 'Every second' : `Every ${Math.max(1, Number(apiSource.update_interval_value) || 0)} seconds`)
|
||||||
: (Math.max(1, Number(apiSource.update_interval_value) || 0) === 1 ? 'Every minute' : `Every ${Math.max(1, Number(apiSource.update_interval_value) || 0)} minutes`),
|
: apiSource.update_interval_unit === 'hours'
|
||||||
|
? (Math.max(1, Number(apiSource.update_interval_value) || 0) === 1 ? 'Every hour' : `Every ${Math.max(1, Number(apiSource.update_interval_value) || 0)} hours`)
|
||||||
|
: (Math.max(1, Number(apiSource.update_interval_value) || 0) === 1 ? 'Every minute' : `Every ${Math.max(1, Number(apiSource.update_interval_value) || 0)} minutes`),
|
||||||
lastPullLabel: apiSource.last_pulled_at ? formatDashboardDate(apiSource.last_pulled_at) : 'Never',
|
lastPullLabel: apiSource.last_pulled_at ? formatDashboardDate(apiSource.last_pulled_at) : 'Never',
|
||||||
lastPulledAtValue: apiSource.last_pulled_at ? new Date(apiSource.last_pulled_at).toISOString() : '',
|
lastPulledAtValue: apiSource.last_pulled_at ? new Date(apiSource.last_pulled_at).toISOString() : '',
|
||||||
inUse: usageIds.has(Number(apiSource.id))
|
inUse: usageIds.has(Number(apiSource.id))
|
||||||
@@ -121,8 +124,16 @@ module.exports = function registerApiSourceRoutes(app, deps) {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
app.get('/data-sources/api-sources/new', requirePermission('api-sources.create'), function (req, res) {
|
app.get('/data-sources/api-sources/new', requirePermission('api-sources.create'), async function (req, res, next) {
|
||||||
res.send(renderApiSourceAddPage(null, req.query.message ? String(req.query.message) : '', req.currentUser));
|
try {
|
||||||
|
const settings = await fetchAppSettings(pool);
|
||||||
|
res.send(renderApiSourceAddPage({
|
||||||
|
updateIntervalValue: settings['data-sources.api_default_interval_value'],
|
||||||
|
updateIntervalUnit: settings['data-sources.api_default_interval_unit']
|
||||||
|
}, req.query.message ? String(req.query.message) : '', req.currentUser));
|
||||||
|
} catch (error) {
|
||||||
|
next(error);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
app.get('/data-sources/api-sources/:id/edit', requirePermission('api-sources.update'), async function (req, res, next) {
|
app.get('/data-sources/api-sources/:id/edit', requirePermission('api-sources.update'), async function (req, res, next) {
|
||||||
|
|||||||
@@ -4,10 +4,13 @@ const { renderView } = require('../../../view');
|
|||||||
|
|
||||||
function formatIntervalLabel(interval, unit) {
|
function formatIntervalLabel(interval, unit) {
|
||||||
const value = Math.max(1, Number(interval) || 0);
|
const value = Math.max(1, Number(interval) || 0);
|
||||||
const normalizedUnit = String(unit || 'minutes').trim().toLowerCase() === 'seconds' ? 'seconds' : 'minutes';
|
const normalizedUnit = String(unit || 'minutes').trim().toLowerCase();
|
||||||
if (normalizedUnit === 'seconds') {
|
if (normalizedUnit === 'seconds') {
|
||||||
return value === 1 ? 'Every second' : `Every ${value} seconds`;
|
return value === 1 ? 'Every second' : `Every ${value} seconds`;
|
||||||
}
|
}
|
||||||
|
if (normalizedUnit === 'hours') {
|
||||||
|
return value === 1 ? 'Every hour' : `Every ${value} hours`;
|
||||||
|
}
|
||||||
return value === 1 ? 'Every minute' : `Every ${value} minutes`;
|
return value === 1 ? 'Every minute' : `Every ${value} minutes`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ const renderRssFeedsPage = require('./list');
|
|||||||
const renderRssFeedAddPage = require('./add');
|
const renderRssFeedAddPage = require('./add');
|
||||||
const renderRssFeedEditPage = require('./edit');
|
const renderRssFeedEditPage = require('./edit');
|
||||||
const { buildDuplicateRssFeedName, buildDuplicateRssFeed } = require('./duplicate');
|
const { buildDuplicateRssFeedName, buildDuplicateRssFeed } = require('./duplicate');
|
||||||
|
const { fetchAppSettings } = require('../../../../data/app-settings');
|
||||||
|
|
||||||
async function getDataSourceUsageMaps(pool, common) {
|
async function getDataSourceUsageMaps(pool, common) {
|
||||||
const [slides] = await pool.query('SELECT content_json FROM c_slides WHERE content_json IS NOT NULL');
|
const [slides] = await pool.query('SELECT content_json FROM c_slides WHERE content_json IS NOT NULL');
|
||||||
@@ -99,8 +100,16 @@ module.exports = function registerRssFeedRoutes(app, deps) {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
app.get('/data-sources/rss-feeds/new', requirePermission('rss-feeds.create'), function (req, res) {
|
app.get('/data-sources/rss-feeds/new', requirePermission('rss-feeds.create'), async function (req, res, next) {
|
||||||
res.send(renderRssFeedAddPage(null, req.query.message ? String(req.query.message) : '', req.currentUser));
|
try {
|
||||||
|
const settings = await fetchAppSettings(pool);
|
||||||
|
res.send(renderRssFeedAddPage({
|
||||||
|
updateIntervalValue: settings['data-sources.rss_default_interval_value'],
|
||||||
|
updateIntervalUnit: settings['data-sources.rss_default_interval_unit']
|
||||||
|
}, req.query.message ? String(req.query.message) : '', req.currentUser));
|
||||||
|
} catch (error) {
|
||||||
|
next(error);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
app.get('/data-sources/rss-feeds/:id/edit', requirePermission('rss-feeds.update'), async function (req, res, next) {
|
app.get('/data-sources/rss-feeds/:id/edit', requirePermission('rss-feeds.update'), async function (req, res, next) {
|
||||||
|
|||||||
@@ -15,6 +15,9 @@ const registerRssFeedRoutes = require('./data-sources/rss-feeds/routes');
|
|||||||
const registerTimetableRoutes = require('./data-sources/timetables/routes');
|
const registerTimetableRoutes = require('./data-sources/timetables/routes');
|
||||||
const registerSettingsRoutes = require('./settings/background-tasks');
|
const registerSettingsRoutes = require('./settings/background-tasks');
|
||||||
const registerFontRoutes = require('./settings/fonts');
|
const registerFontRoutes = require('./settings/fonts');
|
||||||
|
const registerSettingsPageRoutes = require('./settings/routes');
|
||||||
|
const registerAuditLogRoutes = require('./settings/audit-log');
|
||||||
|
const registerAboutRoutes = require('./settings/about/routes');
|
||||||
const registerInternalSyncRoutes = require('./internal/sync');
|
const registerInternalSyncRoutes = require('./internal/sync');
|
||||||
const registerScreensRoutes = require('./signage/screens/routes');
|
const registerScreensRoutes = require('./signage/screens/routes');
|
||||||
const { PERMISSIONS, normalizePermissionKeys } = require('#src/rbac');
|
const { PERMISSIONS, normalizePermissionKeys } = require('#src/rbac');
|
||||||
@@ -24,6 +27,19 @@ function registerRoutes(app, deps) {
|
|||||||
registerAuthAndAccountRoutes(app, deps);
|
registerAuthAndAccountRoutes(app, deps);
|
||||||
registerSignageRoutes(app, deps);
|
registerSignageRoutes(app, deps);
|
||||||
registerSettingsAndContentRoutes(app, deps);
|
registerSettingsAndContentRoutes(app, deps);
|
||||||
|
registerSettingsPageRoutes(app, {
|
||||||
|
pool: deps.pool,
|
||||||
|
pages: deps.pages,
|
||||||
|
mediaDir: deps.mediaDir,
|
||||||
|
requirePermission: deps.requirePermission,
|
||||||
|
recordRequestAuditEvent: deps.recordRequestAuditEvent
|
||||||
|
});
|
||||||
|
registerAuditLogRoutes(app, {
|
||||||
|
pool: deps.pool,
|
||||||
|
formatDashboardDate: deps.formatDashboardDate,
|
||||||
|
setAuthMessageCookie: deps.setAuthMessageCookie
|
||||||
|
});
|
||||||
|
registerAboutRoutes(app, deps);
|
||||||
registerInternalSyncRoutes(app, {
|
registerInternalSyncRoutes(app, {
|
||||||
backgroundTaskQueue: deps.backgroundTaskQueue,
|
backgroundTaskQueue: deps.backgroundTaskQueue,
|
||||||
uploadSyncService: deps.uploadSyncService,
|
uploadSyncService: deps.uploadSyncService,
|
||||||
@@ -50,13 +66,16 @@ function registerAuthAndAccountRoutes(app, deps) {
|
|||||||
pages: deps.pages,
|
pages: deps.pages,
|
||||||
createUserSession: deps.createUserSession,
|
createUserSession: deps.createUserSession,
|
||||||
setSessionCookie: deps.setSessionCookie,
|
setSessionCookie: deps.setSessionCookie,
|
||||||
|
getSessionMaxAgeMs: deps.getSessionMaxAgeMs,
|
||||||
|
getConfiguredMaxActiveSessions: deps.getConfiguredMaxActiveSessions,
|
||||||
clearSessionCookie: deps.clearSessionCookie,
|
clearSessionCookie: deps.clearSessionCookie,
|
||||||
setAuthMessageCookie: deps.setAuthMessageCookie,
|
setAuthMessageCookie: deps.setAuthMessageCookie,
|
||||||
consumeAuthMessageCookie: deps.consumeAuthMessageCookie,
|
consumeAuthMessageCookie: deps.consumeAuthMessageCookie,
|
||||||
parseCookies: deps.parseCookies,
|
parseCookies: deps.parseCookies,
|
||||||
hashSessionToken: deps.hashSessionToken,
|
hashSessionToken: deps.hashSessionToken,
|
||||||
verifyPassword: deps.verifyPassword,
|
verifyPassword: deps.verifyPassword,
|
||||||
sessionCookieName: deps.sessionCookieName
|
sessionCookieName: deps.sessionCookieName,
|
||||||
|
recordRequestAuditEvent: deps.recordRequestAuditEvent
|
||||||
});
|
});
|
||||||
|
|
||||||
registerPagesRoutes(app, {
|
registerPagesRoutes(app, {
|
||||||
@@ -80,7 +99,12 @@ function registerAuthAndAccountRoutes(app, deps) {
|
|||||||
hashPassword: deps.hashPassword,
|
hashPassword: deps.hashPassword,
|
||||||
validatePasswordStrength: deps.validatePasswordStrength,
|
validatePasswordStrength: deps.validatePasswordStrength,
|
||||||
createUserSession: deps.createUserSession,
|
createUserSession: deps.createUserSession,
|
||||||
setSessionCookie: deps.setSessionCookie
|
setSessionCookie: deps.setSessionCookie,
|
||||||
|
getSessionMaxAgeMs: deps.getSessionMaxAgeMs,
|
||||||
|
parseCookies: deps.parseCookies,
|
||||||
|
hashSessionToken: deps.hashSessionToken,
|
||||||
|
sessionCookieName: deps.sessionCookieName,
|
||||||
|
recordRequestAuditEvent: deps.recordRequestAuditEvent
|
||||||
});
|
});
|
||||||
|
|
||||||
registerUsersRoutes(app, {
|
registerUsersRoutes(app, {
|
||||||
@@ -93,7 +117,8 @@ function registerAuthAndAccountRoutes(app, deps) {
|
|||||||
validatePasswordStrength: deps.validatePasswordStrength,
|
validatePasswordStrength: deps.validatePasswordStrength,
|
||||||
readArrayField: deps.readArrayField,
|
readArrayField: deps.readArrayField,
|
||||||
rbacData: deps.rbacData,
|
rbacData: deps.rbacData,
|
||||||
requirePermission: deps.requirePermission
|
requirePermission: deps.requirePermission,
|
||||||
|
recordRequestAuditEvent: deps.recordRequestAuditEvent
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -112,7 +137,8 @@ function registerSignageRoutes(app, deps) {
|
|||||||
notifyPlayerScreens: deps.notifyPlayerScreens,
|
notifyPlayerScreens: deps.notifyPlayerScreens,
|
||||||
broadcastDashboardState: deps.broadcastDashboardState,
|
broadcastDashboardState: deps.broadcastDashboardState,
|
||||||
getPlaylistDeleteBlockMessage: deps.playerActionService.getPlaylistDeleteBlockMessage,
|
getPlaylistDeleteBlockMessage: deps.playerActionService.getPlaylistDeleteBlockMessage,
|
||||||
requirePermission: deps.requirePermission
|
requirePermission: deps.requirePermission,
|
||||||
|
recordRequestAuditEvent: deps.recordRequestAuditEvent
|
||||||
});
|
});
|
||||||
|
|
||||||
registerManageRoutes(app, {
|
registerManageRoutes(app, {
|
||||||
@@ -128,7 +154,8 @@ function registerSignageRoutes(app, deps) {
|
|||||||
forwardPlayerCommand: deps.playerActionService.forwardPlayerCommand,
|
forwardPlayerCommand: deps.playerActionService.forwardPlayerCommand,
|
||||||
forwardPlayerCommandToBaseUrl: deps.playerActionService.forwardPlayerCommandToBaseUrl,
|
forwardPlayerCommandToBaseUrl: deps.playerActionService.forwardPlayerCommandToBaseUrl,
|
||||||
forwardPlayerCommandToDevice: deps.playerActionService.forwardPlayerCommandToDevice,
|
forwardPlayerCommandToDevice: deps.playerActionService.forwardPlayerCommandToDevice,
|
||||||
requirePermission: deps.requirePermission
|
requirePermission: deps.requirePermission,
|
||||||
|
recordRequestAuditEvent: deps.recordRequestAuditEvent
|
||||||
});
|
});
|
||||||
|
|
||||||
registerAnnouncementRoutes(app, {
|
registerAnnouncementRoutes(app, {
|
||||||
@@ -167,7 +194,8 @@ function registerSettingsAndContentRoutes(app, deps) {
|
|||||||
readArrayField: deps.readArrayField,
|
readArrayField: deps.readArrayField,
|
||||||
permissions: PERMISSIONS,
|
permissions: PERMISSIONS,
|
||||||
normalizePermissionKeys: normalizePermissionKeys,
|
normalizePermissionKeys: normalizePermissionKeys,
|
||||||
requirePermission: deps.requirePermission
|
requirePermission: deps.requirePermission,
|
||||||
|
recordRequestAuditEvent: deps.recordRequestAuditEvent
|
||||||
});
|
});
|
||||||
|
|
||||||
registerContentRoutes(app, {
|
registerContentRoutes(app, {
|
||||||
@@ -193,7 +221,8 @@ function registerSettingsAndContentRoutes(app, deps) {
|
|||||||
getSlideDeleteBlockMessage: deps.playerActionService.getSlideDeleteBlockMessage,
|
getSlideDeleteBlockMessage: deps.playerActionService.getSlideDeleteBlockMessage,
|
||||||
getTemplateDeleteBlockMessage: deps.playerActionService.getTemplateDeleteBlockMessage,
|
getTemplateDeleteBlockMessage: deps.playerActionService.getTemplateDeleteBlockMessage,
|
||||||
getCanvasSizeDeleteBlockMessage: deps.playerActionService.getCanvasSizeDeleteBlockMessage,
|
getCanvasSizeDeleteBlockMessage: deps.playerActionService.getCanvasSizeDeleteBlockMessage,
|
||||||
requirePermission: deps.requirePermission
|
requirePermission: deps.requirePermission,
|
||||||
|
recordRequestAuditEvent: deps.recordRequestAuditEvent
|
||||||
});
|
});
|
||||||
|
|
||||||
registerRootDataSourceRoutes(app, {
|
registerRootDataSourceRoutes(app, {
|
||||||
|
|||||||
@@ -0,0 +1,82 @@
|
|||||||
|
// Settings page renderer for the About page.
|
||||||
|
|
||||||
|
const fs = require('fs');
|
||||||
|
const path = require('path');
|
||||||
|
const { renderView } = require('../../../view');
|
||||||
|
const packageLock = require('#root/package-lock.json');
|
||||||
|
const tinyMcePackage = require('#root/src/web/public/vendor/tinymce/package.json');
|
||||||
|
|
||||||
|
function readVersionFromLockfile(packageName) {
|
||||||
|
const entry = packageLock && packageLock.packages ? packageLock.packages[`node_modules/${packageName}`] : null;
|
||||||
|
return entry && entry.version ? String(entry.version) : '';
|
||||||
|
}
|
||||||
|
|
||||||
|
function readPackageVersion(packageName) {
|
||||||
|
const lockedVersion = readVersionFromLockfile(packageName);
|
||||||
|
if (lockedVersion) {
|
||||||
|
return lockedVersion;
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
const packageJsonPath = require.resolve(`${packageName}/package.json`);
|
||||||
|
return String(JSON.parse(fs.readFileSync(packageJsonPath, 'utf8')).version || '');
|
||||||
|
} catch (_error) {
|
||||||
|
try {
|
||||||
|
let currentDir = path.dirname(require.resolve(packageName));
|
||||||
|
for (;;) {
|
||||||
|
const packageJsonPath = path.join(currentDir, 'package.json');
|
||||||
|
if (fs.existsSync(packageJsonPath)) {
|
||||||
|
const parsed = JSON.parse(fs.readFileSync(packageJsonPath, 'utf8'));
|
||||||
|
if (String(parsed && parsed.name || '') === packageName) {
|
||||||
|
return String(parsed.version || '');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const parentDir = path.dirname(currentDir);
|
||||||
|
if (parentDir === currentDir) {
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
currentDir = parentDir;
|
||||||
|
}
|
||||||
|
} catch (_error2) {
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function readAdminLteVersion() {
|
||||||
|
const cssPath = path.join(__dirname, '../../../public/adminlte/css/adminlte.min.css');
|
||||||
|
const cssText = fs.readFileSync(cssPath, 'utf8');
|
||||||
|
const match = cssText.match(/AdminLTE v([0-9]+\.[0-9]+\.[0-9]+)/i);
|
||||||
|
return match ? match[1] : '';
|
||||||
|
}
|
||||||
|
|
||||||
|
function buildLibraryList() {
|
||||||
|
return [
|
||||||
|
{ name: 'AdminLTE', version: readAdminLteVersion(), usage: 'Admin dashboard layout and components', license: 'MIT', url: 'https://adminlte.io/' },
|
||||||
|
{ name: 'Animate.css', version: readPackageVersion('animate.css'), usage: 'Reusable animation classes', license: 'MIT', url: 'https://animate.style/' },
|
||||||
|
{ name: 'Bootstrap Icons', version: readPackageVersion('bootstrap-icons'), usage: 'Icon set used throughout the UI', license: 'MIT', url: 'https://icons.getbootstrap.com/' },
|
||||||
|
{ name: 'Cropper.js', version: readPackageVersion('cropperjs'), usage: 'Image cropping in the slide editor', license: 'MIT', url: 'https://github.com/fengyuanchen/cropperjs' },
|
||||||
|
{ name: 'Express', version: readPackageVersion('express'), usage: 'Web server and routing', license: 'MIT', url: 'https://expressjs.com/' },
|
||||||
|
{ name: 'Handlebars', version: readPackageVersion('handlebars'), usage: 'Server-side view rendering', license: 'MIT', url: 'https://handlebarsjs.com/' },
|
||||||
|
{ name: 'hls.js', version: readPackageVersion('hls.js'), usage: 'HTTP Live Streaming playback', license: 'Apache-2.0', url: 'https://github.com/video-dev/hls.js' },
|
||||||
|
{ name: 'Multer', version: readPackageVersion('multer'), usage: 'Multipart file uploads', license: 'MIT', url: 'https://github.com/expressjs/multer' },
|
||||||
|
{ name: 'MySQL2', version: readPackageVersion('mysql2'), usage: 'Database access layer', license: 'MIT', url: 'https://github.com/sidorares/node-mysql2' },
|
||||||
|
{ name: 'Sharp', version: readPackageVersion('sharp'), usage: 'Image processing and transforms', license: 'Apache-2.0', url: 'https://sharp.pixelplumbing.com/' },
|
||||||
|
{ name: 'TinyMCE', version: tinyMcePackage.version, usage: 'Rich text editing for content fields', license: 'GPL-2.0-or-later', url: 'https://www.tiny.cloud/' },
|
||||||
|
{ name: 'ws', version: readPackageVersion('ws'), usage: 'WebSocket transport', license: 'MIT', url: 'https://github.com/websockets/ws' }
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = function renderAboutPage(currentUser) {
|
||||||
|
return renderView('settings/about/index', {
|
||||||
|
title: 'About',
|
||||||
|
active: 'about',
|
||||||
|
currentUser: currentUser || null,
|
||||||
|
repositoryUrl: 'https://git.lzstealth.com/LZStealth/pulse-signage.git',
|
||||||
|
libraries: buildLibraryList(),
|
||||||
|
scripts: []
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
module.exports.buildLibraryList = buildLibraryList;
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
// Settings route registration for the About page.
|
||||||
|
|
||||||
|
module.exports = function registerAboutRoutes(app, deps) {
|
||||||
|
const pages = deps.pages;
|
||||||
|
|
||||||
|
if (!pages) {
|
||||||
|
throw new Error('registerAboutRoutes requires pages.');
|
||||||
|
}
|
||||||
|
|
||||||
|
app.get('/settings/about', function (req, res) {
|
||||||
|
res.send(pages.renderAboutPage(req.currentUser));
|
||||||
|
});
|
||||||
|
};
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user