mirror of
https://github.com/ManyakRus/crud_generator.git
synced 2024-12-22 00:36:41 +02:00
90 lines
1.7 KiB
Go
90 lines
1.7 KiB
Go
package faker
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"reflect"
|
|
)
|
|
|
|
var identifier Identifier
|
|
|
|
// GetIdentifier returns a new Identifier
|
|
func GetIdentifier() Identifier {
|
|
mu.Lock()
|
|
defer mu.Unlock()
|
|
|
|
if identifier == nil {
|
|
identifier = &UUID{}
|
|
}
|
|
return identifier
|
|
}
|
|
|
|
// Identifier ...
|
|
type Identifier interface {
|
|
Digit(v reflect.Value) (interface{}, error)
|
|
Hyphenated(v reflect.Value) (interface{}, error)
|
|
}
|
|
|
|
// UUID struct
|
|
type UUID struct{}
|
|
|
|
// createUUID returns a 16 byte slice with random values
|
|
func createUUID() ([]byte, error) {
|
|
b := make([]byte, 16)
|
|
_, err := io.ReadFull(crypto, b)
|
|
if err != nil {
|
|
return b, err
|
|
}
|
|
// variant bits; see section 4.1.1
|
|
b[8] = b[8]&^0xc0 | 0x80
|
|
// version 4 (pseudo-random); see section 4.1.3
|
|
b[6] = b[6]&^0xf0 | 0x40
|
|
return b, nil
|
|
}
|
|
|
|
func (u UUID) hyphenated() (string, error) {
|
|
b, err := createUUID()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
uuid := fmt.Sprintf("%x-%x-%x-%x-%x", b[0:4], b[4:6], b[6:8], b[8:10], b[10:])
|
|
return uuid, err
|
|
}
|
|
|
|
// Hyphenated returns a 36 byte hyphenated UUID
|
|
func (u UUID) Hyphenated(v reflect.Value) (interface{}, error) {
|
|
return u.hyphenated()
|
|
}
|
|
|
|
// UUIDHyphenated get fake Hyphenated UUID
|
|
func UUIDHyphenated() string {
|
|
return singleFakeData(HyphenatedID, func() interface{} {
|
|
u := UUID{}
|
|
res, _ := u.hyphenated()
|
|
return res
|
|
}).(string)
|
|
}
|
|
|
|
func (u UUID) digit() (string, error) {
|
|
b, err := createUUID()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
uuid := fmt.Sprintf("%x", b)
|
|
return uuid, err
|
|
}
|
|
|
|
// Digit returns a 32 bytes UUID
|
|
func (u UUID) Digit(v reflect.Value) (interface{}, error) {
|
|
return u.digit()
|
|
}
|
|
|
|
// UUIDDigit get fake Digit UUID
|
|
func UUIDDigit() string {
|
|
return singleFakeData(ID, func() interface{} {
|
|
u := UUID{}
|
|
res, _ := u.digit()
|
|
return res
|
|
}).(string)
|
|
}
|