123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- package api
- import (
- "encoding/json"
- "errors"
- "fmt"
- "golang.org/x/exp/slices"
- )
- type SystemSettingName string
- const (
- // SystemSettingServerIDName is the name of server id.
- SystemSettingServerIDName SystemSettingName = "server-id"
- // SystemSettingSecretSessionName is the name of secret session.
- SystemSettingSecretSessionName SystemSettingName = "secret-session"
- // SystemSettingAllowSignUpName is the name of allow signup setting.
- SystemSettingAllowSignUpName SystemSettingName = "allow-signup"
- // SystemSettingDisablePublicMemosName is the name of disable public memos setting.
- SystemSettingDisablePublicMemosName SystemSettingName = "disable-public-memos"
- // SystemSettingAdditionalStyleName is the name of additional style.
- SystemSettingAdditionalStyleName SystemSettingName = "additional-style"
- // SystemSettingAdditionalScriptName is the name of additional script.
- SystemSettingAdditionalScriptName SystemSettingName = "additional-script"
- // SystemSettingCustomizedProfileName is the name of customized server profile.
- SystemSettingCustomizedProfileName SystemSettingName = "customized-profile"
- // SystemSettingStorageServiceIDName is the name of storage service ID.
- SystemSettingStorageServiceIDName SystemSettingName = "storage-service-id"
- // SystemSettingLocalStoragePathName is the name of local storage path.
- SystemSettingLocalStoragePathName SystemSettingName = "local-storage-path"
- // SystemSettingOpenAIConfigName is the name of OpenAI config.
- SystemSettingOpenAIConfigName SystemSettingName = "openai-config"
- )
- // CustomizedProfile is the struct definition for SystemSettingCustomizedProfileName system setting item.
- type CustomizedProfile struct {
- // Name is the server name, default is `memos`
- Name string `json:"name"`
- // LogoURL is the url of logo image.
- LogoURL string `json:"logoUrl"`
- // Description is the server description.
- Description string `json:"description"`
- // Locale is the server default locale.
- Locale string `json:"locale"`
- // Appearance is the server default appearance.
- Appearance string `json:"appearance"`
- // ExternalURL is the external url of server. e.g. https://usermemos.com
- ExternalURL string `json:"externalUrl"`
- }
- type OpenAIConfig struct {
- Key string `json:"key"`
- Host string `json:"host"`
- }
- func (key SystemSettingName) String() string {
- switch key {
- case SystemSettingServerIDName:
- return "server-id"
- case SystemSettingSecretSessionName:
- return "secret-session"
- case SystemSettingAllowSignUpName:
- return "allow-signup"
- case SystemSettingDisablePublicMemosName:
- return "disable-public-memos"
- case SystemSettingAdditionalStyleName:
- return "additional-style"
- case SystemSettingAdditionalScriptName:
- return "additional-script"
- case SystemSettingCustomizedProfileName:
- return "customized-profile"
- case SystemSettingStorageServiceIDName:
- return "storage-service-id"
- case SystemSettingLocalStoragePathName:
- return "local-storage-path"
- case SystemSettingOpenAIConfigName:
- return "openai-config"
- }
- return ""
- }
- type SystemSetting struct {
- Name SystemSettingName `json:"name"`
- // Value is a JSON string with basic value.
- Value string `json:"value"`
- Description string `json:"description"`
- }
- type SystemSettingUpsert struct {
- Name SystemSettingName `json:"name"`
- Value string `json:"value"`
- Description string `json:"description"`
- }
- func (upsert SystemSettingUpsert) Validate() error {
- if upsert.Name == SystemSettingServerIDName {
- return errors.New("update server id is not allowed")
- } else if upsert.Name == SystemSettingAllowSignUpName {
- value := false
- err := json.Unmarshal([]byte(upsert.Value), &value)
- if err != nil {
- return fmt.Errorf("failed to unmarshal system setting allow signup value")
- }
- } else if upsert.Name == SystemSettingDisablePublicMemosName {
- value := false
- err := json.Unmarshal([]byte(upsert.Value), &value)
- if err != nil {
- return fmt.Errorf("failed to unmarshal system setting disable public memos value")
- }
- } else if upsert.Name == SystemSettingAdditionalStyleName {
- value := ""
- err := json.Unmarshal([]byte(upsert.Value), &value)
- if err != nil {
- return fmt.Errorf("failed to unmarshal system setting additional style value")
- }
- } else if upsert.Name == SystemSettingAdditionalScriptName {
- value := ""
- err := json.Unmarshal([]byte(upsert.Value), &value)
- if err != nil {
- return fmt.Errorf("failed to unmarshal system setting additional script value")
- }
- } else if upsert.Name == SystemSettingCustomizedProfileName {
- customizedProfile := CustomizedProfile{
- Name: "memos",
- LogoURL: "",
- Description: "",
- Locale: "en",
- Appearance: "system",
- ExternalURL: "",
- }
- err := json.Unmarshal([]byte(upsert.Value), &customizedProfile)
- if err != nil {
- return fmt.Errorf("failed to unmarshal system setting customized profile value")
- }
- if !slices.Contains(UserSettingLocaleValue, customizedProfile.Locale) {
- return fmt.Errorf("invalid locale value")
- }
- if !slices.Contains(UserSettingAppearanceValue, customizedProfile.Appearance) {
- return fmt.Errorf("invalid appearance value")
- }
- } else if upsert.Name == SystemSettingStorageServiceIDName {
- value := DatabaseStorage
- err := json.Unmarshal([]byte(upsert.Value), &value)
- if err != nil {
- return fmt.Errorf("failed to unmarshal system setting storage service id value")
- }
- return nil
- } else if upsert.Name == SystemSettingLocalStoragePathName {
- value := ""
- err := json.Unmarshal([]byte(upsert.Value), &value)
- if err != nil {
- return fmt.Errorf("failed to unmarshal system setting local storage path value")
- }
- } else if upsert.Name == SystemSettingOpenAIConfigName {
- value := OpenAIConfig{}
- err := json.Unmarshal([]byte(upsert.Value), &value)
- if err != nil {
- return fmt.Errorf("failed to unmarshal system setting openai api config value")
- }
- } else {
- return fmt.Errorf("invalid system setting name")
- }
- return nil
- }
- type SystemSettingFind struct {
- Name SystemSettingName `json:"name"`
- }
|