mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-03 15:00:27 +08:00
64 lines
1.1 KiB
Go
64 lines
1.1 KiB
Go
package configs
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/go-yaml/yaml"
|
|
"github.com/iwind/TeaGo/Tea"
|
|
"io/ioutil"
|
|
)
|
|
|
|
var sharedAPIConfig *APIConfig = nil
|
|
var PaddingId string
|
|
|
|
// API节点配置
|
|
type APIConfig struct {
|
|
NodeId string `yaml:"nodeId" json:"nodeId"`
|
|
Secret string `yaml:"secret" json:"secret"`
|
|
|
|
numberId int64 // 数字ID
|
|
}
|
|
|
|
// 获取共享配置
|
|
func SharedAPIConfig() (*APIConfig, error) {
|
|
sharedLocker.Lock()
|
|
defer sharedLocker.Unlock()
|
|
|
|
if sharedAPIConfig != nil {
|
|
return sharedAPIConfig, nil
|
|
}
|
|
|
|
data, err := ioutil.ReadFile(Tea.ConfigFile("api.yaml"))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
config := &APIConfig{}
|
|
err = yaml.Unmarshal(data, config)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
sharedAPIConfig = config
|
|
return config, nil
|
|
}
|
|
|
|
// 设置数字ID
|
|
func (this *APIConfig) SetNumberId(numberId int64) {
|
|
this.numberId = numberId
|
|
PaddingId = fmt.Sprintf("%08d", numberId)
|
|
}
|
|
|
|
// 获取数字ID
|
|
func (this *APIConfig) NumberId() int64 {
|
|
return this.numberId
|
|
}
|
|
|
|
// 保存到文件
|
|
func (this *APIConfig) WriteFile(path string) error {
|
|
data, err := yaml.Marshal(this)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return ioutil.WriteFile(path, data, 0666)
|
|
}
|