Spatie\Crawler\CrawlObserver::hasBeenCrawled PHP Method

hasBeenCrawled() public method

Called when the crawler has crawled the given url.
public hasBeenCrawled ( Url $url, Psr\Http\Message\ResponseInterface | null $response, Url $foundOnUrl = null ) : void
$url Url
$response Psr\Http\Message\ResponseInterface | null
$foundOnUrl Url
return void
    public function hasBeenCrawled(Url $url, $response, Url $foundOnUrl = null);

Usage Example

Example #1
0
 /**
  * Crawl the given url.
  *
  * @param \Spatie\Crawler\Url $url
  */
 protected function crawlUrl(Url $url)
 {
     if (!$this->crawlProfile->shouldCrawl($url)) {
         return;
     }
     if ($this->hasAlreadyCrawled($url)) {
         return;
     }
     $this->crawlObserver->willCrawl($url);
     try {
         $response = $this->client->request('GET', (string) $url);
     } catch (RequestException $exception) {
         $response = $exception->getResponse();
     }
     $this->crawlObserver->hasBeenCrawled($url, $response);
     $this->crawledUrls->push($url);
     if (!$response) {
         return;
     }
     if ($url->host === $this->baseUrl->host) {
         $this->crawlAllLinks($response->getBody()->getContents());
     }
 }
All Usage Examples Of Spatie\Crawler\CrawlObserver::hasBeenCrawled