mirror of
https://github.com/usememos/memos.git
synced 2024-11-10 17:02:21 +08:00
96021e518a
* Add preliminar Windows support for both development and production environments. Default profile.Data will be set to "C:\ProgramData\memos" on Windows. Folder will be created if it does not exist, as this behavior is expected for Windows applications. System service installation can be achieved with third-party tools, explained in docs/windows-service.md. Not sure if it's worth using https://github.com/kardianos/service to make service support built-in. This could be a nice addition alongside #1583 (add Windows artifacts) * feat: improve Windows support - Fix local file storage path handling on Windows - Improve Windows dev script * feat: add max upload size setting to UI & more - feat: add max upload size setting to UI - feat: max upload size setting is checked on UI during upload, but also enforced by the server - fix: overflowing mobile layout for Create SSO, Create Storage and other Settings dialogs - feat: add HelpButton component with some links to docs were appropriate - remove LearnMore component in favor of HelpButton - refactor: change some if/else to switch statements - refactor: inline some err == nil checks ! Existing databases without the new setting 'max-upload-size-mib' will show an upload error, but this can be user-fixed by simply setting the value on system settings UI. * improvements requested by @boojack
168 lines
4.2 KiB
Go
168 lines
4.2 KiB
Go
package store
|
|
|
|
import (
|
|
"context"
|
|
"database/sql"
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/usememos/memos/api"
|
|
"github.com/usememos/memos/common"
|
|
)
|
|
|
|
type systemSettingRaw struct {
|
|
Name api.SystemSettingName
|
|
Value string
|
|
Description string
|
|
}
|
|
|
|
func (raw *systemSettingRaw) toSystemSetting() *api.SystemSetting {
|
|
return &api.SystemSetting{
|
|
Name: raw.Name,
|
|
Value: raw.Value,
|
|
Description: raw.Description,
|
|
}
|
|
}
|
|
|
|
func (s *Store) UpsertSystemSetting(ctx context.Context, upsert *api.SystemSettingUpsert) (*api.SystemSetting, error) {
|
|
tx, err := s.db.BeginTx(ctx, nil)
|
|
if err != nil {
|
|
return nil, FormatError(err)
|
|
}
|
|
defer tx.Rollback()
|
|
|
|
systemSettingRaw, err := upsertSystemSetting(ctx, tx, upsert)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if err := tx.Commit(); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
systemSetting := systemSettingRaw.toSystemSetting()
|
|
s.systemSettingCache.Store(systemSettingRaw.Name, systemSettingRaw)
|
|
return systemSetting, nil
|
|
}
|
|
|
|
func (s *Store) FindSystemSettingList(ctx context.Context, find *api.SystemSettingFind) ([]*api.SystemSetting, error) {
|
|
tx, err := s.db.BeginTx(ctx, nil)
|
|
if err != nil {
|
|
return nil, FormatError(err)
|
|
}
|
|
defer tx.Rollback()
|
|
|
|
systemSettingRawList, err := findSystemSettingList(ctx, tx, find)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if err := tx.Commit(); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
list := []*api.SystemSetting{}
|
|
for _, raw := range systemSettingRawList {
|
|
s.systemSettingCache.Store(raw.Name, raw)
|
|
list = append(list, raw.toSystemSetting())
|
|
}
|
|
return list, nil
|
|
}
|
|
|
|
func (s *Store) FindSystemSetting(ctx context.Context, find *api.SystemSettingFind) (*api.SystemSetting, error) {
|
|
if systemSetting, ok := s.systemSettingCache.Load(find.Name); ok {
|
|
systemSettingRaw := systemSetting.(*systemSettingRaw)
|
|
return systemSettingRaw.toSystemSetting(), nil
|
|
}
|
|
tx, err := s.db.BeginTx(ctx, nil)
|
|
if err != nil {
|
|
return nil, FormatError(err)
|
|
}
|
|
defer tx.Rollback()
|
|
|
|
systemSettingRawList, err := findSystemSettingList(ctx, tx, find)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if len(systemSettingRawList) == 0 {
|
|
return nil, &common.Error{Code: common.NotFound, Err: fmt.Errorf("not found")}
|
|
}
|
|
|
|
systemSettingRaw := systemSettingRawList[0]
|
|
s.systemSettingCache.Store(systemSettingRaw.Name, systemSettingRaw)
|
|
return systemSettingRaw.toSystemSetting(), nil
|
|
}
|
|
|
|
func (s *Store) GetSystemSettingValueOrDefault(ctx *context.Context, find api.SystemSettingName, defaultValue string) string {
|
|
if setting, err := s.FindSystemSetting(*ctx, &api.SystemSettingFind{
|
|
Name: find,
|
|
}); err == nil {
|
|
return setting.Value
|
|
}
|
|
return defaultValue
|
|
}
|
|
|
|
func upsertSystemSetting(ctx context.Context, tx *sql.Tx, upsert *api.SystemSettingUpsert) (*systemSettingRaw, error) {
|
|
query := `
|
|
INSERT INTO system_setting (
|
|
name, value, description
|
|
)
|
|
VALUES (?, ?, ?)
|
|
ON CONFLICT(name) DO UPDATE
|
|
SET
|
|
value = EXCLUDED.value,
|
|
description = EXCLUDED.description
|
|
RETURNING name, value, description
|
|
`
|
|
var systemSettingRaw systemSettingRaw
|
|
if err := tx.QueryRowContext(ctx, query, upsert.Name, upsert.Value, upsert.Description).Scan(
|
|
&systemSettingRaw.Name,
|
|
&systemSettingRaw.Value,
|
|
&systemSettingRaw.Description,
|
|
); err != nil {
|
|
return nil, FormatError(err)
|
|
}
|
|
|
|
return &systemSettingRaw, nil
|
|
}
|
|
|
|
func findSystemSettingList(ctx context.Context, tx *sql.Tx, find *api.SystemSettingFind) ([]*systemSettingRaw, error) {
|
|
where, args := []string{"1 = 1"}, []any{}
|
|
if find.Name.String() != "" {
|
|
where, args = append(where, "name = ?"), append(args, find.Name.String())
|
|
}
|
|
|
|
query := `
|
|
SELECT
|
|
name,
|
|
value,
|
|
description
|
|
FROM system_setting
|
|
WHERE ` + strings.Join(where, " AND ")
|
|
rows, err := tx.QueryContext(ctx, query, args...)
|
|
if err != nil {
|
|
return nil, FormatError(err)
|
|
}
|
|
defer rows.Close()
|
|
|
|
systemSettingRawList := make([]*systemSettingRaw, 0)
|
|
for rows.Next() {
|
|
var systemSettingRaw systemSettingRaw
|
|
if err := rows.Scan(
|
|
&systemSettingRaw.Name,
|
|
&systemSettingRaw.Value,
|
|
&systemSettingRaw.Description,
|
|
); err != nil {
|
|
return nil, FormatError(err)
|
|
}
|
|
|
|
systemSettingRawList = append(systemSettingRawList, &systemSettingRaw)
|
|
}
|
|
|
|
if err := rows.Err(); err != nil {
|
|
return nil, FormatError(err)
|
|
}
|
|
|
|
return systemSettingRawList, nil
|
|
}
|