Ajoute le parseur SeLoger

Fix #5
This commit is contained in:
Clement 2020-07-23 16:20:27 +02:00
parent f853cf72c7
commit 49248fb16b
1 changed files with 62 additions and 10 deletions

View File

@ -5,30 +5,82 @@ namespace App\Parser;
use App\ParsedHome; use App\ParsedHome;
use App\Parser; use App\Parser;
/**
* Thanks to https://github.com/axeleroy/untoitpourcaramel/issues/3
* Class SeLoger
* @package App\Parser
*/
class SeLoger extends Parser class SeLoger extends Parser
{ {
protected $params = [ public const TOKEN_URL = 'https://api-seloger.svc.groupe-seloger.com/api/v1/security/authenticate';
'idtt' => 1, public const LISTING_URL = 'https://api-seloger.svc.groupe-seloger.com/api/v1/listings/';
'idtypebien' => '1,2', public const SELOGER_TOKEN = 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJTZUxvZ2VyLW1vYmlsZSIsImFwcCI6IjYzZWU3MTRkLWE2MmEtNGEyNy05ZmJlLTQwYjdhMmMzMThlNCIsImlhdCI6MTUzOTQ0MjMyMCwianRpIjoiNWYzODRhNDYtZjk5MS00ODZkLWFkN2YtMmE2M2YxZTdkM2UwIiwiYXVkIjoiU2VMb2dlci1Nb2JpbGUtNi4wIn0.Qib13Y4395f_bi5Df0IhMQRvIxQZEfpf8Ac66oTfyiA';
'getDtCreationMax' => 1, public const SELOGER_GUID = '63ee714d-a62a-4a27-9fbe-40b7a2c318e4';
];
/** /**
* @inheritDoc * @inheritDoc
*/ */
public function parse(): ParsedHome public function parse(): ParsedHome
{ {
$token = $this->retrieveToken();
$idAnnonce = $this->getIdAnnonceFromUrl($this->url); $idAnnonce = $this->getIdAnnonceFromUrl($this->url);
var_dump($idAnnonce); $url = sprintf('%s%s', self::LISTING_URL, $idAnnonce);
$payload = $this->params + ['noAudiotel' => 1, 'idAnnonce' => $idAnnonce]; $request = $this->client->request(
$request = $this->client->request('GET', "http://ws.seloger.com/annonceDetail_4.0.xml", $payload); 'GET',
var_dump($request); $url,
exit; [
'headers' => [
'AppToken' => $token,
],
]
);
$annonce = json_decode($request->getBody()->getContents(), true);
$parsedHome = new ParsedHome();
$parsedHome->city = $annonce['city'];
//ex: Vente maison 110 m² Tréguier (22220)
$parsedHome->title = $annonce['title'];
$parsedHome->price = $annonce['price'];
$parsedHome->surface = $annonce['livingArea'];
$parsedHome->rooms = $annonce['rooms'];
$parsedHome->energy = $annonce['energy']['grade'];
$parsedHome->description = $annonce['description'];
$parsedHome->pictures = $annonce['photos'];
$location = $annonce['coordinates'];
$parsedHome->map = ['lat' => $location['latitude'], 'lng' => $location['longitude']];
return $parsedHome;
} }
/**
* @param string $url
*
* @return string
*/
private function getIdAnnonceFromUrl($url) private function getIdAnnonceFromUrl($url)
{ {
// ex : https://www.seloger.com/annonces/achat/maison/franconville-95/vieux-marche-mare-des-noues/159100953.htm // ex : https://www.seloger.com/annonces/achat/maison/franconville-95/vieux-marche-mare-des-noues/159100953.htm
$url = parse_url($url, PHP_URL_PATH);
return collect(explode('.', collect(explode('/', $url))->last()))->first(); return collect(explode('.', collect(explode('/', $url))->last()))->first();
} }
/**
* @return string
* @throws \GuzzleHttp\Exception\GuzzleException
*/
private function retrieveToken()
{
$request = $this->client->request(
'GET',
self::TOKEN_URL,
[
'headers' => [
'AppToken' => self::SELOGER_TOKEN,
'AppGuid' => self::SELOGER_GUID,
],
]
);
return trim($request->getBody()->getContents(), '"');
}
} }