diff --git a/bridges/AutoJMBridge.php b/bridges/AutoJMBridge.php index b9825ca4..9a68dbdd 100644 --- a/bridges/AutoJMBridge.php +++ b/bridges/AutoJMBridge.php @@ -7,51 +7,14 @@ class AutoJMBridge extends BridgeAbstract { const DESCRIPTION = 'Suivre les offres de véhicules proposés par AutoJM en fonction des critères de filtrages'; const MAINTAINER = 'sysadminstory'; const PARAMETERS = array( - 'Afficher les offres de véhicules disponible en fonction des critères du site AutoJM' => array( + 'Afficher les offres de véhicules disponible sur la recheche AutoJM' => array( 'url' => array( - 'name' => 'URL du modèle', + 'name' => 'URL de la page de recherche', 'type' => 'text', 'required' => true, 'title' => 'URL d\'une recherche avec filtre de véhicules sans le http://www.autojm.fr/', - 'exampleValue' => 'achat-voitures-neuves-peugeot-nouvelle-308-5p' + 'exampleValue' => 'recherche?brands[]=peugeot&ranges[]=peugeot-nouvelle-308-2021-5p' ), - 'energy' => array( - 'name' => 'Carburant', - 'type' => 'list', - 'values' => array( - '-' => '', - 'Diesel' => 1, - 'Essence' => 3, - 'Hybride' => 5 - ), - 'title' => 'Carburant' - ), - 'transmission' => array( - 'name' => 'Transmission', - 'type' => 'list', - 'values' => array( - '-' => '', - 'Automatique' => 1, - 'Manuelle' => 2 - ), - 'title' => 'Transmission' - ), - 'priceMin' => array( - 'name' => 'Prix minimum', - 'type' => 'number', - 'required' => false, - 'title' => 'Prix minimum du véhicule', - 'exampleValue' => '10000', - 'defaultValue' => '0' - ), - 'priceMax' => array( - 'name' => 'Prix maximum', - 'type' => 'number', - 'required' => false, - 'title' => 'Prix maximum du véhicule', - 'exampleValue' => '15000', - 'defaultValue' => '150000' - ) ) ); const CACHE_TIMEOUT = 3600; @@ -62,10 +25,8 @@ class AutoJMBridge extends BridgeAbstract { public function getName() { switch($this->queriedContext) { - case 'Afficher les offres de véhicules disponible en fonction des critères du site AutoJM': - $html = getSimpleHTMLDOMCached(self::URI . $this->getInput('url'), 86400); - $name = html_entity_decode($html->find('title', 0)->plaintext); - return $name; + case 'Afficher les offres de véhicules disponible sur la recheche AutoJM': + return 'AutoJM | Recherche de véhicules'; break; default: return parent::getName(); @@ -75,13 +36,8 @@ class AutoJMBridge extends BridgeAbstract { public function collectData() { - $model_url = self::URI . $this->getInput('url'); - - // Build the GET data - $get_data = 'form[energy]=' . $this->getInput('energy') . - '&form[transmission]=' . $this->getInput('transmission') . - '&form[priceMin]=' . $this->getInput('priceMin') . - '&form[priceMin]=' . $this->getInput('priceMin'); + // Get the number of result for this search + $search_url = self::URI . $this->getInput('url') . '&open=energy&onlyFilters=false'; // Set the header 'X-Requested-With' like the website does it $header = array( @@ -89,57 +45,91 @@ class AutoJMBridge extends BridgeAbstract { ); // Get the JSON content of the form - $json = getContents($model_url . '?' . $get_data, $header) - or returnServerError('Could not request AutoJM.'); + $json = getContents($search_url, $header); // Extract the HTML content from the JSON result $data = json_decode($json); - $html = str_get_html($data->results); - // Go through every car of the model - $list = $html->find('div[class=car-card]'); - foreach ($list as $car) { + $nb_results = $data->nbResults; + $total_pages = ceil($nb_results / 15); - // Get the Finish name if this car is the first of a new finish - $prev_tag = $car->prev_sibling(); - if($prev_tag->tag == 'div' && $prev_tag->class == 'results-title') { - $finish_name = $prev_tag->plaintext; + // Limit the number of page to analyse to 10 + for($page = 1; $page <= $total_pages && $page <= 10; $page++) { + // Get the result the next page + $html = $this->getResults($page); + + // Go through every car of the search + $list = $html->find('div[class*=card-car card-car--listing]'); + foreach ($list as $car) { + + // Get the info about the car offer + $image = $car->find('div[class=card-car__header__img]', 0)->find('img', 0)->src; + // Decode HTML attribute JSON data + $car_data = json_decode(html_entity_decode($car->{'data-layer'})); + $car_model = $car->{'data-title'} . ' ' . $car->{'data-suptitle'}; + $availability = $car->find('div[class=card-car__modalites]', 0)->find('div[class=col]', 0)->plaintext; + $warranty = $car->find('div[data-type=WarrantyCard]', 0)->plaintext; + $discount_html = $car->find('div[class=subtext vehicle_reference_element]', 0); + // Check if there is any discount info displayed + if ($discount_html != null) { + $reference_price_value = $discount_html->find('span[data-cfg=vehicle__reference_price]', 0)->plaintext; + $discount_percent_value = $discount_html->find('span[data-cfg=vehicle__discount_percent]', 0)->plaintext; + $reference_price = '
'
+ . $car_model . '
'
- . $finish_name . ' ' . $serie . '