Esempio n. 1
0
 /**
  * Handles the message.
  *
  * @param Message $message 
  * @param array $params
  * @param Discord $discord 
  * @param Config $config 
  * @return void 
  */
 public static function handleMessage($message, $params, $discord, $config)
 {
     $prefix = isset($params[0]) ? $params[0] : $config['prefix'];
     $config['prefix'] = $prefix;
     Config::saveConfig($config, $config['filename']);
     $message->reply("Set the prefix to `{$prefix}`");
 }
 /**
  * Handles the message.
  *
  * @param Message $message 
  * @param array $params
  * @param Discord $discord 
  * @param Config $config 
  * @return void 
  */
 public static function handleMessage($message, $params, $discord, $config)
 {
     if (isset($params[1])) {
         $user = $params[1];
         $level = isset($params[2]) ? $params[2] : 2;
         if (preg_match('/<@([0-9]+)>/', $user, $matches)) {
             $user = $matches[1];
         }
         $config['perms']['perms'][$user] = $level;
         Config::saveConfig($config);
         $message->reply("Set user <@{$user}> auth level to {$config['perms']['levels'][$level]}");
     }
 }
Esempio n. 3
0
 /**
  * Starts the bot.
  *
  * @return void 
  */
 public function start()
 {
     set_error_handler(function ($errno, $errstr) {
         if (!(error_reporting() & $errno)) {
             return;
         }
         echo "[Error] {$errno} {$errstr}\r\n";
         throw new \Exception($errstr, $errno);
     }, E_ALL);
     foreach ($this->commands as $command => $data) {
         $this->websocket->on(Event::MESSAGE_CREATE, function ($message, $discord, $new) use($command, $data) {
             $content = explode(' ', $message->content);
             $config = Config::getConfig($this->configfile);
             if ($content[0] == $config['prefix'] . $command) {
                 Arr::forget($content, 0);
                 $user_perms = @$config['perms']['perms'][$message->author->id];
                 if (empty($user_perms)) {
                     $user_perms = $config['perms']['default'];
                 }
                 if ($user_perms >= $data['perms']) {
                     try {
                         $data['class']::handleMessage($message, $content, $discord, $config, $this);
                     } catch (\Exception $e) {
                         $message->reply("There was an error running the command. `{$e->getMessage()}`");
                     }
                 } else {
                     $message->reply('You do not have permission to do this!');
                     echo "[Auth] User {$message->author->username} blocked from running {$config['prefix']}{$command}, <@{$message->author->id}>\r\n";
                 }
             }
         });
     }
     $this->websocket->on('ready', function ($discord) {
         $discord->updatePresence($this->websocket, 'DiscordPHP ' . Discord::VERSION, false);
     });
     $this->websocket->on('error', function ($error, $ws) {
         echo "[Error] {$error}\r\n";
     });
     $this->websocket->on('close', function () {
         echo "[Close] WebSocket was closed.\r\n";
         die;
     });
     $this->websocket->run();
 }
Esempio n. 4
0
 /**
  * Starts the bot.
  *
  * @return void 
  */
 public function start()
 {
     // set_error_handler(function ($errno, $errstr) {
     // 	if (!(error_reporting() & $errno)) {
     // 		return;
     // 	}
     // 	echo "[Error] {$errno} {$errstr}\r\n";
     // 	throw new \Exception($errstr, $errno);
     // }, E_ALL);
     $this->websocket->on(Event::MESSAGE_CREATE, function ($message, $discord, $new) {
         $config = Config::getConfig($this->configfile);
         if (substr($message->content, 0, strlen($config['prefix'])) == $config['prefix']) {
             foreach ($this->commands as $command => $data) {
                 $parts = [];
                 $content = explode(' ', $message->content);
                 foreach ($content as $index => $c) {
                     foreach (explode("\n", $c) as $p) {
                         $parts[] = $p;
                     }
                 }
                 $content = $parts;
                 if ($content[0] == $config['prefix'] . $command) {
                     array_shift($content);
                     $user_perms = @$config['perms']['perms'][$message->author->id];
                     if (empty($user_perms)) {
                         $user_perms = $config['perms']['default'];
                     }
                     if ($user_perms >= $data['perms']) {
                         try {
                             $data['class']::handleMessage($message, $content, $new, $config, $this);
                             $this->log->addInfo("{$message->author->username}#{$message->author->discriminator} ({$message->author}) ran command {$config['prefix']}{$command}", $content);
                         } catch (\Throwable $e) {
                             try {
                                 $this->log->addError("Error running the command {$config['prefix']}{$command}", ['message' => $e->getMessage()]);
                                 $message->reply("There was an error running the command. `{$e->getMessage()}`");
                             } catch (\Throwable $e2) {
                             }
                         }
                     } else {
                         try {
                             $message->reply('You do not have permission to do this!');
                         } catch (\Throwable $e2) {
                         }
                         $this->log->addWarning("{$message->author->username}#{$message->author->discriminator} ({$message->author}) attempted to run command {$config['prefix']}{$command}", $content);
                     }
                 }
             }
         }
     });
     $this->websocket->on(Event::MESSAGE_CREATE, function ($message, $discord, $new) {
         $triggers = ['bless up', ':pray:', '🙏'];
         if (Str::contains(strtolower($message->content), $triggers) && $message->author->id != $discord->id) {
             $config = Config::getConfig($this->configfile);
             $content = explode(' ', $message->content);
             Arr::forget($content, 0);
             Khaled::handleMessage($message, $content, $new, $config, $this);
         }
     });
     $this->websocket->on(Event::MESSAGE_CREATE, function ($message, $discord, $new) {
         if ($message->author->id == '81726071573061632' && strtolower($message->content) == 'we dem') {
             $message->channel->sendMessage('BOIZ');
         }
     });
     $this->websocket->on('ready', function ($discord) {
         $this->log->addInfo('WebSocket is ready.');
         $discord->updatePresence($this->websocket, 'DiscordPHP ' . Discord::VERSION, false);
     });
     $this->websocket->on('error', function ($error, $ws) {
         $this->log->addError("WebSocket encountered an error", [$error->getMessage()]);
     });
     // $this->websocket->on('heartbeat', function ($epoch) {
     // 	echo "Heartbeat at {$epoch}\r\n";
     // });
     $this->websocket->on('close', function ($op, $reason) {
         $this->log->addWarning("WebSocket closed.", ['code' => $op, 'reason' => $reason]);
     });
     $this->websocket->on('reconnecting', function () {
         $this->log->addInfo('WebSocket is reconnecting...');
     });
     $this->websocket->on('reconnected', function () {
         $this->log->addInfo('WebSocket has reconnected.');
     });
     $config = Config::getConfig($this->configfile);
     if (isset($config['cache']) && $config['cache'] == 'redis') {
         Cache::setCache(new RedisCacheDriver('localhost'));
     }
     if (isset($config['carbon_bot']) && $config['carbon_bot']['enabled']) {
         $guzzle = new Client(['http_errors' => false]);
         $body = ['key' => $config['carbon_bot']['key']];
         $this->log->addInfo('Enabling Carbon server count updates...');
         $carbonHeartbeat = function () use($guzzle, &$body) {
             $body['servercount'] = $this->discord->guilds->count();
             $this->log->addDebug('Sending Carbon server count update...');
             $request = new Request('POST', 'https://www.carbonitex.net/discord/data/botdata.php', ['Content-Type' => 'application/json'], json_encode($body));
             $response = $guzzle->send($request);
             if ($response->getStatusCode() !== 200) {
                 $this->log->addWarning('Carbon server count update failed.', ['status' => $response->getStatusCode(), 'reason' => $response->getReasonPhrase()]);
             } else {
                 $this->log->addDebug('Sent Carbon server count update successfully.');
             }
         };
         $carbonHeartbeat();
         $this->websocket->loop->addPeriodicTimer(60, $carbonHeartbeat);
     }
     $this->websocket->run();
 }