| const express = require('express'); |
| const cors = require('cors'); |
|
|
| const app = express(); |
| const port = process.env.PORT || 9000; |
|
|
| app.use(cors()); |
| app.use(express.json()); |
|
|
| |
| const mockProperties = [ |
| { |
| id: 1, |
| title: "فيلا ذكية مطلة على البحيرة", |
| price: "15,500,000 ج.م", |
| location: "ماونتن فيو آي سيتي، التجمع الخامس", |
| type: "فيلا مستقلة", |
| image: "https://images.unsplash.com/photo-1613977257363-707ba9348227?w=1000", |
| source: "Property Finder", |
| url: "#", |
| lat: 30.0167, |
| lng: 31.4167, |
| beds: 5, |
| baths: 4, |
| area: 450, |
| threeDTourUrl: "https://my.matterport.com/show/?m=JkxrH6WUKQx" |
| }, |
| { |
| id: 2, |
| title: "شقة فندقية تشطيب كامل", |
| price: "6,200,000 ج.م", |
| location: "زد ويست، الشيخ زايد", |
| type: "شقة", |
| image: "https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=1000", |
| source: "Aqarmap", |
| url: "#", |
| lat: 30.0444, |
| lng: 30.9833, |
| beds: 3, |
| baths: 2, |
| area: 180, |
| threeDTourUrl: "https://my.matterport.com/show/?m=yKkE2g1iQyM" |
| }, |
| { |
| id: 3, |
| title: "تاون هاوس بكومبوند مغلق", |
| price: "9,800,000 ج.م", |
| location: "سيليا، العاصمة الإدارية", |
| type: "تاون هاوس", |
| image: "https://images.unsplash.com/photo-1512917774080-9991f1c4c750?w=1000", |
| source: "RealEstate.gov", |
| url: "#", |
| lat: 30.0000, |
| lng: 31.7000, |
| beds: 4, |
| baths: 3, |
| area: 280, |
| threeDTourUrl: "https://my.matterport.com/show/?m=xWzT8yKj7x" |
| }, |
| { |
| id: 4, |
| title: "بنتهاوس مع روف خاص", |
| price: "11,000,000 ج.م", |
| location: "بالم هيلز، أكتوبر", |
| type: "بنتهاوس", |
| image: "https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1000", |
| source: "Property Finder", |
| url: "#", |
| lat: 29.9500, |
| lng: 30.9333, |
| beds: 4, |
| baths: 4, |
| area: 320, |
| threeDTourUrl: "https://my.matterport.com/show/?m=2t9bE6B3s7m" |
| }, |
| { |
| id: 5, |
| title: "شقة غرفتين بمقدم 5%", |
| price: "3,500,000 ج.م", |
| location: "تاج سيتي، القاهرة الجديدة", |
| type: "شقة", |
| image: "https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=1000", |
| source: "Aqarmap", |
| url: "#", |
| lat: 30.0767, |
| lng: 31.3967, |
| beds: 2, |
| baths: 1, |
| area: 120, |
| threeDTourUrl: "https://my.matterport.com/show/?m=u6GvJ7h8Lq" |
| }, |
| { |
| id: 6, |
| title: "قصر فاخر تصميم كلاسيكي", |
| price: "45,000,000 ج.م", |
| location: "القطامية هايتس، التجمع الخامس", |
| type: "قصر", |
| image: "https://images.unsplash.com/photo-1600607687931-cebf5871f585?w=1000", |
| source: "RealEstate.gov", |
| url: "#", |
| lat: 29.9867, |
| lng: 31.4067, |
| beds: 8, |
| baths: 7, |
| area: 1200, |
| threeDTourUrl: "https://my.matterport.com/show/?m=9kR3m2Lp1q" |
| } |
| ]; |
|
|
| app.get('/api/properties', (req, res) => { |
| res.json({ success: true, data: mockProperties }); |
| }); |
|
|
| app.post('/api/scrape', (req, res) => { |
| console.log("Scraping initiated..."); |
| res.json({ success: true, message: "Scraping job started in the background" }); |
| }); |
|
|
| app.listen(port, () => { |
| console.log(`Aggregator API is running on http://localhost:${port}`); |
| }); |
|
|