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()
|
2023-01-02 23:13:26 +00:00
|
|
|
timestamp_end = models.DateTimeField(blank=True, null=True)
|
|
|
|
duration_manual = models.DurationField(blank=True, null=True)
|
2022-12-31 13:32:02 +00:00
|
|
|
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):
|
2023-01-03 19:23:49 +00:00
|
|
|
if self.timestamp_end == None or self.timestamp_start == None:
|
|
|
|
return 0
|
|
|
|
else:
|
|
|
|
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()
|
|
|
|
)
|
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)
|