mirror of
				https://github.com/usememos/memos.git
				synced 2025-11-01 01:06:04 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			61 lines
		
	
	
	
		
			1.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
	
		
			1.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package store
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 	"encoding/json"
 | |
| 	"fmt"
 | |
| 
 | |
| 	"github.com/pkg/errors"
 | |
| 
 | |
| 	storepb "github.com/usememos/memos/proto/gen/store"
 | |
| )
 | |
| 
 | |
| // MigrateWorkspaceSetting migrates workspace setting from v1 to v2.
 | |
| func (s *Store) MigrateWorkspaceSetting(ctx context.Context) error {
 | |
| 	workspaceSettings, err := s.ListWorkspaceSettings(ctx, &FindWorkspaceSetting{})
 | |
| 	if err != nil {
 | |
| 		return errors.Wrap(err, "failed to list workspace settings")
 | |
| 	}
 | |
| 
 | |
| 	workspaceGeneralSetting, err := s.GetWorkspaceGeneralSetting(ctx)
 | |
| 	if err != nil {
 | |
| 		return errors.Wrap(err, "failed to get workspace general setting")
 | |
| 	}
 | |
| 
 | |
| 	for _, workspaceSetting := range workspaceSettings {
 | |
| 		matched := true
 | |
| 		var baseValue any
 | |
| 		// nolint
 | |
| 		json.Unmarshal([]byte(workspaceSetting.Value), &baseValue)
 | |
| 		if workspaceSetting.Name == "allow-signup" {
 | |
| 			workspaceGeneralSetting.DisallowSignup = !baseValue.(bool)
 | |
| 		} else if workspaceSetting.Name == "disable-password-login" {
 | |
| 			workspaceGeneralSetting.DisallowPasswordLogin = baseValue.(bool)
 | |
| 		} else if workspaceSetting.Name == "additional-style" {
 | |
| 			workspaceGeneralSetting.AdditionalStyle = baseValue.(string)
 | |
| 		} else if workspaceSetting.Name == "additional-script" {
 | |
| 			workspaceGeneralSetting.AdditionalScript = baseValue.(string)
 | |
| 		} else if workspaceSetting.Name == "instance-url" {
 | |
| 			workspaceGeneralSetting.InstanceUrl = workspaceSetting.Value
 | |
| 		} else {
 | |
| 			matched = false
 | |
| 		}
 | |
| 
 | |
| 		if matched {
 | |
| 			if err := s.DeleteWorkspaceSetting(ctx, &DeleteWorkspaceSetting{
 | |
| 				Name: workspaceSetting.Name,
 | |
| 			}); err != nil {
 | |
| 				return errors.Wrap(err, fmt.Sprintf("failed to delete workspace setting: %s", workspaceSetting.Name))
 | |
| 			}
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	if _, err := s.UpsertWorkspaceSettingV1(ctx, &storepb.WorkspaceSetting{
 | |
| 		Key:   storepb.WorkspaceSettingKey_WORKSPACE_SETTING_GENERAL,
 | |
| 		Value: &storepb.WorkspaceSetting_General{General: workspaceGeneralSetting},
 | |
| 	}); err != nil {
 | |
| 		return errors.Wrap(err, "failed to upsert workspace general setting")
 | |
| 	}
 | |
| 
 | |
| 	return nil
 | |
| }
 |