core/resolvers/zine/topics.py

166 lines
4.4 KiB
Python
Raw Normal View History

2023-10-26 21:07:35 +00:00
from sqlalchemy import and_, select, distinct, func
from sqlalchemy.orm import aliased
from auth.authenticate import login_required
2022-08-11 05:53:14 +00:00
from base.orm import local_session
from base.resolvers import mutation, query
2023-10-26 21:07:35 +00:00
from orm.shout import ShoutTopic, ShoutAuthor
2023-10-26 17:56:42 +00:00
from orm.topic import Topic, TopicFollower
2023-10-26 21:07:35 +00:00
from orm import User
2022-09-19 13:50:43 +00:00
2022-11-28 20:29:02 +00:00
def add_topic_stat_columns(q):
2022-12-01 17:32:09 +00:00
aliased_shout_author = aliased(ShoutAuthor)
aliased_topic_follower = aliased(TopicFollower)
2023-10-26 21:07:35 +00:00
q = q.outerjoin(ShoutTopic, Topic.id == ShoutTopic.topic).add_columns(
func.count(distinct(ShoutTopic.shout)).label('shouts_stat')
).outerjoin(aliased_shout_author, ShoutTopic.shout == aliased_shout_author.shout).add_columns(
func.count(distinct(aliased_shout_author.user)).label('authors_stat')
).outerjoin(aliased_topic_follower).add_columns(
func.count(distinct(aliased_topic_follower.follower)).label('followers_stat')
2022-11-28 20:29:02 +00:00
)
q = q.group_by(Topic.id)
return q
def add_stat(topic, stat_columns):
[shouts_stat, authors_stat, followers_stat] = stat_columns
2023-10-26 20:38:31 +00:00
topic.stat = {
"shouts": shouts_stat,
"authors": authors_stat,
2023-10-26 21:07:35 +00:00
"followers": followers_stat
2023-10-26 20:38:31 +00:00
}
2022-01-30 08:50:29 +00:00
2022-11-28 20:29:02 +00:00
return topic
def get_topics_from_query(q):
topics = []
with local_session() as session:
for [topic, *stat_columns] in session.execute(q):
topic = add_stat(topic, stat_columns)
topics.append(topic)
return topics
2022-12-01 14:45:19 +00:00
def followed_by_user(user_id):
2022-11-28 20:29:02 +00:00
q = select(Topic)
q = add_topic_stat_columns(q)
2022-12-01 17:32:09 +00:00
q = q.join(TopicFollower).where(TopicFollower.follower == user_id)
2022-11-28 20:29:02 +00:00
return get_topics_from_query(q)
2022-07-10 18:52:57 +00:00
@query.field("topicsAll")
2022-09-14 15:56:49 +00:00
async def topics_all(_, _info):
2022-11-28 20:29:02 +00:00
q = select(Topic)
q = add_topic_stat_columns(q)
return get_topics_from_query(q)
2022-09-03 10:50:14 +00:00
2021-10-28 10:42:34 +00:00
@query.field("topicsByCommunity")
async def topics_by_community(_, info, community):
2022-11-28 20:29:02 +00:00
q = select(Topic).where(Topic.community == community)
q = add_topic_stat_columns(q)
return get_topics_from_query(q)
2022-09-03 10:50:14 +00:00
2021-10-28 10:42:34 +00:00
@query.field("topicsByAuthor")
2022-09-07 16:19:13 +00:00
async def topics_by_author(_, _info, author):
2022-11-28 20:29:02 +00:00
q = select(Topic)
q = add_topic_stat_columns(q)
2022-11-29 12:36:46 +00:00
q = q.join(User).where(User.slug == author)
2022-11-28 20:29:02 +00:00
return get_topics_from_query(q)
2022-09-03 10:50:14 +00:00
2021-10-28 10:42:34 +00:00
2022-11-10 06:51:40 +00:00
@query.field("getTopic")
async def get_topic(_, _info, slug):
2022-11-28 20:29:02 +00:00
q = select(Topic).where(Topic.slug == slug)
q = add_topic_stat_columns(q)
topics = get_topics_from_query(q)
return topics[0]
2022-11-10 06:51:40 +00:00
@mutation.field("createTopic")
@login_required
2022-09-07 16:19:13 +00:00
async def create_topic(_, _info, inp):
2022-09-22 10:31:44 +00:00
with local_session() as session:
# TODO: check user permissions to create topic for exact community
new_topic = Topic.create(**inp)
session.add(new_topic)
session.commit()
2022-11-28 20:29:02 +00:00
2022-09-03 10:50:14 +00:00
return {"topic": new_topic}
@mutation.field("updateTopic")
@login_required
2022-09-07 16:19:13 +00:00
async def update_topic(_, _info, inp):
slug = inp["slug"]
2022-09-18 14:29:21 +00:00
with local_session() as session:
topic = session.query(Topic).filter(Topic.slug == slug).first()
if not topic:
return {"error": "topic not found"}
else:
topic.update(**inp)
session.commit()
2022-11-28 20:29:02 +00:00
2022-09-18 14:29:21 +00:00
return {"topic": topic}
2022-12-01 14:45:19 +00:00
def topic_follow(user_id, slug):
2023-02-20 17:38:20 +00:00
try:
with local_session() as session:
topic = session.query(Topic).where(Topic.slug == slug).one()
2022-11-29 12:36:46 +00:00
2023-02-20 17:38:20 +00:00
following = TopicFollower.create(topic=topic.id, follower=user_id)
session.add(following)
session.commit()
return True
except:
return False
2022-09-03 10:50:14 +00:00
2022-01-30 08:50:29 +00:00
2022-12-01 14:45:19 +00:00
def topic_unfollow(user_id, slug):
2023-02-20 17:38:20 +00:00
try:
with local_session() as session:
sub = (
2023-10-26 21:07:35 +00:00
session.query(TopicFollower).join(Topic).filter(
and_(
TopicFollower.follower == user_id,
Topic.slug == slug
)
).first()
2023-02-20 17:38:20 +00:00
)
if sub:
session.delete(sub)
session.commit()
return True
except:
pass
return False
2022-09-05 12:05:20 +00:00
@query.field("topicsRandom")
2022-09-06 16:02:05 +00:00
async def topics_random(_, info, amount=12):
2022-11-28 20:29:02 +00:00
q = select(Topic)
2023-02-16 10:30:35 +00:00
q = q.join(ShoutTopic)
q = q.group_by(Topic.id)
2022-12-02 12:42:36 +00:00
q = q.having(func.count(distinct(ShoutTopic.shout)) > 2)
q = q.order_by(func.random()).limit(amount)
2022-11-28 20:29:02 +00:00
2023-02-16 10:30:35 +00:00
topics = []
with local_session() as session:
for [topic] in session.execute(q):
topics.append(topic)
return topics