2023-11-03 10:10:22 +00:00
|
|
|
import time
|
2023-10-23 14:47:11 +00:00
|
|
|
from typing import List
|
2023-11-29 20:53:26 +00:00
|
|
|
from sqlalchemy import and_, func, distinct, select, literal, case
|
2023-10-23 14:47:11 +00:00
|
|
|
from sqlalchemy.orm import aliased
|
|
|
|
|
2023-11-29 20:53:26 +00:00
|
|
|
from orm.reaction import Reaction, ReactionKind
|
2023-10-23 14:47:11 +00:00
|
|
|
from services.auth import login_required
|
2023-10-23 14:51:13 +00:00
|
|
|
from services.db import local_session
|
2023-11-03 10:10:22 +00:00
|
|
|
from services.unread import get_total_unread_counter
|
2023-10-23 14:51:13 +00:00
|
|
|
from services.schema import mutation, query
|
2023-11-28 07:53:48 +00:00
|
|
|
from orm.community import Community
|
2023-10-23 14:47:11 +00:00
|
|
|
from orm.shout import ShoutAuthor, ShoutTopic
|
|
|
|
from orm.topic import Topic
|
|
|
|
from orm.author import AuthorFollower, Author, AuthorRating
|
2023-11-22 18:23:15 +00:00
|
|
|
from resolvers.community import followed_communities
|
|
|
|
from resolvers.topic import followed_topics
|
|
|
|
from resolvers.reaction import reacted_shouts_updates as followed_reactions
|
2023-10-23 14:47:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
def add_author_stat_columns(q):
|
2023-12-02 19:45:41 +00:00
|
|
|
shout_author_aliased = aliased(ShoutAuthor)
|
2023-10-23 14:47:11 +00:00
|
|
|
q = q.outerjoin(shout_author_aliased).add_columns(
|
2023-12-02 19:45:41 +00:00
|
|
|
func.count(distinct(shout_author_aliased.shout)).label("shouts_stat")
|
2023-10-23 14:47:11 +00:00
|
|
|
)
|
2023-12-02 19:33:00 +00:00
|
|
|
|
2023-12-02 19:45:41 +00:00
|
|
|
followers_table = aliased(AuthorFollower)
|
2023-10-23 14:47:11 +00:00
|
|
|
q = q.outerjoin(followers_table, followers_table.author == Author.id).add_columns(
|
2023-12-02 19:45:41 +00:00
|
|
|
func.count(distinct(followers_table.follower)).label("followers_stat")
|
2023-10-23 14:47:11 +00:00
|
|
|
)
|
|
|
|
|
2023-12-02 19:45:41 +00:00
|
|
|
followings_table = aliased(AuthorFollower)
|
|
|
|
q = q.outerjoin(followings_table, followings_table.follower == Author.id).add_columns(
|
|
|
|
func.count(distinct(followers_table.author)).label("followings_stat")
|
|
|
|
)
|
|
|
|
|
|
|
|
rating_aliased = aliased(Reaction)
|
|
|
|
# q = q.add_columns(literal(0).label("rating_stat"))
|
2023-12-02 20:38:28 +00:00
|
|
|
q = q.outerjoin(rating_aliased, rating_aliased.shout == shout_author_aliased.shout).add_columns(
|
|
|
|
func.coalesce(
|
|
|
|
func.sum(
|
|
|
|
case(
|
|
|
|
(and_(rating_aliased.kind == ReactionKind.LIKE.value, rating_aliased.reply_to.is_(None)), 1),
|
|
|
|
(and_(rating_aliased.kind == ReactionKind.DISLIKE.value, rating_aliased.reply_to.is_(None)), -1),
|
|
|
|
else_=0,
|
|
|
|
)
|
|
|
|
),
|
|
|
|
0,
|
|
|
|
).label("rating_stat")
|
2023-12-02 19:45:41 +00:00
|
|
|
)
|
2023-10-23 14:47:11 +00:00
|
|
|
|
2023-12-02 19:33:00 +00:00
|
|
|
q = q.add_columns(literal(0).label("commented_stat"))
|
2023-11-29 20:53:26 +00:00
|
|
|
|
2023-12-02 19:45:41 +00:00
|
|
|
# WARNING: too high cpu cost
|
|
|
|
|
2023-12-02 19:33:00 +00:00
|
|
|
# TODO: check version 1
|
|
|
|
# q = q.outerjoin(
|
|
|
|
# Reaction, and_(Reaction.createdBy == User.id, Reaction.body.is_not(None))
|
|
|
|
# ).add_columns(func.count(distinct(Reaction.id))
|
|
|
|
# .label("commented_stat"))
|
|
|
|
|
|
|
|
# TODO: check version 2
|
|
|
|
# q = q.add_columns(
|
|
|
|
# func.count(case((reaction_aliased.kind == ReactionKind.COMMENT.value, 1), else_=0))
|
|
|
|
# .label("commented_stat"))
|
2023-10-23 14:47:11 +00:00
|
|
|
|
2023-11-29 20:53:26 +00:00
|
|
|
# Filter based on shouts where the user is the author
|
|
|
|
q = q.filter(shout_author_aliased.author == Author.id)
|
2023-10-23 14:47:11 +00:00
|
|
|
|
|
|
|
q = q.group_by(Author.id)
|
|
|
|
|
|
|
|
return q
|
|
|
|
|
|
|
|
|
|
|
|
def add_stat(author, stat_columns):
|
|
|
|
[
|
|
|
|
shouts_stat,
|
|
|
|
followers_stat,
|
|
|
|
followings_stat,
|
|
|
|
rating_stat,
|
|
|
|
commented_stat,
|
|
|
|
] = stat_columns
|
|
|
|
author.stat = {
|
|
|
|
"shouts": shouts_stat,
|
|
|
|
"followers": followers_stat,
|
|
|
|
"followings": followings_stat,
|
|
|
|
"rating": rating_stat,
|
|
|
|
"commented": commented_stat,
|
|
|
|
}
|
|
|
|
|
|
|
|
return author
|
|
|
|
|
|
|
|
|
|
|
|
def get_authors_from_query(q):
|
|
|
|
authors = []
|
|
|
|
with local_session() as session:
|
|
|
|
for [author, *stat_columns] in session.execute(q):
|
|
|
|
author = add_stat(author, stat_columns)
|
|
|
|
authors.append(author)
|
2023-12-13 13:27:51 +00:00
|
|
|
print(f"[resolvers.author] get_authors_from_query {authors}")
|
2023-10-23 14:47:11 +00:00
|
|
|
return authors
|
|
|
|
|
|
|
|
|
|
|
|
async def author_followings(author_id: int):
|
|
|
|
return {
|
2023-11-28 07:53:48 +00:00
|
|
|
"unread": await get_total_unread_counter(author_id),
|
|
|
|
"topics": [t.slug for t in await followed_topics(author_id)],
|
|
|
|
"authors": [a.slug for a in await followed_authors(author_id)],
|
|
|
|
"reactions": [s.slug for s in followed_reactions(author_id)],
|
|
|
|
"communities": [c.slug for c in [followed_communities(author_id)] if isinstance(c, Community)],
|
2023-10-23 14:47:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-11-28 07:53:48 +00:00
|
|
|
@mutation.field("update_profile")
|
2023-10-23 14:47:11 +00:00
|
|
|
@login_required
|
|
|
|
async def update_profile(_, info, profile):
|
2023-11-23 23:00:28 +00:00
|
|
|
user_id = info.context["user_id"]
|
2023-10-23 14:47:11 +00:00
|
|
|
with local_session() as session:
|
2023-11-23 23:00:28 +00:00
|
|
|
author = session.query(Author).where(Author.user == user_id).first()
|
2023-11-22 16:38:39 +00:00
|
|
|
Author.update(author, profile)
|
|
|
|
session.add(author)
|
2023-10-23 14:47:11 +00:00
|
|
|
session.commit()
|
|
|
|
return {"error": None, "author": author}
|
|
|
|
|
|
|
|
|
|
|
|
# for mutation.field("follow")
|
|
|
|
def author_follow(follower_id, slug):
|
|
|
|
try:
|
|
|
|
with local_session() as session:
|
|
|
|
author = session.query(Author).where(Author.slug == slug).one()
|
2023-11-22 16:38:39 +00:00
|
|
|
af = AuthorFollower(follower=follower_id, author=author.id)
|
2023-10-23 14:47:11 +00:00
|
|
|
session.add(af)
|
|
|
|
session.commit()
|
|
|
|
return True
|
|
|
|
except Exception:
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
|
|
# for mutation.field("unfollow")
|
|
|
|
def author_unfollow(follower_id, slug):
|
|
|
|
with local_session() as session:
|
|
|
|
flw = (
|
|
|
|
session.query(AuthorFollower)
|
|
|
|
.join(Author, Author.id == AuthorFollower.author)
|
|
|
|
.filter(and_(AuthorFollower.follower == follower_id, Author.slug == slug))
|
|
|
|
.first()
|
|
|
|
)
|
|
|
|
if flw:
|
|
|
|
session.delete(flw)
|
|
|
|
session.commit()
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
2023-12-09 19:02:04 +00:00
|
|
|
@query.field("load_authors_all")
|
|
|
|
async def load_authors_all(_, _info, limit: int = 50, offset: int = 0):
|
2023-10-23 14:47:11 +00:00
|
|
|
q = select(Author)
|
|
|
|
q = add_author_stat_columns(q)
|
|
|
|
q = q.join(ShoutAuthor, Author.id == ShoutAuthor.author)
|
2023-12-09 19:02:04 +00:00
|
|
|
q = q.limit(limit).offset(offset)
|
2023-10-23 14:47:11 +00:00
|
|
|
|
|
|
|
return get_authors_from_query(q)
|
|
|
|
|
|
|
|
|
2023-12-13 19:59:21 +00:00
|
|
|
@query.field("get_author_id")
|
|
|
|
async def get_author_id(_, _info, user: str):
|
|
|
|
with local_session() as session:
|
|
|
|
return session.query(Author).where(Author.user == user).first()
|
|
|
|
|
|
|
|
|
2023-11-28 07:53:48 +00:00
|
|
|
@query.field("get_author")
|
2023-12-13 19:59:21 +00:00
|
|
|
async def get_author(_, _info, slug="", author_id=None):
|
2023-11-29 08:00:00 +00:00
|
|
|
q = None
|
2023-12-13 19:59:21 +00:00
|
|
|
if slug or author_id:
|
2023-12-13 17:13:57 +00:00
|
|
|
if slug != "":
|
2023-11-24 01:53:30 +00:00
|
|
|
q = select(Author).where(Author.slug == slug)
|
2023-11-27 16:03:47 +00:00
|
|
|
elif author_id:
|
|
|
|
q = select(Author).where(Author.id == author_id)
|
2023-11-24 01:53:30 +00:00
|
|
|
q = add_author_stat_columns(q)
|
2023-12-13 13:32:02 +00:00
|
|
|
print(f"[resolvers.author] SQL: {q}")
|
2023-11-24 01:53:30 +00:00
|
|
|
authors = get_authors_from_query(q)
|
2023-12-07 18:29:25 +00:00
|
|
|
if authors:
|
2023-12-13 13:27:51 +00:00
|
|
|
return authors[0]
|
2023-12-07 18:29:25 +00:00
|
|
|
else:
|
|
|
|
return {"error": "cant find author"}
|
2023-10-23 14:47:11 +00:00
|
|
|
|
|
|
|
|
2023-11-28 07:53:48 +00:00
|
|
|
@query.field("load_authors_by")
|
2023-10-23 14:47:11 +00:00
|
|
|
async def load_authors_by(_, _info, by, limit, offset):
|
|
|
|
q = select(Author)
|
|
|
|
q = add_author_stat_columns(q)
|
|
|
|
if by.get("slug"):
|
|
|
|
q = q.filter(Author.slug.ilike(f"%{by['slug']}%"))
|
|
|
|
elif by.get("name"):
|
|
|
|
q = q.filter(Author.name.ilike(f"%{by['name']}%"))
|
|
|
|
elif by.get("topic"):
|
2023-11-22 16:38:39 +00:00
|
|
|
q = q.join(ShoutAuthor).join(ShoutTopic).join(Topic).where(Topic.slug == by["topic"])
|
|
|
|
|
2023-11-03 10:10:22 +00:00
|
|
|
if by.get("last_seen"): # in unixtime
|
|
|
|
before = int(time.time()) - by["last_seen"]
|
|
|
|
q = q.filter(Author.last_seen > before)
|
|
|
|
elif by.get("created_at"): # in unixtime
|
|
|
|
before = int(time.time()) - by["created_at"]
|
|
|
|
q = q.filter(Author.created_at > before)
|
2023-10-23 14:47:11 +00:00
|
|
|
|
2023-11-03 10:10:22 +00:00
|
|
|
q = q.order_by(by.get("order", Author.created_at)).limit(limit).offset(offset)
|
2023-10-23 14:47:11 +00:00
|
|
|
|
|
|
|
return get_authors_from_query(q)
|
|
|
|
|
|
|
|
|
2023-11-28 07:53:48 +00:00
|
|
|
@query.field("get_author_followed")
|
|
|
|
async def get_author_followed(_, _info, slug="", user=None, author_id=None) -> List[Author]:
|
2023-12-07 18:29:25 +00:00
|
|
|
author_id_query = None
|
|
|
|
if slug:
|
2023-10-23 14:47:11 +00:00
|
|
|
author_id_query = select(Author.id).where(Author.slug == slug)
|
2023-12-07 18:29:25 +00:00
|
|
|
elif user:
|
|
|
|
author_id_query = select(Author.id).where(Author.user == user)
|
|
|
|
if not author_id:
|
|
|
|
with local_session() as session:
|
|
|
|
author_id = session.execute(author_id_query).scalar()
|
2023-10-23 14:47:11 +00:00
|
|
|
|
|
|
|
if author_id is None:
|
|
|
|
raise ValueError("Author not found")
|
2023-12-07 18:29:25 +00:00
|
|
|
else:
|
|
|
|
return await followed_authors(author_id) # Author[]
|
2023-10-23 14:47:11 +00:00
|
|
|
|
|
|
|
|
2023-11-28 07:53:48 +00:00
|
|
|
@query.field("get_author_followers")
|
|
|
|
async def get_author_followers(_, _info, slug) -> List[Author]:
|
2023-10-23 14:47:11 +00:00
|
|
|
q = select(Author)
|
|
|
|
q = add_author_stat_columns(q)
|
|
|
|
|
|
|
|
aliased_author = aliased(Author)
|
|
|
|
q = (
|
|
|
|
q.join(AuthorFollower, AuthorFollower.follower == Author.id)
|
|
|
|
.join(aliased_author, aliased_author.id == AuthorFollower.author)
|
|
|
|
.where(aliased_author.slug == slug)
|
|
|
|
)
|
|
|
|
|
|
|
|
return get_authors_from_query(q)
|
|
|
|
|
|
|
|
|
|
|
|
async def followed_authors(follower_id):
|
|
|
|
q = select(Author)
|
|
|
|
q = add_author_stat_columns(q)
|
2023-11-22 16:38:39 +00:00
|
|
|
q = q.join(AuthorFollower, AuthorFollower.author == Author.id).where(AuthorFollower.follower == follower_id)
|
2023-10-23 14:47:11 +00:00
|
|
|
# Pass the query to the get_authors_from_query function and return the results
|
|
|
|
return get_authors_from_query(q)
|
|
|
|
|
|
|
|
|
2023-11-28 07:53:48 +00:00
|
|
|
@mutation.field("rate_author")
|
2023-10-23 14:47:11 +00:00
|
|
|
@login_required
|
2023-11-28 07:53:48 +00:00
|
|
|
async def rate_author(_, info, rated_slug, value):
|
2023-11-23 23:00:28 +00:00
|
|
|
user_id = info.context["user_id"]
|
2023-10-23 14:47:11 +00:00
|
|
|
|
|
|
|
with local_session() as session:
|
2023-11-28 19:07:53 +00:00
|
|
|
rated_author = session.query(Author).filter(Author.slug == rated_slug).first()
|
|
|
|
rater = session.query(Author).filter(Author.slug == user_id).first()
|
|
|
|
if rater and rated_author:
|
2023-11-28 07:53:48 +00:00
|
|
|
rating = (
|
|
|
|
session.query(AuthorRating)
|
2023-11-28 19:07:53 +00:00
|
|
|
.filter(and_(AuthorRating.rater == rater.id, AuthorRating.author == rated_author.id))
|
2023-11-28 07:53:48 +00:00
|
|
|
.first()
|
|
|
|
)
|
2023-11-29 20:22:39 +00:00
|
|
|
if value > 0:
|
|
|
|
rating.plus = True
|
2023-11-22 16:38:39 +00:00
|
|
|
session.add(rating)
|
|
|
|
session.commit()
|
2023-11-28 07:53:48 +00:00
|
|
|
return {}
|
|
|
|
else:
|
|
|
|
try:
|
2023-11-29 20:22:39 +00:00
|
|
|
rating = AuthorRating(rater=rater.id, author=rated_author.id, plus=value > 0)
|
2023-11-28 07:53:48 +00:00
|
|
|
session.add(rating)
|
|
|
|
session.commit()
|
|
|
|
except Exception as err:
|
|
|
|
return {"error": err}
|
2023-10-23 14:47:11 +00:00
|
|
|
return {}
|
2023-11-28 19:07:53 +00:00
|
|
|
|
|
|
|
|
2023-11-28 19:13:53 +00:00
|
|
|
async def create_author(user_id: str, slug: str):
|
2023-11-28 19:07:53 +00:00
|
|
|
with local_session() as session:
|
2023-11-28 19:13:53 +00:00
|
|
|
new_author = Author(user=user_id, slug=slug)
|
2023-11-28 19:07:53 +00:00
|
|
|
session.add(new_author)
|
|
|
|
session.commit()
|