-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathImage.php
59 lines (50 loc) · 1.37 KB
/
Image.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
<?php
namespace ShitwareLtd\Shitbot\Commands;
use Discord\Builders\MessageBuilder;
use Discord\Parts\Channel\Message;
use Throwable;
use function React\Async\coroutine;
class Image extends Command
{
/**
* @return string
*/
public function trigger(): string
{
return '!image';
}
/**
* @return int
*/
public function cooldown(): int
{
return 15000;
}
/**
* @param Message $entity
* @param array $args
* @return void
*/
public function handle(Message $entity, array $args): void
{
coroutine(function (Message $entity) {
if ($this->skip($entity)) {
return;
}
try {
$response = file_get_contents('https://source.unsplash.com/random');
$entity->channel->sendMessage(
MessageBuilder::new()
->setReplyTo($entity)
->addFileFromContent(
filename: 'random_'.uniqid(more_entropy: true).'.jpg',
content: (string) $response
)
);
$this->hitCooldown($entity->author);
} catch (Throwable) {
//Not important
}
}, $entity);
}
}