Newer
Older
from django.db import models
from django.contrib.auth.models import AbstractUser
from django.contrib.auth import get_user_model
# Create your models here.
class User(AbstractUser):
"""
Standard Django User model with an added field for a user's coach.
"""
coach = models.ForeignKey(
"self", on_delete=models.CASCADE, related_name="athletes", blank=True, null=True
)
phone_number = models.TextField(max_length=50, blank=True)
country = models.TextField(max_length=50, blank=True)
city = models.TextField(max_length=50, blank=True)
street_address = models.TextField(max_length=50, blank=True)
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
def athlete_directory_path(instance, filename):
"""
Return the path for an athlete's file
:param instance: Current instance containing an athlete
:param filename: Name of the file
:return: Path of file as a string
"""
return f"users/{instance.athlete.id}/{filename}"
class AthleteFile(models.Model):
"""
Model for an athlete's file. Contains fields for the athlete for whom this file was uploaded,
the coach owner, and the file itself.
"""
athlete = models.ForeignKey(
get_user_model(), on_delete=models.CASCADE, related_name="coach_files"
)
owner = models.ForeignKey(
get_user_model(), on_delete=models.CASCADE, related_name="athlete_files"
)
file = models.FileField(upload_to=athlete_directory_path)
class Offer(models.Model):
"""Django model for a coaching offer that one user sends to another.
Each offer has an owner, a recipient, a status, and a timestamp.
Attributes:
owner: Who sent the offer
recipient: Who received the offer
status: The current status of the offer (accept, declined, or pending)
timestamp: When the offer was sent.
"""
owner = models.ForeignKey(
get_user_model(), on_delete=models.CASCADE, related_name="sent_offers"
)
recipient = models.ForeignKey(
get_user_model(), on_delete=models.CASCADE, related_name="received_offers"
)
ACCEPTED = "a"
PENDING = "p"
DECLINED = "d"
STATUS_CHOICES = (
(ACCEPTED, "Accepted"),
(PENDING, "Pending"),
(DECLINED, "Declined"),
)
status = models.CharField(max_length=8, choices=STATUS_CHOICES, default=PENDING)
timestamp = models.DateTimeField(auto_now_add=True)