summaryrefslogtreecommitdiffstats
path: root/generate-sample-gig-data.php
blob: ecbf67aeb6e0e32da9bc60dae4f2a2d2f9484284 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
<?php
/**
 * Tool to generate random concert entries for importing into giglogadmin.
 *
 * @package giglogadmin
 *
 * SPDX-FileCopyrightText: 2021 Andrea Chirulescu <andrea.chirulescu@gmail.com>
 * SPDX-FileCopyrightText: 2021 Harald Eilertsen <haraldei@anduin.net>
 *
 * SPDX-License-Identifier: AGPL-3.0-or-later
 */

/**
 * Abstract base class for a generator.
 */
abstract class GeneratorBase {

    /**
     * Return a generated string.
     * Must be implemented by derived classes
     */
    abstract public function get() : string;

    /**
     * Return a random element from an array.
     *
     * @param array $arr an array of elements.
     */
    protected function pick( array $arr ) : string {
        return $arr[ array_rand( $arr ) ];
    }
}

/**
 * Generator for band names
 */
class BandNameGenerator extends GeneratorBase {

    /**
     * Prefixes.
     *
     * @var string[]
     *
     * @psalm-var array{0: string, 1: string, 2: string}
     */
    private array $prefixes = array(
        '',
        'a',
        'the',
    );

    /**
     * Adverbs.
     *
     * @var string[]
     *
     * @psalm-var array{0: string, 1: string, 2: string, 3: string, 4: string, 5: string, 6: string, 7: string}
     */
    private array $adverbs = array(
        'Bestial',
        'Dead',
        'Incongruent',
        'Ladylike',
        'Slimy',
        'Dandy',
        'Leftist',
        'Flamboyant',
    );

    /**
     * Verbs.
     *
     * @var string[]
     *
     * @psalm-var array{0: string, 1: string, 2: string, 3: string, 4: string, 5: string, 6: string}
     */
    private array $verbs = array(
        'Kill',
        'Regurgitat',
        'Destroy',
        'Blasphem',
        'Strangl',
        'Terroriz',
        'Mutilat',
    );

    /**
     * Endings.
     *
     * @var string[]
     *
     * @psalm-var array{0: string, 1: string, 2: string, 3: string}
     */
    private array $endings = array(
        'er',
        'ers',
        'ing',
        'ed',
        'or',
    );

    /**
     * Return a generated band name.
     */
    public function get() : string {
        $parts = array(
            $this->pick( $this->prefixes ),
            $this->pick( $this->adverbs ),
            $this->pick( $this->verbs ),
		);

        return trim( implode( ' ', $parts ) . $this->pick( $this->endings ) );
    }
}

/**
 * Generator for venue names
 */
class VenueGenerator extends GeneratorBase {

    /**
     * Prefix 1.
     *
     * @var string[]
     *
     * @psalm-var array{0: string, 1: string, 2: string, 3: string, 4: string}
     */
    private array $prefix1 = array(
        '',
        'Royal',
        'Shabby',
        'Happy',
        'Drunken',
    );

    /**
     * Prefix 2.
     *
     * @var string[]
     *
     * @psalm-var array{0: string, 1: string, 2: string, 3: string, 4: string, 5: string}
     */
    private array $prefix2 = array(
        '',
        'Music',
        'Fiddler',
        'Rock',
        'Metal',
        'Mental',
    );

    /**
     * Type of venue.
     *
     * @var string[]
     *
     * @psalm-var array{0: string, 1: string, 2: string, 3: string, 4: string, 5: string, 6: string}
     */
    private array $type = array(
        'Hall',
        'Museum',
        'Asylum',
        'Stage',
        'Cottage',
        'Opera',
        'Lighthouse',
    );

    /**
     * Return a generated venue name.
     */
    public function get() : string {
        $parts = array(
            $this->pick( $this->prefix1 ),
            $this->pick( $this->prefix2 ),
            $this->pick( $this->type ),
		);

        return trim( implode( ' ', $parts ) );
    }
}

/**
 * Generator for links (event and ticket links.)
 */
class LinkGenerator extends GeneratorBase {

    /**
     * Return a generated link.
     *
     * @return string
     */
    public function get() : string {
        return 'https://example.com/' . bin2hex( random_bytes( 8 ) );
    }
}

/**
 * Generator for cities
 */
class CityGenerator extends GeneratorBase {

    /**
     * A few cities, so we can test filtering for cities.
     *
     * @var array $cities   The cities.
     */
    private array $cities = array(
        'Oslo',
        'Trondheim',
        'Støren',
        'Velstandsbygd',
        'Sommerhytta',
    );

    /**
     * Return a random city.
     */
    public function get() : string {
        return $this->pick( $this->cities );
    }
}

$band = new BandNameGenerator();
$venue = new VenueGenerator();
$links = new LinkGenerator();
$city = new CityGenerator();
$date = new DateTime();

$prog = array_shift( $argv );
$num = intval( array_shift( $argv ) ) ?? 10;

for ( $i = 0; $i < $num; $i++ ) {
    $date->add( new DateInterval( 'P' . random_int( 0, 60 ) . 'D' ) );

    // phpcs:disable WordPress.Security.EscapeOutput.OutputNotEscaped
    echo implode( "\t", array( $band->get(), $venue->get(), $city->get(), $date->format( 'Y-m-d' ), $links->get(), $links->get() ) ) . "\n";
}