container = $container; $this->config = $container->get('config'); $this->cache = $container->get('cache'); $this->init(); } /** * Set up the class properties * * @return void */ protected function init() { $this->cookieJar = new CookieJar(); $this->client = new Client([ 'base_uri' => $this->base_url, 'cookies' => TRUE, 'http_errors' => FALSE, 'defaults' => [ 'cookies' => $this->cookieJar, 'headers' => [ 'User-Agent' => "Tim's Anime Client/3.0", 'Accept-Encoding' => 'application/json' ], 'timeout' => 25, 'connect_timeout' => 25 ] ]); } /** * Magic methods to call guzzle api client * * @param string $method * @param array $args * @return ResponseInterface|null */ public function __call($method, $args) { $valid_methods = [ 'get', 'delete', 'head', 'options', 'patch', 'post', 'put' ]; if ( ! in_array($method, $valid_methods)) { return NULL; } array_unshift($args, strtoupper($method)); return call_user_func_array([$this->client, 'request'], $args); } /** * Get the data for the specified library entry * * @param string $id * @param string $status * @return array */ public function get_library_item($id, $status) { $data = $this->_get_list_from_api($status); $index_array = array_column($data, 'id'); $key = array_search($id, $index_array); return $key !== FALSE ? $data[$key] : []; } /** * Sort the manga entries by their title * * @codeCoverageIgnore * @param array $array * @param string $sort_key * @return void */ protected function sort_by_name(&$array, $sort_key) { $sort = array(); foreach ($array as $key => $item) { $sort[$key] = $item[$sort_key]['title']; } array_multisort($sort, SORT_ASC, $array); } /** * Attempt login via the api * * @codeCoverageIgnore * @param string $username * @param string $password * @return string|false */ public function authenticate($username, $password) { $response = $this->post(AnimeClient::HUMMINGBIRD_AUTH_URL, [ 'form_params' => [ 'username' => $username, 'password' => $password ] ]); if ($response->getStatusCode() === 201) { return json_decode($response->getBody(), TRUE); } return FALSE; } /** * Dummy function that should be abstract. Is not abstract because * this class is used concretely for authorizing API calls * * @TODO Refactor, and make this abstract * @param string $status * @return array */ protected function _get_list_from_api($status) { return []; } } // End of BaseApiModel.php