mirror of
https://github.com/mattermost/mattermost.git
synced 2026-05-25 19:12:15 -04:00
* feat: include connection id in the plugin context * refactor: group ConnectionId next to SessionId in plugin Context Addresses review feedback to keep related identifier fields adjacent. * fix(files): forward Connection-Id on file uploads to plugin hooks The webapp uploadFile XHR didn't attach the Connection-Id header, so FileWillBeUploaded plugin hooks always received an empty ConnectionId. Read it from the websocket selector and set it on the request, matching how drafts and channel bookmarks already do it. Adds a server-side test asserting the connection id propagates through pluginContext. * fix(lint): reorder file_actions imports to satisfy import/order * Document ConnectionId on request.Context
16 lines
460 B
Go
16 lines
460 B
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package plugin
|
|
|
|
// Context passes through metadata about the request or hook event.
|
|
// For requests this is built in app/plugin_requests.go
|
|
// For hooks, app.PluginContext() is called.
|
|
type Context struct {
|
|
SessionId string
|
|
ConnectionId string
|
|
RequestId string
|
|
IPAddress string
|
|
AcceptLanguage string
|
|
UserAgent string
|
|
}
|