PenParse/penparse/webui/models.py

92 lines
2.9 KiB
Python
Raw Normal View History

2024-11-24 07:45:02 +00:00
from django.contrib.auth.models import AbstractUser
from django.contrib.auth.base_user import BaseUserManager
2024-11-23 12:28:00 +00:00
from django.db import models
2024-12-07 22:00:29 +00:00
from uuid import uuid4
2024-12-15 06:35:39 +00:00
from email.header import Charset
2024-12-07 22:00:29 +00:00
2024-11-24 07:45:02 +00:00
class UserManager(BaseUserManager):
"""Define a model manager for User model with no username field."""
use_in_migrations = True
def _create_user(self, email, password, **extra_fields):
"""Create and save a User with the given email and password."""
if not email:
raise ValueError("The given email must be set")
email = self.normalize_email(email)
user = self.model(email=email, **extra_fields)
user.set_password(password)
user.save(using=self._db)
return user
def create_user(self, email, password=None, **extra_fields):
"""Create and save a regular User with the given email and password."""
extra_fields.setdefault("is_staff", False)
extra_fields.setdefault("is_superuser", False)
return self._create_user(email, password, **extra_fields)
def create_superuser(self, email, password, **extra_fields):
"""Create and save a SuperUser with the given email and password."""
extra_fields.setdefault("is_staff", True)
extra_fields.setdefault("is_superuser", True)
if extra_fields.get("is_staff") is not True:
raise ValueError("Superuser must have is_staff=True.")
if extra_fields.get("is_superuser") is not True:
raise ValueError("Superuser must have is_superuser=True.")
return self._create_user(email, password, **extra_fields)
2024-12-10 12:04:26 +00:00
class MemoStatus(models.TextChoices):
Pending = "pending"
Processing = "processing"
Done = "done"
Error = "error"
2024-12-07 22:00:29 +00:00
class ImageMemo(models.Model):
"""Model definition for ImageMemo."""
2024-12-10 12:04:26 +00:00
2024-12-07 22:00:29 +00:00
id = models.UUIDField(primary_key=True, default=uuid4, editable=False)
2024-12-08 15:51:02 +00:00
image_mimetype = models.CharField(max_length=256)
2024-12-10 12:04:26 +00:00
image = models.ImageField(upload_to="uploads/%Y/%m/%d")
2024-12-07 22:00:29 +00:00
content = models.TextField()
2024-12-10 12:04:26 +00:00
author = models.ForeignKey("User", on_delete=models.CASCADE, related_name="memos")
2024-12-07 22:00:29 +00:00
2024-12-15 06:35:39 +00:00
model_name = models.CharField(max_length=255, null=True)
2024-12-07 22:00:29 +00:00
created_at = models.DateTimeField(auto_now_add=True)
2024-12-10 12:04:26 +00:00
updated_at = models.DateTimeField(
auto_now=True,
)
2024-12-07 22:00:29 +00:00
2024-12-10 12:04:26 +00:00
status = models.CharField(
max_length=10, choices=MemoStatus.choices, default=MemoStatus.Pending
)
2024-12-10 10:34:45 +00:00
error_message = models.TextField(null=True)
2024-12-07 22:00:29 +00:00
class Meta:
ordering = ["-created_at"]
2024-11-24 07:45:02 +00:00
class User(AbstractUser):
email = models.EmailField(unique=True)
username = None
first_name = models.CharField(max_length=150, blank=False)
last_name = models.CharField(max_length=150, blank=False)
2024-12-10 12:04:26 +00:00
USERNAME_FIELD = "email"
REQUIRED_FIELDS = ["full_name"]
objects = UserManager() # type: ignore
def __str__(self):
2024-12-10 12:04:26 +00:00
"""Return string representation of our user"""
return self.email