core/orm/community.py

42 lines
1.5 KiB
Python
Raw Normal View History

2023-11-03 10:10:22 +00:00
import time
2023-11-22 16:38:39 +00:00
from sqlalchemy import Column, ForeignKey, Integer, String
2023-10-23 14:47:11 +00:00
from sqlalchemy.orm import relationship
from orm.author import Author
2023-11-22 16:38:39 +00:00
from services.db import Base, local_session
2023-10-23 14:47:11 +00:00
2021-08-26 21:14:20 +00:00
2023-10-23 14:47:11 +00:00
class CommunityAuthor(Base):
__tablename__ = "community_author"
2022-09-03 10:50:14 +00:00
id = None # type: ignore
2023-10-23 14:47:11 +00:00
follower = Column(ForeignKey("author.id"), primary_key=True)
community = Column(ForeignKey("community.id"), primary_key=True)
2023-11-03 10:10:22 +00:00
joined_at = Column(Integer, nullable=False, default=lambda: int(time.time()))
2023-10-25 16:55:30 +00:00
role = Column(String, nullable=False)
2021-08-26 21:14:20 +00:00
class Community(Base):
2022-09-03 10:50:14 +00:00
__tablename__ = "community"
2023-10-23 14:47:11 +00:00
name = Column(String, nullable=False)
slug = Column(String, nullable=False, unique=True)
2022-09-03 10:50:14 +00:00
desc = Column(String, nullable=False, default="")
pic = Column(String, nullable=False, default="")
2023-11-03 10:10:22 +00:00
created_at = Column(Integer, nullable=False, default=lambda: int(time.time()))
2023-10-23 14:47:11 +00:00
2023-11-03 10:10:22 +00:00
authors = relationship(lambda: Author, secondary=CommunityAuthor.__tablename__)
2022-09-03 10:50:14 +00:00
@staticmethod
def init_table():
2023-11-22 16:38:39 +00:00
with local_session("orm.community") as session:
2023-11-03 10:10:22 +00:00
d = session.query(Community).filter(Community.slug == "discours").first()
2022-11-19 11:35:34 +00:00
if not d:
2023-11-22 16:38:39 +00:00
d = Community(name="Дискурс", slug="discours")
session.add(d)
session.commit()
print("[orm.community] created community %s" % d.slug)
2022-11-19 11:35:34 +00:00
Community.default_community = d
2023-11-22 16:38:39 +00:00
print("[orm.community] default community is %s" % d.slug)