[logicimmo] New module logicimmo
This commit is contained in:
parent
0657800eca
commit
0359bb4a3d
5 changed files with 361 additions and 0 deletions
90
modules/logicimmo/module.py
Normal file
90
modules/logicimmo/module.py
Normal file
|
|
@ -0,0 +1,90 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright(C) 2014 Bezleputh
|
||||
#
|
||||
# This file is part of weboob.
|
||||
#
|
||||
# weboob is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Affero General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# weboob is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU Affero General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Affero General Public License
|
||||
# along with weboob. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
from weboob.tools.backend import Module
|
||||
from weboob.capabilities.housing import CapHousing, Housing, HousingPhoto
|
||||
from weboob.capabilities.base import UserError
|
||||
from .browser import LogicimmoBrowser
|
||||
|
||||
|
||||
__all__ = ['LogicimmoModule']
|
||||
|
||||
|
||||
class LogicImmoCitiesError(UserError):
|
||||
"""
|
||||
Raised when more than 3 cities are selected
|
||||
"""
|
||||
def __init__(self, msg='You cannot select more than three cities'):
|
||||
UserError.__init__(self, msg)
|
||||
|
||||
|
||||
class LogicimmoModule(Module, CapHousing):
|
||||
NAME = 'logicimmo'
|
||||
DESCRIPTION = u'logicimmo website'
|
||||
MAINTAINER = u'Bezleputh'
|
||||
EMAIL = 'carton_ben@yahoo.fr'
|
||||
LICENSE = 'AGPLv3+'
|
||||
VERSION = '1.1'
|
||||
|
||||
BROWSER = LogicimmoBrowser
|
||||
|
||||
def get_housing(self, housing):
|
||||
if isinstance(housing, Housing):
|
||||
id = housing.id
|
||||
else:
|
||||
id = housing
|
||||
housing = None
|
||||
housing = self.browser.get_housing(id, housing)
|
||||
housing.phone = self.browser.get_phone(id)
|
||||
return housing
|
||||
|
||||
def search_city(self, pattern):
|
||||
return self.browser.get_cities(pattern)
|
||||
|
||||
def search_housings(self, query):
|
||||
cities_names = ['%s' % c.name.replace(' ', '-') for c in query.cities if c.backend == self.name]
|
||||
cities_ids = ['%s' % c.id for c in query.cities if c.backend == self.name]
|
||||
|
||||
if len(cities_names) == 0:
|
||||
return list()
|
||||
|
||||
if len(cities_names) > 3:
|
||||
raise LogicImmoCitiesError()
|
||||
|
||||
cities = ','.join(cities_names + cities_ids)
|
||||
return self.browser.search_housings(query.type, cities.lower(), query.nb_rooms,
|
||||
query.area_min, query.area_max,
|
||||
query.cost_min, query.cost_max,
|
||||
query.house_types)
|
||||
|
||||
def fill_housing(self, housing, fields):
|
||||
self.browser.get_housing(housing.id, housing)
|
||||
if 'phone' in fields:
|
||||
housing.phone = self.browser.get_phone(housing.id)
|
||||
return housing
|
||||
|
||||
def fill_photo(self, photo, fields):
|
||||
if 'data' in fields and photo.url and not photo.data:
|
||||
photo.data = self.browser.open(photo.url).content
|
||||
return photo
|
||||
|
||||
OBJECTS = {Housing: fill_housing,
|
||||
HousingPhoto: fill_photo,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue