Files
monica_site/site/social/models.py
T
westfarn 44d300271a
Deploy Beta / unit-tests (push) Successful in 12s
Deploy Beta / docker (push) Successful in 17s
Deploy Beta / deploy-beta (push) Successful in 1m41s
Add LinkedIn OAuth connect with portal-saved app credentials.
Replace manual token paste with Authorization Code flow; store Client ID/secret in the DB from the social accounts UI and surface a copyable callback URL for LinkedIn Auth setup.
2026-08-11 07:52:10 -05:00

111 lines
3.4 KiB
Python

from django.conf import settings
from django.db import models
from core.models import TimeStampedModel, UUIDPrimaryKeyModel
class Platform(models.TextChoices):
FACEBOOK = "facebook", "Facebook"
INSTAGRAM = "instagram", "Instagram"
LINKEDIN = "linkedin", "LinkedIn"
class SocialAppCredentials(UUIDPrimaryKeyModel, TimeStampedModel):
"""
Developer-app OAuth credentials entered in the portal (not env).
client_secret is Fernet-encrypted. One row per platform.
"""
platform = models.CharField(max_length=16, choices=Platform.choices, unique=True)
client_id = models.CharField(max_length=255, blank=True)
encrypted_client_secret = models.TextField(blank=True)
class Meta:
verbose_name_plural = "social app credentials"
ordering = ["platform"]
def __str__(self) -> str:
return f"{self.platform} app credentials"
@property
def is_configured(self) -> bool:
return bool(self.client_id and self.encrypted_client_secret)
class SocialAccount(UUIDPrimaryKeyModel, TimeStampedModel):
platform = models.CharField(max_length=16, choices=Platform.choices)
label = models.CharField(max_length=120)
external_id = models.CharField(max_length=255, blank=True)
# Fernet-encrypted JSON blob of OAuth tokens
encrypted_tokens = models.TextField(blank=True)
is_active = models.BooleanField(default=True)
owner = models.ForeignKey(
settings.AUTH_USER_MODEL,
null=True,
blank=True,
on_delete=models.SET_NULL,
related_name="social_accounts",
)
class Meta:
ordering = ["platform", "label"]
def __str__(self) -> str:
return f"{self.platform}: {self.label}"
class SocialPost(UUIDPrimaryKeyModel, TimeStampedModel):
class Status(models.TextChoices):
DRAFT = "draft", "Draft"
SCHEDULED = "scheduled", "Scheduled"
QUEUED = "queued", "Queued"
PUBLISHING = "publishing", "Publishing"
PUBLISHED = "published", "Published"
FAILED = "failed", "Failed"
CANCELLED = "cancelled", "Cancelled"
body = models.TextField()
media = models.JSONField(default=list, blank=True)
scheduled_for = models.DateTimeField(null=True, blank=True)
status = models.CharField(
max_length=16, choices=Status.choices, default=Status.DRAFT
)
created_by = models.ForeignKey(
settings.AUTH_USER_MODEL,
null=True,
blank=True,
on_delete=models.SET_NULL,
)
ollama_prompt = models.TextField(blank=True)
error = models.TextField(blank=True)
class Meta:
ordering = ["-created_at"]
def __str__(self) -> str:
return f"Post {self.pk} ({self.status})"
class SocialPostTarget(UUIDPrimaryKeyModel, TimeStampedModel):
class Status(models.TextChoices):
PENDING = "pending", "Pending"
PUBLISHED = "published", "Published"
FAILED = "failed", "Failed"
post = models.ForeignKey(
SocialPost, on_delete=models.CASCADE, related_name="targets"
)
account = models.ForeignKey(
SocialAccount, on_delete=models.CASCADE, related_name="targets"
)
platform = models.CharField(max_length=16, choices=Platform.choices)
status = models.CharField(
max_length=16, choices=Status.choices, default=Status.PENDING
)
remote_id = models.CharField(max_length=255, blank=True)
error = models.TextField(blank=True)
class Meta:
unique_together = ("post", "account")