public function test_get() { $config = new \Imdb\Config(); $request = new Request('https://images-na.ssl-images-amazon.com/images/M/MV5BMDMyMmQ5YzgtYWMxOC00OTU0LWIwZjEtZWUwYTY5MjVkZjhhXkEyXkFqcGdeQXVyNDYyMDk5MTU@._V1_UY268_CR6,0,182,268_AL_.jpg', $config); $ok = $request->sendRequest(); $this->assertTrue($ok); $headers = $request->getLastResponseHeaders(); $this->assertTrue(count($headers) > 5); $this->assertEquals($request->getresponseheader('Content-Type'), 'image/jpeg'); }
/** * Save the photo to disk * @param string path where to store the file * @param optional boolean thumb get the thumbnail (100x140, default) or the * bigger variant (400x600 - FALSE) * @return boolean success * @see IMDB person page / (Main page) */ public function savephoto($path, $thumb = TRUE, $rerun = FALSE) { $photo_url = $this->photo($thumb); if (!$photo_url) { return FALSE; } $req = new Request($photo_url, $this->config); $req->sendRequest(); if (strpos($req->getResponseHeader("Content-Type"), 'image/jpeg') === 0 || strpos($req->getResponseHeader("Content-Type"), 'image/gif') === 0 || strpos($req->getResponseHeader("Content-Type"), 'image/bmp') === 0) { $fp = $req->getResponseBody(); } else { if ($rerun) { $this->debug_scalar("<BR>*photoerror* at " . __FILE__ . " line " . __LINE__ . ": " . $photo_url . ": Content Type is '" . $req->getResponseHeader("Content-Type") . "'<BR>"); return FALSE; } else { $this->debug_scalar("<BR>Initiate second run for photo '{$path}'<BR>"); return $this->savephoto($path, $thumb, TRUE); } } $fp2 = fopen($path, "w"); if (!$fp || !$fp2) { $this->debug_scalar("image error...<BR>"); return false; } fputs($fp2, $fp); return TRUE; }
/** Convert IMDB redirect-URLs of external sites to real URLs * @method convertIMDBtoRealURL * @param string url redirect-url * @return string url real-url */ protected function convertIMDBtoRealURL($url) { if (preg_match('/^https?:\\/\\//', $url)) { return $url; } $req = new Request("http://" . $this->imdbsite . $url, $this->config); if ($req->sendRequest() !== FALSE) { $head = $req->getLastResponseHeaders(); foreach ($head as $header) { if (preg_match('/:/', $header)) { list($type, $value) = explode(':', $header, 2); if ($type == 'Location') { return preg_replace('/\\s/', '', $value); } } } } return false; }