2019-11-29 12:59:40 +01:00
|
|
|
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
|
|
|
// See LICENSE.txt for license information.
|
2019-11-04 09:49:54 -03:00
|
|
|
|
|
|
|
|
package model
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"net/http"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// PluginKVSetOptions contains information on how to store a value in the plugin KV store.
|
|
|
|
|
type PluginKVSetOptions struct {
|
2019-12-03 10:46:15 +01:00
|
|
|
Atomic bool // Only store the value if the current value matches the oldValue
|
|
|
|
|
OldValue []byte // The value to compare with the current value. Only used when Atomic is true
|
|
|
|
|
ExpireInSeconds int64 // Set an expire counter
|
2019-11-04 09:49:54 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// IsValid returns nil if the chosen options are valid.
|
|
|
|
|
func (opt *PluginKVSetOptions) IsValid() *AppError {
|
|
|
|
|
if !opt.Atomic && opt.OldValue != nil {
|
|
|
|
|
return NewAppError(
|
|
|
|
|
"PluginKVSetOptions.IsValid",
|
|
|
|
|
"model.plugin_kvset_options.is_valid.old_value.app_error",
|
|
|
|
|
nil,
|
|
|
|
|
"",
|
|
|
|
|
http.StatusBadRequest,
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// NewPluginKeyValueFromOptions return a PluginKeyValue given a pluginID, a KV pair and options.
|
2019-12-03 10:46:15 +01:00
|
|
|
func NewPluginKeyValueFromOptions(pluginId, key string, value []byte, opt PluginKVSetOptions) (*PluginKeyValue, *AppError) {
|
2019-11-04 09:49:54 -03:00
|
|
|
expireAt := int64(0)
|
2020-02-18 16:32:46 -04:00
|
|
|
if opt.ExpireInSeconds != 0 {
|
2019-11-04 09:49:54 -03:00
|
|
|
expireAt = GetMillis() + (opt.ExpireInSeconds * 1000)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
kv := &PluginKeyValue{
|
|
|
|
|
PluginId: pluginId,
|
|
|
|
|
Key: key,
|
2019-12-03 10:46:15 +01:00
|
|
|
Value: value,
|
2019-11-04 09:49:54 -03:00
|
|
|
ExpireAt: expireAt,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return kv, nil
|
|
|
|
|
}
|