-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathfunctions.php
269 lines (234 loc) · 6.34 KB
/
functions.php
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
<?php
namespace Core;
use CommandString\Utils\FileSystemUtils;
use Discord\Builders\Components\ActionRow;
use Discord\Builders\Components\Button;
use Discord\Builders\MessageBuilder;
use Discord\Discord;
use Discord\Helpers\Collection;
use Discord\Parts\Embed\Embed;
use Discord\Parts\Interactions\Command\Choice;
use Discord\Parts\Interactions\Command\Option as CommandOption;
use Discord\Parts\Interactions\Request\Option;
use Discord\Parts\Interactions\Interaction;
use LogicException;
use ReflectionAttribute;
use ReflectionClass;
use ReflectionException;
/**
* Returns the Env instance
*
* @throws LogicException if the Env instance is not set
*/
function env(): Env
{
$env = Env::get();
if (!isset($env)) {
throw new LogicException('Env is not set');
}
return $env;
}
/**
* Returns the Discord instance from the Environment
*
* @throws LogicException if the Discord instance is not set
*/
function discord(): ?Discord
{
return env()->discord ?? null;
}
/**
* Create a new Option used for building slash commands
*/
function newSlashCommandOption(string $name, string $description, int $type, bool $required = false): CommandOption
{
return newDiscordPart(CommandOption::class)
->setName($name)
->setDescription($description)
->setType($type)
->setRequired($required);
}
/**
* Create a new Choice used for building slash commands
*/
function newSlashCommandChoice(string $name, float|int|string $value): Choice
{
return newDiscordPart(Choice::class)
->setName($name)
->setValue($value);
}
/**
* Create a new MessageBuilder object with the content define for creating simple MessageBuilders quickly
*
* ```php
* $message = messageWithContent("Hello World");
* ```
*/
function messageWithContent(string $content): MessageBuilder
{
return MessageBuilder::new()->setContent($content);
}
/**
* Append to grab and empty array field. You can supply an embed to have the empty field added, or
* if you leave the `$embed` option `null`, then an array containing the empty field will be returned
*
* ```php
* $embed = newDiscordPart("\Discord\Parts\Embed\Embed");
* emptyEmbedField($embed);
* ```
*
* or
*
* ```php
* $embed = newDiscordPart("\Discord\Parts\Embed\Embed");
* $emptyField = emptyEmbedField();
* ```
*/
function emptyEmbedField(?Embed $embed = null): array|Embed
{
$emptyField = ['name' => "\u{200b}", 'value' => "\u{200b}"];
if ($embed !== null) {
return $embed->addField($emptyField);
}
return $emptyField;
}
/**
* @template T
*
* @param class-string<T> $class
*
* @return T
*/
function newDiscordPart(string $class, mixed ...$args): mixed
{
return new $class(discord(), ...$args);
}
/**
* Quickly build an action row with multiple buttons
*
* ```php
* $banButton = (new Button(Button::STYLE_DANGER))->setLabel("Ban User");
* $kickButton = (new Button(Button::STYLE_DANGER))->setLabel("Kick User");
* $actionRow = buildActionRowWithButtons($banButton, $kickButton);
* ```
*
* *This can also be paired with newButton*
*
* ```php
* $actionRow = buildActionWithButtons(
* newButton(Button::STYLE_DANGER, "Ban User")
* newButton(Button::STYLE_DANGER, "Kick User")
* );
* ```
*/
function buildActionRowWithButtons(Button ...$buttons): ActionRow
{
$actionRow = new ActionRow();
foreach ($buttons as $button) {
$actionRow->addComponent($button);
}
return $actionRow;
}
/**
* Quickly create button objects
*
* ```php
* $button = newButton(Button::STYLE_DANGER, "Kick User", "Kick|Command_String");
* ```
*/
function newButton(int $style, string $label, ?string $custom_id = null): Button
{
return (new Button($style, $custom_id))->setLabel($label);
}
/**
* Get an option from an Interaction/Interaction Repository by specifying the option(s) name
*
* For regular slash commands
* `/ban :user`
*
* ```php
* $user = getOptionFromInteraction($interaction, "user");
* ```
*
* For sub commands / sub command groups you can stack the names
* `/admin ban :user`
*
* ```php
* $user = getOptionFromInteraction($interaction->data->options, "ban", "user");
* ```
*/
function getOptionFromInteraction(Collection|Interaction $options, string ...$names): ?Option
{
if ($options instanceof Interaction) {
$options = $options->data->options;
}
$option = null;
foreach ($names as $key => $name) {
$option = $options->get('name', $name);
if ($key !== count($names) - 1) {
$options = $option?->options;
}
if (!isset($options, $option)) {
break;
}
}
return $option;
}
// Logging Functions
function log($level, string $message, array $context = []): void
{
discord()?->getLogger()->log($level, $message, $context);
}
function debug(string $message, array $context = []): void
{
discord()?->getLogger()->debug($message, $context);
}
function error(string $message, array $context = []): void
{
discord()?->getLogger()->error($message, $context);
}
function info(string $message, array $context = []): void
{
discord()?->getLogger()->info($message, $context);
}
// Internal Functions //
/**
* Loop through all the classes in a directory and call a callback function with the class name
*/
function loopClasses(string $directory, callable $callback): void
{
$convertPathToNamespace = static fn (string $path): string => str_replace([realpath(BOT_ROOT), '/'], ['', '\\'], $path);
foreach (FileSystemUtils::getAllFiles($directory, true) as $file) {
if (!str_ends_with($file, '.php')) {
continue;
}
$className = basename($file, '.php');
$path = dirname($file);
$namespace = $convertPathToNamespace($path);
$className = $namespace . '\\' . $className;
$callback($className, $namespace, $file, $path);
}
}
/**
* @template T
*
* @param class-string $class
* @param class-string<T> $attribute
*
* @throws ReflectionException
*
* @return T|false
*/
function doesClassHaveAttribute(string $class, string $attribute): object|false
{
return (new ReflectionClass($class))->getAttributes($attribute, ReflectionAttribute::IS_INSTANCEOF)[0] ?? false;
}
function deleteAllFilesInDirectory(string $directory): void
{
if (!is_dir($directory)) {
return;
}
foreach (FileSystemUtils::getAllFiles($directory) as $file) {
unlink($file);
}
}