mirror of
https://github.com/task-17-lct/backend.git
synced 2024-11-15 08:26:37 +03:00
164 lines
5.4 KiB
Python
164 lines
5.4 KiB
Python
from django.contrib.postgres.fields import ArrayField
|
|
from django.db import models
|
|
from location_field.models.plain import PlainLocationField
|
|
from polymorphic.models import PolymorphicModel
|
|
from passfinder.utils.choices import count_max_length
|
|
|
|
|
|
class OIDModel(models.Model):
|
|
oid = models.CharField(primary_key=True, max_length=24, unique=True)
|
|
|
|
class Meta:
|
|
abstract = True
|
|
|
|
|
|
class Region(OIDModel):
|
|
city = models.ForeignKey(
|
|
"City", null=True, related_name="regions", on_delete=models.CASCADE
|
|
)
|
|
title = models.CharField(max_length=250)
|
|
description = models.TextField()
|
|
description_title = models.CharField(max_length=250)
|
|
description_short = models.CharField(max_length=500)
|
|
url = models.URLField()
|
|
showcase_cards = models.JSONField(null=True)
|
|
|
|
def __str__(self):
|
|
return self.title
|
|
|
|
|
|
class RegionMedia(OIDModel):
|
|
file = models.FileField(upload_to="uploads/")
|
|
type = models.CharField(max_length=200)
|
|
region = models.ForeignKey("Region", related_name="media", on_delete=models.CASCADE)
|
|
|
|
|
|
class City(OIDModel):
|
|
title = models.CharField(max_length=250)
|
|
region = models.ForeignKey(
|
|
"Region", related_name="cities", null=True, on_delete=models.SET_NULL
|
|
)
|
|
location = PlainLocationField(zoom=6)
|
|
|
|
def __str__(self):
|
|
return self.title
|
|
|
|
|
|
class Place(OIDModel):
|
|
address = models.CharField(max_length=250, null=True, blank=True)
|
|
parser_source = models.CharField(max_length=250)
|
|
city = models.ForeignKey(
|
|
"City", related_name="places", null=True, on_delete=models.SET_NULL
|
|
)
|
|
region = models.ForeignKey(
|
|
"Region", related_name="places", null=True, on_delete=models.SET_NULL
|
|
)
|
|
title = models.CharField(max_length=250)
|
|
description = models.TextField()
|
|
location = PlainLocationField(zoom=6)
|
|
sites = ArrayField(models.CharField(max_length=250), null=True)
|
|
phones = ArrayField(models.CharField(max_length=250), null=True)
|
|
working_time = models.JSONField(null=True)
|
|
|
|
|
|
class Tag(OIDModel):
|
|
name = models.CharField(max_length=250)
|
|
|
|
def __str__(self):
|
|
return self.name
|
|
|
|
|
|
class BasePoint(OIDModel, PolymorphicModel):
|
|
title = models.CharField(max_length=250)
|
|
parser_source = models.CharField(max_length=250, null=True, blank=True)
|
|
description = models.TextField()
|
|
city = models.ForeignKey(
|
|
"City", related_name="points", null=True, on_delete=models.SET_NULL
|
|
)
|
|
region = models.ForeignKey(
|
|
"Region", related_name="points", null=True, on_delete=models.SET_NULL
|
|
)
|
|
place = models.ForeignKey(
|
|
"Place", related_name="points", null=True, on_delete=models.SET_NULL
|
|
)
|
|
sort = models.IntegerField(default=0)
|
|
location = PlainLocationField(zoom=6)
|
|
can_buy = models.BooleanField(default=True)
|
|
priority = models.BooleanField(default=False)
|
|
|
|
def __str__(self):
|
|
return self.title
|
|
|
|
|
|
class PointMedia(OIDModel):
|
|
file = models.FileField(upload_to="uploads/")
|
|
type = models.CharField(max_length=200)
|
|
point = models.ForeignKey(
|
|
"BasePoint", related_name="media", on_delete=models.CASCADE
|
|
)
|
|
|
|
|
|
class Event(BasePoint):
|
|
class EventType(models.TextChoices):
|
|
yarmarka = "fair", "ярмарка"
|
|
bulvar = "boulevard", "бульвар"
|
|
dostoprimechatelnost = "attraction", "достопримечательность"
|
|
excursii = "excursion", "экскурсия"
|
|
teatr = "theatre", "театр"
|
|
museum = "museum", "музей"
|
|
kino = "movie", "кино"
|
|
concert = "concert", "концерт"
|
|
spektatli = "plays", "спектакли"
|
|
|
|
payment_method = models.CharField(max_length=250, null=True, blank=True)
|
|
type = models.CharField(
|
|
db_index=True,
|
|
choices=EventType.choices,
|
|
max_length=count_max_length(EventType),
|
|
)
|
|
age = models.CharField(
|
|
"Возрастное ограничение", max_length=50, blank=True, null=True
|
|
)
|
|
booking_link = models.URLField(null=True, blank=True)
|
|
discover_moscow_link = models.URLField(null=True, blank=True)
|
|
duration = models.IntegerField(blank=True, null=True)
|
|
ticket_price = models.IntegerField(blank=True, null=True)
|
|
schedule = models.JSONField(null=True)
|
|
|
|
|
|
class Hotel(BasePoint):
|
|
address = models.CharField(max_length=250)
|
|
rooms = models.JSONField(null=True)
|
|
email = models.CharField(max_length=250)
|
|
stars = models.IntegerField(null=True)
|
|
|
|
|
|
class HotelPhone(models.Model):
|
|
hotel = models.ForeignKey("Hotel", related_name="phones", on_delete=models.CASCADE)
|
|
name = models.CharField(max_length=50)
|
|
number = models.CharField(max_length=18)
|
|
|
|
|
|
class Excursion(BasePoint):
|
|
duration_hours = models.IntegerField()
|
|
price = models.IntegerField()
|
|
minGroupCount = models.CharField(max_length=250)
|
|
program = models.TextField()
|
|
|
|
|
|
class ExcursionRoute(models.Model):
|
|
excursion = models.ForeignKey(
|
|
"Excursion", related_name="routes", on_delete=models.CASCADE
|
|
)
|
|
point = models.ForeignKey("Event", related_name="routes", on_delete=models.CASCADE)
|
|
active = models.BooleanField(default=True)
|
|
|
|
|
|
class Restaurant(BasePoint):
|
|
address = models.CharField(max_length=250)
|
|
bill = models.IntegerField(null=True)
|
|
can_reserve = models.BooleanField(default=True)
|
|
avg_time_visit = models.IntegerField(null=True)
|
|
working_time = models.JSONField(null=True)
|
|
phones = ArrayField(models.CharField(max_length=18), null=True)
|