1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00
royalnet/royalpack/tables/wikipages.py

56 lines
1.4 KiB
Python
Raw Permalink Normal View History

2019-11-11 08:56:08 +00:00
from sqlalchemy import Column, \
Text, \
String
from sqlalchemy.dialects.postgresql import UUID
from sqlalchemy.ext.declarative import declared_attr
from royalnet.utils import to_urluuid
class WikiPage:
"""Wiki page properties.
Warning:
Requires PostgreSQL!"""
__tablename__ = "wikipages"
@declared_attr
def page_id(self):
return Column(UUID(as_uuid=True), primary_key=True)
@declared_attr
def title(self):
return Column(String, nullable=False)
@declared_attr
def contents(self):
return Column(Text)
@declared_attr
def format(self):
return Column(String, nullable=False, default="markdown")
@declared_attr
def theme(self):
2020-02-11 18:53:18 +00:00
return Column(String, nullable=False, default="default")
2019-11-11 08:56:08 +00:00
@property
def page_short_id(self):
return to_urluuid(self.page_id)
def json_list(self) -> dict:
return {
"page_id": str(self.page_id),
"page_short_id": self.page_short_id,
"title": self.title
}
def json_full(self) -> dict:
return {
"page_id": str(self.page_id),
"page_short_id": self.page_short_id,
"title": self.title,
"contents": self.contents,
"format": self.format,
"theme": self.theme,
}