132 lines
3.3 KiB
Go
132 lines
3.3 KiB
Go
/*
|
|
* Licensed to the Apache Software Foundation (ASF) under one
|
|
* or more contributor license agreements. See the NOTICE file
|
|
* distributed with this work for additional information
|
|
* regarding copyright ownership. The ASF licenses this file
|
|
* to you 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 uid
|
|
|
|
import (
|
|
"strconv"
|
|
"strings"
|
|
|
|
"github.com/segmentfault/pacman/utils"
|
|
)
|
|
|
|
const salt = int64(100)
|
|
|
|
// NumToShortID num to string
|
|
func NumToShortID(id int64) string {
|
|
sid := strconv.FormatInt(id, 10)
|
|
if len(sid) < 17 {
|
|
return ""
|
|
}
|
|
sTypeCode := sid[1:4]
|
|
sid = sid[4:int32(len(sid))]
|
|
id, err := strconv.ParseInt(sid, 10, 64)
|
|
if err != nil {
|
|
return ""
|
|
}
|
|
typeCode, err := strconv.ParseInt(sTypeCode, 10, 64)
|
|
if err != nil {
|
|
return ""
|
|
}
|
|
code := utils.EnShortID(id, salt)
|
|
tcode := utils.EnShortID(typeCode, salt)
|
|
return tcode + code
|
|
}
|
|
|
|
// ShortIDToNum string to num
|
|
func ShortIDToNum(code string) int64 {
|
|
if len(code) < 2 {
|
|
return 0
|
|
}
|
|
scodeType := code[0:2]
|
|
code = code[2:int32(len(code))]
|
|
|
|
id := utils.DeShortID(code, salt)
|
|
codeType := utils.DeShortID(scodeType, salt)
|
|
return 10000000000000000 + codeType*10000000000000 + id
|
|
}
|
|
|
|
func EnShortID(id string) string {
|
|
num, err := strconv.ParseInt(id, 10, 64)
|
|
if err != nil {
|
|
return id
|
|
}
|
|
return NumToShortID(num)
|
|
}
|
|
|
|
func DeShortID(sid string) string {
|
|
num, err := strconv.ParseInt(sid, 10, 64)
|
|
if err != nil {
|
|
return strconv.FormatInt(ShortIDToNum(sid), 10)
|
|
}
|
|
if num < 10000000000000000 {
|
|
return strconv.FormatInt(ShortIDToNum(sid), 10)
|
|
}
|
|
return sid
|
|
}
|
|
|
|
func IsShortID(id string) bool {
|
|
num, err := strconv.ParseInt(id, 10, 64)
|
|
if err != nil {
|
|
return true
|
|
}
|
|
if num < 10000000000000000 {
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
|
|
// IsValidNumericID checks whether id can be parsed as a positive int64.
|
|
func IsValidNumericID(id string) bool {
|
|
id = strings.TrimSpace(id)
|
|
if len(id) == 0 {
|
|
return false
|
|
}
|
|
num, err := strconv.ParseInt(id, 10, 64)
|
|
if err != nil {
|
|
return false
|
|
}
|
|
return num > 0
|
|
}
|
|
|
|
// NormalizeOptionalID normalizes a raw id parameter.
|
|
// It accepts short id and long id, treats empty/null/undefined as "not provided".
|
|
// Returns normalized id, whether caller provided a value, and whether value is valid.
|
|
func NormalizeOptionalID(raw string) (normalizedID string, provided bool, valid bool) {
|
|
raw = strings.TrimSpace(raw)
|
|
if len(raw) == 0 || strings.EqualFold(raw, "null") || strings.EqualFold(raw, "undefined") {
|
|
return "", false, true
|
|
}
|
|
normalizedID = DeShortID(raw)
|
|
if !IsValidNumericID(normalizedID) {
|
|
return "", true, false
|
|
}
|
|
return normalizedID, true, true
|
|
}
|
|
|
|
// NormalizeRequiredID normalizes a required id parameter.
|
|
// Returns normalized id and whether the value is valid.
|
|
func NormalizeRequiredID(raw string) (normalizedID string, valid bool) {
|
|
normalizedID, provided, valid := NormalizeOptionalID(raw)
|
|
if !provided {
|
|
return "", false
|
|
}
|
|
return normalizedID, valid
|
|
}
|