mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-03 20:40:00 -05:00
Some checks are pending
API / build (push) Waiting to run
Server CI / Compute Go Version (push) Waiting to run
Server CI / Check mocks (push) Blocked by required conditions
Server CI / Check go mod tidy (push) Blocked by required conditions
Server CI / check-style (push) Blocked by required conditions
Server CI / Check serialization methods for hot structs (push) Blocked by required conditions
Server CI / Vet API (push) Blocked by required conditions
Server CI / Check migration files (push) Blocked by required conditions
Server CI / Generate email templates (push) Blocked by required conditions
Server CI / Check store layers (push) Blocked by required conditions
Server CI / Check mmctl docs (push) Blocked by required conditions
Server CI / Postgres with binary parameters (push) Blocked by required conditions
Server CI / Postgres (push) Blocked by required conditions
Server CI / Postgres (FIPS) (push) Blocked by required conditions
Server CI / Generate Test Coverage (push) Blocked by required conditions
Server CI / Run mmctl tests (push) Blocked by required conditions
Server CI / Run mmctl tests (FIPS) (push) Blocked by required conditions
Server CI / Build mattermost server app (push) Blocked by required conditions
Web App CI / check-lint (push) Waiting to run
Web App CI / check-i18n (push) Blocked by required conditions
Web App CI / check-types (push) Blocked by required conditions
Web App CI / test (platform) (push) Blocked by required conditions
Web App CI / test (mattermost-redux) (push) Blocked by required conditions
Web App CI / test (channels shard 1/4) (push) Blocked by required conditions
Web App CI / test (channels shard 2/4) (push) Blocked by required conditions
Web App CI / test (channels shard 3/4) (push) Blocked by required conditions
Web App CI / test (channels shard 4/4) (push) Blocked by required conditions
Web App CI / upload-coverage (push) Blocked by required conditions
Web App CI / build (push) Blocked by required conditions
* Add read receipt store for burn on read message types * update mocks * fix invalidation target * have consistent case on index creation * Add temporary posts table * add mock * add transaction support * reflect review comments * wip: Add reveal endpoint * user check error id instead * wip: Add ws events and cleanup for burn on read posts * add burn endpoint for explicitly burning messages * add translations * Added logic to associate files of BoR post with the post * Added test * fixes * disable pinning posts and review comments * MM-66594 - Burn on read UI integration (#34647) * MM-66244 - add BoR visual components to message editor * MM-66246 - BoR visual indicator for sender and receiver * MM-66607 - bor - add timer countdown and autodeletion * add the system console max time to live config * use the max expire at and create global scheduler to register bor messages * use seconds for BoR config values in BE * implement the read by text shown in the tooltip logic * unestack the posts from same receiver and BoR and fix styling * avoid opening reply RHS * remove unused dispatchers * persis the BoR label in the drafts * move expiration value to metadata * adjust unit tests to metadata insted of props * code clean up and some performance improvements; add period grace for deletion too * adjust migration serie number * hide bor messages when config is off * performance improvements on post component and code clean up * keep bor existing post functionality if config is disabled * Add read receipt store for burn on read message types * Add temporary posts table * add transaction support * reflect review comments * wip: Add reveal endpoint * user check error id instead * wip: Add ws events and cleanup for burn on read posts * avoid reacting to unrevealed bor messages * adjust migration number * Add read receipt store for burn on read message types * have consistent case on index creation * Add temporary posts table * add mock * add transaction support * reflect review comments * wip: Add reveal endpoint * user check error id instead * wip: Add ws events and cleanup for burn on read posts * add burn endpoint for explicitly burning messages * adjust post reveal and type with backend changes * use real config values, adjust icon usage and style * adjust the delete from from sender and receiver * improve self deleting logic by placing in badge, use burn endpoint * adjust websocket events handling for the read by sender label information * adjust styling for concealed and error state * update burn-on-read post event handling for improved recipient tracking and multi-device sync * replace burn_on_read with type in database migrations and model * remove burn_on_read metadata from PostMetadata and related structures * Added logic to associate files of BoR post with the post * Added test * adjust migration name and fix linter * Add read receipt store for burn on read message types * update mocks * have consistent case on index creation * Add temporary posts table * add mock * add transaction support * reflect review comments * wip: Add reveal endpoint * user check error id instead * wip: Add ws events and cleanup for burn on read posts * add burn endpoint for explicitly burning messages * Added logic to associate files of BoR post with the post * Added test * disable pinning posts and review comments * show attachment on bor reveal * remove unused translation * Enhance burn-on-read post handling and refine previous post ID retrieval logic * adjust the returning chunk to work with bor messages * read temp post from master db * read from master * show the copy link button to the sender * revert unnecessary check * restore correct json tag * remove unused error handling and clarify burn-on-read comment * improve type safety and use proper selectors * eliminate code duplication in deletion handler * optimize performance and add documentation * delete bor message for sender once all receivers reveal it * add burn on read to scheduled posts * add feature enable check * use master to avoid all read recipients race condition --------- Co-authored-by: Mattermost Build <build@mattermost.com> Co-authored-by: Ibrahim Serdar Acikgoz <serdaracikgoz86@gmail.com> Co-authored-by: Harshil Sharma <harshilsharma63@gmail.com> * squash migrations into single file * add configuration for the scheduler * don't run messagehasbeenposted hook * remove parallel tests on burn on read * add clean up for closing opened modals from previous tests * simplify delete menu item rendering * add cleanup step to close open modals after each test to prevent pollution * streamline delete button visibility logic for Burn on Read posts * improve reliability of closing post menu and modals by using body ESC key --------- Co-authored-by: Harshil Sharma <harshilsharma63@gmail.com> Co-authored-by: Pablo Vélez <pablovv2012@gmail.com> Co-authored-by: Mattermost Build <build@mattermost.com>
190 lines
4.5 KiB
Go
190 lines
4.5 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package store
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
)
|
|
|
|
// ErrInvalidInput indicates an error that has occurred due to an invalid input.
|
|
type ErrInvalidInput struct {
|
|
Entity string // The entity which was sent as the input.
|
|
Field string // The field of the entity which was invalid.
|
|
Value any // The actual value of the field.
|
|
wrapped error // The original error
|
|
}
|
|
|
|
func NewErrInvalidInput(entity, field string, value any) *ErrInvalidInput {
|
|
return &ErrInvalidInput{
|
|
Entity: entity,
|
|
Field: field,
|
|
Value: value,
|
|
}
|
|
}
|
|
|
|
func (e *ErrInvalidInput) Error() string {
|
|
if e.wrapped != nil {
|
|
return fmt.Sprintf("invalid input: entity: %s field: %s value: %s error: %s", e.Entity, e.Field, e.Value, e.wrapped)
|
|
}
|
|
|
|
return fmt.Sprintf("invalid input: entity: %s field: %s value: %s", e.Entity, e.Field, e.Value)
|
|
}
|
|
|
|
func (e *ErrInvalidInput) Wrap(err error) *ErrInvalidInput {
|
|
e.wrapped = err
|
|
return e
|
|
}
|
|
|
|
func (e *ErrInvalidInput) Unwrap() error {
|
|
return e.wrapped
|
|
}
|
|
|
|
func (e *ErrInvalidInput) InvalidInputInfo() (entity string, field string, value any) {
|
|
entity = e.Entity
|
|
field = e.Field
|
|
value = e.Value
|
|
return
|
|
}
|
|
|
|
// ErrLimitExceeded indicates an error that has occurred because some value exceeded a limit.
|
|
type ErrLimitExceeded struct {
|
|
What string // What was the object that exceeded.
|
|
Count int // The value of the object.
|
|
meta string // Any additional metadata.
|
|
}
|
|
|
|
func NewErrLimitExceeded(what string, count int, meta string) *ErrLimitExceeded {
|
|
return &ErrLimitExceeded{
|
|
What: what,
|
|
Count: count,
|
|
meta: meta,
|
|
}
|
|
}
|
|
|
|
func (e *ErrLimitExceeded) Error() string {
|
|
return fmt.Sprintf("limit exceeded: what: %s count: %d metadata: %s", e.What, e.Count, e.meta)
|
|
}
|
|
|
|
// ErrConflict indicates a conflict that occurred.
|
|
type ErrConflict struct {
|
|
Resource string // The resource which created the conflict.
|
|
err error // Internal error.
|
|
meta string // Any additional metadata.
|
|
}
|
|
|
|
func NewErrConflict(resource string, err error, meta string) *ErrConflict {
|
|
return &ErrConflict{
|
|
Resource: resource,
|
|
err: err,
|
|
meta: meta,
|
|
}
|
|
}
|
|
|
|
func (e *ErrConflict) Error() string {
|
|
msg := e.Resource + "exists " + e.meta
|
|
if e.err != nil {
|
|
msg += " " + e.err.Error()
|
|
}
|
|
return msg
|
|
}
|
|
|
|
func (e *ErrConflict) Unwrap() error {
|
|
return e.err
|
|
}
|
|
|
|
// IsErrConflict allows easy type assertion without adding store as a dependency.
|
|
func (e *ErrConflict) IsErrConflict() bool {
|
|
return true
|
|
}
|
|
|
|
// ErrNotFound indicates that a resource was not found
|
|
type ErrNotFound struct {
|
|
resource string
|
|
ID string
|
|
wrapped error
|
|
}
|
|
|
|
func NewErrNotFound(resource, id string) *ErrNotFound {
|
|
return &ErrNotFound{
|
|
resource: resource,
|
|
ID: id,
|
|
}
|
|
}
|
|
|
|
func (e *ErrNotFound) Wrap(err error) *ErrNotFound {
|
|
e.wrapped = err
|
|
return e
|
|
}
|
|
|
|
func (e *ErrNotFound) Error() string {
|
|
if e.wrapped != nil {
|
|
return fmt.Sprintf("resource %q not found, id: %s, error: %s", e.resource, e.ID, e.wrapped)
|
|
}
|
|
|
|
return fmt.Sprintf("resource %q not found, id: %s", e.resource, e.ID)
|
|
}
|
|
|
|
// IsErrNotFound allows easy type assertion without adding store as a dependency.
|
|
func (e *ErrNotFound) IsErrNotFound() bool {
|
|
return true
|
|
}
|
|
|
|
// ErrOutOfBounds indicates that the requested total numbers of rows
|
|
// was greater than the allowed limit.
|
|
type ErrOutOfBounds struct {
|
|
value int
|
|
}
|
|
|
|
func (e *ErrOutOfBounds) Error() string {
|
|
return fmt.Sprintf("invalid limit parameter: %d", e.value)
|
|
}
|
|
|
|
func NewErrOutOfBounds(value int) *ErrOutOfBounds {
|
|
return &ErrOutOfBounds{value: value}
|
|
}
|
|
|
|
// ErrNotImplemented indicates that some feature or requirement is not implemented yet.
|
|
type ErrNotImplemented struct {
|
|
detail string
|
|
}
|
|
|
|
func (e *ErrNotImplemented) Error() string {
|
|
return e.detail
|
|
}
|
|
|
|
func NewErrNotImplemented(detail string) *ErrNotImplemented {
|
|
return &ErrNotImplemented{detail: detail}
|
|
}
|
|
|
|
type ErrUniqueConstraint struct {
|
|
Columns []string
|
|
}
|
|
|
|
// NewErrUniqueConstraint creates a uniqueness constraint error for the given column(s).
|
|
//
|
|
// Examples:
|
|
//
|
|
// store.NewErrUniqueConstraint("DisplayName") // single column constraint
|
|
// store.NewErrUniqueConstraint("Name", "Source") // multi-column constraint
|
|
func NewErrUniqueConstraint(columns ...string) *ErrUniqueConstraint {
|
|
return &ErrUniqueConstraint{
|
|
Columns: columns,
|
|
}
|
|
}
|
|
|
|
func (e *ErrUniqueConstraint) Error() string {
|
|
var tmpl string
|
|
if len(e.Columns) > 1 {
|
|
tmpl = "unique constraint: (%s)"
|
|
} else {
|
|
tmpl = "unique constraint: %s"
|
|
}
|
|
return fmt.Sprintf(tmpl, strings.Join(e.Columns, ","))
|
|
}
|
|
|
|
func IsErrNotFound(err error) bool {
|
|
_, ok := err.(*ErrNotFound)
|
|
return ok
|
|
}
|