69 lines
1.7 KiB
Python
69 lines
1.7 KiB
Python
from sqlalchemy import *
|
|
from sqlalchemy.orm import relationship
|
|
from files.__main__ import Base
|
|
from files.helpers.lazy import lazy
|
|
from os import environ
|
|
from .sub_block import *
|
|
from .sub_subscription import *
|
|
import time
|
|
|
|
SITE_NAME = environ.get("SITE_NAME", '').strip()
|
|
SITE = environ.get("SITE", '').strip()
|
|
if SITE == "localhost": SITE_FULL = 'http://' + SITE
|
|
else: SITE_FULL = 'https://' + SITE
|
|
|
|
class Sub(Base):
|
|
__tablename__ = "subs"
|
|
name = Column(String, primary_key=True)
|
|
sidebar = Column(String)
|
|
sidebar_html = Column(String)
|
|
sidebarurl = Column(String)
|
|
bannerurl = Column(String)
|
|
marseyurl = Column(String)
|
|
css = Column(String)
|
|
stealth = Column(Boolean)
|
|
created_utc = Column(Integer)
|
|
|
|
blocks = relationship("SubBlock", primaryjoin="SubBlock.sub==Sub.name")
|
|
followers = relationship("SubSubscription", primaryjoin="SubSubscription.sub==Sub.name")
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
if "created_utc" not in kwargs: kwargs["created_utc"] = int(time.time())
|
|
super().__init__(*args, **kwargs)
|
|
|
|
def __repr__(self):
|
|
return self.name
|
|
|
|
@property
|
|
@lazy
|
|
def sidebar_url(self):
|
|
if self.sidebarurl: return SITE_FULL + self.sidebarurl
|
|
return f'/i/{SITE_NAME}/sidebar.webp?v=3009'
|
|
|
|
@property
|
|
@lazy
|
|
def banner_url(self):
|
|
if self.bannerurl: return SITE_FULL + self.bannerurl
|
|
return f'/i/{SITE_NAME}/banner.webp?v=3009'
|
|
|
|
@property
|
|
@lazy
|
|
def marsey_url(self):
|
|
if self.marseyurl: return SITE_FULL + self.marseyurl
|
|
return f'/i/{SITE_NAME}/headericon.webp?v=3009'
|
|
|
|
@property
|
|
@lazy
|
|
def subscription_num(self):
|
|
return self.subscriptions.count()
|
|
|
|
@property
|
|
@lazy
|
|
def block_num(self):
|
|
return len(self.blocks)
|
|
|
|
@property
|
|
@lazy
|
|
def follow_num(self):
|
|
return len(self.followers)
|