From 6990d052d5e95295e729aae28a0d30bfdcb98573 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Espino?= Date: Thu, 11 Jan 2018 16:57:47 +0100 Subject: [XYZ-6] Add sampledata platform command (#8027) * Add fake dependency * [XYZ-6] Add sampledata platform command * Creating EMOJI_NAME_MAX_LENGTH as a constant and using it where needed --- vendor/github.com/corpix/uarand/uarand.go | 41 +++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 vendor/github.com/corpix/uarand/uarand.go (limited to 'vendor/github.com/corpix/uarand/uarand.go') diff --git a/vendor/github.com/corpix/uarand/uarand.go b/vendor/github.com/corpix/uarand/uarand.go new file mode 100644 index 000000000..04f9247c2 --- /dev/null +++ b/vendor/github.com/corpix/uarand/uarand.go @@ -0,0 +1,41 @@ +package uarand + +import ( + "math/rand" + "time" +) + +var ( + // Default is the UARand with default settings. + Default = New( + rand.New( + rand.NewSource(time.Now().UnixNano()), + ), + ) +) + +// Randomizer represents some entity which could provide us an entropy. +type Randomizer interface { + Seed(n int64) + Intn(n int) int +} + +// UARand describes the user agent randomizer settings. +type UARand struct { + Randomizer +} + +// GetRandom returns a random user agent from UserAgents slice. +func (u *UARand) GetRandom() string { + return UserAgents[u.Intn(len(UserAgents))] +} + +// GetRandom returns a random user agent from UserAgents slice. +// This version is driven by Default configuration. +func GetRandom() string { + return Default.GetRandom() +} + +func New(r Randomizer) *UARand { + return &UARand{r} +} -- cgit v1.2.3-1-g7c22