mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-01-29 15:29:34 -06:00
229 lines
7.2 KiB
PHP
229 lines
7.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* NOTICE OF LICENSE.
|
|
*
|
|
* UNIT3D Community Edition is open-sourced software licensed under the GNU Affero General Public License v3.0
|
|
* The details is bundled with this project in the file LICENSE.txt.
|
|
*
|
|
* @project UNIT3D Community Edition
|
|
*
|
|
* @author HDVinnie <hdinnovations@protonmail.com>
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0
|
|
*/
|
|
|
|
namespace App\Bots;
|
|
|
|
use App\Events\Chatter;
|
|
use App\Http\Resources\UserAudibleResource;
|
|
use App\Http\Resources\UserEchoResource;
|
|
use App\Models\Bot;
|
|
use App\Models\Gift;
|
|
use App\Models\User;
|
|
use App\Models\UserAudible;
|
|
use App\Models\UserEcho;
|
|
use App\Notifications\NewBon;
|
|
use App\Repositories\ChatRepository;
|
|
|
|
class SystemBot
|
|
{
|
|
private Bot $bot;
|
|
|
|
private User $target;
|
|
|
|
private string $type;
|
|
|
|
private string $message;
|
|
|
|
private string $log;
|
|
|
|
public function __construct(private readonly ChatRepository $chatRepository)
|
|
{
|
|
$this->bot = Bot::where('is_systembot', '=', true)->sole();
|
|
}
|
|
|
|
public function replaceVars(string $output): string
|
|
{
|
|
$output = str_replace(['{me}', '{command}'], [$this->bot->name, $this->bot->command], $output);
|
|
|
|
if (str_contains($output, '{bots}')) {
|
|
$botHelp = '';
|
|
$bots = Bot::where('active', '=', 1)->where('id', '!=', $this->bot->id)->oldest('position')->get();
|
|
|
|
foreach ($bots as $bot) {
|
|
$botHelp .= '( ! | / | @)'.$bot->command.' help triggers help file for '.$bot->name."\n";
|
|
}
|
|
|
|
$output = str_replace('{bots}', $botHelp, $output);
|
|
}
|
|
|
|
return $output;
|
|
}
|
|
|
|
/**
|
|
* Get Help.
|
|
*/
|
|
public function getHelp(): string
|
|
{
|
|
return $this->replaceVars($this->bot->help ?? '');
|
|
}
|
|
|
|
/**
|
|
* Send Gift.
|
|
*
|
|
* @param numeric-string $amount
|
|
*/
|
|
public function putGift(string $receiver, string $amount, string $note): string
|
|
{
|
|
$v = validator(['receiver' => $receiver, 'amount' => $amount, 'note' => $note], [
|
|
'receiver' => 'required|string|exists:users,username',
|
|
'amount' => \sprintf('required|decimal:0,2|min:1|max:%s', $this->target->seedbonus),
|
|
'note' => 'required|string',
|
|
]);
|
|
|
|
if ($v->passes()) {
|
|
$recipient = User::where('username', 'LIKE', $receiver)->first();
|
|
|
|
if (!$recipient || $recipient->id === $this->target->id) {
|
|
return 'Your BON gift could not be sent.';
|
|
}
|
|
|
|
$amount = (float) $amount;
|
|
|
|
$recipient->increment('seedbonus', $amount);
|
|
$this->target->decrement('seedbonus', $amount);
|
|
|
|
$gift = Gift::create([
|
|
'sender_id' => $this->target->id,
|
|
'recipient_id' => $recipient->id,
|
|
'bon' => $amount,
|
|
'message' => $note,
|
|
]);
|
|
|
|
if ($this->target->id !== $recipient->id && $recipient->acceptsNotification($this->target, $recipient, 'bon', 'show_bon_gift')) {
|
|
$recipient->notify(new NewBon($gift));
|
|
}
|
|
|
|
$profileUrl = href_profile($this->target);
|
|
$recipientUrl = href_profile($recipient);
|
|
|
|
$this->chatRepository->systemMessage(
|
|
\sprintf('[url=%s]%s[/url] has gifted %s BON to [url=%s]%s[/url]', $profileUrl, $this->target->username, $amount, $recipientUrl, $recipient->username)
|
|
);
|
|
|
|
return 'Your gift to '.$recipient->username.' for '.$amount.' BON has been sent!';
|
|
}
|
|
|
|
return 'Your BON gift could not be sent.';
|
|
}
|
|
|
|
/**
|
|
* Process Message.
|
|
*/
|
|
public function process(string $type, User $user, string $message): \Illuminate\Http\Response|bool
|
|
{
|
|
$this->target = $user;
|
|
|
|
if ($type !== 'message') {
|
|
$message = trim(strstr($message, ' ') ?: '');
|
|
}
|
|
|
|
$firstWord = strstr($message, ' ', true);
|
|
|
|
switch ($firstWord) {
|
|
case 'gift':
|
|
[, $username, $amount, $message] = mb_split(' +', $message, 4) + [null, null, null, null];
|
|
|
|
$this->log = $this->putGift($username, $amount, $message);
|
|
|
|
break;
|
|
case 'help':
|
|
$this->log = $this->getHelp();
|
|
|
|
break;
|
|
default:
|
|
$this->log = 'All '.$this->bot->name.' commands must be a private message or begin with /'.$this->bot->command.' or !'.$this->bot->command.'. Need help? Type /'.$this->bot->command.' help and you shall be helped.';
|
|
}
|
|
|
|
$this->type = $type;
|
|
$this->message = $message;
|
|
|
|
return $this->pm();
|
|
}
|
|
|
|
/**
|
|
* Output Message.
|
|
*/
|
|
public function pm(): \Illuminate\Http\Response|true
|
|
{
|
|
$type = $this->type;
|
|
$target = $this->target;
|
|
$txt = $this->log;
|
|
$message = $this->message;
|
|
|
|
if ($type === 'message' || $type === 'private') {
|
|
// Create echo for user if missing
|
|
$echoes = cache()->remember(
|
|
'user-echoes'.$target->id,
|
|
3600,
|
|
fn () => UserEcho::with(['user', 'room', 'target', 'bot'])->where('user_id', '=', $target->id)->get()
|
|
);
|
|
|
|
if ($echoes->doesntContain(fn ($echo) => $echo->bot_id == $this->bot->id)) {
|
|
$echoes->push(UserEcho::create([
|
|
'user_id' => $target->id,
|
|
'bot_id' => $this->bot->id,
|
|
]));
|
|
|
|
cache()->put('user-echoes'.$target->id, $echoes, 3600);
|
|
|
|
Chatter::dispatch('echo', $target->id, UserEchoResource::collection($echoes));
|
|
}
|
|
|
|
// Create audible for user if missing
|
|
$audibles = cache()->remember(
|
|
'user-audibles'.$target->id,
|
|
3600,
|
|
fn () => UserAudible::with(['user', 'room', 'target', 'bot'])->where('user_id', '=', $target->id)->get()
|
|
);
|
|
|
|
if ($audibles->doesntContain(fn ($audible) => $audible->bot_id == $this->bot->id)) {
|
|
$audibles->push(UserAudible::create([
|
|
'user_id' => $target->id,
|
|
'bot_id' => $this->bot->id,
|
|
'status' => false,
|
|
]));
|
|
|
|
cache()->put('user-audibles'.$target->id, $audibles, 3600);
|
|
|
|
Chatter::dispatch('audible', $target->id, UserAudibleResource::collection($audibles));
|
|
}
|
|
|
|
// Create message
|
|
$roomId = 0;
|
|
$this->chatRepository->privateMessage($target->id, $roomId, $message, 1, $this->bot->id);
|
|
$this->chatRepository->privateMessage(1, $roomId, $txt, $target->id, $this->bot->id);
|
|
|
|
return response('success');
|
|
}
|
|
|
|
if ($type === 'echo') {
|
|
$roomId = 0;
|
|
$this->chatRepository->botMessage($this->bot->id, $roomId, $txt, $target->id);
|
|
|
|
return response('success');
|
|
}
|
|
|
|
if ($type === 'public') {
|
|
$this->chatRepository->message($target->id, $target->chatroom->id, $message, null, null);
|
|
$this->chatRepository->message(1, $target->chatroom->id, $txt, null, $this->bot->id);
|
|
|
|
return response('success');
|
|
}
|
|
|
|
return true;
|
|
}
|
|
}
|