timetracker/src/web/tracker/models.py

52 lines
1.6 KiB
Python
Raw Normal View History

2022-12-31 13:18:27 +00:00
from django.db import models
2023-01-02 18:36:22 +00:00
from datetime import timedelta
2022-12-31 13:18:27 +00:00
class Game(models.Model):
name = models.CharField(max_length=255)
wikidata = models.CharField(max_length=50)
def __str__(self):
return self.name
class Purchase(models.Model):
game = models.ForeignKey("Game", on_delete=models.CASCADE)
platform = models.ForeignKey("Platform", on_delete=models.CASCADE)
date_purchased = models.DateField()
date_refunded = models.DateField(blank=True, null=True)
def __str__(self):
return f"{self.game} ({self.platform})"
class Platform(models.Model):
name = models.CharField(max_length=255)
group = models.CharField(max_length=255)
def __str__(self):
return self.name
class Session(models.Model):
purchase = models.ForeignKey("Purchase", on_delete=models.CASCADE)
timestamp_start = models.DateTimeField()
timestamp_end = models.DateTimeField()
2023-01-02 18:36:22 +00:00
duration_manual = models.DurationField(blank=True, null=True, default=timedelta(0))
duration_calculated = models.DurationField(blank=True, null=True)
note = models.TextField(blank=True, null=True)
2022-12-31 13:18:27 +00:00
def __str__(self):
2023-01-02 18:36:22 +00:00
mark = ", manual" if self.duration_manual != None else ""
return f"{str(self.purchase)} {str(self.timestamp_start.date())} ({self.total_duration()}{mark})"
2022-12-31 13:18:27 +00:00
def calculated_duration(self):
return self.timestamp_end - self.timestamp_start
2023-01-02 18:36:22 +00:00
def total_duration(self):
return (
self.calculated_duration()
if self.duration_manual == None
else self.duration_manual + self.calculated_duration()
)