Compare commits
98 Commits
block-next
...
prostor-vi
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
511b290096 | ||
|
|
ba43fa0713 | ||
|
|
e70901d369 | ||
|
|
8505282670 | ||
|
|
64e4835899 | ||
|
|
1658325c4b | ||
|
|
49161c1b60 | ||
|
|
d23ddf849f | ||
|
|
38bd0343f5 | ||
|
|
259799144e | ||
|
|
bc73d4159d | ||
|
|
37ad32fe76 | ||
|
|
94875a0fa3 | ||
|
|
fa4e0d64de | ||
|
|
0c2d218d29 | ||
|
|
fed2dc00dc | ||
|
|
cc78e5acd5 | ||
|
|
55319a54e9 | ||
|
|
ef5de27c06 | ||
|
|
bee390aa15 | ||
|
|
251437f815 | ||
|
|
4391aa5939 | ||
|
|
c672b3ab9f | ||
|
|
76f4ed0a30 | ||
|
|
73b3f0d22f | ||
|
|
547411f189 | ||
|
|
a45a0ec361 | ||
|
|
43074b6eb3 | ||
|
|
cb52c8592a | ||
|
|
5a2fdb7291 | ||
|
|
e83712fb33 | ||
|
|
0e585e74ae | ||
|
|
e6e1688a49 | ||
|
|
dee7c6000a | ||
|
|
fbcda328b7 | ||
|
|
6f729b4135 | ||
|
|
ef4fff4e70 | ||
|
|
ade28eb981 | ||
|
|
5d792846ae | ||
|
|
f8ea2f0f78 | ||
|
|
232221af9e | ||
|
|
271af35f0c | ||
|
|
6baa151ea2 | ||
|
|
e42531ff57 | ||
|
|
002a8e8572 | ||
|
|
fd8592c581 | ||
|
|
5cab9ee7c4 | ||
|
|
1106f92560 | ||
|
|
ab8373651e | ||
|
|
ade09f6f15 | ||
|
|
e4edc24cad | ||
|
|
44565d2f89 | ||
|
|
860014662a | ||
|
|
af42d2c448 | ||
|
|
5148f88a62 | ||
|
|
a7cd75653d | ||
|
|
168b2186e7 | ||
|
|
1e68d640e2 | ||
|
|
c13857bc09 | ||
|
|
618dcd217e | ||
|
|
3b3e2eda07 | ||
|
|
ae93d2f03d | ||
|
|
a63671959b | ||
|
|
b6d68db3a3 | ||
|
|
c91e56c46e | ||
|
|
e871550ba6 | ||
|
|
debdd01b28 | ||
|
|
9e10800b02 | ||
|
|
cb9bb9e566 | ||
|
|
b6024af2cb | ||
|
|
50514aaf03 | ||
|
|
9ba41dd7f7 | ||
|
|
02f5b97e80 | ||
|
|
7242e233e3 | ||
|
|
a77730cc5f | ||
|
|
90db3025b5 | ||
|
|
8a95409606 | ||
|
|
c2ffc906ea | ||
|
|
43747eb942 | ||
|
|
d07d0a3453 | ||
|
|
c87a1fc8a8 | ||
|
|
91cda0ff0f | ||
|
|
310448dcb8 | ||
|
|
8ea44f5fc7 | ||
|
|
4d5571b1d8 | ||
|
|
2be013de1f | ||
|
|
23e319da5e | ||
|
|
a120dfc4a3 | ||
|
|
5b2961d992 | ||
|
|
b6bc67e442 | ||
|
|
46dbe40891 | ||
|
|
7cc9550031 | ||
|
|
1117592f4c | ||
|
|
a0449f7ffd | ||
|
|
e3e0ddd508 | ||
|
|
2e3ddbac95 | ||
|
|
5433a71859 | ||
|
|
6aff0d221b |
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1,3 +1,5 @@
|
|||||||
node_modules/
|
node_modules/
|
||||||
.env
|
.env
|
||||||
.idea/
|
.idea/
|
||||||
|
.eslintrc
|
||||||
|
.vscode/
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ FROM postgres:11.3
|
|||||||
ENV POSTGIS_MAJOR 2.4
|
ENV POSTGIS_MAJOR 2.4
|
||||||
|
|
||||||
RUN apt-get update \
|
RUN apt-get update \
|
||||||
|
&& apt-get --assume-yes install postgresql-11-postgis-2.5-scripts\
|
||||||
&& apt-get --assume-yes install software-properties-common postgis\
|
&& apt-get --assume-yes install software-properties-common postgis\
|
||||||
&& rm -rf /var/lib/apt/lists/
|
&& rm -rf /var/lib/apt/lists/
|
||||||
|
|
||||||
|
|||||||
@@ -4,6 +4,8 @@ The purpose of this project is to build a web application that enables subscribi
|
|||||||
|
|
||||||
## Setup
|
## Setup
|
||||||
|
|
||||||
|
* Before setup please confirm that Docker is installed `docker --version`. If not install it from official site.
|
||||||
|
|
||||||
### Setup with npm commands
|
### Setup with npm commands
|
||||||
|
|
||||||
1. Install packages
|
1. Install packages
|
||||||
@@ -24,7 +26,7 @@ this will create and run postgres image and then execute migrations
|
|||||||
`docker build -t marketalerts .`
|
`docker build -t marketalerts .`
|
||||||
|
|
||||||
2. Run postgres image with
|
2. Run postgres image with
|
||||||
`docker run --name pg_marketalerts -d -p 5432:5432 marketalerts`
|
`docker run -e POSTGRES_USER=docker -e POSTGRES_PASSWORD=docker -e POSTGRES_DB=marketalerts --name pg_marketalerts -d -p 5432:5432 marketalerts`
|
||||||
|
|
||||||
3. Install packages
|
3. Install packages
|
||||||
`npm install`
|
`npm install`
|
||||||
@@ -41,3 +43,4 @@ this will create and run postgres image and then execute migrations
|
|||||||
- AWS SES credentials are handled with env vratiables
|
- AWS SES credentials are handled with env vratiables
|
||||||
- Notification emails are sent in batches of 50, by using SES templates
|
- Notification emails are sent in batches of 50, by using SES templates
|
||||||
- Make sure that you are using different templates for different envirorments
|
- Make sure that you are using different templates for different envirorments
|
||||||
|
|
||||||
|
|||||||
@@ -58,13 +58,23 @@ const GARAGE_SIZE_SLIDER_OPTIONS = {
|
|||||||
connect: true
|
connect: true
|
||||||
};
|
};
|
||||||
|
|
||||||
const GARAGE_PRICE_SLIDER_OPTIONS = {
|
const GARAGE_PRICE_SLIDER_OPTIONS_SALE = {
|
||||||
start: [2000, 10000],
|
start: [2000, 10000],
|
||||||
range: {
|
range: {
|
||||||
min: [0],
|
min: [0],
|
||||||
max: [100000]
|
max: [60000]
|
||||||
},
|
},
|
||||||
step: 500,
|
step: 200,
|
||||||
|
connect: true
|
||||||
|
};
|
||||||
|
|
||||||
|
const GARAGE_PRICE_SLIDER_OPTIONS_RENT = {
|
||||||
|
start: [50, 150],
|
||||||
|
range: {
|
||||||
|
min: [0],
|
||||||
|
max: [1000]
|
||||||
|
},
|
||||||
|
step: 10,
|
||||||
connect: true
|
connect: true
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -72,12 +82,12 @@ const AD_TYPE = {
|
|||||||
AD_TYPE_SALE: {
|
AD_TYPE_SALE: {
|
||||||
id: 1,
|
id: 1,
|
||||||
stringId: "SALE",
|
stringId: "SALE",
|
||||||
title: "Prodaja"
|
title: "Kupi"
|
||||||
},
|
},
|
||||||
AD_TYPE_RENT: {
|
AD_TYPE_RENT: {
|
||||||
id: 2,
|
id: 2,
|
||||||
stringId: "RENT",
|
stringId: "RENT",
|
||||||
title: "Najam"
|
title: "Unajmi"
|
||||||
},
|
},
|
||||||
AD_TYPE_REQUEST: {
|
AD_TYPE_REQUEST: {
|
||||||
id: 3,
|
id: 3,
|
||||||
@@ -94,6 +104,13 @@ const AD_CATEGORY = {
|
|||||||
id: "FLAT",
|
id: "FLAT",
|
||||||
title: "Stan",
|
title: "Stan",
|
||||||
hasGardenSize: false,
|
hasGardenSize: false,
|
||||||
|
hasAccesRoadType: true,
|
||||||
|
hasBalconyProp: true,
|
||||||
|
hasNewBuildingProp: true,
|
||||||
|
hasElevatorProp: true,
|
||||||
|
hasNumberOfRoom: true,
|
||||||
|
hasNumberOfFloors: false,
|
||||||
|
hasFloorProp: true,
|
||||||
priceSliderOptionsSale: PRICE_SLIDER_OPTIONS_SALE,
|
priceSliderOptionsSale: PRICE_SLIDER_OPTIONS_SALE,
|
||||||
priceSliderOptionsRent: PRICE_SLIDER_OPTIONS_RENT,
|
priceSliderOptionsRent: PRICE_SLIDER_OPTIONS_RENT,
|
||||||
sizeSliderOptions: HOME_SIZE_SLIDER_OPTIONS
|
sizeSliderOptions: HOME_SIZE_SLIDER_OPTIONS
|
||||||
@@ -102,6 +119,13 @@ const AD_CATEGORY = {
|
|||||||
id: "HOUSE",
|
id: "HOUSE",
|
||||||
title: "Kuća",
|
title: "Kuća",
|
||||||
hasGardenSize: true,
|
hasGardenSize: true,
|
||||||
|
hasAccesRoadType: true,
|
||||||
|
hasBalconyProp: true,
|
||||||
|
hasNewBuildingProp: true,
|
||||||
|
hasElevatorProp: false,
|
||||||
|
hasNumberOfRoom: true,
|
||||||
|
hasNumberOfFloors: true,
|
||||||
|
hasFloorProp: false,
|
||||||
priceSliderOptionsSale: PRICE_SLIDER_OPTIONS_SALE,
|
priceSliderOptionsSale: PRICE_SLIDER_OPTIONS_SALE,
|
||||||
priceSliderOptionsRent: PRICE_SLIDER_OPTIONS_RENT,
|
priceSliderOptionsRent: PRICE_SLIDER_OPTIONS_RENT,
|
||||||
sizeSliderOptions: HOME_SIZE_SLIDER_OPTIONS,
|
sizeSliderOptions: HOME_SIZE_SLIDER_OPTIONS,
|
||||||
@@ -111,6 +135,13 @@ const AD_CATEGORY = {
|
|||||||
id: "OFFICE",
|
id: "OFFICE",
|
||||||
title: "Kancelarija",
|
title: "Kancelarija",
|
||||||
hasGardenSize: false,
|
hasGardenSize: false,
|
||||||
|
hasAccesRoadType: true,
|
||||||
|
hasBalconyProp: false,
|
||||||
|
hasNewBuildingProp: true,
|
||||||
|
hasElevatorProp: true,
|
||||||
|
hasNumberOfRoom: true,
|
||||||
|
hasNumberOfFloors: false,
|
||||||
|
hasFloorProp: true,
|
||||||
priceSliderOptionsSale: PRICE_SLIDER_OPTIONS_SALE,
|
priceSliderOptionsSale: PRICE_SLIDER_OPTIONS_SALE,
|
||||||
priceSliderOptionsRent: PRICE_SLIDER_OPTIONS_RENT,
|
priceSliderOptionsRent: PRICE_SLIDER_OPTIONS_RENT,
|
||||||
sizeSliderOptions: HOME_SIZE_SLIDER_OPTIONS
|
sizeSliderOptions: HOME_SIZE_SLIDER_OPTIONS
|
||||||
@@ -119,6 +150,13 @@ const AD_CATEGORY = {
|
|||||||
id: "LAND",
|
id: "LAND",
|
||||||
title: "Zemljište",
|
title: "Zemljište",
|
||||||
hasGardenSize: false,
|
hasGardenSize: false,
|
||||||
|
hasAccesRoadType: true,
|
||||||
|
hasBalconyProp: false,
|
||||||
|
hasNewBuildingProp: false,
|
||||||
|
hasElevatorProp: false,
|
||||||
|
hasNumberOfRoom: false,
|
||||||
|
hasNumberOfFloors: false,
|
||||||
|
hasFloorProp: false,
|
||||||
priceSliderOptionsSale: PRICE_SLIDER_OPTIONS_SALE,
|
priceSliderOptionsSale: PRICE_SLIDER_OPTIONS_SALE,
|
||||||
priceSliderOptionsRent: PRICE_SLIDER_OPTIONS_RENT,
|
priceSliderOptionsRent: PRICE_SLIDER_OPTIONS_RENT,
|
||||||
sizeSliderOptions: LAND_SIZE_SLIDER_OPTIONS
|
sizeSliderOptions: LAND_SIZE_SLIDER_OPTIONS
|
||||||
@@ -127,6 +165,13 @@ const AD_CATEGORY = {
|
|||||||
id: "APARTMENT",
|
id: "APARTMENT",
|
||||||
title: "Apartman",
|
title: "Apartman",
|
||||||
hasGardenSize: false,
|
hasGardenSize: false,
|
||||||
|
hasAccesRoadType: true,
|
||||||
|
hasBalconyProp: true,
|
||||||
|
hasNewBuildingProp: true,
|
||||||
|
hasElevatorProp: true,
|
||||||
|
hasNumberOfRoom: true,
|
||||||
|
hasNumberOfFloors: false,
|
||||||
|
hasFloorProp: true,
|
||||||
priceSliderOptionsSale: PRICE_SLIDER_OPTIONS_SALE,
|
priceSliderOptionsSale: PRICE_SLIDER_OPTIONS_SALE,
|
||||||
priceSliderOptionsRent: PRICE_SLIDER_OPTIONS_RENT,
|
priceSliderOptionsRent: PRICE_SLIDER_OPTIONS_RENT,
|
||||||
sizeSliderOptions: HOME_SIZE_SLIDER_OPTIONS
|
sizeSliderOptions: HOME_SIZE_SLIDER_OPTIONS
|
||||||
@@ -135,14 +180,28 @@ const AD_CATEGORY = {
|
|||||||
id: "GARAGE",
|
id: "GARAGE",
|
||||||
title: "Garaža",
|
title: "Garaža",
|
||||||
hasGardenSize: false,
|
hasGardenSize: false,
|
||||||
priceSliderOptionsSale: PRICE_SLIDER_OPTIONS_SALE,
|
hasAccesRoadType: true,
|
||||||
priceSliderOptionsRent: PRICE_SLIDER_OPTIONS_RENT,
|
hasBalconyProp: false,
|
||||||
|
hasNewBuildingProp: false,
|
||||||
|
hasElevatorProp: false,
|
||||||
|
hasNumberOfRoom: false,
|
||||||
|
hasNumberOfFloors: false,
|
||||||
|
hasFloorProp: false,
|
||||||
|
priceSliderOptionsSale: GARAGE_PRICE_SLIDER_OPTIONS_SALE,
|
||||||
|
priceSliderOptionsRent: GARAGE_PRICE_SLIDER_OPTIONS_RENT,
|
||||||
sizeSliderOptions: GARAGE_SIZE_SLIDER_OPTIONS
|
sizeSliderOptions: GARAGE_SIZE_SLIDER_OPTIONS
|
||||||
},
|
},
|
||||||
COTTAGE: {
|
COTTAGE: {
|
||||||
id: "COTTAGE",
|
id: "COTTAGE",
|
||||||
title: "Vikendica",
|
title: "Vikendica",
|
||||||
hasGardenSize: true,
|
hasGardenSize: true,
|
||||||
|
hasAccesRoadType: true,
|
||||||
|
hasBalconyProp: true,
|
||||||
|
hasNewBuildingProp: true,
|
||||||
|
hasElevatorProp: false,
|
||||||
|
hasNumberOfRoom: true,
|
||||||
|
hasNumberOfFloors: true,
|
||||||
|
hasFloorProp: false,
|
||||||
priceSliderOptionsSale: PRICE_SLIDER_OPTIONS_SALE,
|
priceSliderOptionsSale: PRICE_SLIDER_OPTIONS_SALE,
|
||||||
priceSliderOptionsRent: PRICE_SLIDER_OPTIONS_RENT,
|
priceSliderOptionsRent: PRICE_SLIDER_OPTIONS_RENT,
|
||||||
sizeSliderOptions: HOME_SIZE_SLIDER_OPTIONS,
|
sizeSliderOptions: HOME_SIZE_SLIDER_OPTIONS,
|
||||||
@@ -156,7 +215,9 @@ const AD_STATUS = {
|
|||||||
STATUS_SOLD: 3,
|
STATUS_SOLD: 3,
|
||||||
STATUS_DELETED: 4,
|
STATUS_DELETED: 4,
|
||||||
STATUS_URGENT: 5,
|
STATUS_URGENT: 5,
|
||||||
STATUS_DISCOUNTED: 6
|
STATUS_DISCOUNTED: 6,
|
||||||
|
STATUS_RENTED: 7,
|
||||||
|
STATUS_VIP: 8
|
||||||
};
|
};
|
||||||
|
|
||||||
const AD_AGENCY = {
|
const AD_AGENCY = {
|
||||||
@@ -174,10 +235,108 @@ const CRAWLER_AD_TYPE = {
|
|||||||
ONLY_REQUEST: 4
|
ONLY_REQUEST: 4
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const EMAIL_FREQUENCY = {
|
||||||
|
ASAP: {
|
||||||
|
id: 1,
|
||||||
|
stringId: "ASAP",
|
||||||
|
title: "Odmah"
|
||||||
|
},
|
||||||
|
DAILY: {
|
||||||
|
id: 2,
|
||||||
|
stringId: "DAILY",
|
||||||
|
title: "Jednom dnevno"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const HEATING_TYPE = {
|
||||||
|
ANY: {
|
||||||
|
id: "ANY",
|
||||||
|
title: "Svi"
|
||||||
|
},
|
||||||
|
NO_HEATING: {
|
||||||
|
id: "NO_HEATING",
|
||||||
|
title: "Nije uvedeno"
|
||||||
|
},
|
||||||
|
ELECTRICITY: {
|
||||||
|
id: "ELECTRICITY",
|
||||||
|
title: "Struja"
|
||||||
|
},
|
||||||
|
GAS: {
|
||||||
|
id: "GAS",
|
||||||
|
title: "Plin"
|
||||||
|
},
|
||||||
|
WOOD: {
|
||||||
|
id: "WOOD",
|
||||||
|
title: "Drva"
|
||||||
|
},
|
||||||
|
CENTRAL_CITY: {
|
||||||
|
id: "CENTRAL_CITY",
|
||||||
|
title: "Centralno (gradsko)"
|
||||||
|
},
|
||||||
|
CENTRAL_BOILER: {
|
||||||
|
id: "CENTRAL_BOILER",
|
||||||
|
title: "Centralno (kotlovnica)"
|
||||||
|
},
|
||||||
|
CENTRAL_GAS: {
|
||||||
|
id: "CENTRAL_GAS",
|
||||||
|
title: "Centralno (plin)"
|
||||||
|
},
|
||||||
|
HEAT_PUMP: {
|
||||||
|
id: "HEAT_PUMP",
|
||||||
|
title: "Toplotna pumpa"
|
||||||
|
},
|
||||||
|
OTHER: {
|
||||||
|
id: "OTHER",
|
||||||
|
title: "Drugo"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const ACCESS_ROAD_TYPE = {
|
||||||
|
ANY: {
|
||||||
|
id: "ANY",
|
||||||
|
title: "Svi"
|
||||||
|
},
|
||||||
|
ASPHALT: {
|
||||||
|
id: "ASPHALT",
|
||||||
|
title: "Asfalt"
|
||||||
|
},
|
||||||
|
CONCRETE: {
|
||||||
|
id: "CONCRETE",
|
||||||
|
title: "Beton"
|
||||||
|
},
|
||||||
|
MACADAM: {
|
||||||
|
id: "MACADAM",
|
||||||
|
title: "Makadam"
|
||||||
|
},
|
||||||
|
OTHER: {
|
||||||
|
id: "OTHER",
|
||||||
|
title: "Drugo"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const FURNISHING_TYPE = {
|
||||||
|
NOT_FURNISHED: {
|
||||||
|
id: "NOT_FURNISHED",
|
||||||
|
title: "Nenamješten"
|
||||||
|
},
|
||||||
|
HALF_FURNISHED: {
|
||||||
|
id: "HALF_FURNISHED",
|
||||||
|
title: "Polunamješten"
|
||||||
|
},
|
||||||
|
FURNISHED: {
|
||||||
|
id: "FURNISHED",
|
||||||
|
title: "Namješten"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
AD_TYPE,
|
AD_TYPE,
|
||||||
AD_CATEGORY,
|
AD_CATEGORY,
|
||||||
AD_STATUS,
|
AD_STATUS,
|
||||||
AD_AGENCY,
|
AD_AGENCY,
|
||||||
CRAWLER_AD_TYPE
|
CRAWLER_AD_TYPE,
|
||||||
|
EMAIL_FREQUENCY,
|
||||||
|
HEATING_TYPE,
|
||||||
|
ACCESS_ROAD_TYPE,
|
||||||
|
FURNISHING_TYPE
|
||||||
};
|
};
|
||||||
|
|||||||
110
app/common/filterEnums.js
Normal file
110
app/common/filterEnums.js
Normal file
@@ -0,0 +1,110 @@
|
|||||||
|
const { AD_CATEGORY, ACCESS_ROAD_TYPE, HEATING_TYPE } = require("./enums");
|
||||||
|
|
||||||
|
const ADVANCED_BOOLEAN_FILTERS = [
|
||||||
|
{
|
||||||
|
dbField: "balcony",
|
||||||
|
title: "Balkon",
|
||||||
|
categoriesToShow: [
|
||||||
|
AD_CATEGORY.FLAT,
|
||||||
|
AD_CATEGORY.HOUSE,
|
||||||
|
AD_CATEGORY.APARTMENT,
|
||||||
|
AD_CATEGORY.COTTAGE
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
dbField: "elevator",
|
||||||
|
title: "Lift",
|
||||||
|
categoriesToShow: [
|
||||||
|
AD_CATEGORY.FLAT,
|
||||||
|
AD_CATEGORY.APARTMENT,
|
||||||
|
AD_CATEGORY.OFFICE
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
dbField: "newBuilding",
|
||||||
|
title: "Novogradnja",
|
||||||
|
categoriesToShow: [
|
||||||
|
AD_CATEGORY.FLAT,
|
||||||
|
AD_CATEGORY.HOUSE,
|
||||||
|
AD_CATEGORY.APARTMENT,
|
||||||
|
AD_CATEGORY.COTTAGE,
|
||||||
|
AD_CATEGORY.OFFICE
|
||||||
|
]
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
const ADVANCED_SEGMENT_SELECT_FILTERS = [
|
||||||
|
{
|
||||||
|
dbField: "accessRoadType",
|
||||||
|
title: "Pristupni put",
|
||||||
|
values: Object.keys(ACCESS_ROAD_TYPE).map(key => ACCESS_ROAD_TYPE[key]),
|
||||||
|
categoriesToShow: [
|
||||||
|
AD_CATEGORY.FLAT,
|
||||||
|
AD_CATEGORY.HOUSE,
|
||||||
|
AD_CATEGORY.APARTMENT,
|
||||||
|
AD_CATEGORY.COTTAGE,
|
||||||
|
AD_CATEGORY.OFFICE,
|
||||||
|
AD_CATEGORY.LAND,
|
||||||
|
AD_CATEGORY.GARAGE
|
||||||
|
]
|
||||||
|
}
|
||||||
|
// {
|
||||||
|
// dbField: "heatingType",
|
||||||
|
// title: "Vrsta grijanja",
|
||||||
|
// values: Object.keys(HEATING_TYPE).map(key => HEATING_TYPE[key]),
|
||||||
|
// categoriesToShow: [
|
||||||
|
// AD_CATEGORY.FLAT,
|
||||||
|
// AD_CATEGORY.HOUSE,
|
||||||
|
// AD_CATEGORY.APARTMENT,
|
||||||
|
// AD_CATEGORY.COTTAGE,
|
||||||
|
// AD_CATEGORY.OFFICE
|
||||||
|
// ]
|
||||||
|
// }
|
||||||
|
];
|
||||||
|
|
||||||
|
const ADVANCED_RANGE_FILTERS = [
|
||||||
|
{
|
||||||
|
id: "numberOfFloors",
|
||||||
|
title: "Broj spratova",
|
||||||
|
dbFieldMin: "numberOfFloorsMin",
|
||||||
|
dbFieldMax: "numberOfFloorsMax",
|
||||||
|
validValueMin: -1,
|
||||||
|
validValueMax: 50,
|
||||||
|
categoriesToShow: [AD_CATEGORY.HOUSE, AD_CATEGORY.COTTAGE]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "floor",
|
||||||
|
title: "Sprat",
|
||||||
|
dbFieldMin: "floorMin",
|
||||||
|
dbFieldMax: "floorMax",
|
||||||
|
validValueMin: -10,
|
||||||
|
validValueMax: 50,
|
||||||
|
categoriesToShow: [
|
||||||
|
AD_CATEGORY.FLAT,
|
||||||
|
AD_CATEGORY.APARTMENT,
|
||||||
|
AD_CATEGORY.OFFICE
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "numberOfRooms",
|
||||||
|
title: "Broj soba",
|
||||||
|
dbFieldMin: "numberOfRoomsMin",
|
||||||
|
dbFieldMax: "numberOfRoomsMax",
|
||||||
|
decimalPlaces: 1,
|
||||||
|
validValueMin: 0,
|
||||||
|
validValueMax: 200,
|
||||||
|
categoriesToShow: [
|
||||||
|
AD_CATEGORY.FLAT,
|
||||||
|
AD_CATEGORY.HOUSE,
|
||||||
|
AD_CATEGORY.APARTMENT,
|
||||||
|
AD_CATEGORY.COTTAGE,
|
||||||
|
AD_CATEGORY.OFFICE
|
||||||
|
]
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
ADVANCED_BOOLEAN_FILTERS,
|
||||||
|
ADVANCED_SEGMENT_SELECT_FILTERS,
|
||||||
|
ADVANCED_RANGE_FILTERS
|
||||||
|
};
|
||||||
@@ -30,6 +30,13 @@ const MAX_REAL_ESTATES_IN_FIRST_EMAIL =
|
|||||||
|
|
||||||
const PRINT_CRAWLER_DEBUG = process.env.PRINT_CRAWLER_DEBUG_INFO || 0;
|
const PRINT_CRAWLER_DEBUG = process.env.PRINT_CRAWLER_DEBUG_INFO || 0;
|
||||||
|
|
||||||
|
const API_MAP_KEY = process.env.API_MAP_KEY || "";
|
||||||
|
|
||||||
|
const PROSTOR_LOGIN = {
|
||||||
|
EMAIL: process.env.PROSTOR_LOGIN_EMAIL,
|
||||||
|
PASSWORD: process.env.PROSTOR_LOGIN_PASS
|
||||||
|
};
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
APP_PORT,
|
APP_PORT,
|
||||||
APP_URL,
|
APP_URL,
|
||||||
@@ -39,5 +46,7 @@ module.exports = {
|
|||||||
AWS_EMAIL_CONFIG,
|
AWS_EMAIL_CONFIG,
|
||||||
MAX_REAL_ESTATES_IN_EMAIL,
|
MAX_REAL_ESTATES_IN_EMAIL,
|
||||||
MAX_REAL_ESTATES_IN_FIRST_EMAIL,
|
MAX_REAL_ESTATES_IN_FIRST_EMAIL,
|
||||||
PRINT_CRAWLER_DEBUG
|
PRINT_CRAWLER_DEBUG,
|
||||||
|
API_MAP_KEY,
|
||||||
|
PROSTOR_LOGIN
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -4,9 +4,37 @@ const getLocation = async (req, res) => {
|
|||||||
const title = "Odaberite lokaciju";
|
const title = "Odaberite lokaciju";
|
||||||
const nextStep = req.query.nextStep || "/";
|
const nextStep = req.query.nextStep || "/";
|
||||||
|
|
||||||
|
//Check if location data already exists (active request)
|
||||||
|
//If it does then get location is called through edit field query
|
||||||
|
//and map should show already selected location not initial map
|
||||||
|
let selectedLatLngBounds = {};
|
||||||
|
let boundsSelected = false;
|
||||||
|
|
||||||
|
const searchRequest = await currentSearchRequest(req);
|
||||||
|
|
||||||
|
if (!searchRequest || !searchRequest.dataValues) {
|
||||||
|
res.render("notFound", { title: " " });
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const selectedArea = searchRequest.areaToSearch;
|
||||||
|
const sw = selectedArea.coordinates[0][3];
|
||||||
|
const ne = selectedArea.coordinates[0][1];
|
||||||
|
|
||||||
|
if (sw[0] && ne[0]) {
|
||||||
|
selectedLatLngBounds = {
|
||||||
|
swLat: sw[1],
|
||||||
|
swLng: sw[0],
|
||||||
|
neLat: ne[1],
|
||||||
|
neLng: ne[0]
|
||||||
|
};
|
||||||
|
boundsSelected = true;
|
||||||
|
}
|
||||||
|
|
||||||
res.render("location", {
|
res.render("location", {
|
||||||
nextStep,
|
nextStep,
|
||||||
title
|
title,
|
||||||
|
boundsSelected,
|
||||||
|
selectedLatLngBounds
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -3,9 +3,9 @@ const { isValidEmail } = require("../helpers/email");
|
|||||||
const {
|
const {
|
||||||
notifyForNewSearchRequest
|
notifyForNewSearchRequest
|
||||||
} = require("../services/notificationService");
|
} = require("../services/notificationService");
|
||||||
const { AD_CATEGORY, AD_TYPE } = require("../common/enums");
|
const { AD_CATEGORY, AD_TYPE, EMAIL_FREQUENCY } = require("../common/enums");
|
||||||
|
|
||||||
const getQueryReviewData = searchRequest => {
|
const getQueryReviewTableData = searchRequest => {
|
||||||
const {
|
const {
|
||||||
id,
|
id,
|
||||||
adType,
|
adType,
|
||||||
@@ -87,15 +87,26 @@ const getQueryReview = async (req, res) => {
|
|||||||
const title = "Da li je ovo to što ste tražili ?";
|
const title = "Da li je ovo to što ste tražili ?";
|
||||||
const nextStep = req.query.nextStep;
|
const nextStep = req.query.nextStep;
|
||||||
const error = req.query.error;
|
const error = req.query.error;
|
||||||
const queryReviewData = getQueryReviewData(searchRequest);
|
const queryReviewTableData = getQueryReviewTableData(searchRequest);
|
||||||
const email = searchRequest.email;
|
const email = searchRequest.email;
|
||||||
|
let selectedEmailFrequency;
|
||||||
|
switch (searchRequest.emailFrequency) {
|
||||||
|
case EMAIL_FREQUENCY.ASAP.stringId:
|
||||||
|
selectedEmailFrequency = EMAIL_FREQUENCY.ASAP.id;
|
||||||
|
break;
|
||||||
|
case EMAIL_FREQUENCY.DAILY.stringId:
|
||||||
|
selectedEmailFrequency = EMAIL_FREQUENCY.DAILY.id;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
res.render("queryReview", {
|
res.render("queryReview", {
|
||||||
nextStep,
|
nextStep,
|
||||||
queryReviewData,
|
queryReviewTableData,
|
||||||
title,
|
title,
|
||||||
email,
|
email,
|
||||||
error
|
selectedEmailFrequency,
|
||||||
|
error,
|
||||||
|
EMAIL_FREQUENCY
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -107,17 +118,26 @@ const postQueryReview = async (req, res) => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const nextStep = req.query.nextStep || "/ponovo";
|
const nextStep = req.query.nextStep || "/ponovo";
|
||||||
|
const emailFrequency =
|
||||||
|
parseInt(req.body.emailFrequency) || EMAIL_FREQUENCY.ASAP.id;
|
||||||
const emailInput = req.body.email;
|
const emailInput = req.body.email;
|
||||||
const emailConfirmInput = req.body.confirmEmail;
|
const emailConfirmInput = req.body.confirmEmail;
|
||||||
const title = "Da li je ovo to što ste tražili ?";
|
const title = "Da li je ovo to što ste tražili ?";
|
||||||
const queryReviewData = getQueryReviewData(searchRequest);
|
const queryReviewTableData = getQueryReviewTableData(searchRequest);
|
||||||
|
|
||||||
|
let emailFrequencyStringId = EMAIL_FREQUENCY.ASAP.stringId;
|
||||||
|
if (emailFrequency === EMAIL_FREQUENCY.DAILY.id) {
|
||||||
|
emailFrequencyStringId = EMAIL_FREQUENCY.DAILY.stringId;
|
||||||
|
}
|
||||||
|
|
||||||
|
searchRequest.emailFrequency = emailFrequencyStringId;
|
||||||
|
|
||||||
if (emailInput !== emailConfirmInput) {
|
if (emailInput !== emailConfirmInput) {
|
||||||
const error = "Greška ! Unešeni emailovi nisu isti";
|
const error = "Greška ! Unešeni emailovi nisu isti";
|
||||||
res.render("queryReview", {
|
res.render("queryReview", {
|
||||||
error,
|
error,
|
||||||
title,
|
title,
|
||||||
queryReviewData,
|
queryReviewTableData,
|
||||||
email: ""
|
email: ""
|
||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
@@ -128,7 +148,7 @@ const postQueryReview = async (req, res) => {
|
|||||||
res.render("queryReview", {
|
res.render("queryReview", {
|
||||||
error,
|
error,
|
||||||
title,
|
title,
|
||||||
queryReviewData,
|
queryReviewTableData,
|
||||||
email: ""
|
email: ""
|
||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
@@ -147,7 +167,7 @@ const postQueryReview = async (req, res) => {
|
|||||||
res.render("queryReview", {
|
res.render("queryReview", {
|
||||||
error,
|
error,
|
||||||
title,
|
title,
|
||||||
queryReviewData,
|
queryReviewTableData,
|
||||||
email: ""
|
email: ""
|
||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
@@ -164,7 +184,7 @@ const postQueryReview = async (req, res) => {
|
|||||||
res.render("queryReview", {
|
res.render("queryReview", {
|
||||||
error,
|
error,
|
||||||
title,
|
title,
|
||||||
queryReviewData,
|
queryReviewTableData,
|
||||||
email: ""
|
email: ""
|
||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
|
|||||||
@@ -1,5 +1,10 @@
|
|||||||
const { currentSearchRequest } = require("../helpers/url");
|
const { currentSearchRequest } = require("../helpers/url");
|
||||||
const { AD_CATEGORY, AD_TYPE } = require("../common/enums");
|
const { AD_CATEGORY, AD_TYPE, ACCESS_ROAD_TYPE } = require("../common/enums");
|
||||||
|
const {
|
||||||
|
ADVANCED_BOOLEAN_FILTERS,
|
||||||
|
ADVANCED_SEGMENT_SELECT_FILTERS,
|
||||||
|
ADVANCED_RANGE_FILTERS
|
||||||
|
} = require("../common/filterEnums");
|
||||||
|
|
||||||
const getFilters = async (req, res) => {
|
const getFilters = async (req, res) => {
|
||||||
const searchRequest = await currentSearchRequest(req);
|
const searchRequest = await currentSearchRequest(req);
|
||||||
@@ -19,7 +24,18 @@ const getFilters = async (req, res) => {
|
|||||||
sizeMin,
|
sizeMin,
|
||||||
sizeMax,
|
sizeMax,
|
||||||
gardenSizeMin,
|
gardenSizeMin,
|
||||||
gardenSizeMax
|
gardenSizeMax,
|
||||||
|
numberOfRoomsMin,
|
||||||
|
numberOfRoomsMax,
|
||||||
|
numberOfFloorsMin,
|
||||||
|
numberOfFloorsMax,
|
||||||
|
floorMin,
|
||||||
|
floorMax,
|
||||||
|
includeIncompleteAds,
|
||||||
|
balcony,
|
||||||
|
elevator,
|
||||||
|
newBuilding,
|
||||||
|
accessRoadType
|
||||||
} = searchRequest;
|
} = searchRequest;
|
||||||
const category = AD_CATEGORY[realEstateType] || AD_CATEGORY.FLAT;
|
const category = AD_CATEGORY[realEstateType] || AD_CATEGORY.FLAT;
|
||||||
|
|
||||||
@@ -41,6 +57,40 @@ const getFilters = async (req, res) => {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO: Maybe this is slow, pay attention to this
|
||||||
|
const filterFilters = filterObject => {
|
||||||
|
const filterCategories = filterObject.categoriesToShow;
|
||||||
|
return filterCategories.indexOf(category) !== -1;
|
||||||
|
};
|
||||||
|
|
||||||
|
const advancedBooleanFilterObjects = ADVANCED_BOOLEAN_FILTERS.filter(
|
||||||
|
filterFilters
|
||||||
|
);
|
||||||
|
const advancedSegmentSelectFilterObjects = ADVANCED_SEGMENT_SELECT_FILTERS.filter(
|
||||||
|
filterFilters
|
||||||
|
);
|
||||||
|
const advancedRangeFilterObjects = ADVANCED_RANGE_FILTERS.filter(
|
||||||
|
filterFilters
|
||||||
|
);
|
||||||
|
|
||||||
|
const advancedBooleanFilterValues = {
|
||||||
|
includeIncompleteAds,
|
||||||
|
balcony,
|
||||||
|
elevator,
|
||||||
|
newBuilding
|
||||||
|
};
|
||||||
|
const advancedSegmentSelectFilterValues = {
|
||||||
|
accessRoadType
|
||||||
|
};
|
||||||
|
const advancedRangeFilterValues = {
|
||||||
|
numberOfFloorsMin,
|
||||||
|
numberOfFloorsMax,
|
||||||
|
numberOfRoomsMin,
|
||||||
|
numberOfRoomsMax,
|
||||||
|
floorMin,
|
||||||
|
floorMax
|
||||||
|
};
|
||||||
|
|
||||||
if (priceMin || priceMax) {
|
if (priceMin || priceMax) {
|
||||||
priceSliderOptions.start = [priceMin, priceMax];
|
priceSliderOptions.start = [priceMin, priceMax];
|
||||||
}
|
}
|
||||||
@@ -58,7 +108,14 @@ const getFilters = async (req, res) => {
|
|||||||
hasGardenSize,
|
hasGardenSize,
|
||||||
priceSliderOptions: JSON.stringify(priceSliderOptions),
|
priceSliderOptions: JSON.stringify(priceSliderOptions),
|
||||||
sizeSliderOptions: JSON.stringify(sizeSliderOptions),
|
sizeSliderOptions: JSON.stringify(sizeSliderOptions),
|
||||||
gardenSizeSliderOptions: JSON.stringify(gardenSizeSliderOptions)
|
gardenSizeSliderOptions: JSON.stringify(gardenSizeSliderOptions),
|
||||||
|
advancedBooleanFilterObjects,
|
||||||
|
advancedBooleanFilterValues,
|
||||||
|
advancedSegmentSelectFilterObjects,
|
||||||
|
advancedSegmentSelectFilterValues,
|
||||||
|
advancedRangeFilterObjects,
|
||||||
|
advancedRangeFilterValues,
|
||||||
|
includeIncompleteAds
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -78,13 +135,91 @@ const postFilters = async (req, res) => {
|
|||||||
const sizeMin = parseInt(req.body.sizeMin) || 0;
|
const sizeMin = parseInt(req.body.sizeMin) || 0;
|
||||||
const sizeMax = parseInt(req.body.sizeMax) || 0;
|
const sizeMax = parseInt(req.body.sizeMax) || 0;
|
||||||
|
|
||||||
//TODO: Filter validation
|
const advancedRangeFilters = {};
|
||||||
|
|
||||||
|
ADVANCED_RANGE_FILTERS.forEach(filter => {
|
||||||
|
let parsingFunction = parseInt;
|
||||||
|
if (filter.decimalPlaces) {
|
||||||
|
parsingFunction = parseFloat;
|
||||||
|
}
|
||||||
|
|
||||||
|
advancedRangeFilters[filter.dbFieldMin] = parsingFunction(
|
||||||
|
req.body[filter.dbFieldMin]
|
||||||
|
);
|
||||||
|
advancedRangeFilters[filter.dbFieldMax] = parsingFunction(
|
||||||
|
req.body[filter.dbFieldMax]
|
||||||
|
);
|
||||||
|
|
||||||
|
advancedRangeFilters[filter.dbFieldMin] = isNaN(
|
||||||
|
advancedRangeFilters[filter.dbFieldMin]
|
||||||
|
)
|
||||||
|
? null
|
||||||
|
: advancedRangeFilters[filter.dbFieldMin];
|
||||||
|
advancedRangeFilters[filter.dbFieldMax] = isNaN(
|
||||||
|
advancedRangeFilters[filter.dbFieldMax]
|
||||||
|
)
|
||||||
|
? null
|
||||||
|
: advancedRangeFilters[filter.dbFieldMax];
|
||||||
|
|
||||||
|
try {
|
||||||
|
if (filter.decimalPlaces) {
|
||||||
|
advancedRangeFilters[filter.dbFieldMin] = advancedRangeFilters[
|
||||||
|
filter.dbFieldMin
|
||||||
|
].toFixed(filter.decimalPlaces);
|
||||||
|
advancedRangeFilters[filter.dbFieldMax] = advancedRangeFilters[
|
||||||
|
filter.dbFieldMax
|
||||||
|
].toFixed(filter.decimalPlaces);
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
advancedRangeFilters[filter.dbFieldMin] = null;
|
||||||
|
advancedRangeFilters[filter.dbFieldMax] = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (
|
||||||
|
advancedRangeFilters[filter.dbFieldMin] < filter.validValueMin ||
|
||||||
|
advancedRangeFilters[filter.dbFieldMin] > filter.validValueMax
|
||||||
|
) {
|
||||||
|
advancedRangeFilters[filter.dbFieldMin] = filter.validValueMin;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (
|
||||||
|
advancedRangeFilters[filter.dbFieldMax] < filter.validValueMin ||
|
||||||
|
advancedRangeFilters[filter.dbFieldMax] > filter.validValueMax
|
||||||
|
) {
|
||||||
|
advancedRangeFilters[filter.dbFieldMax] = filter.validValueMax;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
const includeIncompleteAds = req.body.includeIncompleteAds === "on";
|
||||||
|
|
||||||
|
const balcony = req.body.balcony === "on";
|
||||||
|
const elevator = req.body.elevator === "on";
|
||||||
|
const newBuilding = req.body.newBuilding === "on";
|
||||||
|
|
||||||
|
const accessRoadType = req.body.accessRoadType;
|
||||||
|
if (!ACCESS_ROAD_TYPE[accessRoadType]) {
|
||||||
|
res.render("notFound", { title: " Greška !" });
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
//TODO: Filter validation
|
||||||
searchRequest.priceMin = priceMin;
|
searchRequest.priceMin = priceMin;
|
||||||
searchRequest.priceMax = priceMax;
|
searchRequest.priceMax = priceMax;
|
||||||
searchRequest.sizeMin = sizeMin;
|
searchRequest.sizeMin = sizeMin;
|
||||||
searchRequest.sizeMax = sizeMax;
|
searchRequest.sizeMax = sizeMax;
|
||||||
|
|
||||||
|
for (const filter of Object.keys(advancedRangeFilters)) {
|
||||||
|
searchRequest[filter] = advancedRangeFilters[filter];
|
||||||
|
}
|
||||||
|
|
||||||
|
searchRequest.balcony = balcony;
|
||||||
|
searchRequest.elevator = elevator;
|
||||||
|
searchRequest.newBuilding = newBuilding;
|
||||||
|
|
||||||
|
searchRequest.includeIncompleteAds = includeIncompleteAds;
|
||||||
|
|
||||||
|
searchRequest.accessRoadType = accessRoadType;
|
||||||
|
|
||||||
if (
|
if (
|
||||||
req.body.gardenSizeMin !== undefined &&
|
req.body.gardenSizeMin !== undefined &&
|
||||||
req.body.gardenSizeMax !== undefined
|
req.body.gardenSizeMax !== undefined
|
||||||
@@ -97,7 +232,6 @@ const postFilters = async (req, res) => {
|
|||||||
searchRequest.gardenSizeMin = gardenSizeMin;
|
searchRequest.gardenSizeMin = gardenSizeMin;
|
||||||
searchRequest.gardenSizeMax = gardenSizeMax;
|
searchRequest.gardenSizeMax = gardenSizeMax;
|
||||||
}
|
}
|
||||||
|
|
||||||
await searchRequest.save();
|
await searchRequest.save();
|
||||||
|
|
||||||
res.redirect(nextStepUrl);
|
res.redirect(nextStepUrl);
|
||||||
|
|||||||
@@ -2,13 +2,14 @@
|
|||||||
const {
|
const {
|
||||||
findRealEstatesForSearchRequest
|
findRealEstatesForSearchRequest
|
||||||
} = require("../helpers/db/searchRequestMatch");
|
} = require("../helpers/db/searchRequestMatch");
|
||||||
|
const { AD_STATUS } = require("../common/enums");
|
||||||
|
|
||||||
const getRealEstates = async (req, res) => {
|
const getRealEstates = async (req, res) => {
|
||||||
const searchRequestId = req.params["searchRequestId"] || "";
|
const searchRequestId = req.params["searchRequestId"] || "";
|
||||||
const realEstates = await findRealEstatesForSearchRequest(searchRequestId);
|
const realEstates = await findRealEstatesForSearchRequest(searchRequestId);
|
||||||
|
|
||||||
const title = "Nekretnine koje odgovaraju Vašim uslovima pretrage";
|
const title = "Nekretnine koje odgovaraju Vašim uslovima pretrage";
|
||||||
res.render("realEstates", { realEstates, title });
|
res.render("realEstates", { realEstates, title, AD_STATUS });
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
|
|||||||
@@ -1,9 +1,11 @@
|
|||||||
const { getRealEstateById } = require("../helpers/db/realEstate");
|
const { getRealEstateById } = require("../helpers/db/realEstate");
|
||||||
|
const { AD_STATUS } = require("../common/enums");
|
||||||
|
|
||||||
const getRedirect = async (req, res) => {
|
const getRedirect = async (req, res) => {
|
||||||
const id = req.params.id || null;
|
const id = req.params.id || null;
|
||||||
let error = false;
|
let error = false;
|
||||||
let redirectUrl = undefined;
|
let redirectUrl = undefined;
|
||||||
|
let vipAd = undefined;
|
||||||
if (!id) {
|
if (!id) {
|
||||||
error = true;
|
error = true;
|
||||||
} else {
|
} else {
|
||||||
@@ -13,6 +15,7 @@ const getRedirect = async (req, res) => {
|
|||||||
error = true;
|
error = true;
|
||||||
} else {
|
} else {
|
||||||
redirectUrl = realEstate.url;
|
redirectUrl = realEstate.url;
|
||||||
|
vipAd = realEstate.adStatus === AD_STATUS.STATUS_VIP;
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
error = true;
|
error = true;
|
||||||
@@ -24,7 +27,7 @@ const getRedirect = async (req, res) => {
|
|||||||
res.render("notFound", { title });
|
res.render("notFound", { title });
|
||||||
} else {
|
} else {
|
||||||
const title = "Preusmjeravanje";
|
const title = "Preusmjeravanje";
|
||||||
res.render("redirect", { title, redirectUrl });
|
res.render("redirect", { title, redirectUrl, vipAd });
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -10,6 +10,8 @@ const getUnsubscribe = async (req, res) => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
searchRequest.subscribed = false;
|
searchRequest.subscribed = false;
|
||||||
|
searchRequest.deletedEmail = searchRequest.email;
|
||||||
|
searchRequest.email = "";
|
||||||
await searchRequest.save();
|
await searchRequest.save();
|
||||||
|
|
||||||
res.render("unsubscribe", { nextStep: "/vrstanekretnine", title });
|
res.render("unsubscribe", { nextStep: "/vrstanekretnine", title });
|
||||||
|
|||||||
@@ -1,7 +1,42 @@
|
|||||||
|
const { createSearchRequest } = require("../helpers/db/searchRequest");
|
||||||
|
|
||||||
|
const { AD_TYPE, AD_CATEGORY } = require("../common/enums");
|
||||||
|
|
||||||
const getWelcome = (req, res) => {
|
const getWelcome = (req, res) => {
|
||||||
res.render("welcome", { nextStep: "/vrstanekretnine", title: false });
|
res.render("welcome", {
|
||||||
|
title: false,
|
||||||
|
AD_TYPE
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
const postWelcome = async (req, res) => {
|
||||||
|
const adType = parseInt(req.body.adType);
|
||||||
|
|
||||||
|
const adTypeStringIds = {
|
||||||
|
[AD_TYPE.AD_TYPE_SALE.id]: AD_TYPE.AD_TYPE_SALE.stringId,
|
||||||
|
[AD_TYPE.AD_TYPE_RENT.id]: AD_TYPE.AD_TYPE_RENT.stringId
|
||||||
|
};
|
||||||
|
|
||||||
|
const adTypeStringId =
|
||||||
|
adTypeStringIds[adType] || AD_TYPE.AD_TYPE_SALE.stringId;
|
||||||
|
|
||||||
|
let nextStepUrl = "";
|
||||||
|
try {
|
||||||
|
const newSearchRequest = await createSearchRequest({
|
||||||
|
adType: adTypeStringId,
|
||||||
|
realEstateType: AD_CATEGORY.FLAT.id
|
||||||
|
});
|
||||||
|
|
||||||
|
nextStepUrl = `/vrstanekretnine/${newSearchRequest.id}`;
|
||||||
|
} catch (error) {
|
||||||
|
console.log(error);
|
||||||
|
nextStepUrl = `/`;
|
||||||
|
}
|
||||||
|
|
||||||
|
res.redirect(nextStepUrl);
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
getWelcome
|
getWelcome,
|
||||||
|
postWelcome
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -29,5 +29,6 @@ module.exports = {
|
|||||||
PROSTOR_CRAWLER_AD_CATEGORIES: transformedProstorCrawlerAdCategories,
|
PROSTOR_CRAWLER_AD_CATEGORIES: transformedProstorCrawlerAdCategories,
|
||||||
PROSTOR_IGNORED_USERNAMES: prostorIgnoredUsernames || [],
|
PROSTOR_IGNORED_USERNAMES: prostorIgnoredUsernames || [],
|
||||||
PROSTOR_DELAY_BETWEEN_PAGES:
|
PROSTOR_DELAY_BETWEEN_PAGES:
|
||||||
parseInt(process.env.PROSTOR_DELAY_BETWEEN_PAGES) || 1000
|
parseInt(process.env.PROSTOR_DELAY_BETWEEN_PAGES) || 1000,
|
||||||
|
PROSTOR_FORCE_CRAWL: !!parseInt(process.env.PROSTOR_FORCE_CRAWL)
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -11,7 +11,10 @@ const {
|
|||||||
AD_CATEGORY,
|
AD_CATEGORY,
|
||||||
AD_AGENCY,
|
AD_AGENCY,
|
||||||
AD_STATUS,
|
AD_STATUS,
|
||||||
CRAWLER_AD_TYPE
|
CRAWLER_AD_TYPE,
|
||||||
|
HEATING_TYPE,
|
||||||
|
ACCESS_ROAD_TYPE,
|
||||||
|
FURNISHING_TYPE
|
||||||
} = require("../../common/enums");
|
} = require("../../common/enums");
|
||||||
|
|
||||||
const {
|
const {
|
||||||
@@ -219,6 +222,7 @@ class AktidoCrawler {
|
|||||||
throw { message: "Can't find ad data JSON" };
|
throw { message: "Can't find ad data JSON" };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let adStatus = AD_STATUS.STATUS_NORMAL;
|
||||||
const aktidoId = extractedData["re_realEstates_id"];
|
const aktidoId = extractedData["re_realEstates_id"];
|
||||||
const adCategory = this.getKiviCategoryIdFromAktidoId(
|
const adCategory = this.getKiviCategoryIdFromAktidoId(
|
||||||
parseInt(extractedData["re_types_id"])
|
parseInt(extractedData["re_types_id"])
|
||||||
@@ -237,6 +241,181 @@ class AktidoCrawler {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const descriptionIds = extractedData["re_descriptions_id"]
|
||||||
|
.split(",")
|
||||||
|
.map(stringNumber => parseInt(stringNumber));
|
||||||
|
|
||||||
|
if (!Array.isArray(descriptionIds)) {
|
||||||
|
throw {
|
||||||
|
message:
|
||||||
|
'Expected array od descriptions but "re_descriptions_id" not found !'
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
const spaceIds = extractedData["re_spaces_id"]
|
||||||
|
.split(",")
|
||||||
|
.map(stringNumber => parseInt(stringNumber));
|
||||||
|
|
||||||
|
if (!Array.isArray(spaceIds)) {
|
||||||
|
throw {
|
||||||
|
message: 'Expected array od spaces but "re_spaces_id" not found !'
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
const infrastructureIds = extractedData["re_infrastructure_id"]
|
||||||
|
.split(",")
|
||||||
|
.map(stringNumber => parseInt(stringNumber));
|
||||||
|
|
||||||
|
if (!Array.isArray(infrastructureIds)) {
|
||||||
|
throw {
|
||||||
|
message:
|
||||||
|
'Expected array od infrastructures but "re_infrastructure_id" not found !'
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
const floorNoIds = extractedData["re_floorNO_id"]
|
||||||
|
.split(",")
|
||||||
|
.map(stringNumber => parseInt(stringNumber));
|
||||||
|
|
||||||
|
if (!Array.isArray(floorNoIds)) {
|
||||||
|
throw {
|
||||||
|
message:
|
||||||
|
'Expected array od infrastructures but "re_floorNO_id" not found !'
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
// counting floor enums
|
||||||
|
// for (let i = 1; i < 10; i++) {
|
||||||
|
// const floorEnumsTitle = $(
|
||||||
|
// `body > div.container-fluid > div.container > div:nth-child(2) > div.col-xs-12.col-sm-12.col-md-12.col-lg-9.content-main > div:nth-child(1) > div > div > div.col-xs-12.col-sm-4.box-details > div.body > p:nth-child(${i}) > span:nth-child(1)`
|
||||||
|
// )
|
||||||
|
// .text()
|
||||||
|
// .trim();
|
||||||
|
// if (floorEnumsTitle === "Spratnost:") {
|
||||||
|
// const floorEnumsValue = $(
|
||||||
|
// `body > div.container-fluid > div.container > div:nth-child(2) > div.col-xs-12.col-sm-12.col-md-12.col-lg-9.content-main > div:nth-child(1) > div > div > div.col-xs-12.col-sm-4.box-details > div.body > p:nth-child(${i}) > span:nth-child(2)`
|
||||||
|
// )
|
||||||
|
// .text()
|
||||||
|
// .trim()
|
||||||
|
// .split(",");
|
||||||
|
//
|
||||||
|
// console.log("==========");
|
||||||
|
// floorNoIds.forEach((id, index) => {
|
||||||
|
// console.log("\t", id, " = ", floorEnumsValue[index]);
|
||||||
|
// });
|
||||||
|
// break;
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
|
// enumerating infrastructure - relation between id and infrastructure title
|
||||||
|
// let found = false;
|
||||||
|
// let infrastructureDescriptions = {};
|
||||||
|
// for (let i = 1; i < 5; i++) {
|
||||||
|
// found = false;
|
||||||
|
// for (let j = 1; j < 10; j++) {
|
||||||
|
// const infrastructureTitle = $(
|
||||||
|
// `#b2 > div > div:nth-child(${i}) > div > ul > li:nth-child(${j}) > strong`
|
||||||
|
// )
|
||||||
|
// .text()
|
||||||
|
// .trim();
|
||||||
|
// if (infrastructureTitle === "Osnovna infrastruktura:") {
|
||||||
|
// found = true;
|
||||||
|
//
|
||||||
|
// const infrastructureValues = $(
|
||||||
|
// `#b2 > div > div:nth-child(${i}) > div > ul > li:nth-child(${j}) > div`
|
||||||
|
// )
|
||||||
|
// .text()
|
||||||
|
// .trim()
|
||||||
|
// .split(",");
|
||||||
|
//
|
||||||
|
// infrastructureIds.forEach((id, index) => {
|
||||||
|
// infrastructureDescriptions[id] = infrastructureValues[index];
|
||||||
|
// });
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// if (found) {
|
||||||
|
// break;
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
|
const realEstatePropertiesFromDescriptions = this.getPropertiesFromDescriptions(
|
||||||
|
descriptionIds
|
||||||
|
);
|
||||||
|
const realEstatePropertiesFromSpaces = this.getPropertiesFromSpaces(
|
||||||
|
spaceIds
|
||||||
|
);
|
||||||
|
|
||||||
|
const realEstatePropertiesFromInfrastructure = this.getPropertiesFromInfrastructure(
|
||||||
|
infrastructureIds
|
||||||
|
);
|
||||||
|
|
||||||
|
if (extractedData["adm_realEstates_discount"] === "1") {
|
||||||
|
adStatus = AD_STATUS.STATUS_DISCOUNTED;
|
||||||
|
}
|
||||||
|
|
||||||
|
let numberOfRooms =
|
||||||
|
parseInt(extractedData["re_realEstates_roomsNO"]) +
|
||||||
|
parseInt(extractedData["re_realEstates_bedroomNO"]) || null,
|
||||||
|
numberOfFloors =
|
||||||
|
parseInt(extractedData["re_realEstates_floorsNO"]) ||
|
||||||
|
this.getNumberOfFloorsFromFloorId(extractedData["re_floorNO_id"]),
|
||||||
|
floor =
|
||||||
|
parseInt(extractedData["re_realEstates_floorNO"]) ||
|
||||||
|
this.getFloorNumberFromFloorId(extractedData["re_floorNO_id"]),
|
||||||
|
accessRoadType = realEstatePropertiesFromDescriptions.accessRoadType,
|
||||||
|
heatingType =
|
||||||
|
this.getHeatingTypeId(extractedData["re_heating_id"]) || null,
|
||||||
|
furnishingType = realEstatePropertiesFromDescriptions.furnishingType,
|
||||||
|
balcony =
|
||||||
|
realEstatePropertiesFromDescriptions.balcony ||
|
||||||
|
realEstatePropertiesFromSpaces.balcony,
|
||||||
|
newBuilding = extractedData["op_realEstates_newBuilding"]
|
||||||
|
? extractedData["op_realEstates_newBuilding"] === "1"
|
||||||
|
: null,
|
||||||
|
elevator = realEstatePropertiesFromDescriptions.elevator,
|
||||||
|
water =
|
||||||
|
realEstatePropertiesFromDescriptions.water ||
|
||||||
|
realEstatePropertiesFromInfrastructure.water,
|
||||||
|
electricity =
|
||||||
|
realEstatePropertiesFromDescriptions.electricity ||
|
||||||
|
realEstatePropertiesFromInfrastructure.electricity,
|
||||||
|
drainageSystem =
|
||||||
|
realEstatePropertiesFromInfrastructure.drainageSystem,
|
||||||
|
registeredInZkBooks =
|
||||||
|
extractedData["op_realEstates_ownerPermit"] === 1 || null,
|
||||||
|
recentlyAdapted = null,
|
||||||
|
parking =
|
||||||
|
realEstatePropertiesFromDescriptions.parking ||
|
||||||
|
realEstatePropertiesFromSpaces.parking,
|
||||||
|
garage = realEstatePropertiesFromSpaces.garage,
|
||||||
|
gas = realEstatePropertiesFromInfrastructure.gas,
|
||||||
|
antiTheftDoor = realEstatePropertiesFromDescriptions.antiTheftDoor,
|
||||||
|
airCondition = realEstatePropertiesFromDescriptions.airCondition,
|
||||||
|
phoneConnection =
|
||||||
|
realEstatePropertiesFromInfrastructure.phoneConnection,
|
||||||
|
cableTV = realEstatePropertiesFromInfrastructure.cableTV,
|
||||||
|
internet = realEstatePropertiesFromInfrastructure.internet,
|
||||||
|
basementAttic = realEstatePropertiesFromSpaces.basementAttic,
|
||||||
|
storeRoom = realEstatePropertiesFromSpaces.storeRoom,
|
||||||
|
videoSurveillance =
|
||||||
|
realEstatePropertiesFromDescriptions.videoSurveillance ||
|
||||||
|
realEstatePropertiesFromInfrastructure.videoSurveillance,
|
||||||
|
alarm = realEstatePropertiesFromDescriptions.alarm,
|
||||||
|
suitableForStudents = null,
|
||||||
|
includingBills =
|
||||||
|
extractedData["op_realEstates_utilitiesIncluded"] === "1" || null,
|
||||||
|
animalsAllowed = null,
|
||||||
|
pool = realEstatePropertiesFromDescriptions.pool,
|
||||||
|
urbanPlanPermit =
|
||||||
|
extractedData["op_realEstates_locationPermit"] === "1" ||
|
||||||
|
realEstatePropertiesFromDescriptions.urbanPlanPermit,
|
||||||
|
buildingPermit =
|
||||||
|
extractedData["op_realEstates_buildingPermit"] === "1" || null,
|
||||||
|
utilityConnection =
|
||||||
|
realEstatePropertiesFromDescriptions.utilityConnection,
|
||||||
|
distanceToRiver = null,
|
||||||
|
numberOfViewsAgency = null;
|
||||||
|
|
||||||
const title = extractedData["re_realEstates_portalName"];
|
const title = extractedData["re_realEstates_portalName"];
|
||||||
const extractedPrice = parseFloat(
|
const extractedPrice = parseFloat(
|
||||||
extractedData["re_realEstates_price"]
|
extractedData["re_realEstates_price"]
|
||||||
@@ -277,8 +456,6 @@ class AktidoCrawler {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
const adStatus = AD_STATUS.STATUS_NORMAL;
|
|
||||||
|
|
||||||
const data = {
|
const data = {
|
||||||
url,
|
url,
|
||||||
agencyObjectId: aktidoId,
|
agencyObjectId: aktidoId,
|
||||||
@@ -303,7 +480,42 @@ class AktidoCrawler {
|
|||||||
locationLong,
|
locationLong,
|
||||||
adStatus,
|
adStatus,
|
||||||
publishedDate: publishedDateMoment.toISOString(),
|
publishedDate: publishedDateMoment.toISOString(),
|
||||||
renewedDate: renewedDateMoment.toISOString()
|
renewedDate: renewedDateMoment.toISOString(),
|
||||||
|
numberOfRooms,
|
||||||
|
numberOfFloors,
|
||||||
|
floor,
|
||||||
|
accessRoadType,
|
||||||
|
heatingType,
|
||||||
|
furnishingType,
|
||||||
|
balcony,
|
||||||
|
newBuilding,
|
||||||
|
elevator,
|
||||||
|
water,
|
||||||
|
electricity,
|
||||||
|
drainageSystem,
|
||||||
|
registeredInZkBooks,
|
||||||
|
recentlyAdapted,
|
||||||
|
parking,
|
||||||
|
garage,
|
||||||
|
gas,
|
||||||
|
antiTheftDoor,
|
||||||
|
airCondition,
|
||||||
|
phoneConnection,
|
||||||
|
cableTV,
|
||||||
|
internet,
|
||||||
|
basementAttic,
|
||||||
|
storeRoom,
|
||||||
|
videoSurveillance,
|
||||||
|
alarm,
|
||||||
|
suitableForStudents,
|
||||||
|
includingBills,
|
||||||
|
animalsAllowed,
|
||||||
|
pool,
|
||||||
|
urbanPlanPermit,
|
||||||
|
buildingPermit,
|
||||||
|
utilityConnection,
|
||||||
|
distanceToRiver,
|
||||||
|
numberOfViewsAgency
|
||||||
};
|
};
|
||||||
|
|
||||||
return data;
|
return data;
|
||||||
@@ -350,6 +562,270 @@ class AktidoCrawler {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
getPropertiesFromDescriptions(descriptionIds) {
|
||||||
|
const result = {
|
||||||
|
accessRoadType: null,
|
||||||
|
furnishingType: null,
|
||||||
|
balcony: null,
|
||||||
|
elevator: null,
|
||||||
|
parking: null,
|
||||||
|
antiTheftDoor: null,
|
||||||
|
airCondition: null,
|
||||||
|
videoSurveillance: null,
|
||||||
|
alarm: null,
|
||||||
|
pool: null,
|
||||||
|
urbanPlanPermit: null,
|
||||||
|
utilityConnection: null,
|
||||||
|
water: null,
|
||||||
|
electricity: null
|
||||||
|
};
|
||||||
|
|
||||||
|
for (const descriptionId of descriptionIds) {
|
||||||
|
switch (descriptionId) {
|
||||||
|
case 16:
|
||||||
|
result.furnishingType = FURNISHING_TYPE.NOT_FURNISHED.id;
|
||||||
|
break;
|
||||||
|
case 17:
|
||||||
|
result.furnishingType = FURNISHING_TYPE.HALF_FURNISHED.id;
|
||||||
|
break;
|
||||||
|
case 1:
|
||||||
|
case 28:
|
||||||
|
result.furnishingType = FURNISHING_TYPE.FURNISHED.id;
|
||||||
|
break;
|
||||||
|
case 14:
|
||||||
|
result.elevator = true;
|
||||||
|
break;
|
||||||
|
case 39:
|
||||||
|
result.electricity = true;
|
||||||
|
break;
|
||||||
|
case 40:
|
||||||
|
result.water = true;
|
||||||
|
break;
|
||||||
|
case 41:
|
||||||
|
case 58:
|
||||||
|
result.accessRoadType = ACCESS_ROAD_TYPE.ASPHALT.id;
|
||||||
|
break;
|
||||||
|
case 26:
|
||||||
|
result.balcony = true;
|
||||||
|
break;
|
||||||
|
case 62:
|
||||||
|
result.parking = true;
|
||||||
|
break;
|
||||||
|
case 3:
|
||||||
|
result.antiTheftDoor = true;
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
case 21:
|
||||||
|
result.airCondition = true;
|
||||||
|
break;
|
||||||
|
case 4:
|
||||||
|
result.alarm = true;
|
||||||
|
break;
|
||||||
|
case 55:
|
||||||
|
result.videoSurveillance = true;
|
||||||
|
break;
|
||||||
|
case 9:
|
||||||
|
result.pool = true;
|
||||||
|
break;
|
||||||
|
case 60:
|
||||||
|
result.urbanPlanPermit = true;
|
||||||
|
break;
|
||||||
|
case 38:
|
||||||
|
result.utilityConnection = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
getPropertiesFromSpaces(spaceIds) {
|
||||||
|
const result = {
|
||||||
|
balcony: null,
|
||||||
|
parking: null,
|
||||||
|
garage: null,
|
||||||
|
basementAttic: null,
|
||||||
|
storeRoom: null
|
||||||
|
};
|
||||||
|
|
||||||
|
for (const spaceId of spaceIds) {
|
||||||
|
switch (spaceId) {
|
||||||
|
case 36:
|
||||||
|
case 12:
|
||||||
|
result.parking = true;
|
||||||
|
break;
|
||||||
|
case 1:
|
||||||
|
case 2:
|
||||||
|
case 3:
|
||||||
|
result.balcony = true;
|
||||||
|
break;
|
||||||
|
case 4:
|
||||||
|
case 30:
|
||||||
|
result.garage = true;
|
||||||
|
break;
|
||||||
|
case 9:
|
||||||
|
case 10:
|
||||||
|
result.storeRoom = true;
|
||||||
|
break;
|
||||||
|
case 18:
|
||||||
|
case 34:
|
||||||
|
case 37:
|
||||||
|
case 27:
|
||||||
|
result.basementAttic = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
getHeatingTypeId(heatingRentalId) {
|
||||||
|
// heatingRentalId can have multiple values, like: "1, 2, 3", parseInt will take first integer value
|
||||||
|
const heatingId = parseInt(heatingRentalId);
|
||||||
|
switch (heatingId) {
|
||||||
|
case 27:
|
||||||
|
case 16:
|
||||||
|
return HEATING_TYPE.GAS.id;
|
||||||
|
case 4:
|
||||||
|
return HEATING_TYPE.CENTRAL_GAS.id;
|
||||||
|
case 3:
|
||||||
|
case 23:
|
||||||
|
case 6:
|
||||||
|
case 7:
|
||||||
|
case 8:
|
||||||
|
case 9:
|
||||||
|
case 10:
|
||||||
|
return HEATING_TYPE.CENTRAL_BOILER.id;
|
||||||
|
case 2:
|
||||||
|
case 13:
|
||||||
|
case 30:
|
||||||
|
case 17:
|
||||||
|
case 29:
|
||||||
|
case 31:
|
||||||
|
return HEATING_TYPE.ELECTRICITY.id;
|
||||||
|
case 24:
|
||||||
|
case 25:
|
||||||
|
case 12:
|
||||||
|
return HEATING_TYPE.CENTRAL_CITY.id;
|
||||||
|
case 26:
|
||||||
|
case 21:
|
||||||
|
case 20:
|
||||||
|
return HEATING_TYPE.WOOD.id;
|
||||||
|
case 28:
|
||||||
|
case 19:
|
||||||
|
return HEATING_TYPE.HEAT_PUMP.id;
|
||||||
|
case 14:
|
||||||
|
case 32:
|
||||||
|
return HEATING_TYPE.OTHER.id;
|
||||||
|
default:
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
getPropertiesFromInfrastructure(infrastructureIds) {
|
||||||
|
const result = {
|
||||||
|
electricity: null,
|
||||||
|
water: null,
|
||||||
|
gas: null,
|
||||||
|
drainageSystem: null,
|
||||||
|
phoneConnection: null,
|
||||||
|
internet: null,
|
||||||
|
videoSurveillance: null,
|
||||||
|
cableTV: null
|
||||||
|
};
|
||||||
|
|
||||||
|
for (const infrastructureId of infrastructureIds) {
|
||||||
|
switch (infrastructureId) {
|
||||||
|
case 1:
|
||||||
|
result.electricity = true;
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
result.water = true;
|
||||||
|
break;
|
||||||
|
case 4:
|
||||||
|
result.gas = true;
|
||||||
|
break;
|
||||||
|
case 5:
|
||||||
|
result.drainageSystem = true;
|
||||||
|
break;
|
||||||
|
case 7:
|
||||||
|
case 8:
|
||||||
|
result.phoneConnection = true;
|
||||||
|
break;
|
||||||
|
case 10:
|
||||||
|
result.internet = true;
|
||||||
|
break;
|
||||||
|
case 11:
|
||||||
|
result.cableTV = true;
|
||||||
|
break;
|
||||||
|
case 16:
|
||||||
|
case 17:
|
||||||
|
result.videoSurveillance = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
getFloorNumberFromFloorId(floorsIdText) {
|
||||||
|
// floorIdText can be array of numbers, separated by comma or number
|
||||||
|
// just extracting floor number from first element
|
||||||
|
|
||||||
|
const floorsId = floorsIdText.split(",");
|
||||||
|
if (floorsId.length === 0) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
const firstFloorId = parseInt(floorsId[0]);
|
||||||
|
|
||||||
|
// 1 pod
|
||||||
|
// 2 sut
|
||||||
|
// 3 raz
|
||||||
|
// 4 pri
|
||||||
|
// 5 vpri
|
||||||
|
// 6 prv
|
||||||
|
// 7 dru
|
||||||
|
// 8 tre
|
||||||
|
// 9 čet
|
||||||
|
// 10 man
|
||||||
|
// 11
|
||||||
|
// 12 pot
|
||||||
|
// 13 vpot
|
||||||
|
// 14 tav
|
||||||
|
// 15 pet
|
||||||
|
const floorNumber = [
|
||||||
|
-1,
|
||||||
|
-1,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
4,
|
||||||
|
null,
|
||||||
|
null,
|
||||||
|
null,
|
||||||
|
null,
|
||||||
|
null,
|
||||||
|
5
|
||||||
|
];
|
||||||
|
|
||||||
|
return floorNumber[firstFloorId - 1] || null;
|
||||||
|
}
|
||||||
|
|
||||||
|
getNumberOfFloorsFromFloorId(floorsIdText) {
|
||||||
|
// floorIdText can be array of numbers, separated by comma or number
|
||||||
|
|
||||||
|
const floorIds = floorsIdText.split(",");
|
||||||
|
if (floorIds.length === 0) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return floorIds.length;
|
||||||
|
}
|
||||||
|
|
||||||
async sleep(ms) {
|
async sleep(ms) {
|
||||||
return new Promise(resolve => setTimeout(resolve, ms));
|
return new Promise(resolve => setTimeout(resolve, ms));
|
||||||
}
|
}
|
||||||
@@ -362,7 +838,7 @@ class AktidoCrawler {
|
|||||||
// }
|
// }
|
||||||
|
|
||||||
//For now, we use only Postgres saver, so ...
|
//For now, we use only Postgres saver, so ...
|
||||||
return await savers[0].save(results);
|
return savers[0].save(results);
|
||||||
//so that we can use some sequelize options and information when data is inserted
|
//so that we can use some sequelize options and information when data is inserted
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,7 +10,10 @@ const {
|
|||||||
AD_CATEGORY,
|
AD_CATEGORY,
|
||||||
AD_AGENCY,
|
AD_AGENCY,
|
||||||
AD_STATUS,
|
AD_STATUS,
|
||||||
CRAWLER_AD_TYPE
|
CRAWLER_AD_TYPE,
|
||||||
|
HEATING_TYPE,
|
||||||
|
FURNISHING_TYPE,
|
||||||
|
ACCESS_ROAD_TYPE
|
||||||
} = require("../../common/enums");
|
} = require("../../common/enums");
|
||||||
|
|
||||||
const {
|
const {
|
||||||
@@ -271,6 +274,7 @@ class OlxCrawler {
|
|||||||
//====== OTHER AD INFORMATION ===============
|
//====== OTHER AD INFORMATION ===============
|
||||||
let adType = null;
|
let adType = null;
|
||||||
let olxId = null;
|
let olxId = null;
|
||||||
|
let numberOfViewsAgency = null;
|
||||||
|
|
||||||
let otherInformationDivId;
|
let otherInformationDivId;
|
||||||
//We need to locate DIV ID where other information are stored
|
//We need to locate DIV ID where other information are stored
|
||||||
@@ -293,6 +297,7 @@ class OlxCrawler {
|
|||||||
|
|
||||||
const olxIdFieldSelector = `#artikal_glavni_div > div.artikal_lijevo > div:nth-child(${otherInformationDivId}) > div:nth-child(4)`;
|
const olxIdFieldSelector = `#artikal_glavni_div > div.artikal_lijevo > div:nth-child(${otherInformationDivId}) > div:nth-child(4)`;
|
||||||
const publishedDateValueSelector = `#artikal_glavni_div > div.artikal_lijevo > div:nth-child(${otherInformationDivId}) > div:nth-child(3) > div.df2.neanimiraj > time`;
|
const publishedDateValueSelector = `#artikal_glavni_div > div.artikal_lijevo > div:nth-child(${otherInformationDivId}) > div:nth-child(3) > div.df2.neanimiraj > time`;
|
||||||
|
const numberOfViewsAgencyValueSelector = `#artikal_glavni_div > div.artikal_lijevo > div:nth-child(${otherInformationDivId}) > div:nth-child(6) > div.df2`;
|
||||||
const renewedDateFullValueSelector = `#artikal_glavni_div > div.artikal_lijevo > div.op.ob.pop`;
|
const renewedDateFullValueSelector = `#artikal_glavni_div > div.artikal_lijevo > div.op.ob.pop`;
|
||||||
|
|
||||||
const publishedDate = $(publishedDateValueSelector)
|
const publishedDate = $(publishedDateValueSelector)
|
||||||
@@ -331,60 +336,7 @@ class OlxCrawler {
|
|||||||
)
|
)
|
||||||
.text()
|
.text()
|
||||||
.trim();
|
.trim();
|
||||||
const olxIdFieldTitle = $(`${olxIdFieldSelector} > div.df1`)
|
|
||||||
.text()
|
|
||||||
.trim();
|
|
||||||
olxId = $(`${olxIdFieldSelector} > div.df2`)
|
|
||||||
.text()
|
|
||||||
.trim();
|
|
||||||
|
|
||||||
if (olxIdFieldTitle !== "OLX ID") {
|
|
||||||
throw { message: "Cannot find correct OLX ID" };
|
|
||||||
}
|
|
||||||
//===========================================
|
|
||||||
|
|
||||||
//====== DETAIL INFORMATION FIELDS ==========
|
|
||||||
let area = null;
|
|
||||||
let gardenSize = null;
|
|
||||||
|
|
||||||
let fieldIndex = 1;
|
|
||||||
do {
|
|
||||||
const fieldSelector = `#dodatnapolja1 > div:nth-child(${fieldIndex})`;
|
|
||||||
const fieldTitleSelector = `${fieldSelector} > div.df1`;
|
|
||||||
const fieldValueSelector = `${fieldSelector} > div.df2`;
|
|
||||||
|
|
||||||
const fieldTitle = $(fieldTitleSelector)
|
|
||||||
.text()
|
|
||||||
.trim();
|
|
||||||
const fieldValue = $(fieldValueSelector)
|
|
||||||
.text()
|
|
||||||
.trim();
|
|
||||||
|
|
||||||
switch (fieldTitle) {
|
|
||||||
case "Kvadrata":
|
|
||||||
area = fieldValue;
|
|
||||||
break;
|
|
||||||
case "Okućnica (kvadratura)":
|
|
||||||
gardenSize = fieldValue;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (++fieldIndex === OLX_ENUMS.MAX_DETAIL_FIELDS || fieldTitle === "") {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
} while (true);
|
|
||||||
//===========================================
|
|
||||||
|
|
||||||
//====== UNUSED FIELDS FOR NOW ==============
|
|
||||||
const time = $("time").attr("datetime");
|
|
||||||
const numberOfViews = $(
|
|
||||||
"#artikal_glavni_div > div.artikal_lijevo > div:nth-child(18) > div:nth-child(6) > div.df2"
|
|
||||||
)
|
|
||||||
.text()
|
|
||||||
.trim();
|
|
||||||
//===========================================
|
|
||||||
|
|
||||||
//=========================================
|
|
||||||
const parsedCategory = this.getAdCategoryId(category);
|
const parsedCategory = this.getAdCategoryId(category);
|
||||||
if (!parsedCategory) {
|
if (!parsedCategory) {
|
||||||
throw { message: `Unknown ad category [${category}]` };
|
throw { message: `Unknown ad category [${category}]` };
|
||||||
@@ -395,6 +347,221 @@ class OlxCrawler {
|
|||||||
throw { message: "Unknown ad type" };
|
throw { message: "Unknown ad type" };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const olxIdFieldTitle = $(`${olxIdFieldSelector} > div.df1`)
|
||||||
|
.text()
|
||||||
|
.trim();
|
||||||
|
olxId = $(`${olxIdFieldSelector} > div.df2`)
|
||||||
|
.text()
|
||||||
|
.trim();
|
||||||
|
numberOfViewsAgency = parseInt(
|
||||||
|
$(numberOfViewsAgencyValueSelector)
|
||||||
|
.text()
|
||||||
|
.trim()
|
||||||
|
);
|
||||||
|
|
||||||
|
if (olxIdFieldTitle !== "OLX ID") {
|
||||||
|
throw { message: "Cannot find correct OLX ID" };
|
||||||
|
}
|
||||||
|
//===========================================
|
||||||
|
|
||||||
|
//====== DETAIL INFORMATION FIELDS ==========
|
||||||
|
let area,
|
||||||
|
gardenSize,
|
||||||
|
numberOfRooms = null,
|
||||||
|
numberOfFloors = null,
|
||||||
|
floor = null,
|
||||||
|
accessRoadType = null,
|
||||||
|
heatingType = null,
|
||||||
|
furnishingType = null,
|
||||||
|
balcony = null,
|
||||||
|
newBuilding = null,
|
||||||
|
elevator = null,
|
||||||
|
water = null,
|
||||||
|
electricity = null,
|
||||||
|
drainageSystem = null,
|
||||||
|
registeredInZkBooks = null,
|
||||||
|
recentlyAdapted = null,
|
||||||
|
parking = null,
|
||||||
|
garage = null,
|
||||||
|
gas = null,
|
||||||
|
antiTheftDoor = null,
|
||||||
|
airCondition = null,
|
||||||
|
phoneConnection = null,
|
||||||
|
cableTV = null,
|
||||||
|
internet = null,
|
||||||
|
basementAttic = null,
|
||||||
|
storeRoom = null,
|
||||||
|
videoSurveillance = null,
|
||||||
|
alarm = null,
|
||||||
|
suitableForStudents = null,
|
||||||
|
includingBills = null,
|
||||||
|
animalsAllowed = null,
|
||||||
|
pool = null,
|
||||||
|
urbanPlanPermit = null,
|
||||||
|
buildingPermit = null,
|
||||||
|
utilityConnection = null,
|
||||||
|
distanceToRiver = null;
|
||||||
|
|
||||||
|
let fieldIndex = 1;
|
||||||
|
do {
|
||||||
|
const fieldSelector = `#dodatnapolja1 > div:nth-child(${fieldIndex})`;
|
||||||
|
const fieldTitleSelector = `${fieldSelector} > div.df1`;
|
||||||
|
const fieldValueSelector = `${fieldSelector} > div.df2`;
|
||||||
|
|
||||||
|
const fieldTitle = $(fieldTitleSelector)
|
||||||
|
.text()
|
||||||
|
.trim()
|
||||||
|
.toLowerCase();
|
||||||
|
const fieldValue = $(fieldValueSelector)
|
||||||
|
.text()
|
||||||
|
.trim()
|
||||||
|
.toLowerCase();
|
||||||
|
|
||||||
|
switch (fieldTitle) {
|
||||||
|
case "kvadrata":
|
||||||
|
area = fieldValue;
|
||||||
|
break;
|
||||||
|
case "okućnica (kvadratura)":
|
||||||
|
gardenSize = fieldValue;
|
||||||
|
break;
|
||||||
|
case "broj soba":
|
||||||
|
numberOfRooms = this.parseNumberOfRooms(fieldValue, parsedCategory);
|
||||||
|
break;
|
||||||
|
case "broj prostorija":
|
||||||
|
numberOfRooms = this.parseNumberOfRooms(fieldValue, parsedCategory);
|
||||||
|
break;
|
||||||
|
case "broj spratova":
|
||||||
|
numberOfFloors = this.parseNumberOfFloors(
|
||||||
|
fieldValue,
|
||||||
|
parsedCategory
|
||||||
|
);
|
||||||
|
break;
|
||||||
|
case "sprat":
|
||||||
|
floor = this.parseFloorNumber(fieldValue, parsedCategory);
|
||||||
|
break;
|
||||||
|
case "vrsta grijanja":
|
||||||
|
heatingType = this.getHeatingTypeId(fieldValue);
|
||||||
|
break;
|
||||||
|
case "namješten?":
|
||||||
|
furnishingType = this.getFurnishingTypeId(fieldValue);
|
||||||
|
break;
|
||||||
|
case "namješten":
|
||||||
|
furnishingType = FURNISHING_TYPE.FURNISHED.id;
|
||||||
|
break;
|
||||||
|
case "namještena":
|
||||||
|
furnishingType = FURNISHING_TYPE.FURNISHED.id;
|
||||||
|
break;
|
||||||
|
case "voda":
|
||||||
|
water = true;
|
||||||
|
break;
|
||||||
|
case "struja":
|
||||||
|
electricity = true;
|
||||||
|
break;
|
||||||
|
case "kanalizacija":
|
||||||
|
drainageSystem = fieldValue !== "nema";
|
||||||
|
break;
|
||||||
|
case "godina izgradnje":
|
||||||
|
newBuilding = newBuilding || fieldValue === "novogradnja";
|
||||||
|
break;
|
||||||
|
case "kućni ljubimci":
|
||||||
|
animalsAllowed = fieldValue === "da";
|
||||||
|
break;
|
||||||
|
case "uknjiženo / zk":
|
||||||
|
registeredInZkBooks = true;
|
||||||
|
break;
|
||||||
|
case "uknjiženo (zk)":
|
||||||
|
registeredInZkBooks = true;
|
||||||
|
break;
|
||||||
|
case "novogradnja":
|
||||||
|
newBuilding = true;
|
||||||
|
break;
|
||||||
|
case "nedavno adaptiran":
|
||||||
|
recentlyAdapted = true;
|
||||||
|
break;
|
||||||
|
case "nedavno adaptirana":
|
||||||
|
recentlyAdapted = true;
|
||||||
|
break;
|
||||||
|
case "balkon":
|
||||||
|
balcony = true;
|
||||||
|
break;
|
||||||
|
case "lift":
|
||||||
|
elevator = true;
|
||||||
|
break;
|
||||||
|
case "parking":
|
||||||
|
parking = true;
|
||||||
|
break;
|
||||||
|
case "garaža":
|
||||||
|
garage = true;
|
||||||
|
break;
|
||||||
|
case "plin":
|
||||||
|
gas = true;
|
||||||
|
break;
|
||||||
|
case "blindirana vrata":
|
||||||
|
antiTheftDoor = true;
|
||||||
|
break;
|
||||||
|
case "klima":
|
||||||
|
airCondition = true;
|
||||||
|
break;
|
||||||
|
case "telefonski priključak":
|
||||||
|
phoneConnection = true;
|
||||||
|
break;
|
||||||
|
case "kablovska tv":
|
||||||
|
cableTV = true;
|
||||||
|
break;
|
||||||
|
case "internet":
|
||||||
|
internet = true;
|
||||||
|
break;
|
||||||
|
case "podrum/tavan":
|
||||||
|
basementAttic = true;
|
||||||
|
break;
|
||||||
|
case "ostava/špajz":
|
||||||
|
storeRoom = true;
|
||||||
|
break;
|
||||||
|
case "video nadzor":
|
||||||
|
videoSurveillance = true;
|
||||||
|
break;
|
||||||
|
case "alarm":
|
||||||
|
alarm = true;
|
||||||
|
break;
|
||||||
|
case "za studente":
|
||||||
|
suitableForStudents = true;
|
||||||
|
break;
|
||||||
|
case "uključen trošak režija":
|
||||||
|
includingBills = true;
|
||||||
|
break;
|
||||||
|
case "građevinska dozvola":
|
||||||
|
buildingPermit = true;
|
||||||
|
break;
|
||||||
|
case "komunalni priključak":
|
||||||
|
utilityConnection = true;
|
||||||
|
break;
|
||||||
|
case "urbanistička dozvola":
|
||||||
|
urbanPlanPermit = true;
|
||||||
|
break;
|
||||||
|
case "udaljenost od rijeke (m)":
|
||||||
|
distanceToRiver = parseInt(fieldValue) || null;
|
||||||
|
break;
|
||||||
|
case "prilaz":
|
||||||
|
accessRoadType = this.getAccessRoadTypeId(fieldValue);
|
||||||
|
break;
|
||||||
|
case "bazen":
|
||||||
|
pool = true;
|
||||||
|
break;
|
||||||
|
case "iznajmljeno":
|
||||||
|
status = AD_STATUS.STATUS_RENTED;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
// console.log(fieldTitle, " = ", fieldValue);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (++fieldIndex === OLX_ENUMS.MAX_DETAIL_FIELDS || fieldTitle === "") {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
} while (true);
|
||||||
|
//===========================================
|
||||||
|
|
||||||
|
//=========================================
|
||||||
const parsedArea = this.parseArea(area) || null;
|
const parsedArea = this.parseArea(area) || null;
|
||||||
const parsedGardenSize = this.parseArea(gardenSize) || null;
|
const parsedGardenSize = this.parseArea(gardenSize) || null;
|
||||||
const parsedPrice = this.parsePrice(price) || null;
|
const parsedPrice = this.parsePrice(price) || null;
|
||||||
@@ -409,6 +576,13 @@ class OlxCrawler {
|
|||||||
locationLong = parseFloat(locationLatLngMatches[2]) || null;
|
locationLong = parseFloat(locationLatLngMatches[2]) || null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (
|
||||||
|
title.indexOf("[PRODANO]") !== -1 ||
|
||||||
|
title.indexOf("[ZAVRŠENO]") !== -1
|
||||||
|
) {
|
||||||
|
status = AD_STATUS.STATUS_SOLD;
|
||||||
|
}
|
||||||
|
|
||||||
const data = {
|
const data = {
|
||||||
url,
|
url,
|
||||||
agencyObjectId: olxId,
|
agencyObjectId: olxId,
|
||||||
@@ -439,7 +613,42 @@ class OlxCrawler {
|
|||||||
locationLong,
|
locationLong,
|
||||||
adStatus: status,
|
adStatus: status,
|
||||||
publishedDate: publishedDateMoment.toISOString(),
|
publishedDate: publishedDateMoment.toISOString(),
|
||||||
renewedDate: renewedDateMoment.toISOString()
|
renewedDate: renewedDateMoment.toISOString(),
|
||||||
|
numberOfRooms,
|
||||||
|
numberOfFloors,
|
||||||
|
floor,
|
||||||
|
accessRoadType,
|
||||||
|
heatingType,
|
||||||
|
furnishingType,
|
||||||
|
balcony,
|
||||||
|
newBuilding,
|
||||||
|
elevator,
|
||||||
|
water,
|
||||||
|
electricity,
|
||||||
|
drainageSystem,
|
||||||
|
registeredInZkBooks,
|
||||||
|
recentlyAdapted,
|
||||||
|
parking,
|
||||||
|
garage,
|
||||||
|
gas,
|
||||||
|
antiTheftDoor,
|
||||||
|
airCondition,
|
||||||
|
phoneConnection,
|
||||||
|
cableTV,
|
||||||
|
internet,
|
||||||
|
basementAttic,
|
||||||
|
storeRoom,
|
||||||
|
videoSurveillance,
|
||||||
|
alarm,
|
||||||
|
suitableForStudents,
|
||||||
|
includingBills,
|
||||||
|
animalsAllowed,
|
||||||
|
pool,
|
||||||
|
urbanPlanPermit,
|
||||||
|
buildingPermit,
|
||||||
|
utilityConnection,
|
||||||
|
distanceToRiver,
|
||||||
|
numberOfViewsAgency
|
||||||
};
|
};
|
||||||
|
|
||||||
return data;
|
return data;
|
||||||
@@ -479,12 +688,70 @@ class OlxCrawler {
|
|||||||
case "Izdavanje":
|
case "Izdavanje":
|
||||||
return AD_TYPE.AD_TYPE_RENT.stringId;
|
return AD_TYPE.AD_TYPE_RENT.stringId;
|
||||||
case "Potražnja":
|
case "Potražnja":
|
||||||
return AD_TYPE.AD_TYPE_RENT.stringId;
|
return AD_TYPE.AD_TYPE_REQUEST.stringId;
|
||||||
default:
|
default:
|
||||||
return undefined;
|
return undefined;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
getHeatingTypeId(heatingTypeText) {
|
||||||
|
switch (heatingTypeText) {
|
||||||
|
case "struja":
|
||||||
|
return HEATING_TYPE.ELECTRICITY.id;
|
||||||
|
case "plin":
|
||||||
|
return HEATING_TYPE.GAS.id;
|
||||||
|
case "drva":
|
||||||
|
return HEATING_TYPE.WOOD.id;
|
||||||
|
case "centralno (gradsko)":
|
||||||
|
return HEATING_TYPE.CENTRAL_CITY.id;
|
||||||
|
case "centralno (kotlovnica)":
|
||||||
|
return HEATING_TYPE.CENTRAL_BOILER.id;
|
||||||
|
case "centralno (plin)":
|
||||||
|
return HEATING_TYPE.CENTRAL_GAS.id;
|
||||||
|
case "nije uvedeno":
|
||||||
|
return HEATING_TYPE.NO_HEATING.id;
|
||||||
|
case "ostalo":
|
||||||
|
return HEATING_TYPE.OTHER.id;
|
||||||
|
case "drugo":
|
||||||
|
return HEATING_TYPE.OTHER.id;
|
||||||
|
default:
|
||||||
|
console.log("grijanje = NEPOZNATO [", heatingTypeText, "]");
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
getFurnishingTypeId(furnishingTypeText) {
|
||||||
|
switch (furnishingTypeText) {
|
||||||
|
case "namješten":
|
||||||
|
return FURNISHING_TYPE.FURNISHED.id;
|
||||||
|
case "polunamješten":
|
||||||
|
return FURNISHING_TYPE.HALF_FURNISHED.id;
|
||||||
|
case "nenamješten":
|
||||||
|
return FURNISHING_TYPE.NOT_FURNISHED.id;
|
||||||
|
case "":
|
||||||
|
return FURNISHING_TYPE.FURNISHED.id;
|
||||||
|
default:
|
||||||
|
console.log("namješten = NEPOZNATO [", furnishingTypeText, "]");
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
getAccessRoadTypeId(accessRoadTypeText) {
|
||||||
|
switch (accessRoadTypeText) {
|
||||||
|
case "asfalt":
|
||||||
|
return ACCESS_ROAD_TYPE.ASPHALT.id;
|
||||||
|
case "beton":
|
||||||
|
return ACCESS_ROAD_TYPE.CONCRETE.id;
|
||||||
|
case "makadam":
|
||||||
|
return ACCESS_ROAD_TYPE.MACADAM.id;
|
||||||
|
case "ostalo":
|
||||||
|
return ACCESS_ROAD_TYPE.OTHER.id;
|
||||||
|
default:
|
||||||
|
console.log("pristup = NEPOZNATO [", accessRoadTypeText, "]");
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
parseArea(areaText) {
|
parseArea(areaText) {
|
||||||
if (!areaText) {
|
if (!areaText) {
|
||||||
return NaN;
|
return NaN;
|
||||||
@@ -505,56 +772,100 @@ class OlxCrawler {
|
|||||||
return parseFloat(formattedPriceText);
|
return parseFloat(formattedPriceText);
|
||||||
}
|
}
|
||||||
|
|
||||||
parseRenewedDate(renewedDateText) {
|
parseNumberOfRooms(numberOfRoomsText, categoryId) {
|
||||||
const currentMoment = moment.tz(DEFAULT_TIMEZONE);
|
if (categoryId === AD_CATEGORY.FLAT.id) {
|
||||||
|
switch (numberOfRoomsText) {
|
||||||
if (renewedDateText.includes("Prije mjesec dana")) {
|
case "garsonjera":
|
||||||
return currentMoment.add(-1, "month");
|
return 0;
|
||||||
}
|
case "jednosoban (1)":
|
||||||
|
return 1;
|
||||||
if (renewedDateText.includes("Jučer")) {
|
case "jednoiposoban (1.5)":
|
||||||
return currentMoment.add(-1, "day");
|
return 1.5;
|
||||||
}
|
case "dvosoban (2)":
|
||||||
|
return 2;
|
||||||
if (renewedDateText.includes("Prije sat")) {
|
case "trosoban (3)":
|
||||||
return currentMoment.add(-1, "hour");
|
return 3;
|
||||||
}
|
case "četverosoban (4)":
|
||||||
|
return 4;
|
||||||
if (renewedDateText.includes("dan")) {
|
case "petosoban i više":
|
||||||
// format for this case should be "Prije N dana" or "Prije N dan"
|
return 5;
|
||||||
const dateParts = renewedDateText.split(" ");
|
default:
|
||||||
if (dateParts[0] === "Prije") {
|
console.log(
|
||||||
const numberOfDays = parseInt(dateParts[1]);
|
"broj soba [stan] = NEPOZNATO [",
|
||||||
return currentMoment.add(-1 * numberOfDays, "days");
|
numberOfRoomsText,
|
||||||
} else {
|
", ",
|
||||||
return undefined;
|
categoryId,
|
||||||
|
"]"
|
||||||
|
);
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (renewedDateText.includes("sat")) {
|
if (
|
||||||
const dateParts = renewedDateText.split(" ");
|
categoryId === AD_CATEGORY.HOUSE.id ||
|
||||||
const parsedHours =
|
categoryId === AD_CATEGORY.COTTAGE.id ||
|
||||||
dateParts && dateParts.length > 2 ? parseInt(dateParts[1]) : undefined;
|
categoryId === AD_CATEGORY.APARTMENT.id ||
|
||||||
if (!parsedHours) {
|
categoryId === AD_CATEGORY.OFFICE.id
|
||||||
return undefined;
|
) {
|
||||||
}
|
return parseInt(numberOfRoomsText) || null;
|
||||||
return currentMoment.add(-1 * parsedHours, "hours");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const todayVariations = ["min", "sekund", "maloprije"];
|
console.log("broj soba = NEPOZNATO [", numberOfRoomsText, "]");
|
||||||
for (const todayVariation of todayVariations) {
|
return null;
|
||||||
if (renewedDateText.includes(todayVariation)) {
|
}
|
||||||
return currentMoment;
|
|
||||||
}
|
parseNumberOfFloors(numberOfFloorsText, categoryId) {
|
||||||
|
if (
|
||||||
|
categoryId === AD_CATEGORY.HOUSE.id ||
|
||||||
|
categoryId === AD_CATEGORY.COTTAGE.id
|
||||||
|
) {
|
||||||
|
return parseInt(numberOfFloorsText) || null;
|
||||||
}
|
}
|
||||||
|
|
||||||
const renewedDateMoment = moment.tz(
|
if (categoryId === AD_CATEGORY.OFFICE.id) {
|
||||||
renewedDateText,
|
if (
|
||||||
OLX_ENUMS.OLX_RENEWED_DATE_FORMAT,
|
numberOfFloorsText === "suteren" ||
|
||||||
DEFAULT_TIMEZONE
|
numberOfFloorsText === "prizemlje"
|
||||||
);
|
) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
if (numberOfFloorsText === "6+") {
|
||||||
|
return 7;
|
||||||
|
}
|
||||||
|
return parseInt(numberOfFloorsText) || null;
|
||||||
|
}
|
||||||
|
|
||||||
return renewedDateMoment.isValid() ? renewedDateMoment : undefined;
|
console.log("broj spratova = NEPOZNATO [", numberOfFloorsText, "]");
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
parseFloorNumber(floorText, categoryId) {
|
||||||
|
if (
|
||||||
|
categoryId === AD_CATEGORY.FLAT.id ||
|
||||||
|
categoryId === AD_CATEGORY.APARTMENT.id
|
||||||
|
) {
|
||||||
|
if (
|
||||||
|
floorText === "suteren" ||
|
||||||
|
floorText === "prizemlje" ||
|
||||||
|
floorText === "visoko prizemlje"
|
||||||
|
) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
return parseInt(floorText) || null;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (categoryId === AD_CATEGORY.OFFICE.id) {
|
||||||
|
if (floorText === "zaseban objekat") {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
if (floorText === "prizemlje" || floorText === "visoko prizemlje") {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
return parseInt(floorText) || null;
|
||||||
|
}
|
||||||
|
|
||||||
|
console.log("sprat = NEPOZNATO [", floorText, "]");
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
async sleep(ms) {
|
async sleep(ms) {
|
||||||
@@ -569,7 +880,7 @@ class OlxCrawler {
|
|||||||
// }
|
// }
|
||||||
|
|
||||||
//For now, we use only Postgres saver, so ...
|
//For now, we use only Postgres saver, so ...
|
||||||
return await savers[0].save(results);
|
return savers[0].save(results);
|
||||||
//so that we can use some sequelize options and information when data is inserted
|
//so that we can use some sequelize options and information when data is inserted
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,16 +2,25 @@
|
|||||||
|
|
||||||
const fetch = require("node-fetch");
|
const fetch = require("node-fetch");
|
||||||
const cheerio = require("cheerio");
|
const cheerio = require("cheerio");
|
||||||
|
const moment = require("moment-timezone");
|
||||||
|
const FormData = require("form-data");
|
||||||
|
|
||||||
const {
|
const {
|
||||||
AD_TYPE,
|
AD_TYPE,
|
||||||
AD_CATEGORY,
|
AD_CATEGORY,
|
||||||
AD_AGENCY,
|
AD_AGENCY,
|
||||||
AD_STATUS,
|
AD_STATUS,
|
||||||
CRAWLER_AD_TYPE
|
CRAWLER_AD_TYPE,
|
||||||
|
FURNISHING_TYPE,
|
||||||
|
HEATING_TYPE
|
||||||
} = require("../../common/enums");
|
} = require("../../common/enums");
|
||||||
|
|
||||||
const { PRINT_CRAWLER_DEBUG } = require("../../config/appConfig");
|
const {
|
||||||
|
PRINT_CRAWLER_DEBUG,
|
||||||
|
DEFAULT_TIMEZONE,
|
||||||
|
PROSTOR_LOGIN
|
||||||
|
} = require("../../config/appConfig");
|
||||||
|
const { PROSTOR_FORCE_CRAWL } = require("../specificConfigs/prostor");
|
||||||
|
|
||||||
const PROSTOR_ENUMS = {
|
const PROSTOR_ENUMS = {
|
||||||
PROSTOR_AD_TYPE: {
|
PROSTOR_AD_TYPE: {
|
||||||
@@ -48,44 +57,385 @@ class ProstorCrawler {
|
|||||||
this.crawlerAdTypes = crawlerAdTypes;
|
this.crawlerAdTypes = crawlerAdTypes;
|
||||||
this.crawlerAdCategories = crawlerAdCategories;
|
this.crawlerAdCategories = crawlerAdCategories;
|
||||||
this.maxResultsPerPage = maxResultsPerPage;
|
this.maxResultsPerPage = maxResultsPerPage;
|
||||||
|
this.delayBetweenPages = delayBetweenPages;
|
||||||
}
|
}
|
||||||
|
|
||||||
async crawl() {
|
async crawl() {
|
||||||
const crawlAdCategories = this.crawlerAdCategories;
|
const crawlAdCategories = this.crawlerAdCategories;
|
||||||
|
//We need session cookie to use login privileges
|
||||||
|
const prostorCookie = await this.getCookies();
|
||||||
|
//New tag to check if crawler loged in
|
||||||
|
const login = await this.loginForScraping(PROSTOR_LOGIN, prostorCookie);
|
||||||
const newRealEstates = [];
|
const newRealEstates = [];
|
||||||
|
//Crawl only if login was successful
|
||||||
if (crawlAdCategories) {
|
if (crawlAdCategories && login) {
|
||||||
|
const indexGenerators = [];
|
||||||
for (const adCategory of crawlAdCategories) {
|
for (const adCategory of crawlAdCategories) {
|
||||||
const urlAdTypePart =
|
indexGenerators.push(this.categoryIndexer(adCategory, prostorCookie));
|
||||||
PROSTOR_ENUMS.PROSTOR_AD_TYPE[this.crawlerAdTypes];
|
}
|
||||||
const urlCategoryPart = PROSTOR_ENUMS.PROSTOR_AD_CATEGORY[adCategory];
|
|
||||||
if (urlAdTypePart !== undefined && urlCategoryPart !== undefined) {
|
|
||||||
const urlPageToCrawl = `${this.baseUrl}?remove_sold=1${urlAdTypePart}${urlCategoryPart}`;
|
|
||||||
const singleCategoryResults = await this.extractRealEstates(
|
|
||||||
urlPageToCrawl
|
|
||||||
);
|
|
||||||
|
|
||||||
const resultsSubset = singleCategoryResults.slice(
|
let done = false;
|
||||||
0,
|
while (!done) {
|
||||||
this.maxResultsPerPage
|
const categoryIndexerPromises = [];
|
||||||
);
|
const generatorsToRemove = [];
|
||||||
|
for (const indexGenerator of indexGenerators) {
|
||||||
const saveResults = await this.saveCrawledResults(resultsSubset);
|
categoryIndexerPromises.push(indexGenerator.next());
|
||||||
const { newRecords } = saveResults;
|
generatorsToRemove.push(false);
|
||||||
newRealEstates.push(...newRecords);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const singlePageResults = await Promise.all(categoryIndexerPromises);
|
||||||
|
const entries = singlePageResults.entries();
|
||||||
|
|
||||||
|
for (const [index, { value: singlePageResult }] of entries) {
|
||||||
|
if (singlePageResult) {
|
||||||
|
const saveResults = await this.saveCrawledResults(singlePageResult);
|
||||||
|
const { newRecords } = saveResults;
|
||||||
|
|
||||||
|
newRealEstates.push(...newRecords);
|
||||||
|
|
||||||
|
if (
|
||||||
|
Array.isArray(newRecords) &&
|
||||||
|
newRecords.length === 0 &&
|
||||||
|
!PROSTOR_FORCE_CRAWL
|
||||||
|
) {
|
||||||
|
generatorsToRemove[index] = true;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
//Generator returned undefined, remove this generator from array
|
||||||
|
generatorsToRemove[index] = true;
|
||||||
|
// console.log("Generator ", index + 1, "has no more pages");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// console.log("Generators state : ", generatorsToRemove);
|
||||||
|
for (let i = generatorsToRemove.length - 1; i >= 0; i--) {
|
||||||
|
if (generatorsToRemove[i]) {
|
||||||
|
// console.log("\tRemove generator ", i + 1);
|
||||||
|
indexGenerators.splice(i, 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (indexGenerators.length === 0) {
|
||||||
|
done = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
await this.sleep(this.delayBetweenPages);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return newRealEstates;
|
return newRealEstates;
|
||||||
}
|
}
|
||||||
|
|
||||||
async extractRealEstates(url) {
|
async *categoryIndexer(adCategory, prostorCookie) {
|
||||||
|
const urlAdTypePart = PROSTOR_ENUMS.PROSTOR_AD_TYPE[this.crawlerAdTypes];
|
||||||
|
const urlCategoryPart = PROSTOR_ENUMS.PROSTOR_AD_CATEGORY[adCategory];
|
||||||
|
if (urlAdTypePart !== undefined && urlCategoryPart !== undefined) {
|
||||||
|
const urlPageToCrawl = `${this.baseUrl}?remove_sold=0${urlAdTypePart}${urlCategoryPart}`;
|
||||||
|
const listOfAllRealEstates = await this.extractRealEstates(
|
||||||
|
urlPageToCrawl,
|
||||||
|
prostorCookie
|
||||||
|
);
|
||||||
|
|
||||||
|
let elementToStartIndexFrom = 0;
|
||||||
|
while (true) {
|
||||||
|
const realEstatesForSinglePage = listOfAllRealEstates.slice(
|
||||||
|
elementToStartIndexFrom,
|
||||||
|
elementToStartIndexFrom + this.maxResultsPerPage
|
||||||
|
);
|
||||||
|
|
||||||
|
if (realEstatesForSinglePage.length > 0) {
|
||||||
|
elementToStartIndexFrom += realEstatesForSinglePage.length;
|
||||||
|
|
||||||
|
const singlePageResults = await this.indexSinglePage(
|
||||||
|
realEstatesForSinglePage,
|
||||||
|
prostorCookie
|
||||||
|
);
|
||||||
|
|
||||||
|
const filteredSinglePageResults = singlePageResults.filter(
|
||||||
|
singleResult => !!singleResult
|
||||||
|
);
|
||||||
|
|
||||||
|
if (
|
||||||
|
Array.isArray(filteredSinglePageResults) &&
|
||||||
|
filteredSinglePageResults.length > 0
|
||||||
|
) {
|
||||||
|
yield filteredSinglePageResults;
|
||||||
|
} else {
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async indexSinglePage(realEstatesList, prostorCookie) {
|
||||||
|
const asyncActions = [];
|
||||||
|
for (const realEstate of realEstatesList) {
|
||||||
|
asyncActions.push(this.scrapeAd(realEstate, prostorCookie));
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
return await Promise.all(asyncActions);
|
||||||
|
} catch (e) {
|
||||||
|
console.log(
|
||||||
|
"[PROSTOR] Error crawling ads : ",
|
||||||
|
e.message || "UNKNOWN ERROR"
|
||||||
|
);
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async scrapeAd(realEstate, prostorCookie) {
|
||||||
|
const { lat, lng, property_name, price, size, link, status } = realEstate;
|
||||||
|
|
||||||
|
//Status information is given already in realestate list
|
||||||
|
//For VIP Ads status ='' canot be used, but no VIP ads are crawled
|
||||||
|
//We will make "fake" vip ad for RE that have size=55
|
||||||
|
//It is weird because yesterday it said 'VIP ponuda' ???
|
||||||
|
const adStatus =
|
||||||
|
size === "55"
|
||||||
|
? ProstorCrawler.getStatusId("VIP ponuda")
|
||||||
|
: ProstorCrawler.getStatusId(status);
|
||||||
|
|
||||||
|
const url = `https://prostor.ba${link}`;
|
||||||
|
|
||||||
|
// console.log("[PROSTOR] Scraping : ", url);
|
||||||
|
try {
|
||||||
|
const adPageSource = await fetch(url, {
|
||||||
|
headers: { Cookie: prostorCookie }
|
||||||
|
});
|
||||||
|
const body = await adPageSource.text();
|
||||||
|
const $ = cheerio.load(body);
|
||||||
|
|
||||||
|
// link contains part of the URL in the format of : /prodaja/stan/stup/9556
|
||||||
|
// general form is : /actionType/realEstateType/location/realEstateID
|
||||||
|
// linkParts contains : ['', 'actionType', 'realEstateType', 'location', 'realEstateID']
|
||||||
|
|
||||||
|
const linkParts = link.split("/");
|
||||||
|
|
||||||
|
const adType = ProstorCrawler.getAdTypeId(linkParts[1]);
|
||||||
|
const realEstateType = ProstorCrawler.getAdCategoryId(linkParts[2]);
|
||||||
|
const prostorId = linkParts[4];
|
||||||
|
|
||||||
|
if (!adType || !realEstateType || !prostorId) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
const allDataSelector =
|
||||||
|
"body > div > div.container-fluid > div > div.column-right > table > tbody";
|
||||||
|
|
||||||
|
const realEstateProperties = {};
|
||||||
|
|
||||||
|
$(allDataSelector)
|
||||||
|
.find("p")
|
||||||
|
.each((i, element) => {
|
||||||
|
const propertyElement = $(element)
|
||||||
|
.text()
|
||||||
|
.split(":")
|
||||||
|
.map(text => text.trim().toLowerCase());
|
||||||
|
|
||||||
|
const propertyTitle = propertyElement[0];
|
||||||
|
realEstateProperties[propertyTitle] = propertyElement[1];
|
||||||
|
});
|
||||||
|
|
||||||
|
$(allDataSelector)
|
||||||
|
.find("div.mb-2")
|
||||||
|
.each((i, element) => {
|
||||||
|
const propertyElement = $(element)
|
||||||
|
.text()
|
||||||
|
.trim()
|
||||||
|
.toLowerCase();
|
||||||
|
|
||||||
|
realEstateProperties[propertyElement] = true;
|
||||||
|
});
|
||||||
|
|
||||||
|
if (JSON.stringify(realEstateProperties) === JSON.stringify({})) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
let numberOfRooms =
|
||||||
|
parseFloat(realEstateProperties["broj soba"]) +
|
||||||
|
parseFloat(realEstateProperties["broj spavaćih soba"]) || null,
|
||||||
|
numberOfFloors = null,
|
||||||
|
floor = null,
|
||||||
|
accessRoadType = null,
|
||||||
|
heatingType = ProstorCrawler.getHeatingTypeId(realEstateProperties),
|
||||||
|
furnishingType = null,
|
||||||
|
balcony =
|
||||||
|
realEstateProperties["balkon"] ||
|
||||||
|
realEstateProperties["terasa"] ||
|
||||||
|
realEstateProperties["lođa"] ||
|
||||||
|
null,
|
||||||
|
newBuilding = linkParts[1] === "novogradnja",
|
||||||
|
elevator = realEstateProperties["lift"] || null,
|
||||||
|
water = realEstateProperties["voda"] || null,
|
||||||
|
electricity = realEstateProperties["električna energija"] || null,
|
||||||
|
drainageSystem = realEstateProperties["kanalizacija"] || null,
|
||||||
|
registeredInZkBooks = null,
|
||||||
|
recentlyAdapted = null,
|
||||||
|
parking = realEstateProperties["parking"] || null,
|
||||||
|
garage = realEstateProperties["garaža"] || null,
|
||||||
|
gas = realEstateProperties["plin"] || null,
|
||||||
|
antiTheftDoor = realEstateProperties["blindo vrata"] || null,
|
||||||
|
airCondition = realEstateProperties["klima"] || null,
|
||||||
|
phoneConnection = realEstateProperties["telefon"] || null,
|
||||||
|
cableTV = realEstateProperties["kablovksa tv"] || null,
|
||||||
|
internet =
|
||||||
|
realEstateProperties["internet"] ||
|
||||||
|
realEstateProperties["adsl"] ||
|
||||||
|
null,
|
||||||
|
basementAttic = realEstateProperties["podrum"] || null,
|
||||||
|
storeRoom = realEstateProperties["ostava"] || null,
|
||||||
|
videoSurveillance = realEstateProperties["video nadzor"],
|
||||||
|
alarm = realEstateProperties["alarm"] || null,
|
||||||
|
suitableForStudents = null,
|
||||||
|
includingBills = null,
|
||||||
|
animalsAllowed = null,
|
||||||
|
pool = realEstateProperties["bazen"] || null,
|
||||||
|
urbanPlanPermit = null,
|
||||||
|
buildingPermit = null,
|
||||||
|
utilityConnection = null,
|
||||||
|
distanceToRiver = null,
|
||||||
|
numberOfViewsAgency = null;
|
||||||
|
|
||||||
|
// Floor versions (there are possibly more versions) :
|
||||||
|
// Sprat: 3/3
|
||||||
|
// Sprat: 1 - 2/2
|
||||||
|
// Sprat: Pr - 7/7
|
||||||
|
// Sprat: -2/0
|
||||||
|
// If there are two parts, that represents more real estates are sold
|
||||||
|
// numberOfFloors is contained in second part, after / sign
|
||||||
|
|
||||||
|
const floorsArray = realEstateProperties["sprat"].split(" - ");
|
||||||
|
let floorText = "";
|
||||||
|
if (floorsArray.length === 1) {
|
||||||
|
const floorDescription = floorsArray[0].split("/");
|
||||||
|
numberOfFloors = parseInt(floorDescription[1]) || null;
|
||||||
|
floorText = floorDescription[0];
|
||||||
|
floor = Math.round(parseFloat(floorText));
|
||||||
|
} else if (floorsArray.length === 2) {
|
||||||
|
const floorDescription = floorsArray[1].split("/");
|
||||||
|
numberOfFloors = parseInt(floorDescription[1]) || null;
|
||||||
|
floorText = floorsArray[0];
|
||||||
|
floor = Math.round(parseFloat(floorText));
|
||||||
|
} else {
|
||||||
|
// This is something strange
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isNaN(floor)) {
|
||||||
|
// It was textual representation of floor, like "Pr", "Su" or similar
|
||||||
|
switch (floorText) {
|
||||||
|
case "pr":
|
||||||
|
floor = 0;
|
||||||
|
break;
|
||||||
|
case "su":
|
||||||
|
floor = -1;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
console.log(
|
||||||
|
"[PROSTOR] Unknown textual representation of floor : ",
|
||||||
|
floorText
|
||||||
|
);
|
||||||
|
floor = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (realEstateProperties["namješteno"]) {
|
||||||
|
furnishingType = FURNISHING_TYPE.FURNISHED.id;
|
||||||
|
} else if (realEstateProperties["polunamješteno"]) {
|
||||||
|
furnishingType = FURNISHING_TYPE.HALF_FURNISHED.id;
|
||||||
|
} else {
|
||||||
|
furnishingType = FURNISHING_TYPE.NOT_FURNISHED.id;
|
||||||
|
}
|
||||||
|
|
||||||
|
const title = property_name;
|
||||||
|
const parsedPrice = parseFloat(price.replace(/\./g, "")) || null;
|
||||||
|
const parsedArea = parseFloat(size);
|
||||||
|
const gardenSize = null;
|
||||||
|
const longDescription = null;
|
||||||
|
|
||||||
|
const data = {
|
||||||
|
url,
|
||||||
|
agencyObjectId: prostorId,
|
||||||
|
originAgencyName: AD_AGENCY.PROSTOR,
|
||||||
|
realEstateType,
|
||||||
|
adType,
|
||||||
|
title,
|
||||||
|
price: parsedPrice,
|
||||||
|
area: parsedArea,
|
||||||
|
gardenSize,
|
||||||
|
shortDescription: "",
|
||||||
|
longDescription: longDescription,
|
||||||
|
streetNumber: 0,
|
||||||
|
streetName: realEstateProperties["adresa"],
|
||||||
|
locality: "",
|
||||||
|
municipality: "",
|
||||||
|
city: "",
|
||||||
|
region: "",
|
||||||
|
entity: "",
|
||||||
|
country: "",
|
||||||
|
locationLat: lat,
|
||||||
|
locationLong: lng,
|
||||||
|
adStatus,
|
||||||
|
numberOfRooms,
|
||||||
|
numberOfFloors,
|
||||||
|
floor,
|
||||||
|
accessRoadType,
|
||||||
|
heatingType,
|
||||||
|
furnishingType,
|
||||||
|
balcony,
|
||||||
|
newBuilding,
|
||||||
|
elevator,
|
||||||
|
water,
|
||||||
|
electricity,
|
||||||
|
drainageSystem,
|
||||||
|
registeredInZkBooks,
|
||||||
|
recentlyAdapted,
|
||||||
|
parking,
|
||||||
|
garage,
|
||||||
|
gas,
|
||||||
|
antiTheftDoor,
|
||||||
|
airCondition,
|
||||||
|
phoneConnection,
|
||||||
|
cableTV,
|
||||||
|
internet,
|
||||||
|
basementAttic,
|
||||||
|
storeRoom,
|
||||||
|
videoSurveillance,
|
||||||
|
alarm,
|
||||||
|
suitableForStudents,
|
||||||
|
includingBills,
|
||||||
|
animalsAllowed,
|
||||||
|
pool,
|
||||||
|
urbanPlanPermit,
|
||||||
|
buildingPermit,
|
||||||
|
utilityConnection,
|
||||||
|
distanceToRiver,
|
||||||
|
numberOfViewsAgency
|
||||||
|
};
|
||||||
|
|
||||||
|
return data;
|
||||||
|
} catch (e) {
|
||||||
|
console.error(
|
||||||
|
"[PROSTOR] Exception caught: " + e.message,
|
||||||
|
"\r\nURL:",
|
||||||
|
url
|
||||||
|
);
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async extractRealEstates(url, prostorCookie) {
|
||||||
if (PRINT_CRAWLER_DEBUG) {
|
if (PRINT_CRAWLER_DEBUG) {
|
||||||
console.log("[PROSTOR] Index page : ", url);
|
console.log("[PROSTOR] Index page : ", url);
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const res = await fetch(url);
|
const res = await fetch(url, {
|
||||||
|
headers: { Cookie: prostorCookie }
|
||||||
|
});
|
||||||
const body = await res.text();
|
const body = await res.text();
|
||||||
const $ = cheerio.load(body);
|
const $ = cheerio.load(body);
|
||||||
|
|
||||||
@@ -115,18 +465,19 @@ class ProstorCrawler {
|
|||||||
const jsonData = scriptData.substring(23, jsonEndIndex) + "]";
|
const jsonData = scriptData.substring(23, jsonEndIndex) + "]";
|
||||||
const realEstates = JSON.parse(jsonData);
|
const realEstates = JSON.parse(jsonData);
|
||||||
|
|
||||||
const transformedRealEstates = [];
|
// const transformedRealEstates = [];
|
||||||
|
//
|
||||||
for (const realEstate of realEstates) {
|
// for (const realEstate of realEstates) {
|
||||||
const transformedRealEstate = ProstorCrawler.transformRealEstateData(
|
// const transformedRealEstate = ProstorCrawler.transformRealEstateData(
|
||||||
realEstate
|
// realEstate
|
||||||
);
|
// );
|
||||||
if (transformedRealEstate) {
|
// if (transformedRealEstate) {
|
||||||
transformedRealEstates.push(transformedRealEstate);
|
// transformedRealEstates.push(transformedRealEstate);
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
|
//
|
||||||
return transformedRealEstates;
|
// return transformedRealEstates;
|
||||||
|
return realEstates;
|
||||||
} else {
|
} else {
|
||||||
throw {
|
throw {
|
||||||
message: "Something is wrong with JSON data or data is moved"
|
message: "Something is wrong with JSON data or data is moved"
|
||||||
@@ -134,73 +485,15 @@ class ProstorCrawler {
|
|||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.log(e);
|
console.log(e);
|
||||||
throw { message: "Can't find ad data JSON" };
|
throw e;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (e) {
|
|
||||||
console.error("[PROSTOR] Exception caught:", e.message);
|
|
||||||
return [];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static transformRealEstateData(realEstateData) {
|
|
||||||
try {
|
|
||||||
const { lat, lng, property_name, price, size, link } = realEstateData;
|
|
||||||
|
|
||||||
// link contains part of the URL in the format of : /prodaja/stan/stup/9556
|
|
||||||
// general form is : /actionType/realEstateType/location/realEstateID
|
|
||||||
// linkParts contains : ['', 'actionType', 'realEstateType', 'location', 'realEstateID']
|
|
||||||
|
|
||||||
const linkParts = link.split("/");
|
|
||||||
|
|
||||||
const adType = ProstorCrawler.getAdTypeId(linkParts[1]);
|
|
||||||
const realEstateType = ProstorCrawler.getAdCategoryId(linkParts[2]);
|
|
||||||
const prostorId = linkParts[4];
|
|
||||||
const url = `https://prostor.ba${link}`;
|
|
||||||
|
|
||||||
if (!adType || !realEstateType || !prostorId) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
const adStatus = AD_STATUS.STATUS_NORMAL;
|
|
||||||
const parsedPrice = parseFloat(price.replace(/\./g, "")) || null;
|
|
||||||
const parsedArea = parseFloat(size);
|
|
||||||
|
|
||||||
const data = {
|
|
||||||
url,
|
|
||||||
agencyObjectId: prostorId,
|
|
||||||
originAgencyName: AD_AGENCY.PROSTOR,
|
|
||||||
realEstateType,
|
|
||||||
adType,
|
|
||||||
title: property_name,
|
|
||||||
price: parsedPrice,
|
|
||||||
area: parsedArea,
|
|
||||||
gardenSize: null,
|
|
||||||
shortDescription: "",
|
|
||||||
longDescription: "",
|
|
||||||
streetNumber: 0,
|
|
||||||
streetName: "",
|
|
||||||
locality: "",
|
|
||||||
municipality: "",
|
|
||||||
city: "",
|
|
||||||
region: "",
|
|
||||||
entity: "",
|
|
||||||
country: "",
|
|
||||||
locationLat: lat,
|
|
||||||
locationLong: lng,
|
|
||||||
adStatus,
|
|
||||||
publishedDate: null,
|
|
||||||
renewedDate: null
|
|
||||||
};
|
|
||||||
|
|
||||||
return data;
|
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.error(
|
console.error(
|
||||||
"[PROSTOR] Exception caught: " + e.message,
|
"[PROSTOR] Exception caught:",
|
||||||
"\r\nURL:",
|
e.message || "UNKNOWN MESSAGE"
|
||||||
url
|
|
||||||
);
|
);
|
||||||
return null;
|
return [];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -231,11 +524,63 @@ class ProstorCrawler {
|
|||||||
return AD_TYPE.AD_TYPE_SALE.stringId;
|
return AD_TYPE.AD_TYPE_SALE.stringId;
|
||||||
case "najam":
|
case "najam":
|
||||||
return AD_TYPE.AD_TYPE_RENT.stringId;
|
return AD_TYPE.AD_TYPE_RENT.stringId;
|
||||||
|
case "novogradnja":
|
||||||
|
return AD_TYPE.AD_TYPE_SALE.stringId;
|
||||||
default:
|
default:
|
||||||
return undefined;
|
return undefined;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static getHeatingTypeId(realEstateProperties) {
|
||||||
|
const realEstatePropertiesKeys = Object.keys(realEstateProperties);
|
||||||
|
for (const property of realEstatePropertiesKeys) {
|
||||||
|
switch (property) {
|
||||||
|
case "centralno toplane":
|
||||||
|
return HEATING_TYPE.CENTRAL_CITY.id;
|
||||||
|
case "etažno plinsko":
|
||||||
|
return HEATING_TYPE.CENTRAL_GAS.id;
|
||||||
|
case "termo blok":
|
||||||
|
case "podno grijanje":
|
||||||
|
return HEATING_TYPE.OTHER.id;
|
||||||
|
case "etažno električno":
|
||||||
|
case "konvektori":
|
||||||
|
return HEATING_TYPE.ELECTRICITY.id;
|
||||||
|
case "plinske peći":
|
||||||
|
return HEATING_TYPE.GAS.id;
|
||||||
|
case "vlastita kotlovnica":
|
||||||
|
return HEATING_TYPE.CENTRAL_BOILER.id;
|
||||||
|
case "toplotna pumpa":
|
||||||
|
return HEATING_TYPE.HEAT_PUMP.id;
|
||||||
|
case "kamin":
|
||||||
|
return HEATING_TYPE.WOOD.id;
|
||||||
|
default:
|
||||||
|
//console.log("[PROSTOR] Nepoznato >>> [", property, "]");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static getStatusId(statusText) {
|
||||||
|
switch (statusText) {
|
||||||
|
case "":
|
||||||
|
return AD_STATUS.STATUS_NORMAL;
|
||||||
|
case "Rezervisano":
|
||||||
|
return AD_STATUS.STATUS_RESERVED;
|
||||||
|
case "Prodano":
|
||||||
|
return AD_STATUS.STATUS_SOLD;
|
||||||
|
case "Iznajmljeno":
|
||||||
|
return AD_STATUS.STATUS_RENTED;
|
||||||
|
case "VIP ponuda":
|
||||||
|
return AD_STATUS.STATUS_VIP;
|
||||||
|
default:
|
||||||
|
console.log("[PROSTOR] Unknown AD_STATUS : [", statusText, "]");
|
||||||
|
return AD_STATUS.STATUS_NORMAL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async sleep(ms) {
|
||||||
|
return new Promise(resolve => setTimeout(resolve, ms));
|
||||||
|
}
|
||||||
|
|
||||||
async saveCrawledResults(results) {
|
async saveCrawledResults(results) {
|
||||||
const savers = this.savers;
|
const savers = this.savers;
|
||||||
|
|
||||||
@@ -244,9 +589,54 @@ class ProstorCrawler {
|
|||||||
// }
|
// }
|
||||||
|
|
||||||
//For now, we use only Postgres saver, so ...
|
//For now, we use only Postgres saver, so ...
|
||||||
return await savers[0].save(results);
|
return savers[0].save(results);
|
||||||
//so that we can use some sequelize options and information when data is inserted
|
//so that we can use some sequelize options and information when data is inserted
|
||||||
}
|
}
|
||||||
|
async loginForScraping(PROSTOR_LOGIN, prostorCookie) {
|
||||||
|
let formData = new FormData();
|
||||||
|
formData.append("email", PROSTOR_LOGIN.EMAIL);
|
||||||
|
formData.append("password", PROSTOR_LOGIN.PASSWORD);
|
||||||
|
|
||||||
|
return fetch("https://prostor.ba/moj-prostor/prijava", {
|
||||||
|
method: "POST",
|
||||||
|
body: formData,
|
||||||
|
headers: { Cookie: prostorCookie }
|
||||||
|
})
|
||||||
|
.then(page => {
|
||||||
|
return page.text();
|
||||||
|
})
|
||||||
|
.then(resp => {
|
||||||
|
const $ = cheerio.load(resp);
|
||||||
|
if (
|
||||||
|
$("h1")
|
||||||
|
.text()
|
||||||
|
.indexOf("Dobrodošli") !== -1
|
||||||
|
) {
|
||||||
|
console.log("[PROSTOR]: Crawler loged in!");
|
||||||
|
return true;
|
||||||
|
} else {
|
||||||
|
console.log("[PROSTOR]: Crawler login failed - wrong credentials!");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(err => {
|
||||||
|
console.log("[PROSTOR]: Crawler login error ", err);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
async getCookies() {
|
||||||
|
const getResponse = await fetch("https://prostor.ba/moj-prostor/prijava", {
|
||||||
|
headers: { Cookie: "" }
|
||||||
|
});
|
||||||
|
const raw = getResponse.headers.raw()["set-cookie"];
|
||||||
|
const cookie = raw
|
||||||
|
.map(datastring => {
|
||||||
|
const data = datastring.split(";");
|
||||||
|
const cookieData = data[0];
|
||||||
|
return cookieData;
|
||||||
|
})
|
||||||
|
.join(";");
|
||||||
|
return cookie;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = ProstorCrawler;
|
module.exports = ProstorCrawler;
|
||||||
|
|||||||
@@ -11,7 +11,10 @@ const {
|
|||||||
AD_CATEGORY,
|
AD_CATEGORY,
|
||||||
AD_AGENCY,
|
AD_AGENCY,
|
||||||
AD_STATUS,
|
AD_STATUS,
|
||||||
CRAWLER_AD_TYPE
|
CRAWLER_AD_TYPE,
|
||||||
|
HEATING_TYPE,
|
||||||
|
ACCESS_ROAD_TYPE,
|
||||||
|
FURNISHING_TYPE
|
||||||
} = require("../../common/enums");
|
} = require("../../common/enums");
|
||||||
|
|
||||||
const {
|
const {
|
||||||
@@ -193,7 +196,7 @@ class RentalCrawler {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async scrapeAd(url) {
|
async scrapeAd(url) {
|
||||||
console.log("[RENTAL] Scraping : ", url);
|
// console.log("[RENTAL] Scraping : ", url);
|
||||||
try {
|
try {
|
||||||
const adPageSource = await fetch(url);
|
const adPageSource = await fetch(url);
|
||||||
const body = await adPageSource.text();
|
const body = await adPageSource.text();
|
||||||
@@ -219,6 +222,7 @@ class RentalCrawler {
|
|||||||
throw { message: "Can't find ad data JSON" };
|
throw { message: "Can't find ad data JSON" };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let adStatus = AD_STATUS.STATUS_NORMAL;
|
||||||
const rentalId = extractedData["re_realEstates_id"];
|
const rentalId = extractedData["re_realEstates_id"];
|
||||||
const adCategory = this.getKiviCategoryIdFromRentalId(
|
const adCategory = this.getKiviCategoryIdFromRentalId(
|
||||||
parseInt(extractedData["re_types_id"])
|
parseInt(extractedData["re_types_id"])
|
||||||
@@ -237,6 +241,143 @@ class RentalCrawler {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const descriptionIds = extractedData["re_descriptions_id"]
|
||||||
|
.split(",")
|
||||||
|
.map(stringNumber => parseInt(stringNumber));
|
||||||
|
|
||||||
|
if (!Array.isArray(descriptionIds)) {
|
||||||
|
throw {
|
||||||
|
message:
|
||||||
|
'Expected array od descriptions but "re_descriptions_id" not found !'
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
const spaceIds = extractedData["re_spaces_id"]
|
||||||
|
.split(",")
|
||||||
|
.map(stringNumber => parseInt(stringNumber));
|
||||||
|
|
||||||
|
if (!Array.isArray(spaceIds)) {
|
||||||
|
throw {
|
||||||
|
message: 'Expected array od spaces but "re_spaces_id" not found !'
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
const infrastructureIds = extractedData["re_infrastructure_id"]
|
||||||
|
.split(",")
|
||||||
|
.map(stringNumber => parseInt(stringNumber));
|
||||||
|
|
||||||
|
if (!Array.isArray(infrastructureIds)) {
|
||||||
|
throw {
|
||||||
|
message:
|
||||||
|
'Expected array od infrastructures but "re_infrastructure_id" not found !'
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
const floorNoIds = extractedData["re_floorNO_id"]
|
||||||
|
.split(",")
|
||||||
|
.map(stringNumber => parseInt(stringNumber));
|
||||||
|
|
||||||
|
if (!Array.isArray(floorNoIds)) {
|
||||||
|
throw {
|
||||||
|
message:
|
||||||
|
'Expected array od infrastructures but "re_floorNO_id" not found !'
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
const numberOfViewsAgencySelector = $(
|
||||||
|
"body > div > div.container > div.row.content-top > div.col-xs-12.col-sm-12.col-md-9 > div > div.box-viewcount"
|
||||||
|
);
|
||||||
|
|
||||||
|
// number of views is written as : "Broj pregledavanja: NNN"
|
||||||
|
const numberOfViewsAgencyFullText = numberOfViewsAgencySelector
|
||||||
|
.text()
|
||||||
|
.trim();
|
||||||
|
|
||||||
|
const numberOfViewsAgencyParts = numberOfViewsAgencyFullText.split(":");
|
||||||
|
|
||||||
|
const realEstatePropertiesFromDescriptions = this.getPropertiesFromDescriptions(
|
||||||
|
descriptionIds
|
||||||
|
);
|
||||||
|
const realEstatePropertiesFromSpaces = this.getPropertiesFromSpaces(
|
||||||
|
spaceIds
|
||||||
|
);
|
||||||
|
|
||||||
|
const realEstatePropertiesFromInfrastructure = this.getPropertiesFromInfrastructure(
|
||||||
|
infrastructureIds
|
||||||
|
);
|
||||||
|
|
||||||
|
if (extractedData["adm_realEstates_discount"] === "1") {
|
||||||
|
adStatus = AD_STATUS.STATUS_DISCOUNTED;
|
||||||
|
}
|
||||||
|
|
||||||
|
let numberOfRooms =
|
||||||
|
parseInt(extractedData["re_realEstates_roomsNO"]) +
|
||||||
|
parseInt(extractedData["re_realEstates_bedNO"]) || null,
|
||||||
|
numberOfFloors =
|
||||||
|
parseInt(extractedData["re_realEstates_floorsNO"]) ||
|
||||||
|
this.getNumberOfFloorsFromFloorId(extractedData["re_floorNO_id"]),
|
||||||
|
floor =
|
||||||
|
parseInt(extractedData["re_realEstates_floorNO"]) ||
|
||||||
|
this.getFloorNumberFromFloorId(extractedData["re_floorNO_id"]),
|
||||||
|
accessRoadType = realEstatePropertiesFromDescriptions.accessRoadType,
|
||||||
|
heatingType =
|
||||||
|
this.getHeatingTypeId(extractedData["re_heating_id"]) || null,
|
||||||
|
furnishingType = realEstatePropertiesFromDescriptions.furnishingType,
|
||||||
|
balcony =
|
||||||
|
realEstatePropertiesFromDescriptions.balcony ||
|
||||||
|
realEstatePropertiesFromSpaces.balcony,
|
||||||
|
newBuilding = extractedData["op_realEstates_newBuilding"]
|
||||||
|
? extractedData["op_realEstates_newBuilding"] === "1"
|
||||||
|
: null,
|
||||||
|
elevator = realEstatePropertiesFromDescriptions.elevator,
|
||||||
|
water =
|
||||||
|
realEstatePropertiesFromDescriptions.water ||
|
||||||
|
realEstatePropertiesFromInfrastructure.water,
|
||||||
|
electricity =
|
||||||
|
realEstatePropertiesFromDescriptions.electricity ||
|
||||||
|
realEstatePropertiesFromInfrastructure.electricity,
|
||||||
|
drainageSystem =
|
||||||
|
realEstatePropertiesFromInfrastructure.drainageSystem,
|
||||||
|
registeredInZkBooks =
|
||||||
|
extractedData["op_realEstates_ownerPermit"] === 1 || null,
|
||||||
|
recentlyAdapted = null,
|
||||||
|
parking =
|
||||||
|
realEstatePropertiesFromDescriptions.parking ||
|
||||||
|
realEstatePropertiesFromSpaces.parking,
|
||||||
|
garage = realEstatePropertiesFromSpaces.garage,
|
||||||
|
gas = realEstatePropertiesFromInfrastructure.gas,
|
||||||
|
antiTheftDoor = realEstatePropertiesFromDescriptions.antiTheftDoor,
|
||||||
|
airCondition = realEstatePropertiesFromDescriptions.airCondition,
|
||||||
|
phoneConnection =
|
||||||
|
realEstatePropertiesFromInfrastructure.phoneConnection,
|
||||||
|
cableTV = realEstatePropertiesFromInfrastructure.cableTV,
|
||||||
|
internet = realEstatePropertiesFromInfrastructure.internet,
|
||||||
|
basementAttic =
|
||||||
|
realEstatePropertiesFromSpaces.basementAttic ||
|
||||||
|
this.checkBasemAtticFromFloors(extractedData["re_floorNO_id"]),
|
||||||
|
storeRoom = realEstatePropertiesFromSpaces.storeRoom,
|
||||||
|
videoSurveillance =
|
||||||
|
realEstatePropertiesFromDescriptions.videoSurveillance ||
|
||||||
|
realEstatePropertiesFromInfrastructure.videoSurveillance,
|
||||||
|
alarm = realEstatePropertiesFromDescriptions.alarm,
|
||||||
|
suitableForStudents = null,
|
||||||
|
includingBills =
|
||||||
|
extractedData["op_realEstates_utilitiesIncluded"] === "1" || null,
|
||||||
|
animalsAllowed = null,
|
||||||
|
pool = realEstatePropertiesFromDescriptions.pool,
|
||||||
|
urbanPlanPermit =
|
||||||
|
extractedData["op_realEstates_locationPermit"] === "1" ||
|
||||||
|
realEstatePropertiesFromDescriptions.urbanPlanPermit,
|
||||||
|
buildingPermit =
|
||||||
|
extractedData["op_realEstates_buildingPermit"] === "1" || null,
|
||||||
|
utilityConnection =
|
||||||
|
realEstatePropertiesFromDescriptions.utilityConnection,
|
||||||
|
distanceToRiver = null,
|
||||||
|
numberOfViewsAgency =
|
||||||
|
numberOfViewsAgencyParts.length > 1
|
||||||
|
? parseInt(numberOfViewsAgencyParts[1])
|
||||||
|
: null;
|
||||||
|
|
||||||
const title = extractedData["re_realEstates_portalName"];
|
const title = extractedData["re_realEstates_portalName"];
|
||||||
const extractedPrice = parseFloat(
|
const extractedPrice = parseFloat(
|
||||||
extractedData["re_realEstates_price"]
|
extractedData["re_realEstates_price"]
|
||||||
@@ -258,9 +399,7 @@ class RentalCrawler {
|
|||||||
);
|
);
|
||||||
if (!publishedDateMoment.isValid()) {
|
if (!publishedDateMoment.isValid()) {
|
||||||
throw {
|
throw {
|
||||||
message: `Invalid published date : ${
|
message: `Invalid published date : ${extractedData["re_realEstates_inserted"]}`
|
||||||
extractedData["re_realEstates_inserted"]
|
|
||||||
}`
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -271,14 +410,10 @@ class RentalCrawler {
|
|||||||
);
|
);
|
||||||
if (!renewedDateMoment.isValid()) {
|
if (!renewedDateMoment.isValid()) {
|
||||||
throw {
|
throw {
|
||||||
message: `Invalid renewed date : ${
|
message: `Invalid renewed date : ${extractedData["re_realEstates_edited"]}`
|
||||||
extractedData["re_realEstates_edited"]
|
|
||||||
}`
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
const adStatus = AD_STATUS.STATUS_NORMAL;
|
|
||||||
|
|
||||||
const data = {
|
const data = {
|
||||||
url,
|
url,
|
||||||
agencyObjectId: rentalId,
|
agencyObjectId: rentalId,
|
||||||
@@ -303,7 +438,42 @@ class RentalCrawler {
|
|||||||
locationLong,
|
locationLong,
|
||||||
adStatus,
|
adStatus,
|
||||||
publishedDate: publishedDateMoment.toISOString(),
|
publishedDate: publishedDateMoment.toISOString(),
|
||||||
renewedDate: renewedDateMoment.toISOString()
|
renewedDate: renewedDateMoment.toISOString(),
|
||||||
|
numberOfRooms,
|
||||||
|
numberOfFloors,
|
||||||
|
floor,
|
||||||
|
accessRoadType,
|
||||||
|
heatingType,
|
||||||
|
furnishingType,
|
||||||
|
balcony,
|
||||||
|
newBuilding,
|
||||||
|
elevator,
|
||||||
|
water,
|
||||||
|
electricity,
|
||||||
|
drainageSystem,
|
||||||
|
registeredInZkBooks,
|
||||||
|
recentlyAdapted,
|
||||||
|
parking,
|
||||||
|
garage,
|
||||||
|
gas,
|
||||||
|
antiTheftDoor,
|
||||||
|
airCondition,
|
||||||
|
phoneConnection,
|
||||||
|
cableTV,
|
||||||
|
internet,
|
||||||
|
basementAttic,
|
||||||
|
storeRoom,
|
||||||
|
videoSurveillance,
|
||||||
|
alarm,
|
||||||
|
suitableForStudents,
|
||||||
|
includingBills,
|
||||||
|
animalsAllowed,
|
||||||
|
pool,
|
||||||
|
urbanPlanPermit,
|
||||||
|
buildingPermit,
|
||||||
|
utilityConnection,
|
||||||
|
distanceToRiver,
|
||||||
|
numberOfViewsAgency
|
||||||
};
|
};
|
||||||
|
|
||||||
return data;
|
return data;
|
||||||
@@ -350,6 +520,304 @@ class RentalCrawler {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
getPropertiesFromDescriptions(descriptionIds) {
|
||||||
|
const result = {
|
||||||
|
accessRoadType: null,
|
||||||
|
furnishingType: null,
|
||||||
|
balcony: null,
|
||||||
|
elevator: null,
|
||||||
|
parking: null,
|
||||||
|
antiTheftDoor: null,
|
||||||
|
airCondition: null,
|
||||||
|
videoSurveillance: null,
|
||||||
|
alarm: null,
|
||||||
|
pool: null,
|
||||||
|
urbanPlanPermit: null,
|
||||||
|
utilityConnection: null,
|
||||||
|
water: null,
|
||||||
|
electricity: null
|
||||||
|
};
|
||||||
|
|
||||||
|
for (const descriptionId of descriptionIds) {
|
||||||
|
switch (descriptionId) {
|
||||||
|
case 16:
|
||||||
|
result.furnishingType = FURNISHING_TYPE.NOT_FURNISHED.id;
|
||||||
|
break;
|
||||||
|
case 17:
|
||||||
|
result.furnishingType = FURNISHING_TYPE.HALF_FURNISHED.id;
|
||||||
|
break;
|
||||||
|
case 1:
|
||||||
|
case 28:
|
||||||
|
result.furnishingType = FURNISHING_TYPE.FURNISHED.id;
|
||||||
|
break;
|
||||||
|
case 14:
|
||||||
|
result.elevator = true;
|
||||||
|
break;
|
||||||
|
case 39:
|
||||||
|
result.electricity = true;
|
||||||
|
break;
|
||||||
|
case 40:
|
||||||
|
result.water = true;
|
||||||
|
break;
|
||||||
|
case 41:
|
||||||
|
case 58:
|
||||||
|
result.accessRoadType = ACCESS_ROAD_TYPE.ASPHALT.id;
|
||||||
|
break;
|
||||||
|
case 26:
|
||||||
|
result.balcony = true;
|
||||||
|
break;
|
||||||
|
case 62:
|
||||||
|
result.parking = true;
|
||||||
|
break;
|
||||||
|
case 3:
|
||||||
|
result.antiTheftDoor = true;
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
case 21:
|
||||||
|
result.airCondition = true;
|
||||||
|
break;
|
||||||
|
case 4:
|
||||||
|
result.alarm = true;
|
||||||
|
break;
|
||||||
|
case 55:
|
||||||
|
result.videoSurveillance = true;
|
||||||
|
break;
|
||||||
|
case 9:
|
||||||
|
result.pool = true;
|
||||||
|
break;
|
||||||
|
case 60:
|
||||||
|
result.urbanPlanPermit = true;
|
||||||
|
break;
|
||||||
|
case 38:
|
||||||
|
result.utilityConnection = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
getPropertiesFromSpaces(spaceIds) {
|
||||||
|
const result = {
|
||||||
|
balcony: null,
|
||||||
|
parking: null,
|
||||||
|
garage: null,
|
||||||
|
basementAttic: null,
|
||||||
|
storeRoom: null
|
||||||
|
};
|
||||||
|
|
||||||
|
for (const spaceId of spaceIds) {
|
||||||
|
switch (spaceId) {
|
||||||
|
case 36:
|
||||||
|
case 12:
|
||||||
|
result.parking = true;
|
||||||
|
break;
|
||||||
|
case 1:
|
||||||
|
case 2:
|
||||||
|
case 3:
|
||||||
|
result.balcony = true;
|
||||||
|
break;
|
||||||
|
case 4:
|
||||||
|
case 30:
|
||||||
|
result.garage = true;
|
||||||
|
break;
|
||||||
|
case 9:
|
||||||
|
case 10:
|
||||||
|
result.storeRoom = true;
|
||||||
|
break;
|
||||||
|
case 18:
|
||||||
|
case 34:
|
||||||
|
case 37:
|
||||||
|
case 27:
|
||||||
|
result.basementAttic = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
getHeatingTypeId(heatingRentalId) {
|
||||||
|
// heatingRentalId can have multiple values, like: "1, 2, 3", parseInt will take first integer value
|
||||||
|
const heatingId = parseInt(heatingRentalId);
|
||||||
|
switch (heatingId) {
|
||||||
|
case 27:
|
||||||
|
case 16:
|
||||||
|
return HEATING_TYPE.GAS.id;
|
||||||
|
case 4:
|
||||||
|
return HEATING_TYPE.CENTRAL_GAS.id;
|
||||||
|
case 3:
|
||||||
|
case 23:
|
||||||
|
case 6:
|
||||||
|
case 7:
|
||||||
|
case 8:
|
||||||
|
case 9:
|
||||||
|
case 10:
|
||||||
|
return HEATING_TYPE.CENTRAL_BOILER.id;
|
||||||
|
case 2:
|
||||||
|
case 13:
|
||||||
|
case 30:
|
||||||
|
case 17:
|
||||||
|
case 29:
|
||||||
|
case 31:
|
||||||
|
return HEATING_TYPE.ELECTRICITY.id;
|
||||||
|
case 24:
|
||||||
|
case 25:
|
||||||
|
case 12:
|
||||||
|
return HEATING_TYPE.CENTRAL_CITY.id;
|
||||||
|
case 26:
|
||||||
|
case 21:
|
||||||
|
case 20:
|
||||||
|
return HEATING_TYPE.WOOD.id;
|
||||||
|
case 28:
|
||||||
|
case 19:
|
||||||
|
return HEATING_TYPE.HEAT_PUMP.id;
|
||||||
|
case 14:
|
||||||
|
case 32:
|
||||||
|
return HEATING_TYPE.OTHER.id;
|
||||||
|
default:
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
getPropertiesFromInfrastructure(infrastructureIds) {
|
||||||
|
const result = {
|
||||||
|
electricity: null,
|
||||||
|
water: null,
|
||||||
|
gas: null,
|
||||||
|
drainageSystem: null,
|
||||||
|
phoneConnection: null,
|
||||||
|
internet: null,
|
||||||
|
videoSurveillance: null,
|
||||||
|
cableTV: null
|
||||||
|
};
|
||||||
|
|
||||||
|
for (const infrastructureId of infrastructureIds) {
|
||||||
|
switch (infrastructureId) {
|
||||||
|
case 1:
|
||||||
|
result.electricity = true;
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
result.water = true;
|
||||||
|
break;
|
||||||
|
case 4:
|
||||||
|
result.gas = true;
|
||||||
|
break;
|
||||||
|
case 5:
|
||||||
|
result.drainageSystem = true;
|
||||||
|
break;
|
||||||
|
case 7:
|
||||||
|
case 8:
|
||||||
|
result.phoneConnection = true;
|
||||||
|
break;
|
||||||
|
case 10:
|
||||||
|
result.internet = true;
|
||||||
|
break;
|
||||||
|
case 11:
|
||||||
|
result.cableTV = true;
|
||||||
|
break;
|
||||||
|
case 16:
|
||||||
|
case 17:
|
||||||
|
result.videoSurveillance = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
getFloorNumberFromFloorId(floorsIdText) {
|
||||||
|
// floorIdText can be array of numbers, separated by comma or number
|
||||||
|
// just extracting floor number from first element
|
||||||
|
|
||||||
|
const floorsId = floorsIdText.split(",");
|
||||||
|
if (floorsId.length === 0) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
const firstFloorId = parseInt(floorsId[0]);
|
||||||
|
|
||||||
|
// 1 pod
|
||||||
|
// 2 sut
|
||||||
|
// 3 raz
|
||||||
|
// 4 pri
|
||||||
|
// 5 vpri
|
||||||
|
// 6 prv
|
||||||
|
// 7 dru
|
||||||
|
// 8 tre
|
||||||
|
// 9 čet
|
||||||
|
// 10 man
|
||||||
|
// 11
|
||||||
|
// 12 pot
|
||||||
|
// 13 vpot
|
||||||
|
// 14 tav
|
||||||
|
// 15 pet
|
||||||
|
const floorNumber = [
|
||||||
|
-1,
|
||||||
|
-1,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
4,
|
||||||
|
null,
|
||||||
|
null,
|
||||||
|
null,
|
||||||
|
null,
|
||||||
|
null,
|
||||||
|
5
|
||||||
|
];
|
||||||
|
|
||||||
|
return floorNumber[firstFloorId - 1] || null;
|
||||||
|
}
|
||||||
|
|
||||||
|
getNumberOfFloorsFromFloorId(floorsIdText) {
|
||||||
|
// floorIdText can be array of numbers, separated by comma or number
|
||||||
|
|
||||||
|
const floorIds = floorsIdText.split(",");
|
||||||
|
if (floorIds.length === 0) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
let noOfFloors = floorIds.length;
|
||||||
|
// Floors of 'suteren', 'podrum', 'tavan' and 'potkrovlje' are not counted
|
||||||
|
floorIds.forEach(id => {
|
||||||
|
if (
|
||||||
|
parseInt(id) === 1 ||
|
||||||
|
parseInt(id) === 2 ||
|
||||||
|
parseInt(id) === 12 ||
|
||||||
|
parseInt(id) === 14
|
||||||
|
) {
|
||||||
|
noOfFloors--;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return noOfFloors;
|
||||||
|
}
|
||||||
|
|
||||||
|
checkBasemAtticFromFloors(floorsIdText) {
|
||||||
|
// floorIdText can be array of numbers, separated by comma or number
|
||||||
|
const floorIds = floorsIdText.split(",");
|
||||||
|
|
||||||
|
let check = false;
|
||||||
|
|
||||||
|
if (floorIds.length === 0) {
|
||||||
|
check = false;
|
||||||
|
}
|
||||||
|
//If floors 'suteren', 'podrum', 'tavan' and 'potkrovlje' exists then tag for basement-attic is true
|
||||||
|
floorIds.forEach(id => {
|
||||||
|
if (
|
||||||
|
parseInt(id) === 1 ||
|
||||||
|
parseInt(id) === 2 ||
|
||||||
|
parseInt(id) === 12 ||
|
||||||
|
parseInt(id) === 14
|
||||||
|
) {
|
||||||
|
check = true;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return check;
|
||||||
|
}
|
||||||
|
|
||||||
async sleep(ms) {
|
async sleep(ms) {
|
||||||
return new Promise(resolve => setTimeout(resolve, ms));
|
return new Promise(resolve => setTimeout(resolve, ms));
|
||||||
}
|
}
|
||||||
@@ -362,7 +830,7 @@ class RentalCrawler {
|
|||||||
// }
|
// }
|
||||||
|
|
||||||
//For now, we use only Postgres saver, so ...
|
//For now, we use only Postgres saver, so ...
|
||||||
return await savers[0].save(results);
|
return savers[0].save(results);
|
||||||
//so that we can use some sequelize options and information when data is inserted
|
//so that we can use some sequelize options and information when data is inserted
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
const db = require("../../models/index");
|
const db = require("../../models/index");
|
||||||
const sequelize = require("sequelize");
|
const sequelize = require("sequelize");
|
||||||
const Op = sequelize.Op;
|
const Op = sequelize.Op;
|
||||||
|
|
||||||
const bulkUpsertRealEstates = async realEstateData => {
|
const bulkUpsertRealEstates = async realEstateData => {
|
||||||
try {
|
try {
|
||||||
const fieldsToUpdateIfDuplicate = [
|
const fieldsToUpdateIfDuplicate = [
|
||||||
@@ -26,7 +25,42 @@ const bulkUpsertRealEstates = async realEstateData => {
|
|||||||
"gardenSize",
|
"gardenSize",
|
||||||
"adStatus",
|
"adStatus",
|
||||||
"updatedAt",
|
"updatedAt",
|
||||||
"renewedDate"
|
"renewedDate",
|
||||||
|
"numberOfRooms",
|
||||||
|
"numberOfFloors",
|
||||||
|
"floor",
|
||||||
|
"accessRoadType",
|
||||||
|
"heatingType",
|
||||||
|
"furnishingType",
|
||||||
|
"balcony",
|
||||||
|
"newBuilding",
|
||||||
|
"elevator",
|
||||||
|
"water",
|
||||||
|
"electricity",
|
||||||
|
"drainageSystem",
|
||||||
|
"registeredInZkBooks",
|
||||||
|
"recentlyAdapted",
|
||||||
|
"parking",
|
||||||
|
"garage",
|
||||||
|
"gas",
|
||||||
|
"antiTheftDoor",
|
||||||
|
"airCondition",
|
||||||
|
"phoneConnection",
|
||||||
|
"cableTV",
|
||||||
|
"internet",
|
||||||
|
"basementAttic",
|
||||||
|
"storeRoom",
|
||||||
|
"videoSurveillance",
|
||||||
|
"alarm",
|
||||||
|
"suitableForStudents",
|
||||||
|
"includingBills",
|
||||||
|
"animalsAllowed",
|
||||||
|
"pool",
|
||||||
|
"urbanPlanPermit",
|
||||||
|
"buildingPermit",
|
||||||
|
"utilityConnection",
|
||||||
|
"distanceToRiver",
|
||||||
|
"numberOfViewsAgency"
|
||||||
];
|
];
|
||||||
const order = [["updatedAt", "desc"]];
|
const order = [["updatedAt", "desc"]];
|
||||||
|
|
||||||
@@ -52,7 +86,20 @@ const findRealEstatesForSearchRequest = async (searchRequest, maxResults) => {
|
|||||||
sizeMax,
|
sizeMax,
|
||||||
adType,
|
adType,
|
||||||
realEstateType,
|
realEstateType,
|
||||||
areaToSearch
|
areaToSearch,
|
||||||
|
gardenSizeMin,
|
||||||
|
gardenSizeMax,
|
||||||
|
numberOfRoomsMin,
|
||||||
|
numberOfRoomsMax,
|
||||||
|
numberOfFloorsMin,
|
||||||
|
numberOfFloorsMax,
|
||||||
|
floorMin,
|
||||||
|
floorMax,
|
||||||
|
includeIncompleteAds,
|
||||||
|
balcony,
|
||||||
|
elevator,
|
||||||
|
newBuilding,
|
||||||
|
accessRoadType
|
||||||
} = searchRequest;
|
} = searchRequest;
|
||||||
|
|
||||||
const longitudeColumn = sequelize.col("locationLong");
|
const longitudeColumn = sequelize.col("locationLong");
|
||||||
@@ -81,12 +128,20 @@ const findRealEstatesForSearchRequest = async (searchRequest, maxResults) => {
|
|||||||
|
|
||||||
const geoSearchQueryPart = sequelize.where(contains, true);
|
const geoSearchQueryPart = sequelize.where(contains, true);
|
||||||
|
|
||||||
|
//General queries contain only attributes that are defined for every searchreq
|
||||||
|
|
||||||
|
//Query for case of complete ads
|
||||||
const query = {
|
const query = {
|
||||||
adType,
|
adType,
|
||||||
realEstateType,
|
realEstateType,
|
||||||
price: {
|
price: {
|
||||||
[Op.lte]: priceMax,
|
[Op.or]: {
|
||||||
[Op.gte]: priceMin
|
[Op.and]: {
|
||||||
|
[Op.lte]: priceMax,
|
||||||
|
[Op.gte]: priceMin
|
||||||
|
},
|
||||||
|
[Op.is]: null
|
||||||
|
}
|
||||||
},
|
},
|
||||||
area: {
|
area: {
|
||||||
[Op.lte]: sizeMax,
|
[Op.lte]: sizeMax,
|
||||||
@@ -95,10 +150,148 @@ const findRealEstatesForSearchRequest = async (searchRequest, maxResults) => {
|
|||||||
[Op.and]: geoSearchQueryPart
|
[Op.and]: geoSearchQueryPart
|
||||||
};
|
};
|
||||||
|
|
||||||
|
//Query for case of incomplete ads
|
||||||
|
const queryIncludeIncomplete = {
|
||||||
|
adType,
|
||||||
|
realEstateType,
|
||||||
|
price: {
|
||||||
|
[Op.or]: {
|
||||||
|
[Op.and]: {
|
||||||
|
[Op.lte]: priceMax,
|
||||||
|
[Op.gte]: priceMin
|
||||||
|
},
|
||||||
|
[Op.is]: null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
area: {
|
||||||
|
[Op.or]: {
|
||||||
|
[Op.and]: {
|
||||||
|
[Op.lte]: sizeMax,
|
||||||
|
[Op.gte]: sizeMin
|
||||||
|
},
|
||||||
|
[Op.is]: null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
[Op.and]: geoSearchQueryPart
|
||||||
|
};
|
||||||
|
|
||||||
|
//Every other attribute is checked separately and included in query only if it is defined
|
||||||
|
if (gardenSizeMax && gardenSizeMin) {
|
||||||
|
query.gardenSize = {
|
||||||
|
[Op.lte]: gardenSizeMax,
|
||||||
|
[Op.gte]: gardenSizeMin
|
||||||
|
};
|
||||||
|
queryIncludeIncomplete.gardenSize = {
|
||||||
|
[Op.or]: {
|
||||||
|
[Op.and]: {
|
||||||
|
[Op.lte]: gardenSizeMax,
|
||||||
|
[Op.gte]: gardenSizeMin
|
||||||
|
},
|
||||||
|
[Op.is]: null
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
if (numberOfRoomsMin && numberOfRoomsMax) {
|
||||||
|
query.numberOfRooms = {
|
||||||
|
[Op.lte]: numberOfRoomsMax,
|
||||||
|
[Op.gte]: numberOfRoomsMin
|
||||||
|
};
|
||||||
|
queryIncludeIncomplete.numberOfRooms = {
|
||||||
|
[Op.or]: {
|
||||||
|
[Op.and]: {
|
||||||
|
[Op.lte]: numberOfRoomsMax,
|
||||||
|
[Op.gte]: numberOfRoomsMin
|
||||||
|
},
|
||||||
|
[Op.is]: null
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
if (numberOfFloorsMin && numberOfFloorsMax) {
|
||||||
|
query.numberOfFloors = {
|
||||||
|
[Op.lte]: numberOfFloorsMax,
|
||||||
|
[Op.gte]: numberOfFloorsMin
|
||||||
|
};
|
||||||
|
queryIncludeIncomplete.numberOfFloors = {
|
||||||
|
[Op.or]: {
|
||||||
|
[Op.and]: {
|
||||||
|
[Op.lte]: numberOfFloorsMax,
|
||||||
|
[Op.gte]: numberOfFloorsMin
|
||||||
|
},
|
||||||
|
[Op.is]: null
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
if (floorMin && floorMax) {
|
||||||
|
query.floor = {
|
||||||
|
[Op.lte]: floorMax,
|
||||||
|
[Op.gte]: floorMin
|
||||||
|
};
|
||||||
|
queryIncludeIncomplete.floor = {
|
||||||
|
[Op.or]: {
|
||||||
|
[Op.and]: {
|
||||||
|
[Op.lte]: floorMax,
|
||||||
|
[Op.gte]: floorMin
|
||||||
|
},
|
||||||
|
[Op.is]: null
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
if (balcony) {
|
||||||
|
query.balcony = {
|
||||||
|
[Op.eq]: balcony
|
||||||
|
};
|
||||||
|
queryIncludeIncomplete.balcony = {
|
||||||
|
[Op.or]: {
|
||||||
|
[Op.eq]: balcony,
|
||||||
|
[Op.is]: null
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
if (newBuilding) {
|
||||||
|
query.newBuilding = {
|
||||||
|
[Op.eq]: newBuilding
|
||||||
|
};
|
||||||
|
queryIncludeIncomplete.newBuilding = {
|
||||||
|
[Op.or]: {
|
||||||
|
[Op.eq]: newBuilding,
|
||||||
|
[Op.is]: null
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
if (elevator) {
|
||||||
|
query.elevator = {
|
||||||
|
[Op.eq]: elevator
|
||||||
|
};
|
||||||
|
queryIncludeIncomplete.elevator = {
|
||||||
|
[Op.or]: {
|
||||||
|
[Op.eq]: elevator,
|
||||||
|
[Op.is]: null
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
if (accessRoadType !== "ANY") {
|
||||||
|
query.accessRoadType = {
|
||||||
|
[Op.eq]: accessRoadType
|
||||||
|
};
|
||||||
|
queryIncludeIncomplete.accessRoadType = {
|
||||||
|
[Op.or]: {
|
||||||
|
[Op.eq]: accessRoadType,
|
||||||
|
[Op.is]: null
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
const order = [["updatedAt", "desc"]];
|
const order = [["updatedAt", "desc"]];
|
||||||
|
|
||||||
return await db.RealEstate.findAll({
|
return db.RealEstate.findAll({
|
||||||
where: query,
|
where: includeIncompleteAds ? queryIncludeIncomplete : query,
|
||||||
limit: maxResults,
|
limit: maxResults,
|
||||||
order
|
order
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -2,11 +2,13 @@
|
|||||||
const db = require("../../models/index");
|
const db = require("../../models/index");
|
||||||
const sequelize = require("sequelize");
|
const sequelize = require("sequelize");
|
||||||
const Op = sequelize.Op;
|
const Op = sequelize.Op;
|
||||||
|
const { AD_CATEGORY } = require("../../common/enums");
|
||||||
|
|
||||||
const getSearchRequest = async searchRequestId => {
|
const getSearchRequest = async searchRequestId => {
|
||||||
try {
|
try {
|
||||||
return await db.SearchRequest.findByPk(searchRequestId);
|
return await db.SearchRequest.findByPk(searchRequestId);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
|
console.log("searchrequest.js", error);
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@@ -22,7 +24,15 @@ const findSearchRequestsForRealEstate = async realEstate => {
|
|||||||
adType,
|
adType,
|
||||||
realEstateType,
|
realEstateType,
|
||||||
locationLat,
|
locationLat,
|
||||||
locationLong
|
locationLong,
|
||||||
|
accessRoadType,
|
||||||
|
balcony,
|
||||||
|
newBuilding,
|
||||||
|
elevator,
|
||||||
|
gardenSize,
|
||||||
|
numberOfRooms,
|
||||||
|
numberOfFloors,
|
||||||
|
floor
|
||||||
} = realEstate;
|
} = realEstate;
|
||||||
|
|
||||||
if (!locationLat || !locationLong) {
|
if (!locationLat || !locationLong) {
|
||||||
@@ -39,12 +49,20 @@ const findSearchRequestsForRealEstate = async realEstate => {
|
|||||||
|
|
||||||
const geoSearchQueryPart = sequelize.where(contains, true);
|
const geoSearchQueryPart = sequelize.where(contains, true);
|
||||||
|
|
||||||
|
//General query contains only attributes that are defined for every RealEstate - not null
|
||||||
const query = {
|
const query = {
|
||||||
adType,
|
adType,
|
||||||
realEstateType,
|
realEstateType,
|
||||||
subscribed: true,
|
subscribed: true,
|
||||||
[Op.and]: geoSearchQueryPart
|
[Op.and]: geoSearchQueryPart
|
||||||
};
|
};
|
||||||
|
//Needed for defining which attribute should exist or not
|
||||||
|
const realEstateTypeObject = AD_CATEGORY[realEstateType];
|
||||||
|
//Needed to decide on including incomplete RealEstates data
|
||||||
|
let checkForIncompleteWanted = false;
|
||||||
|
|
||||||
|
//Attributes are checked separately and included in query only if defined
|
||||||
|
//Price and area should be defined for every property
|
||||||
|
|
||||||
if (price) {
|
if (price) {
|
||||||
query.priceMin = {
|
query.priceMin = {
|
||||||
@@ -62,8 +80,96 @@ const findSearchRequestsForRealEstate = async realEstate => {
|
|||||||
query.sizeMax = {
|
query.sizeMax = {
|
||||||
[Op.gte]: area
|
[Op.gte]: area
|
||||||
};
|
};
|
||||||
|
} else {
|
||||||
|
checkForIncompleteWanted = true;
|
||||||
|
}
|
||||||
|
//Other attributes can be defined or not depending on RealEstate type
|
||||||
|
if (gardenSize) {
|
||||||
|
query.gardenSizeMin = {
|
||||||
|
[Op.lte]: gardenSize
|
||||||
|
};
|
||||||
|
query.gardenSizeMax = {
|
||||||
|
[Op.gte]: gardenSize
|
||||||
|
};
|
||||||
|
} else if (realEstateTypeObject.hasGardenSize) {
|
||||||
|
checkForIncompleteWanted = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (numberOfRooms) {
|
||||||
|
query.numberOfRoomsMin = {
|
||||||
|
[Op.lte]: numberOfRooms
|
||||||
|
};
|
||||||
|
query.numberOfRoomsMax = {
|
||||||
|
[Op.gte]: numberOfRooms
|
||||||
|
};
|
||||||
|
} else if (realEstateTypeObject.hasNumberOfRoom) {
|
||||||
|
checkForIncompleteWanted = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (numberOfFloors) {
|
||||||
|
query.numberOfFloorsMin = {
|
||||||
|
[Op.lte]: numberOfFloors
|
||||||
|
};
|
||||||
|
query.numberOfFloorsMax = {
|
||||||
|
[Op.gte]: numberOfFloors
|
||||||
|
};
|
||||||
|
} else if (realEstateTypeObject.hasNumberOfFloors) {
|
||||||
|
checkForIncompleteWanted = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (floor) {
|
||||||
|
query.floorMin = {
|
||||||
|
[Op.lte]: floor
|
||||||
|
};
|
||||||
|
query.floorMax = {
|
||||||
|
[Op.gte]: floor
|
||||||
|
};
|
||||||
|
} else if (realEstateTypeObject.hasFloorProp) {
|
||||||
|
checkForIncompleteWanted = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (accessRoadType) {
|
||||||
|
query.accessRoadType = {
|
||||||
|
[Op.or]: {
|
||||||
|
[Op.eq]: "ANY",
|
||||||
|
[Op.eq]: accessRoadType
|
||||||
|
}
|
||||||
|
};
|
||||||
|
} else if (realEstateTypeObject.hasAccesRoadType) {
|
||||||
|
checkForIncompleteWanted = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (balcony) {
|
||||||
|
query.balcony = {
|
||||||
|
[Op.eq]: balcony
|
||||||
|
};
|
||||||
|
} else if (realEstateTypeObject.hasBalconyProp) {
|
||||||
|
checkForIncompleteWanted = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (newBuilding) {
|
||||||
|
query.newBuilding = {
|
||||||
|
[Op.eq]: newBuilding
|
||||||
|
};
|
||||||
|
} else if (realEstateTypeObject.hasNewBuildingProp) {
|
||||||
|
checkForIncompleteWanted = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (elevator) {
|
||||||
|
query.elevator = {
|
||||||
|
[Op.eq]: elevator
|
||||||
|
};
|
||||||
|
} else if (realEstateTypeObject.hasElevatorProp) {
|
||||||
|
checkForIncompleteWanted = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
//If one of the attributes that exists for property type is null
|
||||||
|
//we include in query to check if incomplete real estates are accepted
|
||||||
|
if (checkForIncompleteWanted) {
|
||||||
|
query.includeIncompleteAds = {
|
||||||
|
[Op.eq]: true
|
||||||
|
};
|
||||||
|
}
|
||||||
return await db.SearchRequest.findAll({ where: query });
|
return await db.SearchRequest.findAll({ where: query });
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -24,6 +24,23 @@ const findRealEstatesForSearchRequest = async searchRequestId => {
|
|||||||
return matchingRealEstates;
|
return matchingRealEstates;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const findNotNotifiedMatches = async () => {
|
||||||
|
const query = {
|
||||||
|
notified: false
|
||||||
|
};
|
||||||
|
|
||||||
|
const searchRequestsModel = { model: db.SearchRequest, as: "searchRequests" };
|
||||||
|
const realEstateModel = { model: db.RealEstate, as: "realEstates" };
|
||||||
|
const include = [searchRequestsModel, realEstateModel];
|
||||||
|
|
||||||
|
const matchingRecords = await db.SearchRequestMatch.findAll({
|
||||||
|
where: query,
|
||||||
|
include
|
||||||
|
});
|
||||||
|
|
||||||
|
return matchingRecords;
|
||||||
|
};
|
||||||
|
|
||||||
const addMatches = async matchingRecords => {
|
const addMatches = async matchingRecords => {
|
||||||
return await db.SearchRequestMatch.bulkCreate(matchingRecords, {
|
return await db.SearchRequestMatch.bulkCreate(matchingRecords, {
|
||||||
ignoreDuplicates: true
|
ignoreDuplicates: true
|
||||||
@@ -32,5 +49,6 @@ const addMatches = async matchingRecords => {
|
|||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
findRealEstatesForSearchRequest,
|
findRealEstatesForSearchRequest,
|
||||||
addMatches
|
addMatches,
|
||||||
|
findNotNotifiedMatches
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -20,19 +20,37 @@ const generateRealEstateLinks = realEstates => {
|
|||||||
return realEstateLinks;
|
return realEstateLinks;
|
||||||
};
|
};
|
||||||
|
|
||||||
const generateNotificationEmail = (realEstates, searchRequestId) => {
|
const generateNotificationEmail = (
|
||||||
|
realEstates,
|
||||||
|
searchRequestId,
|
||||||
|
noAllRealEstates,
|
||||||
|
dailyNotification = false
|
||||||
|
) => {
|
||||||
const truncateList = realEstates.length > MAX_REAL_ESTATES_IN_EMAIL;
|
const truncateList = realEstates.length > MAX_REAL_ESTATES_IN_EMAIL;
|
||||||
|
|
||||||
const realEstatesToShow = truncateList
|
const realEstatesToShow = truncateList
|
||||||
? realEstates.slice(0, MAX_REAL_ESTATES_IN_EMAIL)
|
? realEstates.slice(0, MAX_REAL_ESTATES_IN_EMAIL)
|
||||||
: realEstates;
|
: realEstates;
|
||||||
|
|
||||||
const allRealEstatesLink = `${APP_URL}/nekretnine/${searchRequestId}`;
|
const allRealEstatesLink = `${APP_URL}/nekretnine/${searchRequestId}`;
|
||||||
|
|
||||||
const realEstateLinks = generateRealEstateLinks(realEstatesToShow);
|
const realEstateLinks = generateRealEstateLinks(realEstatesToShow);
|
||||||
const moreRealEstates = `<div>Kompletan spisak nekretnina možete pogledati na <a href="${allRealEstatesLink}">listi nekretnina</a><div>`;
|
const moreRealEstates = `<div>Kompletan spisak nekretnina (${noAllRealEstates}) možete pogledati na <a href="${allRealEstatesLink}">listi nekretnina</a><div>`;
|
||||||
const emailFooter = generateEmailFooter(searchRequestId);
|
const emailFooter = generateEmailFooter(searchRequestId);
|
||||||
|
const asapMessageBody =
|
||||||
|
realEstates.length > 1
|
||||||
|
? "Pronašli smo nekretnine koje odgovaraju Vašoj pretrazi"
|
||||||
|
: "Pronašli smo nekretninu koja odgovara Vašoj pretrazi";
|
||||||
|
|
||||||
|
const dailyMessageBody =
|
||||||
|
realEstates.length > 1
|
||||||
|
? "U posljednja 24h objavljene su sljedeće nekretnine koje odgovaraju uslovima Vaše pretrage"
|
||||||
|
: "U posljednja 24h objavljena je sljedeća nekretnina koja odgovara uslovima Vaše pretrage";
|
||||||
|
|
||||||
|
const messageBody = dailyNotification ? dailyMessageBody : asapMessageBody;
|
||||||
|
|
||||||
return `<h3>Zdravo</h3>
|
return `<h3>Zdravo</h3>
|
||||||
<h4>Pronašli smo nekretnine koje odgovaraju Vašoj pretrazi</h4>
|
<h4>${messageBody}</h4>
|
||||||
<div>
|
<div>
|
||||||
${realEstateLinks}
|
${realEstateLinks}
|
||||||
<div/>
|
<div/>
|
||||||
@@ -55,6 +73,7 @@ const generateNewSearchRequestEmail = (searchRequest, matchingRealEstates) => {
|
|||||||
} = searchRequest;
|
} = searchRequest;
|
||||||
|
|
||||||
const realEstateLinks = generateRealEstateLinks(matchingRealEstates);
|
const realEstateLinks = generateRealEstateLinks(matchingRealEstates);
|
||||||
|
|
||||||
const instantRealEstatesText = `<br/>
|
const instantRealEstatesText = `<br/>
|
||||||
<div>
|
<div>
|
||||||
U međuvremenu pogledajte neke od nedavno objavljenih nekretnina koje odgovaraju Vašim uslovima pretrage :<br/>
|
U međuvremenu pogledajte neke od nedavno objavljenih nekretnina koje odgovaraju Vašim uslovima pretrage :<br/>
|
||||||
|
|||||||
@@ -0,0 +1,15 @@
|
|||||||
|
"use strict";
|
||||||
|
const { EMAIL_FREQUENCY } = require("../common/enums");
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
up: (queryInterface, Sequelize) => {
|
||||||
|
return queryInterface.addColumn("SearchRequests", "emailFrequency", {
|
||||||
|
type: Sequelize.TEXT,
|
||||||
|
defaultValue: EMAIL_FREQUENCY.ASAP.stringId
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
down: (queryInterface, Sequelize) => {
|
||||||
|
return queryInterface.removeColumn("SearchRequests", "emailFrequency");
|
||||||
|
}
|
||||||
|
};
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
"use strict";
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
up: (queryInterface, Sequelize) => {
|
||||||
|
return queryInterface.addColumn("SearchRequests", "deletedEmail", {
|
||||||
|
type: Sequelize.TEXT
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
down: (queryInterface, Sequelize) => {
|
||||||
|
return queryInterface.removeColumn("SearchRequests", "deletedEmail");
|
||||||
|
}
|
||||||
|
};
|
||||||
@@ -0,0 +1,163 @@
|
|||||||
|
"use strict";
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
up: (queryInterface, Sequelize) => {
|
||||||
|
return Promise.all([
|
||||||
|
queryInterface.addColumn("RealEstates", "numberOfRooms", {
|
||||||
|
type: Sequelize.REAL
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("RealEstates", "numberOfFloors", {
|
||||||
|
type: Sequelize.INTEGER
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("RealEstates", "floor", {
|
||||||
|
type: Sequelize.INTEGER
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("RealEstates", "accessRoadType", {
|
||||||
|
type: Sequelize.TEXT
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("RealEstates", "heatingType", {
|
||||||
|
type: Sequelize.TEXT
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("RealEstates", "furnishingType", {
|
||||||
|
type: Sequelize.TEXT
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("RealEstates", "balcony", {
|
||||||
|
type: Sequelize.BOOLEAN
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("RealEstates", "newBuilding", {
|
||||||
|
type: Sequelize.BOOLEAN
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("RealEstates", "elevator", {
|
||||||
|
type: Sequelize.BOOLEAN
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("RealEstates", "water", {
|
||||||
|
type: Sequelize.BOOLEAN
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("RealEstates", "electricity", {
|
||||||
|
type: Sequelize.BOOLEAN
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("RealEstates", "drainageSystem", {
|
||||||
|
type: Sequelize.BOOLEAN
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("RealEstates", "registeredInZkBooks", {
|
||||||
|
type: Sequelize.BOOLEAN
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("RealEstates", "recentlyAdapted", {
|
||||||
|
type: Sequelize.BOOLEAN
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("RealEstates", "parking", {
|
||||||
|
type: Sequelize.BOOLEAN
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("RealEstates", "garage", {
|
||||||
|
type: Sequelize.BOOLEAN
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("RealEstates", "gas", {
|
||||||
|
type: Sequelize.BOOLEAN
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("RealEstates", "antiTheftDoor", {
|
||||||
|
type: Sequelize.BOOLEAN
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("RealEstates", "airCondition", {
|
||||||
|
type: Sequelize.BOOLEAN
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("RealEstates", "phoneConnection", {
|
||||||
|
type: Sequelize.BOOLEAN
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("RealEstates", "cableTV", {
|
||||||
|
type: Sequelize.BOOLEAN
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("RealEstates", "internet", {
|
||||||
|
type: Sequelize.BOOLEAN
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("RealEstates", "basementAttic", {
|
||||||
|
type: Sequelize.BOOLEAN
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("RealEstates", "storeRoom", {
|
||||||
|
type: Sequelize.BOOLEAN
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("RealEstates", "videoSurveillance", {
|
||||||
|
type: Sequelize.BOOLEAN
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("RealEstates", "alarm", {
|
||||||
|
type: Sequelize.BOOLEAN
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("RealEstates", "suitableForStudents", {
|
||||||
|
type: Sequelize.BOOLEAN
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("RealEstates", "includingBills", {
|
||||||
|
type: Sequelize.BOOLEAN
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("RealEstates", "animalsAllowed", {
|
||||||
|
type: Sequelize.BOOLEAN
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("RealEstates", "pool", {
|
||||||
|
type: Sequelize.BOOLEAN
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("RealEstates", "exchange", {
|
||||||
|
type: Sequelize.BOOLEAN
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("RealEstates", "urbanPlanPermit", {
|
||||||
|
type: Sequelize.BOOLEAN
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("RealEstates", "buildingPermit", {
|
||||||
|
type: Sequelize.BOOLEAN
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("RealEstates", "utilityConnection", {
|
||||||
|
type: Sequelize.BOOLEAN
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("RealEstates", "distanceToRiver", {
|
||||||
|
type: Sequelize.INTEGER
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("RealEstates", "numberOfViewsAgency", {
|
||||||
|
type: Sequelize.INTEGER,
|
||||||
|
defaultValue: 0
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("RealEstates", "numberOfViewsKivi", {
|
||||||
|
type: Sequelize.INTEGER,
|
||||||
|
defaultValue: 0
|
||||||
|
})
|
||||||
|
]);
|
||||||
|
},
|
||||||
|
|
||||||
|
down: (queryInterface, Sequelize) => {
|
||||||
|
return Promise.all([
|
||||||
|
queryInterface.removeColumn("RealEstates", "numberOfRooms"),
|
||||||
|
queryInterface.removeColumn("RealEstates", "numberOfFloors"),
|
||||||
|
queryInterface.removeColumn("RealEstates", "floor"),
|
||||||
|
queryInterface.removeColumn("RealEstates", "accessRoadType"),
|
||||||
|
queryInterface.removeColumn("RealEstates", "heatingType"),
|
||||||
|
queryInterface.removeColumn("RealEstates", "furnishingType"),
|
||||||
|
queryInterface.removeColumn("RealEstates", "balcony"),
|
||||||
|
queryInterface.removeColumn("RealEstates", "newBuilding"),
|
||||||
|
queryInterface.removeColumn("RealEstates", "elevator"),
|
||||||
|
queryInterface.removeColumn("RealEstates", "water"),
|
||||||
|
queryInterface.removeColumn("RealEstates", "electricity"),
|
||||||
|
queryInterface.removeColumn("RealEstates", "drainageSystem"),
|
||||||
|
queryInterface.removeColumn("RealEstates", "registeredInZkBooks"),
|
||||||
|
queryInterface.removeColumn("RealEstates", "recentlyAdapted"),
|
||||||
|
queryInterface.removeColumn("RealEstates", "parking"),
|
||||||
|
queryInterface.removeColumn("RealEstates", "garage"),
|
||||||
|
queryInterface.removeColumn("RealEstates", "gas"),
|
||||||
|
queryInterface.removeColumn("RealEstates", "antiTheftDoor"),
|
||||||
|
queryInterface.removeColumn("RealEstates", "airCondition"),
|
||||||
|
queryInterface.removeColumn("RealEstates", "phoneConnection"),
|
||||||
|
queryInterface.removeColumn("RealEstates", "cableTV"),
|
||||||
|
queryInterface.removeColumn("RealEstates", "internet"),
|
||||||
|
queryInterface.removeColumn("RealEstates", "basementAttic"),
|
||||||
|
queryInterface.removeColumn("RealEstates", "storeRoom"),
|
||||||
|
queryInterface.removeColumn("RealEstates", "videoSurveillance"),
|
||||||
|
queryInterface.removeColumn("RealEstates", "alarm"),
|
||||||
|
queryInterface.removeColumn("RealEstates", "suitableForStudents"),
|
||||||
|
queryInterface.removeColumn("RealEstates", "includingBills"),
|
||||||
|
queryInterface.removeColumn("RealEstates", "animalsAllowed"),
|
||||||
|
queryInterface.removeColumn("RealEstates", "pool"),
|
||||||
|
queryInterface.removeColumn("RealEstates", "exchange"),
|
||||||
|
queryInterface.removeColumn("RealEstates", "urbanPlanPermit"),
|
||||||
|
queryInterface.removeColumn("RealEstates", "buildingPermit"),
|
||||||
|
queryInterface.removeColumn("RealEstates", "utilityConnection"),
|
||||||
|
queryInterface.removeColumn("RealEstates", "distanceToRiver"),
|
||||||
|
queryInterface.removeColumn("RealEstates", "numberOfViewsAgency"),
|
||||||
|
queryInterface.removeColumn("RealEstates", "numberOfViewsKivi")
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
};
|
||||||
@@ -0,0 +1,64 @@
|
|||||||
|
"use strict";
|
||||||
|
const { ACCESS_ROAD_TYPE, HEATING_TYPE } = require("../common/enums");
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
up: (queryInterface, Sequelize) => {
|
||||||
|
return Promise.all([
|
||||||
|
queryInterface.addColumn("SearchRequests", "includeIncompleteAds", {
|
||||||
|
type: Sequelize.BOOLEAN
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("SearchRequests", "balcony", {
|
||||||
|
type: Sequelize.BOOLEAN
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("SearchRequests", "newBuilding", {
|
||||||
|
type: Sequelize.BOOLEAN
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("SearchRequests", "elevator", {
|
||||||
|
type: Sequelize.BOOLEAN
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("SearchRequests", "numberOfRoomsMin", {
|
||||||
|
type: Sequelize.REAL
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("SearchRequests", "numberOfRoomsMax", {
|
||||||
|
type: Sequelize.REAL
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("SearchRequests", "numberOfFloorsMin", {
|
||||||
|
type: Sequelize.INTEGER
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("SearchRequests", "numberOfFloorsMax", {
|
||||||
|
type: Sequelize.INTEGER
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("SearchRequests", "floorMin", {
|
||||||
|
type: Sequelize.INTEGER
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("SearchRequests", "floorMax", {
|
||||||
|
type: Sequelize.INTEGER
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("SearchRequests", "accessRoadType", {
|
||||||
|
type: Sequelize.TEXT,
|
||||||
|
defaultValue: ACCESS_ROAD_TYPE.ANY.id
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("SearchRequests", "heatingType", {
|
||||||
|
type: Sequelize.TEXT,
|
||||||
|
defaultValue: HEATING_TYPE.ANY.id
|
||||||
|
})
|
||||||
|
]);
|
||||||
|
},
|
||||||
|
|
||||||
|
down: (queryInterface, Sequelize) => {
|
||||||
|
return Promise.all([
|
||||||
|
queryInterface.removeColumn("SearchRequests", "includeIncompleteAds"),
|
||||||
|
queryInterface.removeColumn("SearchRequests", "balcony"),
|
||||||
|
queryInterface.removeColumn("SearchRequests", "newBuilding"),
|
||||||
|
queryInterface.removeColumn("SearchRequests", "elevator"),
|
||||||
|
queryInterface.removeColumn("SearchRequests", "numberOfRoomsMin"),
|
||||||
|
queryInterface.removeColumn("SearchRequests", "numberOfRoomsMax"),
|
||||||
|
queryInterface.removeColumn("SearchRequests", "numberOfFloorsMin"),
|
||||||
|
queryInterface.removeColumn("SearchRequests", "numberOfFloorsMax"),
|
||||||
|
queryInterface.removeColumn("SearchRequests", "floorMin"),
|
||||||
|
queryInterface.removeColumn("SearchRequests", "floorMax"),
|
||||||
|
queryInterface.removeColumn("SearchRequests", "accessRoadType"),
|
||||||
|
queryInterface.removeColumn("SearchRequests", "heatingType")
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
};
|
||||||
@@ -48,7 +48,44 @@ module.exports = (sequelize, DataTypes) => {
|
|||||||
longDescription: DataTypes.TEXT,
|
longDescription: DataTypes.TEXT,
|
||||||
adStatus: DataTypes.INTEGER,
|
adStatus: DataTypes.INTEGER,
|
||||||
publishedDate: DataTypes.DATE,
|
publishedDate: DataTypes.DATE,
|
||||||
renewedDate: DataTypes.DATE
|
renewedDate: DataTypes.DATE,
|
||||||
|
numberOfRooms: DataTypes.INTEGER,
|
||||||
|
numberOfFloors: DataTypes.INTEGER,
|
||||||
|
floor: DataTypes.INTEGER,
|
||||||
|
accessRoadType: DataTypes.TEXT,
|
||||||
|
heatingType: DataTypes.TEXT,
|
||||||
|
furnishingType: DataTypes.TEXT,
|
||||||
|
balcony: DataTypes.BOOLEAN,
|
||||||
|
newBuilding: DataTypes.BOOLEAN,
|
||||||
|
elevator: DataTypes.BOOLEAN,
|
||||||
|
water: DataTypes.BOOLEAN,
|
||||||
|
electricity: DataTypes.BOOLEAN,
|
||||||
|
drainageSystem: DataTypes.BOOLEAN,
|
||||||
|
registeredInZkBooks: DataTypes.BOOLEAN,
|
||||||
|
recentlyAdapted: DataTypes.BOOLEAN,
|
||||||
|
parking: DataTypes.BOOLEAN,
|
||||||
|
garage: DataTypes.BOOLEAN,
|
||||||
|
gas: DataTypes.BOOLEAN,
|
||||||
|
antiTheftDoor: DataTypes.BOOLEAN,
|
||||||
|
airCondition: DataTypes.BOOLEAN,
|
||||||
|
phoneConnection: DataTypes.BOOLEAN,
|
||||||
|
cableTV: DataTypes.BOOLEAN,
|
||||||
|
internet: DataTypes.BOOLEAN,
|
||||||
|
basementAttic: DataTypes.BOOLEAN,
|
||||||
|
storeRoom: DataTypes.BOOLEAN,
|
||||||
|
videoSurveillance: DataTypes.BOOLEAN,
|
||||||
|
alarm: DataTypes.BOOLEAN,
|
||||||
|
suitableForStudents: DataTypes.BOOLEAN,
|
||||||
|
includingBills: DataTypes.BOOLEAN,
|
||||||
|
animalsAllowed: DataTypes.BOOLEAN,
|
||||||
|
pool: DataTypes.BOOLEAN,
|
||||||
|
exchange: DataTypes.BOOLEAN,
|
||||||
|
urbanPlanPermit: DataTypes.BOOLEAN,
|
||||||
|
buildingPermit: DataTypes.BOOLEAN,
|
||||||
|
utilityConnection: DataTypes.BOOLEAN,
|
||||||
|
distanceToRiver: DataTypes.INTEGER,
|
||||||
|
numberOfViewsAgency: DataTypes.INTEGER,
|
||||||
|
numberOfViewsKivi: DataTypes.INTEGER
|
||||||
});
|
});
|
||||||
|
|
||||||
return RealEstate;
|
return RealEstate;
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
const { AD_TYPE } = require("../common/enums");
|
const { AD_TYPE, EMAIL_FREQUENCY } = require("../common/enums");
|
||||||
|
|
||||||
module.exports = (sequelize, DataTypes) => {
|
module.exports = (sequelize, DataTypes) => {
|
||||||
const SearchRequest = sequelize.define("SearchRequest", {
|
const SearchRequest = sequelize.define("SearchRequest", {
|
||||||
@@ -61,7 +61,27 @@ module.exports = (sequelize, DataTypes) => {
|
|||||||
type: DataTypes.BOOLEAN,
|
type: DataTypes.BOOLEAN,
|
||||||
defaultValue: false,
|
defaultValue: false,
|
||||||
allowNull: false
|
allowNull: false
|
||||||
}
|
},
|
||||||
|
emailFrequency: {
|
||||||
|
type: DataTypes.TEXT,
|
||||||
|
defaultValue: EMAIL_FREQUENCY.ASAP.stringId,
|
||||||
|
allowNull: false
|
||||||
|
},
|
||||||
|
deletedEmail: {
|
||||||
|
type: DataTypes.TEXT
|
||||||
|
},
|
||||||
|
includeIncompleteAds: DataTypes.BOOLEAN,
|
||||||
|
balcony: DataTypes.BOOLEAN,
|
||||||
|
elevator: DataTypes.BOOLEAN,
|
||||||
|
newBuilding: DataTypes.BOOLEAN,
|
||||||
|
numberOfRoomsMin: DataTypes.REAL,
|
||||||
|
numberOfRoomsMax: DataTypes.REAL,
|
||||||
|
numberOfFloorsMin: DataTypes.INTEGER,
|
||||||
|
numberOfFloorsMax: DataTypes.INTEGER,
|
||||||
|
floorMin: DataTypes.INTEGER,
|
||||||
|
floorMax: DataTypes.INTEGER,
|
||||||
|
accessRoadType: DataTypes.TEXT,
|
||||||
|
heatingType: DataTypes.TEXT
|
||||||
});
|
});
|
||||||
|
|
||||||
return SearchRequest;
|
return SearchRequest;
|
||||||
|
|||||||
@@ -44,6 +44,12 @@ module.exports = (sequelize, DataTypes) => {
|
|||||||
);
|
);
|
||||||
|
|
||||||
SearchRequestMatch.associate = models => {
|
SearchRequestMatch.associate = models => {
|
||||||
|
SearchRequestMatch.hasMany(models.SearchRequest, {
|
||||||
|
foreignKey: "id",
|
||||||
|
sourceKey: "searchRequestId",
|
||||||
|
targetKey: "id",
|
||||||
|
as: "searchRequests"
|
||||||
|
});
|
||||||
SearchRequestMatch.hasMany(models.RealEstate, {
|
SearchRequestMatch.hasMany(models.RealEstate, {
|
||||||
foreignKey: "id",
|
foreignKey: "id",
|
||||||
as: "realEstates"
|
as: "realEstates"
|
||||||
|
|||||||
8
app/npmScripts/npmDailyNotify.js
Normal file
8
app/npmScripts/npmDailyNotify.js
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
"use strict";
|
||||||
|
const {
|
||||||
|
notifyRequestsWithDailyOption
|
||||||
|
} = require("../services/notificationService");
|
||||||
|
|
||||||
|
(async () => {
|
||||||
|
await notifyRequestsWithDailyOption();
|
||||||
|
})();
|
||||||
@@ -102,3 +102,59 @@ h3 {
|
|||||||
border-radius: 4px !important;
|
border-radius: 4px !important;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.collection a.collection-item {
|
||||||
|
color: #02adba;
|
||||||
|
}
|
||||||
|
|
||||||
|
.collection a.collection-item:not(.active):hover {
|
||||||
|
background-color: rgba(2, 173, 186, 0.2);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tabs .tab a {
|
||||||
|
color: #02adba;
|
||||||
|
-webkit-transition: color 0.28s ease, background-color 0.28s ease;
|
||||||
|
transition: color 0.28s ease, background-color 0.28s ease;
|
||||||
|
}
|
||||||
|
.tabs .tab a:focus,
|
||||||
|
.tabs .tab a:focus.active {
|
||||||
|
background-color: rgba(2, 173, 186, 0.2);
|
||||||
|
}
|
||||||
|
.tabs .tab a:hover,
|
||||||
|
.tabs .tab a.active {
|
||||||
|
color: #02adba;
|
||||||
|
}
|
||||||
|
.tabs .indicator {
|
||||||
|
background-color: #02adba;
|
||||||
|
}
|
||||||
|
|
||||||
|
[type="checkbox"].filled-in:checked + span:not(.lever):after {
|
||||||
|
border: 2px solid #02adba;
|
||||||
|
background-color: #02adba;
|
||||||
|
}
|
||||||
|
[type="checkbox"].filled-in:not(:checked) + span:not(.lever):after {
|
||||||
|
background-color: transparent;
|
||||||
|
border: 2px solid #02adba;
|
||||||
|
}
|
||||||
|
|
||||||
|
.distinguished {
|
||||||
|
border: 2px solid #02adba;
|
||||||
|
border-radius: 4px;
|
||||||
|
padding: 5px 5px 3px 5px;
|
||||||
|
margin-left: -5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.checkbox-label {
|
||||||
|
color: black;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.column-label {
|
||||||
|
position: relative;
|
||||||
|
margin-top: 2rem;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.estates-link {
|
||||||
|
color: rgba(0, 0, 0, 0.87);
|
||||||
|
}
|
||||||
|
|||||||
@@ -1,14 +1,18 @@
|
|||||||
.ui-segment {
|
.segmented {
|
||||||
color: #02adba;
|
color: #02adba;
|
||||||
border: 1px solid #02adba;
|
border: 1px solid #02adba;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
.ui-segment span.option.active {
|
.segmented label {
|
||||||
|
color: #02adba;
|
||||||
|
}
|
||||||
|
.segmented input:checked + .label {
|
||||||
background-color: #02adba;
|
background-color: #02adba;
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
.ui-segment span.option {
|
[type="radio"]:not(:checked) + span,
|
||||||
|
[type="radio"]:checked + span {
|
||||||
padding-left: 30px;
|
padding-left: 30px;
|
||||||
padding-right: 30px;
|
padding-right: 30px;
|
||||||
height: 35px;
|
height: 35px;
|
||||||
@@ -21,9 +25,20 @@
|
|||||||
border-right: 1px solid #02adba;
|
border-right: 1px solid #02adba;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ui-segment span.option:last-child {
|
.segmented.small [type="radio"]:not(:checked) + span,
|
||||||
|
.segmented.small [type="radio"]:checked + span {
|
||||||
|
padding-left: 7px;
|
||||||
|
padding-right: 7px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.segmented :last-child .label {
|
||||||
border-right: none;
|
border-right: none;
|
||||||
}
|
}
|
||||||
.segment-select {
|
.segmented input {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
span.label:before,
|
||||||
|
span.label:after {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
const express = require("express");
|
const express = require("express");
|
||||||
|
|
||||||
const welcome = require("../controllers/welcome").getWelcome;
|
const { getWelcome, postWelcome } = require("../controllers/welcome");
|
||||||
const {
|
const {
|
||||||
getRealEstateTypes,
|
getRealEstateTypes,
|
||||||
postRealEstateTypes
|
postRealEstateTypes
|
||||||
@@ -20,7 +20,8 @@ const { getFilters, postFilters } = require("../controllers/realEstateFilters");
|
|||||||
|
|
||||||
const router = express.Router();
|
const router = express.Router();
|
||||||
|
|
||||||
router.get("/", welcome);
|
router.get("/", getWelcome);
|
||||||
|
router.post("/", postWelcome);
|
||||||
|
|
||||||
router.get("/vrstanekretnine/:searchRequestId", getRealEstateTypes);
|
router.get("/vrstanekretnine/:searchRequestId", getRealEstateTypes);
|
||||||
router.get("/vrstanekretnine", getRealEstateTypes);
|
router.get("/vrstanekretnine", getRealEstateTypes);
|
||||||
|
|||||||
@@ -8,6 +8,10 @@ const {
|
|||||||
generateNewSearchRequestEmail,
|
generateNewSearchRequestEmail,
|
||||||
generateEmailSubject
|
generateEmailSubject
|
||||||
} = require("../helpers/emailContentGenerator");
|
} = require("../helpers/emailContentGenerator");
|
||||||
|
const {
|
||||||
|
findNotNotifiedMatches,
|
||||||
|
findRealEstatesForSearchRequest
|
||||||
|
} = require("../helpers/db/searchRequestMatch");
|
||||||
const { sendEmail } = require("../services/emailService");
|
const { sendEmail } = require("../services/emailService");
|
||||||
|
|
||||||
const notifyForNewRealEstates = async newRealEstates => {
|
const notifyForNewRealEstates = async newRealEstates => {
|
||||||
@@ -29,34 +33,95 @@ const notifyForNewSearchRequest = async searchRequest => {
|
|||||||
await sendEmail(email, "Kivi - novi zahtjev za pretragu", emailContent);
|
await sendEmail(email, "Kivi - novi zahtjev za pretragu", emailContent);
|
||||||
};
|
};
|
||||||
|
|
||||||
const notifyMatches = async matches => {
|
const notifyMatches = async (matches, dailyNotification = false) => {
|
||||||
const searchRequestsToNotify = Object.keys(matches);
|
const searchRequestsToNotify = Object.keys(matches);
|
||||||
|
|
||||||
const asyncSendEmailActions = [];
|
const asyncSendEmailActions = [];
|
||||||
for (const id of searchRequestsToNotify) {
|
for (const id of searchRequestsToNotify) {
|
||||||
const { searchRequest } = matches[id];
|
const { searchRequest, notifyNow } = matches[id];
|
||||||
const { email } = searchRequest;
|
const { email, subscribed } = searchRequest;
|
||||||
const allMatchingRealEstates = matches[id].realEstates || [];
|
if (notifyNow && subscribed) {
|
||||||
if (allMatchingRealEstates.length > 0) {
|
const allMatchingRealEstates = matches[id].realEstates || [];
|
||||||
const emailContent = generateNotificationEmail(
|
|
||||||
allMatchingRealEstates,
|
|
||||||
id
|
|
||||||
);
|
|
||||||
const emailSubject = generateEmailSubject(
|
|
||||||
allMatchingRealEstates.length,
|
|
||||||
allMatchingRealEstates[0].title
|
|
||||||
);
|
|
||||||
|
|
||||||
const sendEmailPromise = sendEmail(email, emailSubject, emailContent);
|
//Variable allMatchingRealEstates are real estates that are "new" on the market
|
||||||
asyncSendEmailActions.push(sendEmailPromise);
|
//the ones that we notify user in this moment, not all that already exists in db
|
||||||
sendEmailPromise.catch(err => console.log("[Email Sending Failed]", err));
|
//New variable allRealEstates are all real estates that exists in db for search req
|
||||||
|
const allRealEstates = await findRealEstatesForSearchRequest(id);
|
||||||
|
const noAllRealEstates = allRealEstates.length;
|
||||||
|
|
||||||
|
if (allMatchingRealEstates.length > 0) {
|
||||||
|
const emailContent = generateNotificationEmail(
|
||||||
|
allMatchingRealEstates,
|
||||||
|
id,
|
||||||
|
noAllRealEstates,
|
||||||
|
dailyNotification
|
||||||
|
);
|
||||||
|
const emailSubject = generateEmailSubject(
|
||||||
|
allMatchingRealEstates.length,
|
||||||
|
allMatchingRealEstates[0].title
|
||||||
|
);
|
||||||
|
|
||||||
|
const sendEmailPromise = sendEmail(email, emailSubject, emailContent);
|
||||||
|
asyncSendEmailActions.push(sendEmailPromise);
|
||||||
|
sendEmailPromise.catch(err =>
|
||||||
|
console.log("[Email Sending Failed]", err)
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
await Promise.all(asyncSendEmailActions);
|
await Promise.all(asyncSendEmailActions);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const notifyRequestsWithDailyOption = async () => {
|
||||||
|
const notNotifiedSearchRequestMatches = await findNotNotifiedMatches();
|
||||||
|
|
||||||
|
const matches = {};
|
||||||
|
|
||||||
|
for (const searchRequestMatch of notNotifiedSearchRequestMatches) {
|
||||||
|
const { searchRequests, realEstates } = searchRequestMatch;
|
||||||
|
|
||||||
|
if (!Array.isArray(searchRequests) || searchRequests.length !== 1) {
|
||||||
|
// Something is wrong with this match
|
||||||
|
// (search request not found for specified search request id)
|
||||||
|
// OR
|
||||||
|
// there are multiple search requests with the same ID (this should never be the case !
|
||||||
|
// TODO: Maybe if association is defined better, this will be automatically only one object instead of array
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!Array.isArray(realEstates) || realEstates.length !== 1) {
|
||||||
|
// Something is wrong with this match
|
||||||
|
// (real estate not found for specified real estate id)
|
||||||
|
// OR
|
||||||
|
// there are multiple real estates with the same ID (this should never be the case !
|
||||||
|
// TODO: Maybe if association is defined better, this will be automatically only one object instead of array
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
const searchRequest = searchRequests[0];
|
||||||
|
const realEstate = realEstates[0];
|
||||||
|
const searchRequestId = searchRequest.id;
|
||||||
|
|
||||||
|
if (!matches[searchRequestId]) {
|
||||||
|
matches[searchRequestId] = {
|
||||||
|
searchRequest,
|
||||||
|
realEstates: [],
|
||||||
|
notifyNow: true
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
matches[searchRequestId].realEstates.push(realEstate);
|
||||||
|
|
||||||
|
searchRequestMatch.notified = true;
|
||||||
|
searchRequestMatch.save();
|
||||||
|
}
|
||||||
|
|
||||||
|
await notifyMatches(matches, true);
|
||||||
|
};
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
notifyForNewRealEstates,
|
notifyForNewRealEstates,
|
||||||
notifyForNewSearchRequest
|
notifyForNewSearchRequest,
|
||||||
|
notifyRequestsWithDailyOption
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ const {
|
|||||||
const { findRealEstatesForSearchRequest } = require("../helpers/db/realEstate");
|
const { findRealEstatesForSearchRequest } = require("../helpers/db/realEstate");
|
||||||
const { addMatches } = require("../helpers/db/searchRequestMatch");
|
const { addMatches } = require("../helpers/db/searchRequestMatch");
|
||||||
const { MAX_REAL_ESTATES_IN_FIRST_EMAIL } = require("../config/appConfig");
|
const { MAX_REAL_ESTATES_IN_FIRST_EMAIL } = require("../config/appConfig");
|
||||||
|
const { EMAIL_FREQUENCY } = require("../common/enums");
|
||||||
|
|
||||||
const matchRealEstates = async realEstates => {
|
const matchRealEstates = async realEstates => {
|
||||||
if (Array.isArray(realEstates)) {
|
if (Array.isArray(realEstates)) {
|
||||||
@@ -18,18 +19,19 @@ const matchRealEstates = async realEstates => {
|
|||||||
|
|
||||||
searchRequestsPromise.then(searchRequests => {
|
searchRequestsPromise.then(searchRequests => {
|
||||||
for (const searchRequest of searchRequests) {
|
for (const searchRequest of searchRequests) {
|
||||||
const { id } = searchRequest;
|
const { id, emailFrequency } = searchRequest;
|
||||||
if (!matches[id]) {
|
if (!matches[id]) {
|
||||||
matches[id] = {
|
matches[id] = {
|
||||||
searchRequest,
|
searchRequest,
|
||||||
realEstates: []
|
realEstates: [],
|
||||||
|
notifyNow: emailFrequency === EMAIL_FREQUENCY.ASAP.stringId
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
matches[id].realEstates.push(realEstate);
|
matches[id].realEstates.push(realEstate);
|
||||||
matchingRecords.push({
|
matchingRecords.push({
|
||||||
searchRequestId: searchRequest.id,
|
searchRequestId: searchRequest.id,
|
||||||
realEstateId: realEstate.id,
|
realEstateId: realEstate.id,
|
||||||
notified: false
|
notified: emailFrequency === EMAIL_FREQUENCY.ASAP.stringId
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@@ -62,7 +64,7 @@ const matchSearchRequest = async searchRequest => {
|
|||||||
matchingRecords.push({
|
matchingRecords.push({
|
||||||
searchRequestId,
|
searchRequestId,
|
||||||
realEstateId: realEstate.id,
|
realEstateId: realEstate.id,
|
||||||
notified: false
|
notified: true
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
69
app/views/advancedFilters.ejs
Normal file
69
app/views/advancedFilters.ejs
Normal file
@@ -0,0 +1,69 @@
|
|||||||
|
<br>
|
||||||
|
|
||||||
|
<% for (const filter of advancedBooleanFilterObjects){ %>
|
||||||
|
<p>
|
||||||
|
<label class="checkbox-label">
|
||||||
|
<input type="checkbox" class="filled-in" name="<%= filter.dbField %>"
|
||||||
|
<% if (advancedBooleanFilterValues[filter.dbField]) { %>
|
||||||
|
checked
|
||||||
|
<% } %>>
|
||||||
|
<span><%= filter.title %></span>
|
||||||
|
</label>
|
||||||
|
</p>
|
||||||
|
<% } %>
|
||||||
|
|
||||||
|
<br>
|
||||||
|
<% for (const filter of advancedRangeFilterObjects){ %>
|
||||||
|
<div class="row">
|
||||||
|
<p class="column-label col s5 m3 l2">
|
||||||
|
<%= filter.title %>
|
||||||
|
</p>
|
||||||
|
<div class="input-field col s3 m4 l5">
|
||||||
|
<input
|
||||||
|
id="<%= filter.dbFieldMin %>"
|
||||||
|
name="<%= filter.dbFieldMin %>"
|
||||||
|
type="number"
|
||||||
|
value="<%= advancedRangeFilterValues[filter.dbFieldMin] !== undefined ? advancedRangeFilterValues[filter.dbFieldMin] : ""%>"
|
||||||
|
>
|
||||||
|
<label for="<%= filter.dbFieldMin %>">Od</label>
|
||||||
|
</div>
|
||||||
|
<div class="input-field col s3 m4 l5">
|
||||||
|
<input
|
||||||
|
id="<%= filter.dbFieldMax %>"
|
||||||
|
name="<%= filter.dbFieldMax %>"
|
||||||
|
type="number"
|
||||||
|
value="<%= advancedRangeFilterValues[filter.dbFieldMax] !== undefined ? advancedRangeFilterValues[filter.dbFieldMax] : ""%>"
|
||||||
|
>
|
||||||
|
<label for="<%= filter.dbFieldMax %>">Do</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<% } %>
|
||||||
|
|
||||||
|
<br>
|
||||||
|
<% for (const filter of advancedSegmentSelectFilterObjects){ %>
|
||||||
|
<div>
|
||||||
|
<label class="checkbox-label"><%= filter.title %>: </label><br><br>
|
||||||
|
<span class="segmented small">
|
||||||
|
<% for (const segmentObject of filter.values) { %>
|
||||||
|
<label>
|
||||||
|
<input type="radio" name="<%= filter.dbField %>" value="<%= segmentObject.id %>"
|
||||||
|
<% if (advancedSegmentSelectFilterValues[filter.dbField] === segmentObject.id) { %>
|
||||||
|
checked
|
||||||
|
<% } %>>
|
||||||
|
<span class="label"><%= segmentObject.title %></span>
|
||||||
|
</label>
|
||||||
|
<% } %>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<% } %>
|
||||||
|
|
||||||
|
<br>
|
||||||
|
<p class="distinguished">
|
||||||
|
<label class="checkbox-label">
|
||||||
|
<input type="checkbox" class="filled-in" name="includeIncompleteAds"
|
||||||
|
<% if (includeIncompleteAds) { %>
|
||||||
|
checked
|
||||||
|
<% } %>>
|
||||||
|
<span>Uključi i oglase bez potpunih informacija</span>
|
||||||
|
</label>
|
||||||
|
</p>
|
||||||
@@ -1,13 +1,17 @@
|
|||||||
<div class="row center-align">
|
<div class="row center-align">
|
||||||
<h3>
|
<h3>
|
||||||
Područje na mapi će biti uključeno u pretragu. Namjestite mapu na ulice
|
Područje na mapi će biti uključeno u pretragu. Namjestite mapu na ulice koje
|
||||||
koje želite da budu vidljive.
|
želite da budu vidljive.
|
||||||
</h3>
|
</h3>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="row center-align">
|
<div class="row center-align">
|
||||||
<div class="col s12 m12 l12 xl12">
|
<div class="col s12 m12 l12 xl12">
|
||||||
<input id="autocompleteInput" placeholder="Unesite grad, naselje ili ulicu..." type="text" />
|
<input
|
||||||
|
id="autocompleteInput"
|
||||||
|
placeholder="Unesite grad, naselje ili ulicu..."
|
||||||
|
type="text"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -17,12 +21,17 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<br>
|
<br />
|
||||||
|
|
||||||
<form method="POST" id="form-map-output">
|
<form method="POST" id="form-map-output">
|
||||||
<div class="row center-align">
|
<div class="row center-align">
|
||||||
<div class="col s6 push-s3">
|
<div class="col s6 push-s3">
|
||||||
<a id="submit" href="#" class="welcome-center-button waves-effect waves-light btn">Dalje</a>
|
<a
|
||||||
|
id="submit"
|
||||||
|
href="#"
|
||||||
|
class="welcome-center-button waves-effect waves-light btn"
|
||||||
|
>Dalje</a
|
||||||
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<input type="hidden" name="north" id="north" />
|
<input type="hidden" name="north" id="north" />
|
||||||
@@ -41,19 +50,19 @@
|
|||||||
|
|
||||||
function locateMe() {
|
function locateMe() {
|
||||||
if (navigator.geolocation) {
|
if (navigator.geolocation) {
|
||||||
|
function onLocationSuccess(position) {
|
||||||
const onLocationSuccess = (position) => {
|
const coordinates =
|
||||||
const coordinates = position && position.coords ? position.coords : null;
|
position && position.coords ? position.coords : null;
|
||||||
if (coordinates){
|
if (coordinates) {
|
||||||
const longitude = coordinates.longitude || null;
|
const longitude = coordinates.longitude || null;
|
||||||
const latitude = coordinates.latitude || null;
|
const latitude = coordinates.latitude || null;
|
||||||
|
|
||||||
if (longitude && latitude && map){
|
if (longitude && latitude && map) {
|
||||||
map.setCenter({lat: latitude, lng: longitude});
|
map.setCenter({ lat: latitude, lng: longitude });
|
||||||
map.setZoom(16);
|
map.setZoom(16);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
}
|
||||||
|
|
||||||
navigator.geolocation.getCurrentPosition(onLocationSuccess);
|
navigator.geolocation.getCurrentPosition(onLocationSuccess);
|
||||||
}
|
}
|
||||||
@@ -61,20 +70,20 @@
|
|||||||
|
|
||||||
function initMap() {
|
function initMap() {
|
||||||
const BOSNIA_BOUNDS = {
|
const BOSNIA_BOUNDS = {
|
||||||
north: 45.70,
|
north: 45.7,
|
||||||
south: 41.69,
|
south: 41.69,
|
||||||
west: 15.55,
|
west: 15.55,
|
||||||
east: 20.77,
|
east: 20.77
|
||||||
};
|
};
|
||||||
const SARAJEVO_COORDINATES = {
|
const SARAJEVO_COORDINATES = {
|
||||||
lat: 43.85,
|
lat: 43.85,
|
||||||
lng: 18.41,
|
lng: 18.41
|
||||||
};
|
};
|
||||||
|
|
||||||
const mapElement = document.getElementById('map');
|
const mapElement = document.getElementById("map");
|
||||||
const restrictMapPanningToBosniaOnly = {
|
const restrictMapPanningToBosniaOnly = {
|
||||||
latLngBounds: BOSNIA_BOUNDS,
|
latLngBounds: BOSNIA_BOUNDS,
|
||||||
strictBounds: true,
|
strictBounds: true
|
||||||
};
|
};
|
||||||
const initialMapParams = {
|
const initialMapParams = {
|
||||||
center: SARAJEVO_COORDINATES,
|
center: SARAJEVO_COORDINATES,
|
||||||
@@ -87,38 +96,50 @@
|
|||||||
};
|
};
|
||||||
map = new google.maps.Map(mapElement, initialMapParams);
|
map = new google.maps.Map(mapElement, initialMapParams);
|
||||||
|
|
||||||
const inputElement = document.getElementById('autocompleteInput');
|
const inputElement = document.getElementById("autocompleteInput");
|
||||||
const restrictAutocompleteResultsToBosniaOnly = {'country': 'ba'};
|
const restrictAutocompleteResultsToBosniaOnly = { country: "ba" };
|
||||||
const initialAutocompleteParams = {
|
const initialAutocompleteParams = {
|
||||||
types: ['geocode'],
|
types: ["geocode"],
|
||||||
componentRestrictions: restrictAutocompleteResultsToBosniaOnly,
|
componentRestrictions: restrictAutocompleteResultsToBosniaOnly,
|
||||||
fields: ['geometry', 'types', 'address_components']
|
fields: ["geometry", "types", "address_components"]
|
||||||
};
|
};
|
||||||
|
|
||||||
autocomplete = new google.maps.places.Autocomplete(inputElement, initialAutocompleteParams);
|
autocomplete = new google.maps.places.Autocomplete(
|
||||||
autocomplete.bindTo('bounds', map);
|
inputElement,
|
||||||
autocomplete.addListener('place_changed', onPlaceChanged);
|
initialAutocompleteParams
|
||||||
|
);
|
||||||
|
autocomplete.bindTo("bounds", map);
|
||||||
|
autocomplete.addListener("place_changed", onPlaceChanged);
|
||||||
pacSelectFirst(inputElement);
|
pacSelectFirst(inputElement);
|
||||||
addLocateMeButton(map);
|
addLocateMeButton(map);
|
||||||
|
|
||||||
|
//After map initialization we check if area is already selected
|
||||||
|
//If yes we bound map to show already selected area
|
||||||
|
const boundsSelected = <%- boundsSelected %>;
|
||||||
|
const selectedLatLngBounds = <%- JSON.stringify(selectedLatLngBounds) %>;
|
||||||
|
|
||||||
|
if (boundsSelected) {
|
||||||
|
boundMapToSelected(map, selectedLatLngBounds);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function addLocateMeButton(map) {
|
function addLocateMeButton(map) {
|
||||||
var parent = document.createElement('div');
|
var parent = document.createElement("div");
|
||||||
parent.className = "locate-me-container";
|
parent.className = "locate-me-container";
|
||||||
|
|
||||||
var a = document.createElement('a');
|
var a = document.createElement("a");
|
||||||
a.id = "locateMe";
|
a.id = "locateMe";
|
||||||
a.className = "btn-floating";
|
a.className = "btn-floating";
|
||||||
|
|
||||||
var i = document.createElement('i');
|
var i = document.createElement("i");
|
||||||
i.innerText = "gps_fixed";
|
i.innerText = "gps_fixed";
|
||||||
i.className = "material-icons right";
|
i.className = "material-icons right";
|
||||||
|
|
||||||
a.appendChild(i)
|
a.appendChild(i);
|
||||||
a.addEventListener("click", locateMe);
|
a.addEventListener("click", locateMe);
|
||||||
parent.appendChild(a)
|
parent.appendChild(a);
|
||||||
|
|
||||||
map.controls[google.maps.ControlPosition.RIGHT_BOTTOM].push(parent)
|
map.controls[google.maps.ControlPosition.RIGHT_BOTTOM].push(parent);
|
||||||
}
|
}
|
||||||
|
|
||||||
function onPlaceChanged() {
|
function onPlaceChanged() {
|
||||||
@@ -133,37 +154,53 @@
|
|||||||
function pacSelectFirst(input) {
|
function pacSelectFirst(input) {
|
||||||
// store the original event binding function
|
// store the original event binding function
|
||||||
const _addEventListener = input.addEventListener
|
const _addEventListener = input.addEventListener
|
||||||
? input.addEventListener
|
? input.addEventListener
|
||||||
: input.attachEvent
|
: input.attachEvent;
|
||||||
|
|
||||||
function addEventListenerWrapper (type, listener) {
|
function addEventListenerWrapper(type, listener) {
|
||||||
// Simulate a 'down arrow' keypress on hitting 'return' when no pac suggestion is selected,
|
// Simulate a 'down arrow' keypress on hitting 'return' when no pac suggestion is selected,
|
||||||
// and then trigger the original listener.
|
// and then trigger the original listener.
|
||||||
if (type == 'keydown') {
|
if (type == "keydown") {
|
||||||
const originalListener = listener
|
const originalListener = listener;
|
||||||
listener = function (event) {
|
listener = function(event) {
|
||||||
const suggestionSelected = $('.pac-item-selected').length > 0
|
const suggestionSelected = $(".pac-item-selected").length > 0;
|
||||||
if (event.key == 'Enter' && !suggestionSelected) {
|
if (event.key == "Enter" && !suggestionSelected) {
|
||||||
const simulatedDownArrow = $.Event('keydown', {
|
const simulatedDownArrow = $.Event("keydown", {
|
||||||
keyCode: 40,
|
keyCode: 40,
|
||||||
which: 40
|
which: 40
|
||||||
})
|
});
|
||||||
originalListener.apply(input, [simulatedDownArrow])
|
originalListener.apply(input, [simulatedDownArrow]);
|
||||||
}
|
}
|
||||||
|
|
||||||
originalListener.apply(input, [event])
|
originalListener.apply(input, [event]);
|
||||||
}
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
_addEventListener.apply(input, [type, listener])
|
_addEventListener.apply(input, [type, listener]);
|
||||||
}
|
}
|
||||||
|
|
||||||
input.addEventListener = addEventListenerWrapper
|
input.addEventListener = addEventListenerWrapper;
|
||||||
input.attachEvent = addEventListenerWrapper
|
input.attachEvent = addEventListenerWrapper;
|
||||||
|
}
|
||||||
|
function boundMapToSelected(map, selectedLatLngBounds) {
|
||||||
|
|
||||||
|
const swBound = new google.maps.LatLng(
|
||||||
|
selectedLatLngBounds.swLat,
|
||||||
|
selectedLatLngBounds.swLng
|
||||||
|
);
|
||||||
|
const neBound = new google.maps.LatLng(
|
||||||
|
selectedLatLngBounds.neLat,
|
||||||
|
selectedLatLngBounds.neLng
|
||||||
|
);
|
||||||
|
let bounds = new google.maps.LatLngBounds();
|
||||||
|
bounds.extend(swBound);
|
||||||
|
bounds.extend(neBound);
|
||||||
|
|
||||||
|
map.fitBounds(bounds);
|
||||||
}
|
}
|
||||||
|
|
||||||
$(document).ready(() => {
|
$(document).ready(function() {
|
||||||
$("#submit").click(() => {
|
$("#submit").click(function() {
|
||||||
const mapBounds = map.getBounds();
|
const mapBounds = map.getBounds();
|
||||||
|
|
||||||
$("#north").val(mapBounds.getNorthEast().lat());
|
$("#north").val(mapBounds.getNorthEast().lat());
|
||||||
@@ -171,11 +208,16 @@
|
|||||||
$("#east").val(mapBounds.getNorthEast().lng());
|
$("#east").val(mapBounds.getNorthEast().lng());
|
||||||
$("#west").val(mapBounds.getSouthWest().lng());
|
$("#west").val(mapBounds.getSouthWest().lng());
|
||||||
|
|
||||||
$("#locationInput").val(document.getElementById('autocompleteInput').value);
|
$("#locationInput").val(
|
||||||
|
document.getElementById("autocompleteInput").value
|
||||||
|
);
|
||||||
|
|
||||||
$("#form-map-output").submit();
|
$("#form-map-output").submit();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAna8ohfV2HBMcxGk_29vqxU5Z_bDickqg&language=bs&libraries=places&callback=initMap" async
|
<script
|
||||||
defer></script>
|
src="https://maps.googleapis.com/maps/api/js?key=<%= process.env.API_MAP_KEY %>&language=bs&libraries=places&callback=initMap"
|
||||||
|
async
|
||||||
|
defer
|
||||||
|
></script>
|
||||||
|
|||||||
@@ -1,53 +0,0 @@
|
|||||||
<form method="POST" id="form-range">
|
|
||||||
|
|
||||||
<div class="row center-align no-ui-slider centered-element-small" id="slider"></div>
|
|
||||||
|
|
||||||
<div class="col s6 push-s3 centered-element-small">
|
|
||||||
<a id="btnsubmit" href="#" class="next-center-button waves-effect waves-light btn">
|
|
||||||
Dalje
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<input type="hidden" name="from" id="from" />
|
|
||||||
<input type="hidden" name="to" id="to" />
|
|
||||||
</form>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
|
|
||||||
$(document).ready(() => {
|
|
||||||
|
|
||||||
var slider = document.getElementById('slider');
|
|
||||||
|
|
||||||
const unitFormat = wNumb({
|
|
||||||
decimals: 3,
|
|
||||||
thousand: '.',
|
|
||||||
suffix: '<%= unit %>'
|
|
||||||
})
|
|
||||||
|
|
||||||
|
|
||||||
noUiSlider.create(slider, {
|
|
||||||
start: [<%= rangeFrom.value %>, <%= rangeTo.value %>],
|
|
||||||
connect: true,
|
|
||||||
tooltips: true,
|
|
||||||
step: <%= rangeFrom.step %>,
|
|
||||||
range: {
|
|
||||||
'min': <%= rangeFrom.min %>,
|
|
||||||
'max': <%= rangeTo.max %>
|
|
||||||
},
|
|
||||||
format: unitFormat
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
$("#btnsubmit").click(() => {
|
|
||||||
const sliderValues = slider.noUiSlider.get();
|
|
||||||
|
|
||||||
$("#from").val(unitFormat.from(sliderValues[0]));
|
|
||||||
$("#to").val(unitFormat.from(sliderValues[1]));
|
|
||||||
|
|
||||||
$("#form-range").submit();
|
|
||||||
// });
|
|
||||||
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
</script>
|
|
||||||
@@ -1,7 +1,8 @@
|
|||||||
|
<br><br>
|
||||||
<form method="POST" id="form-queryreview">
|
<form method="POST" id="form-queryreview">
|
||||||
<div class="row center-align">
|
<div class="row center-align">
|
||||||
<ul class="collection with-header">
|
<ul class="collection with-header">
|
||||||
<% for(const stepData of queryReviewData) { %>
|
<% for(const stepData of queryReviewTableData) { %>
|
||||||
<li class="collection-item" >
|
<li class="collection-item" >
|
||||||
<div id="<%= stepData.id %>" ><%= stepData.title || '-' %>
|
<div id="<%= stepData.id %>" ><%= stepData.title || '-' %>
|
||||||
<a href="<%= stepData.url %>" class="kivi-color secondary-content">
|
<a href="<%= stepData.url %>" class="kivi-color secondary-content">
|
||||||
@@ -12,6 +13,26 @@
|
|||||||
<% } %>
|
<% } %>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="row center-align">
|
||||||
|
<h6>Slanje obavještenja</h6>
|
||||||
|
<span class="segmented">
|
||||||
|
<label>
|
||||||
|
<input type="radio" name="emailFrequency" value="<%= EMAIL_FREQUENCY.ASAP.id %>"
|
||||||
|
<% if (selectedEmailFrequency === EMAIL_FREQUENCY.ASAP.id) { %>
|
||||||
|
checked
|
||||||
|
<% } %>>
|
||||||
|
<span class="label"><%= EMAIL_FREQUENCY.ASAP.title %></span>
|
||||||
|
</label>
|
||||||
|
|
||||||
|
<label>
|
||||||
|
<input type="radio" name="emailFrequency" value="<%= EMAIL_FREQUENCY.DAILY.id %>"
|
||||||
|
<% if (selectedEmailFrequency === EMAIL_FREQUENCY.DAILY.id) { %>
|
||||||
|
checked
|
||||||
|
<% } %>>
|
||||||
|
<span class="label"><%= EMAIL_FREQUENCY.DAILY.title %></span>
|
||||||
|
</label>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
<div class="row center-align">
|
<div class="row center-align">
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<input id="email" name="email" type="email" placeholder="vas.email@mail.com" <% if (email) { %>value="<%= email %>" <% } %> required size="250" />
|
<input id="email" name="email" type="email" placeholder="vas.email@mail.com" <% if (email) { %>value="<%= email %>" <% } %> required size="250" />
|
||||||
@@ -46,8 +67,9 @@
|
|||||||
</form>
|
</form>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
$(document).ready( () => {
|
|
||||||
$("#submit").click( () => {
|
$(document).ready(function() {
|
||||||
|
$("#submit").click(function() {
|
||||||
const simpleEmailRegex = /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
|
const simpleEmailRegex = /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
|
||||||
const email = $("#email").val();
|
const email = $("#email").val();
|
||||||
const confirmEmail = $("#confirmEmail").val();
|
const confirmEmail = $("#confirmEmail").val();
|
||||||
@@ -61,7 +83,7 @@
|
|||||||
$("#submit").attr("disabled", true);
|
$("#submit").attr("disabled", true);
|
||||||
$("#form-queryreview").submit();
|
$("#form-queryreview").submit();
|
||||||
}else{
|
}else{
|
||||||
$("#error-label-email").text("Greška ! Unešeni emailovi nisu isti");
|
$("#error-label-email").text("Greška ! Unešeni email nije validan");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -1,63 +1,20 @@
|
|||||||
|
<br>
|
||||||
<form id="filtersForm" method="POST">
|
<form id="filtersForm" method="POST">
|
||||||
<br>
|
|
||||||
|
|
||||||
<div class="row center-align">
|
|
||||||
<h5>Cijena</h5>
|
|
||||||
<br><br>
|
|
||||||
<div class="center-align no-ui-slider" id="priceFilter"></div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<br>
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col s5 m3 l3 push-m1 push-l2">
|
<div class="col s12">
|
||||||
<input class="sliderInputBox" type="number" id="priceMin" name="priceMin">
|
<ul class="tabs">
|
||||||
|
<li class="tab col s6"><a href="#standardFilters">Filteri</a></li>
|
||||||
|
<li class="tab col s6"><a href="#advancedFilters">Napredni filteri</a></li>
|
||||||
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="col s5 m3 l3 push-s1 push-m4 push-l4">
|
<div id="standardFilters" class="col s12">
|
||||||
<input class="sliderInputBox" type="number" id="priceMax" name="priceMax">
|
<%- include("./standardFilters.ejs") %>
|
||||||
|
</div>
|
||||||
|
<div id="advancedFilters" class="col s12">
|
||||||
|
<%- include("./advancedFilters.ejs") %>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<br>
|
|
||||||
|
|
||||||
<div class="row center-align">
|
|
||||||
<h5>Površina</h5>
|
|
||||||
<br><br>
|
|
||||||
<div class="center-align no-ui-slider" id="sizeFilter"></div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<br>
|
|
||||||
<div class="row">
|
|
||||||
<div class="col s5 m3 l3 push-m1 push-l2">
|
|
||||||
<input class="sliderInputBox" type="number" id="sizeMin" name="sizeMin">
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col s5 m3 l3 push-s1 push-m4 push-l4">
|
|
||||||
<input class="sliderInputBox" type="number" id="sizeMax" name="sizeMax">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<br>
|
|
||||||
|
|
||||||
<% if(hasGardenSize) { %>
|
|
||||||
<div class="row center-align">
|
|
||||||
<h5>Površina okućnice</h5>
|
|
||||||
<br><br>
|
|
||||||
<div class="center-align no-ui-slider" id="gardenSizeFilter"></div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<br>
|
|
||||||
<div class="row">
|
|
||||||
<div class="col s5 m3 l3 push-m1 push-l2">
|
|
||||||
<input class="sliderInputBox" type="number" id="gardenSizeMin" name="gardenSizeMin">
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col s5 m3 l3 push-s1 push-m4 push-l4">
|
|
||||||
<input class="sliderInputBox" type="number" id="gardenSizeMax" name="gardenSizeMax">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<% } %>
|
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col s6 push-s3">
|
<div class="col s6 push-s3">
|
||||||
<a id="submit" href="#" class="welcome-center-button waves-effect waves-light btn">Dalje</a>
|
<a id="submit" href="#" class="welcome-center-button waves-effect waves-light btn">Dalje</a>
|
||||||
@@ -66,125 +23,7 @@
|
|||||||
</form>
|
</form>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
$(document).ready(() => {
|
$(document).ready(function(){
|
||||||
const priceSliderOptions = {...<%- priceSliderOptions %>};
|
$('.tabs').tabs();
|
||||||
const sizeSliderOptions = {...<%- sizeSliderOptions %>};
|
|
||||||
const priceStep = priceSliderOptions.step;
|
|
||||||
const sizeStep = sizeSliderOptions.step;
|
|
||||||
delete priceSliderOptions.step;
|
|
||||||
delete sizeSliderOptions.step;
|
|
||||||
|
|
||||||
const updatePriceInputs = (values, handle, unencoded) => {
|
|
||||||
$("#priceMin").val(Math.round(unencoded[0]/priceStep)*priceStep);
|
|
||||||
$("#priceMax").val(Math.round(unencoded[1]/priceStep)*priceStep);
|
|
||||||
}
|
|
||||||
const updateSizeInputs = (values, handle, unencoded) => {
|
|
||||||
$("#sizeMin").val(Math.round(unencoded[0]/sizeStep)*sizeStep);
|
|
||||||
$("#sizeMax").val(Math.round(unencoded[1]/sizeStep)*sizeStep);
|
|
||||||
}
|
|
||||||
|
|
||||||
const priceSlider = document.getElementById("priceFilter");
|
|
||||||
const sizeSlider = document.getElementById("sizeFilter");
|
|
||||||
|
|
||||||
const priceSliderObject = noUiSlider.create(priceSlider, priceSliderOptions);
|
|
||||||
const sizeSliderObject = noUiSlider.create(sizeSlider, sizeSliderOptions);
|
|
||||||
|
|
||||||
priceSliderObject.on('slide', updatePriceInputs);
|
|
||||||
sizeSliderObject.on('slide', updateSizeInputs);
|
|
||||||
|
|
||||||
const priceMinChangeHandler = (element) => {
|
|
||||||
if (element && element.currentTarget && element.currentTarget.value){
|
|
||||||
const currentValues = priceSliderObject.get();
|
|
||||||
const newValue = element.currentTarget.value;
|
|
||||||
const fixedNewValue = newValue > currentValues[1] ? currentValues[1] : newValue;
|
|
||||||
priceSliderObject.set([fixedNewValue, null]);
|
|
||||||
$("#priceMin").val(Math.round(priceSliderObject.get()[0]));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
const priceMaxChangeHandler = (element) => {
|
|
||||||
if (element && element.currentTarget && element.currentTarget.value){
|
|
||||||
const newValue = element.currentTarget.value;
|
|
||||||
priceSliderObject.set([null, newValue]);
|
|
||||||
$("#priceMax").val(Math.round(priceSliderObject.get()[1]));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
$("#priceMin").val(priceSliderOptions.start[0]);
|
|
||||||
$("#priceMax").val(priceSliderOptions.start[1]);
|
|
||||||
$("#priceMin").change(priceMinChangeHandler);
|
|
||||||
$("#priceMax").change(priceMaxChangeHandler);
|
|
||||||
|
|
||||||
const sizeMinChangeHandler = (element) => {
|
|
||||||
if (element && element.currentTarget && element.currentTarget.value){
|
|
||||||
const currentValues = sizeSliderObject.get();
|
|
||||||
const newValue = element.currentTarget.value;
|
|
||||||
const fixedNewValue = newValue > currentValues[1] ? currentValues[1] : newValue;
|
|
||||||
sizeSliderObject.set([fixedNewValue, null]);
|
|
||||||
$("#sizeMin").val(Math.round(sizeSliderObject.get()[0]));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
const sizeMaxChangeHandler = (element) => {
|
|
||||||
if (element && element.currentTarget && element.currentTarget.value){
|
|
||||||
const newValue = element.currentTarget.value;
|
|
||||||
sizeSliderObject.set([null, newValue]);
|
|
||||||
$("#sizeMax").val(Math.round(sizeSliderObject.get()[1]));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
$("#sizeMin").val(sizeSliderOptions.start[0]);
|
|
||||||
$("#sizeMax").val(sizeSliderOptions.start[1]);
|
|
||||||
$("#sizeMin").change(sizeMinChangeHandler);
|
|
||||||
$("#sizeMax").change(sizeMaxChangeHandler);
|
|
||||||
|
|
||||||
<% if(hasGardenSize) { %>
|
|
||||||
const gardenSizeSliderOptions = {...<%- gardenSizeSliderOptions %>};
|
|
||||||
const gardenSizeStep = gardenSizeSliderOptions.step;
|
|
||||||
delete gardenSizeSliderOptions.step;
|
|
||||||
|
|
||||||
const updateGardenSizeInputs = (values, handle, unencoded) => {
|
|
||||||
$("#gardenSizeMin").val(Math.round(unencoded[0]/gardenSizeStep)*gardenSizeStep);
|
|
||||||
$("#gardenSizeMax").val(Math.round(unencoded[1]/gardenSizeStep)*gardenSizeStep);
|
|
||||||
}
|
|
||||||
|
|
||||||
const gardenSizeSlider = document.getElementById("gardenSizeFilter");
|
|
||||||
const gardenSizeSliderObject = noUiSlider.create(gardenSizeSlider, gardenSizeSliderOptions);
|
|
||||||
gardenSizeSliderObject.on('slide', updateGardenSizeInputs);
|
|
||||||
const gardenSizeMinChangeHandler = (element) => {
|
|
||||||
if (element && element.currentTarget && element.currentTarget.value){
|
|
||||||
const currentValues = gardenSizeSliderObject.get();
|
|
||||||
const newValue = element.currentTarget.value;
|
|
||||||
const fixedNewValue = newValue > currentValues[1] ? currentValues[1] : newValue;
|
|
||||||
gardenSizeSliderObject.set([fixedNewValue, null]);
|
|
||||||
$("#gardenSizeMin").val(Math.round(gardenSizeSliderObject.get()[0]));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
const gardenSizeMaxChangeHandler = (element) => {
|
|
||||||
if (element && element.currentTarget && element.currentTarget.value){
|
|
||||||
const newValue = element.currentTarget.value;
|
|
||||||
gardenSizeSliderObject.set([null, newValue]);
|
|
||||||
$("#gardenSizeMin").val(Math.round(gardenSizeSliderObject.get()[0]));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
$("#gardenSizeMin").val(gardenSizeSliderOptions.start[0]);
|
|
||||||
$("#gardenSizeMax").val(gardenSizeSliderOptions.start[1]);
|
|
||||||
$("#gardenSizeMin").change("step", gardenSizeMinChangeHandler);
|
|
||||||
$("#gardenSizeMax").change("step", gardenSizeMaxChangeHandler);
|
|
||||||
<% } %>
|
|
||||||
|
|
||||||
$("#submit").click(() => {
|
|
||||||
const priceFilterValues = priceSlider.noUiSlider.get();
|
|
||||||
$("#priceFilterMin").val(priceFilterValues[0]);
|
|
||||||
$("#priceFilterMax").val(priceFilterValues[1]);
|
|
||||||
|
|
||||||
const sizeFilterValues = sizeSlider.noUiSlider.get();
|
|
||||||
$("#sizeFilterMin").val(sizeFilterValues[0]);
|
|
||||||
$("#sizeFilterMax").val(sizeFilterValues[1]);
|
|
||||||
|
|
||||||
<% if (hasGardenSize) { %>
|
|
||||||
const gardenSizeFilterValues = gardenSizeSlider.noUiSlider.get();
|
|
||||||
$("#gardenSizeFilterMin").val(gardenSizeFilterValues[0]);
|
|
||||||
$("#gardenSizeFilterMax").val(gardenSizeFilterValues[1]);
|
|
||||||
<% } %>
|
|
||||||
|
|
||||||
$("#filtersForm").submit();
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -3,18 +3,23 @@
|
|||||||
<div class="center-align">
|
<div class="center-align">
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<select class="segment-select" id="adType" name="adType">
|
<span class="segmented">
|
||||||
<option value="<%= AD_TYPE.AD_TYPE_SALE.id %>"
|
<label>
|
||||||
<% if (selectedAdType === AD_TYPE.AD_TYPE_SALE.id) { %>
|
<input type="radio" name="adType" value="<%= AD_TYPE.AD_TYPE_SALE.id %>"
|
||||||
selected="selected"
|
<% if (selectedAdType === AD_TYPE.AD_TYPE_SALE.id) { %>
|
||||||
<% } %>
|
checked
|
||||||
><%= AD_TYPE.AD_TYPE_SALE.title %></option>
|
<% } %>>
|
||||||
<option value="<%= AD_TYPE.AD_TYPE_RENT.id %>"
|
<span class="label"><%= AD_TYPE.AD_TYPE_SALE.title %></span>
|
||||||
<% if (selectedAdType === AD_TYPE.AD_TYPE_RENT.id) { %>
|
</label>
|
||||||
selected="selected"
|
|
||||||
<% } %>
|
<label>
|
||||||
><%= AD_TYPE.AD_TYPE_RENT.title %></option>
|
<input type="radio" name="adType" value="<%= AD_TYPE.AD_TYPE_RENT.id %>"
|
||||||
</select>
|
<% if (selectedAdType === AD_TYPE.AD_TYPE_RENT.id) { %>
|
||||||
|
checked
|
||||||
|
<% } %>>
|
||||||
|
<span class="label"><%= AD_TYPE.AD_TYPE_RENT.title %></span>
|
||||||
|
</label>
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
@@ -37,45 +42,6 @@
|
|||||||
</form>
|
</form>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
(function($) {
|
|
||||||
$.fn.extend({
|
|
||||||
Segment: function() {
|
|
||||||
$(this).each(function() {
|
|
||||||
const self = $(this);
|
|
||||||
const onchange = self.attr('onchange');
|
|
||||||
const wrapper = $("<div>", { class: "ui-segment" });
|
|
||||||
$(this)
|
|
||||||
.find("option")
|
|
||||||
.each(function() {
|
|
||||||
const option = $("<span>", {
|
|
||||||
class: "option",
|
|
||||||
onclick: onchange,
|
|
||||||
text: $(this).text(),
|
|
||||||
value: $(this).val(),
|
|
||||||
});
|
|
||||||
if ($(this).is(":selected")) {
|
|
||||||
option.addClass("active");
|
|
||||||
}
|
|
||||||
wrapper.append(option);
|
|
||||||
});
|
|
||||||
|
|
||||||
wrapper.find("span.option").click(function (){
|
|
||||||
wrapper.find("span.option").removeClass("active");
|
|
||||||
$(this).addClass("active");
|
|
||||||
self.val($(this).attr('value'));
|
|
||||||
});
|
|
||||||
|
|
||||||
$(this).after(wrapper);
|
|
||||||
$(this).hide();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
})(jQuery);
|
|
||||||
|
|
||||||
$(document).ready(() => {
|
|
||||||
$(".segment-select").Segment();
|
|
||||||
});
|
|
||||||
|
|
||||||
function saveAndSubmit(id) {
|
function saveAndSubmit(id) {
|
||||||
$("#realEstateType").val(id);
|
$("#realEstateType").val(id);
|
||||||
$("#realEstateTypeSelection > a").attr("onclick", "");
|
$("#realEstateTypeSelection > a").attr("onclick", "");
|
||||||
|
|||||||
@@ -1,13 +1,29 @@
|
|||||||
<div class="row center-align">
|
<div class="row center-align">
|
||||||
<ul class="collection with-header">
|
<ul class="collection with-header">
|
||||||
<% for(const realEstate of realEstates) { %>
|
<% for(const realEstate of realEstates) { %>
|
||||||
<li class="collection-item">
|
<li class="collection-item">
|
||||||
<div><%= realEstate.title %>
|
<% if(realEstate.adStatus === AD_STATUS.STATUS_VIP) {%>
|
||||||
<a href="<%= realEstate.url %>" class="kivi-color secondary-content">
|
<div>
|
||||||
|
<% //This needs to do redirecting instead of direct link to realestate
|
||||||
|
%>
|
||||||
|
<a href="/redirect/<%= realEstate.id %>" class="estates-link">
|
||||||
|
<%= realEstate.title %>
|
||||||
|
<div class="kivi-color secondary-content">
|
||||||
<i class="material-icons">send</i>
|
<i class="material-icons">send</i>
|
||||||
</a>
|
</div>
|
||||||
</div>
|
</a>
|
||||||
</li>
|
</div>
|
||||||
<% } %>
|
<%} else { %>
|
||||||
</ul>
|
<div>
|
||||||
</div>
|
<a href="<%= realEstate.url %>" class="estates-link">
|
||||||
|
<%= realEstate.title %>
|
||||||
|
<div class="kivi-color secondary-content">
|
||||||
|
<i class="material-icons">send</i>
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<% }%>
|
||||||
|
</li>
|
||||||
|
<% } %>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|||||||
@@ -1,26 +1,49 @@
|
|||||||
<br><br>
|
<br /><br />
|
||||||
<div class="center">
|
<div class="center">
|
||||||
<div class="preloader-wrapper big active center">
|
<div class="preloader-wrapper big active center">
|
||||||
<div class="kivi-spinner-color spinner-layer spinner-green-only">
|
<div class="kivi-spinner-color spinner-layer spinner-green-only">
|
||||||
<div class="circle-clipper left">
|
<div class="circle-clipper left">
|
||||||
<div class="circle"></div>
|
<div class="circle"></div>
|
||||||
</div><div class="gap-patch">
|
</div>
|
||||||
<div class="circle"></div>
|
<div class="gap-patch">
|
||||||
</div><div class="circle-clipper right">
|
<div class="circle"></div>
|
||||||
<div class="circle"></div>
|
</div>
|
||||||
</div>
|
<div class="circle-clipper right">
|
||||||
</div>
|
<div class="circle"></div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<br>
|
<br />
|
||||||
|
<% if(vipAd) { %>
|
||||||
<div class="center">
|
<div class="center">
|
||||||
<h6>
|
<h6>
|
||||||
<a href="<%= redirectUrl %>" rel="noreferrer" id="realEstateUrl">Kliknite ovdje ako Vas web preglednik ne preusmjeri automatski</a>
|
Ovaj oglas zahtijeva da budete član
|
||||||
</h6>
|
<a href="https://prostor.ba/" rel="noreferrer">Prostor.ba</a>.
|
||||||
|
<br />
|
||||||
|
<br />
|
||||||
|
<a href="https://prostor.ba/moj-prostor/prijava" rel="noreferrer"
|
||||||
|
>Ulogujte se</a
|
||||||
|
>
|
||||||
|
ili napravite
|
||||||
|
<a href="https://prostor.ba/moj-prostor/registracija" rel="noreferrer"
|
||||||
|
>novi račun</a
|
||||||
|
>, a potom otvorite <a href="<%= redirectUrl %>" rel="noreferrer">oglas</a>.
|
||||||
|
</h6>
|
||||||
</div>
|
</div>
|
||||||
|
<% } else { %>
|
||||||
|
<div class="center">
|
||||||
|
<h6>
|
||||||
|
<a href="<%= redirectUrl %>" rel="noreferrer" id="realEstateUrl"
|
||||||
|
>Kliknite ovdje ako Vas web preglednik ne preusmjeri automatski</a
|
||||||
|
>
|
||||||
|
</h6>
|
||||||
|
</div>
|
||||||
|
<% }%>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
window.onload = () => {
|
window.onload = function() {
|
||||||
document.getElementById('realEstateUrl').click();
|
document.getElementById("realEstateUrl").click();
|
||||||
}
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
195
app/views/standardFilters.ejs
Normal file
195
app/views/standardFilters.ejs
Normal file
@@ -0,0 +1,195 @@
|
|||||||
|
<br />
|
||||||
|
|
||||||
|
<div class="row center-align">
|
||||||
|
<h5>Cijena (KM)</h5>
|
||||||
|
<br /><br />
|
||||||
|
<div class="col s12">
|
||||||
|
<div class="center-align no-ui-slider" id="priceFilter"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<br />
|
||||||
|
<div class="row">
|
||||||
|
<div class="col s5 m3 l3 push-m1 push-l2">
|
||||||
|
<input class="sliderInputBox" type="number" id="priceMin" name="priceMin" />
|
||||||
|
</div>
|
||||||
|
<div class="col s5 m3 l3 push-s1 push-m4 push-l4">
|
||||||
|
<input class="sliderInputBox" type="number" id="priceMax" name="priceMax" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<div class="row center-align">
|
||||||
|
<h5>Površina (m<sup>2</sup>)</h5>
|
||||||
|
<br /><br />
|
||||||
|
<div class="col s12">
|
||||||
|
<div class="center-align no-ui-slider" id="sizeFilter"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<br />
|
||||||
|
<div class="row">
|
||||||
|
<div class="col s5 m3 l3 push-m1 push-l2">
|
||||||
|
<input class="sliderInputBox" type="number" id="sizeMin" name="sizeMin" />
|
||||||
|
</div>
|
||||||
|
<div class="col s5 m3 l3 push-s1 push-m4 push-l4">
|
||||||
|
<input class="sliderInputBox" type="number" id="sizeMax" name="sizeMax" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<% if(hasGardenSize) { %>
|
||||||
|
<div class="row center-align">
|
||||||
|
<h5>Površina okućnice (m<sup>2</sup>)</h5>
|
||||||
|
<br /><br />
|
||||||
|
<div class="col s12">
|
||||||
|
<div class="center-align no-ui-slider" id="gardenSizeFilter"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<br />
|
||||||
|
<div class="row">
|
||||||
|
<div class="col s5 m3 l3 push-m1 push-l2">
|
||||||
|
<input
|
||||||
|
class="sliderInputBox"
|
||||||
|
type="number"
|
||||||
|
id="gardenSizeMin"
|
||||||
|
name="gardenSizeMin"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="col s5 m3 l3 push-s1 push-m4 push-l4">
|
||||||
|
<input
|
||||||
|
class="sliderInputBox"
|
||||||
|
type="number"
|
||||||
|
id="gardenSizeMax"
|
||||||
|
name="gardenSizeMax"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<% } %>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
$(document).ready(function() {
|
||||||
|
const priceSliderOptions = <%- priceSliderOptions %>;
|
||||||
|
const sizeSliderOptions = <%- sizeSliderOptions %>;
|
||||||
|
const priceStep = priceSliderOptions.step;
|
||||||
|
const sizeStep = sizeSliderOptions.step;
|
||||||
|
delete priceSliderOptions.step;
|
||||||
|
delete sizeSliderOptions.step;
|
||||||
|
|
||||||
|
function updatePriceInputs(values, handle, unencoded) {
|
||||||
|
$("#priceMin").val(Math.round(unencoded[0]/priceStep)*priceStep);
|
||||||
|
$("#priceMax").val(Math.round(unencoded[1]/priceStep)*priceStep);
|
||||||
|
}
|
||||||
|
function updateSizeInputs(values, handle, unencoded) {
|
||||||
|
$("#sizeMin").val(Math.round(unencoded[0]/sizeStep)*sizeStep);
|
||||||
|
$("#sizeMax").val(Math.round(unencoded[1]/sizeStep)*sizeStep);
|
||||||
|
}
|
||||||
|
|
||||||
|
const priceSlider = document.getElementById("priceFilter");
|
||||||
|
const sizeSlider = document.getElementById("sizeFilter");
|
||||||
|
|
||||||
|
const priceSliderObject = noUiSlider.create(priceSlider, priceSliderOptions);
|
||||||
|
const sizeSliderObject = noUiSlider.create(sizeSlider, sizeSliderOptions);
|
||||||
|
|
||||||
|
priceSliderObject.on('slide', updatePriceInputs);
|
||||||
|
sizeSliderObject.on('slide', updateSizeInputs);
|
||||||
|
|
||||||
|
function priceMinChangeHandler(element) {
|
||||||
|
if (element && element.currentTarget && element.currentTarget.value){
|
||||||
|
const currentValues = priceSliderObject.get();
|
||||||
|
const newValue = element.currentTarget.value;
|
||||||
|
const fixedNewValue = newValue > currentValues[1] ? currentValues[1] : newValue;
|
||||||
|
priceSliderObject.set([fixedNewValue, null]);
|
||||||
|
$("#priceMin").val(Math.round(priceSliderObject.get()[0]));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function priceMaxChangeHandler(element) {
|
||||||
|
if (element && element.currentTarget && element.currentTarget.value){
|
||||||
|
const newValue = element.currentTarget.value;
|
||||||
|
priceSliderObject.set([null, newValue]);
|
||||||
|
$("#priceMax").val(Math.round(priceSliderObject.get()[1]));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$("#priceMin").val(priceSliderOptions.start[0]);
|
||||||
|
$("#priceMax").val(priceSliderOptions.start[1]);
|
||||||
|
$("#priceMin").change(priceMinChangeHandler);
|
||||||
|
$("#priceMax").change(priceMaxChangeHandler);
|
||||||
|
|
||||||
|
function sizeMinChangeHandler(element) {
|
||||||
|
if (element && element.currentTarget && element.currentTarget.value){
|
||||||
|
const currentValues = sizeSliderObject.get();
|
||||||
|
const newValue = element.currentTarget.value;
|
||||||
|
const fixedNewValue = newValue > currentValues[1] ? currentValues[1] : newValue;
|
||||||
|
sizeSliderObject.set([fixedNewValue, null]);
|
||||||
|
$("#sizeMin").val(Math.round(sizeSliderObject.get()[0]));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function sizeMaxChangeHandler(element) {
|
||||||
|
if (element && element.currentTarget && element.currentTarget.value){
|
||||||
|
const newValue = element.currentTarget.value;
|
||||||
|
sizeSliderObject.set([null, newValue]);
|
||||||
|
$("#sizeMax").val(Math.round(sizeSliderObject.get()[1]));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$("#sizeMin").val(sizeSliderOptions.start[0]);
|
||||||
|
$("#sizeMax").val(sizeSliderOptions.start[1]);
|
||||||
|
$("#sizeMin").change(sizeMinChangeHandler);
|
||||||
|
$("#sizeMax").change(sizeMaxChangeHandler);
|
||||||
|
|
||||||
|
<% if(hasGardenSize) { %>
|
||||||
|
const gardenSizeSliderOptions = <%- gardenSizeSliderOptions %>;
|
||||||
|
const gardenSizeStep = gardenSizeSliderOptions.step;
|
||||||
|
delete gardenSizeSliderOptions.step;
|
||||||
|
|
||||||
|
function updateGardenSizeInputs(values, handle, unencoded) {
|
||||||
|
$("#gardenSizeMin").val(Math.round(unencoded[0]/gardenSizeStep)*gardenSizeStep);
|
||||||
|
$("#gardenSizeMax").val(Math.round(unencoded[1]/gardenSizeStep)*gardenSizeStep);
|
||||||
|
}
|
||||||
|
|
||||||
|
const gardenSizeSlider = document.getElementById("gardenSizeFilter");
|
||||||
|
const gardenSizeSliderObject = noUiSlider.create(gardenSizeSlider, gardenSizeSliderOptions);
|
||||||
|
gardenSizeSliderObject.on('slide', updateGardenSizeInputs);
|
||||||
|
function gardenSizeMinChangeHandler(element) {
|
||||||
|
if (element && element.currentTarget && element.currentTarget.value){
|
||||||
|
const currentValues = gardenSizeSliderObject.get();
|
||||||
|
const newValue = element.currentTarget.value;
|
||||||
|
const fixedNewValue = newValue > currentValues[1] ? currentValues[1] : newValue;
|
||||||
|
gardenSizeSliderObject.set([fixedNewValue, null]);
|
||||||
|
$("#gardenSizeMin").val(Math.round(gardenSizeSliderObject.get()[0]));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function gardenSizeMaxChangeHandler(element) {
|
||||||
|
if (element && element.currentTarget && element.currentTarget.value){
|
||||||
|
const newValue = element.currentTarget.value;
|
||||||
|
gardenSizeSliderObject.set([null, newValue]);
|
||||||
|
$("#gardenSizeMin").val(Math.round(gardenSizeSliderObject.get()[0]));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$("#gardenSizeMin").val(gardenSizeSliderOptions.start[0]);
|
||||||
|
$("#gardenSizeMax").val(gardenSizeSliderOptions.start[1]);
|
||||||
|
$("#gardenSizeMin").change("step", gardenSizeMinChangeHandler);
|
||||||
|
$("#gardenSizeMax").change("step", gardenSizeMaxChangeHandler);
|
||||||
|
<% } %>
|
||||||
|
|
||||||
|
$("#submit").click(function() {
|
||||||
|
const priceFilterValues = priceSlider.noUiSlider.get();
|
||||||
|
$("#priceFilterMin").val(priceFilterValues[0]);
|
||||||
|
$("#priceFilterMax").val(priceFilterValues[1]);
|
||||||
|
|
||||||
|
const sizeFilterValues = sizeSlider.noUiSlider.get();
|
||||||
|
$("#sizeFilterMin").val(sizeFilterValues[0]);
|
||||||
|
$("#sizeFilterMax").val(sizeFilterValues[1]);
|
||||||
|
|
||||||
|
<% if (hasGardenSize) { %>
|
||||||
|
const gardenSizeFilterValues = gardenSizeSlider.noUiSlider.get();
|
||||||
|
$("#gardenSizeFilterMin").val(gardenSizeFilterValues[0]);
|
||||||
|
$("#gardenSizeFilterMax").val(gardenSizeFilterValues[1]);
|
||||||
|
<% } %>
|
||||||
|
|
||||||
|
$("#filtersForm").submit();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
@@ -1,4 +1,3 @@
|
|||||||
<!-- -->
|
|
||||||
<br><br>
|
<br><br>
|
||||||
<div class="row center-align">
|
<div class="row center-align">
|
||||||
<img src="assets/images/logo.svg" alt="kivi logo" width="160">
|
<img src="assets/images/logo.svg" alt="kivi logo" width="160">
|
||||||
@@ -8,8 +7,26 @@
|
|||||||
<div> Na vaš email. </div>
|
<div> Na vaš email. </div>
|
||||||
<div> BESPLATNO </div>
|
<div> BESPLATNO </div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row center-align">
|
<form method="POST" name="welcomeForm">
|
||||||
<div class="col s6 push-s3">
|
<div class="row center-align">
|
||||||
<a href="<%= nextStep %>" class="welcome-center-button btn">Javi mi</a>
|
<div class="col s5 m4 l3 push-s1 push-m2 push-l3">
|
||||||
|
<a href="#" onclick="saleClick()" class="welcome-center-button btn">Kupi</a>
|
||||||
|
</div>
|
||||||
|
<div class="col s5 m4 l3 push-s1 push-m2 push-l3">
|
||||||
|
<a href="#" onclick="rentClick()" class="welcome-center-button btn">Unajmi</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<input type="hidden" id="adType" name="adType">
|
||||||
|
</form>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
function saleClick(){
|
||||||
|
$("#adType").val("<%= AD_TYPE.AD_TYPE_SALE.id %>");
|
||||||
|
document.welcomeForm.submit();
|
||||||
|
}
|
||||||
|
|
||||||
|
function rentClick(){
|
||||||
|
$("#adType").val("<%= AD_TYPE.AD_TYPE_RENT.id %>");
|
||||||
|
document.welcomeForm.submit();
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|||||||
@@ -14,6 +14,9 @@ MAX_REAL_ESTATES_IN_FIRST_EMAIL=Max number of real estates that will be shown in
|
|||||||
#=============== GOOGLE ANALYTICS =============#
|
#=============== GOOGLE ANALYTICS =============#
|
||||||
GA_ID=Google Analytics ID
|
GA_ID=Google Analytics ID
|
||||||
|
|
||||||
|
#=============== GOOGLE MAPS =============#
|
||||||
|
API_MAP_KEY=(your-key-here)
|
||||||
|
|
||||||
#=============== AWS SDK EMAIL SETTINGS =======#
|
#=============== AWS SDK EMAIL SETTINGS =======#
|
||||||
AWS_KEY_ID=(your-key-here)
|
AWS_KEY_ID=(your-key-here)
|
||||||
AWS_SECRET_ACCESS_KEY=(your-key-here)
|
AWS_SECRET_ACCESS_KEY=(your-key-here)
|
||||||
@@ -31,6 +34,7 @@ OLX_CRAWLER_AD_TYPE=enum name of what type of ads should be crawled, check commo
|
|||||||
OLX_CRAWLER_AD_CATEGORIES=comma separated list of enum names of categories to be included, check common/enums.js file for valid values
|
OLX_CRAWLER_AD_CATEGORIES=comma separated list of enum names of categories to be included, check common/enums.js file for valid values
|
||||||
OLX_IGNORED_USERNAMES=comma separated list of usernames to ignore
|
OLX_IGNORED_USERNAMES=comma separated list of usernames to ignore
|
||||||
OLX_DELAY_BETWEEN_PAGES=time in miliseconds to wait before indexing next page
|
OLX_DELAY_BETWEEN_PAGES=time in miliseconds to wait before indexing next page
|
||||||
|
OLX_FORCE_CRAWL=Non-zero value will force crawler to crawl all pages without stopping when known real estate is found
|
||||||
#==RENTAL==
|
#==RENTAL==
|
||||||
RENTAL_MAX_PAGES=Restrict crawler to this number of pages
|
RENTAL_MAX_PAGES=Restrict crawler to this number of pages
|
||||||
RENTAL_MAX_RESULTS_PER_PAGE=Only this number or less results from one page will be scraped and saved
|
RENTAL_MAX_RESULTS_PER_PAGE=Only this number or less results from one page will be scraped and saved
|
||||||
@@ -38,13 +42,17 @@ RENTAL_CRAWLER_AD_TYPE=enum name of what type of ads should be crawled, check co
|
|||||||
RENTAL_CRAWLER_AD_CATEGORIES=comma separated list of enum names of categories to be included, check common/enums.js file for valid values
|
RENTAL_CRAWLER_AD_CATEGORIES=comma separated list of enum names of categories to be included, check common/enums.js file for valid values
|
||||||
RENTAL_IGNORED_USERNAMES=!!! This is not used for rental crawler !!!
|
RENTAL_IGNORED_USERNAMES=!!! This is not used for rental crawler !!!
|
||||||
RENTAL_DELAY_BETWEEN_PAGES=time in miliseconds to wait before indexing next page
|
RENTAL_DELAY_BETWEEN_PAGES=time in miliseconds to wait before indexing next page
|
||||||
|
RENTAL_FORCE_CRAWL=Non-zero value will force crawler to crawl all pages without stopping when known real estate is found
|
||||||
#==PROSTOR==
|
#==PROSTOR==
|
||||||
PROSTOR_MAX_PAGES=!!! This is not used for prostor crawler !!!
|
PROSTOR_MAX_PAGES=!!! This is not used for prostor crawler !!!
|
||||||
PROSTOR_MAX_RESULTS_PER_PAGE=For Prostor crawler, this represents MAX RESULTS in total
|
PROSTOR_MAX_RESULTS_PER_PAGE=For Prostor crawler, this represents how many ads are crawled at once
|
||||||
PROSTOR_CRAWLER_AD_TYPE=enum name of what type of ads should be crawled, check common/enums.js file for valid values
|
PROSTOR_CRAWLER_AD_TYPE=enum name of what type of ads should be crawled, check common/enums.js file for valid values
|
||||||
PROSTOR_CRAWLER_AD_CATEGORIES=comma separated list of enum names of categories to be included, check common/enums.js file for valid values
|
PROSTOR_CRAWLER_AD_CATEGORIES=comma separated list of enum names of categories to be included, check common/enums.js file for valid values
|
||||||
PROSTOR_IGNORED_USERNAMES=!!! This is not used for prostor crawler !!!
|
PROSTOR_IGNORED_USERNAMES=!!! This is not used for prostor crawler !!!
|
||||||
PROSTOR_DELAY_BETWEEN_PAGES=!!! This is not used for prostor crawler !!!
|
PROSTOR_DELAY_BETWEEN_PAGES=!!! This is not used for prostor crawler !!!
|
||||||
|
PROSTOR_FORCE_CRAWL=Non-zero value will force crawler to crawl all pages without stopping when known real estate is found
|
||||||
|
PROSTOR_LOGIN_EMAIL=Email of valid Prostor.ba account for crawling purposes
|
||||||
|
PROSTOR_LOGIN_PASS=Password of valid Prostor.ba account for crawling purposes
|
||||||
#==AKTIDO==
|
#==AKTIDO==
|
||||||
AKTIDO_MAX_PAGES=Restrict crawler to this number of pages
|
AKTIDO_MAX_PAGES=Restrict crawler to this number of pages
|
||||||
AKTIDO_MAX_RESULTS_PER_PAGE=Only this number or less results from one page will be scraped and saved
|
AKTIDO_MAX_RESULTS_PER_PAGE=Only this number or less results from one page will be scraped and saved
|
||||||
@@ -52,3 +60,4 @@ AKTIDO_CRAWLER_AD_TYPE=enum name of what type of ads should be crawled, check co
|
|||||||
AKTIDO_CRAWLER_AD_CATEGORIES=comma separated list of enum names of categories to be included, check common/enums.js file for valid values
|
AKTIDO_CRAWLER_AD_CATEGORIES=comma separated list of enum names of categories to be included, check common/enums.js file for valid values
|
||||||
AKTIDO_IGNORED_USERNAMES=!!! This is not used for aktido crawler !!!
|
AKTIDO_IGNORED_USERNAMES=!!! This is not used for aktido crawler !!!
|
||||||
AKTIDO_DELAY_BETWEEN_PAGES=time in miliseconds to wait before indexing next page
|
AKTIDO_DELAY_BETWEEN_PAGES=time in miliseconds to wait before indexing next page
|
||||||
|
AKTIDO_FORCE_CRAWL=Non-zero value will force crawler to crawl all pages without stopping when known real estate is found
|
||||||
|
|||||||
97
package-lock.json
generated
97
package-lock.json
generated
@@ -1052,6 +1052,14 @@
|
|||||||
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
|
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
|
||||||
"integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ="
|
"integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ="
|
||||||
},
|
},
|
||||||
|
"eslint-plugin-prettier": {
|
||||||
|
"version": "3.1.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-3.1.2.tgz",
|
||||||
|
"integrity": "sha512-GlolCC9y3XZfv3RQfwGew7NnuFDKsfI4lbvRK+PIIo23SFH+LemGs4cKwzAaRa+Mdb+lQO/STaIayno8T5sJJA==",
|
||||||
|
"requires": {
|
||||||
|
"prettier-linter-helpers": "^1.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"etag": {
|
"etag": {
|
||||||
"version": "1.8.1",
|
"version": "1.8.1",
|
||||||
"resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
|
"resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
|
||||||
@@ -1271,6 +1279,11 @@
|
|||||||
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz",
|
||||||
"integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk="
|
"integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk="
|
||||||
},
|
},
|
||||||
|
"fast-diff": {
|
||||||
|
"version": "1.2.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz",
|
||||||
|
"integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w=="
|
||||||
|
},
|
||||||
"fast-json-stable-stringify": {
|
"fast-json-stable-stringify": {
|
||||||
"version": "2.0.0",
|
"version": "2.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz",
|
||||||
@@ -1333,13 +1346,23 @@
|
|||||||
"integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE="
|
"integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE="
|
||||||
},
|
},
|
||||||
"form-data": {
|
"form-data": {
|
||||||
"version": "2.3.3",
|
"version": "3.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz",
|
"resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.0.tgz",
|
||||||
"integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==",
|
"integrity": "sha512-CKMFDglpbMi6PyN+brwB9Q/GOw0eAnsrEZDgcsH5Krhz5Od/haKHAX0NmQfha2zPPz0JpWzA7GJHGSnvCRLWsg==",
|
||||||
"requires": {
|
"requires": {
|
||||||
"asynckit": "^0.4.0",
|
"asynckit": "^0.4.0",
|
||||||
"combined-stream": "^1.0.6",
|
"combined-stream": "^1.0.8",
|
||||||
"mime-types": "^2.1.12"
|
"mime-types": "^2.1.12"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"combined-stream": {
|
||||||
|
"version": "1.0.8",
|
||||||
|
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
|
||||||
|
"integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
|
||||||
|
"requires": {
|
||||||
|
"delayed-stream": "~1.0.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"forwarded": {
|
"forwarded": {
|
||||||
@@ -1396,7 +1419,8 @@
|
|||||||
"ansi-regex": {
|
"ansi-regex": {
|
||||||
"version": "2.1.1",
|
"version": "2.1.1",
|
||||||
"bundled": true,
|
"bundled": true,
|
||||||
"dev": true
|
"dev": true,
|
||||||
|
"optional": true
|
||||||
},
|
},
|
||||||
"aproba": {
|
"aproba": {
|
||||||
"version": "1.2.0",
|
"version": "1.2.0",
|
||||||
@@ -1417,12 +1441,14 @@
|
|||||||
"balanced-match": {
|
"balanced-match": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"bundled": true,
|
"bundled": true,
|
||||||
"dev": true
|
"dev": true,
|
||||||
|
"optional": true
|
||||||
},
|
},
|
||||||
"brace-expansion": {
|
"brace-expansion": {
|
||||||
"version": "1.1.11",
|
"version": "1.1.11",
|
||||||
"bundled": true,
|
"bundled": true,
|
||||||
"dev": true,
|
"dev": true,
|
||||||
|
"optional": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"balanced-match": "^1.0.0",
|
"balanced-match": "^1.0.0",
|
||||||
"concat-map": "0.0.1"
|
"concat-map": "0.0.1"
|
||||||
@@ -1437,17 +1463,20 @@
|
|||||||
"code-point-at": {
|
"code-point-at": {
|
||||||
"version": "1.1.0",
|
"version": "1.1.0",
|
||||||
"bundled": true,
|
"bundled": true,
|
||||||
"dev": true
|
"dev": true,
|
||||||
|
"optional": true
|
||||||
},
|
},
|
||||||
"concat-map": {
|
"concat-map": {
|
||||||
"version": "0.0.1",
|
"version": "0.0.1",
|
||||||
"bundled": true,
|
"bundled": true,
|
||||||
"dev": true
|
"dev": true,
|
||||||
|
"optional": true
|
||||||
},
|
},
|
||||||
"console-control-strings": {
|
"console-control-strings": {
|
||||||
"version": "1.1.0",
|
"version": "1.1.0",
|
||||||
"bundled": true,
|
"bundled": true,
|
||||||
"dev": true
|
"dev": true,
|
||||||
|
"optional": true
|
||||||
},
|
},
|
||||||
"core-util-is": {
|
"core-util-is": {
|
||||||
"version": "1.0.2",
|
"version": "1.0.2",
|
||||||
@@ -1564,7 +1593,8 @@
|
|||||||
"inherits": {
|
"inherits": {
|
||||||
"version": "2.0.3",
|
"version": "2.0.3",
|
||||||
"bundled": true,
|
"bundled": true,
|
||||||
"dev": true
|
"dev": true,
|
||||||
|
"optional": true
|
||||||
},
|
},
|
||||||
"ini": {
|
"ini": {
|
||||||
"version": "1.3.5",
|
"version": "1.3.5",
|
||||||
@@ -1576,6 +1606,7 @@
|
|||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"bundled": true,
|
"bundled": true,
|
||||||
"dev": true,
|
"dev": true,
|
||||||
|
"optional": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"number-is-nan": "^1.0.0"
|
"number-is-nan": "^1.0.0"
|
||||||
}
|
}
|
||||||
@@ -1590,6 +1621,7 @@
|
|||||||
"version": "3.0.4",
|
"version": "3.0.4",
|
||||||
"bundled": true,
|
"bundled": true,
|
||||||
"dev": true,
|
"dev": true,
|
||||||
|
"optional": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"brace-expansion": "^1.1.7"
|
"brace-expansion": "^1.1.7"
|
||||||
}
|
}
|
||||||
@@ -1597,12 +1629,14 @@
|
|||||||
"minimist": {
|
"minimist": {
|
||||||
"version": "0.0.8",
|
"version": "0.0.8",
|
||||||
"bundled": true,
|
"bundled": true,
|
||||||
"dev": true
|
"dev": true,
|
||||||
|
"optional": true
|
||||||
},
|
},
|
||||||
"minipass": {
|
"minipass": {
|
||||||
"version": "2.3.5",
|
"version": "2.3.5",
|
||||||
"bundled": true,
|
"bundled": true,
|
||||||
"dev": true,
|
"dev": true,
|
||||||
|
"optional": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"safe-buffer": "^5.1.2",
|
"safe-buffer": "^5.1.2",
|
||||||
"yallist": "^3.0.0"
|
"yallist": "^3.0.0"
|
||||||
@@ -1621,6 +1655,7 @@
|
|||||||
"version": "0.5.1",
|
"version": "0.5.1",
|
||||||
"bundled": true,
|
"bundled": true,
|
||||||
"dev": true,
|
"dev": true,
|
||||||
|
"optional": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"minimist": "0.0.8"
|
"minimist": "0.0.8"
|
||||||
}
|
}
|
||||||
@@ -1701,7 +1736,8 @@
|
|||||||
"number-is-nan": {
|
"number-is-nan": {
|
||||||
"version": "1.0.1",
|
"version": "1.0.1",
|
||||||
"bundled": true,
|
"bundled": true,
|
||||||
"dev": true
|
"dev": true,
|
||||||
|
"optional": true
|
||||||
},
|
},
|
||||||
"object-assign": {
|
"object-assign": {
|
||||||
"version": "4.1.1",
|
"version": "4.1.1",
|
||||||
@@ -1713,6 +1749,7 @@
|
|||||||
"version": "1.4.0",
|
"version": "1.4.0",
|
||||||
"bundled": true,
|
"bundled": true,
|
||||||
"dev": true,
|
"dev": true,
|
||||||
|
"optional": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"wrappy": "1"
|
"wrappy": "1"
|
||||||
}
|
}
|
||||||
@@ -1798,7 +1835,8 @@
|
|||||||
"safe-buffer": {
|
"safe-buffer": {
|
||||||
"version": "5.1.2",
|
"version": "5.1.2",
|
||||||
"bundled": true,
|
"bundled": true,
|
||||||
"dev": true
|
"dev": true,
|
||||||
|
"optional": true
|
||||||
},
|
},
|
||||||
"safer-buffer": {
|
"safer-buffer": {
|
||||||
"version": "2.1.2",
|
"version": "2.1.2",
|
||||||
@@ -1834,6 +1872,7 @@
|
|||||||
"version": "1.0.2",
|
"version": "1.0.2",
|
||||||
"bundled": true,
|
"bundled": true,
|
||||||
"dev": true,
|
"dev": true,
|
||||||
|
"optional": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"code-point-at": "^1.0.0",
|
"code-point-at": "^1.0.0",
|
||||||
"is-fullwidth-code-point": "^1.0.0",
|
"is-fullwidth-code-point": "^1.0.0",
|
||||||
@@ -1853,6 +1892,7 @@
|
|||||||
"version": "3.0.1",
|
"version": "3.0.1",
|
||||||
"bundled": true,
|
"bundled": true,
|
||||||
"dev": true,
|
"dev": true,
|
||||||
|
"optional": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"ansi-regex": "^2.0.0"
|
"ansi-regex": "^2.0.0"
|
||||||
}
|
}
|
||||||
@@ -1896,12 +1936,14 @@
|
|||||||
"wrappy": {
|
"wrappy": {
|
||||||
"version": "1.0.2",
|
"version": "1.0.2",
|
||||||
"bundled": true,
|
"bundled": true,
|
||||||
"dev": true
|
"dev": true,
|
||||||
|
"optional": true
|
||||||
},
|
},
|
||||||
"yallist": {
|
"yallist": {
|
||||||
"version": "3.0.3",
|
"version": "3.0.3",
|
||||||
"bundled": true,
|
"bundled": true,
|
||||||
"dev": true
|
"dev": true,
|
||||||
|
"optional": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -3160,6 +3202,19 @@
|
|||||||
"integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=",
|
"integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
|
"prettier": {
|
||||||
|
"version": "1.19.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/prettier/-/prettier-1.19.1.tgz",
|
||||||
|
"integrity": "sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew=="
|
||||||
|
},
|
||||||
|
"prettier-linter-helpers": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz",
|
||||||
|
"integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==",
|
||||||
|
"requires": {
|
||||||
|
"fast-diff": "^1.1.2"
|
||||||
|
}
|
||||||
|
},
|
||||||
"process-nextick-args": {
|
"process-nextick-args": {
|
||||||
"version": "2.0.0",
|
"version": "2.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz",
|
||||||
@@ -3385,6 +3440,18 @@
|
|||||||
"tough-cookie": "~2.4.3",
|
"tough-cookie": "~2.4.3",
|
||||||
"tunnel-agent": "^0.6.0",
|
"tunnel-agent": "^0.6.0",
|
||||||
"uuid": "^3.3.2"
|
"uuid": "^3.3.2"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"form-data": {
|
||||||
|
"version": "2.3.3",
|
||||||
|
"resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz",
|
||||||
|
"integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==",
|
||||||
|
"requires": {
|
||||||
|
"asynckit": "^0.4.0",
|
||||||
|
"combined-stream": "^1.0.6",
|
||||||
|
"mime-types": "^2.1.12"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"require-directory": {
|
"require-directory": {
|
||||||
|
|||||||
@@ -8,12 +8,14 @@
|
|||||||
"start": "node ./index.js",
|
"start": "node ./index.js",
|
||||||
"start-mon": "nodemon ./index.js",
|
"start-mon": "nodemon ./index.js",
|
||||||
"migrate": "cd app && npx sequelize db:migrate",
|
"migrate": "cd app && npx sequelize db:migrate",
|
||||||
"setup": "docker build -t marketalerts . && docker run -e POSTGRES_USER=docker -e POSTGRES_PASSWORD=docker -e POSTGRES_DB=marketalerts --name pg_marketalerts -d -p 5432:5432 marketalerts && sleep 4 && npm run migrate",
|
"setup": "docker build -t marketalerts . && docker run -e POSTGRES_USER=docker -e POSTGRES_PASSWORD=docker -e POSTGRES_DB=marketalerts --name pg_marketalerts -d -p 5432:5432 marketalerts && sleep 10 && npm run migrate",
|
||||||
"docker-start": "docker start pg_marketalerts",
|
"docker-start": "docker start pg_marketalerts",
|
||||||
"docker-stop": "docker stop pg_marketalerts",
|
"docker-stop": "docker stop pg_marketalerts",
|
||||||
"crawl": "cd app/crawler && node npmCrawl.js",
|
"crawl": "cd app/crawler && node npmCrawl.js",
|
||||||
|
"daily-notify": "cd app/npmScripts && node npmDailyNotify.js",
|
||||||
"test-search": "cd test && node searchTest.js",
|
"test-search": "cd test && node searchTest.js",
|
||||||
"test-olx-scraper": "cd test && node olxScrapeTest.js"
|
"test-olx-scraper": "cd test && node olxScrapeTest.js",
|
||||||
|
"test-rental-scraper": "cd test && node rentalScrapeTest.js"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
@@ -33,15 +35,18 @@
|
|||||||
"compression": "^1.7.4",
|
"compression": "^1.7.4",
|
||||||
"dotenv": "^7.0.0",
|
"dotenv": "^7.0.0",
|
||||||
"ejs": "^2.6.1",
|
"ejs": "^2.6.1",
|
||||||
|
"eslint-plugin-prettier": "^3.1.2",
|
||||||
"express": "^4.16.4",
|
"express": "^4.16.4",
|
||||||
"express-ejs-layouts": "^2.5.0",
|
"express-ejs-layouts": "^2.5.0",
|
||||||
"express-layout": "^0.1.0",
|
"express-layout": "^0.1.0",
|
||||||
|
"form-data": "^3.0.0",
|
||||||
"html-to-text": "^5.1.1",
|
"html-to-text": "^5.1.1",
|
||||||
"moment": "^2.24.0",
|
"moment": "^2.24.0",
|
||||||
"moment-timezone": "^0.5.26",
|
"moment-timezone": "^0.5.26",
|
||||||
"node-fetch": "^2.3.0",
|
"node-fetch": "^2.3.0",
|
||||||
"node-schedule": "^1.3.2",
|
"node-schedule": "^1.3.2",
|
||||||
"pg": "^7.10.0",
|
"pg": "^7.10.0",
|
||||||
|
"prettier": "^1.19.1",
|
||||||
"react-step-wizard": "^5.1.0",
|
"react-step-wizard": "^5.1.0",
|
||||||
"sequelize": "^5.18.4",
|
"sequelize": "^5.18.4",
|
||||||
"sequelize-cli": "^5.5.0"
|
"sequelize-cli": "^5.5.0"
|
||||||
|
|||||||
17
test/rentalScrapeTest.js
Normal file
17
test/rentalScrapeTest.js
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
"use strict";
|
||||||
|
|
||||||
|
const rentalCrawler = require("../app/crawler/specificCrawlers/rental");
|
||||||
|
|
||||||
|
const urlToScrape = process.argv[2] || undefined;
|
||||||
|
|
||||||
|
if (urlToScrape) {
|
||||||
|
const crawler = new rentalCrawler();
|
||||||
|
|
||||||
|
(async () => {
|
||||||
|
const data = await crawler.scrapeAd(urlToScrape);
|
||||||
|
console.log(data);
|
||||||
|
})();
|
||||||
|
} else {
|
||||||
|
console.log("No URL to scrape. Use like this : ");
|
||||||
|
console.log("npm run test-rental-scraper -- URL_TO_SCRAPE");
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user