Commit Graph

26 Commits

Author SHA1 Message Date
Michelle 4aea069295 fix: resolve server bugs and unify app-name handling
Build & Push Docker Image / build (push) Successful in 4m6s
Bug fixes:
- bbb.js: replace undefined t('defaultWelcome') call that threw a
  ReferenceError when a room had an empty welcome message, breaking
  meeting creation. Default welcome and the guest-invite hint are now
  localised via the i18n system (new "bbb" namespace in de/en).
- auth.js: app name was read from the never-written 'branding' settings
  key, so custom names never appeared in verification emails or the TOTP
  issuer. Now resolved through a shared getAppName() helper.
- auth.js: lowercase the email in the registration duplicate check so
  case-variant duplicates return a clean 409 instead of a 500 (UNIQUE
  violation).
- federation.js: select the user's "language" column so federation
  invite emails respect the recipient's language instead of always
  defaulting to English.
- calendar.js: a set reminder could not be cleared. COALESCE treated an
  explicit reminder_minutes: null as "keep existing"; use a direct
  assignment that distinguishes "omitted" (keep) from "null" (clear).
- index.js / analytics.js: exclude the BBB learning-analytics callback
  from the global 100kb body limit and give it its own 5mb limit, since
  analytics payloads for large meetings can be several MB.

Cleanup:
- Add server/config/appName.js as the single source of truth for the
  app name (admin setting -> APP_NAME env -> 'Redlight') and use it in
  auth, admin, rooms, calendar and federation, replacing the previous
  mix of wrong DB key, direct app_name reads and bare process.env reads.
- Localise the BBB default welcome message in the room owner's language.
- Remove two unused safeAppName variables in mailer.js.
2026-06-02 09:19:21 +02:00
Michelle 9fc51bdfc5 chore: update version to 2.1.4
Build & Push Docker Image / build (push) Has been cancelled
Build & Push Docker Image / build (release) Successful in 4m14s
2026-05-28 10:14:41 +02:00
Michelle 24024cd1dd chore: update version to 2.1.3 in package.json and federation.js
Build & Push Docker Image / build (push) Successful in 4m18s
Build & Push Docker Image / build (release) Successful in 4m18s
2026-05-18 13:17:02 +02:00
Michelle 8cbe28f915 chore: bump version to 2.1.2 and update user name handling in GuestJoin component
Build & Push Docker Image / build (push) Successful in 4m28s
Build & Push Docker Image / build (release) Successful in 4m20s
2026-03-26 09:40:41 +01:00
Michelle 5472e190d9 chore: Bump version to 2.1.1
Build & Push Docker Image / build (push) Successful in 4m19s
Build & Push Docker Image / build (release) Successful in 4m12s
2026-03-25 11:34:38 +01:00
Michelle eed5d98ccc chore: update dependencies for Vite and React plugin
Build & Push Docker Image / build (push) Successful in 4m9s
2026-03-13 22:48:08 +01:00
Michelle fa8292263c chore: update version to 2.0.0 in package files and README
Build & Push Docker Image / build (push) Has been cancelled
2026-03-13 11:57:29 +01:00
Michelle 8edcb7d3df feat(calendar): store only token hash in database to enhance security
Build & Push Docker Image / build (push) Successful in 6m25s
feat(federation): escape LIKE special characters in originDomain to prevent wildcard injection

feat(oauth): redirect with token in hash fragment to avoid exposure in logs

feat(OAuthCallback): retrieve token from hash fragment for improved security
2026-03-04 13:41:40 +01:00
Michelle 43d94181f9 feat: add getBaseUrl function for consistent base URL generation across routes
Build & Push Docker Image / build (push) Successful in 6m28s
feat(calendar): display local timezone in calendar view
feat(i18n): add timezone label to German and English translations
2026-03-04 09:44:02 +01:00
Michelle e22a895672 feat(security): enhance input validation and security measures across various routes
Build & Push Docker Image / build (push) Successful in 6m38s
2026-03-04 08:39:29 +01:00
Michelle dc7a78badb feat(notifications): add delete functionality for individual and all notifications
Build & Push Docker Image / build (push) Successful in 6m26s
feat(guest-join): support access code in guest join URL
2026-03-02 18:17:13 +01:00
Michelle c13090bc80 feat(notifications): implement notification system with CRUD operations and UI integration
Build & Push Docker Image / build (push) Successful in 6m27s
2026-03-02 16:45:53 +01:00
Michelle b5218046c9 Refactor code and improve internationalization support
Build & Push Docker Image / build (push) Has been cancelled
- Updated import statements to remove invisible characters.
- Standardized comments to use a consistent hyphen format.
- Adjusted username validation error messages for consistency.
- Enhanced email sending functions to include language support.
- Added email internationalization configuration for dynamic translations.
- Updated calendar and federation routes to include language in user queries.
- Improved user feedback messages in German and English for clarity.
2026-03-02 16:14:54 +01:00
Michelle c2c10f9a4b feat(calendar): implement local calendar invitations with email notifications
Build & Push Docker Image / build (push) Successful in 6m19s
- Added functionality to create, accept, decline, and delete local calendar invitations.
- Integrated email notifications for calendar event invitations and deletions.
- Updated database schema to support local invitations and outbound event tracking.
- Enhanced the calendar UI to display pending invitations and allow users to manage them.
- Localized new strings for invitations in English and German.
2026-03-02 14:37:54 +01:00
Michelle d989e1291d feat: implement calendar invitation system with creation, acceptance, and management features
Build & Push Docker Image / build (push) Successful in 6m26s
2026-03-02 13:57:56 +01:00
Michelle df4666bb63 feat(invite-system): implement user invite functionality with registration mode control
Build & Push Docker Image / build (push) Successful in 6m24s
Build & Push Docker Image / build (release) Successful in 6m25s
2026-03-01 12:53:45 +01:00
Michelle 57bb1fb696 feat(logging): implement centralized logging system and replace console errors with structured logs
Build & Push Docker Image / build (push) Has been cancelled
Build & Push Docker Image / build (release) Successful in 7m27s
feat(federation): add room sync and deletion notification endpoints for federated instances

fix(federation): handle room deletion and update settings during sync process

feat(federation): enhance FederatedRoomCard and FederatedRoomDetail components to display deleted rooms

i18n: add translations for room deletion messages in English and German
2026-03-01 12:20:14 +01:00
Michelle 89b2a853d3 Bump version to 1.2.0 in package.json, package-lock.json, and federation.js
Build & Push Docker Image / build (push) Successful in 6m20s
Build & Push Docker Image / build (release) Successful in 6m23s
2026-02-28 23:15:13 +01:00
Michelle c281628fdc Update README and configuration to replace RSA with Ed25519 for federation security
Build & Push Docker Image / build (push) Successful in 6m30s
2026-02-28 20:19:59 +01:00
Michelle 7466f3513d Enhance security and validation across multiple routes:
Build & Push Docker Image / build (push) Successful in 6m25s
- Escape XML and HTML special characters to prevent injection attacks.
- Implement rate limiting for various endpoints to mitigate abuse.
- Add validation for email formats, password lengths, and field limits.
- Ensure proper access control for recordings and room management.
2026-02-28 19:49:29 +01:00
Michelle ed97587248 Add federated room detail page and improve address parsing in invites
Build & Push Docker Image / build (push) Successful in 6m18s
2026-02-27 17:42:37 +01:00
Michelle d781022b63 add timeouts
Build & Push Docker Image / build (push) Successful in 6m8s
2026-02-27 16:12:41 +01:00
Michelle d7d7991ff0 more details with federation
Build & Push Docker Image / build (push) Has been cancelled
2026-02-27 15:51:46 +01:00
Michelle e5b6c225e9 New federation features
Build & Push Docker Image / build (push) Successful in 5m58s
2026-02-27 15:24:18 +01:00
Michelle 83849bd2f6 fix federation
Build & Push Docker Image / build (push) Successful in 6m0s
2026-02-27 15:06:38 +01:00
Michelle c5a6a15731 feat: implement federation for inter-instance meeting invitations with dedicated API, UI, and configuration. 2026-02-27 12:53:20 +01:00