Bump Go dependencies in both backend/ and backend/_example/memory_store.
Notable updates:
- github.com/go-pkgz/lgr v0.12.1 -> v0.12.3
- github.com/klauspost/compress v1.18.2 -> v1.18.5
- github.com/PuerkitoBio/goquery v1.11.0 -> v1.12.0
- github.com/montanaflynn/stats v0.7.1 -> v0.9.0
- github.com/redis/go-redis/v9 v9.17.2 -> v9.18.0
- github.com/slack-go/slack v0.17.3 -> v0.21.1
- go.mongodb.org/mongo-driver v1.17.6 -> v1.17.9
- golang.org/x/crypto v0.48.0 -> v0.50.0
- golang.org/x/net v0.49.0 -> v0.53.0
- golang.org/x/image v0.36.0 -> v0.39.0
- golang.org/x/sys v0.41.0 -> v0.43.0
- golang.org/x/{oauth2,sync,text} minor bumps
Key markdown/sanitisation libs (bluemonday v1.0.27,
alecthomas/chroma/v2 v2.23.1, russross/blackfriday/v2 v2.1.0,
Depado/bfchroma/v2 v2.0.0) are already at the latest available
versions and were not bumped.
Verified the Chroma span-class allowlist regex in
backend/app/store/comment.go:128-131 is still fully in sync with
chroma/v2 types.go StandardTypes map (86 classes, byte-equal after
sorting). The inline comment references commit c263f6f which is
stale (Chroma is at v2 now), but the class list content is current.
Ran `go mod tidy` + `go mod vendor` + full race test suite on both
modules. All green. Added a reminder in CLAUDE.md that updating
backend/ Go modules also requires `go mod tidy` in
backend/_example/memory_store since the example module uses a
local replace directive and inherits indirect deps from the main
module.
102 lines
4.7 KiB
Go
102 lines
4.7 KiB
Go
package slack
|
|
|
|
import "encoding/json"
|
|
|
|
// AttachmentField contains information for an attachment field
|
|
// An Attachment can contain multiple of these
|
|
type AttachmentField struct {
|
|
Title string `json:"title"`
|
|
Value string `json:"value"`
|
|
Short bool `json:"short"`
|
|
}
|
|
|
|
// AttachmentAction is a button or menu to be included in the attachment. Required when
|
|
// using message buttons or menus and otherwise not useful. A maximum of 5 actions may be
|
|
// provided per attachment.
|
|
type AttachmentAction struct {
|
|
Name string `json:"name"` // Required.
|
|
Text string `json:"text"` // Required.
|
|
Style string `json:"style,omitempty"` // Optional. Allowed values: "default", "primary", "danger".
|
|
Type ActionType `json:"type"` // Required. Must be set to "button" or "select".
|
|
Value string `json:"value,omitempty"` // Optional.
|
|
DataSource string `json:"data_source,omitempty"` // Optional.
|
|
MinQueryLength int `json:"min_query_length,omitempty"` // Optional. Default value is 1.
|
|
Options []AttachmentActionOption `json:"options,omitempty"` // Optional. Maximum of 100 options can be provided in each menu.
|
|
SelectedOptions []AttachmentActionOption `json:"selected_options,omitempty"` // Optional. The first element of this array will be set as the pre-selected option for this menu.
|
|
OptionGroups []AttachmentActionOptionGroup `json:"option_groups,omitempty"` // Optional.
|
|
Confirm *ConfirmationField `json:"confirm,omitempty"` // Optional.
|
|
URL string `json:"url,omitempty"` // Optional.
|
|
}
|
|
|
|
// actionType returns the type of the action
|
|
func (a AttachmentAction) actionType() ActionType {
|
|
return a.Type
|
|
}
|
|
|
|
// AttachmentActionOption the individual option to appear in action menu.
|
|
type AttachmentActionOption struct {
|
|
Text string `json:"text"` // Required.
|
|
Value string `json:"value"` // Required.
|
|
Description string `json:"description,omitempty"` // Optional. Up to 30 characters.
|
|
}
|
|
|
|
// AttachmentActionOptionGroup is a semi-hierarchal way to list available options to appear in action menu.
|
|
type AttachmentActionOptionGroup struct {
|
|
Text string `json:"text"` // Required.
|
|
Options []AttachmentActionOption `json:"options"` // Required.
|
|
}
|
|
|
|
// AttachmentActionCallback is sent from Slack when a user clicks a button in an interactive message (aka AttachmentAction)
|
|
// DEPRECATED: use InteractionCallback
|
|
type AttachmentActionCallback InteractionCallback
|
|
|
|
// ConfirmationField are used to ask users to confirm actions
|
|
type ConfirmationField struct {
|
|
Title string `json:"title,omitempty"` // Optional.
|
|
Text string `json:"text"` // Required.
|
|
OkText string `json:"ok_text,omitempty"` // Optional. Defaults to "Okay"
|
|
DismissText string `json:"dismiss_text,omitempty"` // Optional. Defaults to "Cancel"
|
|
}
|
|
|
|
// Attachment contains all the information for an attachment
|
|
type Attachment struct {
|
|
Color string `json:"color,omitempty"`
|
|
Fallback string `json:"fallback,omitempty"`
|
|
|
|
CallbackID string `json:"callback_id,omitempty"`
|
|
ID int `json:"id,omitempty"`
|
|
|
|
AuthorID string `json:"author_id,omitempty"`
|
|
AuthorName string `json:"author_name,omitempty"`
|
|
AuthorSubname string `json:"author_subname,omitempty"`
|
|
AuthorLink string `json:"author_link,omitempty"`
|
|
AuthorIcon string `json:"author_icon,omitempty"`
|
|
|
|
Title string `json:"title,omitempty"`
|
|
TitleLink string `json:"title_link,omitempty"`
|
|
Pretext string `json:"pretext,omitempty"`
|
|
Text string `json:"text,omitempty"`
|
|
|
|
ImageURL string `json:"image_url,omitempty"`
|
|
ImageBytes int `json:"image_bytes,omitempty"`
|
|
ImageHeight int `json:"image_height,omitempty"`
|
|
ImageWidth int `json:"image_width,omitempty"`
|
|
ThumbURL string `json:"thumb_url,omitempty"`
|
|
|
|
ServiceName string `json:"service_name,omitempty"`
|
|
ServiceIcon string `json:"service_icon,omitempty"`
|
|
FromURL string `json:"from_url,omitempty"`
|
|
OriginalURL string `json:"original_url,omitempty"`
|
|
|
|
Fields []AttachmentField `json:"fields,omitempty"`
|
|
Actions []AttachmentAction `json:"actions,omitempty"`
|
|
MarkdownIn []string `json:"mrkdwn_in,omitempty"`
|
|
|
|
Blocks Blocks `json:"blocks,omitempty"`
|
|
|
|
Footer string `json:"footer,omitempty"`
|
|
FooterIcon string `json:"footer_icon,omitempty"`
|
|
|
|
Ts json.Number `json:"ts,omitempty"`
|
|
}
|