dynamikaweb /
yii2-citta-api
| 1 | <?php |
||
| 2 | /** |
||
| 3 | * |
||
| 4 | * @author Rodrigo Dornelles <[email protected]> <[email protected]> |
||
| 5 | * |
||
| 6 | * @copyright Copyright (c) 2019 Dynamika Web |
||
| 7 | * @link https://github.com/dynamikaweb/yii2-citta-api |
||
| 8 | * @license http://www.opensource.org/licenses/bsd-license.php New BSD License |
||
| 9 | */ |
||
| 10 | |||
| 11 | namespace dynamikaweb\api; |
||
| 12 | |||
| 13 | use Yii; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * dynamikaweb\api\CittaApi |
||
| 17 | */ |
||
| 18 | class CittaApi |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @param string $url_base |
||
| 22 | * @param integer $max_redirect |
||
| 23 | */ |
||
| 24 | private static $url_base; |
||
| 25 | private static $max_redirect = 10; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * __construct |
||
| 29 | * |
||
| 30 | * @deprecated |
||
| 31 | */ |
||
| 32 | private function __construct() |
||
| 33 | { |
||
| 34 | |||
| 35 | } |
||
| 36 | |||
| 37 | /** |
||
| 38 | * setUrlBase |
||
| 39 | * |
||
| 40 | * @param string $uri |
||
| 41 | */ |
||
| 42 | public static function setUrlBase($uri) |
||
| 43 | { |
||
| 44 | self::$url_base = $uri; |
||
| 45 | } |
||
| 46 | |||
| 47 | /** |
||
| 48 | * getUrlBase |
||
| 49 | * |
||
| 50 | * @throws dynamikaweb\api\CittaException |
||
| 51 | * |
||
| 52 | * @return string |
||
| 53 | */ |
||
| 54 | public static function getUrlBase() |
||
| 55 | { |
||
| 56 | if (!self::$url_base) { |
||
| 57 | throw new CittaException('URL Base Not Set'); |
||
| 58 | } |
||
| 59 | |||
| 60 | if (!is_string(self::$url_base)) { |
||
| 61 | throw new CittaException('URL Base Type Error'); |
||
| 62 | } |
||
| 63 | |||
| 64 | return self::$url_base; |
||
| 65 | } |
||
| 66 | |||
| 67 | /** |
||
| 68 | * getUrl |
||
| 69 | * |
||
| 70 | * @param string|array $uri |
||
| 71 | * |
||
| 72 | * @see yii\helpers\Url |
||
| 73 | * @throws dynamikaweb\api\CittaException |
||
| 74 | * |
||
| 75 | * @return string |
||
| 76 | */ |
||
| 77 | public static function getUrlTo($uri) |
||
| 78 | { |
||
| 79 | if (is_array($uri)) { |
||
| 80 | return strtr("{base_url}{uri}", [ |
||
| 81 | "{base_url}" => self::getUrlBase(), |
||
| 82 | "{uri}" => \yii\helpers\Url::to($uri) |
||
| 83 | ]); |
||
| 84 | } else if (is_string($uri)) { |
||
| 85 | return strtr("{base_url}/{uri}", [ |
||
| 86 | "{base_url}" => self::getUrlBase(), |
||
| 87 | "{uri}" => $uri |
||
| 88 | ]); |
||
| 89 | } |
||
| 90 | |||
| 91 | throw new CittaException('URI Request Type Error'); |
||
| 92 | } |
||
| 93 | |||
| 94 | /** |
||
| 95 | * makeRequest |
||
| 96 | * |
||
| 97 | * @param string $uri |
||
| 98 | * |
||
| 99 | * @return object |
||
| 100 | */ |
||
| 101 | private static function makeRequest($uri) |
||
| 102 | { |
||
| 103 | $curl = new \Curl\Curl(); |
||
| 104 | $attemps = 0; |
||
| 105 | |||
| 106 | // get link |
||
| 107 | $request = self::getUrlTo($uri); |
||
| 108 | |||
| 109 | // try |
||
| 110 | do { |
||
| 111 | $result = $curl->get($request); |
||
| 112 | } |
||
| 113 | // redirect |
||
| 114 | while (self::remakeRequest($request, $attemps, $result)); |
||
| 115 | |||
| 116 | return $result; |
||
| 117 | } |
||
| 118 | |||
| 119 | /** |
||
| 120 | * remakeRequest |
||
| 121 | * |
||
| 122 | * @property |
||
| 123 | * |
||
| 124 | * @param string $uri |
||
| 125 | * @param integer $attemps |
||
| 126 | * @param object $result |
||
| 127 | * |
||
| 128 | * @throws dynamikaweb\api\CittaException |
||
| 129 | * |
||
| 130 | * @return boolean |
||
| 131 | */ |
||
| 132 | private static function remakeRequest(&$uri, &$attemps, $result) |
||
| 133 | { |
||
| 134 | // success |
||
| 135 | if (300 > $result->http_status_code || $result->http_status_code >= 400) { |
||
| 136 | return false; |
||
| 137 | } |
||
| 138 | |||
| 139 | // probably loop |
||
| 140 | if ($attemps++ >= self::$max_redirect) { |
||
| 141 | throw new CittaException('Too many redirects'); |
||
| 142 | } |
||
| 143 | |||
| 144 | foreach ($result->response_headers as $header) { |
||
| 145 | if (strpos($header, 'Location:') === false) { |
||
| 146 | continue; |
||
| 147 | } |
||
| 148 | |||
| 149 | // new url |
||
| 150 | $uri = strtr($header, [ |
||
| 151 | 'Location: ' => '', |
||
| 152 | 'location: ' => '', |
||
| 153 | 'Location:' => '', |
||
| 154 | 'location:' => '' |
||
| 155 | ]); |
||
| 156 | } |
||
| 157 | |||
| 158 | return true; |
||
| 159 | } |
||
| 160 | |||
| 161 | /** |
||
| 162 | * cacheFindAll |
||
| 163 | * |
||
| 164 | * @see yii\helpers\Json |
||
| 165 | * @see yii\helpers\ArrayHelper |
||
| 166 | * @see yii\data\ArrayDataProvider |
||
| 167 | * |
||
| 168 | * @param array|string $uri |
||
| 169 | * @param array $dataProviderParams |
||
| 170 | * @param integer $duration |
||
| 171 | * |
||
| 172 | * @throws dynamikaweb\api\CittaException |
||
| 173 | * |
||
| 174 | * @return object |
||
| 175 | */ |
||
| 176 | public static function cacheFindAll($uri, $dataProviderParams = [], $duration = null) |
||
| 177 | { |
||
| 178 | $key = base64_encode(self::getUrlTo($uri)); |
||
| 179 | |||
| 180 | if (!Yii::$app->cache->exists($key)) { |
||
| 181 | Yii::$app->cache->set($key, self::findAll($uri, $dataProviderParams), $duration); |
||
| 182 | } |
||
| 183 | |||
| 184 | return Yii::$app->cache->get($key); |
||
| 185 | } |
||
| 186 | |||
| 187 | /** |
||
| 188 | * findAll |
||
| 189 | * |
||
| 190 | * @see yii\helpers\Json |
||
| 191 | * @see yii\helpers\ArrayHelper |
||
| 192 | * @see yii\data\ArrayDataProvider |
||
| 193 | * |
||
| 194 | * @param array|string $uri |
||
| 195 | * @param array $dataProviderParams |
||
| 196 | * |
||
| 197 | * @throws dynamikaweb\api\CittaException |
||
| 198 | * |
||
| 199 | * @return object |
||
| 200 | */ |
||
| 201 | public static function findAll($uri, $dataProviderParams = []) |
||
| 202 | { |
||
| 203 | // call api |
||
| 204 | $result = self::makeRequest($uri); |
||
|
0 ignored issues
–
show
Bug
introduced
by
Loading history...
|
|||
| 205 | |||
| 206 | // http return a error |
||
| 207 | if ($result->error && $result->http_status_code) { |
||
| 208 | try { |
||
| 209 | // catch json error |
||
| 210 | $error = \yii\helpers\Json::decode($result->response, true); |
||
| 211 | } |
||
| 212 | catch (\yii\base\InvalidArgumentException $e) { |
||
| 213 | // catch html error |
||
| 214 | $error['message'] = strip_tags(\yii\helpers\BaseHtmlPurifier::process($result->response)); |
||
| 215 | } |
||
| 216 | |||
| 217 | throw new CittaException(strtr('HTTP Status {code} Error: {error}', [ |
||
| 218 | '{error}' => \yii\helpers\ArrayHelper::getValue($error, 'message', null), |
||
| 219 | '{code}' => $result->http_status_code |
||
| 220 | ]) |
||
| 221 | ); |
||
| 222 | } |
||
| 223 | |||
| 224 | // curl return a error |
||
| 225 | if ($result->error) { |
||
| 226 | throw new CittaException($result->error_message); |
||
| 227 | } |
||
| 228 | |||
| 229 | // decode json |
||
| 230 | $data = \yii\helpers\Json::decode($result->response, true); |
||
| 231 | |||
| 232 | // return response data |
||
| 233 | return new \yii\data\ArrayDataProvider( |
||
| 234 | \yii\Helpers\ArrayHelper::merge( |
||
| 235 | [ |
||
| 236 | 'allModels' => \yii\helpers\ArrayHelper::getValue($data, 'data', $data), // adapt data|root for unique patern |
||
| 237 | 'totalCount' => \yii\helpers\ArrayHelper::getValue($data, 'count', count($data)), // total count api |
||
| 238 | 'pagination' => [ |
||
| 239 | 'pageSize' => \yii\helpers\ArrayHelper::getValue($uri, 'size', false), |
||
| 240 | 'page' => false |
||
| 241 | ] |
||
| 242 | ], |
||
| 243 | $dataProviderParams |
||
| 244 | ) |
||
| 245 | ); |
||
| 246 | } |
||
| 247 | } |
||
| 248 |