timetracker/src/web/tracker/models.py

75 lines
2.4 KiB
Python
Raw Normal View History

2022-12-31 13:18:27 +00:00
from django.db import models
from datetime import datetime, timedelta
from django.conf import settings
from zoneinfo import ZoneInfo
from common.util.time import format_duration
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(blank=True, null=True)
duration_manual = models.DurationField(blank=True, null=True)
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 ""
2023-01-04 16:27:54 +00:00
return f"{str(self.purchase)} {str(self.timestamp_start.date())} ({self.duration_any()}{mark})"
2022-12-31 13:18:27 +00:00
def finish_now(self):
self.timestamp_end = datetime.now(ZoneInfo(settings.TIME_ZONE))
2023-01-04 16:27:54 +00:00
def duration_seconds(self):
2023-01-04 18:32:18 +00:00
if self.duration_manual == None:
if self.timestamp_end == None or self.timestamp_start == None:
return timedelta(0)
2023-01-04 16:27:54 +00:00
else:
2023-01-04 18:32:18 +00:00
value = self.timestamp_end - self.timestamp_start
2023-01-03 19:23:49 +00:00
else:
2023-01-04 18:32:18 +00:00
value = self.duration_manual
2023-01-04 16:27:54 +00:00
return value.total_seconds()
2023-01-02 18:36:22 +00:00
def duration_formatted(self) -> str:
dur = self.duration_seconds()
result = format_duration(dur, "%H:%m")
return result
2023-01-04 16:27:54 +00:00
def duration_any(self):
2023-01-02 18:36:22 +00:00
return (
2023-01-04 16:27:54 +00:00
self.duration_formatted()
2023-01-02 18:36:22 +00:00
if self.duration_manual == None
2023-01-04 16:27:54 +00:00
else self.duration_manual
2023-01-02 18:36:22 +00:00
)
2023-01-04 16:25:19 +00:00
def save(self, *args, **kwargs):
if self.timestamp_start != None and self.timestamp_end != None:
self.duration_calculated = self.timestamp_end - self.timestamp_start
super(Session, self).save(*args, **kwargs)