mirror of
				https://github.com/openimsdk/open-im-server.git
				synced 2025-10-27 05:52:29 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			101 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			101 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright © 2023 OpenIM. All rights reserved.
 | |
| //
 | |
| // Licensed under the Apache License, Version 2.0 (the "License");
 | |
| // you may not use this file except in compliance with the License.
 | |
| // You may obtain a copy of the License at
 | |
| //
 | |
| //     http://www.apache.org/licenses/LICENSE-2.0
 | |
| //
 | |
| // Unless required by applicable law or agreed to in writing, software
 | |
| // distributed under the License is distributed on an "AS IS" BASIS,
 | |
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | |
| // See the License for the specific language governing permissions and
 | |
| // limitations under the License.
 | |
| 
 | |
| package config
 | |
| 
 | |
| import (
 | |
| 	_ "embed"
 | |
| 	"fmt"
 | |
| 	"os"
 | |
| 	"path/filepath"
 | |
| 	"runtime"
 | |
| 
 | |
| 	"github.com/OpenIMSDK/Open-IM-Server/pkg/msgprocessor"
 | |
| 
 | |
| 	"gopkg.in/yaml.v3"
 | |
| 
 | |
| 	"github.com/OpenIMSDK/protocol/constant"
 | |
| )
 | |
| 
 | |
| //go:embed version
 | |
| var Version string
 | |
| 
 | |
| var (
 | |
| 	_, b, _, _ = runtime.Caller(0)
 | |
| 	// Root folder of this project.
 | |
| 	Root = filepath.Join(filepath.Dir(b), "../../..")
 | |
| )
 | |
| 
 | |
| const (
 | |
| 	FileName             = "config.yaml"
 | |
| 	NotificationFileName = "notification.yaml"
 | |
| 	DefaultFolderPath    = "../config/"
 | |
| )
 | |
| 
 | |
| func GetOptionsByNotification(cfg NotificationConf) msgprocessor.Options {
 | |
| 	opts := msgprocessor.NewOptions()
 | |
| 	if cfg.UnreadCount {
 | |
| 		opts = msgprocessor.WithOptions(opts, msgprocessor.WithUnreadCount(true))
 | |
| 	}
 | |
| 	if cfg.OfflinePush.Enable {
 | |
| 		opts = msgprocessor.WithOptions(opts, msgprocessor.WithOfflinePush(true))
 | |
| 	}
 | |
| 	switch cfg.ReliabilityLevel {
 | |
| 	case constant.UnreliableNotification:
 | |
| 	case constant.ReliableNotificationNoMsg:
 | |
| 		opts = msgprocessor.WithOptions(opts, msgprocessor.WithHistory(true), msgprocessor.WithPersistent())
 | |
| 	}
 | |
| 	opts = msgprocessor.WithOptions(opts, msgprocessor.WithSendMsg(cfg.IsSendMsg))
 | |
| 	return opts
 | |
| }
 | |
| 
 | |
| func initConfig(config interface{}, configName, configFolderPath string) error {
 | |
| 	if configFolderPath == "" {
 | |
| 		configFolderPath = DefaultFolderPath
 | |
| 	}
 | |
| 	configPath := filepath.Join(configFolderPath, configName)
 | |
| 	defer func() {
 | |
| 		fmt.Println("use config", configPath)
 | |
| 	}()
 | |
| 	_, err := os.Stat(configPath)
 | |
| 	if err != nil {
 | |
| 		if !os.IsNotExist(err) {
 | |
| 			return err
 | |
| 		}
 | |
| 		configPath = filepath.Join(Root, "config", configName)
 | |
| 	} else {
 | |
| 		Root = filepath.Dir(configPath)
 | |
| 	}
 | |
| 	data, err := os.ReadFile(configPath)
 | |
| 	if err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 	if err = yaml.Unmarshal(data, config); err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func InitConfig(configFolderPath string) error {
 | |
| 	err := initConfig(&Config, FileName, configFolderPath)
 | |
| 	if err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 	err = initConfig(&Config.Notification, NotificationFileName, configFolderPath)
 | |
| 	if err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 	return nil
 | |
| }
 |