| Server IP : 54.233.248.239 / Your IP : 172.28.20.13 Web Server : Apache System : Linux ip-172-28-29-189 6.5.0-1014-aws #14~22.04.1-Ubuntu SMP Thu Feb 15 15:27:06 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.2.34-43+ubuntu22.04.1+deb.sury.org+1 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/vinumday2_0/vendor/irazasyed/telegram-bot-sdk/src/Objects/ |
Upload File : |
<?php
namespace Telegram\Bot\Objects;
use Illuminate\Support\Collection;
/**
* Class BaseObject.
*/
abstract class BaseObject extends Collection
{
/**
* Builds collection entity.
*
* @param array|mixed $data
*/
public function __construct($data)
{
parent::__construct($this->getRawResult($data));
$this->mapRelatives();
}
/**
* Property relations.
*
* @return array
*/
abstract public function relations();
/**
* Get an item from the collection by key.
*
* @param mixed $key
* @param mixed $default
*
* @return mixed|static
*/
public function get($key, $default = null)
{
if ($this->offsetExists($key)) {
return is_array($this->items[$key]) ? new static($this->items[$key]) : $this->items[$key];
}
return value($default);
}
/**
* Map property relatives to appropriate objects.
*
* @return array|void
*/
public function mapRelatives()
{
$relations = $this->relations();
if (empty($relations) || !is_array($relations)) {
return false;
}
$results = $this->all();
foreach ($results as $key => $data) {
foreach ($relations as $property => $class) {
if (!is_object($data) && isset($results[$key][$property])) {
$results[$key][$property] = new $class($results[$key][$property]);
continue;
}
if ($key === $property) {
$results[$key] = new $class($results[$key]);
}
}
}
return $this->items = $results;
}
/**
* Returns raw response.
*
* @return array|mixed
*/
public function getRawResponse()
{
return $this->items;
}
/**
* Returns raw result.
*
* @param $data
*
* @return mixed
*/
public function getRawResult($data)
{
return array_get($data, 'result', $data);
}
/**
* Get Status of request.
*
* @return mixed
*/
public function getStatus()
{
return array_get($this->items, 'ok', false);
}
/**
* Magic method to get properties dynamically.
*
* @param $name
* @param $arguments
*
* @return mixed
*/
public function __call($name, $arguments)
{
$action = substr($name, 0, 3);
if ($action === 'get') {
$property = snake_case(substr($name, 3));
$response = $this->get($property);
// Map relative property to an object
$relations = $this->relations();
if (null != $response && isset($relations[$property])) {
return new $relations[$property]($response);
}
return $response;
}
return false;
}
}