コード例 #1
0
ファイル: Upstream.php プロジェクト: atmost/gush
 protected function getLocalResponse($url)
 {
     try {
         $client = new Client($url, array(CURLOPT_FOLLOWLOCATION => true, CURLOPT_MAXREDIRS => 5, CURLOPT_TIMEOUT => 5));
         $request = new Request();
         $request->setUri($url);
         $client->setRequest($request);
         $response = $client->dispatch($request);
         if ($response->getStatusCode() == 200) {
             return json_decode($response->getBody());
         } else {
             throw new Exception('Source returned code ' . $response->getStatusCode());
         }
     } catch (Exception $e) {
         throw new GushException($e->getMessage(), GushException::Data);
     }
 }