51 lines
1.9 KiB
Python
51 lines
1.9 KiB
Python
|
import logging
|
||
|
import uuid
|
||
|
|
||
|
from django.contrib.auth.models import AbstractUser
|
||
|
from django.db import models
|
||
|
|
||
|
logger = logging.getLogger(__name__)
|
||
|
|
||
|
|
||
|
class User(AbstractUser):
|
||
|
# Stripe customer ID
|
||
|
stripe_id = models.CharField(max_length=255, null=True, blank=True)
|
||
|
customer_id = models.UUIDField(default=uuid.uuid4, null=True, blank=True)
|
||
|
billing_provider_id = models.CharField(max_length=255, null=True, blank=True)
|
||
|
email = models.EmailField(unique=True)
|
||
|
|
||
|
def __init__(self, *args, **kwargs):
|
||
|
super().__init__(*args, **kwargs)
|
||
|
self._original = self
|
||
|
|
||
|
def get_notification_settings(self):
|
||
|
return NotificationSettings.objects.get_or_create(user=self)[0]
|
||
|
|
||
|
|
||
|
class NotificationSettings(models.Model):
|
||
|
user = models.OneToOneField(User, on_delete=models.CASCADE)
|
||
|
ntfy_topic = models.CharField(max_length=255, null=True, blank=True)
|
||
|
ntfy_url = models.CharField(max_length=255, null=True, blank=True)
|
||
|
|
||
|
def __str__(self):
|
||
|
return f"Notification settings for {self.user}"
|
||
|
|
||
|
|
||
|
# class Perms(models.Model):
|
||
|
# class Meta:
|
||
|
# permissions = (
|
||
|
# ("bypass_hashing", "Can bypass field hashing"), #
|
||
|
# ("bypass_blacklist", "Can bypass the blacklist"), #
|
||
|
# ("bypass_encryption", "Can bypass field encryption"), #
|
||
|
# ("bypass_obfuscation", "Can bypass field obfuscation"), #
|
||
|
# ("bypass_delay", "Can bypass data delay"), #
|
||
|
# ("bypass_randomisation", "Can bypass data randomisation"), #
|
||
|
# ("post_irc", "Can post to IRC"),
|
||
|
# ("post_discord", "Can post to Discord"),
|
||
|
# ("query_search", "Can search with query strings"), #
|
||
|
# ("use_insights", "Can use the Insights page"),
|
||
|
# ("index_int", "Can use the internal index"),
|
||
|
# ("index_meta", "Can use the meta index"),
|
||
|
# ("restricted_sources", "Can access restricted sources"),
|
||
|
# )
|