forked from ebhomengo/niki
91 lines
2.5 KiB
Go
91 lines
2.5 KiB
Go
|
package gofakeit
|
||
|
|
||
|
import "math/rand"
|
||
|
|
||
|
func BookTitle() string { return bookTitle(globalFaker.Rand) }
|
||
|
|
||
|
func (f *Faker) BookTitle() string { return bookTitle(f.Rand) }
|
||
|
|
||
|
func bookTitle(r *rand.Rand) string { return getRandValue(r, []string{"book", "title"}) }
|
||
|
|
||
|
func BookAuthor() string { return bookAuthor(globalFaker.Rand) }
|
||
|
|
||
|
func (f *Faker) BookAuthor() string { return bookAuthor(f.Rand) }
|
||
|
|
||
|
func bookAuthor(r *rand.Rand) string { return getRandValue(r, []string{"book", "author"}) }
|
||
|
|
||
|
func BookGenre() string { return bookGenre(globalFaker.Rand) }
|
||
|
|
||
|
func (f *Faker) BookGenre() string { return bookGenre(f.Rand) }
|
||
|
|
||
|
func bookGenre(r *rand.Rand) string { return getRandValue(r, []string{"book", "genre"}) }
|
||
|
|
||
|
type BookInfo struct {
|
||
|
Title string `json:"title" xml:"name"`
|
||
|
Author string `json:"author" xml:"author"`
|
||
|
Genre string `json:"genre" xml:"genre"`
|
||
|
}
|
||
|
|
||
|
func Book() *BookInfo { return book(globalFaker.Rand) }
|
||
|
|
||
|
func (f *Faker) Book() *BookInfo { return book(f.Rand) }
|
||
|
|
||
|
func book(r *rand.Rand) *BookInfo {
|
||
|
return &BookInfo{
|
||
|
Title: bookTitle(r),
|
||
|
Author: bookAuthor(r),
|
||
|
Genre: bookGenre(r),
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func addBookLookup() {
|
||
|
AddFuncLookup("book", Info{
|
||
|
Display: "Book",
|
||
|
Category: "book",
|
||
|
Description: "Written or printed work consisting of pages bound together, covering various subjects or stories",
|
||
|
Example: `{
|
||
|
"title": "Anna Karenina",
|
||
|
"author": "Toni Morrison",
|
||
|
"genre": "Thriller"
|
||
|
}`,
|
||
|
Output: "map[string]string",
|
||
|
ContentType: "application/json",
|
||
|
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
|
||
|
return book(r), nil
|
||
|
},
|
||
|
})
|
||
|
|
||
|
AddFuncLookup("booktitle", Info{
|
||
|
Display: "Title",
|
||
|
Category: "book",
|
||
|
Description: "The specific name given to a book",
|
||
|
Example: "Hamlet",
|
||
|
Output: "string",
|
||
|
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
|
||
|
return bookTitle(r), nil
|
||
|
},
|
||
|
})
|
||
|
|
||
|
AddFuncLookup("bookauthor", Info{
|
||
|
Display: "Author",
|
||
|
Category: "book",
|
||
|
Description: "The individual who wrote or created the content of a book",
|
||
|
Example: "Mark Twain",
|
||
|
Output: "string",
|
||
|
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
|
||
|
return bookAuthor(r), nil
|
||
|
},
|
||
|
})
|
||
|
|
||
|
AddFuncLookup("bookgenre", Info{
|
||
|
Display: "Genre",
|
||
|
Category: "book",
|
||
|
Description: "Category or type of book defined by its content, style, or form",
|
||
|
Example: "Adventure",
|
||
|
Output: "string",
|
||
|
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
|
||
|
return bookGenre(r), nil
|
||
|
},
|
||
|
})
|
||
|
}
|