2019-09-20 06:19:11 +02:00
|
|
|
package serv
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2020-03-03 09:15:47 +01:00
|
|
|
"encoding/csv"
|
2019-09-20 06:19:11 +02:00
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"io/ioutil"
|
2020-02-07 07:12:14 +01:00
|
|
|
"math/rand"
|
2019-09-20 06:19:11 +02:00
|
|
|
"os"
|
|
|
|
"path"
|
2020-03-03 09:15:47 +01:00
|
|
|
"strconv"
|
|
|
|
"strings"
|
2019-09-20 06:19:11 +02:00
|
|
|
|
2020-04-16 07:28:55 +02:00
|
|
|
"github.com/brianvoe/gofakeit/v5"
|
2019-09-20 06:19:11 +02:00
|
|
|
"github.com/dop251/goja"
|
2020-04-10 08:27:43 +02:00
|
|
|
"github.com/dosco/super-graph/core"
|
2020-04-17 16:56:26 +02:00
|
|
|
"github.com/gosimple/slug"
|
2020-05-28 06:07:01 +02:00
|
|
|
"github.com/jackc/pgx/v4"
|
2020-05-29 06:08:37 +02:00
|
|
|
"github.com/jackc/pgx/v4/stdlib"
|
2019-09-26 06:35:31 +02:00
|
|
|
"github.com/spf13/cobra"
|
2019-09-20 06:19:11 +02:00
|
|
|
)
|
|
|
|
|
2019-09-28 17:34:03 +02:00
|
|
|
func cmdDBSeed(cmd *cobra.Command, args []string) {
|
2019-09-26 06:35:31 +02:00
|
|
|
var err error
|
2019-09-27 08:19:24 +02:00
|
|
|
|
|
|
|
if conf, err = initConf(); err != nil {
|
2020-04-10 08:27:43 +02:00
|
|
|
log.Fatalf("ERR failed to read config: %s", err)
|
2019-09-27 08:19:24 +02:00
|
|
|
}
|
2019-11-07 08:37:24 +01:00
|
|
|
conf.Production = false
|
2020-05-28 06:07:01 +02:00
|
|
|
conf.DefaultBlock = false
|
2019-09-20 06:19:11 +02:00
|
|
|
|
2020-05-23 22:37:15 +02:00
|
|
|
db, err = initDB(conf, true, false)
|
2019-09-26 06:35:31 +02:00
|
|
|
if err != nil {
|
2020-04-10 08:27:43 +02:00
|
|
|
log.Fatalf("ERR failed to connect to database: %s", err)
|
2019-09-26 06:35:31 +02:00
|
|
|
}
|
|
|
|
|
2020-04-11 08:45:06 +02:00
|
|
|
sfile := path.Join(conf.cpath, conf.SeedFile)
|
2019-09-26 06:35:31 +02:00
|
|
|
|
2020-04-10 08:27:43 +02:00
|
|
|
b, err := ioutil.ReadFile(sfile)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalf("ERR failed to read seed file %s: %s", sfile, err)
|
|
|
|
}
|
2019-09-29 02:46:55 +02:00
|
|
|
|
2020-04-11 08:45:06 +02:00
|
|
|
sg, err = core.NewSuperGraph(&conf.Core, db)
|
2019-09-20 06:19:11 +02:00
|
|
|
if err != nil {
|
2020-04-10 08:27:43 +02:00
|
|
|
log.Fatalf("ERR failed to initialize Super Graph: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
graphQLFn := func(query string, data interface{}, opt map[string]string) map[string]interface{} {
|
|
|
|
return graphQLFunc(sg, query, data, opt)
|
2019-09-20 06:19:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
vm := goja.New()
|
2020-04-10 08:27:43 +02:00
|
|
|
vm.Set("graphql", graphQLFn)
|
2020-05-28 06:07:01 +02:00
|
|
|
vm.Set("import_csv", importCSV)
|
2019-09-20 06:19:11 +02:00
|
|
|
|
|
|
|
console := vm.NewObject()
|
2019-11-28 07:25:46 +01:00
|
|
|
console.Set("log", logFunc) //nolint: errcheck
|
2019-09-20 06:19:11 +02:00
|
|
|
vm.Set("console", console)
|
|
|
|
|
|
|
|
fake := vm.NewObject()
|
|
|
|
setFakeFuncs(fake)
|
|
|
|
vm.Set("fake", fake)
|
|
|
|
|
2020-04-17 16:56:26 +02:00
|
|
|
util := vm.NewObject()
|
|
|
|
setUtilFuncs(util)
|
|
|
|
vm.Set("util", util)
|
|
|
|
|
2019-09-20 06:19:11 +02:00
|
|
|
_, err = vm.RunScript("seed.js", string(b))
|
|
|
|
if err != nil {
|
2020-04-10 08:27:43 +02:00
|
|
|
log.Fatalf("ERR failed to execute script: %s", err)
|
2019-09-20 06:19:11 +02:00
|
|
|
}
|
2019-10-06 22:28:10 +02:00
|
|
|
|
2020-04-10 08:27:43 +02:00
|
|
|
log.Println("INF seed script done")
|
2019-09-20 06:19:11 +02:00
|
|
|
}
|
|
|
|
|
2020-04-10 08:27:43 +02:00
|
|
|
// func runFunc(call goja.FunctionCall) {
|
|
|
|
func graphQLFunc(sg *core.SuperGraph, query string, data interface{}, opt map[string]string) map[string]interface{} {
|
|
|
|
ct := context.Background()
|
2019-11-21 08:14:12 +01:00
|
|
|
|
|
|
|
if v, ok := opt["user_id"]; ok && len(v) != 0 {
|
2020-04-10 08:27:43 +02:00
|
|
|
ct = context.WithValue(ct, core.UserIDKey, v)
|
2020-05-23 22:37:15 +02:00
|
|
|
} else {
|
|
|
|
ct = context.WithValue(ct, core.UserIDKey, "-1")
|
2019-11-21 08:14:12 +01:00
|
|
|
}
|
|
|
|
|
2020-04-10 08:27:43 +02:00
|
|
|
// var role string
|
2019-09-20 06:19:11 +02:00
|
|
|
|
2020-04-10 08:27:43 +02:00
|
|
|
// if v, ok := opt["role"]; ok && len(v) != 0 {
|
|
|
|
// role = v
|
|
|
|
// } else {
|
|
|
|
// role = "user"
|
|
|
|
// }
|
2019-11-21 08:14:12 +01:00
|
|
|
|
2020-04-10 08:27:43 +02:00
|
|
|
var vars []byte
|
|
|
|
var err error
|
2019-11-21 08:14:12 +01:00
|
|
|
|
2020-04-10 08:27:43 +02:00
|
|
|
if vars, err = json.Marshal(data); err != nil {
|
|
|
|
log.Fatalf("ERR %s", err)
|
2019-11-21 08:14:12 +01:00
|
|
|
}
|
|
|
|
|
2020-04-10 08:27:43 +02:00
|
|
|
res, err := sg.GraphQL(ct, query, vars)
|
2019-11-21 08:14:12 +01:00
|
|
|
if err != nil {
|
2020-04-10 08:27:43 +02:00
|
|
|
log.Fatalf("ERR %s", err)
|
2019-11-21 08:14:12 +01:00
|
|
|
}
|
|
|
|
|
2019-09-20 06:19:11 +02:00
|
|
|
val := make(map[string]interface{})
|
|
|
|
|
2020-04-10 08:27:43 +02:00
|
|
|
if err = json.Unmarshal(res.Data, &val); err != nil {
|
|
|
|
log.Fatalf("ERR %s", err)
|
2019-09-20 06:19:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return val
|
|
|
|
}
|
|
|
|
|
2020-03-03 09:15:47 +01:00
|
|
|
type csvSource struct {
|
|
|
|
rows [][]string
|
|
|
|
i int
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewCSVSource(filename string) (*csvSource, error) {
|
|
|
|
f, err := os.Open(filename)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
|
|
|
|
r := csv.NewReader(f)
|
|
|
|
rows, err := r.ReadAll()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return &csvSource{rows: rows}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *csvSource) Next() bool {
|
|
|
|
return c.i < len(c.rows)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *csvSource) Values() ([]interface{}, error) {
|
|
|
|
var vals []interface{}
|
|
|
|
var err error
|
|
|
|
|
|
|
|
for _, v := range c.rows[c.i] {
|
|
|
|
switch {
|
|
|
|
case len(v) == 0:
|
|
|
|
vals = append(vals, "")
|
|
|
|
case isDigit(v):
|
|
|
|
var n int
|
|
|
|
if n, err = strconv.Atoi(v); err == nil {
|
|
|
|
vals = append(vals, n)
|
|
|
|
}
|
|
|
|
case strings.EqualFold(v, "true") || strings.EqualFold(v, "false"):
|
|
|
|
var b bool
|
|
|
|
if b, err = strconv.ParseBool(v); err == nil {
|
|
|
|
vals = append(vals, b)
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
vals = append(vals, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("%w (line no %d)", err, c.i)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
c.i++
|
|
|
|
|
|
|
|
return vals, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func isDigit(v string) bool {
|
|
|
|
for i := range v {
|
|
|
|
if v[i] < '0' || v[i] > '9' {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *csvSource) Err() error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-05-28 06:07:01 +02:00
|
|
|
func importCSV(table, filename string) int64 {
|
|
|
|
if filename[0] != '/' {
|
|
|
|
filename = path.Join(confPath, filename)
|
|
|
|
}
|
|
|
|
|
|
|
|
s, err := NewCSVSource(filename)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalf("ERR %v", err)
|
|
|
|
}
|
2020-03-03 09:15:47 +01:00
|
|
|
|
2020-05-28 06:07:01 +02:00
|
|
|
var cols []string
|
|
|
|
colval, _ := s.Values()
|
2020-03-03 09:15:47 +01:00
|
|
|
|
2020-05-28 06:07:01 +02:00
|
|
|
for _, c := range colval {
|
|
|
|
cols = append(cols, c.(string))
|
|
|
|
}
|
2020-03-03 09:15:47 +01:00
|
|
|
|
2020-05-29 06:08:37 +02:00
|
|
|
conn, err := stdlib.AcquireConn(db)
|
2020-05-28 06:07:01 +02:00
|
|
|
if err != nil {
|
|
|
|
log.Fatalf("ERR %v", err)
|
|
|
|
}
|
|
|
|
//nolint: errcheck
|
2020-05-29 06:08:37 +02:00
|
|
|
defer stdlib.ReleaseConn(db, conn)
|
2020-03-03 09:15:47 +01:00
|
|
|
|
2020-05-28 06:07:01 +02:00
|
|
|
n, err := conn.CopyFrom(
|
|
|
|
context.Background(),
|
|
|
|
pgx.Identifier{table},
|
|
|
|
cols,
|
|
|
|
s)
|
2020-03-03 09:15:47 +01:00
|
|
|
|
2020-05-28 06:07:01 +02:00
|
|
|
if err != nil {
|
|
|
|
log.Fatalf("ERR %v", fmt.Errorf("%w (line no %d)", err, s.i))
|
|
|
|
}
|
2020-03-03 09:15:47 +01:00
|
|
|
|
2020-05-28 06:07:01 +02:00
|
|
|
return n
|
|
|
|
}
|
2020-03-03 09:15:47 +01:00
|
|
|
|
2019-11-28 07:25:46 +01:00
|
|
|
//nolint: errcheck
|
2019-09-20 06:19:11 +02:00
|
|
|
func logFunc(args ...interface{}) {
|
|
|
|
for _, arg := range args {
|
|
|
|
if _, ok := arg.(map[string]interface{}); ok {
|
|
|
|
j, err := json.MarshalIndent(arg, "", " ")
|
|
|
|
if err != nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
os.Stdout.Write(j)
|
|
|
|
} else {
|
|
|
|
io.WriteString(os.Stdout, fmt.Sprintf("%v", arg))
|
|
|
|
}
|
|
|
|
|
|
|
|
io.WriteString(os.Stdout, "\n")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-07 07:12:14 +01:00
|
|
|
func avatarURL(size int) string {
|
|
|
|
if size == 0 {
|
|
|
|
size = 200
|
|
|
|
}
|
|
|
|
return fmt.Sprintf("https://i.pravatar.cc/%d?%d", size, rand.Intn(5000))
|
|
|
|
}
|
|
|
|
|
|
|
|
func imageURL(width int, height int) string {
|
|
|
|
return fmt.Sprintf("https://picsum.photos/%d/%d?%d", width, height, rand.Intn(5000))
|
|
|
|
}
|
|
|
|
|
2020-04-16 07:28:55 +02:00
|
|
|
func getRandValue(values []string) string {
|
|
|
|
return values[rand.Intn(len(values))]
|
|
|
|
}
|
|
|
|
|
2019-11-28 07:25:46 +01:00
|
|
|
//nolint: errcheck
|
2019-09-20 06:19:11 +02:00
|
|
|
func setFakeFuncs(f *goja.Object) {
|
|
|
|
gofakeit.Seed(0)
|
|
|
|
|
|
|
|
// Person
|
|
|
|
f.Set("person", gofakeit.Person)
|
|
|
|
f.Set("name", gofakeit.Name)
|
|
|
|
f.Set("name_prefix", gofakeit.NamePrefix)
|
|
|
|
f.Set("name_suffix", gofakeit.NameSuffix)
|
|
|
|
f.Set("first_name", gofakeit.FirstName)
|
|
|
|
f.Set("last_name", gofakeit.LastName)
|
|
|
|
f.Set("gender", gofakeit.Gender)
|
|
|
|
f.Set("ssn", gofakeit.SSN)
|
|
|
|
f.Set("contact", gofakeit.Contact)
|
|
|
|
f.Set("email", gofakeit.Email)
|
|
|
|
f.Set("phone", gofakeit.Phone)
|
|
|
|
f.Set("phone_formatted", gofakeit.PhoneFormatted)
|
|
|
|
f.Set("username", gofakeit.Username)
|
|
|
|
f.Set("password", gofakeit.Password)
|
|
|
|
|
|
|
|
// Address
|
|
|
|
f.Set("address", gofakeit.Address)
|
|
|
|
f.Set("city", gofakeit.City)
|
|
|
|
f.Set("country", gofakeit.Country)
|
|
|
|
f.Set("country_abr", gofakeit.CountryAbr)
|
|
|
|
f.Set("state", gofakeit.State)
|
|
|
|
f.Set("state_abr", gofakeit.StateAbr)
|
|
|
|
f.Set("street", gofakeit.Street)
|
|
|
|
f.Set("street_name", gofakeit.StreetName)
|
|
|
|
f.Set("street_number", gofakeit.StreetNumber)
|
|
|
|
f.Set("street_prefix", gofakeit.StreetPrefix)
|
|
|
|
f.Set("street_suffix", gofakeit.StreetSuffix)
|
|
|
|
f.Set("zip", gofakeit.Zip)
|
|
|
|
f.Set("latitude", gofakeit.Latitude)
|
|
|
|
f.Set("latitude_in_range", gofakeit.LatitudeInRange)
|
|
|
|
f.Set("longitude", gofakeit.Longitude)
|
|
|
|
f.Set("longitude_in_range", gofakeit.LongitudeInRange)
|
|
|
|
|
|
|
|
// Beer
|
|
|
|
f.Set("beer_alcohol", gofakeit.BeerAlcohol)
|
|
|
|
f.Set("beer_hop", gofakeit.BeerHop)
|
|
|
|
f.Set("beer_ibu", gofakeit.BeerIbu)
|
|
|
|
f.Set("beer_blg", gofakeit.BeerBlg)
|
|
|
|
f.Set("beer_malt", gofakeit.BeerMalt)
|
|
|
|
f.Set("beer_name", gofakeit.BeerName)
|
|
|
|
f.Set("beer_style", gofakeit.BeerStyle)
|
|
|
|
f.Set("beer_yeast", gofakeit.BeerYeast)
|
|
|
|
|
|
|
|
// Cars
|
2020-04-16 07:28:55 +02:00
|
|
|
f.Set("car", gofakeit.Car)
|
|
|
|
f.Set("car_type", gofakeit.CarType)
|
2019-09-20 06:19:11 +02:00
|
|
|
f.Set("car_maker", gofakeit.CarMaker)
|
|
|
|
f.Set("car_model", gofakeit.CarModel)
|
|
|
|
|
|
|
|
// Text
|
|
|
|
f.Set("word", gofakeit.Word)
|
|
|
|
f.Set("sentence", gofakeit.Sentence)
|
2019-11-21 08:14:12 +01:00
|
|
|
f.Set("paragraph", gofakeit.Paragraph)
|
2019-09-20 06:19:11 +02:00
|
|
|
f.Set("question", gofakeit.Question)
|
|
|
|
f.Set("quote", gofakeit.Quote)
|
|
|
|
|
|
|
|
// Misc
|
|
|
|
f.Set("generate", gofakeit.Generate)
|
|
|
|
f.Set("boolean", gofakeit.Bool)
|
|
|
|
f.Set("uuid", gofakeit.UUID)
|
|
|
|
|
|
|
|
// Colors
|
|
|
|
f.Set("color", gofakeit.Color)
|
|
|
|
f.Set("hex_color", gofakeit.HexColor)
|
|
|
|
f.Set("rgb_color", gofakeit.RGBColor)
|
|
|
|
f.Set("safe_color", gofakeit.SafeColor)
|
|
|
|
|
|
|
|
// Internet
|
|
|
|
f.Set("url", gofakeit.URL)
|
2020-02-07 07:12:14 +01:00
|
|
|
f.Set("image_url", imageURL)
|
|
|
|
f.Set("avatar_url", avatarURL)
|
2019-09-20 06:19:11 +02:00
|
|
|
f.Set("domain_name", gofakeit.DomainName)
|
|
|
|
f.Set("domain_suffix", gofakeit.DomainSuffix)
|
|
|
|
f.Set("ipv4_address", gofakeit.IPv4Address)
|
|
|
|
f.Set("ipv6_address", gofakeit.IPv6Address)
|
|
|
|
f.Set("http_method", gofakeit.HTTPMethod)
|
|
|
|
f.Set("user_agent", gofakeit.UserAgent)
|
|
|
|
f.Set("user_agent_firefox", gofakeit.FirefoxUserAgent)
|
|
|
|
f.Set("user_agent_chrome", gofakeit.ChromeUserAgent)
|
|
|
|
f.Set("user_agent_opera", gofakeit.OperaUserAgent)
|
|
|
|
f.Set("user_agent_safari", gofakeit.SafariUserAgent)
|
|
|
|
|
|
|
|
// Date / Time
|
|
|
|
f.Set("date", gofakeit.Date)
|
|
|
|
f.Set("date_range", gofakeit.DateRange)
|
|
|
|
f.Set("nano_second", gofakeit.NanoSecond)
|
|
|
|
f.Set("second", gofakeit.Second)
|
|
|
|
f.Set("minute", gofakeit.Minute)
|
|
|
|
f.Set("hour", gofakeit.Hour)
|
|
|
|
f.Set("month", gofakeit.Month)
|
|
|
|
f.Set("day", gofakeit.Day)
|
|
|
|
f.Set("weekday", gofakeit.WeekDay)
|
|
|
|
f.Set("year", gofakeit.Year)
|
|
|
|
f.Set("timezone", gofakeit.TimeZone)
|
|
|
|
f.Set("timezone_abv", gofakeit.TimeZoneAbv)
|
|
|
|
f.Set("timezone_full", gofakeit.TimeZoneFull)
|
|
|
|
f.Set("timezone_offset", gofakeit.TimeZoneOffset)
|
|
|
|
|
|
|
|
// Payment
|
|
|
|
f.Set("price", gofakeit.Price)
|
|
|
|
f.Set("credit_card", gofakeit.CreditCard)
|
|
|
|
f.Set("credit_card_cvv", gofakeit.CreditCardCvv)
|
|
|
|
f.Set("credit_card_number", gofakeit.CreditCardNumber)
|
|
|
|
f.Set("credit_card_type", gofakeit.CreditCardType)
|
|
|
|
f.Set("currency", gofakeit.Currency)
|
|
|
|
f.Set("currency_long", gofakeit.CurrencyLong)
|
|
|
|
f.Set("currency_short", gofakeit.CurrencyShort)
|
|
|
|
|
|
|
|
// Company
|
|
|
|
f.Set("bs", gofakeit.BS)
|
|
|
|
f.Set("buzzword", gofakeit.BuzzWord)
|
|
|
|
f.Set("company", gofakeit.Company)
|
|
|
|
f.Set("company_suffix", gofakeit.CompanySuffix)
|
|
|
|
f.Set("job", gofakeit.Job)
|
|
|
|
f.Set("job_description", gofakeit.JobDescriptor)
|
|
|
|
f.Set("job_level", gofakeit.JobLevel)
|
|
|
|
f.Set("job_title", gofakeit.JobTitle)
|
|
|
|
|
|
|
|
// Hacker
|
|
|
|
f.Set("hacker_abbreviation", gofakeit.HackerAbbreviation)
|
|
|
|
f.Set("hacker_adjective", gofakeit.HackerAdjective)
|
|
|
|
f.Set("hacker_noun", gofakeit.HackerNoun)
|
|
|
|
f.Set("hacker_phrase", gofakeit.HackerPhrase)
|
|
|
|
f.Set("hacker_verb", gofakeit.HackerVerb)
|
|
|
|
|
|
|
|
//Hipster
|
|
|
|
f.Set("hipster_word", gofakeit.HipsterWord)
|
|
|
|
f.Set("hipster_paragraph", gofakeit.HipsterParagraph)
|
|
|
|
f.Set("hipster_sentence", gofakeit.HipsterSentence)
|
|
|
|
|
|
|
|
// File
|
2020-04-16 07:28:55 +02:00
|
|
|
f.Set("file_extension", gofakeit.FileExtension)
|
|
|
|
f.Set("file_mine_type", gofakeit.FileMimeType)
|
2019-09-20 06:19:11 +02:00
|
|
|
|
|
|
|
// Numbers
|
|
|
|
f.Set("number", gofakeit.Number)
|
|
|
|
f.Set("numerify", gofakeit.Numerify)
|
|
|
|
f.Set("int8", gofakeit.Int8)
|
|
|
|
f.Set("int16", gofakeit.Int16)
|
|
|
|
f.Set("int32", gofakeit.Int32)
|
|
|
|
f.Set("int64", gofakeit.Int64)
|
|
|
|
f.Set("uint8", gofakeit.Uint8)
|
|
|
|
f.Set("uint16", gofakeit.Uint16)
|
|
|
|
f.Set("uint32", gofakeit.Uint32)
|
|
|
|
f.Set("uint64", gofakeit.Uint64)
|
|
|
|
f.Set("float32", gofakeit.Float32)
|
|
|
|
f.Set("float32_range", gofakeit.Float32Range)
|
|
|
|
f.Set("float64", gofakeit.Float64)
|
|
|
|
f.Set("float64_range", gofakeit.Float64Range)
|
|
|
|
f.Set("shuffle_ints", gofakeit.ShuffleInts)
|
|
|
|
f.Set("mac_address", gofakeit.MacAddress)
|
|
|
|
|
|
|
|
// String
|
|
|
|
f.Set("digit", gofakeit.Digit)
|
|
|
|
f.Set("letter", gofakeit.Letter)
|
|
|
|
f.Set("lexify", gofakeit.Lexify)
|
2020-04-16 07:28:55 +02:00
|
|
|
f.Set("rand_string", getRandValue)
|
2019-09-20 06:19:11 +02:00
|
|
|
f.Set("numerify", gofakeit.Numerify)
|
2020-04-17 16:56:26 +02:00
|
|
|
}
|
2019-09-20 06:19:11 +02:00
|
|
|
|
2020-05-01 08:20:13 +02:00
|
|
|
//nolint: errcheck
|
2020-04-17 16:56:26 +02:00
|
|
|
func setUtilFuncs(f *goja.Object) {
|
|
|
|
// Slugs
|
|
|
|
f.Set("make_slug", slug.Make)
|
|
|
|
f.Set("make_slug_lang", slug.MakeLang)
|
|
|
|
f.Set("shuffle_strings", gofakeit.ShuffleStrings)
|
2019-09-20 06:19:11 +02:00
|
|
|
}
|