Add paru vendu immo bridge
This commit is contained in:
parent
091bf7872e
commit
c44c569aa5
1 changed files with 77 additions and 0 deletions
77
bridges/ParuVenduImmoBridge.php
Normal file
77
bridges/ParuVenduImmoBridge.php
Normal file
|
@ -0,0 +1,77 @@
|
|||
<?php
|
||||
/**
|
||||
* RssBridge Paru Vendu Immo
|
||||
* Retrieve lastest documents from http://www.paruvendu.fr/immobilier/.
|
||||
* Returns the N most recent documents, sorting by date (most recent first).
|
||||
* 2014-05-25
|
||||
*
|
||||
* @name ParuVenduImmoBridge
|
||||
* @homepage http://www.paruvendu.fr/immobilier/
|
||||
* @description Returns the N most recent documents.
|
||||
* @maintainer polo2ro
|
||||
* @use1(minarea="Min area",maxprice="Max price",pa="Country code",lo="department number")
|
||||
*/
|
||||
class ParuVenduImmoBridge extends BridgeAbstract
|
||||
{
|
||||
|
||||
public function collectData(array $param)
|
||||
{
|
||||
$html = '';
|
||||
$num = 20;
|
||||
$link = $this->getURI().'/immobilier/annonceimmofo/liste/listeAnnonces?tt=1&tbMai=1&tbVil=1&tbCha=1&tbPro=1&tbHot=1&tbMou=1&tbFer=1';
|
||||
|
||||
if (isset($param['minarea'])) {
|
||||
$link .= '&sur0='.urlencode($param['minarea']);
|
||||
}
|
||||
|
||||
if (isset($param['maxprice'])) {
|
||||
$link .= '&px1='.urlencode($param['maxprice']);
|
||||
}
|
||||
|
||||
if (isset($param['pa'])) {
|
||||
$link .= '&pa='.urlencode($param['pa']);
|
||||
}
|
||||
|
||||
if (isset($param['lo'])) {
|
||||
$link .= '&lo='.urlencode($param['lo']);
|
||||
}
|
||||
|
||||
$html = file_get_html($link) or $this->returnError('Could not request paruvendu.', 404);
|
||||
|
||||
|
||||
foreach($html->find('div.annonce a') as $element) {
|
||||
|
||||
$img ='';
|
||||
foreach($element->find('span.img img') as $img) {
|
||||
if ($img->original) {
|
||||
$img = '<img src="'.$img->original.'" />';
|
||||
}
|
||||
}
|
||||
|
||||
$desc = $element->find('span.desc')[0]->innertext;
|
||||
$desc = str_replace("voir l'annonce", '', $desc);
|
||||
|
||||
$price = $element->find('span.price')[0]->innertext;
|
||||
|
||||
$item = new \Item();
|
||||
$item->uri = $this->getURI().$element->href;
|
||||
$item->title = $element->title;
|
||||
$item->content = $img.$desc.$price;
|
||||
$this->items[] = $item;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
public function getName(){
|
||||
return 'ParuVenduImmo';
|
||||
}
|
||||
|
||||
public function getURI(){
|
||||
return 'http://www.paruvendu.fr';
|
||||
}
|
||||
|
||||
public function getCacheDuration(){
|
||||
return 0;
|
||||
return 3600; // 1 hour
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue