gf/os/genv/genv.go

120 lines
3.1 KiB
Go
Raw Normal View History

2021-01-17 21:46:25 +08:00
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
2017-12-29 16:03:30 +08:00
//
// This Source Code Form is subject to the terms of the MIT License.
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://github.com/gogf/gf.
2017-12-29 16:03:30 +08:00
2019-01-15 23:27:47 +08:00
// Package genv provides operations for environment variables of system.
package genv
import (
2021-11-15 20:26:31 +08:00
"os"
"strings"
2021-10-11 21:41:56 +08:00
"github.com/gogf/gf/v2/container/gvar"
"github.com/gogf/gf/v2/errors/gerror"
2021-12-07 19:08:52 +08:00
"github.com/gogf/gf/v2/internal/command"
"github.com/gogf/gf/v2/internal/utils"
)
2019-06-11 20:57:43 +08:00
// All returns a copy of strings representing the environment,
// in the form "key=value".
func All() []string {
2019-06-19 09:06:52 +08:00
return os.Environ()
}
// Map returns a copy of strings representing the environment as a map.
func Map() map[string]string {
m := make(map[string]string)
i := 0
for _, s := range os.Environ() {
i = strings.IndexByte(s, '=')
m[s[0:i]] = s[i+1:]
}
return m
}
// Get creates and returns a Var with the value of the environment variable
// named by the `key`. It uses the given `def` if the variable does not exist
// in the environment.
func Get(key string, def ...interface{}) *gvar.Var {
v, ok := os.LookupEnv(key)
if !ok {
if len(def) > 0 {
return gvar.New(def[0])
}
return nil
}
return gvar.New(v)
}
// Set sets the value of the environment variable named by the `key`.
2019-06-11 20:57:43 +08:00
// It returns an error, if any.
func Set(key, value string) (err error) {
err = os.Setenv(key, value)
if err != nil {
err = gerror.Wrapf(err, `set environment key-value failed with key "%s", value "%s"`, key, value)
}
return
}
2020-12-05 00:06:03 +08:00
// SetMap sets the environment variables using map.
func SetMap(m map[string]string) (err error) {
2020-12-05 00:06:03 +08:00
for k, v := range m {
if err = Set(k, v); err != nil {
2020-12-05 00:06:03 +08:00
return err
}
}
return nil
}
// Contains checks whether the environment variable named `key` exists.
func Contains(key string) bool {
_, ok := os.LookupEnv(key)
return ok
}
2020-01-10 22:32:07 +08:00
// Remove deletes one or more environment variables.
func Remove(key ...string) (err error) {
2020-01-10 22:32:07 +08:00
for _, v := range key {
if err = os.Unsetenv(v); err != nil {
err = gerror.Wrapf(err, `delete environment key failed with key "%s"`, v)
2020-01-10 22:32:07 +08:00
return err
}
}
return nil
2019-06-19 09:06:52 +08:00
}
// GetWithCmd returns the environment value specified `key`.
// If the environment value does not exist, then it retrieves and returns the value from command line options.
// It returns the default value `def` if none of them exists.
//
// Fetching Rules:
// 1. Environment arguments are in uppercase format, eg: GF_<package name>_<variable name>
// 2. Command line arguments are in lowercase format, eg: gf.<package name>.<variable name>;
func GetWithCmd(key string, def ...interface{}) *gvar.Var {
envKey := utils.FormatEnvKey(key)
if v := os.Getenv(envKey); v != "" {
return gvar.New(v)
}
cmdKey := utils.FormatCmdKey(key)
2021-12-07 19:08:52 +08:00
if v := command.GetOpt(cmdKey); v != "" {
return gvar.New(v)
}
if len(def) > 0 {
return gvar.New(def[0])
}
return nil
}
// Build builds a map to an environment variable slice.
func Build(m map[string]string) []string {
array := make([]string, len(m))
index := 0
for k, v := range m {
array[index] = k + "=" + v
index++
}
return array
}