fixed-topicstat-erorrs

This commit is contained in:
tonyrewin 2022-09-14 16:02:05 +03:00
parent 1fc46bb450
commit a585f2a8e0
2 changed files with 20 additions and 11 deletions

View File

@ -1,5 +1,6 @@
import asyncio
from base.orm import local_session
from orm.shout import Shout
from services.stat.reacted import ReactedStorage
from services.stat.viewed import ViewedStorage
from services.zine.shoutauthor import ShoutAuthorStorage
@ -26,16 +27,23 @@ class TopicStat:
async def load_stat(session):
self = TopicStat
shout_topics = session.query(ShoutTopic).all()
print('[stat.topics] shout topics amount', len(shout_topics))
for shout_topic in shout_topics:
# shouts by topics
topic = shout_topic.topic
shout = shout_topic.shout
if not self.shouts_by_topic.get(topic):
self.shouts_by_topic[topic] = []
self.shouts_by_topic[topic].append(shout)
sss = set(self.shouts_by_topic.get(topic, []))
shout = session.query(Shout).where(Shout.slug == shout).first()
sss.union([shout, ])
self.shouts_by_topic[topic] = list(sss)
# authors by topics
authors = await ShoutAuthorStorage.get_authors(shout)
if not self.authors_by_topic.get(topic):
self.authors_by_topic[topic] = []
self.authors_by_topic[topic] = unique(self.authors_by_topic[topic] + authors)
aaa = set(self.authors_by_topic.get(topic, []))
aaa.union(authors)
self.authors_by_topic[topic] = list(aaa)
print("[stat.topics] authors sorted")
print("[stat.topics] shouts sorted")
@ -44,10 +52,9 @@ class TopicStat:
for flw in followings:
topic = flw.topic
user = flw.follower
if topic in self.followers_by_topic:
self.followers_by_topic[topic].append(user)
else:
self.followers_by_topic[topic] = [user, ]
if topic not in self.followers_by_topic:
self.followers_by_topic[topic] = []
self.followers_by_topic[topic].append(user)
print("[stat.topics] followers sorted")
@staticmethod

View File

@ -38,8 +38,8 @@ class ShoutsCache:
select(Shout)
.options(selectinload(Shout.authors), selectinload(Shout.topics))
.where(bool(Shout.publishedAt))
.group_by(Shout.slug)
.order_by(desc("publishedAt"))
.order_by(desc("createdAt"))
.limit(ShoutsCache.limit)
))
async with ShoutsCache.lock:
@ -52,6 +52,8 @@ class ShoutsCache:
shouts = await prepare_shouts(session, (
select(Shout)
.options(selectinload(Shout.authors), selectinload(Shout.topics))
.where(and_(bool(Shout.publishedAt), bool(Reaction.deletedAt)))
.group_by(Shout.slug)
.order_by(desc("createdAt"))
.limit(ShoutsCache.limit)
))