schema-no-subs2

This commit is contained in:
Tony Rewin 2023-10-06 00:42:34 +03:00
parent 4f0377c57d
commit 400fff4ef0
2 changed files with 13 additions and 98 deletions

8
resolvers/community.py Normal file
View File

@ -0,0 +1,8 @@
def community_follow(id1, slug):
# TODO: implement when needed
return None
def community_unfollow(id1, slug):
# TODO: implement
return None

View File

@ -1,18 +1,11 @@
import asyncio from services.schema import mutation
from services.db import local_session
from services.schema import mutation, subscription
from auth.authenticate import login_required from auth.authenticate import login_required
from auth.credentials import AuthCredentials from auth.credentials import AuthCredentials
# from resolvers.community import community_follow, community_unfollow
from orm.user import AuthorFollower
from orm.topic import TopicFollower
from orm.shout import ShoutReactionsFollower
from resolvers.profile import author_follow, author_unfollow from resolvers.profile import author_follow, author_unfollow
from resolvers.reactions import reactions_follow, reactions_unfollow from resolvers.reactions import reactions_follow, reactions_unfollow
from resolvers.topics import topic_follow, topic_unfollow from resolvers.topics import topic_follow, topic_unfollow
from services.following import Following, FollowingManager, FollowingResult from services.following import FollowingManager, FollowingResult
from graphql.type import GraphQLResolveInfo from resolvers.community import community_follow, community_unfollow
@mutation.field("follow") @mutation.field("follow")
@ -30,8 +23,7 @@ async def follow(_, info, what, slug):
result = FollowingResult("NEW", "topic", slug) result = FollowingResult("NEW", "topic", slug)
await FollowingManager.push("topic", result) await FollowingManager.push("topic", result)
elif what == "COMMUNITY": elif what == "COMMUNITY":
if False: if community_follow(auth.user_id, slug):
# TODO: use community_follow(auth.user_id, slug):
result = FollowingResult("NEW", "community", slug) result = FollowingResult("NEW", "community", slug)
await FollowingManager.push("community", result) await FollowingManager.push("community", result)
elif what == "REACTIONS": elif what == "REACTIONS":
@ -60,7 +52,7 @@ async def unfollow(_, info, what, slug):
result = FollowingResult("DELETED", "topic", slug) result = FollowingResult("DELETED", "topic", slug)
await FollowingManager.push("topic", result) await FollowingManager.push("topic", result)
elif what == "COMMUNITY": elif what == "COMMUNITY":
if False: # TODO: use community_unfollow(auth.user_id, slug): if community_unfollow(auth.user_id, slug):
result = FollowingResult("DELETED", "community", slug) result = FollowingResult("DELETED", "community", slug)
await FollowingManager.push("community", result) await FollowingManager.push("community", result)
elif what == "REACTIONS": elif what == "REACTIONS":
@ -71,88 +63,3 @@ async def unfollow(_, info, what, slug):
return {"error": str(e)} return {"error": str(e)}
return {} return {}
# by author and by topic
@subscription.source("newShout")
@login_required
async def shout_generator(_, info: GraphQLResolveInfo):
print(f"[resolvers.zine] shouts generator {info}")
auth: AuthCredentials = info.context["request"].auth
user_id = auth.user_id
try:
tasks = []
with local_session() as session:
# notify new shout by followed authors
following_topics = (
session.query(TopicFollower)
.where(TopicFollower.follower == user_id)
.all()
)
for topic_id in following_topics:
following_topic = Following("topic", topic_id)
await FollowingManager.register("topic", following_topic)
following_topic_task = following_topic.queue.get()
tasks.append(following_topic_task)
# by followed topics
following_authors = (
session.query(AuthorFollower)
.where(AuthorFollower.follower == user_id)
.all()
)
for author_id in following_authors:
following_author = Following("author", author_id)
await FollowingManager.register("author", following_author)
following_author_task = following_author.queue.get()
tasks.append(following_author_task)
# TODO: use communities
# by followed communities
# following_communities = session.query(CommunityFollower).where(
# CommunityFollower.follower == user_id).all()
# for community_id in following_communities:
# following_community = Following('community', author_id)
# await FollowingManager.register('community', following_community)
# following_community_task = following_community.queue.get()
# tasks.append(following_community_task)
while True:
shout = await asyncio.gather(*tasks)
yield shout
finally:
pass
@subscription.source("newReaction")
@login_required
async def reaction_generator(_, info):
print(f"[resolvers.zine] reactions generator {info}")
auth: AuthCredentials = info.context["request"].auth
user_id = auth.user_id
try:
with local_session() as session:
followings = (
session.query(ShoutReactionsFollower.shout)
.where(ShoutReactionsFollower.follower == user_id)
.unique()
)
# notify new reaction
tasks = []
for shout_id in followings:
following_shout = Following("shout", shout_id)
await FollowingManager.register("shout", following_shout)
following_author_task = following_shout.queue.get()
tasks.append(following_author_task)
while True:
reaction = await asyncio.gather(*tasks)
yield reaction
finally:
pass