2022-08-13 09:35:33 +03:00
|
|
|
package api
|
|
|
|
|
2022-08-20 16:51:28 +03:00
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
2022-12-22 14:48:44 +03:00
|
|
|
|
|
|
|
"golang.org/x/exp/slices"
|
2022-08-20 16:51:28 +03:00
|
|
|
)
|
|
|
|
|
2022-08-13 09:35:33 +03:00
|
|
|
type UserSettingKey string
|
|
|
|
|
|
|
|
const (
|
2022-08-18 19:00:47 +03:00
|
|
|
// UserSettingLocaleKey is the key type for user locale.
|
2022-08-13 09:35:33 +03:00
|
|
|
UserSettingLocaleKey UserSettingKey = "locale"
|
2022-12-02 15:00:34 +03:00
|
|
|
// UserSettingAppearanceKey is the key type for user appearance.
|
|
|
|
UserSettingAppearanceKey UserSettingKey = "appearance"
|
2022-08-24 16:53:12 +03:00
|
|
|
// UserSettingMemoVisibilityKey is the key type for user preference memo default visibility.
|
2022-08-19 16:56:22 +03:00
|
|
|
UserSettingMemoVisibilityKey UserSettingKey = "memoVisibility"
|
2023-02-27 17:16:33 +03:00
|
|
|
// UserSettingResourceVisibilityKey is the key type for user preference resource default visibility.
|
|
|
|
UserSettingResourceVisibilityKey UserSettingKey = "resourceVisibility"
|
2022-08-13 09:35:33 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
// String returns the string format of UserSettingKey type.
|
|
|
|
func (key UserSettingKey) String() string {
|
|
|
|
switch key {
|
|
|
|
case UserSettingLocaleKey:
|
|
|
|
return "locale"
|
2022-12-02 15:00:34 +03:00
|
|
|
case UserSettingAppearanceKey:
|
|
|
|
return "appearance"
|
2022-08-18 19:00:47 +03:00
|
|
|
case UserSettingMemoVisibilityKey:
|
2022-08-19 16:56:22 +03:00
|
|
|
return "memoVisibility"
|
2023-02-27 17:16:33 +03:00
|
|
|
case UserSettingResourceVisibilityKey:
|
|
|
|
return "resourceVisibility"
|
2022-08-13 09:35:33 +03:00
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2022-08-20 16:51:28 +03:00
|
|
|
var (
|
2023-03-02 05:05:15 +03:00
|
|
|
UserSettingLocaleValue = []string{"en", "zh", "vi", "fr", "nl", "sv", "de", "es", "uk", "ru", "it", "hant", "tr", "ko"}
|
2023-02-27 17:16:33 +03:00
|
|
|
UserSettingAppearanceValue = []string{"system", "light", "dark"}
|
|
|
|
UserSettingMemoVisibilityValue = []Visibility{Private, Protected, Public}
|
|
|
|
UserSettingResourceVisibilityValue = []Visibility{Private, Protected, Public}
|
2022-08-20 16:51:28 +03:00
|
|
|
)
|
|
|
|
|
2022-08-13 09:35:33 +03:00
|
|
|
type UserSetting struct {
|
|
|
|
UserID int
|
|
|
|
Key UserSettingKey `json:"key"`
|
|
|
|
// Value is a JSON string with basic value
|
|
|
|
Value string `json:"value"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type UserSettingUpsert struct {
|
2022-12-28 15:22:52 +03:00
|
|
|
UserID int `json:"-"`
|
2022-08-13 09:35:33 +03:00
|
|
|
Key UserSettingKey `json:"key"`
|
|
|
|
Value string `json:"value"`
|
|
|
|
}
|
|
|
|
|
2022-08-20 16:51:28 +03:00
|
|
|
func (upsert UserSettingUpsert) Validate() error {
|
|
|
|
if upsert.Key == UserSettingLocaleKey {
|
2022-08-25 15:44:32 +03:00
|
|
|
localeValue := "en"
|
2022-08-20 16:51:28 +03:00
|
|
|
err := json.Unmarshal([]byte(upsert.Value), &localeValue)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to unmarshal user setting locale value")
|
|
|
|
}
|
2022-12-22 14:48:44 +03:00
|
|
|
if !slices.Contains(UserSettingLocaleValue, localeValue) {
|
2022-08-20 16:51:28 +03:00
|
|
|
return fmt.Errorf("invalid user setting locale value")
|
|
|
|
}
|
2022-12-02 15:00:34 +03:00
|
|
|
} else if upsert.Key == UserSettingAppearanceKey {
|
2022-12-22 14:48:44 +03:00
|
|
|
appearanceValue := "system"
|
2022-12-02 15:00:34 +03:00
|
|
|
err := json.Unmarshal([]byte(upsert.Value), &appearanceValue)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to unmarshal user setting appearance value")
|
|
|
|
}
|
2022-12-22 14:48:44 +03:00
|
|
|
if !slices.Contains(UserSettingAppearanceValue, appearanceValue) {
|
2022-12-02 15:00:34 +03:00
|
|
|
return fmt.Errorf("invalid user setting appearance value")
|
|
|
|
}
|
2022-08-20 16:51:28 +03:00
|
|
|
} else if upsert.Key == UserSettingMemoVisibilityKey {
|
2022-11-26 09:23:29 +03:00
|
|
|
memoVisibilityValue := Private
|
2022-08-20 16:51:28 +03:00
|
|
|
err := json.Unmarshal([]byte(upsert.Value), &memoVisibilityValue)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to unmarshal user setting memo visibility value")
|
|
|
|
}
|
2022-12-22 14:48:44 +03:00
|
|
|
if !slices.Contains(UserSettingMemoVisibilityValue, memoVisibilityValue) {
|
2022-08-20 16:51:28 +03:00
|
|
|
return fmt.Errorf("invalid user setting memo visibility value")
|
|
|
|
}
|
2023-02-27 17:16:33 +03:00
|
|
|
} else if upsert.Key == UserSettingResourceVisibilityKey {
|
|
|
|
resourceVisibilityValue := Private
|
|
|
|
err := json.Unmarshal([]byte(upsert.Value), &resourceVisibilityValue)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to unmarshal user setting resource visibility value")
|
|
|
|
}
|
|
|
|
if !slices.Contains(UserSettingResourceVisibilityValue, resourceVisibilityValue) {
|
|
|
|
return fmt.Errorf("invalid user setting resource visibility value")
|
|
|
|
}
|
2022-08-20 16:51:28 +03:00
|
|
|
} else {
|
|
|
|
return fmt.Errorf("invalid user setting key")
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-08-13 09:35:33 +03:00
|
|
|
type UserSettingFind struct {
|
|
|
|
UserID int
|
2022-08-18 19:00:47 +03:00
|
|
|
|
2023-02-27 17:16:33 +03:00
|
|
|
Key UserSettingKey `json:"key"`
|
2022-08-13 09:35:33 +03:00
|
|
|
}
|
2022-11-06 07:21:58 +03:00
|
|
|
|
|
|
|
type UserSettingDelete struct {
|
|
|
|
UserID int
|
|
|
|
}
|