Rss-Bridge/bridges/ParuVenduImmoBridge.php

100 lines
2.8 KiB
PHP
Raw Normal View History

2015-02-01 15:03:39 +01:00
<?php
class ParuVenduImmoBridge extends BridgeAbstract
{
const MAINTAINER = "polo2ro";
const NAME = "Paru Vendu Immobilier";
const URI = "http://www.paruvendu.fr";
const DESCRIPTION = "Returns the ads from the first page of search result.";
const PARAMETERS = array( array(
'minarea'=>array(
'name'=>'Minimal surface m²',
'type'=>'number'
),
'maxprice'=>array(
'name'=>'Max price',
'type'=>'number'
),
'pa'=>array(
'name'=>'Country code',
'exampleValue'=>'FR'
),
'lo'=>array('name'=>'department numbers or postal codes, comma-separated')
));
public function collectData()
2015-02-01 15:03:39 +01:00
{
$html = $this->getSimpleHTMLDOM($this->getURI())
or $this->returnServerError('Could not request paruvendu.');
2015-02-01 15:03:39 +01:00
foreach($html->find('div.annonce a') as $element) {
2015-02-01 18:03:15 +01:00
if (!$element->title) {
continue;
}
2015-02-01 15:03:39 +01:00
$img ='';
foreach($element->find('span.img img') as $img) {
if ($img->original) {
$img = '<img src="'.$img->original.'" />';
}
}
2015-02-01 15:03:39 +01:00
$desc = $element->find('span.desc')[0]->innertext;
$desc = str_replace("voir l'annonce", '', $desc);
2015-02-01 15:03:39 +01:00
$price = $element->find('span.price')[0]->innertext;
list($href) = explode('#', $element->href);
$item = array();
$item['uri'] = self::URI.$href;
$item['title'] = $element->title;
$item['content'] = $img.$desc.$price;
2015-02-01 15:03:39 +01:00
$this->items[] = $item;
}
}
public function getURI(){
$appartment = '&tbApp=1&tbDup=1&tbChb=1&tbLof=1&tbAtl=1&tbPla=1';
$maison = '&tbMai=1&tbVil=1&tbCha=1&tbPro=1&tbHot=1&tbMou=1&tbFer=1';
$link = self::URI.'/immobilier/annonceimmofo/liste/listeAnnonces?tt=1'.$appartment.$maison;
if ($this->getInput('minarea')) {
$link .= '&sur0='.urlencode($this->getInput('minarea'));
}
if ($this->getInput('maxprice')) {
$link .= '&px1='.urlencode($this->getInput('maxprice'));
}
if ($this->getInput('pa')) {
$link .= '&pa='.urlencode($this->getInput('pa'));
}
if ($this->getInput('lo')) {
$link .= '&lo='.urlencode($this->getInput('lo'));
}
return $link;
}
2015-02-01 15:03:39 +01:00
public function getName(){
$request='';
$minarea=$this->getInput('minarea');
if(!empty($minarea)){
$request .= ' '.$minarea.' m2';
}
$location=$this->getInput('lo');
if(!empty($location)){
$request .= ' In: '.$location;
}
return 'Paru Vendu Immobilier'.$request;
2015-02-01 15:03:39 +01:00
}
public function getCacheDuration(){
2015-02-01 15:04:59 +01:00
return 10800; // 3 hours
2015-02-01 15:03:39 +01:00
}
}