-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelpers.php
More file actions
338 lines (305 loc) · 7.11 KB
/
helpers.php
File metadata and controls
338 lines (305 loc) · 7.11 KB
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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
<?php
use Carbon\Carbon;
use Illuminate\Support\Str;
use Illuminate\Support\Debug\Dumper;
if (! function_exists('account')) {
/**
* Return the currently authenticated user.
*
* @return \Apolune\Contracts\Account\Account
*/
function account()
{
return Auth::user();
}
}
if (! function_exists('countries')) {
/**
* Get all of the countries.
*
* @return \Illuminate\Support\Collection
*/
function countries()
{
return server()->countries();
}
}
if (! function_exists('country')) {
/**
* Get a specific country.
*
* @param string $code
* @return string
*/
function country($code)
{
$countries = countries();
return head(array_where($countries, function ($key, $country) use ($code) {
return strtoupper($key) === strtoupper($code);
}));
}
}
if (! function_exists('creature_by_slug')) {
/**
* Get a specific creature by its slug.
*
* @param string $slug
* @return \Apolune\Contracts\Server\Creature
*/
function creature_by_slug($slug)
{
$creatures = creatures();
return head(array_where($creatures, function ($key, $creature) use ($slug) {
return strtolower($creature->slug()) === strtolower($slug);
}));
}
}
if (! function_exists('creatures')) {
/**
* Get all of the creatures.
*
* @return \Illuminate\Support\Collection
*/
function creatures()
{
return server()->creatures();
}
}
if (! function_exists('d')) {
/**
* Dump the passed variables.
*
* @param mixed
* @return void
*/
function d()
{
array_map(function ($x) {
(new Dumper)->dump($x);
}, func_get_args());
}
}
if (! function_exists('experience')) {
/**
* Calculate the experience needed for a specific level.
*
* @param integer $level
* @return \Illuminate\Support\Collection
*/
function experience($level)
{
$formula = config('pandaac.apolune.core.formula-experience');
return $formula($level);
}
}
if (! function_exists('gender')) {
/**
* Get a specific gender.
*
* @param integer $id
* @return \Apolune\Contracts\Server\Gender
*/
function gender($id)
{
$genders = genders();
return head(array_where($genders, function ($key, $gender) use ($id) {
return $gender->id() === (int) $id;
}));
}
}
if (! function_exists('genders')) {
/**
* Get all of the server genders.
*
* @return \Illuminate\Support\Collection
*/
function genders()
{
return server()->genders();
}
}
if (! function_exists('spell_by_slug')) {
/**
* Get a specific spell by its slug.
*
* @param string $slug
* @return \Apolune\Contracts\Server\Spell
*/
function spell_by_slug($slug)
{
$spells = spells();
return head(array_where($spells, function ($key, $spell) use ($slug) {
return strtolower($spell->slug()) === strtolower($slug);
}));
}
}
if (! function_exists('spells')) {
/**
* Get all of the spells.
*
* @return \Illuminate\Support\Collection
*/
function spells()
{
return server()->spells();
}
}
if (! function_exists('hyphencase')) {
/**
* Convert a string to all lowercase with hyphens instead of spaces.
*
* @param string $string
* @return string
*/
function hyphencase($string)
{
return strtolower(str_replace([' ', '_'], '-', $string));
}
}
if (! function_exists('limit')) {
/**
* Limit the number of characters in a string.
*
* @param string $value
* @param integer $limit 100
* @param string $end ..
* @return string
*/
function limit($value, $limit = 100, $end = '...')
{
return Str::limit($value, $limit, $end);
}
}
if (! function_exists('month')) {
/**
* Return the human-readable format of a month.
*
* @param integer $month
* @param string $format F
* @return string
*/
function month($month, $format = 'F')
{
return (new Carbon)->month($month)->format($format);
}
}
if (! function_exists('theme_path')) {
/**
* Get the path to the themes folder.
*
* @param string $path
* @return string
*/
function theme_path($path = '')
{
return base_path('/themes'.($path ? '/'.$path : $path));
}
}
if (! function_exists('server')) {
/**
* Get the server factory.
*
* @return \Apolune\Contracts\Server\Factory
*/
function server()
{
return app('server');
}
}
if (! function_exists('town')) {
/**
* Get a specific town.
*
* @param integer $id
* @param boolean $starter null
* @return \Apolune\Contracts\Server\Town
*/
function town($id, $starter = null)
{
$towns = towns($starter);
return head(array_where($towns, function ($key, $town) use ($id) {
return $town->id() === (int) $id;
}));
}
}
if (! function_exists('towns')) {
/**
* Get all of the server towns.
*
* @param boolean $starter null
* @return \Illuminate\Support\Collection
*/
function towns($starter = null)
{
return server()->towns($starter);
}
}
if (! function_exists('vocation')) {
/**
* Get a specific vocation.
*
* @param integer $id
* @param boolean $starter null
* @return \Apolune\Contracts\Server\Vocation
*/
function vocation($id, $starter = null)
{
$vocations = vocations($starter);
return head(array_where($vocations, function ($key, $vocation) use ($id) {
return $vocation->id() === (int) $id;
}));
}
}
if (! function_exists('vocations')) {
/**
* Get all of the server vocations.
*
* @param boolean $starter null
* @return \Illuminate\Support\Collection
*/
function vocations($starter = null)
{
return server()->vocations($starter);
}
}
if (! function_exists('world')) {
/**
* Get a specific world.
*
* @param integer $id
* @return \Apolune\Contracts\Server\World
*/
function world($id)
{
$worlds = worlds();
return head(array_where($worlds, function ($key, $world) use ($id) {
return $world->id() === (int) $id;
}));
}
}
if (! function_exists('world_by_slug')) {
/**
* Get a specific world by its slug.
*
* @param string $slug
* @return \Apolune\Contracts\Server\World
*/
function world_by_slug($slug)
{
$worlds = worlds();
return head(array_where($worlds, function ($key, $world) use ($slug) {
return strtolower($world->slug()) === strtolower($slug);
}));
}
}
if (! function_exists('worlds')) {
/**
* Get all of the server worlds.
*
* @return \Illuminate\Support\Collection
*/
function worlds()
{
return server()->worlds();
}
}