mirror of
https://gitea.com/gitea/tea.git
synced 2024-10-27 05:20:23 -04:00
c063329e9a
Unexport generateToken() move CreateLogin into task Create func config.SetDefaultLogin() Unexport loadConfig() & saveConfig unexport config var make SetDefaultLogin() case insensitive update func descriptions move FindSSHKey to task module Reviewed-on: https://gitea.com/gitea/tea/pulls/288 Reviewed-by: Norwin <noerw@noreply.gitea.io> Reviewed-by: Andrew Thornton <art27@cantab.net> Co-Authored-By: 6543 <6543@obermui.de> Co-Committed-By: 6543 <6543@obermui.de>
87 lines
1.7 KiB
Go
87 lines
1.7 KiB
Go
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package config
|
|
|
|
import (
|
|
"fmt"
|
|
"io/ioutil"
|
|
"log"
|
|
"path/filepath"
|
|
"sync"
|
|
|
|
"code.gitea.io/tea/modules/utils"
|
|
|
|
"github.com/adrg/xdg"
|
|
"gopkg.in/yaml.v2"
|
|
)
|
|
|
|
// LocalConfig represents local configurations
|
|
type LocalConfig struct {
|
|
Logins []Login `yaml:"logins"`
|
|
}
|
|
|
|
var (
|
|
// config contain if loaded local tea config
|
|
config LocalConfig
|
|
loadConfigOnce sync.Once
|
|
)
|
|
|
|
// GetConfigPath return path to tea config file
|
|
func GetConfigPath() string {
|
|
configFilePath, err := xdg.ConfigFile("tea/config.yml")
|
|
|
|
var exists bool
|
|
if err != nil {
|
|
exists = false
|
|
} else {
|
|
exists, _ = utils.PathExists(configFilePath)
|
|
}
|
|
|
|
// fallback to old config if no new one exists
|
|
if !exists {
|
|
file := filepath.Join(xdg.Home, ".tea", "tea.yml")
|
|
exists, _ = utils.PathExists(file)
|
|
if exists {
|
|
return file
|
|
}
|
|
}
|
|
|
|
if err != nil {
|
|
log.Fatal("unable to get or create config file")
|
|
}
|
|
|
|
return configFilePath
|
|
}
|
|
|
|
// loadConfig load config from file
|
|
func loadConfig() (err error) {
|
|
loadConfigOnce.Do(func() {
|
|
ymlPath := GetConfigPath()
|
|
exist, _ := utils.FileExist(ymlPath)
|
|
if exist {
|
|
bs, err := ioutil.ReadFile(ymlPath)
|
|
if err != nil {
|
|
err = fmt.Errorf("Failed to read config file: %s", ymlPath)
|
|
}
|
|
|
|
err = yaml.Unmarshal(bs, &config)
|
|
if err != nil {
|
|
err = fmt.Errorf("Failed to parse contents of config file: %s", ymlPath)
|
|
}
|
|
}
|
|
})
|
|
return
|
|
}
|
|
|
|
// saveConfig save config to file
|
|
func saveConfig() error {
|
|
ymlPath := GetConfigPath()
|
|
bs, err := yaml.Marshal(config)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return ioutil.WriteFile(ymlPath, bs, 0660)
|
|
}
|