From 1512c2a895ffe107d47c71f3a6d40859744c70b3 Mon Sep 17 00:00:00 2001 From: ServerBob Date: Thu, 5 Mar 2026 05:03:57 +0000 Subject: [PATCH] chore: initial custom pulse noise stack snapshot --- .dockerignore | 4 + .env.example | 51 + .env.supabase.example | 57 + .github/codeql/codeql-config.yml | 28 + .../codeql/custom-queries/RequestForgery.ql | 48 + .github/codeql/custom-queries/qlpack.yml | 4 + .github/workflows/codeql.yml | 33 + .github/workflows/desktop-release.yml | 160 + .github/workflows/release.yml | 106 + .github/workflows/test.yml | 81 + .gitignore | 17 + CONTRIBUTING.md | 155 + Caddyfile | 5 + Dockerfile | 17 + LICENSE | 661 ++ README-CUSTOM.md | 18 + README-SELFHOSTED-SUPABASE.md | 500 ++ README.md | 110 + apps/client/.gitignore | 24 + apps/client/.prettierrc.json | 11 + apps/client/components.json | 24 + apps/client/eslint.config.js | 43 + apps/client/index.html | 18 + apps/client/package.json | 101 + apps/client/public/favicon.ico | Bin 0 -> 8170 bytes apps/client/public/logo.png | Bin 0 -> 218678 bytes apps/client/public/logo.webp | Bin 0 -> 23160 bytes .../forum/create-forum-post-dialog.tsx | 291 + .../forum/edit-post-tags-dialog.tsx | 120 + .../channel-view/forum/forum-post-card.tsx | 155 + .../forum/forum-post-context-menu.tsx | 167 + .../forum/forum-thread-context.tsx | 13 + .../components/channel-view/forum/index.tsx | 344 + .../channel-view/forum/manage-tags-dialog.tsx | 287 + .../channel-view/text/file-card.tsx | 94 + .../components/channel-view/text/index.tsx | 535 ++ .../channel-view/text/message-actions.tsx | 168 + .../text/message-context-menu.tsx | 231 + .../channel-view/text/message-edit-inline.tsx | 96 + .../text/message-error-boundary.tsx | 38 + .../channel-view/text/message-reactions.tsx | 169 + .../components/channel-view/text/message.tsx | 151 + .../channel-view/text/messages-group.tsx | 164 + .../text/overrides/audio-player.tsx | 117 + .../text/overrides/code-block.tsx | 59 + .../channel-view/text/overrides/command.tsx | 136 + .../channel-view/text/overrides/image.tsx | 59 + .../channel-view/text/overrides/layout.tsx | 11 + .../text/overrides/link-preview.tsx | 63 + .../channel-view/text/overrides/link.tsx | 40 + .../channel-view/text/overrides/mention.tsx | 100 + .../channel-view/text/overrides/twitter.tsx | 12 + .../text/overrides/video-player.tsx | 34 + .../channel-view/text/overrides/youtube.tsx | 23 + .../channel-view/text/renderer/index.tsx | 313 + .../channel-view/text/renderer/serializer.tsx | 141 + .../channel-view/text/renderer/types.ts | 5 + .../text/selection-action-bar.tsx | 62 + .../channel-view/text/selection-context.tsx | 123 + .../channel-view/text/system-message.tsx | 39 + .../channel-view/text/text-skeleton.tsx | 125 + .../channel-view/text/thread-indicator.tsx | 31 + .../text/use-scroll-controller.ts | 179 + .../channel-view/text/users-typing.tsx | 41 + .../channel-view/voice/card-controls.tsx | 20 + .../channel-view/voice/card-gradient.tsx | 5 + .../voice/external-audio-streams.tsx | 53 + .../voice/external-stream-card.tsx | 265 + .../voice/external-video-card.tsx | 155 + .../voice/hooks/use-audio-level.ts | 112 + .../voice/hooks/use-pin-card-controller.ts | 44 + .../voice/hooks/use-screen-share-zoom.ts | 115 + .../voice/hooks/use-voice-refs.ts | 185 + .../components/channel-view/voice/index.tsx | 120 + .../channel-view/voice/pin-button.tsx | 22 + .../channel-view/voice/screen-share-card.tsx | 155 + .../voice/stream-settings-popover.tsx | 75 + .../voice/voice-audio-streams.tsx | 42 + .../channel-view/voice/voice-grid.tsx | 125 + .../channel-view/voice/voice-user-card.tsx | 140 + .../channel-view/voice/volume-button.tsx | 78 + .../context-menus/category/index.tsx | 68 + .../context-menus/channel/index.tsx | 119 + .../components/context-menus/user/index.tsx | 183 + .../src/components/date-picker/index.tsx | 172 + .../src/components/debug/store-debug.tsx | 13 + .../hooks/use-available-devices.ts | 44 + .../devices-provider/hooks/use-devices.ts | 16 + .../src/components/devices-provider/index.tsx | 123 + .../components/dialogs/assign-role/index.tsx | 143 + .../components/dialogs/claim-admin/index.tsx | 70 + .../dialogs/confirm-action/index.tsx | 73 + .../dialogs/create-category/index.tsx | 79 + .../dialogs/create-channel/index.tsx | 166 + .../components/dialogs/create-group-dm.tsx | 135 + .../dialogs/create-invite-dialog/index.tsx | 89 + .../dialogs/create-server/index.tsx | 158 + apps/client/src/components/dialogs/dialogs.ts | 13 + apps/client/src/components/dialogs/index.tsx | 46 + .../dialogs/plugin-commands/args.tsx | 70 + .../dialogs/plugin-commands/commands-list.tsx | 76 + .../dialogs/plugin-commands/helpers.tsx | 65 + .../dialogs/plugin-commands/index.tsx | 203 + .../dialogs/plugin-commands/response.tsx | 57 + .../dialogs/plugin-commands/types.ts | 5 + .../components/dialogs/plugin-logs/index.tsx | 247 + .../dialogs/plugin-settings/index.tsx | 363 + .../components/dialogs/text-input/index.tsx | 92 + apps/client/src/components/dialogs/types.ts | 9 + .../src/components/dm-call/call-banner.tsx | 101 + .../src/components/dm-call/dm-voice-panel.tsx | 138 + .../src/components/e2ee-setup-modal.tsx | 229 + .../src/components/emoji-picker/index.tsx | 108 + .../components/fullscreen-image/content.tsx | 164 + .../src/components/gif-picker/index.tsx | 168 + .../src/components/image-picker/index.tsx | 66 + .../keyboard-shortcuts-dialog/index.tsx | 95 + .../components/left-sidebar/categories.tsx | 174 + .../src/components/left-sidebar/channels.tsx | 378 + .../left-sidebar/external-stream.tsx | 49 + .../src/components/left-sidebar/index.tsx | 192 + .../components/left-sidebar/stats-popover.tsx | 74 + .../components/left-sidebar/user-control.tsx | 270 + .../components/left-sidebar/voice-control.tsx | 133 + .../components/left-sidebar/voice-user.tsx | 154 + .../components/mobile-bottom-nav/index.tsx | 187 + .../src/components/mobile-header/index.tsx | 64 + .../src/components/mod-view-sheet/context.tsx | 39 + .../mod-view-sheet/details/index.tsx | 124 + .../src/components/mod-view-sheet/header.tsx | 181 + .../src/components/mod-view-sheet/index.tsx | 105 + .../mod-view-sheet/mod-view-content.tsx | 90 + .../mod-view-sheet/server-activity/files.tsx | 72 + .../mod-view-sheet/server-activity/index.tsx | 57 + .../mod-view-sheet/server-activity/links.tsx | 86 + .../server-activity/messages.tsx | 48 + .../src/components/paginated-list/index.tsx | 157 + .../src/components/paginated-table/index.tsx | 171 + .../src/components/permissions-list/index.tsx | 92 + apps/client/src/components/protect/index.tsx | 19 + .../components/reconnecting-banner/index.tsx | 21 + .../src/components/right-sidebar/index.tsx | 203 + .../src/components/role-badge/index.tsx | 34 + apps/client/src/components/routing/index.tsx | 50 + .../src/components/search/search-filters.tsx | 182 + .../src/components/search/search-popover.tsx | 201 + .../src/components/search/search-result.tsx | 88 + .../category-settings/general.tsx | 56 + .../category-settings/index.tsx | 31 + .../channel-settings/general.tsx | 105 + .../server-screens/channel-settings/index.tsx | 39 + .../permissions/channel-permission-list.tsx | 76 + .../channel-settings/permissions/index.tsx | 116 + .../channel-settings/permissions/override.tsx | 184 + .../permissions/overrides-list.tsx | 260 + .../permissions/search-popover.tsx | 134 + .../channel-settings/permissions/types.ts | 8 + .../channel-settings/security.tsx | 154 + .../src/components/server-screens/index.tsx | 105 + .../src/components/server-screens/screens.ts | 16 + .../server-screens/server-screen-layout.tsx | 28 + .../server-settings/automod/index.tsx | 277 + .../server-settings/emojis/emoji-list.tsx | 97 + .../server-settings/emojis/emoji.tsx | 26 + .../server-settings/emojis/index.tsx | 87 + .../server-settings/emojis/update-emoji.tsx | 130 + .../server-settings/emojis/upload-emoji.tsx | 29 + .../server-settings/federation/index.tsx | 321 + .../server-settings/general/index.tsx | 110 + .../server-settings/general/logo-manager.tsx | 69 + .../server-screens/server-settings/index.tsx | 200 + .../server-settings/invites/index.tsx | 54 + .../server-settings/invites/invites-table.tsx | 50 + .../server-settings/invites/table-invite.tsx | 178 + .../server-settings/plugins/index.tsx | 299 + .../server-settings/roles/index.tsx | 50 + .../roles/permissions-list.tsx | 78 + .../server-settings/roles/roles-list.tsx | 71 + .../server-settings/roles/update-role.tsx | 177 + .../server-settings/storage/index.tsx | 177 + .../server-settings/storage/metrics.tsx | 70 + .../server-settings/updates/index.tsx | 112 + .../server-settings/users/index.tsx | 35 + .../server-settings/users/table-user.tsx | 112 + .../server-settings/users/users-table.tsx | 43 + .../server-settings/webhooks/index.tsx | 223 + .../user-settings/appearance/index.tsx | 330 + .../server-screens/user-settings/desktop.tsx | 66 + .../devices/hooks/use-available-devices.ts | 44 + .../user-settings/devices/index.tsx | 491 ++ .../devices/resolution-fps-control.tsx | 80 + .../user-settings/encryption.tsx | 487 ++ .../server-screens/user-settings/index.tsx | 191 + .../user-settings/password/index.tsx | 52 + .../user-settings/profile/avatar-manager.tsx | 83 + .../user-settings/profile/banner-manager.tsx | 92 + .../user-settings/profile/index.tsx | 64 + .../sounds-notifications/index.tsx | 171 + .../src/components/server-strip/index.tsx | 705 ++ .../src/components/theme-provider/index.tsx | 92 + .../thread-panel/forum-thread-view.tsx | 158 + .../src/components/thread-panel/index.tsx | 108 + .../tiptap-input/channel-mention-list.tsx | 109 + .../components/tiptap-input/emoji-list.tsx | 104 + .../src/components/tiptap-input/index.tsx | 367 + .../components/tiptap-input/mention-list.tsx | 122 + .../plugins/channel-mention-extension.ts | 125 + .../plugins/channel-mention-suggestion.ts | 146 + .../tiptap-input/plugins/command-list.tsx | 106 + .../plugins/command-suggestion.ts | 160 + .../plugins/custom-emoji-extension.ts | 60 + .../tiptap-input/plugins/mention-extension.ts | 131 + .../plugins/mention-suggestion.ts | 166 + .../plugins/slash-commands-extension.ts | 50 + .../components/tiptap-input/suggestions.ts | 174 + .../src/components/tiptap-input/types.ts | 7 + apps/client/src/components/top-bar/index.tsx | 203 + .../top-bar/notification-dropdown.tsx | 107 + .../top-bar/pinned-messages-panel.tsx | 145 + .../top-bar/thread-list-popover.tsx | 163 + .../src/components/top-bar/voice-timer.tsx | 56 + .../components/top-bar/volume-controller.tsx | 169 + .../src/components/typing-dots/index.tsx | 19 + .../client/src/components/ui/alert-dialog.tsx | 155 + apps/client/src/components/ui/alert.tsx | 67 + apps/client/src/components/ui/auto-focus.tsx | 41 + apps/client/src/components/ui/avatar.tsx | 51 + apps/client/src/components/ui/badge.tsx | 47 + apps/client/src/components/ui/button.tsx | 61 + apps/client/src/components/ui/calendar.tsx | 214 + apps/client/src/components/ui/card.tsx | 92 + apps/client/src/components/ui/color.tsx | 52 + apps/client/src/components/ui/command.tsx | 186 + .../client/src/components/ui/context-menu.tsx | 250 + apps/client/src/components/ui/dialog.tsx | 142 + .../src/components/ui/dropdown-menu.tsx | 255 + apps/client/src/components/ui/group.tsx | 46 + apps/client/src/components/ui/icon-button.tsx | 56 + apps/client/src/components/ui/icon.tsx | 41 + apps/client/src/components/ui/input.tsx | 71 + apps/client/src/components/ui/label.tsx | 22 + .../client/src/components/ui/loading-card.tsx | 30 + apps/client/src/components/ui/popover.tsx | 46 + apps/client/src/components/ui/resizable.tsx | 42 + apps/client/src/components/ui/select.tsx | 185 + apps/client/src/components/ui/separator.tsx | 29 + apps/client/src/components/ui/sheet.tsx | 139 + apps/client/src/components/ui/skeleton.tsx | 15 + apps/client/src/components/ui/slider.tsx | 79 + apps/client/src/components/ui/sonner.tsx | 23 + apps/client/src/components/ui/spinner.tsx | 45 + apps/client/src/components/ui/switch.tsx | 29 + apps/client/src/components/ui/tabs.tsx | 66 + apps/client/src/components/ui/textarea.tsx | 53 + apps/client/src/components/ui/tooltip.tsx | 86 + .../src/components/user-avatar/index.tsx | 68 + .../src/components/user-popover/index.tsx | 465 ++ .../src/components/user-status/index.tsx | 86 + .../components/voice-chat-sidebar/index.tsx | 102 + .../voice-provider/floating-pinned-card.tsx | 144 + .../voice-provider/hooks/use-floating-card.ts | 96 + .../voice-provider/hooks/use-local-streams.ts | 63 + .../hooks/use-remote-streams.ts | 192 + .../hooks/use-transport-stats.ts | 333 + .../voice-provider/hooks/use-transports.ts | 459 ++ .../hooks/use-voice-controls.ts | 259 + .../voice-provider/hooks/use-voice-events.ts | 232 + .../src/components/voice-provider/index.tsx | 1298 ++++ .../persistent-audio-streams.tsx | 247 + .../voice-provider/volume-control-context.tsx | 144 + apps/client/src/features/app/actions.ts | 709 ++ apps/client/src/features/app/hooks.ts | 60 + apps/client/src/features/app/selectors.ts | 42 + apps/client/src/features/app/slice.ts | 303 + apps/client/src/features/dialogs/actions.ts | 107 + apps/client/src/features/dialogs/hooks.ts | 4 + apps/client/src/features/dialogs/selectors.ts | 3 + apps/client/src/features/dialogs/slice.ts | 47 + apps/client/src/features/dms/actions.ts | 499 ++ apps/client/src/features/dms/hooks.ts | 41 + .../src/features/dms/plaintext-cache.ts | 78 + apps/client/src/features/dms/selectors.ts | 40 + apps/client/src/features/dms/slice.ts | 232 + apps/client/src/features/dms/subscriptions.ts | 166 + .../src/features/dms/use-dm-messages.ts | 92 + apps/client/src/features/friends/actions.ts | 76 + apps/client/src/features/friends/hooks.ts | 12 + apps/client/src/features/friends/selectors.ts | 9 + apps/client/src/features/friends/slice.ts | 66 + .../src/features/friends/subscriptions.ts | 70 + .../notifications/desktop-notification.ts | 22 + .../src/features/server-screens/actions.ts | 21 + .../src/features/server-screens/hooks.ts | 4 + .../src/features/server-screens/selectors.ts | 4 + .../src/features/server-screens/slice.ts | 43 + apps/client/src/features/server/actions.ts | 201 + .../client/src/features/server/admin/hooks.ts | 680 ++ .../src/features/server/categories/actions.ts | 26 + .../src/features/server/categories/hooks.ts | 8 + .../features/server/categories/selectors.ts | 14 + .../server/categories/subscriptions.ts | 30 + .../src/features/server/channels/actions.ts | 141 + .../src/features/server/channels/hooks.ts | 67 + .../src/features/server/channels/selectors.ts | 100 + .../features/server/channels/subscriptions.ts | 61 + .../src/features/server/emojis/actions.ts | 19 + .../src/features/server/emojis/hooks.ts | 4 + .../src/features/server/emojis/selectors.ts | 23 + .../features/server/emojis/subscriptions.ts | 30 + apps/client/src/features/server/hooks.ts | 134 + .../src/features/server/messages/actions.ts | 122 + .../src/features/server/messages/hooks.ts | 165 + .../src/features/server/messages/selectors.ts | 14 + .../features/server/messages/subscriptions.ts | 271 + .../src/features/server/plugins/actions.ts | 12 + .../src/features/server/plugins/hooks.ts | 6 + .../src/features/server/plugins/selectors.ts | 12 + .../features/server/plugins/subscriptions.ts | 21 + .../src/features/server/roles/actions.ts | 15 + .../client/src/features/server/roles/hooks.ts | 8 + .../src/features/server/roles/selectors.ts | 9 + .../features/server/roles/subscriptions.ts | 30 + apps/client/src/features/server/selectors.ts | 139 + apps/client/src/features/server/slice.ts | 743 ++ .../src/features/server/sounds/actions.ts | 448 ++ .../src/features/server/subscriptions.ts | 99 + apps/client/src/features/server/types.ts | 43 + .../src/features/server/users/actions.ts | 29 + .../client/src/features/server/users/hooks.ts | 32 + .../src/features/server/users/selectors.ts | 134 + .../features/server/users/subscriptions.ts | 127 + .../src/features/server/voice/actions.ts | 205 + .../client/src/features/server/voice/hooks.ts | 54 + .../src/features/server/voice/selectors.ts | 56 + .../features/server/voice/subscriptions.ts | 75 + apps/client/src/features/store.ts | 29 + apps/client/src/helpers/browser-logger.ts | 17 + apps/client/src/helpers/download-file.ts | 68 + apps/client/src/helpers/get-display-name.ts | 8 + apps/client/src/helpers/get-file-url.ts | 53 + .../src/helpers/get-initials-from-name.ts | 8 + .../client/src/helpers/get-res-with-height.ts | 26 + apps/client/src/helpers/giphy.ts | 54 + apps/client/src/helpers/is-html-empty.ts | 14 + apps/client/src/helpers/parse-trpc-errors.ts | 45 + apps/client/src/helpers/storage.ts | 60 + .../client/src/helpers/strip-to-plain-text.ts | 45 + apps/client/src/helpers/time-format.ts | 18 + apps/client/src/helpers/upload-file.ts | 149 + .../src/hooks/use-appearance-settings.ts | 133 + apps/client/src/hooks/use-auto-away.ts | 86 + .../src/hooks/use-decrypted-file-url.ts | 96 + apps/client/src/hooks/use-file-picker.ts | 34 + apps/client/src/hooks/use-form.ts | 112 + apps/client/src/hooks/use-is-mobile.ts | 25 + .../src/hooks/use-keyboard-shortcuts.ts | 40 + apps/client/src/hooks/use-keyboard-visible.ts | 52 + apps/client/src/hooks/use-prevent-exit.ts | 21 + .../hooks/use-sound-notification-settings.ts | 186 + apps/client/src/hooks/use-strict-effect.ts | 19 + apps/client/src/hooks/use-swipe-gestures.ts | 47 + .../client/src/hooks/use-tab-notifications.ts | 31 + apps/client/src/hooks/use-upload-files.ts | 176 + apps/client/src/index.css | 722 ++ apps/client/src/lib/connection-manager.ts | 207 + .../src/lib/converters/custom-emoji.tsx | 34 + .../src/lib/converters/tiptap-to-tokens.ts | 197 + .../lib/converters/token-content-renderer.tsx | 466 ++ .../src/lib/converters/tokens-to-tiptap.ts | 127 + .../src/lib/converters/use-token-context.ts | 50 + apps/client/src/lib/e2ee/file-crypto.ts | 67 + apps/client/src/lib/e2ee/file-key-store.ts | 18 + apps/client/src/lib/e2ee/index.ts | 696 ++ apps/client/src/lib/e2ee/key-backup.ts | 284 + apps/client/src/lib/e2ee/sender-keys.ts | 148 + apps/client/src/lib/e2ee/signal-protocol.ts | 252 + apps/client/src/lib/e2ee/store.ts | 347 + apps/client/src/lib/e2ee/types.ts | 29 + apps/client/src/lib/e2ee/utils.ts | 17 + apps/client/src/lib/events.ts | 9 + apps/client/src/lib/preferences-apply.ts | 30 + apps/client/src/lib/preferences-seed.ts | 50 + apps/client/src/lib/preferences-sync.ts | 57 + apps/client/src/lib/reconnect.ts | 139 + apps/client/src/lib/supabase.ts | 30 + apps/client/src/lib/trpc.ts | 140 + apps/client/src/lib/utils.ts | 6 + apps/client/src/main.tsx | 36 + apps/client/src/screens/connect/index.tsx | 533 ++ .../client/src/screens/disconnected/index.tsx | 91 + .../src/screens/discover-view/index.tsx | 520 ++ .../src/screens/home-view/dm-conversation.tsx | 1309 ++++ .../screens/home-view/dm-search-popover.tsx | 212 + .../src/screens/home-view/friends-panel.tsx | 385 ++ .../src/screens/home-view/home-sidebar.tsx | 284 + apps/client/src/screens/home-view/index.tsx | 157 + apps/client/src/screens/loading-app/index.tsx | 19 + apps/client/src/screens/main-view/index.tsx | 69 + .../screens/server-view/content-wrapper.tsx | 108 + apps/client/src/screens/server-view/index.tsx | 151 + .../screens/server-view/prevent-browser.tsx | 14 + apps/client/src/styles/themes.css | 370 + apps/client/src/types.ts | 74 + .../types/deepfilternet3-noise-filter.d.ts | 16 + apps/client/src/vite-env.d.ts | 39 + .../worklets/keyboard-noise-gate-worklet.js | 82 + apps/client/tsconfig.app.json | 34 + apps/client/tsconfig.json | 13 + apps/client/tsconfig.node.json | 26 + apps/client/vite.config.ts | 24 + apps/desktop/assets/icon.icns | Bin 0 -> 464829 bytes apps/desktop/assets/icon.png | Bin 0 -> 218678 bytes apps/desktop/assets/logo.png | Bin 0 -> 218678 bytes apps/desktop/entitlements.plist | 16 + apps/desktop/forge.config.ts | 84 + .../native/audio-driver/CMakeLists.txt | 50 + .../PulseAudio.driver/Contents/Info.plist | 39 + .../native/audio-driver/src/device.cpp | 893 +++ apps/desktop/native/audio-driver/src/device.h | 100 + .../native/audio-driver/src/helper.cpp | 564 ++ .../native/audio-driver/src/plugin.cpp | 520 ++ apps/desktop/native/audio-driver/src/plugin.h | 6 + .../native/audio-driver/src/ring-buffer.cpp | 141 + .../native/audio-driver/src/ring-buffer.h | 42 + apps/desktop/native/audio-driver/src/types.h | 45 + .../native/coreaudio-addon/CMakeLists.txt | 44 + .../native/coreaudio-addon/package.json | 19 + .../native/coreaudio-addon/src/addon.cpp | 24 + .../coreaudio-addon/src/aggregate-device.cpp | 131 + .../coreaudio-addon/src/aggregate-device.h | 12 + .../coreaudio-addon/src/default-device.cpp | 87 + .../coreaudio-addon/src/default-device.h | 11 + .../coreaudio-addon/src/driver-detect.cpp | 68 + .../coreaudio-addon/src/driver-detect.h | 9 + apps/desktop/package.json | 36 + apps/desktop/scripts/build-native.js | 106 + apps/desktop/scripts/build.js | 17 + apps/desktop/scripts/copy-assets.js | 13 + apps/desktop/scripts/patch-macos.sh | 50 + apps/desktop/scripts/postinstall.js | 4 + apps/desktop/src/lib/audio-capture.ts | 113 + apps/desktop/src/lib/audio-driver.ts | 124 + apps/desktop/src/lib/constants.ts | 5 + apps/desktop/src/lib/permissions.ts | 95 + apps/desktop/src/lib/store.ts | 67 + apps/desktop/src/lib/tray.ts | 74 + apps/desktop/src/lib/window-state.ts | 41 + apps/desktop/src/main.ts | 224 + apps/desktop/src/preload.ts | 24 + apps/desktop/src/server-selector.css | 150 + apps/desktop/src/server-selector.html | 74 + apps/desktop/tsconfig.json | 19 + apps/server/.eslintrc.json | 31 + apps/server/.gitignore | 39 + apps/server/.prettierrc.json | 11 + apps/server/build/build.ts | 120 + apps/server/build/helpers.ts | 206 + apps/server/build/set-version.ts | 20 + apps/server/bunfig.toml | 8 + apps/server/drizzle.config.ts | 11 + apps/server/package.json | 63 + apps/server/src/__tests__/cascade.test.ts | 513 ++ apps/server/src/__tests__/context.ts | 43 + apps/server/src/__tests__/forum-posts.test.ts | 374 + apps/server/src/__tests__/helpers.ts | 91 + apps/server/src/__tests__/mock-db.ts | 87 + apps/server/src/__tests__/mock-modules.ts | 219 + apps/server/src/__tests__/mocks/index.ts | 47 + .../__tests__/mocks/plugins/plugin-a/index.js | 13 + .../mocks/plugins/plugin-a/package.json | 22 + .../__tests__/mocks/plugins/plugin-b/index.js | 46 + .../mocks/plugins/plugin-b/package.json | 11 + .../plugins/plugin-invalid-package/index.js | 5 + .../plugin-invalid-package/package.json | 8 + .../plugins/plugin-missing-entry/package.json | 9 + .../mocks/plugins/plugin-no-onload/index.js | 3 + .../plugins/plugin-no-onload/package.json | 9 + .../mocks/plugins/plugin-no-unload/index.js | 5 + .../plugins/plugin-no-unload/package.json | 9 + .../plugins/plugin-throws-error/index.js | 10 + .../plugins/plugin-throws-error/package.json | 9 + .../mocks/plugins/plugin-with-events/index.js | 39 + .../plugins/plugin-with-events/package.json | 9 + .../plugins/plugin-with-settings/index.js | 58 + .../plugins/plugin-with-settings/package.json | 11 + apps/server/src/__tests__/prepare.ts | 7 + apps/server/src/__tests__/seed.ts | 305 + apps/server/src/__tests__/setup.test.ts | 27 + apps/server/src/__tests__/setup.ts | 86 + apps/server/src/config.ts | 130 + apps/server/src/crons/cleanup-files.ts | 31 + apps/server/src/crons/index.ts | 23 + apps/server/src/db/index.ts | 48 + .../db/migrations/0000_rainy_lorna_dane.sql | 664 ++ .../migrations/0001_bright_brother_voodoo.sql | 8 + .../0002_loose_natasha_romanoff.sql | 3 + .../src/db/migrations/0003_low_colossus.sql | 1 + .../db/migrations/0004_fearless_colossus.sql | 1 + .../migrations/0005_harsh_young_avengers.sql | 14 + .../0006_colorful_victor_mancha.sql | 1 + .../db/migrations/0007_spotty_annihilus.sql | 1 + .../migrations/0008_white_felicia_hardy.sql | 7 + .../src/db/migrations/0009_icy_expediter.sql | 11 + .../db/migrations/0010_sour_trish_tilby.sql | 12 + .../src/db/migrations/meta/0000_snapshot.json | 5781 ++++++++++++++++ .../src/db/migrations/meta/0001_snapshot.json | 5832 ++++++++++++++++ .../src/db/migrations/meta/0002_snapshot.json | 5853 ++++++++++++++++ .../src/db/migrations/meta/0003_snapshot.json | 5859 ++++++++++++++++ .../src/db/migrations/meta/0004_snapshot.json | 5866 ++++++++++++++++ .../src/db/migrations/meta/0005_snapshot.json | 5991 ++++++++++++++++ .../src/db/migrations/meta/0006_snapshot.json | 5997 ++++++++++++++++ .../src/db/migrations/meta/0007_snapshot.json | 5997 ++++++++++++++++ .../src/db/migrations/meta/0008_snapshot.json | 6042 ++++++++++++++++ .../src/db/migrations/meta/0009_snapshot.json | 6139 +++++++++++++++++ .../src/db/migrations/meta/0010_snapshot.json | 6127 ++++++++++++++++ .../src/db/migrations/meta/_journal.json | 83 + .../__tests__/federation-sync.test.ts | 263 + apps/server/src/db/mutations/federation.ts | 368 + apps/server/src/db/mutations/files.ts | 31 + apps/server/src/db/mutations/roles.ts | 35 + apps/server/src/db/mutations/server.ts | 15 + apps/server/src/db/mutations/users.ts | 46 + apps/server/src/db/publishers.ts | 371 + apps/server/src/db/queries/channels.ts | 547 ++ apps/server/src/db/queries/dms.ts | 274 + apps/server/src/db/queries/emojis.ts | 133 + apps/server/src/db/queries/federation.ts | 49 + apps/server/src/db/queries/files.ts | 165 + apps/server/src/db/queries/friends.ts | 96 + apps/server/src/db/queries/invites.ts | 97 + apps/server/src/db/queries/logins.ts | 14 + apps/server/src/db/queries/messages.ts | 146 + apps/server/src/db/queries/roles.ts | 96 + apps/server/src/db/queries/server.ts | 102 + apps/server/src/db/queries/servers.ts | 408 ++ apps/server/src/db/queries/users.ts | 660 ++ apps/server/src/db/schema.ts | 1083 +++ apps/server/src/db/seed.ts | 189 + apps/server/src/declarations.d.ts | 25 + .../helpers/__tests__/files-crypto.test.ts | 203 + .../src/helpers/__tests__/network.test.ts | 89 + .../helpers/__tests__/parse-mentions.test.ts | 136 + .../__tests__/pasre-command-args.test.ts | 86 + apps/server/src/helpers/clear-fields.ts | 44 + apps/server/src/helpers/ensure-server-dirs.ts | 26 + apps/server/src/helpers/files-crypto.ts | 32 + apps/server/src/helpers/fs.ts | 26 + .../server/src/helpers/get-executable-name.ts | 9 + .../helpers/get-invoker-ctx-from-trpc-ctx.ts | 11 + .../src/helpers/get-plain-text-from-html.ts | 45 + apps/server/src/helpers/get-ws-info.ts | 92 + apps/server/src/helpers/network.ts | 87 + apps/server/src/helpers/parse-command-args.ts | 20 + apps/server/src/helpers/parse-mentions.ts | 75 + apps/server/src/helpers/paths.ts | 45 + apps/server/src/helpers/sanitize-for-log.ts | 11 + apps/server/src/helpers/zip.ts | 131 + .../server/src/http/__tests__/healthz.test.ts | 15 + apps/server/src/http/__tests__/info.test.ts | 24 + .../src/http/__tests__/interface.test.ts | 258 + apps/server/src/http/__tests__/login.test.ts | 262 + apps/server/src/http/__tests__/public.test.ts | 598 ++ .../__tests__/registration-disabled.test.ts | 251 + apps/server/src/http/__tests__/upload.test.ts | 277 + apps/server/src/http/cors.ts | 55 + apps/server/src/http/deepfilter-assets.ts | 86 + apps/server/src/http/federation.ts | 939 +++ apps/server/src/http/healthz.ts | 11 + apps/server/src/http/helpers.ts | 24 + apps/server/src/http/index.ts | 225 + apps/server/src/http/info.ts | 47 + apps/server/src/http/interface.ts | 78 + apps/server/src/http/login.ts | 108 + apps/server/src/http/provision-user.ts | 126 + apps/server/src/http/public.ts | 116 + apps/server/src/http/rate-limit.ts | 75 + apps/server/src/http/register-user.ts | 65 + apps/server/src/http/register.ts | 115 + apps/server/src/http/upload.ts | 140 + apps/server/src/http/utils.ts | 12 + apps/server/src/http/webhook.ts | 105 + apps/server/src/index.ts | 89 + apps/server/src/logger.ts | 74 + .../src/plugins/__tests__/event-bus.test.ts | 380 + apps/server/src/plugins/event-bus.ts | 126 + apps/server/src/plugins/index.ts | 861 +++ apps/server/src/queues/activity-log/index.ts | 51 + .../get-dm-message-metadata.ts | 24 + .../src/queues/dm-message-metadata/index.ts | 43 + apps/server/src/queues/logins/index.ts | 40 + .../message-metadata/get-message-metadata.ts | 82 + .../src/queues/message-metadata/index.ts | 25 + .../routers/__tests__/access-control.test.ts | 132 + .../routers/__tests__/authorization.test.ts | 333 + .../src/routers/__tests__/categories.test.ts | 154 + .../src/routers/__tests__/channels.test.ts | 849 +++ .../routers/__tests__/deferred-data.test.ts | 61 + apps/server/src/routers/__tests__/dms.test.ts | 110 + .../routers/__tests__/e2ee-messages.test.ts | 372 + .../server/src/routers/__tests__/e2ee.test.ts | 811 +++ .../src/routers/__tests__/emojis.test.ts | 326 + .../__tests__/federation-membership.test.ts | 220 + .../routers/__tests__/file-encryption.test.ts | 518 ++ .../src/routers/__tests__/files.test.ts | 74 + .../src/routers/__tests__/forums.test.ts | 624 ++ .../src/routers/__tests__/invites.test.ts | 173 + .../__tests__/key-backup-crypto.test.ts | 339 + .../src/routers/__tests__/messages.test.ts | 745 ++ .../src/routers/__tests__/nicknames.test.ts | 125 + .../src/routers/__tests__/others.test.ts | 151 + .../src/routers/__tests__/roles.test.ts | 258 + .../src/routers/__tests__/servers.test.ts | 205 + .../__tests__/user-preferences.test.ts | 140 + .../src/routers/__tests__/users.test.ts | 549 ++ .../server/src/routers/automod/create-rule.ts | 56 + .../server/src/routers/automod/delete-rule.ts | 23 + apps/server/src/routers/automod/index.ts | 14 + apps/server/src/routers/automod/list-rules.ts | 16 + .../server/src/routers/automod/toggle-rule.ts | 32 + .../server/src/routers/automod/update-rule.ts | 68 + .../src/routers/categories/add-category.ts | 50 + .../src/routers/categories/delete-category.ts | 47 + apps/server/src/routers/categories/events.ts | 22 + .../src/routers/categories/get-category.ts | 32 + apps/server/src/routers/categories/index.ts | 22 + .../routers/categories/reorder-categories.ts | 60 + .../src/routers/categories/update-category.ts | 58 + .../src/routers/channels/add-channel.ts | 90 + .../src/routers/channels/delete-channel.ts | 53 + .../routers/channels/delete-permissions.ts | 87 + apps/server/src/routers/channels/events.ts | 46 + .../src/routers/channels/get-channel.ts | 37 + .../src/routers/channels/get-permissions.ts | 37 + .../src/routers/channels/get-visible-users.ts | 21 + apps/server/src/routers/channels/index.ts | 38 + .../src/routers/channels/mark-as-read.ts | 121 + .../src/routers/channels/reorder-channels.ts | 77 + .../channels/rotate-file-access-token.ts | 52 + .../src/routers/channels/update-channel.ts | 96 + .../src/routers/channels/update-permission.ts | 122 + apps/server/src/routers/dms/add-member.ts | 84 + apps/server/src/routers/dms/create-group.ts | 85 + apps/server/src/routers/dms/delete-channel.ts | 49 + apps/server/src/routers/dms/delete-message.ts | 53 + apps/server/src/routers/dms/edit-message.ts | 61 + .../src/routers/dms/enable-encryption.ts | 51 + apps/server/src/routers/dms/events.ts | 96 + .../src/routers/dms/get-active-calls.ts | 36 + apps/server/src/routers/dms/get-channels.ts | 8 + apps/server/src/routers/dms/get-messages.ts | 165 + .../src/routers/dms/get-or-create-channel.ts | 64 + .../src/routers/dms/get-pinned-dm-messages.ts | 127 + apps/server/src/routers/dms/index.ts | 78 + apps/server/src/routers/dms/leave-group.ts | 69 + .../src/routers/dms/mark-all-as-read.ts | 42 + .../src/routers/dms/mark-channel-as-read.ts | 47 + apps/server/src/routers/dms/pin-dm-message.ts | 62 + apps/server/src/routers/dms/remove-member.ts | 61 + .../server/src/routers/dms/search-messages.ts | 183 + apps/server/src/routers/dms/send-message.ts | 125 + apps/server/src/routers/dms/signal-typing.ts | 29 + .../server/src/routers/dms/toggle-reaction.ts | 78 + .../src/routers/dms/unpin-dm-message.ts | 62 + apps/server/src/routers/dms/update-group.ts | 56 + apps/server/src/routers/dms/voice-join.ts | 91 + apps/server/src/routers/dms/voice-leave.ts | 46 + .../routers/e2ee/identity-reset-messages.ts | 116 + apps/server/src/routers/e2ee/index.ts | 482 ++ apps/server/src/routers/emojis/add-emoji.ts | 52 + .../server/src/routers/emojis/delete-emoji.ts | 48 + apps/server/src/routers/emojis/events.ts | 16 + apps/server/src/routers/emojis/get-emojis.ts | 16 + apps/server/src/routers/emojis/index.ts | 20 + .../server/src/routers/emojis/update-emoji.ts | 68 + .../src/routers/federation/accept-instance.ts | 89 + .../src/routers/federation/add-instance.ts | 151 + .../src/routers/federation/block-instance.ts | 49 + .../src/routers/federation/confirm-join.ts | 49 + .../src/routers/federation/discover-remote.ts | 68 + .../routers/federation/ensure-shadow-user.ts | 55 + apps/server/src/routers/federation/events.ts | 10 + .../src/routers/federation/generate-keys.ts | 20 + .../src/routers/federation/get-config.ts | 24 + .../src/routers/federation/get-joined.ts | 30 + apps/server/src/routers/federation/index.ts | 36 + .../src/routers/federation/join-remote.ts | 60 + .../src/routers/federation/leave-remote.ts | 34 + .../src/routers/federation/list-instances.ts | 18 + .../src/routers/federation/remove-instance.ts | 45 + .../src/routers/federation/request-token.ts | 55 + .../src/routers/federation/set-config.ts | 91 + apps/server/src/routers/files/delete-file.ts | 39 + .../routers/files/delete-temporary-file.ts | 26 + apps/server/src/routers/files/index.ts | 8 + .../src/routers/friends/accept-request.ts | 100 + apps/server/src/routers/friends/events.ts | 42 + .../server/src/routers/friends/get-friends.ts | 8 + .../src/routers/friends/get-requests.ts | 8 + apps/server/src/routers/friends/index.ts | 26 + .../src/routers/friends/reject-request.ts | 49 + .../src/routers/friends/remove-friend.ts | 75 + .../src/routers/friends/send-request.ts | 125 + apps/server/src/routers/index.ts | 53 + apps/server/src/routers/invites/add-invite.ts | 69 + .../src/routers/invites/delete-invite.ts | 46 + apps/server/src/routers/invites/events.ts | 16 + .../server/src/routers/invites/get-invites.ts | 20 + apps/server/src/routers/invites/index.ts | 13 + .../routers/messages/bulk-delete-messages.ts | 70 + .../src/routers/messages/delete-message.ts | 58 + .../src/routers/messages/edit-message.ts | 91 + apps/server/src/routers/messages/events.ts | 52 + .../src/routers/messages/get-messages.ts | 240 + .../server/src/routers/messages/get-pinned.ts | 167 + apps/server/src/routers/messages/index.ts | 42 + .../src/routers/messages/pin-message.ts | 69 + .../src/routers/messages/purge-channel.ts | 64 + .../src/routers/messages/send-message.ts | 286 + .../src/routers/messages/signal-typing.ts | 25 + .../messages/toggle-message-reaction.ts | 70 + .../src/routers/messages/unpin-message.ts | 68 + apps/server/src/routers/notes/add-note.ts | 37 + apps/server/src/routers/notes/delete-note.ts | 33 + apps/server/src/routers/notes/events.ts | 8 + apps/server/src/routers/notes/get-notes.ts | 32 + apps/server/src/routers/notes/index.ts | 12 + .../notifications/get-server-settings.ts | 34 + .../src/routers/notifications/get-setting.ts | 29 + .../server/src/routers/notifications/index.ts | 16 + .../notifications/mark-server-as-read.ts | 81 + .../routers/notifications/set-server-mute.ts | 26 + .../set-server-notification-level.ts | 26 + .../src/routers/notifications/set-setting.ts | 34 + apps/server/src/routers/others/change-logo.ts | 57 + apps/server/src/routers/others/events.ts | 13 + .../src/routers/others/get-server-emojis.ts | 17 + .../src/routers/others/get-server-members.ts | 20 + .../routers/others/get-server-voice-state.ts | 27 + .../server/src/routers/others/get-settings.ts | 54 + .../routers/others/get-storage-settings.ts | 42 + apps/server/src/routers/others/get-update.ts | 38 + apps/server/src/routers/others/handshake.ts | 10 + apps/server/src/routers/others/index.ts | 30 + apps/server/src/routers/others/join.ts | 229 + .../src/routers/others/update-server.ts | 11 + .../src/routers/others/update-settings.ts | 80 + .../src/routers/others/use-secret-token.ts | 34 + apps/server/src/routers/plugins/events.ts | 14 + .../src/routers/plugins/execute-command.ts | 45 + .../src/routers/plugins/get-commands.ts | 26 + apps/server/src/routers/plugins/get-logs.ts | 20 + .../server/src/routers/plugins/get-plugins.ts | 31 + .../src/routers/plugins/get-settings.ts | 18 + apps/server/src/routers/plugins/index.ts | 21 + .../src/routers/plugins/toggle-plugin.ts | 31 + .../src/routers/plugins/update-setting.ts | 24 + apps/server/src/routers/roles/add-role.ts | 43 + apps/server/src/routers/roles/delete-role.ts | 61 + apps/server/src/routers/roles/events.ts | 16 + apps/server/src/routers/roles/get-roles.ts | 20 + apps/server/src/routers/roles/index.ts | 22 + .../src/routers/roles/set-default-role.ts | 77 + apps/server/src/routers/roles/update-role.ts | 62 + apps/server/src/routers/search/index.ts | 6 + .../src/routers/search/search-messages.ts | 233 + apps/server/src/routers/servers/create.ts | 158 + apps/server/src/routers/servers/delete.ts | 51 + apps/server/src/routers/servers/discover.ts | 8 + apps/server/src/routers/servers/events.ts | 19 + apps/server/src/routers/servers/get-all.ts | 8 + .../server/src/routers/servers/get-members.ts | 23 + .../src/routers/servers/get-unread-counts.ts | 9 + apps/server/src/routers/servers/index.ts | 34 + .../src/routers/servers/join-discover.ts | 110 + .../src/routers/servers/join-federated.ts | 122 + apps/server/src/routers/servers/join.ts | 136 + apps/server/src/routers/servers/leave.ts | 35 + apps/server/src/routers/servers/reorder.ts | 31 + .../src/routers/servers/transfer-owner.ts | 50 + apps/server/src/routers/servers/update.ts | 62 + .../src/routers/threads/archive-thread.ts | 59 + .../src/routers/threads/create-forum-post.ts | 151 + .../src/routers/threads/create-thread.ts | 105 + .../src/routers/threads/delete-thread.ts | 55 + apps/server/src/routers/threads/events.ts | 22 + .../src/routers/threads/follow-thread.ts | 73 + .../server/src/routers/threads/get-threads.ts | 230 + apps/server/src/routers/threads/index.ts | 37 + .../src/routers/threads/manage-forum-tags.ts | 128 + .../src/routers/threads/update-post-tags.ts | 88 + apps/server/src/routers/users/add-role.ts | 65 + apps/server/src/routers/users/ban.ts | 64 + .../server/src/routers/users/change-avatar.ts | 61 + .../server/src/routers/users/change-banner.ts | 59 + apps/server/src/routers/users/events.ts | 35 + .../src/routers/users/get-preferences.ts | 16 + .../server/src/routers/users/get-user-info.ts | 44 + .../src/routers/users/get-user-roles.ts | 48 + apps/server/src/routers/users/get-users.ts | 14 + apps/server/src/routers/users/index.ts | 49 + apps/server/src/routers/users/kick.ts | 69 + apps/server/src/routers/users/remove-role.ts | 68 + apps/server/src/routers/users/set-nickname.ts | 81 + apps/server/src/routers/users/set-status.ts | 25 + apps/server/src/routers/users/unban.ts | 38 + .../src/routers/users/update-password.ts | 82 + .../src/routers/users/update-preferences.ts | 77 + apps/server/src/routers/users/update-user.ts | 39 + .../src/routers/voice/close-producer.ts | 50 + .../voice/connect-consumer-transport.ts | 40 + .../voice/connect-producer-transport.ts | 40 + apps/server/src/routers/voice/consume.ts | 88 + .../voice/create-consumer-transport.ts | 30 + .../voice/create-producer-transport.ts | 30 + apps/server/src/routers/voice/events.ts | 86 + .../server/src/routers/voice/get-producers.ts | 26 + apps/server/src/routers/voice/index.ts | 46 + apps/server/src/routers/voice/join.ts | 95 + apps/server/src/routers/voice/leave.ts | 67 + apps/server/src/routers/voice/produce.ts | 89 + apps/server/src/routers/voice/restart-ice.ts | 34 + apps/server/src/routers/voice/update-state.ts | 98 + apps/server/src/routers/webhooks/create.ts | 54 + apps/server/src/routers/webhooks/delete.ts | 23 + apps/server/src/routers/webhooks/get.ts | 27 + apps/server/src/routers/webhooks/index.ts | 14 + apps/server/src/routers/webhooks/list.ts | 48 + apps/server/src/routers/webhooks/update.ts | 40 + apps/server/src/runtimes/index.ts | 22 + apps/server/src/runtimes/voice.ts | 887 +++ .../html-to-tokens-converter.test.ts | 242 + .../src/scripts/migrate-html-to-tokens.ts | 346 + apps/server/src/types.ts | 6 + .../src/utils/__tests__/file-manager.test.ts | 558 ++ .../__tests__/password-rate-limit.test.ts | 84 + apps/server/src/utils/automod.ts | 217 + apps/server/src/utils/create-servers.ts | 10 + apps/server/src/utils/embeds.ts | 85 + apps/server/src/utils/env.ts | 37 + apps/server/src/utils/federation.ts | 264 + apps/server/src/utils/file-manager.ts | 252 + apps/server/src/utils/invariant.ts | 19 + apps/server/src/utils/ip-cache.ts | 27 + apps/server/src/utils/logins.ts | 26 + apps/server/src/utils/mediasoup.ts | 34 + apps/server/src/utils/metrics.ts | 26 + apps/server/src/utils/password-rate-limit.ts | 87 + apps/server/src/utils/print-debug.ts | 43 + apps/server/src/utils/pubsub.ts | 415 ++ apps/server/src/utils/supabase.ts | 19 + apps/server/src/utils/trpc.ts | 97 + apps/server/src/utils/updater.ts | 73 + apps/server/src/utils/validate-url.ts | 58 + apps/server/src/utils/wss.ts | 538 ++ apps/server/tsconfig.json | 31 + docker-compose-supabase.yml | 114 + docker-compose.noise.yml | 3 + docker-compose.override.yml | 15 + docker/db-entrypoint.sh | 54 + docker/generate-keys.ts | 34 + docker/kong-supabase.yml | 12 + docker/kong.yml | 39 + docker/patch-migrations.ts | 90 + docker/pulse-entrypoint.sh | 20 + docker/tests/test-db-entrypoint.sh | 73 + knip.json | 43 + package.json | 26 + packages/plugin-sdk/.gitignore | 34 + packages/plugin-sdk/README.md | 175 + packages/plugin-sdk/package.json | 16 + packages/plugin-sdk/src/index.ts | 152 + packages/plugin-sdk/tsconfig.json | 29 + packages/shared/.gitignore | 34 + packages/shared/package.json | 20 + packages/shared/src/events.ts | 93 + packages/shared/src/extensions.ts | 70 + .../helpers/__tests__/command-parser.test.ts | 751 ++ packages/shared/src/helpers/command-parser.ts | 69 + .../shared/src/helpers/get-mediasoup-kind.ts | 18 + .../shared/src/helpers/get-random-string.ts | 16 + packages/shared/src/helpers/index.ts | 4 + packages/shared/src/helpers/sha256.ts | 5 + packages/shared/src/index.ts | 13 + packages/shared/src/logs.ts | 177 + packages/shared/src/plugins.ts | 125 + packages/shared/src/preferences.ts | 39 + packages/shared/src/statics/index.ts | 17 + packages/shared/src/statics/metrics.ts | 6 + packages/shared/src/statics/permissions.ts | 134 + packages/shared/src/statics/storage.ts | 34 + packages/shared/src/tables.ts | 234 + packages/shared/src/trpc.ts | 1 + packages/shared/src/types.ts | 238 + packages/shared/src/voice.ts | 50 + packages/shared/tsconfig.json | 29 + scripts/install-pulse-clean.sh | 199 + scripts/install-pulse-rnnoise.sh | 1004 +++ scripts/rnnoise-direct.sh | 337 + scripts/rnnoise-patch.sh | 427 ++ start.sh | 2 + tsconfig.json | 15 + 901 files changed, 165947 insertions(+) create mode 100644 .dockerignore create mode 100644 .env.example create mode 100644 .env.supabase.example create mode 100644 .github/codeql/codeql-config.yml create mode 100644 .github/codeql/custom-queries/RequestForgery.ql create mode 100644 .github/codeql/custom-queries/qlpack.yml create mode 100644 .github/workflows/codeql.yml create mode 100644 .github/workflows/desktop-release.yml create mode 100644 .github/workflows/release.yml create mode 100644 .github/workflows/test.yml create mode 100644 .gitignore create mode 100644 CONTRIBUTING.md create mode 100644 Caddyfile create mode 100644 Dockerfile create mode 100644 LICENSE create mode 100644 README-CUSTOM.md create mode 100644 README-SELFHOSTED-SUPABASE.md create mode 100644 README.md create mode 100644 apps/client/.gitignore create mode 100644 apps/client/.prettierrc.json create mode 100644 apps/client/components.json create mode 100644 apps/client/eslint.config.js create mode 100644 apps/client/index.html create mode 100644 apps/client/package.json create mode 100644 apps/client/public/favicon.ico create mode 100644 apps/client/public/logo.png create mode 100644 apps/client/public/logo.webp create mode 100644 apps/client/src/components/channel-view/forum/create-forum-post-dialog.tsx create mode 100644 apps/client/src/components/channel-view/forum/edit-post-tags-dialog.tsx create mode 100644 apps/client/src/components/channel-view/forum/forum-post-card.tsx create mode 100644 apps/client/src/components/channel-view/forum/forum-post-context-menu.tsx create mode 100644 apps/client/src/components/channel-view/forum/forum-thread-context.tsx create mode 100644 apps/client/src/components/channel-view/forum/index.tsx create mode 100644 apps/client/src/components/channel-view/forum/manage-tags-dialog.tsx create mode 100644 apps/client/src/components/channel-view/text/file-card.tsx create mode 100644 apps/client/src/components/channel-view/text/index.tsx create mode 100644 apps/client/src/components/channel-view/text/message-actions.tsx create mode 100644 apps/client/src/components/channel-view/text/message-context-menu.tsx create mode 100644 apps/client/src/components/channel-view/text/message-edit-inline.tsx create mode 100644 apps/client/src/components/channel-view/text/message-error-boundary.tsx create mode 100644 apps/client/src/components/channel-view/text/message-reactions.tsx create mode 100644 apps/client/src/components/channel-view/text/message.tsx create mode 100644 apps/client/src/components/channel-view/text/messages-group.tsx create mode 100644 apps/client/src/components/channel-view/text/overrides/audio-player.tsx create mode 100644 apps/client/src/components/channel-view/text/overrides/code-block.tsx create mode 100644 apps/client/src/components/channel-view/text/overrides/command.tsx create mode 100644 apps/client/src/components/channel-view/text/overrides/image.tsx create mode 100644 apps/client/src/components/channel-view/text/overrides/layout.tsx create mode 100644 apps/client/src/components/channel-view/text/overrides/link-preview.tsx create mode 100644 apps/client/src/components/channel-view/text/overrides/link.tsx create mode 100644 apps/client/src/components/channel-view/text/overrides/mention.tsx create mode 100644 apps/client/src/components/channel-view/text/overrides/twitter.tsx create mode 100644 apps/client/src/components/channel-view/text/overrides/video-player.tsx create mode 100644 apps/client/src/components/channel-view/text/overrides/youtube.tsx create mode 100644 apps/client/src/components/channel-view/text/renderer/index.tsx create mode 100644 apps/client/src/components/channel-view/text/renderer/serializer.tsx create mode 100644 apps/client/src/components/channel-view/text/renderer/types.ts create mode 100644 apps/client/src/components/channel-view/text/selection-action-bar.tsx create mode 100644 apps/client/src/components/channel-view/text/selection-context.tsx create mode 100644 apps/client/src/components/channel-view/text/system-message.tsx create mode 100644 apps/client/src/components/channel-view/text/text-skeleton.tsx create mode 100644 apps/client/src/components/channel-view/text/thread-indicator.tsx create mode 100644 apps/client/src/components/channel-view/text/use-scroll-controller.ts create mode 100644 apps/client/src/components/channel-view/text/users-typing.tsx create mode 100644 apps/client/src/components/channel-view/voice/card-controls.tsx create mode 100644 apps/client/src/components/channel-view/voice/card-gradient.tsx create mode 100644 apps/client/src/components/channel-view/voice/external-audio-streams.tsx create mode 100644 apps/client/src/components/channel-view/voice/external-stream-card.tsx create mode 100644 apps/client/src/components/channel-view/voice/external-video-card.tsx create mode 100644 apps/client/src/components/channel-view/voice/hooks/use-audio-level.ts create mode 100644 apps/client/src/components/channel-view/voice/hooks/use-pin-card-controller.ts create mode 100644 apps/client/src/components/channel-view/voice/hooks/use-screen-share-zoom.ts create mode 100644 apps/client/src/components/channel-view/voice/hooks/use-voice-refs.ts create mode 100644 apps/client/src/components/channel-view/voice/index.tsx create mode 100644 apps/client/src/components/channel-view/voice/pin-button.tsx create mode 100644 apps/client/src/components/channel-view/voice/screen-share-card.tsx create mode 100644 apps/client/src/components/channel-view/voice/stream-settings-popover.tsx create mode 100644 apps/client/src/components/channel-view/voice/voice-audio-streams.tsx create mode 100644 apps/client/src/components/channel-view/voice/voice-grid.tsx create mode 100644 apps/client/src/components/channel-view/voice/voice-user-card.tsx create mode 100644 apps/client/src/components/channel-view/voice/volume-button.tsx create mode 100644 apps/client/src/components/context-menus/category/index.tsx create mode 100644 apps/client/src/components/context-menus/channel/index.tsx create mode 100644 apps/client/src/components/context-menus/user/index.tsx create mode 100644 apps/client/src/components/date-picker/index.tsx create mode 100644 apps/client/src/components/debug/store-debug.tsx create mode 100644 apps/client/src/components/devices-provider/hooks/use-available-devices.ts create mode 100644 apps/client/src/components/devices-provider/hooks/use-devices.ts create mode 100644 apps/client/src/components/devices-provider/index.tsx create mode 100644 apps/client/src/components/dialogs/assign-role/index.tsx create mode 100644 apps/client/src/components/dialogs/claim-admin/index.tsx create mode 100644 apps/client/src/components/dialogs/confirm-action/index.tsx create mode 100644 apps/client/src/components/dialogs/create-category/index.tsx create mode 100644 apps/client/src/components/dialogs/create-channel/index.tsx create mode 100644 apps/client/src/components/dialogs/create-group-dm.tsx create mode 100644 apps/client/src/components/dialogs/create-invite-dialog/index.tsx create mode 100644 apps/client/src/components/dialogs/create-server/index.tsx create mode 100644 apps/client/src/components/dialogs/dialogs.ts create mode 100644 apps/client/src/components/dialogs/index.tsx create mode 100644 apps/client/src/components/dialogs/plugin-commands/args.tsx create mode 100644 apps/client/src/components/dialogs/plugin-commands/commands-list.tsx create mode 100644 apps/client/src/components/dialogs/plugin-commands/helpers.tsx create mode 100644 apps/client/src/components/dialogs/plugin-commands/index.tsx create mode 100644 apps/client/src/components/dialogs/plugin-commands/response.tsx create mode 100644 apps/client/src/components/dialogs/plugin-commands/types.ts create mode 100644 apps/client/src/components/dialogs/plugin-logs/index.tsx create mode 100644 apps/client/src/components/dialogs/plugin-settings/index.tsx create mode 100644 apps/client/src/components/dialogs/text-input/index.tsx create mode 100644 apps/client/src/components/dialogs/types.ts create mode 100644 apps/client/src/components/dm-call/call-banner.tsx create mode 100644 apps/client/src/components/dm-call/dm-voice-panel.tsx create mode 100644 apps/client/src/components/e2ee-setup-modal.tsx create mode 100644 apps/client/src/components/emoji-picker/index.tsx create mode 100644 apps/client/src/components/fullscreen-image/content.tsx create mode 100644 apps/client/src/components/gif-picker/index.tsx create mode 100644 apps/client/src/components/image-picker/index.tsx create mode 100644 apps/client/src/components/keyboard-shortcuts-dialog/index.tsx create mode 100644 apps/client/src/components/left-sidebar/categories.tsx create mode 100644 apps/client/src/components/left-sidebar/channels.tsx create mode 100644 apps/client/src/components/left-sidebar/external-stream.tsx create mode 100644 apps/client/src/components/left-sidebar/index.tsx create mode 100644 apps/client/src/components/left-sidebar/stats-popover.tsx create mode 100644 apps/client/src/components/left-sidebar/user-control.tsx create mode 100644 apps/client/src/components/left-sidebar/voice-control.tsx create mode 100644 apps/client/src/components/left-sidebar/voice-user.tsx create mode 100644 apps/client/src/components/mobile-bottom-nav/index.tsx create mode 100644 apps/client/src/components/mobile-header/index.tsx create mode 100644 apps/client/src/components/mod-view-sheet/context.tsx create mode 100644 apps/client/src/components/mod-view-sheet/details/index.tsx create mode 100644 apps/client/src/components/mod-view-sheet/header.tsx create mode 100644 apps/client/src/components/mod-view-sheet/index.tsx create mode 100644 apps/client/src/components/mod-view-sheet/mod-view-content.tsx create mode 100644 apps/client/src/components/mod-view-sheet/server-activity/files.tsx create mode 100644 apps/client/src/components/mod-view-sheet/server-activity/index.tsx create mode 100644 apps/client/src/components/mod-view-sheet/server-activity/links.tsx create mode 100644 apps/client/src/components/mod-view-sheet/server-activity/messages.tsx create mode 100644 apps/client/src/components/paginated-list/index.tsx create mode 100644 apps/client/src/components/paginated-table/index.tsx create mode 100644 apps/client/src/components/permissions-list/index.tsx create mode 100644 apps/client/src/components/protect/index.tsx create mode 100644 apps/client/src/components/reconnecting-banner/index.tsx create mode 100644 apps/client/src/components/right-sidebar/index.tsx create mode 100644 apps/client/src/components/role-badge/index.tsx create mode 100644 apps/client/src/components/routing/index.tsx create mode 100644 apps/client/src/components/search/search-filters.tsx create mode 100644 apps/client/src/components/search/search-popover.tsx create mode 100644 apps/client/src/components/search/search-result.tsx create mode 100644 apps/client/src/components/server-screens/category-settings/general.tsx create mode 100644 apps/client/src/components/server-screens/category-settings/index.tsx create mode 100644 apps/client/src/components/server-screens/channel-settings/general.tsx create mode 100644 apps/client/src/components/server-screens/channel-settings/index.tsx create mode 100644 apps/client/src/components/server-screens/channel-settings/permissions/channel-permission-list.tsx create mode 100644 apps/client/src/components/server-screens/channel-settings/permissions/index.tsx create mode 100644 apps/client/src/components/server-screens/channel-settings/permissions/override.tsx create mode 100644 apps/client/src/components/server-screens/channel-settings/permissions/overrides-list.tsx create mode 100644 apps/client/src/components/server-screens/channel-settings/permissions/search-popover.tsx create mode 100644 apps/client/src/components/server-screens/channel-settings/permissions/types.ts create mode 100644 apps/client/src/components/server-screens/channel-settings/security.tsx create mode 100644 apps/client/src/components/server-screens/index.tsx create mode 100644 apps/client/src/components/server-screens/screens.ts create mode 100644 apps/client/src/components/server-screens/server-screen-layout.tsx create mode 100644 apps/client/src/components/server-screens/server-settings/automod/index.tsx create mode 100644 apps/client/src/components/server-screens/server-settings/emojis/emoji-list.tsx create mode 100644 apps/client/src/components/server-screens/server-settings/emojis/emoji.tsx create mode 100644 apps/client/src/components/server-screens/server-settings/emojis/index.tsx create mode 100644 apps/client/src/components/server-screens/server-settings/emojis/update-emoji.tsx create mode 100644 apps/client/src/components/server-screens/server-settings/emojis/upload-emoji.tsx create mode 100644 apps/client/src/components/server-screens/server-settings/federation/index.tsx create mode 100644 apps/client/src/components/server-screens/server-settings/general/index.tsx create mode 100644 apps/client/src/components/server-screens/server-settings/general/logo-manager.tsx create mode 100644 apps/client/src/components/server-screens/server-settings/index.tsx create mode 100644 apps/client/src/components/server-screens/server-settings/invites/index.tsx create mode 100644 apps/client/src/components/server-screens/server-settings/invites/invites-table.tsx create mode 100644 apps/client/src/components/server-screens/server-settings/invites/table-invite.tsx create mode 100644 apps/client/src/components/server-screens/server-settings/plugins/index.tsx create mode 100644 apps/client/src/components/server-screens/server-settings/roles/index.tsx create mode 100644 apps/client/src/components/server-screens/server-settings/roles/permissions-list.tsx create mode 100644 apps/client/src/components/server-screens/server-settings/roles/roles-list.tsx create mode 100644 apps/client/src/components/server-screens/server-settings/roles/update-role.tsx create mode 100644 apps/client/src/components/server-screens/server-settings/storage/index.tsx create mode 100644 apps/client/src/components/server-screens/server-settings/storage/metrics.tsx create mode 100644 apps/client/src/components/server-screens/server-settings/updates/index.tsx create mode 100644 apps/client/src/components/server-screens/server-settings/users/index.tsx create mode 100644 apps/client/src/components/server-screens/server-settings/users/table-user.tsx create mode 100644 apps/client/src/components/server-screens/server-settings/users/users-table.tsx create mode 100644 apps/client/src/components/server-screens/server-settings/webhooks/index.tsx create mode 100644 apps/client/src/components/server-screens/user-settings/appearance/index.tsx create mode 100644 apps/client/src/components/server-screens/user-settings/desktop.tsx create mode 100644 apps/client/src/components/server-screens/user-settings/devices/hooks/use-available-devices.ts create mode 100644 apps/client/src/components/server-screens/user-settings/devices/index.tsx create mode 100644 apps/client/src/components/server-screens/user-settings/devices/resolution-fps-control.tsx create mode 100644 apps/client/src/components/server-screens/user-settings/encryption.tsx create mode 100644 apps/client/src/components/server-screens/user-settings/index.tsx create mode 100644 apps/client/src/components/server-screens/user-settings/password/index.tsx create mode 100644 apps/client/src/components/server-screens/user-settings/profile/avatar-manager.tsx create mode 100644 apps/client/src/components/server-screens/user-settings/profile/banner-manager.tsx create mode 100644 apps/client/src/components/server-screens/user-settings/profile/index.tsx create mode 100644 apps/client/src/components/server-screens/user-settings/sounds-notifications/index.tsx create mode 100644 apps/client/src/components/server-strip/index.tsx create mode 100644 apps/client/src/components/theme-provider/index.tsx create mode 100644 apps/client/src/components/thread-panel/forum-thread-view.tsx create mode 100644 apps/client/src/components/thread-panel/index.tsx create mode 100644 apps/client/src/components/tiptap-input/channel-mention-list.tsx create mode 100644 apps/client/src/components/tiptap-input/emoji-list.tsx create mode 100644 apps/client/src/components/tiptap-input/index.tsx create mode 100644 apps/client/src/components/tiptap-input/mention-list.tsx create mode 100644 apps/client/src/components/tiptap-input/plugins/channel-mention-extension.ts create mode 100644 apps/client/src/components/tiptap-input/plugins/channel-mention-suggestion.ts create mode 100644 apps/client/src/components/tiptap-input/plugins/command-list.tsx create mode 100644 apps/client/src/components/tiptap-input/plugins/command-suggestion.ts create mode 100644 apps/client/src/components/tiptap-input/plugins/custom-emoji-extension.ts create mode 100644 apps/client/src/components/tiptap-input/plugins/mention-extension.ts create mode 100644 apps/client/src/components/tiptap-input/plugins/mention-suggestion.ts create mode 100644 apps/client/src/components/tiptap-input/plugins/slash-commands-extension.ts create mode 100644 apps/client/src/components/tiptap-input/suggestions.ts create mode 100644 apps/client/src/components/tiptap-input/types.ts create mode 100644 apps/client/src/components/top-bar/index.tsx create mode 100644 apps/client/src/components/top-bar/notification-dropdown.tsx create mode 100644 apps/client/src/components/top-bar/pinned-messages-panel.tsx create mode 100644 apps/client/src/components/top-bar/thread-list-popover.tsx create mode 100644 apps/client/src/components/top-bar/voice-timer.tsx create mode 100644 apps/client/src/components/top-bar/volume-controller.tsx create mode 100644 apps/client/src/components/typing-dots/index.tsx create mode 100644 apps/client/src/components/ui/alert-dialog.tsx create mode 100644 apps/client/src/components/ui/alert.tsx create mode 100644 apps/client/src/components/ui/auto-focus.tsx create mode 100644 apps/client/src/components/ui/avatar.tsx create mode 100644 apps/client/src/components/ui/badge.tsx create mode 100644 apps/client/src/components/ui/button.tsx create mode 100644 apps/client/src/components/ui/calendar.tsx create mode 100644 apps/client/src/components/ui/card.tsx create mode 100644 apps/client/src/components/ui/color.tsx create mode 100644 apps/client/src/components/ui/command.tsx create mode 100644 apps/client/src/components/ui/context-menu.tsx create mode 100644 apps/client/src/components/ui/dialog.tsx create mode 100644 apps/client/src/components/ui/dropdown-menu.tsx create mode 100644 apps/client/src/components/ui/group.tsx create mode 100644 apps/client/src/components/ui/icon-button.tsx create mode 100644 apps/client/src/components/ui/icon.tsx create mode 100644 apps/client/src/components/ui/input.tsx create mode 100644 apps/client/src/components/ui/label.tsx create mode 100644 apps/client/src/components/ui/loading-card.tsx create mode 100644 apps/client/src/components/ui/popover.tsx create mode 100644 apps/client/src/components/ui/resizable.tsx create mode 100644 apps/client/src/components/ui/select.tsx create mode 100644 apps/client/src/components/ui/separator.tsx create mode 100644 apps/client/src/components/ui/sheet.tsx create mode 100644 apps/client/src/components/ui/skeleton.tsx create mode 100644 apps/client/src/components/ui/slider.tsx create mode 100644 apps/client/src/components/ui/sonner.tsx create mode 100644 apps/client/src/components/ui/spinner.tsx create mode 100644 apps/client/src/components/ui/switch.tsx create mode 100644 apps/client/src/components/ui/tabs.tsx create mode 100644 apps/client/src/components/ui/textarea.tsx create mode 100644 apps/client/src/components/ui/tooltip.tsx create mode 100644 apps/client/src/components/user-avatar/index.tsx create mode 100644 apps/client/src/components/user-popover/index.tsx create mode 100644 apps/client/src/components/user-status/index.tsx create mode 100644 apps/client/src/components/voice-chat-sidebar/index.tsx create mode 100644 apps/client/src/components/voice-provider/floating-pinned-card.tsx create mode 100644 apps/client/src/components/voice-provider/hooks/use-floating-card.ts create mode 100644 apps/client/src/components/voice-provider/hooks/use-local-streams.ts create mode 100644 apps/client/src/components/voice-provider/hooks/use-remote-streams.ts create mode 100644 apps/client/src/components/voice-provider/hooks/use-transport-stats.ts create mode 100644 apps/client/src/components/voice-provider/hooks/use-transports.ts create mode 100644 apps/client/src/components/voice-provider/hooks/use-voice-controls.ts create mode 100644 apps/client/src/components/voice-provider/hooks/use-voice-events.ts create mode 100644 apps/client/src/components/voice-provider/index.tsx create mode 100644 apps/client/src/components/voice-provider/persistent-audio-streams.tsx create mode 100644 apps/client/src/components/voice-provider/volume-control-context.tsx create mode 100644 apps/client/src/features/app/actions.ts create mode 100644 apps/client/src/features/app/hooks.ts create mode 100644 apps/client/src/features/app/selectors.ts create mode 100644 apps/client/src/features/app/slice.ts create mode 100644 apps/client/src/features/dialogs/actions.ts create mode 100644 apps/client/src/features/dialogs/hooks.ts create mode 100644 apps/client/src/features/dialogs/selectors.ts create mode 100644 apps/client/src/features/dialogs/slice.ts create mode 100644 apps/client/src/features/dms/actions.ts create mode 100644 apps/client/src/features/dms/hooks.ts create mode 100644 apps/client/src/features/dms/plaintext-cache.ts create mode 100644 apps/client/src/features/dms/selectors.ts create mode 100644 apps/client/src/features/dms/slice.ts create mode 100644 apps/client/src/features/dms/subscriptions.ts create mode 100644 apps/client/src/features/dms/use-dm-messages.ts create mode 100644 apps/client/src/features/friends/actions.ts create mode 100644 apps/client/src/features/friends/hooks.ts create mode 100644 apps/client/src/features/friends/selectors.ts create mode 100644 apps/client/src/features/friends/slice.ts create mode 100644 apps/client/src/features/friends/subscriptions.ts create mode 100644 apps/client/src/features/notifications/desktop-notification.ts create mode 100644 apps/client/src/features/server-screens/actions.ts create mode 100644 apps/client/src/features/server-screens/hooks.ts create mode 100644 apps/client/src/features/server-screens/selectors.ts create mode 100644 apps/client/src/features/server-screens/slice.ts create mode 100644 apps/client/src/features/server/actions.ts create mode 100644 apps/client/src/features/server/admin/hooks.ts create mode 100644 apps/client/src/features/server/categories/actions.ts create mode 100644 apps/client/src/features/server/categories/hooks.ts create mode 100644 apps/client/src/features/server/categories/selectors.ts create mode 100644 apps/client/src/features/server/categories/subscriptions.ts create mode 100644 apps/client/src/features/server/channels/actions.ts create mode 100644 apps/client/src/features/server/channels/hooks.ts create mode 100644 apps/client/src/features/server/channels/selectors.ts create mode 100644 apps/client/src/features/server/channels/subscriptions.ts create mode 100644 apps/client/src/features/server/emojis/actions.ts create mode 100644 apps/client/src/features/server/emojis/hooks.ts create mode 100644 apps/client/src/features/server/emojis/selectors.ts create mode 100644 apps/client/src/features/server/emojis/subscriptions.ts create mode 100644 apps/client/src/features/server/hooks.ts create mode 100644 apps/client/src/features/server/messages/actions.ts create mode 100644 apps/client/src/features/server/messages/hooks.ts create mode 100644 apps/client/src/features/server/messages/selectors.ts create mode 100644 apps/client/src/features/server/messages/subscriptions.ts create mode 100644 apps/client/src/features/server/plugins/actions.ts create mode 100644 apps/client/src/features/server/plugins/hooks.ts create mode 100644 apps/client/src/features/server/plugins/selectors.ts create mode 100644 apps/client/src/features/server/plugins/subscriptions.ts create mode 100644 apps/client/src/features/server/roles/actions.ts create mode 100644 apps/client/src/features/server/roles/hooks.ts create mode 100644 apps/client/src/features/server/roles/selectors.ts create mode 100644 apps/client/src/features/server/roles/subscriptions.ts create mode 100644 apps/client/src/features/server/selectors.ts create mode 100644 apps/client/src/features/server/slice.ts create mode 100644 apps/client/src/features/server/sounds/actions.ts create mode 100644 apps/client/src/features/server/subscriptions.ts create mode 100644 apps/client/src/features/server/types.ts create mode 100644 apps/client/src/features/server/users/actions.ts create mode 100644 apps/client/src/features/server/users/hooks.ts create mode 100644 apps/client/src/features/server/users/selectors.ts create mode 100644 apps/client/src/features/server/users/subscriptions.ts create mode 100644 apps/client/src/features/server/voice/actions.ts create mode 100644 apps/client/src/features/server/voice/hooks.ts create mode 100644 apps/client/src/features/server/voice/selectors.ts create mode 100644 apps/client/src/features/server/voice/subscriptions.ts create mode 100644 apps/client/src/features/store.ts create mode 100644 apps/client/src/helpers/browser-logger.ts create mode 100644 apps/client/src/helpers/download-file.ts create mode 100644 apps/client/src/helpers/get-display-name.ts create mode 100644 apps/client/src/helpers/get-file-url.ts create mode 100644 apps/client/src/helpers/get-initials-from-name.ts create mode 100644 apps/client/src/helpers/get-res-with-height.ts create mode 100644 apps/client/src/helpers/giphy.ts create mode 100644 apps/client/src/helpers/is-html-empty.ts create mode 100644 apps/client/src/helpers/parse-trpc-errors.ts create mode 100644 apps/client/src/helpers/storage.ts create mode 100644 apps/client/src/helpers/strip-to-plain-text.ts create mode 100644 apps/client/src/helpers/time-format.ts create mode 100644 apps/client/src/helpers/upload-file.ts create mode 100644 apps/client/src/hooks/use-appearance-settings.ts create mode 100644 apps/client/src/hooks/use-auto-away.ts create mode 100644 apps/client/src/hooks/use-decrypted-file-url.ts create mode 100644 apps/client/src/hooks/use-file-picker.ts create mode 100644 apps/client/src/hooks/use-form.ts create mode 100644 apps/client/src/hooks/use-is-mobile.ts create mode 100644 apps/client/src/hooks/use-keyboard-shortcuts.ts create mode 100644 apps/client/src/hooks/use-keyboard-visible.ts create mode 100644 apps/client/src/hooks/use-prevent-exit.ts create mode 100644 apps/client/src/hooks/use-sound-notification-settings.ts create mode 100644 apps/client/src/hooks/use-strict-effect.ts create mode 100644 apps/client/src/hooks/use-swipe-gestures.ts create mode 100644 apps/client/src/hooks/use-tab-notifications.ts create mode 100644 apps/client/src/hooks/use-upload-files.ts create mode 100644 apps/client/src/index.css create mode 100644 apps/client/src/lib/connection-manager.ts create mode 100644 apps/client/src/lib/converters/custom-emoji.tsx create mode 100644 apps/client/src/lib/converters/tiptap-to-tokens.ts create mode 100644 apps/client/src/lib/converters/token-content-renderer.tsx create mode 100644 apps/client/src/lib/converters/tokens-to-tiptap.ts create mode 100644 apps/client/src/lib/converters/use-token-context.ts create mode 100644 apps/client/src/lib/e2ee/file-crypto.ts create mode 100644 apps/client/src/lib/e2ee/file-key-store.ts create mode 100644 apps/client/src/lib/e2ee/index.ts create mode 100644 apps/client/src/lib/e2ee/key-backup.ts create mode 100644 apps/client/src/lib/e2ee/sender-keys.ts create mode 100644 apps/client/src/lib/e2ee/signal-protocol.ts create mode 100644 apps/client/src/lib/e2ee/store.ts create mode 100644 apps/client/src/lib/e2ee/types.ts create mode 100644 apps/client/src/lib/e2ee/utils.ts create mode 100644 apps/client/src/lib/events.ts create mode 100644 apps/client/src/lib/preferences-apply.ts create mode 100644 apps/client/src/lib/preferences-seed.ts create mode 100644 apps/client/src/lib/preferences-sync.ts create mode 100644 apps/client/src/lib/reconnect.ts create mode 100644 apps/client/src/lib/supabase.ts create mode 100644 apps/client/src/lib/trpc.ts create mode 100644 apps/client/src/lib/utils.ts create mode 100644 apps/client/src/main.tsx create mode 100644 apps/client/src/screens/connect/index.tsx create mode 100644 apps/client/src/screens/disconnected/index.tsx create mode 100644 apps/client/src/screens/discover-view/index.tsx create mode 100644 apps/client/src/screens/home-view/dm-conversation.tsx create mode 100644 apps/client/src/screens/home-view/dm-search-popover.tsx create mode 100644 apps/client/src/screens/home-view/friends-panel.tsx create mode 100644 apps/client/src/screens/home-view/home-sidebar.tsx create mode 100644 apps/client/src/screens/home-view/index.tsx create mode 100644 apps/client/src/screens/loading-app/index.tsx create mode 100644 apps/client/src/screens/main-view/index.tsx create mode 100644 apps/client/src/screens/server-view/content-wrapper.tsx create mode 100644 apps/client/src/screens/server-view/index.tsx create mode 100644 apps/client/src/screens/server-view/prevent-browser.tsx create mode 100644 apps/client/src/styles/themes.css create mode 100644 apps/client/src/types.ts create mode 100644 apps/client/src/types/deepfilternet3-noise-filter.d.ts create mode 100644 apps/client/src/vite-env.d.ts create mode 100644 apps/client/src/worklets/keyboard-noise-gate-worklet.js create mode 100644 apps/client/tsconfig.app.json create mode 100644 apps/client/tsconfig.json create mode 100644 apps/client/tsconfig.node.json create mode 100644 apps/client/vite.config.ts create mode 100644 apps/desktop/assets/icon.icns create mode 100644 apps/desktop/assets/icon.png create mode 100644 apps/desktop/assets/logo.png create mode 100644 apps/desktop/entitlements.plist create mode 100644 apps/desktop/forge.config.ts create mode 100644 apps/desktop/native/audio-driver/CMakeLists.txt create mode 100644 apps/desktop/native/audio-driver/PulseAudio.driver/Contents/Info.plist create mode 100644 apps/desktop/native/audio-driver/src/device.cpp create mode 100644 apps/desktop/native/audio-driver/src/device.h create mode 100644 apps/desktop/native/audio-driver/src/helper.cpp create mode 100644 apps/desktop/native/audio-driver/src/plugin.cpp create mode 100644 apps/desktop/native/audio-driver/src/plugin.h create mode 100644 apps/desktop/native/audio-driver/src/ring-buffer.cpp create mode 100644 apps/desktop/native/audio-driver/src/ring-buffer.h create mode 100644 apps/desktop/native/audio-driver/src/types.h create mode 100644 apps/desktop/native/coreaudio-addon/CMakeLists.txt create mode 100644 apps/desktop/native/coreaudio-addon/package.json create mode 100644 apps/desktop/native/coreaudio-addon/src/addon.cpp create mode 100644 apps/desktop/native/coreaudio-addon/src/aggregate-device.cpp create mode 100644 apps/desktop/native/coreaudio-addon/src/aggregate-device.h create mode 100644 apps/desktop/native/coreaudio-addon/src/default-device.cpp create mode 100644 apps/desktop/native/coreaudio-addon/src/default-device.h create mode 100644 apps/desktop/native/coreaudio-addon/src/driver-detect.cpp create mode 100644 apps/desktop/native/coreaudio-addon/src/driver-detect.h create mode 100644 apps/desktop/package.json create mode 100644 apps/desktop/scripts/build-native.js create mode 100644 apps/desktop/scripts/build.js create mode 100644 apps/desktop/scripts/copy-assets.js create mode 100755 apps/desktop/scripts/patch-macos.sh create mode 100644 apps/desktop/scripts/postinstall.js create mode 100644 apps/desktop/src/lib/audio-capture.ts create mode 100644 apps/desktop/src/lib/audio-driver.ts create mode 100644 apps/desktop/src/lib/constants.ts create mode 100644 apps/desktop/src/lib/permissions.ts create mode 100644 apps/desktop/src/lib/store.ts create mode 100644 apps/desktop/src/lib/tray.ts create mode 100644 apps/desktop/src/lib/window-state.ts create mode 100644 apps/desktop/src/main.ts create mode 100644 apps/desktop/src/preload.ts create mode 100644 apps/desktop/src/server-selector.css create mode 100644 apps/desktop/src/server-selector.html create mode 100644 apps/desktop/tsconfig.json create mode 100644 apps/server/.eslintrc.json create mode 100644 apps/server/.gitignore create mode 100644 apps/server/.prettierrc.json create mode 100644 apps/server/build/build.ts create mode 100644 apps/server/build/helpers.ts create mode 100644 apps/server/build/set-version.ts create mode 100644 apps/server/bunfig.toml create mode 100644 apps/server/drizzle.config.ts create mode 100644 apps/server/package.json create mode 100644 apps/server/src/__tests__/cascade.test.ts create mode 100644 apps/server/src/__tests__/context.ts create mode 100644 apps/server/src/__tests__/forum-posts.test.ts create mode 100644 apps/server/src/__tests__/helpers.ts create mode 100644 apps/server/src/__tests__/mock-db.ts create mode 100644 apps/server/src/__tests__/mock-modules.ts create mode 100644 apps/server/src/__tests__/mocks/index.ts create mode 100644 apps/server/src/__tests__/mocks/plugins/plugin-a/index.js create mode 100644 apps/server/src/__tests__/mocks/plugins/plugin-a/package.json create mode 100644 apps/server/src/__tests__/mocks/plugins/plugin-b/index.js create mode 100644 apps/server/src/__tests__/mocks/plugins/plugin-b/package.json create mode 100644 apps/server/src/__tests__/mocks/plugins/plugin-invalid-package/index.js create mode 100644 apps/server/src/__tests__/mocks/plugins/plugin-invalid-package/package.json create mode 100644 apps/server/src/__tests__/mocks/plugins/plugin-missing-entry/package.json create mode 100644 apps/server/src/__tests__/mocks/plugins/plugin-no-onload/index.js create mode 100644 apps/server/src/__tests__/mocks/plugins/plugin-no-onload/package.json create mode 100644 apps/server/src/__tests__/mocks/plugins/plugin-no-unload/index.js create mode 100644 apps/server/src/__tests__/mocks/plugins/plugin-no-unload/package.json create mode 100644 apps/server/src/__tests__/mocks/plugins/plugin-throws-error/index.js create mode 100644 apps/server/src/__tests__/mocks/plugins/plugin-throws-error/package.json create mode 100644 apps/server/src/__tests__/mocks/plugins/plugin-with-events/index.js create mode 100644 apps/server/src/__tests__/mocks/plugins/plugin-with-events/package.json create mode 100644 apps/server/src/__tests__/mocks/plugins/plugin-with-settings/index.js create mode 100644 apps/server/src/__tests__/mocks/plugins/plugin-with-settings/package.json create mode 100644 apps/server/src/__tests__/prepare.ts create mode 100644 apps/server/src/__tests__/seed.ts create mode 100644 apps/server/src/__tests__/setup.test.ts create mode 100644 apps/server/src/__tests__/setup.ts create mode 100644 apps/server/src/config.ts create mode 100644 apps/server/src/crons/cleanup-files.ts create mode 100644 apps/server/src/crons/index.ts create mode 100644 apps/server/src/db/index.ts create mode 100644 apps/server/src/db/migrations/0000_rainy_lorna_dane.sql create mode 100644 apps/server/src/db/migrations/0001_bright_brother_voodoo.sql create mode 100644 apps/server/src/db/migrations/0002_loose_natasha_romanoff.sql create mode 100644 apps/server/src/db/migrations/0003_low_colossus.sql create mode 100644 apps/server/src/db/migrations/0004_fearless_colossus.sql create mode 100644 apps/server/src/db/migrations/0005_harsh_young_avengers.sql create mode 100644 apps/server/src/db/migrations/0006_colorful_victor_mancha.sql create mode 100644 apps/server/src/db/migrations/0007_spotty_annihilus.sql create mode 100644 apps/server/src/db/migrations/0008_white_felicia_hardy.sql create mode 100644 apps/server/src/db/migrations/0009_icy_expediter.sql create mode 100644 apps/server/src/db/migrations/0010_sour_trish_tilby.sql create mode 100644 apps/server/src/db/migrations/meta/0000_snapshot.json create mode 100644 apps/server/src/db/migrations/meta/0001_snapshot.json create mode 100644 apps/server/src/db/migrations/meta/0002_snapshot.json create mode 100644 apps/server/src/db/migrations/meta/0003_snapshot.json create mode 100644 apps/server/src/db/migrations/meta/0004_snapshot.json create mode 100644 apps/server/src/db/migrations/meta/0005_snapshot.json create mode 100644 apps/server/src/db/migrations/meta/0006_snapshot.json create mode 100644 apps/server/src/db/migrations/meta/0007_snapshot.json create mode 100644 apps/server/src/db/migrations/meta/0008_snapshot.json create mode 100644 apps/server/src/db/migrations/meta/0009_snapshot.json create mode 100644 apps/server/src/db/migrations/meta/0010_snapshot.json create mode 100644 apps/server/src/db/migrations/meta/_journal.json create mode 100644 apps/server/src/db/mutations/__tests__/federation-sync.test.ts create mode 100644 apps/server/src/db/mutations/federation.ts create mode 100644 apps/server/src/db/mutations/files.ts create mode 100644 apps/server/src/db/mutations/roles.ts create mode 100644 apps/server/src/db/mutations/server.ts create mode 100644 apps/server/src/db/mutations/users.ts create mode 100644 apps/server/src/db/publishers.ts create mode 100644 apps/server/src/db/queries/channels.ts create mode 100644 apps/server/src/db/queries/dms.ts create mode 100644 apps/server/src/db/queries/emojis.ts create mode 100644 apps/server/src/db/queries/federation.ts create mode 100644 apps/server/src/db/queries/files.ts create mode 100644 apps/server/src/db/queries/friends.ts create mode 100644 apps/server/src/db/queries/invites.ts create mode 100644 apps/server/src/db/queries/logins.ts create mode 100644 apps/server/src/db/queries/messages.ts create mode 100644 apps/server/src/db/queries/roles.ts create mode 100644 apps/server/src/db/queries/server.ts create mode 100644 apps/server/src/db/queries/servers.ts create mode 100644 apps/server/src/db/queries/users.ts create mode 100644 apps/server/src/db/schema.ts create mode 100644 apps/server/src/db/seed.ts create mode 100644 apps/server/src/declarations.d.ts create mode 100644 apps/server/src/helpers/__tests__/files-crypto.test.ts create mode 100644 apps/server/src/helpers/__tests__/network.test.ts create mode 100644 apps/server/src/helpers/__tests__/parse-mentions.test.ts create mode 100644 apps/server/src/helpers/__tests__/pasre-command-args.test.ts create mode 100644 apps/server/src/helpers/clear-fields.ts create mode 100644 apps/server/src/helpers/ensure-server-dirs.ts create mode 100644 apps/server/src/helpers/files-crypto.ts create mode 100644 apps/server/src/helpers/fs.ts create mode 100644 apps/server/src/helpers/get-executable-name.ts create mode 100644 apps/server/src/helpers/get-invoker-ctx-from-trpc-ctx.ts create mode 100644 apps/server/src/helpers/get-plain-text-from-html.ts create mode 100644 apps/server/src/helpers/get-ws-info.ts create mode 100644 apps/server/src/helpers/network.ts create mode 100644 apps/server/src/helpers/parse-command-args.ts create mode 100644 apps/server/src/helpers/parse-mentions.ts create mode 100644 apps/server/src/helpers/paths.ts create mode 100644 apps/server/src/helpers/sanitize-for-log.ts create mode 100644 apps/server/src/helpers/zip.ts create mode 100644 apps/server/src/http/__tests__/healthz.test.ts create mode 100644 apps/server/src/http/__tests__/info.test.ts create mode 100644 apps/server/src/http/__tests__/interface.test.ts create mode 100644 apps/server/src/http/__tests__/login.test.ts create mode 100644 apps/server/src/http/__tests__/public.test.ts create mode 100644 apps/server/src/http/__tests__/registration-disabled.test.ts create mode 100644 apps/server/src/http/__tests__/upload.test.ts create mode 100644 apps/server/src/http/cors.ts create mode 100644 apps/server/src/http/deepfilter-assets.ts create mode 100644 apps/server/src/http/federation.ts create mode 100644 apps/server/src/http/healthz.ts create mode 100644 apps/server/src/http/helpers.ts create mode 100644 apps/server/src/http/index.ts create mode 100644 apps/server/src/http/info.ts create mode 100644 apps/server/src/http/interface.ts create mode 100644 apps/server/src/http/login.ts create mode 100644 apps/server/src/http/provision-user.ts create mode 100644 apps/server/src/http/public.ts create mode 100644 apps/server/src/http/rate-limit.ts create mode 100644 apps/server/src/http/register-user.ts create mode 100644 apps/server/src/http/register.ts create mode 100644 apps/server/src/http/upload.ts create mode 100644 apps/server/src/http/utils.ts create mode 100644 apps/server/src/http/webhook.ts create mode 100644 apps/server/src/index.ts create mode 100644 apps/server/src/logger.ts create mode 100644 apps/server/src/plugins/__tests__/event-bus.test.ts create mode 100644 apps/server/src/plugins/event-bus.ts create mode 100644 apps/server/src/plugins/index.ts create mode 100644 apps/server/src/queues/activity-log/index.ts create mode 100644 apps/server/src/queues/dm-message-metadata/get-dm-message-metadata.ts create mode 100644 apps/server/src/queues/dm-message-metadata/index.ts create mode 100644 apps/server/src/queues/logins/index.ts create mode 100644 apps/server/src/queues/message-metadata/get-message-metadata.ts create mode 100644 apps/server/src/queues/message-metadata/index.ts create mode 100644 apps/server/src/routers/__tests__/access-control.test.ts create mode 100644 apps/server/src/routers/__tests__/authorization.test.ts create mode 100644 apps/server/src/routers/__tests__/categories.test.ts create mode 100644 apps/server/src/routers/__tests__/channels.test.ts create mode 100644 apps/server/src/routers/__tests__/deferred-data.test.ts create mode 100644 apps/server/src/routers/__tests__/dms.test.ts create mode 100644 apps/server/src/routers/__tests__/e2ee-messages.test.ts create mode 100644 apps/server/src/routers/__tests__/e2ee.test.ts create mode 100644 apps/server/src/routers/__tests__/emojis.test.ts create mode 100644 apps/server/src/routers/__tests__/federation-membership.test.ts create mode 100644 apps/server/src/routers/__tests__/file-encryption.test.ts create mode 100644 apps/server/src/routers/__tests__/files.test.ts create mode 100644 apps/server/src/routers/__tests__/forums.test.ts create mode 100644 apps/server/src/routers/__tests__/invites.test.ts create mode 100644 apps/server/src/routers/__tests__/key-backup-crypto.test.ts create mode 100644 apps/server/src/routers/__tests__/messages.test.ts create mode 100644 apps/server/src/routers/__tests__/nicknames.test.ts create mode 100644 apps/server/src/routers/__tests__/others.test.ts create mode 100644 apps/server/src/routers/__tests__/roles.test.ts create mode 100644 apps/server/src/routers/__tests__/servers.test.ts create mode 100644 apps/server/src/routers/__tests__/user-preferences.test.ts create mode 100644 apps/server/src/routers/__tests__/users.test.ts create mode 100644 apps/server/src/routers/automod/create-rule.ts create mode 100644 apps/server/src/routers/automod/delete-rule.ts create mode 100644 apps/server/src/routers/automod/index.ts create mode 100644 apps/server/src/routers/automod/list-rules.ts create mode 100644 apps/server/src/routers/automod/toggle-rule.ts create mode 100644 apps/server/src/routers/automod/update-rule.ts create mode 100644 apps/server/src/routers/categories/add-category.ts create mode 100644 apps/server/src/routers/categories/delete-category.ts create mode 100644 apps/server/src/routers/categories/events.ts create mode 100644 apps/server/src/routers/categories/get-category.ts create mode 100644 apps/server/src/routers/categories/index.ts create mode 100644 apps/server/src/routers/categories/reorder-categories.ts create mode 100644 apps/server/src/routers/categories/update-category.ts create mode 100644 apps/server/src/routers/channels/add-channel.ts create mode 100644 apps/server/src/routers/channels/delete-channel.ts create mode 100644 apps/server/src/routers/channels/delete-permissions.ts create mode 100644 apps/server/src/routers/channels/events.ts create mode 100644 apps/server/src/routers/channels/get-channel.ts create mode 100644 apps/server/src/routers/channels/get-permissions.ts create mode 100644 apps/server/src/routers/channels/get-visible-users.ts create mode 100644 apps/server/src/routers/channels/index.ts create mode 100644 apps/server/src/routers/channels/mark-as-read.ts create mode 100644 apps/server/src/routers/channels/reorder-channels.ts create mode 100644 apps/server/src/routers/channels/rotate-file-access-token.ts create mode 100644 apps/server/src/routers/channels/update-channel.ts create mode 100644 apps/server/src/routers/channels/update-permission.ts create mode 100644 apps/server/src/routers/dms/add-member.ts create mode 100644 apps/server/src/routers/dms/create-group.ts create mode 100644 apps/server/src/routers/dms/delete-channel.ts create mode 100644 apps/server/src/routers/dms/delete-message.ts create mode 100644 apps/server/src/routers/dms/edit-message.ts create mode 100644 apps/server/src/routers/dms/enable-encryption.ts create mode 100644 apps/server/src/routers/dms/events.ts create mode 100644 apps/server/src/routers/dms/get-active-calls.ts create mode 100644 apps/server/src/routers/dms/get-channels.ts create mode 100644 apps/server/src/routers/dms/get-messages.ts create mode 100644 apps/server/src/routers/dms/get-or-create-channel.ts create mode 100644 apps/server/src/routers/dms/get-pinned-dm-messages.ts create mode 100644 apps/server/src/routers/dms/index.ts create mode 100644 apps/server/src/routers/dms/leave-group.ts create mode 100644 apps/server/src/routers/dms/mark-all-as-read.ts create mode 100644 apps/server/src/routers/dms/mark-channel-as-read.ts create mode 100644 apps/server/src/routers/dms/pin-dm-message.ts create mode 100644 apps/server/src/routers/dms/remove-member.ts create mode 100644 apps/server/src/routers/dms/search-messages.ts create mode 100644 apps/server/src/routers/dms/send-message.ts create mode 100644 apps/server/src/routers/dms/signal-typing.ts create mode 100644 apps/server/src/routers/dms/toggle-reaction.ts create mode 100644 apps/server/src/routers/dms/unpin-dm-message.ts create mode 100644 apps/server/src/routers/dms/update-group.ts create mode 100644 apps/server/src/routers/dms/voice-join.ts create mode 100644 apps/server/src/routers/dms/voice-leave.ts create mode 100644 apps/server/src/routers/e2ee/identity-reset-messages.ts create mode 100644 apps/server/src/routers/e2ee/index.ts create mode 100644 apps/server/src/routers/emojis/add-emoji.ts create mode 100644 apps/server/src/routers/emojis/delete-emoji.ts create mode 100644 apps/server/src/routers/emojis/events.ts create mode 100644 apps/server/src/routers/emojis/get-emojis.ts create mode 100644 apps/server/src/routers/emojis/index.ts create mode 100644 apps/server/src/routers/emojis/update-emoji.ts create mode 100644 apps/server/src/routers/federation/accept-instance.ts create mode 100644 apps/server/src/routers/federation/add-instance.ts create mode 100644 apps/server/src/routers/federation/block-instance.ts create mode 100644 apps/server/src/routers/federation/confirm-join.ts create mode 100644 apps/server/src/routers/federation/discover-remote.ts create mode 100644 apps/server/src/routers/federation/ensure-shadow-user.ts create mode 100644 apps/server/src/routers/federation/events.ts create mode 100644 apps/server/src/routers/federation/generate-keys.ts create mode 100644 apps/server/src/routers/federation/get-config.ts create mode 100644 apps/server/src/routers/federation/get-joined.ts create mode 100644 apps/server/src/routers/federation/index.ts create mode 100644 apps/server/src/routers/federation/join-remote.ts create mode 100644 apps/server/src/routers/federation/leave-remote.ts create mode 100644 apps/server/src/routers/federation/list-instances.ts create mode 100644 apps/server/src/routers/federation/remove-instance.ts create mode 100644 apps/server/src/routers/federation/request-token.ts create mode 100644 apps/server/src/routers/federation/set-config.ts create mode 100644 apps/server/src/routers/files/delete-file.ts create mode 100644 apps/server/src/routers/files/delete-temporary-file.ts create mode 100644 apps/server/src/routers/files/index.ts create mode 100644 apps/server/src/routers/friends/accept-request.ts create mode 100644 apps/server/src/routers/friends/events.ts create mode 100644 apps/server/src/routers/friends/get-friends.ts create mode 100644 apps/server/src/routers/friends/get-requests.ts create mode 100644 apps/server/src/routers/friends/index.ts create mode 100644 apps/server/src/routers/friends/reject-request.ts create mode 100644 apps/server/src/routers/friends/remove-friend.ts create mode 100644 apps/server/src/routers/friends/send-request.ts create mode 100644 apps/server/src/routers/index.ts create mode 100644 apps/server/src/routers/invites/add-invite.ts create mode 100644 apps/server/src/routers/invites/delete-invite.ts create mode 100644 apps/server/src/routers/invites/events.ts create mode 100644 apps/server/src/routers/invites/get-invites.ts create mode 100644 apps/server/src/routers/invites/index.ts create mode 100644 apps/server/src/routers/messages/bulk-delete-messages.ts create mode 100644 apps/server/src/routers/messages/delete-message.ts create mode 100644 apps/server/src/routers/messages/edit-message.ts create mode 100644 apps/server/src/routers/messages/events.ts create mode 100644 apps/server/src/routers/messages/get-messages.ts create mode 100644 apps/server/src/routers/messages/get-pinned.ts create mode 100644 apps/server/src/routers/messages/index.ts create mode 100644 apps/server/src/routers/messages/pin-message.ts create mode 100644 apps/server/src/routers/messages/purge-channel.ts create mode 100644 apps/server/src/routers/messages/send-message.ts create mode 100644 apps/server/src/routers/messages/signal-typing.ts create mode 100644 apps/server/src/routers/messages/toggle-message-reaction.ts create mode 100644 apps/server/src/routers/messages/unpin-message.ts create mode 100644 apps/server/src/routers/notes/add-note.ts create mode 100644 apps/server/src/routers/notes/delete-note.ts create mode 100644 apps/server/src/routers/notes/events.ts create mode 100644 apps/server/src/routers/notes/get-notes.ts create mode 100644 apps/server/src/routers/notes/index.ts create mode 100644 apps/server/src/routers/notifications/get-server-settings.ts create mode 100644 apps/server/src/routers/notifications/get-setting.ts create mode 100644 apps/server/src/routers/notifications/index.ts create mode 100644 apps/server/src/routers/notifications/mark-server-as-read.ts create mode 100644 apps/server/src/routers/notifications/set-server-mute.ts create mode 100644 apps/server/src/routers/notifications/set-server-notification-level.ts create mode 100644 apps/server/src/routers/notifications/set-setting.ts create mode 100644 apps/server/src/routers/others/change-logo.ts create mode 100644 apps/server/src/routers/others/events.ts create mode 100644 apps/server/src/routers/others/get-server-emojis.ts create mode 100644 apps/server/src/routers/others/get-server-members.ts create mode 100644 apps/server/src/routers/others/get-server-voice-state.ts create mode 100644 apps/server/src/routers/others/get-settings.ts create mode 100644 apps/server/src/routers/others/get-storage-settings.ts create mode 100644 apps/server/src/routers/others/get-update.ts create mode 100644 apps/server/src/routers/others/handshake.ts create mode 100644 apps/server/src/routers/others/index.ts create mode 100644 apps/server/src/routers/others/join.ts create mode 100644 apps/server/src/routers/others/update-server.ts create mode 100644 apps/server/src/routers/others/update-settings.ts create mode 100644 apps/server/src/routers/others/use-secret-token.ts create mode 100644 apps/server/src/routers/plugins/events.ts create mode 100644 apps/server/src/routers/plugins/execute-command.ts create mode 100644 apps/server/src/routers/plugins/get-commands.ts create mode 100644 apps/server/src/routers/plugins/get-logs.ts create mode 100644 apps/server/src/routers/plugins/get-plugins.ts create mode 100644 apps/server/src/routers/plugins/get-settings.ts create mode 100644 apps/server/src/routers/plugins/index.ts create mode 100644 apps/server/src/routers/plugins/toggle-plugin.ts create mode 100644 apps/server/src/routers/plugins/update-setting.ts create mode 100644 apps/server/src/routers/roles/add-role.ts create mode 100644 apps/server/src/routers/roles/delete-role.ts create mode 100644 apps/server/src/routers/roles/events.ts create mode 100644 apps/server/src/routers/roles/get-roles.ts create mode 100644 apps/server/src/routers/roles/index.ts create mode 100644 apps/server/src/routers/roles/set-default-role.ts create mode 100644 apps/server/src/routers/roles/update-role.ts create mode 100644 apps/server/src/routers/search/index.ts create mode 100644 apps/server/src/routers/search/search-messages.ts create mode 100644 apps/server/src/routers/servers/create.ts create mode 100644 apps/server/src/routers/servers/delete.ts create mode 100644 apps/server/src/routers/servers/discover.ts create mode 100644 apps/server/src/routers/servers/events.ts create mode 100644 apps/server/src/routers/servers/get-all.ts create mode 100644 apps/server/src/routers/servers/get-members.ts create mode 100644 apps/server/src/routers/servers/get-unread-counts.ts create mode 100644 apps/server/src/routers/servers/index.ts create mode 100644 apps/server/src/routers/servers/join-discover.ts create mode 100644 apps/server/src/routers/servers/join-federated.ts create mode 100644 apps/server/src/routers/servers/join.ts create mode 100644 apps/server/src/routers/servers/leave.ts create mode 100644 apps/server/src/routers/servers/reorder.ts create mode 100644 apps/server/src/routers/servers/transfer-owner.ts create mode 100644 apps/server/src/routers/servers/update.ts create mode 100644 apps/server/src/routers/threads/archive-thread.ts create mode 100644 apps/server/src/routers/threads/create-forum-post.ts create mode 100644 apps/server/src/routers/threads/create-thread.ts create mode 100644 apps/server/src/routers/threads/delete-thread.ts create mode 100644 apps/server/src/routers/threads/events.ts create mode 100644 apps/server/src/routers/threads/follow-thread.ts create mode 100644 apps/server/src/routers/threads/get-threads.ts create mode 100644 apps/server/src/routers/threads/index.ts create mode 100644 apps/server/src/routers/threads/manage-forum-tags.ts create mode 100644 apps/server/src/routers/threads/update-post-tags.ts create mode 100644 apps/server/src/routers/users/add-role.ts create mode 100644 apps/server/src/routers/users/ban.ts create mode 100644 apps/server/src/routers/users/change-avatar.ts create mode 100644 apps/server/src/routers/users/change-banner.ts create mode 100644 apps/server/src/routers/users/events.ts create mode 100644 apps/server/src/routers/users/get-preferences.ts create mode 100644 apps/server/src/routers/users/get-user-info.ts create mode 100644 apps/server/src/routers/users/get-user-roles.ts create mode 100644 apps/server/src/routers/users/get-users.ts create mode 100644 apps/server/src/routers/users/index.ts create mode 100644 apps/server/src/routers/users/kick.ts create mode 100644 apps/server/src/routers/users/remove-role.ts create mode 100644 apps/server/src/routers/users/set-nickname.ts create mode 100644 apps/server/src/routers/users/set-status.ts create mode 100644 apps/server/src/routers/users/unban.ts create mode 100644 apps/server/src/routers/users/update-password.ts create mode 100644 apps/server/src/routers/users/update-preferences.ts create mode 100644 apps/server/src/routers/users/update-user.ts create mode 100644 apps/server/src/routers/voice/close-producer.ts create mode 100644 apps/server/src/routers/voice/connect-consumer-transport.ts create mode 100644 apps/server/src/routers/voice/connect-producer-transport.ts create mode 100644 apps/server/src/routers/voice/consume.ts create mode 100644 apps/server/src/routers/voice/create-consumer-transport.ts create mode 100644 apps/server/src/routers/voice/create-producer-transport.ts create mode 100644 apps/server/src/routers/voice/events.ts create mode 100644 apps/server/src/routers/voice/get-producers.ts create mode 100644 apps/server/src/routers/voice/index.ts create mode 100644 apps/server/src/routers/voice/join.ts create mode 100644 apps/server/src/routers/voice/leave.ts create mode 100644 apps/server/src/routers/voice/produce.ts create mode 100644 apps/server/src/routers/voice/restart-ice.ts create mode 100644 apps/server/src/routers/voice/update-state.ts create mode 100644 apps/server/src/routers/webhooks/create.ts create mode 100644 apps/server/src/routers/webhooks/delete.ts create mode 100644 apps/server/src/routers/webhooks/get.ts create mode 100644 apps/server/src/routers/webhooks/index.ts create mode 100644 apps/server/src/routers/webhooks/list.ts create mode 100644 apps/server/src/routers/webhooks/update.ts create mode 100644 apps/server/src/runtimes/index.ts create mode 100644 apps/server/src/runtimes/voice.ts create mode 100644 apps/server/src/scripts/__tests__/html-to-tokens-converter.test.ts create mode 100644 apps/server/src/scripts/migrate-html-to-tokens.ts create mode 100644 apps/server/src/types.ts create mode 100644 apps/server/src/utils/__tests__/file-manager.test.ts create mode 100644 apps/server/src/utils/__tests__/password-rate-limit.test.ts create mode 100644 apps/server/src/utils/automod.ts create mode 100644 apps/server/src/utils/create-servers.ts create mode 100644 apps/server/src/utils/embeds.ts create mode 100644 apps/server/src/utils/env.ts create mode 100644 apps/server/src/utils/federation.ts create mode 100644 apps/server/src/utils/file-manager.ts create mode 100644 apps/server/src/utils/invariant.ts create mode 100644 apps/server/src/utils/ip-cache.ts create mode 100644 apps/server/src/utils/logins.ts create mode 100644 apps/server/src/utils/mediasoup.ts create mode 100644 apps/server/src/utils/metrics.ts create mode 100644 apps/server/src/utils/password-rate-limit.ts create mode 100644 apps/server/src/utils/print-debug.ts create mode 100644 apps/server/src/utils/pubsub.ts create mode 100644 apps/server/src/utils/supabase.ts create mode 100644 apps/server/src/utils/trpc.ts create mode 100644 apps/server/src/utils/updater.ts create mode 100644 apps/server/src/utils/validate-url.ts create mode 100644 apps/server/src/utils/wss.ts create mode 100644 apps/server/tsconfig.json create mode 100644 docker-compose-supabase.yml create mode 100644 docker-compose.noise.yml create mode 100644 docker-compose.override.yml create mode 100644 docker/db-entrypoint.sh create mode 100644 docker/generate-keys.ts create mode 100644 docker/kong-supabase.yml create mode 100644 docker/kong.yml create mode 100644 docker/patch-migrations.ts create mode 100644 docker/pulse-entrypoint.sh create mode 100644 docker/tests/test-db-entrypoint.sh create mode 100644 knip.json create mode 100644 package.json create mode 100644 packages/plugin-sdk/.gitignore create mode 100644 packages/plugin-sdk/README.md create mode 100644 packages/plugin-sdk/package.json create mode 100644 packages/plugin-sdk/src/index.ts create mode 100644 packages/plugin-sdk/tsconfig.json create mode 100644 packages/shared/.gitignore create mode 100644 packages/shared/package.json create mode 100644 packages/shared/src/events.ts create mode 100644 packages/shared/src/extensions.ts create mode 100644 packages/shared/src/helpers/__tests__/command-parser.test.ts create mode 100644 packages/shared/src/helpers/command-parser.ts create mode 100644 packages/shared/src/helpers/get-mediasoup-kind.ts create mode 100644 packages/shared/src/helpers/get-random-string.ts create mode 100644 packages/shared/src/helpers/index.ts create mode 100644 packages/shared/src/helpers/sha256.ts create mode 100644 packages/shared/src/index.ts create mode 100644 packages/shared/src/logs.ts create mode 100644 packages/shared/src/plugins.ts create mode 100644 packages/shared/src/preferences.ts create mode 100644 packages/shared/src/statics/index.ts create mode 100644 packages/shared/src/statics/metrics.ts create mode 100644 packages/shared/src/statics/permissions.ts create mode 100644 packages/shared/src/statics/storage.ts create mode 100644 packages/shared/src/tables.ts create mode 100644 packages/shared/src/trpc.ts create mode 100644 packages/shared/src/types.ts create mode 100644 packages/shared/src/voice.ts create mode 100644 packages/shared/tsconfig.json create mode 100755 scripts/install-pulse-clean.sh create mode 100755 scripts/install-pulse-rnnoise.sh create mode 100755 scripts/rnnoise-direct.sh create mode 100755 scripts/rnnoise-patch.sh create mode 100755 start.sh create mode 100644 tsconfig.json diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..c6cc46b --- /dev/null +++ b/.dockerignore @@ -0,0 +1,4 @@ +data/ +node_modules/ +.env +.git/ diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..d93409c --- /dev/null +++ b/.env.example @@ -0,0 +1,51 @@ +# ============================================================================= +# Pulse — Environment Variables +# ============================================================================= +# Copy this file to .env and fill in the values for your environment. + +# ----------------------------------------------------------------------------- +# Database +# ----------------------------------------------------------------------------- +DATABASE_URL=postgresql://postgres:your-password@localhost:5432/postgres + +# ----------------------------------------------------------------------------- +# Supabase +# ----------------------------------------------------------------------------- +SUPABASE_URL=http://localhost:8000 +SUPABASE_ANON_KEY=your-supabase-anon-key +SUPABASE_SERVICE_ROLE_KEY=your-supabase-service-role-key + +# ----------------------------------------------------------------------------- +# Client (Vite build-time — must be prefixed with VITE_) +# ----------------------------------------------------------------------------- +VITE_SUPABASE_URL=http://localhost:8000 +VITE_SUPABASE_ANON_KEY=your-supabase-anon-key + +# ----------------------------------------------------------------------------- +# OAuth Providers (optional, set to "true" to enable) +# ----------------------------------------------------------------------------- +GOOGLE_OAUTH_ENABLED=false +DISCORD_OAUTH_ENABLED=false +FACEBOOK_OAUTH_ENABLED=false +TWITCH_OAUTH_ENABLED=false + +# ----------------------------------------------------------------------------- +# WebRTC / Voice +# ----------------------------------------------------------------------------- +# Public IP for WebRTC ICE candidates (required for Docker / remote access) +# PUBLIC_IP=203.0.113.1 + +# ----------------------------------------------------------------------------- +# Registration +# ----------------------------------------------------------------------------- +# Set to "true" to disable all new user registration instance-wide. +# Existing users can still log in. Invites bypass this restriction. +# REGISTRATION_DISABLED=false + +# ----------------------------------------------------------------------------- +# Optional +# ----------------------------------------------------------------------------- +# GIPHY_API_KEY=your-giphy-api-key +# TRUST_PROXY=true +# RUNNING_IN_DOCKER=true +# DEBUG=true diff --git a/.env.supabase.example b/.env.supabase.example new file mode 100644 index 0000000..afee55d --- /dev/null +++ b/.env.supabase.example @@ -0,0 +1,57 @@ +# ============================================================================= +# Pulse — Self-Hosted Supabase Environment Variables +# ============================================================================= +# Copy this file to .env and fill in the values. +# Use with: docker compose -f docker-compose-supabase.yml up -d + +# === REQUIRED === + +# PostgreSQL password for the local database (must be URL-safe: no / = + characters) +# Generate with: openssl rand -hex 24 +POSTGRES_PASSWORD= + +# JWT secret used by GoTrue and PostgreSQL (min 32 chars) +# Generate with: openssl rand -base64 32 +JWT_SECRET= + +# Supabase API keys (JWTs signed with JWT_SECRET above) +# Generate both keys by running: bun docker/generate-keys.ts +SUPABASE_ANON_KEY= +SUPABASE_SERVICE_ROLE_KEY= + +# Public URL where Pulse is accessible (used by GoTrue for redirects) +SITE_URL= + +# === OPTIONAL === + +# JWT expiry in seconds (default: 3600 = 1 hour) +# JWT_EXPIRY=3600 + +# Host port for Pulse (default: 4991) +# PULSE_PORT=4991 + +# Server's public IP for WebRTC (auto-detected if not set) +# PUBLIC_IP= + +# Additional OAuth redirect URLs (comma-separated) +# ADDITIONAL_REDIRECT_URLS= + +# OAuth providers (set to "true" to enable, then fill in client ID and secret) +# GOOGLE_OAUTH_ENABLED=false +# GOOGLE_OAUTH_CLIENT_ID= +# GOOGLE_OAUTH_SECRET= +# DISCORD_OAUTH_ENABLED=false +# DISCORD_OAUTH_CLIENT_ID= +# DISCORD_OAUTH_SECRET= +# FACEBOOK_OAUTH_ENABLED=false +# FACEBOOK_OAUTH_CLIENT_ID= +# FACEBOOK_OAUTH_SECRET= +# TWITCH_OAUTH_ENABLED=false +# TWITCH_OAUTH_CLIENT_ID= +# TWITCH_OAUTH_SECRET= + +# Disable all new user registration instance-wide (invites still work) +# REGISTRATION_DISABLED=false + +# Giphy API key for GIF search +# GIPHY_API_KEY= diff --git a/.github/codeql/codeql-config.yml b/.github/codeql/codeql-config.yml new file mode 100644 index 0000000..48e22bb --- /dev/null +++ b/.github/codeql/codeql-config.yml @@ -0,0 +1,28 @@ +queries: + - uses: security-and-quality + - uses: ./.github/codeql/custom-queries + +paths-ignore: + # Build scripts, migration scripts, and test helpers — not runtime code + - apps/server/build/** + - apps/server/src/scripts/** + - apps/desktop/scripts/** + - '**/__tests__/**' + +query-filters: + # Exclude the built-in js/request-forgery query so our custom version + # (with the validateFederationUrl sanitizer) takes its place. + - exclude: + id: js/request-forgery + # URL routing is not a "bypass" — rate limiting and auth are applied per-route + - exclude: + id: js/user-controlled-bypass + # CORS origin is validated via isAllowedOrigin() against a server-side allowlist + - exclude: + id: js/cors-misconfiguration-for-credentials + # localStorage is used for client-side preferences and session persistence by design + - exclude: + id: js/clear-text-storage-of-sensitive-data + # GitHub Actions workflows already have explicit top-level permissions blocks + - exclude: + id: actions/missing-workflow-permissions diff --git a/.github/codeql/custom-queries/RequestForgery.ql b/.github/codeql/custom-queries/RequestForgery.ql new file mode 100644 index 0000000..33d989c --- /dev/null +++ b/.github/codeql/custom-queries/RequestForgery.ql @@ -0,0 +1,48 @@ +/** + * @name Server-side request forgery + * @description Making a network request with user-controlled data in the URL + * allows for request forgery attacks. + * @kind path-problem + * @problem.severity error + * @security-severity 9.1 + * @precision high + * @id js/request-forgery + * @tags security + * external/cwe/cwe-918 + */ + +import javascript +import semmle.javascript.security.dataflow.RequestForgeryQuery +import RequestForgeryFlow::PathGraph + +/** + * Treat calls to validateFederationUrl() as a request-forgery sanitizer. + * + * validateFederationUrl (apps/server/src/utils/validate-url.ts) validates that + * a URL does not target private or internal network resources by: + * - Rejecting non-HTTP(S) schemes + * - Checking the hostname against private IP ranges (RFC 1918, loopback, link-local) + * - Resolving DNS and checking resolved IPs against the same private ranges + * + * The function throws if the URL is unsafe, so if execution continues past the + * call, the returned URL object is safe to fetch. Marking the call node as a + * barrier prevents taint from flowing through the return value. + */ +private class ValidateFederationUrlSanitizer extends RequestForgery::Sanitizer { + ValidateFederationUrlSanitizer() { + exists(DataFlow::CallNode call | + call.getCalleeName() = "validateFederationUrl" and + this = call + ) + } +} + +from + RequestForgeryFlow::PathNode source, RequestForgeryFlow::PathNode sink, + DataFlow::Node request +where + RequestForgeryFlow::flowPath(source, sink) and + request = sink.getNode().(RequestForgery::Sink).getARequest() +select request, source, sink, "The $@ of this request depends on a $@.", + sink.getNode(), sink.getNode().(RequestForgery::Sink).getKind(), source, + "user-provided value" diff --git a/.github/codeql/custom-queries/qlpack.yml b/.github/codeql/custom-queries/qlpack.yml new file mode 100644 index 0000000..59991b0 --- /dev/null +++ b/.github/codeql/custom-queries/qlpack.yml @@ -0,0 +1,4 @@ +name: pulse/codeql-custom-queries +version: 0.0.1 +dependencies: + codeql/javascript-all: "*" diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 0000000..3897c82 --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,33 @@ +name: CodeQL + +on: + push: + branches: [main, dev] + pull_request: + branches: [main, dev] + schedule: + - cron: '0 6 * * 1' # Every Monday at 06:00 UTC + +permissions: + security-events: write + +jobs: + analyze: + name: Analyze + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Initialize CodeQL + uses: github/codeql-action/init@v3 + with: + languages: javascript-typescript + config-file: ./.github/codeql/codeql-config.yml + + - name: Autobuild + uses: github/codeql-action/autobuild@v3 + + - name: Run CodeQL analysis + uses: github/codeql-action/analyze@v3 diff --git a/.github/workflows/desktop-release.yml b/.github/workflows/desktop-release.yml new file mode 100644 index 0000000..f2205fb --- /dev/null +++ b/.github/workflows/desktop-release.yml @@ -0,0 +1,160 @@ +name: Desktop Release + +on: + workflow_dispatch: + inputs: + version: + description: "Release version (e.g. 0.1.0). Leave empty to use package.json version." + required: false + type: string + +permissions: + contents: write + +jobs: + build-desktop: + strategy: + fail-fast: false + matrix: + include: + - os: macos-latest + platform: darwin + arch: arm64 + make_targets: --platform=darwin --arch=arm64 + - os: ubuntu-latest + platform: linux + arch: x64 + make_targets: --platform=linux --arch=x64 + - os: windows-latest + platform: win32 + arch: x64 + make_targets: --platform=win32 --arch=x64 + + runs-on: ${{ matrix.os }} + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Install Bun + uses: oven-sh/setup-bun@v2 + with: + bun-version: latest + + # Linux: install RPM tooling for MakerRpm + - name: Install Linux packaging deps + if: matrix.platform == 'linux' + run: sudo apt-get update && sudo apt-get install -y rpm + + # macOS: install CMake for native audio modules + - name: Install CMake (macOS) + if: matrix.platform == 'darwin' + run: brew install cmake + + # macOS: import code signing certificate (optional) + - name: Import code signing certificate + if: matrix.platform == 'darwin' && env.APPLE_CERTIFICATE_BASE64 != '' + env: + APPLE_CERTIFICATE_BASE64: ${{ secrets.APPLE_CERTIFICATE_BASE64 }} + APPLE_CERTIFICATE_PASSWORD: ${{ secrets.APPLE_CERTIFICATE_PASSWORD }} + run: | + CERT_FILE=$(mktemp /tmp/cert.XXXXXX.p12) + echo "$APPLE_CERTIFICATE_BASE64" | base64 --decode > "$CERT_FILE" + KEYCHAIN=build.keychain + security create-keychain -p "" "$KEYCHAIN" + security default-keychain -s "$KEYCHAIN" + security unlock-keychain -p "" "$KEYCHAIN" + security import "$CERT_FILE" -k "$KEYCHAIN" -P "$APPLE_CERTIFICATE_PASSWORD" -T /usr/bin/codesign + security set-key-partition-list -S apple-tool:,apple: -s -k "" "$KEYCHAIN" + rm "$CERT_FILE" + + - name: Install dependencies + run: bun install + + # macOS: build native CoreAudio modules + - name: Build native modules (macOS) + if: matrix.platform == 'darwin' + working-directory: apps/desktop + run: bun run build:native + + - name: Build desktop app + working-directory: apps/desktop + run: bun run build + + - name: Package with Electron Forge + working-directory: apps/desktop + env: + APPLE_IDENTITY: ${{ secrets.APPLE_IDENTITY }} + APPLE_ID: ${{ secrets.APPLE_ID }} + APPLE_PASSWORD: ${{ secrets.APPLE_PASSWORD }} + APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }} + run: bun run forge -- make ${{ matrix.make_targets }} + + # macOS: patch Info.plist for media permissions + - name: Patch macOS bundle + if: matrix.platform == 'darwin' + working-directory: apps/desktop + run: bash scripts/patch-macos.sh + + - name: Upload artifacts + uses: actions/upload-artifact@v4 + with: + name: desktop-${{ matrix.platform }}-${{ matrix.arch }} + path: | + apps/desktop/out/make/**/*.dmg + apps/desktop/out/make/**/*.zip + apps/desktop/out/make/**/*.deb + apps/desktop/out/make/**/*.rpm + if-no-files-found: error + + release: + needs: build-desktop + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Determine version + id: version + run: | + if [ -n "${{ inputs.version }}" ]; then + echo "tag=v${{ inputs.version }}" >> "$GITHUB_OUTPUT" + echo "name=Desktop v${{ inputs.version }}" >> "$GITHUB_OUTPUT" + else + VERSION=$(jq -r .version apps/desktop/package.json) + echo "tag=desktop-v${VERSION}" >> "$GITHUB_OUTPUT" + echo "name=Desktop v${VERSION}" >> "$GITHUB_OUTPUT" + fi + + - name: Download all artifacts + uses: actions/download-artifact@v4 + with: + path: artifacts + merge-multiple: false + + - name: List artifacts + run: find artifacts -type f | head -50 + + - name: Create GitHub Release + uses: softprops/action-gh-release@v2 + with: + tag_name: ${{ steps.version.outputs.tag }} + name: ${{ steps.version.outputs.name }} + draft: true + files: | + artifacts/**/*.dmg + artifacts/**/*.zip + artifacts/**/*.deb + artifacts/**/*.rpm + body: | + ## Desktop Client + + ### Downloads + | Platform | File | + |----------|------| + | macOS (Apple Silicon) | `.dmg` or `.zip` | + | Windows | `.zip` | + | Linux (Debian/Ubuntu) | `.deb` | + | Linux (Fedora/RHEL) | `.rpm` | + + ### Notes + (TODO) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..cfe5852 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,106 @@ +name: Manual Release + +on: + workflow_dispatch: + inputs: + bump: + description: "Version bump" + required: true + type: choice + options: + - none + - patch + - minor + - major + default: "none" + +permissions: + contents: write + packages: write + +jobs: + build-and-publish: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Install Bun + uses: oven-sh/setup-bun@v1 + with: + bun-version: 1.3.5 + + - name: Install dependencies + run: bun install + + - name: Build app + run: | + cd apps/server + bun run build --bump ${{ inputs.bump }} + + - name: Get new version + id: get_version + run: echo "version=$(jq -r .version package.json)" >> "$GITHUB_OUTPUT" + + - name: Identify user + run: | + git config user.name "github-actions[bot]" + git config user.email "github-actions[bot]@users.noreply.github.com" + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: Log in to GHCR + uses: docker/login-action@v3 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Build and push Docker image + uses: docker/build-push-action@v5 + with: + context: . + platforms: linux/amd64 + push: true + tags: | + ghcr.io/${{ github.repository }}:latest + ghcr.io/${{ github.repository }}:v${{ steps.get_version.outputs.version }} + labels: | + org.opencontainers.image.title=Pulse + org.opencontainers.image.description=Pulse Server + org.opencontainers.image.version=${{ steps.get_version.outputs.version }} + org.opencontainers.image.source=${{ github.server_url }}/${{ github.repository }} + + - name: Create GitHub release + uses: softprops/action-gh-release@v2 + with: + tag_name: v${{ steps.get_version.outputs.version }} + name: v${{ steps.get_version.outputs.version }} + draft: true + files: | + apps/server/build/out/pulse-linux-x64 + apps/server/build/out/pulse-linux-arm64 + apps/server/build/out/pulse-windows-x64.exe + apps/server/build/out/pulse-macos-x64 + apps/server/build/out/pulse-macos-arm64 + apps/server/build/out/release.json + body: | + ## Changes + (TODO) + + ## Docker Image + ```bash + docker pull ghcr.io/${{ github.repository }}:v${{ steps.get_version.outputs.version }} + ``` + - name: Commit and push version bump + if: ${{ inputs.bump != 'none' }} + run: | + git add . + git commit -m "chore: bump version to ${{ steps.get_version.outputs.version }}" + git push + + - name: Create Git tag + run: | + git tag -a "v${{ steps.get_version.outputs.version }}" -m "Release v${{ steps.get_version.outputs.version }}" + git push origin "v${{ steps.get_version.outputs.version }}" diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..76c61c1 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,81 @@ +name: Tests + +on: + push: + pull_request: + +permissions: + contents: read + +jobs: + lint: + name: Lint & Type Check + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Setup Bun + uses: oven-sh/setup-bun@v1 + with: + bun-version: latest + + - name: Install dependencies + run: bun install + + - name: Check types + run: bun run check-types + + - name: Lint + run: bun run lint + + test: + name: Run Tests + runs-on: ubuntu-latest + + services: + postgres: + image: postgres:16 + env: + POSTGRES_USER: pulse_test + POSTGRES_PASSWORD: pulse_test + POSTGRES_DB: pulse_test + ports: + - 5432:5432 + options: >- + --health-cmd "pg_isready -U pulse_test" + --health-interval 10s + --health-timeout 5s + --health-retries 5 + + env: + DATABASE_URL: postgresql://pulse_test:pulse_test@localhost:5432/pulse_test + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Setup Bun + uses: oven-sh/setup-bun@v1 + with: + bun-version: latest + + - name: Install dependencies + run: bun install + + - name: Wait for PostgreSQL + run: | + for i in $(seq 1 30); do + pg_isready -h localhost -p 5432 -U pulse_test && break + echo "Waiting for postgres ($i/30)..." + sleep 2 + done + + - name: Generate Drizzle migrations + working-directory: apps/server + run: bun run db:gen + + - name: Run server tests + working-directory: apps/server + run: bun test diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6dc1670 --- /dev/null +++ b/.gitignore @@ -0,0 +1,17 @@ +/node_modules +/.github/copilot-instructions.md +/cenas.txt +/cenas.md +/DockerCenas +/experiments +.env +bun.lock +apps/desktop/dist/ +apps/desktop/out/ +apps/desktop/node_modules +apps/server/node_modules +apps/client/node_modules +.DS_Store +*.tsbuildinfo +Thumbs.db +docker-compose.yml diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..7b2feb1 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,155 @@ +# Contributing to Pulse + +Thanks for contributing. This document explains how we work so your changes can land smoothly and nobody wastes time on work we can't merge. + +## Quick rules (please read) + +### 1) All PRs must target `dev` + +`dev` is our trunk branch. Open all pull requests against `dev`. PRs targeting other branches will be closed or retargeted. Periodically, `dev` is merged into `main` for stable releases. + +### 2) All PRs must include a short description + +Every PR must include a short description covering: + +- what changed +- why it changed +- anything reviewers should pay attention to + +A few bullets is fine. + +### 3) Open an issue before submitting a PR + +We strongly prefer that every PR addresses an existing issue. If one doesn't exist yet, open one describing the problem or improvement and your proposed approach. This gives maintainers a chance to weigh in on direction before you invest time, and avoids the mutual displeasure of: + +- you doing significant work, and +- us having to reject or postpone the change because it doesn't align with current goals, or because we aren't ready to maintain what it introduces + +For small, obvious fixes (typos, broken links, trivial one-liners) you can skip the issue and go straight to a PR. + +Ways to coordinate on larger work: + +- open an issue describing the problem and your proposed approach +- open a draft PR early to confirm direction +- discuss with a maintainer in any channel you already share + +If you're unsure whether something needs an issue first, it probably does. + +### 4) Understand the code you submit + +You must have sufficient understanding of every change in your PR to explain it and defend it during review. You don't need to write an essay, but you should be able to give a short summary of what the patch does and why it's correct. + +**LLM-assisted contributions.** You're welcome to use LLMs as a tool for automating mechanical work. We don't ask you to disclose this, since we assume you're acting in good faith: you're the one who signs off on the patch you submit in your own name, and you have the technical understanding to verify that it's accurate. + +That said, don't use LLMs on areas of the codebase you don't understand well enough to verify the output. If part of your change touches code you aren't confident reviewing yourself, say so in the issue you opened beforehand and defer that work to someone else. The maintainers will be happy to help. + +## Project structure + +Pulse is a monorepo managed with Bun workspaces: + +- `apps/server/` — backend (Bun, tRPC, Drizzle ORM, PostgreSQL) +- `apps/client/` — frontend (React, Vite) +- `packages/shared/` — shared types and constants + +## Workflow + +1. Fork the repo (or create a branch if you have access). +2. Create a feature branch from `dev`. +3. Make changes. +4. Open a PR into `dev` with a short description. +5. Address review feedback and CI results. +6. We squash-merge approved PRs into `dev`. + +We strongly prefer small, focused PRs that are easy to review. + +### Commit style and history + +We squash-merge PRs, so the PR title becomes the single commit message on `dev`. For that reason: + +- PR titles must follow Conventional Commits. +- Individual commits inside the PR don't need to follow Conventional Commits. + +If you like to commit in small increments, feel free. If you prefer a tidier PR history, force-pushes are welcome (for example, to squash or reorder commits before review). Just avoid rewriting history in a way that makes it hard for reviewers to follow along. + +## Conventional Commits (required for PR titles) + +Because the PR title becomes the squash commit message, we require Conventional Commits for PR titles. + +We prefer type/subject to be mostly lowercase. + +Format: + +- `type(scope optional): short description` + +Examples: + +- `fix: handle empty response from api` +- `feat(auth): add passkey login` +- `docs: clarify dev workflow` +- `refactor: simplify retry logic` +- `chore(ci): speed up checks` + +Breaking changes: + +- `feat!: remove legacy auth endpoints` +- `refactor(api)!: change pagination shape` + +Common types: +`feat`, `fix`, `docs`, `refactor`, `perf`, `test`, `chore`, `ci`, `build`, `revert` + +## Tests (guidance) + +We care about confidence more than ceremony. Add tests when they provide real value. + +Tests run in GitHub Actions CI only (they require a PostgreSQL service container). You cannot run them locally. + +### Backend changes + +For backend changes that add or modify operational features, add a unit test. + +- Test files live alongside the code they test (e.g. `src/routers/__tests__/`) +- If a unit test would require heavy mocking to be meaningful, restructure the code so it can be tested cleanly through its interfaces +- If you're unsure how to approach this, discuss it with a maintainer before investing time + +### Frontend changes + +We don't generally encourage new unit tests for frontend code unless: + +- the area already has unit tests, or +- the change is complex or sensitive, and a unit test clearly reduces risk + +Pure UI/cosmetic changes (CSS tweaks, layout adjustments) do not require unit tests. In most cases, clear PR notes and practical verification are more valuable. + +## Formatting and linting + +Don't block on formatting or linting before opening a PR. CI enforces required checks and will tell you what needs fixing before merge. + +Open the PR when it's ready for review, then iterate based on CI and feedback. + +## PR checklist + +Before requesting review: + +- [ ] PR targets `dev` +- [ ] PR title follows Conventional Commits (mostly lowercase) +- [ ] PR includes a short description of what/why +- [ ] You understand every change in the PR and can explain it during review +- [ ] Tests added or updated where it makes sense (especially backend changes) +- [ ] CI is green (or you're actively addressing failures) + +Optional but helpful: + +- screenshots or a short recording for UI changes +- manual verification steps + +## Security + +Please don't report security issues via public GitHub issues. + +Instead, use GitHub's private vulnerability reporting: + +- Go to the [Security tab](https://github.com/plsechat/pulse-chat/security) of the repository and select "Report a vulnerability" + +## License + +By contributing to Pulse, you agree that your contributions will be licensed under the [GNU Affero General Public License v3.0](./LICENSE). diff --git a/Caddyfile b/Caddyfile new file mode 100644 index 0000000..9f5936a --- /dev/null +++ b/Caddyfile @@ -0,0 +1,5 @@ +chat.serverbob.org { + encode gzip + reverse_proxy pulse:4991 + tls zax@serverbob.org +} diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..2b12cff --- /dev/null +++ b/Dockerfile @@ -0,0 +1,17 @@ +# Stage 1: Build +FROM oven/bun:1.3.5 AS builder +WORKDIR /app +COPY . . +RUN bun install +RUN cd apps/server \ + && bun run /app/docker/patch-migrations.ts ./src/db/migrations +RUN cd apps/server && bun run build/build.ts --target linux-x64 + +# Stage 2: Runtime +FROM oven/bun:1.3.5 +COPY --from=builder /app/apps/server/build/out/pulse-linux-x64 /pulse +COPY --from=builder /app/docker/pulse-entrypoint.sh /entrypoint.sh +ENV RUNNING_IN_DOCKER=true + +RUN chmod +x /pulse /entrypoint.sh +ENTRYPOINT ["/entrypoint.sh"] diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..0ad25db --- /dev/null +++ b/LICENSE @@ -0,0 +1,661 @@ + GNU AFFERO GENERAL PUBLIC LICENSE + Version 3, 19 November 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU Affero General Public License is a free, copyleft license for +software and other kinds of works, specifically designed to ensure +cooperation with the community in the case of network server software. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +our General Public Licenses are intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + Developers that use our General Public Licenses protect your rights +with two steps: (1) assert copyright on the software, and (2) offer +you this License which gives you legal permission to copy, distribute +and/or modify the software. + + A secondary benefit of defending all users' freedom is that +improvements made in alternate versions of the program, if they +receive widespread use, become available for other developers to +incorporate. Many developers of free software are heartened and +encouraged by the resulting cooperation. However, in the case of +software used on network servers, this result may fail to come about. +The GNU General Public License permits making a modified version and +letting the public access it on a server without ever releasing its +source code to the public. + + The GNU Affero General Public License is designed specifically to +ensure that, in such cases, the modified source code becomes available +to the community. It requires the operator of a network server to +provide the source code of the modified version running there to the +users of that server. Therefore, public use of a modified version, on +a publicly accessible server, gives the public access to the source +code of the modified version. + + An older license, called the Affero General Public License and +published by Affero, was designed to accomplish similar goals. This is +a different license, not a version of the Affero GPL, but Affero has +released a new version of the Affero GPL which permits relicensing under +this license. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU Affero General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Remote Network Interaction; Use with the GNU General Public License. + + Notwithstanding any other provision of this License, if you modify the +Program, your modified version must prominently offer all users +interacting with it remotely through a computer network (if your version +supports such interaction) an opportunity to receive the Corresponding +Source of your version by providing access to the Corresponding Source +from a network server at no charge, through some standard or customary +means of facilitating copying of software. This Corresponding Source +shall include the Corresponding Source for any work covered by version 3 +of the GNU General Public License that is incorporated pursuant to the +following paragraph. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the work with which it is combined will remain governed by version +3 of the GNU General Public License. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU Affero General Public License from time to time. Such new versions +will be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU Affero General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU Affero General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU Affero General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If your software can interact with users remotely through a computer +network, you should also make sure that it provides a way for users to +get its source. For example, if your program is a web application, its +interface could display a "Source" link that leads users to an archive +of the code. There are many ways you could offer source, and different +solutions will be better for different programs; see section 13 for the +specific requirements. + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU AGPL, see +. diff --git a/README-CUSTOM.md b/README-CUSTOM.md new file mode 100644 index 0000000..d66a61d --- /dev/null +++ b/README-CUSTOM.md @@ -0,0 +1,18 @@ +# Pulse Custom Voice Stack + +This repository is a sanitized snapshot of a working Pulse setup with custom microphone processing support. + +Included: +- Pulse source tree snapshot from `/opt/pulse` +- Custom install/patch scripts in `scripts/` +- DeepFilterNet/RNNoise-related client+server changes currently present in the source snapshot + +Excluded for safety/portability: +- `.env` +- runtime `data/` and `data-test/` +- original `.git` metadata from upstream clone + +## Quick start +1. Copy your `.env` into this repo root. +2. Build/run with your compose workflow. +3. Use scripts in `scripts/` for automated setup flows. diff --git a/README-SELFHOSTED-SUPABASE.md b/README-SELFHOSTED-SUPABASE.md new file mode 100644 index 0000000..481c884 --- /dev/null +++ b/README-SELFHOSTED-SUPABASE.md @@ -0,0 +1,500 @@ +# Self-Hosted Supabase Installation Guide + +This guide walks you through deploying Pulse with a fully self-hosted Supabase stack (PostgreSQL + GoTrue + Kong) using Docker Compose. No external Supabase project required. + +--- + +## Table of Contents + +1. [System Requirements](#system-requirements) +2. [Prerequisites](#prerequisites) +3. [Install Docker](#install-docker) +4. [Install Bun](#install-bun) +5. [Clone the Repository](#clone-the-repository) +6. [Generate Secrets](#generate-secrets) +7. [Configure Environment](#configure-environment) +8. [Build and Start](#build-and-start) +9. [Set Up HTTPS](#set-up-https) +10. [Firewall Configuration](#firewall-configuration) +11. [Claim Server Ownership](#claim-server-ownership) +12. [Verify Installation](#verify-installation) +13. [Updating Pulse](#updating-pulse) +14. [OAuth Setup (Optional)](#oauth-setup-optional) +15. [Federation Setup (Optional)](#federation-setup-optional) +16. [Troubleshooting](#troubleshooting) + +--- + +## System Requirements + +| Resource | Minimum | Recommended | +|----------|---------|-------------| +| CPU | 2 cores | 4 cores | +| RAM | 2 GB | 4 GB | +| Disk | 10 GB | 20 GB+ (depends on file uploads) | +| OS | Ubuntu 22.04 LTS | Ubuntu 24.04 LTS | +| Network | Public IP | Public IP + domain name | + +This deployment runs four Docker containers: PostgreSQL, GoTrue (auth), Kong (API gateway), and the Pulse application. + +--- + +## Prerequisites + +- A server with Ubuntu 22.04+ and root/sudo access +- A domain name with an A record pointing to your server's public IP (for HTTPS) +- SSH access to your server +- Git installed (`sudo apt install git` if not already present) + +--- + +## Install Docker + +```bash +# Update system packages +sudo apt update && sudo apt upgrade -y + +# Install required packages +sudo apt install -y ca-certificates curl gnupg + +# Add Docker's official GPG key +sudo install -m 0755 -d /etc/apt/keyrings +curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg +sudo chmod a+r /etc/apt/keyrings/docker.gpg + +# Add Docker repository +echo \ + "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \ + $(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \ + sudo tee /etc/apt/sources.list.d/docker.list > /dev/null + +# Install Docker Engine + Compose +sudo apt update +sudo apt install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin + +# Add your user to the docker group +sudo usermod -aG docker $USER +newgrp docker + +# Verify +docker --version +docker compose version +``` + +--- + +## Install Bun + +Bun is needed to run the key generator script: + +```bash +curl -fsSL https://bun.sh/install | bash +source ~/.bashrc +bun --version +``` + +--- + +## Clone the Repository + +```bash +sudo mkdir -p /opt/pulse +sudo chown $USER:$USER /opt/pulse +git clone https://github.com/plsechat/pulse-chat.git /opt/pulse +cd /opt/pulse +``` + +--- + +## Generate Secrets + +Generate a JWT secret and two Supabase API keys: + +```bash +cd /opt/pulse +bun docker/generate-keys.ts +``` + +Output: +``` +JWT_SECRET= +SUPABASE_ANON_KEY= +SUPABASE_SERVICE_ROLE_KEY= +``` + +**Copy all three values** for the next step. + +--- + +## Configure Environment + +```bash +cp .env.supabase.example .env +nano .env +``` + +Fill in the values: + +```env +# PostgreSQL password — strong and URL-safe (no / = + characters) +POSTGRES_PASSWORD=ChangeMeToSomethingSecure123 + +# Paste the three values from generate-keys.ts +JWT_SECRET= +SUPABASE_ANON_KEY= +SUPABASE_SERVICE_ROLE_KEY= + +# Your public domain (must match your DNS A record) +SITE_URL=https://your-domain.com +``` + +> **Important:** +> - `POSTGRES_PASSWORD` must be URL-safe. Avoid `/`, `=`, `+`, and other special characters. +> - `SITE_URL` must start with `https://` for production. +> - The `JWT_SECRET` generated by `generate-keys.ts` already meets the 32-character minimum. + +### Environment Variable Reference + +| Variable | Required | Default | Description | +|----------|----------|---------|-------------| +| `POSTGRES_PASSWORD` | Yes | — | Password for PostgreSQL | +| `JWT_SECRET` | Yes | — | Secret key for signing JWTs (min 32 chars) | +| `SUPABASE_ANON_KEY` | Yes | — | Supabase public/anonymous API key | +| `SUPABASE_SERVICE_ROLE_KEY` | Yes | — | Supabase admin service role key | +| `SITE_URL` | Yes | — | Public URL (e.g., `https://pulse.example.com`) | +| `PULSE_PORT` | No | `4991` | Host port for Pulse | +| `JWT_EXPIRY` | No | `3600` | Token expiry in seconds | +| `PUBLIC_IP` | No | auto | Public IP for WebRTC | +| `GOOGLE_OAUTH_ENABLED` | No | `false` | Enable Google login | +| `GOOGLE_OAUTH_CLIENT_ID` | No | — | Google OAuth client ID | +| `GOOGLE_OAUTH_SECRET` | No | — | Google OAuth client secret | +| `DISCORD_OAUTH_ENABLED` | No | `false` | Enable Discord login | +| `DISCORD_OAUTH_CLIENT_ID` | No | — | Discord OAuth client ID | +| `DISCORD_OAUTH_SECRET` | No | — | Discord OAuth client secret | +| `FACEBOOK_OAUTH_ENABLED` | No | `false` | Enable Facebook login | +| `FACEBOOK_OAUTH_CLIENT_ID` | No | — | Facebook OAuth client ID | +| `FACEBOOK_OAUTH_SECRET` | No | — | Facebook OAuth client secret | +| `TWITCH_OAUTH_ENABLED` | No | `false` | Enable Twitch login | +| `TWITCH_OAUTH_CLIENT_ID` | No | — | Twitch OAuth client ID | +| `TWITCH_OAUTH_SECRET` | No | — | Twitch OAuth client secret | +| `ADDITIONAL_REDIRECT_URLS` | No | — | Extra OAuth callback URLs | +| `REGISTRATION_DISABLED` | No | `false` | Block new registrations (existing users can still log in; valid invite codes bypass) | +| `GIPHY_API_KEY` | No | — | Giphy API key for GIF search | + +--- + +## Build and Start + +```bash +cd /opt/pulse +docker compose -f docker-compose-supabase.yml up -d +``` + +The first launch takes a few minutes while Docker downloads the required images. + +### Verify containers are running + +```bash +docker compose -f docker-compose-supabase.yml ps +``` + +You should see four containers, all `Up`: + +``` +NAME IMAGE STATUS +pulse-db supabase/postgres:15.6.1.143 Up (healthy) +pulse-auth supabase/gotrue:v2.170.0 Up +pulse-kong kong:3.4 Up +pulse pulse-pulse Up +``` + +### Check logs + +```bash +docker logs pulse +``` + +### Test the health endpoint + +```bash +curl http://localhost:4991/healthz +``` + +Should return `{"status":"ok","timestamp":...}`. + +--- + +## Set Up HTTPS + +Pulse does not handle TLS itself. Use a reverse proxy for HTTPS. + +### Option A: Caddy (recommended) + +```bash +sudo apt install -y debian-keyring debian-archive-keyring apt-transport-https +curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/gpg.key' | sudo gpg --dearmor -o /usr/share/keyrings/caddy-stable-archive-keyring.gpg +curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/debian.deb.txt' | sudo tee /etc/apt/sources.list.d/caddy-stable.list +sudo apt update +sudo apt install caddy +``` + +Configure `/etc/caddy/Caddyfile`: + +``` +your-domain.com { + handle /auth/v1/* { + reverse_proxy localhost:8000 + } + handle { + reverse_proxy localhost:4991 + } +} +``` + +```bash +sudo systemctl restart caddy +sudo systemctl enable caddy +``` + +Caddy automatically obtains and renews Let's Encrypt certificates. + +### Option B: Nginx + +```bash +sudo apt install nginx certbot python3-certbot-nginx +``` + +Create `/etc/nginx/sites-available/pulse`: + +```nginx +server { + server_name your-domain.com; + + location /auth/v1/ { + proxy_pass http://127.0.0.1:8000; + proxy_http_version 1.1; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + } + + location / { + proxy_pass http://127.0.0.1:4991; + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection "upgrade"; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + proxy_read_timeout 86400; + } +} +``` + +```bash +sudo ln -s /etc/nginx/sites-available/pulse /etc/nginx/sites-enabled/ +sudo rm /etc/nginx/sites-enabled/default +sudo nginx -t +sudo systemctl restart nginx +sudo certbot --nginx -d your-domain.com +``` + +--- + +## Firewall Configuration + +```bash +sudo ufw allow 22/tcp # SSH +sudo ufw allow 80/tcp # HTTP +sudo ufw allow 443/tcp # HTTPS +sudo ufw allow 40000:40020/udp # WebRTC voice/video +sudo ufw allow 40000:40020/tcp # WebRTC TCP fallback +sudo ufw enable +``` + +| Port | Protocol | Purpose | +|------|----------|---------| +| 22 | TCP | SSH access | +| 80 | TCP | HTTP (redirects to HTTPS) | +| 443 | TCP | HTTPS (web + WebSocket) | +| 4991 | TCP | Pulse (only if no reverse proxy) | +| 40000-40020 | UDP + TCP | WebRTC media (voice/video/screen share) | + +> **Note:** Docker manipulates iptables directly and can bypass ufw rules. Ports mapped in `docker-compose-supabase.yml` may be publicly accessible even if ufw doesn't allow them. The compose file binds Kong (port 8000) to `127.0.0.1` so it is only accessible from the reverse proxy — do not change this to `0.0.0.0`. + +--- + +## Claim Server Ownership + +1. Open `https://your-domain.com` in your browser +2. Register a new account +3. Find the ownership token in the server logs: + +```bash +docker logs pulse 2>&1 | grep -i token +``` + +4. In the Pulse web interface, open browser DevTools (F12) +5. Go to the Console tab and run: `useToken('your_token_here')` +6. Your account is now the server owner + +> The ownership token is printed once on first start. Save it somewhere secure. + +--- + +## Verify Installation + +- [ ] `https://your-domain.com` loads the login page +- [ ] You can register and log in +- [ ] You claimed ownership with the token +- [ ] Text channels work (send/receive messages) +- [ ] File uploads work +- [ ] Voice channels work (join, speak, hear others) +- [ ] `docker compose -f docker-compose-supabase.yml ps` shows all 4 containers healthy + +--- + +## Updating Pulse + +```bash +cd /opt/pulse +docker compose -f docker-compose-supabase.yml pull +docker compose -f docker-compose-supabase.yml up -d +``` + +This pulls the latest published image and restarts the containers. Database migrations are handled automatically on startup. + +--- + +## OAuth Setup (Optional) + +Pulse supports OAuth login via Google, Discord, Facebook, and Twitch through GoTrue. All OAuth configuration is done through your `.env` file — do not edit `docker-compose-supabase.yml` directly. + +### Google OAuth + +1. Go to [Google Cloud Console](https://console.cloud.google.com/) +2. Create a project and go to **APIs & Services > Credentials** +3. Create an **OAuth 2.0 Client ID** (Web application) +4. Set the authorized redirect URI to: `https://your-domain.com/auth/v1/callback` +5. Add to your `.env`: + +```env +GOOGLE_OAUTH_ENABLED=true +GOOGLE_OAUTH_CLIENT_ID=your-client-id +GOOGLE_OAUTH_SECRET=your-client-secret +``` + +6. Restart: `docker compose -f docker-compose-supabase.yml up -d` + +### Discord OAuth + +1. Go to [Discord Developer Portal](https://discord.com/developers/applications) +2. Create an application, go to **OAuth2**, add redirect: `https://your-domain.com/auth/v1/callback` +3. Add to your `.env`: + +```env +DISCORD_OAUTH_ENABLED=true +DISCORD_OAUTH_CLIENT_ID=your-client-id +DISCORD_OAUTH_SECRET=your-client-secret +``` + +4. Restart: `docker compose -f docker-compose-supabase.yml up -d` + +The same pattern applies for Facebook and Twitch — replace `DISCORD` with `FACEBOOK` or `TWITCH` in the variable names. + +--- + +## Federation Setup (Optional) + +Federation lets multiple Pulse instances connect so users can discover and join servers across instances. + +1. Edit the config file: + +```bash +nano data/pulse/config.ini +``` + +2. Add or modify: + +```ini +[federation] +enabled=true +domain=your-domain.com +``` + +3. Restart: + +```bash +docker compose -f docker-compose-supabase.yml restart pulse +``` + +### Connect Two Instances + +On Instance A: Go to **Server Settings > Federation** > **Generate Keys** > **Add Instance** (enter Instance B's domain). + +On Instance B: **Server Settings > Federation** > **Generate Keys** > Accept Instance A's request. + +--- + +## Troubleshooting + +### Containers won't start + +```bash +docker logs pulse-db +docker logs pulse-auth +docker logs pulse-kong +docker logs pulse +``` + +Common issues: +- **pulse-db**: `POSTGRES_PASSWORD` contains special characters. Use only alphanumeric characters. +- **pulse-auth**: Database connection failed. Check `db` container is healthy: `docker compose -f docker-compose-supabase.yml ps` +- **pulse-kong**: Config error. Verify `docker/kong-supabase.yml` is valid YAML. + +### GoTrue auth fails + +```bash +docker exec pulse curl -s http://kong:8000/auth/v1/health +``` + +The `supabase_auth_admin` password is synced automatically on every container start via `docker/db-entrypoint.sh`. If you change `POSTGRES_PASSWORD` in your `.env`, just restart: + +```bash +docker compose -f docker-compose-supabase.yml up -d +``` + +The DB container will re-sync the password automatically. + +### WebRTC voice/video not working + +1. Check UDP ports are open: `sudo ufw status | grep 40000` +2. Check Docker port mapping: `docker port pulse` +3. If behind NAT, forward ports 40000-40020/UDP from your router +4. Check public IP detection: `docker logs pulse 2>&1 | grep -i "public ip"` + +### Database issues + +```bash +docker exec -it pulse-db psql -U postgres +\dt +SELECT pg_size_pretty(pg_database_size('postgres')); +``` + +### Reset everything + +```bash +cd /opt/pulse +docker compose -f docker-compose-supabase.yml down -v +rm -rf data/ +docker compose -f docker-compose-supabase.yml up -d +``` + +### View real-time logs + +```bash +docker compose -f docker-compose-supabase.yml logs -f +docker compose -f docker-compose-supabase.yml logs -f pulse +``` diff --git a/README.md b/README.md new file mode 100644 index 0000000..93852f8 --- /dev/null +++ b/README.md @@ -0,0 +1,110 @@ +

+ Pulse Chat +

+ +

Pulse Chat

+ +

+ A self-hosted chat platform built for privacy, voice, and connecting communities. +
+ plse.chat · + Self-Hosting Guide · + Releases +

+ +

+ License + Last Commit +

+ + + +--- + +> [!NOTE] +> Pulse Chat is in alpha (v0.1.3). Expect bugs and breaking changes between updates. + +## Why Pulse? + +Pulse is a self-hosted alternative to Discord and Slack that puts you in control. Every message can be end-to-end encrypted, voice and video stay on your infrastructure, and federation lets separate instances talk to each other — no central service required. + +## What's included + +| | | +|---|---| +| **Encrypted messaging** | Signal Protocol (X3DH + Double Ratchet) for DMs and channels | +| **Voice & video** | WebRTC-powered calls with screen sharing via Mediasoup | +| **Federation** | Link multiple Pulse instances so users can discover and join across servers | +| **Forum channels** | Threaded discussions with tags for long-form topics | +| **Channels & DMs** | Real-time text with file uploads, reactions, threads, and mentions | +| **Roles & permissions** | Granular access control at the server, channel, and user level | +| **Custom emojis** | Upload and manage emojis per server | +| **Automod** | Keyword filters, regex rules, mention limits, and link blocking | +| **Webhooks** | Push events to external services | +| **OAuth login** | Google, Discord, Facebook, Twitch — toggle each on or off | +| **Invite-only mode** | Lock down registration so only invited users can join | + +## Getting started + +Pulse needs a Supabase backend (auth + database). You can use [Supabase Cloud](https://supabase.com) or self-host everything together — see the [Self-Hosted Guide](README-SELFHOSTED-SUPABASE.md) for the full Docker Compose setup with PostgreSQL, GoTrue, and Kong. + +### Docker + +```bash +docker run \ + -p 4991:4991/tcp \ + -p 40000-40020:40000-40020/tcp \ + -p 40000-40020:40000-40020/udp \ + -v ./data:/root/.config/pulse \ + --name pulse \ + ghcr.io/plsechat/pulse-chat:latest +``` + +For production with Supabase bundled, use [docker-compose-supabase.yml](docker-compose-supabase.yml) from the [Self-Hosted Guide](README-SELFHOSTED-SUPABASE.md). + +### Linux binary + +```bash +curl -L https://github.com/plsechat/pulse-chat/releases/latest/download/pulse-linux-x64 -o pulse +chmod +x pulse +./pulse +``` + +### After first launch + +1. Open `http://localhost:4991` +2. A **security token** prints to the server console on first run — save it +3. Register and log in +4. Claim ownership: open the browser console and run `useToken('your_token_here')` + +## Configuration + +A config file is generated at `~/.config/pulse/config.ini` on first run. + +| Section | Key | Default | What it does | +|---|---|---|---| +| server | `port` | `4991` | HTTP / WebSocket port | +| server | `debug` | `false` | Verbose logging | +| server | `autoupdate` | `false` | Auto-check for updates | +| http | `maxFiles` | `40` | Max files per upload | +| http | `maxFileSize` | `100` | Max file size (MB) | +| mediasoup | `worker.rtcMinPort` | `40000` | WebRTC port range start | +| mediasoup | `worker.rtcMaxPort` | `40020` | WebRTC port range end | +| mediasoup | `video.initialAvailableOutgoingBitrate` | `6000000` | Bandwidth per stream (bps) | +| federation | `enabled` | `false` | Turn on federation | +| federation | `domain` | — | Your public domain (required for federation) | + +> [!IMPORTANT] +> The port range `rtcMinPort`–`rtcMaxPort` controls how many concurrent voice/video connections are possible. Each connection uses one UDP port. Open these ports (TCP + UDP) in your firewall, and map the range in Docker if applicable. + +## HTTPS + +Pulse doesn't terminate TLS. Put a reverse proxy in front — Caddy, Nginx, or Traefik all work. The [Self-Hosted Guide](README-SELFHOSTED-SUPABASE.md#set-up-https) has example configs for Caddy and Nginx. + +## Built with + +[Bun](https://bun.sh) · [React](https://react.dev) · [tRPC](https://trpc.io) · [Drizzle ORM](https://orm.drizzle.team) · [Mediasoup](https://mediasoup.org) · [Tailwind CSS](https://tailwindcss.com) · [Supabase](https://supabase.com) · [Signal Protocol](https://signal.org/docs/) + +## License + +[AGPL-3.0](LICENSE) diff --git a/apps/client/.gitignore b/apps/client/.gitignore new file mode 100644 index 0000000..a547bf3 --- /dev/null +++ b/apps/client/.gitignore @@ -0,0 +1,24 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/apps/client/.prettierrc.json b/apps/client/.prettierrc.json new file mode 100644 index 0000000..7981412 --- /dev/null +++ b/apps/client/.prettierrc.json @@ -0,0 +1,11 @@ +{ + "singleQuote": true, + "printWidth": 80, + "proseWrap": "always", + "tabWidth": 2, + "useTabs": false, + "trailingComma": "none", + "bracketSpacing": true, + "semi": true, + "plugins": ["prettier-plugin-organize-imports"] +} diff --git a/apps/client/components.json b/apps/client/components.json new file mode 100644 index 0000000..bde9f61 --- /dev/null +++ b/apps/client/components.json @@ -0,0 +1,24 @@ +{ + "$schema": "https://ui.shadcn.com/schema.json", + "style": "new-york", + "rsc": false, + "tsx": true, + "tailwind": { + "config": "", + "css": "src/index.css", + "baseColor": "neutral", + "cssVariables": true, + "prefix": "" + }, + "iconLibrary": "lucide", + "aliases": { + "components": "@/components", + "utils": "@/lib/utils", + "ui": "@/components/ui", + "lib": "@/lib", + "hooks": "@/hooks" + }, + "registries": { + "@shadcn-editor": "https://shadcn-editor.vercel.app/r/{name}.json" + } +} diff --git a/apps/client/eslint.config.js b/apps/client/eslint.config.js new file mode 100644 index 0000000..d61eb90 --- /dev/null +++ b/apps/client/eslint.config.js @@ -0,0 +1,43 @@ +import js from '@eslint/js'; +import reactHooks from 'eslint-plugin-react-hooks'; +import reactRefresh from 'eslint-plugin-react-refresh'; +import reactYouMightNotNeedAnEffect from 'eslint-plugin-react-you-might-not-need-an-effect'; +import unusedImports from 'eslint-plugin-unused-imports'; +import { defineConfig, globalIgnores } from 'eslint/config'; +import globals from 'globals'; +import tseslint from 'typescript-eslint'; + +export default defineConfig([ + globalIgnores(['dist']), + { + files: ['**/*.{ts,tsx}'], + extends: [js.configs.recommended, ...tseslint.configs.recommended], + languageOptions: { + ecmaVersion: 2020, + globals: globals.browser + }, + plugins: { + 'react-hooks': reactHooks, + 'react-refresh': reactRefresh, + 'unused-imports': unusedImports, + 'react-you-might-not-need-an-effect': reactYouMightNotNeedAnEffect + }, + rules: { + ...reactHooks.configs.recommended.rules, + ...reactRefresh.configs.recommended.rules, + 'no-unused-vars': 'off', + '@typescript-eslint/no-unused-vars': 'off', + 'unused-imports/no-unused-imports': 'error', + 'unused-imports/no-unused-vars': [ + 'warn', + { + vars: 'all', + varsIgnorePattern: '^_', + args: 'after-used', + argsIgnorePattern: '^_' + } + ], + 'react-refresh/only-export-components': 'warn' + } + } +]); diff --git a/apps/client/index.html b/apps/client/index.html new file mode 100644 index 0000000..d8a0ed0 --- /dev/null +++ b/apps/client/index.html @@ -0,0 +1,18 @@ + + + + + + + + + + Pulse + + +
+
+
+ + + diff --git a/apps/client/package.json b/apps/client/package.json new file mode 100644 index 0000000..c9ec3ff --- /dev/null +++ b/apps/client/package.json @@ -0,0 +1,101 @@ +{ + "name": "client", + "private": true, + "version": "0.1.7", + "type": "module", + "scripts": { + "dev": "vite", + "build": "vite build", + "lint": "eslint ./src --ext ts,tsx", + "lint:fix": "eslint ./src --ext ts,tsx --report-unused-disable-directives --fix", + "check-types": "tsc --noEmit --project tsconfig.app.json", + "format": "prettier --write \"**/*.ts*\" --config ./.prettierrc.json", + "magic": "bun --bun run lint:fix && bun --bun run format && bun --bun run check-types" + }, + "dependencies": { + "@dnd-kit/core": "^6.3.1", + "@dnd-kit/sortable": "^10.0.0", + "@dnd-kit/utilities": "^3.2.2", + "@emoji-mart/data": "^1.2.1", + "@emoji-mart/react": "^1.1.1", + "@floating-ui/dom": "^1.7.4", + "@privacyresearch/libsignal-protocol-typescript": "^0.0.16", + "@pulse/shared": "workspace:*", + "@radix-ui/react-alert-dialog": "^1.1.15", + "@radix-ui/react-avatar": "^1.1.10", + "@radix-ui/react-context-menu": "^2.2.16", + "@radix-ui/react-dialog": "^1.1.15", + "@radix-ui/react-dropdown-menu": "^2.1.16", + "@radix-ui/react-label": "^2.1.7", + "@radix-ui/react-popover": "^1.1.15", + "@radix-ui/react-select": "^2.2.6", + "@radix-ui/react-separator": "^1.1.8", + "@radix-ui/react-slider": "^1.3.6", + "@radix-ui/react-slot": "^1.2.4", + "@radix-ui/react-switch": "^1.2.6", + "@radix-ui/react-tabs": "^1.1.13", + "@radix-ui/react-tooltip": "^1.2.8", + "@reduxjs/toolkit": "^2.9.0", + "@supabase/supabase-js": "^2.49.1", + "@tailwindcss/vite": "^4.1.13", + "@tiptap/core": "^3.7.2", + "@tiptap/extension-emoji": "^3.7.2", + "@tiptap/extension-placeholder": "^3.20.0", + "@tiptap/pm": "^3.7.2", + "@tiptap/react": "^3.7.2", + "@tiptap/starter-kit": "^3.7.2", + "@tiptap/suggestion": "^3.7.2", + "@trpc/client": "^11.6.0", + "@types/lodash-es": "^4.17.12", + "class-variance-authority": "^0.7.1", + "clsx": "^2.1.1", + "cmdk": "^1.0.0", + "date-fns": "^4.1.0", + "dompurify": "^3.2.4", + "emoji-mart": "^5.6.0", + "eslint-plugin-react-you-might-not-need-an-effect": "^0.7.0", + "filesize": "^11.0.13", + "highlight.js": "^11.11.1", + "html-react-parser": "^5.2.6", + "idb": "^8.0.3", + "lodash-es": "^4.17.21", + "lucide-react": "^0.544.0", + "mediasoup-client": "^3.18.0", + "next-themes": "^0.4.6", + "prosemirror-view": "^1.38.1", + "re-reselect": "^5.1.0", + "react": "^19.1.1", + "react-colorful": "^5.6.1", + "react-day-picker": "^9.11.1", + "react-dom": "^19.1.1", + "react-lite-youtube-embed": "^2.5.6", + "react-redux": "^9.2.0", + "react-resizable-panels": "^4.6.5", + "react-tweet": "^3.2.2", + "react-virtuoso": "^4.18.1", + "sonner": "^2.0.7", + "tailwind-merge": "^3.3.1", + "tailwindcss": "^4.1.13", + "@timephy/rnnoise-wasm": "^1.0.0", + "deepfilternet3-noise-filter": "^1.2.1" + }, + "devDependencies": { + "@eslint/js": "^9.36.0", + "@types/dompurify": "^3.2.0", + "@types/node": "^24.5.2", + "@types/react": "^19.1.13", + "@types/react-dom": "^19.1.9", + "@vitejs/plugin-react-swc": "^4.1.0", + "eslint": "^9.36.0", + "eslint-plugin-react-hooks": "^5.2.0", + "eslint-plugin-react-refresh": "^0.4.20", + "eslint-plugin-unused-imports": "^4.1.4", + "globals": "^16.4.0", + "tw-animate-css": "^1.4.0", + "typescript": "~5.8.3", + "typescript-eslint": "^8.44.0", + "vite": "^7.1.7", + "prettier": "^3.4.2", + "prettier-plugin-organize-imports": "^4.0.0" + } +} diff --git a/apps/client/public/favicon.ico b/apps/client/public/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..ee66fab1c9767bc41017d8b1d44dce07466ac873 GIT binary patch literal 8170 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 CpL}ir literal 0 HcmV?d00001 diff --git a/apps/client/public/logo.png b/apps/client/public/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..3524f506ba9a8601907c908f07c94070c6df6129 GIT binary patch literal 218678 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 E0H?LRfB*mh literal 0 HcmV?d00001 diff --git a/apps/client/public/logo.webp b/apps/client/public/logo.webp new file mode 100644 index 0000000000000000000000000000000000000000..ea02b4af627daff00e8d9787039beca8b03606ed GIT binary patch literal 23160 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 literal 0 HcmV?d00001 diff --git a/apps/client/src/components/channel-view/forum/create-forum-post-dialog.tsx b/apps/client/src/components/channel-view/forum/create-forum-post-dialog.tsx new file mode 100644 index 0000000..4efe468 --- /dev/null +++ b/apps/client/src/components/channel-view/forum/create-forum-post-dialog.tsx @@ -0,0 +1,291 @@ +import { Button } from '@/components/ui/button'; +import { getTRPCClient } from '@/lib/trpc'; +import { setActiveThreadId } from '@/features/server/channels/actions'; +import { uploadFiles } from '@/helpers/upload-file'; +import { Image, Plus, X } from 'lucide-react'; +import { memo, useCallback, useEffect, useRef, useState } from 'react'; +import { toast } from 'sonner'; + +type TCreateForumPostDialogProps = { + channelId: number; + onClose: () => void; +}; + +type TTag = { + id: number; + name: string; + color: string; +}; + +type TUploadedFile = { + tempId: string; + originalName: string; + previewUrl: string | null; + isImage: boolean; +}; + +const IMAGE_EXTENSIONS = new Set([ + 'jpg', + 'jpeg', + 'png', + 'gif', + 'webp', + 'svg', + 'bmp', + 'ico' +]); + +const CreateForumPostDialog = memo( + ({ channelId, onClose }: TCreateForumPostDialogProps) => { + const [title, setTitle] = useState(''); + const [content, setContent] = useState(''); + const [tags, setTags] = useState([]); + const [selectedTagIds, setSelectedTagIds] = useState([]); + const [submitting, setSubmitting] = useState(false); + const [uploadedFiles, setUploadedFiles] = useState([]); + const [uploading, setUploading] = useState(false); + const fileInputRef = useRef(null); + + useEffect(() => { + const fetchTags = async () => { + const trpc = getTRPCClient(); + + try { + const result = await trpc.threads.getForumTags.query({ channelId }); + setTags(result); + } catch { + // ignore + } + }; + + fetchTags(); + }, [channelId]); + + const toggleTag = useCallback((tagId: number) => { + setSelectedTagIds((prev) => + prev.includes(tagId) + ? prev.filter((id) => id !== tagId) + : [...prev, tagId] + ); + }, []); + + const onFileInputChange = useCallback( + async (e: React.ChangeEvent) => { + const selectedFiles = Array.from(e.target.files ?? []); + if (selectedFiles.length === 0) return; + + setUploading(true); + + try { + const uploaded = await uploadFiles(selectedFiles); + const newFiles: TUploadedFile[] = uploaded.map((tempFile, i) => { + const isImage = IMAGE_EXTENSIONS.has( + tempFile.extension.toLowerCase() + ); + const originalFile = selectedFiles[i]; + const previewUrl = + isImage && originalFile + ? URL.createObjectURL(originalFile) + : null; + + return { + tempId: tempFile.id, + originalName: tempFile.originalName, + previewUrl, + isImage + }; + }); + setUploadedFiles((prev) => [...prev, ...newFiles]); + } catch { + toast.error('Failed to upload file'); + } finally { + setUploading(false); + e.target.value = ''; + } + }, + [] + ); + + const removeFile = useCallback((id: string) => { + setUploadedFiles((prev) => { + const file = prev.find((f) => f.tempId === id); + if (file?.previewUrl) URL.revokeObjectURL(file.previewUrl); + return prev.filter((f) => f.tempId !== id); + }); + }, []); + + const onSubmit = useCallback(async () => { + if (!title.trim() || !content.trim() || submitting) return; + + setSubmitting(true); + + const trpc = getTRPCClient(); + + try { + const result = await trpc.threads.createForumPost.mutate({ + channelId, + title: title.trim(), + content: content.trim(), + tagIds: selectedTagIds.length > 0 ? selectedTagIds : undefined, + files: + uploadedFiles.length > 0 + ? uploadedFiles.map((f) => f.tempId) + : undefined + }); + + setActiveThreadId(result.threadId); + toast.success('Post created'); + onClose(); + } catch { + toast.error('Failed to create post'); + } finally { + setSubmitting(false); + } + }, [ + title, + content, + channelId, + selectedTagIds, + uploadedFiles, + submitting, + onClose + ]); + + return ( +
+
+
+

New Post

+ +
+ +
+
+ setTitle(e.target.value)} + placeholder="Post title" + className="w-full px-3 py-2 text-sm bg-muted/30 border border-border/50 rounded-md focus:outline-none focus:ring-1 focus:ring-primary/30" + maxLength={200} + autoFocus + /> +
+ +
+