2019-11-29 06:59:40 -05:00
|
|
|
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
|
|
|
// See LICENSE.txt for license information.
|
2016-07-12 09:36:27 -04:00
|
|
|
|
|
|
|
|
package model
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"encoding/json"
|
|
|
|
|
"io"
|
2024-04-04 07:44:03 -04:00
|
|
|
"maps"
|
2023-03-13 13:02:12 -04:00
|
|
|
"strconv"
|
2016-07-12 09:36:27 -04:00
|
|
|
)
|
|
|
|
|
|
2023-11-22 05:09:48 -05:00
|
|
|
type WebsocketEventType string
|
|
|
|
|
|
2016-07-12 09:36:27 -04:00
|
|
|
const (
|
2023-11-22 05:09:48 -05:00
|
|
|
WebsocketEventTyping WebsocketEventType = "typing"
|
|
|
|
|
WebsocketEventPosted WebsocketEventType = "posted"
|
|
|
|
|
WebsocketEventPostEdited WebsocketEventType = "post_edited"
|
|
|
|
|
WebsocketEventPostDeleted WebsocketEventType = "post_deleted"
|
|
|
|
|
WebsocketEventPostUnread WebsocketEventType = "post_unread"
|
|
|
|
|
WebsocketEventChannelConverted WebsocketEventType = "channel_converted"
|
|
|
|
|
WebsocketEventChannelCreated WebsocketEventType = "channel_created"
|
|
|
|
|
WebsocketEventChannelDeleted WebsocketEventType = "channel_deleted"
|
|
|
|
|
WebsocketEventChannelRestored WebsocketEventType = "channel_restored"
|
|
|
|
|
WebsocketEventChannelUpdated WebsocketEventType = "channel_updated"
|
|
|
|
|
WebsocketEventChannelMemberUpdated WebsocketEventType = "channel_member_updated"
|
|
|
|
|
WebsocketEventChannelSchemeUpdated WebsocketEventType = "channel_scheme_updated"
|
|
|
|
|
WebsocketEventDirectAdded WebsocketEventType = "direct_added"
|
|
|
|
|
WebsocketEventGroupAdded WebsocketEventType = "group_added"
|
|
|
|
|
WebsocketEventNewUser WebsocketEventType = "new_user"
|
|
|
|
|
WebsocketEventAddedToTeam WebsocketEventType = "added_to_team"
|
|
|
|
|
WebsocketEventLeaveTeam WebsocketEventType = "leave_team"
|
|
|
|
|
WebsocketEventUpdateTeam WebsocketEventType = "update_team"
|
|
|
|
|
WebsocketEventDeleteTeam WebsocketEventType = "delete_team"
|
|
|
|
|
WebsocketEventRestoreTeam WebsocketEventType = "restore_team"
|
|
|
|
|
WebsocketEventUpdateTeamScheme WebsocketEventType = "update_team_scheme"
|
|
|
|
|
WebsocketEventUserAdded WebsocketEventType = "user_added"
|
|
|
|
|
WebsocketEventUserUpdated WebsocketEventType = "user_updated"
|
|
|
|
|
WebsocketEventUserRoleUpdated WebsocketEventType = "user_role_updated"
|
|
|
|
|
WebsocketEventMemberroleUpdated WebsocketEventType = "memberrole_updated"
|
|
|
|
|
WebsocketEventUserRemoved WebsocketEventType = "user_removed"
|
|
|
|
|
WebsocketEventPreferenceChanged WebsocketEventType = "preference_changed"
|
|
|
|
|
WebsocketEventPreferencesChanged WebsocketEventType = "preferences_changed"
|
|
|
|
|
WebsocketEventPreferencesDeleted WebsocketEventType = "preferences_deleted"
|
|
|
|
|
WebsocketEventEphemeralMessage WebsocketEventType = "ephemeral_message"
|
|
|
|
|
WebsocketEventStatusChange WebsocketEventType = "status_change"
|
|
|
|
|
WebsocketEventHello WebsocketEventType = "hello"
|
|
|
|
|
WebsocketAuthenticationChallenge WebsocketEventType = "authentication_challenge"
|
|
|
|
|
WebsocketEventReactionAdded WebsocketEventType = "reaction_added"
|
|
|
|
|
WebsocketEventReactionRemoved WebsocketEventType = "reaction_removed"
|
|
|
|
|
WebsocketEventResponse WebsocketEventType = "response"
|
|
|
|
|
WebsocketEventEmojiAdded WebsocketEventType = "emoji_added"
|
|
|
|
|
WebsocketEventMultipleChannelsViewed WebsocketEventType = "multiple_channels_viewed"
|
|
|
|
|
WebsocketEventPluginStatusesChanged WebsocketEventType = "plugin_statuses_changed"
|
|
|
|
|
WebsocketEventPluginEnabled WebsocketEventType = "plugin_enabled"
|
|
|
|
|
WebsocketEventPluginDisabled WebsocketEventType = "plugin_disabled"
|
|
|
|
|
WebsocketEventRoleUpdated WebsocketEventType = "role_updated"
|
|
|
|
|
WebsocketEventLicenseChanged WebsocketEventType = "license_changed"
|
|
|
|
|
WebsocketEventConfigChanged WebsocketEventType = "config_changed"
|
|
|
|
|
WebsocketEventOpenDialog WebsocketEventType = "open_dialog"
|
|
|
|
|
WebsocketEventGuestsDeactivated WebsocketEventType = "guests_deactivated"
|
|
|
|
|
WebsocketEventUserActivationStatusChange WebsocketEventType = "user_activation_status_change"
|
|
|
|
|
WebsocketEventReceivedGroup WebsocketEventType = "received_group"
|
|
|
|
|
WebsocketEventReceivedGroupAssociatedToTeam WebsocketEventType = "received_group_associated_to_team"
|
|
|
|
|
WebsocketEventReceivedGroupNotAssociatedToTeam WebsocketEventType = "received_group_not_associated_to_team"
|
|
|
|
|
WebsocketEventReceivedGroupAssociatedToChannel WebsocketEventType = "received_group_associated_to_channel"
|
|
|
|
|
WebsocketEventReceivedGroupNotAssociatedToChannel WebsocketEventType = "received_group_not_associated_to_channel"
|
|
|
|
|
WebsocketEventGroupMemberDelete WebsocketEventType = "group_member_deleted"
|
|
|
|
|
WebsocketEventGroupMemberAdd WebsocketEventType = "group_member_add"
|
|
|
|
|
WebsocketEventSidebarCategoryCreated WebsocketEventType = "sidebar_category_created"
|
|
|
|
|
WebsocketEventSidebarCategoryUpdated WebsocketEventType = "sidebar_category_updated"
|
|
|
|
|
WebsocketEventSidebarCategoryDeleted WebsocketEventType = "sidebar_category_deleted"
|
|
|
|
|
WebsocketEventSidebarCategoryOrderUpdated WebsocketEventType = "sidebar_category_order_updated"
|
|
|
|
|
WebsocketEventCloudSubscriptionChanged WebsocketEventType = "cloud_subscription_changed"
|
|
|
|
|
WebsocketEventThreadUpdated WebsocketEventType = "thread_updated"
|
|
|
|
|
WebsocketEventThreadFollowChanged WebsocketEventType = "thread_follow_changed"
|
|
|
|
|
WebsocketEventThreadReadChanged WebsocketEventType = "thread_read_changed"
|
|
|
|
|
WebsocketFirstAdminVisitMarketplaceStatusReceived WebsocketEventType = "first_admin_visit_marketplace_status_received"
|
|
|
|
|
WebsocketEventDraftCreated WebsocketEventType = "draft_created"
|
|
|
|
|
WebsocketEventDraftUpdated WebsocketEventType = "draft_updated"
|
|
|
|
|
WebsocketEventDraftDeleted WebsocketEventType = "draft_deleted"
|
|
|
|
|
WebsocketEventAcknowledgementAdded WebsocketEventType = "post_acknowledgement_added"
|
|
|
|
|
WebsocketEventAcknowledgementRemoved WebsocketEventType = "post_acknowledgement_removed"
|
|
|
|
|
WebsocketEventPersistentNotificationTriggered WebsocketEventType = "persistent_notification_triggered"
|
|
|
|
|
WebsocketEventHostedCustomerSignupProgressUpdated WebsocketEventType = "hosted_customer_signup_progress_updated"
|
2024-04-22 05:06:58 -04:00
|
|
|
WebsocketEventChannelBookmarkCreated WebsocketEventType = "channel_bookmark_created"
|
|
|
|
|
WebsocketEventChannelBookmarkUpdated WebsocketEventType = "channel_bookmark_updated"
|
|
|
|
|
WebsocketEventChannelBookmarkDeleted WebsocketEventType = "channel_bookmark_deleted"
|
|
|
|
|
WebsocketEventChannelBookmarkSorted WebsocketEventType = "channel_bookmark_sorted"
|
2023-12-11 22:19:09 -05:00
|
|
|
WebsocketPresenceIndicator WebsocketEventType = "presence"
|
2024-04-22 05:06:58 -04:00
|
|
|
WebsocketPostedNotifyAck WebsocketEventType = "posted_notify_ack"
|
2024-11-05 08:24:50 -05:00
|
|
|
WebsocketScheduledPostCreated WebsocketEventType = "scheduled_post_created"
|
|
|
|
|
WebsocketScheduledPostUpdated WebsocketEventType = "scheduled_post_updated"
|
|
|
|
|
WebsocketScheduledPostDeleted WebsocketEventType = "scheduled_post_deleted"
|
2025-02-13 06:21:46 -05:00
|
|
|
WebsocketEventCPAFieldCreated WebsocketEventType = "custom_profile_attributes_field_created"
|
|
|
|
|
WebsocketEventCPAFieldUpdated WebsocketEventType = "custom_profile_attributes_field_updated"
|
|
|
|
|
WebsocketEventCPAFieldDeleted WebsocketEventType = "custom_profile_attributes_field_deleted"
|
|
|
|
|
WebsocketEventCPAValuesUpdated WebsocketEventType = "custom_profile_attributes_values_updated"
|
2025-10-02 10:54:29 -04:00
|
|
|
WebsocketContentFlaggingReportValueUpdated WebsocketEventType = "content_flagging_report_value_updated"
|
[MM-66359] Recaps MVP (#34337)
* initial commit for POC of Plugin Bridge
* Updates
* POC for plugin bridge
* Updates from collaboration
* Fixes
* Refactor Plugin Bridge to use HTTP/REST instead of RPC
- Remove ExecuteBridgeCall hook and Context.SourcePluginId
- Implement HTTP-based bridge using existing PluginHTTP infrastructure
- Add CallPlugin API method with endpoint parameter instead of method name
- Update CallPluginBridge to construct HTTP POST requests
- Add proper headers: Mattermost-User-Id, Mattermost-Plugin-ID
- Use 'com.mattermost.server' as plugin ID for core server calls
- Update ai.go to use REST endpoint /inter-plugin/v1/completion
- Add comprehensive spec documentation in server/spec.md
- Add MIGRATION_GUIDE.md for plugin developers
- Fix 401/404 issues by setting correct headers and URL paths
* Improve Plugin Bridge security and architecture
- Create ServeInternalPluginRequest for internal plugin calls (core + plugin-to-plugin)
- Move header-setting logic from CallPluginBridge to ServeInternalPluginRequest
- Improve separation of concerns: business logic vs HTTP transport
- Add security documentation explaining header protection
Security Improvements:
- ServeInternalPluginRequest is NOT exposed as HTTP route (internal only)
- Headers (Mattermost-User-Id, Mattermost-Plugin-ID) are set by trusted server code
- External requests cannot spoof these headers (stripped by servePluginRequest)
- Core calls use 'com.mattermost.server' as plugin ID for authorization
- Plugin-to-plugin calls use real plugin ID (enforced by server)
Backward Compatibility:
- Keep ServeInterPluginRequest for existing API.PluginHTTP callers (deprecated)
- All tests pass
Docs:
- Update spec.md with security model explanation
- Update MIGRATION_GUIDE.md with correct header usage examples
* Space
* cursor please stop creating markdown files
* Fix style
* Fix i18n, linter
* REMOVE MARKDOWN
* Remove CallPlugin method from plugin API interface
Per review feedback, this method is no longer needed.
Co-authored-by: Nick Misasi <nickmisasi@users.noreply.github.com>
* Remove CallPlugin method implementation from PluginAPI
Co-authored-by: Nick Misasi <nickmisasi@users.noreply.github.com>
* fixes
* Add AI OpenAPI spec
* fix openapi spec
* Use agents client (#34225)
* Use agents client
* Remove default agent
* Fixes
* fix: modify system prompts to ensure JSON is being returned
* Base implementation for recaps working
* small fixes
* Adjustments
* remove webapp changes
* Add feature flags for rewrites and ai bridge, clean up
* Remove comments that aren't helpful
* Fix i18n
* Remove rewrites
* Fix tests
* Fix i18n
* adjust i18n again
* Add back translations
* Remove leftover mock code
* remove model file
* Changes from PR review
* Make the real substitutions
* Include a basic invokation of the client with noop to ensure build works
* more fix
* Remove unneeded change
* Updates from review
* Fixes
* Remove some logic from rewrites to clean up branch
* Use v1.5.0 of agents plugin
* A bunch more additions for general UX flow
* Add missing files
* Add mocks
* Fixes for vet-api, i18n, build, types, etc
* One more linter fix
* Fix i18n and some tests
* Refactors and cleanup in backend code
* remove rogue markdown file
* fixes after refactors from backend
* Add back renamed files, and add tests
* More self code review
* More fixes
* More refactors
* Fix call stack exceeded bug
* Include read messages if there are no unreads
* Fix test failure: use correct error message key for recap permission denied
The getRecapAndCheckOwnership function was using strings.ToLower(callerName)
to generate error keys, which caused 'GetRecap' to become 'getrecap' instead
of the expected 'get'. Changed to use the correct static key that matches
the en.json localization file.
Fixes TestGetRecap/get_recap_by_non-owner test failure.
Co-authored-by: Nick Misasi <nickmisasi@users.noreply.github.com>
* Consolidate permission errors down to a single string
* Fixes for i18n, worktrees making this difficult
* Fix i18n
* Fix i18n once and for all (for real) (final)
* Fix duplicate getAgents method in client4.ts
* Remove duplicate ai state from initial_state.ts
* Fix types
* Fix tests
* Fix return type of GetAgents and GetServices
* Add tests for recaps components
* Fix types
* Update i18n
* Fixes
* Fixes
* More cleanup
* Revert random file
* Use undefined
* fix linter
* Address feedback
* Missed a git add
* Fixes
* Fix i18n
* Remove fallback
* Fixes for PR
---------
Co-authored-by: claude[bot] <209825114+claude[bot]@users.noreply.github.com>
Co-authored-by: Nick Misasi <nickmisasi@users.noreply.github.com>
Co-authored-by: Christopher Speller <crspeller@gmail.com>
Co-authored-by: Felipe Martin <me@fmartingr.com>
Co-authored-by: Mattermost Build <build@mattermost.com>
2026-01-13 11:59:22 -05:00
|
|
|
WebsocketEventRecapUpdated WebsocketEventType = "recap_updated"
|
2026-01-26 17:05:34 -05:00
|
|
|
WebsocketEventPostTranslationUpdated WebsocketEventType = "post_translation_updated"
|
2025-12-11 01:59:50 -05:00
|
|
|
WebsocketEventPostRevealed WebsocketEventType = "post_revealed"
|
|
|
|
|
WebsocketEventPostBurned WebsocketEventType = "post_burned"
|
|
|
|
|
WebsocketEventBurnOnReadAllRevealed WebsocketEventType = "burn_on_read_all_revealed"
|
Merge the Integrated Boards MVP feature branch (#35796)
* Add CreatedBy and UpdatedBy to the properties fields and values (#34485)
* Add CreatedBy and UpdatedBy to the properties fields and values
* Fix types
---------
Co-authored-by: Miguel de la Cruz <miguel@ctrlz.es>
* Adds ObjectType to the property fields table (#34908)
Co-authored-by: Miguel de la Cruz <miguel@ctrlz.es>
* Update ObjectType migration setting an empty value and marking the column as not null (#34915)
Co-authored-by: Miguel de la Cruz <miguel@ctrlz.es>
* Adds uniqueness mechanisms to the property fields (#35058)
* Adds uniqueness mechanisms to the property fields
After adding ObjectType, this commit ensures that both the PSAv1 and
PSAv2 schemas are supported, and enforces property uniqueness through
both database indexes and a logical check when creating new property
fields.
* Adds uniqueness check to property updates
Updates are covered on this commit and we refactor as well the SQL
code to use the squirrel builder and work better with the conditional
addition of the `existingID` piece of the query.
* Add translations to error messages
* Fixing retrylayer mocks
* Remove retrylayer duplication
* Address review comments
* Fix comment to avoid linter issues
* Address PR comments
* Update server/channels/db/migrations/postgres/000157_add_object_type_to_property_fields.down.sql
Co-authored-by: Alejandro García Montoro <alejandro.garciamontoro@gmail.com>
* Update server/channels/db/migrations/postgres/000157_add_object_type_to_property_fields.up.sql
Co-authored-by: Alejandro García Montoro <alejandro.garciamontoro@gmail.com>
* Update server/channels/db/migrations/postgres/000157_add_object_type_to_property_fields.up.sql
Co-authored-by: Alejandro García Montoro <alejandro.garciamontoro@gmail.com>
* Update field validation to check only for valid target types
* Update migrations to avoid concurrent index creation within a transaction
* Update migrations to make all index ops concurrent
* Update tests to use valid PSAv2 property fields
* Adds a helper for valid PSAv2 TargetTypes
---------
Co-authored-by: Miguel de la Cruz <miguel@ctrlz.es>
Co-authored-by: Alejandro García Montoro <alejandro.garciamontoro@gmail.com>
* Fix property tests (#35388)
Co-authored-by: Miguel de la Cruz <miguel@ctrlz.es>
* Adds Integrated Boards feature flag (#35378)
Co-authored-by: Miguel de la Cruz <miguel@ctrlz.es>
* Adds Integrated Boards MVP API changes (#34822)
This PR includes the necessary changes for channels and posts
endpoints and adds a set of generic endpoints to retrieve and manage
property fields and values following the new Property System approach.
Co-authored-by: Miguel de la Cruz <miguel@ctrlz.es>
Co-authored-by: Mattermost Build <build@mattermost.com>
* Property System Architecture permissions for v2 (#35113)
* Adds uniqueness mechanisms to the property fields
After adding ObjectType, this commit ensures that both the PSAv1 and
PSAv2 schemas are supported, and enforces property uniqueness through
both database indexes and a logical check when creating new property
fields.
* Adds uniqueness check to property updates
Updates are covered on this commit and we refactor as well the SQL
code to use the squirrel builder and work better with the conditional
addition of the `existingID` piece of the query.
* Add translations to error messages
* Add the permissions to the migrations, model and update the store calls
* Adds the property field and property group app layer
* Adds authorization helpers for property fields and values
* Make sure that users cannot lock themselves out of property fields
* Migrate permissions from a JSON column to three normalized columns
* Remove the audit comment
* Use target level constants in authorization
* Log authorization membership failures
* Rename admin to sysadmin
* Fix i18n sorting
---------
Co-authored-by: Miguel de la Cruz <miguel@ctrlz.es>
* Add Views store and app layer (#35361)
* Add Views store and app layer for Integrated Boards
Implements the View entity (model, SQL store, service, app) as described
in the Integrated Boards tech spec. Views are channel-scoped board
configurations with typed props (board, kanban subviews) and soft-delete.
- public/model: View, ViewBoardProps, Subview, ViewPatch types with
PreSave/PreUpdate/IsValid/Patch/Clone/Auditable
- Migration 158: Views table with jsonb Props column and indexes
- SqlViewStore: CRUD with nil-safe Props marshaling (AppendBinaryFlag)
- ViewService: CreateView seeds default kanban subview and links the
boards property field; caches boardPropertyFieldID at startup
- App layer: CreateView/GetView/GetViewsForChannel/UpdateView/DeleteView
with channel-membership permission checks and WebSocket events
(view_created, view_updated, view_deleted)
- doSetupBoardsPropertyField: registers the Boards property group and
board field in NewServer() before ViewService construction
- GetFieldByName now returns store.ErrNotFound instead of raw sql.ErrNoRows
* Move permission checks out of App layer for views
- Remove HasPermissionToChannel calls from all App view methods
- Drop userID params from GetView, GetViewsForChannel, UpdateView, DeleteView
- Fix doSetupBoardsPropertyField to include required TargetType for PSAv2 field
* Make View service generic and enforce board validation in model
- Remove board-specific auto-setup from service and server startup
- Enforce that board views require Props, at least one subview, and at least one linked property in IsValid()
- Move default subview seeding out of app layer; callers must provide valid props
- Call PreSave on subviews during PreUpdate to assign IDs to new subviews
- Update all tests to reflect the new validation requirements
* Restore migrations files to match base branch
* Distinguish ErrNotFound from other errors in view store Get
* Use CONCURRENTLY and nontransactional for index operations in views migration
* Split views index creation into separate nontransactional migrations
* Update migrations.list
* Update i18n translations for views
* Fix makeView helper to include required Props for board view validation
* Rename ctx parameter from c to rctx in OAuthProvider mock
* Remove views service layer, call store directly from app
* Return 500 for unexpected DB errors in GetView, 404 only for not-found
* Harden View model: deep-copy Props, validate linked property IDs
- Add ViewBoardProps.Clone() to deep-copy LinkedProperties and Subviews
- Use it in View.Clone() and View.Patch() to prevent shared-slice aliasing
- Iterate over LinkedProperties in View.IsValid() and reject invalid IDs
with a dedicated i18n key
- Register ViewStore in storetest AssertExpectations so mock expectations
are enforced
- Add tests covering all new behaviours
* Restore autotranslation worker_stopped i18n translation
* Fix view store test IDs and improve error handling in app layer
- Use model.NewId() for linked property IDs in testUpdateView to fix
validation failure (IsValid rejects non-UUID strings)
- Fix import grouping in app/view.go (stdlib imports in one block)
- Return 404 instead of 500 when Update/Delete store calls return
ErrNotFound (e.g. concurrent deletion TOCTOU race)
* Add View store mock to retrylayer test genStore helper
The View store was added to the store interface but the genStore()
helper in retrylayer_test.go was not updated, causing TestRetry to panic.
Also removes the duplicate Recap mock registration.
* Refactor view deletion and websocket event handling; update SQL store methods to use query builder
* revert property field store
* Remove useless migrations
* Add cursor-based pagination to View store GetForChannel
- Add ViewQueryCursor and ViewQueryOpts types with validation
- Return (views, cursor, error) for caller-driven pagination
- PerPage clamping: <=0 defaults to 20, >200 clamps to 200
- Support IncludeDeleted filter
- Add comprehensive store tests for pagination, cursor edge cases,
PerPage clamping, and invalid input rejection
- Add app layer test for empty channelID → 400
- Update interface, retrylayer, timerlayer, and mock signatures
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Refactor test loops in ViewStore tests for improved readability
* change pagination to limit/offset
* Add upper-bound limits on View Subviews and LinkedProperties
Defense-in-depth validation: cap Subviews at 50 and LinkedProperties
at 500 to prevent abuse below the 300KB payload limit.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
---------
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
* MM-67388, MM-66528, MM-67750: Add View REST API endpoints, websocket events, and sort order (#35442)
* Add Views store and app layer for Integrated Boards
Implements the View entity (model, SQL store, service, app) as described
in the Integrated Boards tech spec. Views are channel-scoped board
configurations with typed props (board, kanban subviews) and soft-delete.
- public/model: View, ViewBoardProps, Subview, ViewPatch types with
PreSave/PreUpdate/IsValid/Patch/Clone/Auditable
- Migration 158: Views table with jsonb Props column and indexes
- SqlViewStore: CRUD with nil-safe Props marshaling (AppendBinaryFlag)
- ViewService: CreateView seeds default kanban subview and links the
boards property field; caches boardPropertyFieldID at startup
- App layer: CreateView/GetView/GetViewsForChannel/UpdateView/DeleteView
with channel-membership permission checks and WebSocket events
(view_created, view_updated, view_deleted)
- doSetupBoardsPropertyField: registers the Boards property group and
board field in NewServer() before ViewService construction
- GetFieldByName now returns store.ErrNotFound instead of raw sql.ErrNoRows
* Move permission checks out of App layer for views
- Remove HasPermissionToChannel calls from all App view methods
- Drop userID params from GetView, GetViewsForChannel, UpdateView, DeleteView
- Fix doSetupBoardsPropertyField to include required TargetType for PSAv2 field
* Make View service generic and enforce board validation in model
- Remove board-specific auto-setup from service and server startup
- Enforce that board views require Props, at least one subview, and at least one linked property in IsValid()
- Move default subview seeding out of app layer; callers must provide valid props
- Call PreSave on subviews during PreUpdate to assign IDs to new subviews
- Update all tests to reflect the new validation requirements
* Restore migrations files to match base branch
* Distinguish ErrNotFound from other errors in view store Get
* Use CONCURRENTLY and nontransactional for index operations in views migration
* Split views index creation into separate nontransactional migrations
* Update migrations.list
* Update i18n translations for views
* Fix makeView helper to include required Props for board view validation
* Rename ctx parameter from c to rctx in OAuthProvider mock
* Remove views service layer, call store directly from app
* Return 500 for unexpected DB errors in GetView, 404 only for not-found
* Harden View model: deep-copy Props, validate linked property IDs
- Add ViewBoardProps.Clone() to deep-copy LinkedProperties and Subviews
- Use it in View.Clone() and View.Patch() to prevent shared-slice aliasing
- Iterate over LinkedProperties in View.IsValid() and reject invalid IDs
with a dedicated i18n key
- Register ViewStore in storetest AssertExpectations so mock expectations
are enforced
- Add tests covering all new behaviours
* Restore autotranslation worker_stopped i18n translation
* Fix view store test IDs and improve error handling in app layer
- Use model.NewId() for linked property IDs in testUpdateView to fix
validation failure (IsValid rejects non-UUID strings)
- Fix import grouping in app/view.go (stdlib imports in one block)
- Return 404 instead of 500 when Update/Delete store calls return
ErrNotFound (e.g. concurrent deletion TOCTOU race)
* Add View store mock to retrylayer test genStore helper
The View store was added to the store interface but the genStore()
helper in retrylayer_test.go was not updated, causing TestRetry to panic.
Also removes the duplicate Recap mock registration.
* Refactor view deletion and websocket event handling; update SQL store methods to use query builder
* revert property field store
* Add View API endpoints with OpenAPI spec, client methods, and i18n
Implement REST API for channel views (board-type) behind the
IntegratedBoards feature flag. Adds CRUD endpoints under
/api/v4/channels/{channel_id}/views with permission checks
matching the channel bookmark pattern.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Remove useless migrations
* Add cursor-based pagination to View store GetForChannel
- Add ViewQueryCursor and ViewQueryOpts types with validation
- Return (views, cursor, error) for caller-driven pagination
- PerPage clamping: <=0 defaults to 20, >200 clamps to 200
- Support IncludeDeleted filter
- Add comprehensive store tests for pagination, cursor edge cases,
PerPage clamping, and invalid input rejection
- Add app layer test for empty channelID → 400
- Update interface, retrylayer, timerlayer, and mock signatures
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Add cursor-based pagination to View API for channel views
* Enhance cursor handling in getViewsForChannel and update tests for pagination
* Refactor test loops in ViewStore tests for improved readability
* Refactor loop in TestGetViewsForChannel for improved readability
* change pagination to limit/offset
* switch to limit/offset pagination
* Add upper-bound limits on View Subviews and LinkedProperties
Defense-in-depth validation: cap Subviews at 50 and LinkedProperties
at 500 to prevent abuse below the 300KB payload limit.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Add view sort order API endpoint
Add POST /api/v4/channels/{channel_id}/views/{view_id}/sort_order
endpoint following the channel bookmarks reorder pattern. Includes
store, app, and API layers with full test coverage at each layer.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Add connectionId to view WebSocket events and sort_order API spec
Thread connectionId from request header through all view handlers
(create, update, delete, sort_order) to WebSocket events, matching
the channel bookmarks pattern. Add sort_order endpoint to OpenAPI
spec. Update minimum server version to 11.6.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Remove duplicate View/ViewPatch definitions from definitions.yaml
The merge from integrated-boards-mvp introduced duplicate View and
ViewPatch schema definitions that were already defined earlier in
the file with more detail (including ViewBoardProps ref and enums).
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Update minimum server version to 11.6 in views API spec
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Add missing translations for view sort order error messages
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Merge integrated-boards-mvp into ibmvp_api-views; remove spec files
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Fix flaky TestViewStore timestamp test on CI
Add sleep before UpdateSortOrder to ensure timestamps differ,
preventing same-millisecond comparisons on fast CI machines.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* remove duplicate views.yaml imclude
* Use c.boolString() for include_deleted query param in GetViewsForChannel
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Fix views.yaml sort order schema: use integer type and require body
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Refactor view sort order tests to use named IDs instead of array indices
Extract idA/idB/idC from views slice and add BEFORE/AFTER comments
to make stateful subtest ordering easier to follow.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Return 404 instead of 403 for view operations on deleted channels
Deleted channels should appear non-existent to callers rather than
revealing their existence via a 403. Detailed error text explains
the context for debugging.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* add missing channel deleteat checks
* Use c.Params.Page instead of manual page query param parsing in getViewsForChannel
c.Params already validates and defaults page/per_page, so the manual
parsing was redundant.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Add support for total count in views retrieval
* Add tests for handling deleted views in GetViewsForChannel and GetView
* Short-circuit negative newIndex in UpdateSortOrder before opening transaction
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Add per-channel limit on views to bound UpdateSortOrder cost
Without a cap, unbounded view creation makes sort-order updates
increasingly expensive (CASE WHEN per view, row locks). Adds
MaxViewsPerChannel=50 constant and enforces it in the app layer
before saving. Includes API and app layer tests.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Remove include_deleted support from views API
Soft-deleted views are structural metadata with low risk, but no other
similar endpoint (e.g. channel bookmarks) exposes deleted records without
an admin gate. Rather than adding an admin-only permission check for
consistency, remove the feature entirely since there is no current use case.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Update view permissions to require `create_post` instead of channel management permissions
* Remove obsolete view management error messages for direct and group messages
---------
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
* feat(migrations): add user tracking and object type to property fields
- Introduced user tracking columns (CreatedBy, UpdatedBy) to PropertyFields and PropertyValues.
- Added ObjectType column to PropertyFields with associated unique indexes for legacy and typed properties.
- Created new migration scripts for adding and dropping these features, including necessary indexes for data integrity.
- Established views for managing property fields with new attributes.
This update enhances the schema to support better tracking and categorization of property fields.
* Add Property System Architecture v2 API endpoints (#35583)
* Adds uniqueness mechanisms to the property fields
After adding ObjectType, this commit ensures that both the PSAv1 and
PSAv2 schemas are supported, and enforces property uniqueness through
both database indexes and a logical check when creating new property
fields.
* Adds uniqueness check to property updates
Updates are covered on this commit and we refactor as well the SQL
code to use the squirrel builder and work better with the conditional
addition of the `existingID` piece of the query.
* Add translations to error messages
* Add the permissions to the migrations, model and update the store calls
* Adds the property field and property group app layer
* Adds authorization helpers for property fields and values
* Make sure that users cannot lock themselves out of property fields
* Migrate permissions from a JSON column to three normalized columns
* Remove the audit comment
* Use target level constants in authorization
* Log authorization membership failures
* Rename admin to sysadmin
* Adds the Property System Architecture v2 API endpoints
* Adds permission checks to the create field endpoint
* Add target access checks to value endpoints
* Add default branches for object_type and target_type and extra guards for cursor client4 methods
* Fix vet API mismatch
* Fix error checks
* Fix linter
* Add merge semantics for property patch logic and API endpoint
* Fix i18n
* Fix duplicated patch elements and early return on bad cursor
* Update docs to use enums
* Fix i18n sorting
* Update app layer to return model.AppError
* Adds a limit to the number of property values that can be patched in the same request
* Require target_type filter when searching property fields
* Add objectType validation as part of field.IsValid()
* Fix linter
* Fix test with bad objecttpye
* Fix test grouping
---------
Co-authored-by: Miguel de la Cruz <miguel@ctrlz.es>
* MM-67968: Flatten view model — remove icon, subviews, typed board props (#35726)
* feat(views): flatten view model by removing icon, subview, and board props
Simplifies the View data model as part of MM-67968: removes Icon, Subview,
and ViewBoardProps types; renames ViewTypeBoard to ViewTypeKanban; replaces
typed Props with StringInterface (map[string]any); adds migration 000167
to drop the Icon column from the Views table.
Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
* feat(api): update views OpenAPI spec to reflect flattened model
Removes ViewBoardProps, Subview, and icon from the View and ViewPatch
schemas. Changes type enum from board to kanban. Replaces typed props
with a free-form StringInterface object. Aligns with MM-67968.
Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
* refactor(views): simplify store by dropping dbView and marshalViewProps
StringInterface already implements driver.Valuer and sql.Scanner, so the
manual JSON marshal/unmarshal and the dbView intermediate struct were
redundant. model.View now scans directly from the database. Also removes
the dead ViewMaxLinkedProperties constant and wraps the Commit() error in
UpdateSortOrder.
Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
* fix(api): allow arbitrary JSON in view props OpenAPI schema
The props field was restricted to string values via
additionalProperties: { type: string }, conflicting with the Go model's
StringInterface (map[string]any). Changed to additionalProperties: true
in View, ViewPatch, and inline POST schemas.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
---------
Co-authored-by: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
* Adds basic implementation of the generic redux store for PSAv2 (#35512)
* Adds basic implementation of the generic redux store for PSAv2
* Add created_by and updated_by to the test fixtures
* Make target_id, target_type and object_type mandatory
* Wrap getPropertyFieldsByIds and getPropertyValuesForTargetByFieldIds with createSelector
* Address PR comments
---------
Co-authored-by: Miguel de la Cruz <miguel@ctrlz.es>
* Adds websocket messages for the PSAv2 API events (#35696)
* Adds uniqueness mechanisms to the property fields
After adding ObjectType, this commit ensures that both the PSAv1 and
PSAv2 schemas are supported, and enforces property uniqueness through
both database indexes and a logical check when creating new property
fields.
* Adds uniqueness check to property updates
Updates are covered on this commit and we refactor as well the SQL
code to use the squirrel builder and work better with the conditional
addition of the `existingID` piece of the query.
* Add translations to error messages
* Add the permissions to the migrations, model and update the store calls
* Adds the property field and property group app layer
* Adds authorization helpers for property fields and values
* Make sure that users cannot lock themselves out of property fields
* Migrate permissions from a JSON column to three normalized columns
* Remove the audit comment
* Use target level constants in authorization
* Log authorization membership failures
* Rename admin to sysadmin
* Adds the Property System Architecture v2 API endpoints
* Adds permission checks to the create field endpoint
* Add target access checks to value endpoints
* Add default branches for object_type and target_type and extra guards for cursor client4 methods
* Fix vet API mismatch
* Fix error checks
* Fix linter
* Add merge semantics for property patch logic and API endpoint
* Fix i18n
* Fix duplicated patch elements and early return on bad cursor
* Update docs to use enums
* Fix i18n sorting
* Update app layer to return model.AppError
* Adds a limit to the number of property values that can be patched in the same request
* Adds websocket messages for the PSAv2 API events
* Add IsPSAv2 helper to the property field for clarity
* Add guard against nil returns on field deletion
* Add docs to the websocket endpoints
---------
Co-authored-by: Miguel de la Cruz <miguel@ctrlz.es>
* migrations: consolidate views migrations and reorder after master
- Merged 000165 (create Views) with 000167 (drop Icon) since Icon was never needed
- Renumbered branch migrations 159-166 → 160-167 so master's 000159 (deduplicate_policy_names) runs first
- Regenerated migrations.list
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* Add API endpoint to retrieve posts for a specific view (#35604)
Automatic Merge
* Apply fixes after merge
* Return a more specific error from getting multiple fields
* Prevent getting broadcast params on field deletion if not needed
* Remove duplicated migration code
* Update property conflict code to always use master
* Adds nil guard when iterating on property fields
* Check that permission level is valid before getting rejected by the database
* Validate correctness on TargetID for PSAv2 fields
* Avoid PSAv1 using permissions or protected
* Fix test data after validation change
* Fix flaky search test
* Adds more posts for filter use cases to properly test exclusions
---------
Co-authored-by: Miguel de la Cruz <miguel@ctrlz.es>
Co-authored-by: Alejandro García Montoro <alejandro.garciamontoro@gmail.com>
Co-authored-by: Julien Tant <julien@craftyx.fr>
Co-authored-by: Mattermost Build <build@mattermost.com>
Co-authored-by: Julien Tant <785518+JulienTant@users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-27 05:36:35 -04:00
|
|
|
WebsocketEventViewCreated WebsocketEventType = "view_created"
|
|
|
|
|
WebsocketEventViewUpdated WebsocketEventType = "view_updated"
|
|
|
|
|
WebsocketEventViewDeleted WebsocketEventType = "view_deleted"
|
|
|
|
|
WebsocketEventViewSorted WebsocketEventType = "view_sorted"
|
|
|
|
|
WebsocketEventPropertyFieldCreated WebsocketEventType = "property_field_created"
|
|
|
|
|
WebsocketEventPropertyFieldUpdated WebsocketEventType = "property_field_updated"
|
|
|
|
|
WebsocketEventPropertyFieldDeleted WebsocketEventType = "property_field_deleted"
|
|
|
|
|
WebsocketEventPropertyValuesUpdated WebsocketEventType = "property_values_updated"
|
2026-02-16 11:10:39 -05:00
|
|
|
WebsocketEventFileDownloadRejected WebsocketEventType = "file_download_rejected"
|
|
|
|
|
WebsocketEventShowToast WebsocketEventType = "show_toast"
|
2026-04-03 02:06:01 -04:00
|
|
|
WebsocketEventSharedChannelRemoteUpdated WebsocketEventType = "shared_channel_remote_updated"
|
2025-01-17 00:41:32 -05:00
|
|
|
|
|
|
|
|
WebSocketMsgTypeResponse = "response"
|
|
|
|
|
WebSocketMsgTypeEvent = "event"
|
2016-07-12 09:36:27 -04:00
|
|
|
)
|
|
|
|
|
|
2025-01-17 00:41:32 -05:00
|
|
|
type ActiveQueueItem struct {
|
|
|
|
|
Type string `json:"type"` // websocket event or websocket response
|
|
|
|
|
Buf json.RawMessage `json:"buf"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type WSQueues struct {
|
|
|
|
|
ActiveQ []ActiveQueueItem `json:"active_queue"` // websocketEvent|websocketResponse
|
|
|
|
|
DeadQ []json.RawMessage `json:"dead_queue"` // websocketEvent
|
|
|
|
|
ReuseCount int `json:"reuse_count"`
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-12 09:36:27 -04:00
|
|
|
type WebSocketMessage interface {
|
2021-09-01 08:43:12 -04:00
|
|
|
ToJSON() ([]byte, error)
|
2016-07-12 09:36:27 -04:00
|
|
|
IsValid() bool
|
2023-11-22 05:09:48 -05:00
|
|
|
EventType() WebsocketEventType
|
2016-07-12 09:36:27 -04:00
|
|
|
}
|
|
|
|
|
|
2016-09-27 10:19:50 -04:00
|
|
|
type WebsocketBroadcast struct {
|
2023-07-24 12:16:57 -04:00
|
|
|
OmitUsers map[string]bool `json:"omit_users"` // broadcast is omitted for users listed here
|
|
|
|
|
UserId string `json:"user_id"` // broadcast only occurs for this user
|
|
|
|
|
ChannelId string `json:"channel_id"` // broadcast only occurs for users in this channel
|
|
|
|
|
TeamId string `json:"team_id"` // broadcast only occurs for users in this team
|
|
|
|
|
ConnectionId string `json:"connection_id"` // broadcast only occurs for this connection
|
|
|
|
|
OmitConnectionId string `json:"omit_connection_id"` // broadcast is omitted for this connection
|
|
|
|
|
ContainsSanitizedData bool `json:"contains_sanitized_data,omitempty"` // broadcast only occurs for non-sysadmins
|
|
|
|
|
ContainsSensitiveData bool `json:"contains_sensitive_data,omitempty"` // broadcast only occurs for sysadmins
|
2022-02-22 07:43:38 -05:00
|
|
|
// ReliableClusterSend indicates whether or not the message should
|
|
|
|
|
// be sent through the cluster using the reliable, TCP backed channel.
|
|
|
|
|
ReliableClusterSend bool `json:"-"`
|
2023-11-08 16:17:07 -05:00
|
|
|
|
|
|
|
|
// BroadcastHooks is a slice of hooks IDs used to process events before sending them on individual connections. The
|
|
|
|
|
// IDs should be understood by the WebSocket code.
|
|
|
|
|
//
|
|
|
|
|
// This field should never be sent to the client.
|
|
|
|
|
BroadcastHooks []string `json:"broadcast_hooks,omitempty"`
|
|
|
|
|
// BroadcastHookArgs is a slice of named arguments for each hook invocation. The index of each entry corresponds to
|
|
|
|
|
// the index of a hook ID in BroadcastHooks
|
|
|
|
|
//
|
|
|
|
|
// This field should never be sent to the client.
|
|
|
|
|
BroadcastHookArgs []map[string]any `json:"broadcast_hook_args,omitempty"`
|
2016-09-27 10:19:50 -04:00
|
|
|
}
|
|
|
|
|
|
2021-11-22 03:54:19 -05:00
|
|
|
func (wb *WebsocketBroadcast) copy() *WebsocketBroadcast {
|
|
|
|
|
if wb == nil {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var c WebsocketBroadcast
|
|
|
|
|
if wb.OmitUsers != nil {
|
|
|
|
|
c.OmitUsers = make(map[string]bool, len(wb.OmitUsers))
|
2025-07-18 06:54:51 -04:00
|
|
|
maps.Copy(c.OmitUsers, wb.OmitUsers)
|
2021-11-22 03:54:19 -05:00
|
|
|
}
|
|
|
|
|
c.UserId = wb.UserId
|
|
|
|
|
c.ChannelId = wb.ChannelId
|
|
|
|
|
c.TeamId = wb.TeamId
|
2022-09-02 06:17:22 -04:00
|
|
|
c.OmitConnectionId = wb.OmitConnectionId
|
2021-11-22 03:54:19 -05:00
|
|
|
c.ContainsSanitizedData = wb.ContainsSanitizedData
|
|
|
|
|
c.ContainsSensitiveData = wb.ContainsSensitiveData
|
2023-11-08 16:17:07 -05:00
|
|
|
c.BroadcastHooks = wb.BroadcastHooks
|
|
|
|
|
c.BroadcastHookArgs = wb.BroadcastHookArgs
|
2021-11-22 03:54:19 -05:00
|
|
|
|
|
|
|
|
return &c
|
|
|
|
|
}
|
|
|
|
|
|
2023-11-08 16:17:07 -05:00
|
|
|
func (wb *WebsocketBroadcast) AddHook(hookID string, hookArgs map[string]any) {
|
|
|
|
|
wb.BroadcastHooks = append(wb.BroadcastHooks, hookID)
|
|
|
|
|
wb.BroadcastHookArgs = append(wb.BroadcastHookArgs, hookArgs)
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-20 13:50:10 -05:00
|
|
|
type precomputedWebSocketEventJSON struct {
|
|
|
|
|
Event json.RawMessage
|
|
|
|
|
Data json.RawMessage
|
|
|
|
|
Broadcast json.RawMessage
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-22 03:54:19 -05:00
|
|
|
func (p *precomputedWebSocketEventJSON) copy() *precomputedWebSocketEventJSON {
|
|
|
|
|
if p == nil {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var c precomputedWebSocketEventJSON
|
|
|
|
|
|
|
|
|
|
if p.Event != nil {
|
|
|
|
|
c.Event = make([]byte, len(p.Event))
|
|
|
|
|
copy(c.Event, p.Event)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if p.Data != nil {
|
|
|
|
|
c.Data = make([]byte, len(p.Data))
|
|
|
|
|
copy(c.Data, p.Data)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if p.Broadcast != nil {
|
|
|
|
|
c.Broadcast = make([]byte, len(p.Broadcast))
|
|
|
|
|
copy(c.Broadcast, p.Broadcast)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return &c
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-24 03:32:11 -05:00
|
|
|
// webSocketEventJSON mirrors WebSocketEvent to make some of its unexported fields serializable
|
|
|
|
|
type webSocketEventJSON struct {
|
2023-11-22 05:09:48 -05:00
|
|
|
Event WebsocketEventType `json:"event"`
|
2022-07-05 02:46:50 -04:00
|
|
|
Data map[string]any `json:"data"`
|
|
|
|
|
Broadcast *WebsocketBroadcast `json:"broadcast"`
|
|
|
|
|
Sequence int64 `json:"seq"`
|
2019-12-24 03:32:11 -05:00
|
|
|
}
|
2018-02-20 13:50:10 -05:00
|
|
|
|
2019-12-24 03:32:11 -05:00
|
|
|
type WebSocketEvent struct {
|
2023-11-22 05:09:48 -05:00
|
|
|
event WebsocketEventType
|
2022-07-05 02:46:50 -04:00
|
|
|
data map[string]any
|
2021-07-13 10:35:02 -04:00
|
|
|
broadcast *WebsocketBroadcast
|
|
|
|
|
sequence int64
|
2018-02-20 13:50:10 -05:00
|
|
|
precomputedJSON *precomputedWebSocketEventJSON
|
2025-12-11 01:59:50 -05:00
|
|
|
rejected bool
|
2018-02-20 13:50:10 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// PrecomputeJSON precomputes and stores the serialized JSON for all fields other than Sequence.
|
2021-09-01 08:43:12 -04:00
|
|
|
// This makes ToJSON much more efficient when sending the same event to multiple connections.
|
2019-12-24 03:32:11 -05:00
|
|
|
func (ev *WebSocketEvent) PrecomputeJSON() *WebSocketEvent {
|
2023-06-30 10:42:56 -04:00
|
|
|
evCopy := ev.Copy()
|
|
|
|
|
event, _ := json.Marshal(evCopy.event)
|
|
|
|
|
data, _ := json.Marshal(evCopy.data)
|
|
|
|
|
broadcast, _ := json.Marshal(evCopy.broadcast)
|
|
|
|
|
evCopy.precomputedJSON = &precomputedWebSocketEventJSON{
|
2018-02-20 13:50:10 -05:00
|
|
|
Event: json.RawMessage(event),
|
|
|
|
|
Data: json.RawMessage(data),
|
|
|
|
|
Broadcast: json.RawMessage(broadcast),
|
|
|
|
|
}
|
2023-06-30 10:42:56 -04:00
|
|
|
return evCopy
|
2016-07-12 09:36:27 -04:00
|
|
|
}
|
|
|
|
|
|
2023-11-08 16:17:07 -05:00
|
|
|
func (ev *WebSocketEvent) RemovePrecomputedJSON() *WebSocketEvent {
|
|
|
|
|
evCopy := ev.DeepCopy()
|
|
|
|
|
evCopy.precomputedJSON = nil
|
|
|
|
|
return evCopy
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// WithoutBroadcastHooks gets the broadcast hook information from a WebSocketEvent and returns the event without that.
|
|
|
|
|
// If the event has broadcast hooks, a copy of the event is returned. Otherwise, the original event is returned. This
|
|
|
|
|
// is intended to be called before the event is sent to the client.
|
|
|
|
|
func (ev *WebSocketEvent) WithoutBroadcastHooks() (*WebSocketEvent, []string, []map[string]any) {
|
|
|
|
|
hooks := ev.broadcast.BroadcastHooks
|
|
|
|
|
hookArgs := ev.broadcast.BroadcastHookArgs
|
|
|
|
|
|
|
|
|
|
if len(hooks) == 0 && len(hookArgs) == 0 {
|
|
|
|
|
return ev, hooks, hookArgs
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
evCopy := ev.Copy()
|
|
|
|
|
evCopy.broadcast = ev.broadcast.copy()
|
|
|
|
|
|
|
|
|
|
evCopy.broadcast.BroadcastHooks = nil
|
|
|
|
|
evCopy.broadcast.BroadcastHookArgs = nil
|
|
|
|
|
|
|
|
|
|
return evCopy, hooks, hookArgs
|
|
|
|
|
}
|
|
|
|
|
|
2022-07-05 02:46:50 -04:00
|
|
|
func (ev *WebSocketEvent) Add(key string, value any) {
|
2021-07-13 10:35:02 -04:00
|
|
|
ev.data[key] = value
|
2016-07-12 09:36:27 -04:00
|
|
|
}
|
|
|
|
|
|
2023-11-22 05:09:48 -05:00
|
|
|
func NewWebSocketEvent(event WebsocketEventType, teamId, channelId, userId string, omitUsers map[string]bool, omitConnectionId string) *WebSocketEvent {
|
2021-07-13 10:35:02 -04:00
|
|
|
return &WebSocketEvent{
|
|
|
|
|
event: event,
|
2022-07-05 02:46:50 -04:00
|
|
|
data: make(map[string]any),
|
2021-07-13 10:35:02 -04:00
|
|
|
broadcast: &WebsocketBroadcast{
|
2022-09-02 06:17:22 -04:00
|
|
|
TeamId: teamId,
|
|
|
|
|
ChannelId: channelId,
|
|
|
|
|
UserId: userId,
|
|
|
|
|
OmitUsers: omitUsers,
|
|
|
|
|
OmitConnectionId: omitConnectionId},
|
2021-07-13 10:35:02 -04:00
|
|
|
}
|
2016-07-12 09:36:27 -04:00
|
|
|
}
|
|
|
|
|
|
2019-12-24 03:32:11 -05:00
|
|
|
func (ev *WebSocketEvent) Copy() *WebSocketEvent {
|
2023-06-30 10:42:56 -04:00
|
|
|
evCopy := &WebSocketEvent{
|
2021-07-13 10:35:02 -04:00
|
|
|
event: ev.event,
|
|
|
|
|
data: ev.data,
|
|
|
|
|
broadcast: ev.broadcast,
|
|
|
|
|
sequence: ev.sequence,
|
2019-12-24 03:32:11 -05:00
|
|
|
precomputedJSON: ev.precomputedJSON,
|
|
|
|
|
}
|
2023-06-30 10:42:56 -04:00
|
|
|
return evCopy
|
2019-12-24 03:32:11 -05:00
|
|
|
}
|
|
|
|
|
|
2021-11-22 03:54:19 -05:00
|
|
|
func (ev *WebSocketEvent) DeepCopy() *WebSocketEvent {
|
2023-06-30 10:42:56 -04:00
|
|
|
evCopy := &WebSocketEvent{
|
2021-11-22 03:54:19 -05:00
|
|
|
event: ev.event,
|
2024-04-04 07:44:03 -04:00
|
|
|
data: maps.Clone(ev.data),
|
2021-11-22 03:54:19 -05:00
|
|
|
broadcast: ev.broadcast.copy(),
|
|
|
|
|
sequence: ev.sequence,
|
|
|
|
|
precomputedJSON: ev.precomputedJSON.copy(),
|
|
|
|
|
}
|
2023-06-30 10:42:56 -04:00
|
|
|
return evCopy
|
2021-11-22 03:54:19 -05:00
|
|
|
}
|
|
|
|
|
|
2022-07-05 02:46:50 -04:00
|
|
|
func (ev *WebSocketEvent) GetData() map[string]any {
|
2021-07-13 10:35:02 -04:00
|
|
|
return ev.data
|
2016-07-12 09:36:27 -04:00
|
|
|
}
|
|
|
|
|
|
2019-12-24 03:32:11 -05:00
|
|
|
func (ev *WebSocketEvent) GetBroadcast() *WebsocketBroadcast {
|
2021-07-13 10:35:02 -04:00
|
|
|
return ev.broadcast
|
2016-11-22 14:05:54 -05:00
|
|
|
}
|
|
|
|
|
|
2019-12-24 03:32:11 -05:00
|
|
|
func (ev *WebSocketEvent) GetSequence() int64 {
|
2021-07-13 10:35:02 -04:00
|
|
|
return ev.sequence
|
2019-12-24 03:32:11 -05:00
|
|
|
}
|
|
|
|
|
|
2023-11-22 05:09:48 -05:00
|
|
|
func (ev *WebSocketEvent) SetEvent(event WebsocketEventType) *WebSocketEvent {
|
2023-06-30 10:42:56 -04:00
|
|
|
evCopy := ev.Copy()
|
|
|
|
|
evCopy.event = event
|
|
|
|
|
return evCopy
|
2019-12-24 03:32:11 -05:00
|
|
|
}
|
|
|
|
|
|
2022-07-05 02:46:50 -04:00
|
|
|
func (ev *WebSocketEvent) SetData(data map[string]any) *WebSocketEvent {
|
2023-06-30 10:42:56 -04:00
|
|
|
evCopy := ev.Copy()
|
|
|
|
|
evCopy.data = data
|
|
|
|
|
return evCopy
|
2019-12-24 03:32:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (ev *WebSocketEvent) SetBroadcast(broadcast *WebsocketBroadcast) *WebSocketEvent {
|
2023-06-30 10:42:56 -04:00
|
|
|
evCopy := ev.Copy()
|
|
|
|
|
evCopy.broadcast = broadcast
|
|
|
|
|
return evCopy
|
2019-12-24 03:32:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (ev *WebSocketEvent) SetSequence(seq int64) *WebSocketEvent {
|
2023-06-30 10:42:56 -04:00
|
|
|
evCopy := ev.Copy()
|
|
|
|
|
evCopy.sequence = seq
|
|
|
|
|
return evCopy
|
2019-12-24 03:32:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (ev *WebSocketEvent) IsValid() bool {
|
2021-07-13 10:35:02 -04:00
|
|
|
return ev.event != ""
|
2019-12-24 03:32:11 -05:00
|
|
|
}
|
|
|
|
|
|
2023-11-22 05:09:48 -05:00
|
|
|
func (ev *WebSocketEvent) EventType() WebsocketEventType {
|
2021-07-13 10:35:02 -04:00
|
|
|
return ev.event
|
2019-12-24 03:32:11 -05:00
|
|
|
}
|
|
|
|
|
|
2021-09-01 08:43:12 -04:00
|
|
|
func (ev *WebSocketEvent) ToJSON() ([]byte, error) {
|
2019-12-24 03:32:11 -05:00
|
|
|
if ev.precomputedJSON != nil {
|
2023-03-13 13:02:12 -04:00
|
|
|
return ev.precomputedJSONBuf(), nil
|
2018-02-20 13:50:10 -05:00
|
|
|
}
|
2021-09-01 08:43:12 -04:00
|
|
|
return json.Marshal(webSocketEventJSON{
|
2021-07-13 10:35:02 -04:00
|
|
|
ev.event,
|
|
|
|
|
ev.data,
|
|
|
|
|
ev.broadcast,
|
|
|
|
|
ev.sequence,
|
2019-12-24 03:32:11 -05:00
|
|
|
})
|
2016-07-12 09:36:27 -04:00
|
|
|
}
|
|
|
|
|
|
2020-11-03 23:35:10 -05:00
|
|
|
// Encode encodes the event to the given encoder.
|
2023-11-08 01:45:24 -05:00
|
|
|
func (ev *WebSocketEvent) Encode(enc *json.Encoder, buf io.Writer) error {
|
2020-11-03 23:35:10 -05:00
|
|
|
if ev.precomputedJSON != nil {
|
2023-11-08 01:45:24 -05:00
|
|
|
_, err := buf.Write(ev.precomputedJSONBuf())
|
|
|
|
|
return err
|
2020-11-03 23:35:10 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return enc.Encode(webSocketEventJSON{
|
2021-07-13 10:35:02 -04:00
|
|
|
ev.event,
|
|
|
|
|
ev.data,
|
|
|
|
|
ev.broadcast,
|
|
|
|
|
ev.sequence,
|
2020-11-03 23:35:10 -05:00
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-13 13:02:12 -04:00
|
|
|
// We write optimal code here sacrificing readability for
|
|
|
|
|
// performance.
|
|
|
|
|
func (ev *WebSocketEvent) precomputedJSONBuf() []byte {
|
|
|
|
|
return []byte(`{"event": ` +
|
|
|
|
|
string(ev.precomputedJSON.Event) +
|
|
|
|
|
`, "data": ` +
|
|
|
|
|
string(ev.precomputedJSON.Data) +
|
|
|
|
|
`, "broadcast": ` +
|
|
|
|
|
string(ev.precomputedJSON.Broadcast) +
|
|
|
|
|
`, "seq": ` +
|
|
|
|
|
strconv.Itoa(int(ev.sequence)) +
|
|
|
|
|
`}`)
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-01 08:43:12 -04:00
|
|
|
func WebSocketEventFromJSON(data io.Reader) (*WebSocketEvent, error) {
|
2019-12-24 03:32:11 -05:00
|
|
|
var ev WebSocketEvent
|
|
|
|
|
var o webSocketEventJSON
|
|
|
|
|
if err := json.NewDecoder(data).Decode(&o); err != nil {
|
2021-09-01 08:43:12 -04:00
|
|
|
return nil, err
|
2019-12-24 03:32:11 -05:00
|
|
|
}
|
2021-07-13 10:35:02 -04:00
|
|
|
ev.event = o.Event
|
2020-01-16 03:18:08 -05:00
|
|
|
if u, ok := o.Data["user"]; ok {
|
|
|
|
|
// We need to convert to and from JSON again
|
2022-07-05 02:46:50 -04:00
|
|
|
// because the user is in the form of a map[string]any.
|
2020-01-16 03:18:08 -05:00
|
|
|
buf, err := json.Marshal(u)
|
|
|
|
|
if err != nil {
|
2021-09-01 08:43:12 -04:00
|
|
|
return nil, err
|
2020-01-16 03:18:08 -05:00
|
|
|
}
|
2021-09-01 08:43:12 -04:00
|
|
|
|
|
|
|
|
var user User
|
|
|
|
|
if err = json.Unmarshal(buf, &user); err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
o.Data["user"] = &user
|
2020-01-16 03:18:08 -05:00
|
|
|
}
|
2021-07-13 10:35:02 -04:00
|
|
|
ev.data = o.Data
|
|
|
|
|
ev.broadcast = o.Broadcast
|
|
|
|
|
ev.sequence = o.Sequence
|
2021-09-01 08:43:12 -04:00
|
|
|
return &ev, nil
|
2016-07-12 09:36:27 -04:00
|
|
|
}
|
|
|
|
|
|
2019-12-24 08:51:03 -05:00
|
|
|
// WebSocketResponse represents a response received through the WebSocket
|
|
|
|
|
// for a request made to the server. This is available through the ResponseChannel
|
|
|
|
|
// channel in WebSocketClient.
|
2016-07-12 09:36:27 -04:00
|
|
|
type WebSocketResponse struct {
|
2022-07-05 02:46:50 -04:00
|
|
|
Status string `json:"status"` // The status of the response. For example: OK, FAIL.
|
|
|
|
|
SeqReply int64 `json:"seq_reply,omitempty"` // A counter which is incremented for every response sent.
|
|
|
|
|
Data map[string]any `json:"data,omitempty"` // The data contained in the response.
|
|
|
|
|
Error *AppError `json:"error,omitempty"` // A field that is set if any error has occurred.
|
2016-07-12 09:36:27 -04:00
|
|
|
}
|
|
|
|
|
|
2022-07-05 02:46:50 -04:00
|
|
|
func (m *WebSocketResponse) Add(key string, value any) {
|
2016-07-12 09:36:27 -04:00
|
|
|
m.Data[key] = value
|
|
|
|
|
}
|
|
|
|
|
|
2022-07-05 02:46:50 -04:00
|
|
|
func NewWebSocketResponse(status string, seqReply int64, data map[string]any) *WebSocketResponse {
|
2016-07-12 09:36:27 -04:00
|
|
|
return &WebSocketResponse{Status: status, SeqReply: seqReply, Data: data}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func NewWebSocketError(seqReply int64, err *AppError) *WebSocketResponse {
|
2021-07-12 14:05:36 -04:00
|
|
|
return &WebSocketResponse{Status: StatusFail, SeqReply: seqReply, Error: err}
|
2016-07-12 09:36:27 -04:00
|
|
|
}
|
|
|
|
|
|
2020-01-07 04:47:03 -05:00
|
|
|
func (m *WebSocketResponse) IsValid() bool {
|
|
|
|
|
return m.Status != ""
|
2016-07-12 09:36:27 -04:00
|
|
|
}
|
|
|
|
|
|
2023-11-22 05:09:48 -05:00
|
|
|
func (m *WebSocketResponse) EventType() WebsocketEventType {
|
2021-07-12 14:05:36 -04:00
|
|
|
return WebsocketEventResponse
|
2016-11-22 14:05:54 -05:00
|
|
|
}
|
|
|
|
|
|
2021-09-01 08:43:12 -04:00
|
|
|
func (m *WebSocketResponse) ToJSON() ([]byte, error) {
|
|
|
|
|
return json.Marshal(m)
|
2016-07-12 09:36:27 -04:00
|
|
|
}
|
|
|
|
|
|
2021-09-01 08:43:12 -04:00
|
|
|
func WebSocketResponseFromJSON(data io.Reader) (*WebSocketResponse, error) {
|
2018-01-30 18:23:00 -05:00
|
|
|
var o *WebSocketResponse
|
2021-09-01 08:43:12 -04:00
|
|
|
return o, json.NewDecoder(data).Decode(&o)
|
2016-07-12 09:36:27 -04:00
|
|
|
}
|
2025-12-11 01:59:50 -05:00
|
|
|
|
|
|
|
|
func (ev *WebSocketEvent) Reject() {
|
|
|
|
|
ev.rejected = true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (ev *WebSocketEvent) IsRejected() bool {
|
|
|
|
|
return ev.rejected
|
|
|
|
|
}
|