sdk/utils/utils.go (115 lines of code) (raw):

/* * 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 utils import ( "bytes" "crypto" "crypto/hmac" "crypto/md5" "crypto/rand" "crypto/rsa" "crypto/sha1" "crypto/x509" "encoding/base64" "encoding/hex" "fmt" mathrand "math/rand" "net/url" "reflect" "runtime" "strconv" "sync/atomic" "time" ) var processStartTime int64 = time.Now().UnixNano() / 1e6 var seqId int64 = 0 func getGID() uint64 { // https://blog.sgmansfield.com/2015/12/goroutine-ids/ b := make([]byte, 64) b = b[:runtime.Stack(b, false)] b = bytes.TrimPrefix(b, []byte("goroutine ")) b = b[:bytes.IndexByte(b, ' ')] n, _ := strconv.ParseUint(string(b), 10, 64) return n } func GetNonce() (uuidHex string) { routineId := getGID() currentTime := time.Now().UnixNano() / 1e6 seq := atomic.AddInt64(&seqId, 1) randNum := mathrand.Int63() msg := fmt.Sprintf("%d-%d-%d-%d-%d", processStartTime, routineId, currentTime, seq, randNum) h := md5.New() h.Write([]byte(msg)) return hex.EncodeToString(h.Sum(nil)) } func GetMD5Base64(bytes []byte) (base64Value string) { md5Ctx := md5.New() md5Ctx.Write(bytes) md5Value := md5Ctx.Sum(nil) base64Value = base64.StdEncoding.EncodeToString(md5Value) return } func GetTimeInFormatISO8601() (timeStr string) { gmt := time.FixedZone("GMT", 0) return time.Now().In(gmt).Format("2006-01-02T15:04:05Z") } func GetTimeInFormatRFC2616() (timeStr string) { gmt := time.FixedZone("GMT", 0) return time.Now().In(gmt).Format("Mon, 02 Jan 2006 15:04:05 GMT") } func GetUrlFormedMap(source map[string]string) (urlEncoded string) { urlEncoder := url.Values{} for key, value := range source { urlEncoder.Add(key, value) } urlEncoded = urlEncoder.Encode() return } // Deprecated: don't use it func InitStructWithDefaultTag(bean interface{}) { configType := reflect.TypeOf(bean) for i := 0; i < configType.Elem().NumField(); i++ { field := configType.Elem().Field(i) defaultValue := field.Tag.Get("default") if defaultValue == "" { continue } setter := reflect.ValueOf(bean).Elem().Field(i) switch field.Type.String() { case "int": intValue, _ := strconv.ParseInt(defaultValue, 10, 64) setter.SetInt(intValue) case "time.Duration": intValue, _ := strconv.ParseInt(defaultValue, 10, 64) setter.SetInt(intValue) case "string": setter.SetString(defaultValue) case "bool": boolValue, _ := strconv.ParseBool(defaultValue) setter.SetBool(boolValue) } } } func ShaHmac1(source, secret string) string { key := []byte(secret) hmac := hmac.New(sha1.New, key) hmac.Write([]byte(source)) signedBytes := hmac.Sum(nil) signedString := base64.StdEncoding.EncodeToString(signedBytes) return signedString } func Sha256WithRsa(source, secret string) string { // block, _ := pem.Decode([]byte(secret)) decodeString, err := base64.StdEncoding.DecodeString(secret) if err != nil { panic(err) } private, err := x509.ParsePKCS8PrivateKey(decodeString) if err != nil { panic(err) } h := crypto.Hash.New(crypto.SHA256) h.Write([]byte(source)) hashed := h.Sum(nil) signature, err := rsa.SignPKCS1v15(rand.Reader, private.(*rsa.PrivateKey), crypto.SHA256, hashed) if err != nil { panic(err) } return base64.StdEncoding.EncodeToString(signature) }