This file is indexed.

/usr/share/pyshared/weboob/capabilities/housing.py is in python-weboob-core 0.g-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
# -*- coding: utf-8 -*-

# Copyright(C) 2012 Romain Bignon
#
# 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 .base import IBaseCap, CapBaseObject, Field, IntField, DecimalField, \
                  StringField, BytesField, DateField


__all__ = ['HousingPhoto', 'Housing', 'Query', 'City', 'ICapHousing']


class HousingPhoto(CapBaseObject):
    """
    Photo of a housing.
    """
    url =       StringField('Direct URL to photo')
    data =      BytesField('Data of photo')

    def __init__(self, url):
        CapBaseObject.__init__(self, url.split('/')[-1])
        self.url = url

    def __iscomplete__(self):
        return self.data

    def __str__(self):
        return self.url

    def __repr__(self):
        return u'<HousingPhoto "%s" data=%do>' % (self.id, len(self.data) if self.data else 0)


class Housing(CapBaseObject):
    """
    Content of a housing.
    """
    title =         StringField('Title of housing')
    area =          DecimalField('Area of housing, in m2')
    cost =          DecimalField('Cost of housing')
    currency =      StringField('Currency of cost')
    date =          DateField('Date when the housing has been published')
    location =      StringField('Location of housing')
    station =       StringField('What metro/bus station next to housing')
    text =          StringField('Text of the housing')
    phone =         StringField('Phone number to contact')
    photos =        Field('List of photos', list)
    details =       Field('Key/values of details', dict)


class Query(CapBaseObject):
    """
    Query to find housings.
    """
    TYPE_RENT = 0
    TYPE_SALE = 1

    type =      IntField('Type of housing to find (TYPE_* constants)')
    cities =    Field('List of cities to search in', list, tuple)
    area_min =  IntField('Minimal area (in m2)')
    area_max =  IntField('Maximal area (in m2)')
    cost_min =  IntField('Minimal cost')
    cost_max =  IntField('Maximal cost')
    nb_rooms =  IntField('Number of rooms')

    def __init__(self):
        CapBaseObject.__init__(self, '')


class City(CapBaseObject):
    """
    City.
    """
    name =      StringField('Name of city')


class ICapHousing(IBaseCap):
    """
    Capability of websites to search housings.
    """
    def search_housings(self, query):
        """
        Search housings.

        :param query: search query
        :type query: :class:`Query`
        :rtype: iter[:class:`Housing`]
        """
        raise NotImplementedError()

    def get_housing(self, housing):
        """
        Get an housing from an ID.

        :param housing: ID of the housing
        :type housing: str
        :rtype: :class:`Housing` or None if not found.
        """
        raise NotImplementedError()

    def search_city(self, pattern):
        """
        Search a city from a pattern.

        :param pattern: pattern to search
        :type pattern: str
        :rtype: iter[:class:`City`]
        """
        raise NotImplementedError()