core/resolvers/zine.py

419 lines
12 KiB
Python
Raw Normal View History

2021-09-24 14:39:37 +00:00
from orm import Shout, ShoutAuthor, ShoutTopic, ShoutRating, ShoutViewByDay, User, Community, Resource,\
ShoutRatingStorage, ShoutViewStorage, Comment, CommentRating, Topic
2021-08-07 16:14:20 +00:00
from orm.base import local_session
2021-12-06 14:50:49 +00:00
from orm.user import UserStorage
2021-07-27 04:58:06 +00:00
2021-08-07 16:14:20 +00:00
from resolvers.base import mutation, query
from auth.authenticate import login_required
from settings import SHOUTS_REPO
import subprocess
2021-08-08 09:49:15 +00:00
import asyncio
2021-08-31 15:15:27 +00:00
from datetime import datetime, timedelta
2021-08-08 09:49:15 +00:00
2021-08-08 12:23:12 +00:00
from pathlib import Path
2021-09-25 11:40:37 +00:00
from sqlalchemy import select, func, desc, and_
2021-09-24 14:39:37 +00:00
from sqlalchemy.orm import selectinload
2021-08-08 12:23:12 +00:00
2021-08-08 09:49:15 +00:00
class GitTask:
queue = asyncio.Queue()
2021-08-28 10:13:50 +00:00
def __init__(self, input, username, user_email, comment):
2021-10-31 08:50:49 +00:00
self.slug = input["slug"]
self.shout_body = input["body"]
self.username = username
self.user_email = user_email
self.comment = comment
2021-08-08 09:49:15 +00:00
GitTask.queue.put_nowait(self)
2021-08-08 12:23:12 +00:00
def init_repo(self):
2021-08-28 10:13:50 +00:00
repo_path = "%s" % (SHOUTS_REPO)
2021-08-08 12:23:12 +00:00
Path(repo_path).mkdir()
2021-12-17 16:14:08 +00:00
cmd = "cd %s && git init && " \
"git config user.name 'discours' && " \
"git config user.email 'discours@discours.io' && " \
"touch initial && git add initial && " \
"git commit -m 'init repo'" \
% (repo_path)
2021-08-08 12:23:12 +00:00
output = subprocess.check_output(cmd, shell=True)
print(output)
2021-08-08 09:49:15 +00:00
def execute(self):
2021-08-28 10:13:50 +00:00
repo_path = "%s" % (SHOUTS_REPO)
2021-08-08 12:23:12 +00:00
if not Path(repo_path).exists():
self.init_repo()
2021-12-17 16:14:08 +00:00
#cmd = "cd %s && git checkout master" % (repo_path)
#output = subprocess.check_output(cmd, shell=True)
#print(output)
2021-08-08 09:49:15 +00:00
2021-08-08 12:23:12 +00:00
shout_filename = "%s.md" % (self.slug)
shout_full_filename = "%s/%s" % (repo_path, shout_filename)
2021-08-08 09:49:15 +00:00
with open(shout_full_filename, mode='w', encoding='utf-8') as shout_file:
shout_file.write(self.shout_body)
author = "%s <%s>" % (self.username, self.user_email)
2021-08-08 12:23:12 +00:00
cmd = "cd %s && git add %s && git commit -m '%s' --author='%s'" % \
(repo_path, shout_filename, self.comment, author)
2021-08-08 09:49:15 +00:00
output = subprocess.check_output(cmd, shell=True)
print(output)
@staticmethod
async def git_task_worker():
print("git task worker start")
while True:
task = await GitTask.queue.get()
try:
task.execute()
except Exception as err:
print("git task worker error = %s" % (err))
2021-07-27 04:58:06 +00:00
2021-10-31 17:55:59 +00:00
class ShoutsCache:
2022-01-08 09:11:12 +00:00
limit = 200
2021-09-01 10:28:42 +00:00
period = 60*60 #1 hour
lock = asyncio.Lock()
2021-10-30 16:58:15 +00:00
@staticmethod
2021-10-30 18:54:50 +00:00
async def prepare_recent_shouts():
with local_session() as session:
2021-10-31 09:55:25 +00:00
stmt = select(Shout).\
2021-11-04 12:06:49 +00:00
options(selectinload(Shout.authors), selectinload(Shout.topics)).\
2021-11-15 08:43:38 +00:00
where(Shout.publishedAt != None).\
2021-12-17 14:56:05 +00:00
order_by(desc("publishedAt")).\
2021-10-31 17:55:59 +00:00
limit(ShoutsCache.limit)
2021-10-30 18:54:50 +00:00
shouts = []
for row in session.execute(stmt):
shout = row.Shout
shout.ratings = await ShoutRatingStorage.get_ratings(shout.slug)
2021-10-30 18:54:50 +00:00
shouts.append(shout)
2021-10-31 17:55:59 +00:00
async with ShoutsCache.lock:
ShoutsCache.recent_shouts = shouts
2021-10-30 18:54:50 +00:00
2021-10-30 16:58:15 +00:00
2021-09-01 16:03:00 +00:00
@staticmethod
2021-10-31 14:50:55 +00:00
async def prepare_top_overall():
with local_session() as session:
stmt = select(Shout, func.sum(ShoutRating.value).label("rating")).\
2021-11-04 12:06:49 +00:00
options(selectinload(Shout.authors), selectinload(Shout.topics)).\
2021-10-31 14:50:55 +00:00
join(ShoutRating).\
2021-11-15 08:43:38 +00:00
where(Shout.publishedAt != None).\
2021-12-13 07:50:33 +00:00
group_by(Shout.slug).\
2021-10-31 14:50:55 +00:00
order_by(desc("rating")).\
2021-10-31 17:55:59 +00:00
limit(ShoutsCache.limit)
2021-10-31 14:50:55 +00:00
shouts = []
for row in session.execute(stmt):
shout = row.Shout
shout.ratings = await ShoutRatingStorage.get_ratings(shout.slug)
2021-10-31 14:50:55 +00:00
shouts.append(shout)
2021-10-31 17:55:59 +00:00
async with ShoutsCache.lock:
ShoutsCache.top_overall = shouts
2021-10-31 14:50:55 +00:00
@staticmethod
async def prepare_top_month():
2021-11-04 11:26:50 +00:00
month_ago = datetime.now() - timedelta(days = 30)
2021-09-01 16:03:00 +00:00
with local_session() as session:
stmt = select(Shout, func.sum(ShoutRating.value).label("rating")).\
2021-11-04 12:06:49 +00:00
options(selectinload(Shout.authors), selectinload(Shout.topics)).\
2021-09-01 16:03:00 +00:00
join(ShoutRating).\
2021-11-15 08:43:38 +00:00
where(and_(Shout.createdAt > month_ago, Shout.publishedAt != None)).\
2021-12-13 07:50:33 +00:00
group_by(Shout.slug).\
2021-09-01 16:03:00 +00:00
order_by(desc("rating")).\
2021-10-31 17:55:59 +00:00
limit(ShoutsCache.limit)
2021-09-01 16:03:00 +00:00
shouts = []
for row in session.execute(stmt):
shout = row.Shout
shout.ratings = await ShoutRatingStorage.get_ratings(shout.slug)
2021-09-01 16:03:00 +00:00
shouts.append(shout)
2021-10-31 17:55:59 +00:00
async with ShoutsCache.lock:
ShoutsCache.top_month = shouts
2021-09-01 16:03:00 +00:00
2021-09-01 10:28:42 +00:00
@staticmethod
2021-10-31 15:09:16 +00:00
async def prepare_top_viewed():
2021-11-04 11:26:50 +00:00
month_ago = datetime.now() - timedelta(days = 30)
2021-09-01 10:28:42 +00:00
with local_session() as session:
2021-11-04 11:26:50 +00:00
stmt = select(Shout, func.sum(ShoutViewByDay.value).label("views")).\
2021-11-04 12:06:49 +00:00
options(selectinload(Shout.authors), selectinload(Shout.topics)).\
2021-09-01 10:28:42 +00:00
join(ShoutViewByDay).\
2021-11-15 08:43:38 +00:00
where(and_(ShoutViewByDay.day > month_ago, Shout.publishedAt != None)).\
2021-12-13 07:50:33 +00:00
group_by(Shout.slug).\
2021-11-04 11:26:50 +00:00
order_by(desc("views")).\
2021-10-31 17:55:59 +00:00
limit(ShoutsCache.limit)
2021-09-01 10:28:42 +00:00
shouts = []
for row in session.execute(stmt):
shout = row.Shout
shout.ratings = await ShoutRatingStorage.get_ratings(shout.slug)
2021-11-04 11:26:50 +00:00
shout.views = row.views
2021-09-01 10:28:42 +00:00
shouts.append(shout)
2021-10-31 17:55:59 +00:00
async with ShoutsCache.lock:
ShoutsCache.top_viewed = shouts
2021-09-01 16:03:00 +00:00
2021-09-01 10:28:42 +00:00
@staticmethod
async def worker():
2021-10-30 20:56:49 +00:00
print("shouts cache worker start")
2021-09-01 10:28:42 +00:00
while True:
try:
2021-10-30 20:56:49 +00:00
print("shouts cache updating...")
2021-10-31 17:55:59 +00:00
await ShoutsCache.prepare_top_month()
await ShoutsCache.prepare_top_overall()
await ShoutsCache.prepare_top_viewed()
await ShoutsCache.prepare_recent_shouts()
2021-10-30 20:56:49 +00:00
print("shouts cache update finished")
2021-09-01 10:28:42 +00:00
except Exception as err:
2021-10-30 20:56:49 +00:00
print("shouts cache worker error = %s" % (err))
2021-10-31 17:55:59 +00:00
await asyncio.sleep(ShoutsCache.period)
2021-09-01 10:28:42 +00:00
2021-11-10 08:42:29 +00:00
class ShoutSubscriptions:
lock = asyncio.Lock()
subscriptions = []
2021-09-01 10:28:42 +00:00
2021-11-10 08:42:29 +00:00
@staticmethod
async def register_subscription(subs):
async with ShoutSubscriptions.lock:
ShoutSubscriptions.subscriptions.append(subs)
@staticmethod
async def del_subscription(subs):
async with ShoutSubscriptions.lock:
ShoutSubscriptions.subscriptions.remove(subs)
@staticmethod
async def send_shout(shout):
async with ShoutSubscriptions.lock:
for subs in ShoutSubscriptions.subscriptions:
subs.put_nowait(shout)
2021-12-16 17:45:50 +00:00
2021-10-31 15:09:16 +00:00
@query.field("topViewed")
2021-12-17 18:14:31 +00:00
async def top_viewed(_, info, page, size):
2021-10-31 17:55:59 +00:00
async with ShoutsCache.lock:
2022-01-08 09:09:06 +00:00
return ShoutsCache.top_viewed[(page - 1) * size : page * size]
2021-07-27 05:41:45 +00:00
2021-10-31 14:50:55 +00:00
@query.field("topMonth")
2021-12-17 18:14:31 +00:00
async def top_month(_, info, page, size):
2021-10-31 17:55:59 +00:00
async with ShoutsCache.lock:
2022-01-08 09:09:06 +00:00
return ShoutsCache.top_month[(page - 1) * size : page * size]
2021-10-31 14:50:55 +00:00
@query.field("topOverall")
2021-12-17 18:14:31 +00:00
async def top_overall(_, info, page, size):
2021-10-31 17:55:59 +00:00
async with ShoutsCache.lock:
2022-01-08 09:09:06 +00:00
return ShoutsCache.top_overall[(page - 1) * size : page * size]
2021-10-30 19:15:29 +00:00
2021-10-31 10:26:14 +00:00
@query.field("recents")
2021-12-17 18:14:31 +00:00
async def recent_shouts(_, info, page, size):
2021-10-31 17:55:59 +00:00
async with ShoutsCache.lock:
2022-01-08 09:09:06 +00:00
return ShoutsCache.recent_shouts[(page - 1) * size : page * size]
2021-09-01 16:03:00 +00:00
2021-07-27 04:58:06 +00:00
@mutation.field("createShout")
@login_required
2021-08-08 12:23:12 +00:00
async def create_shout(_, info, input):
2021-12-17 16:14:08 +00:00
user = info.context["request"].user
topic_slugs = input.get("topic_slugs", [])
if topic_slugs:
del input["topic_slugs"]
2021-08-28 10:13:50 +00:00
new_shout = Shout.create(**input)
ShoutAuthor.create(
2021-12-13 07:50:33 +00:00
shout = new_shout.slug,
2021-12-17 16:14:08 +00:00
user = user.id)
2021-11-10 08:42:29 +00:00
2021-12-17 16:14:08 +00:00
if "mainTopic" in input:
topic_slugs.append(input["mainTopic"])
for slug in topic_slugs:
2021-11-10 08:42:29 +00:00
topic = ShoutTopic.create(
2021-12-13 07:50:33 +00:00
shout = new_shout.slug,
topic = slug)
new_shout.topic_slugs = topic_slugs
2021-08-08 09:49:15 +00:00
task = GitTask(
2021-08-08 12:23:12 +00:00
input,
2021-08-08 09:49:15 +00:00
user.username,
user.email,
2021-08-08 12:23:12 +00:00
"new shout %s" % (new_shout.slug)
2021-08-08 09:49:15 +00:00
)
2021-11-10 08:42:29 +00:00
await ShoutSubscriptions.send_shout(new_shout)
2021-08-08 09:49:15 +00:00
2021-07-27 04:58:06 +00:00
return {
"shout" : new_shout
}
2021-08-17 09:14:26 +00:00
@mutation.field("updateShout")
@login_required
2021-12-13 07:50:33 +00:00
async def update_shout(_, info, input):
2021-08-17 09:14:26 +00:00
auth = info.context["request"].auth
user_id = auth.user_id
2021-12-13 07:50:33 +00:00
slug = input["slug"]
2021-08-28 15:12:13 +00:00
session = local_session()
user = session.query(User).filter(User.id == user_id).first()
2021-12-13 07:50:33 +00:00
shout = session.query(Shout).filter(Shout.slug == slug).first()
2021-08-17 09:14:26 +00:00
if not shout:
return {
"error" : "shout not found"
}
2021-08-28 15:12:13 +00:00
authors = [author.id for author in shout.authors]
if not user_id in authors:
2021-08-18 16:53:55 +00:00
scopes = auth.scopes
print(scopes)
if not Resource.shout_id in scopes:
2021-08-17 09:14:26 +00:00
return {
"error" : "access denied"
}
2021-08-28 15:12:13 +00:00
shout.update(input)
shout.updatedAt = datetime.now()
session.commit()
session.close()
2021-08-18 16:53:55 +00:00
2021-12-13 07:50:33 +00:00
for topic in input.get("topic_slugs", []):
2021-08-28 15:12:13 +00:00
ShoutTopic.create(
2021-12-13 07:50:33 +00:00
shout = slug,
2021-08-28 15:12:13 +00:00
topic = topic)
2021-08-18 16:53:55 +00:00
task = GitTask(
input,
user.username,
user.email,
2021-12-13 07:50:33 +00:00
"update shout %s" % (slug)
2021-08-18 16:53:55 +00:00
)
2021-08-17 09:14:26 +00:00
return {
"shout" : shout
}
2021-07-27 04:58:06 +00:00
2021-09-25 11:40:37 +00:00
@mutation.field("rateShout")
@login_required
2021-12-13 07:50:33 +00:00
async def rate_shout(_, info, slug, value):
2021-09-25 11:40:37 +00:00
auth = info.context["request"].auth
2022-01-11 13:33:25 +00:00
user = info.context["request"].user
2021-09-25 11:40:37 +00:00
with local_session() as session:
rating = session.query(ShoutRating).\
filter(and_(ShoutRating.rater == user.slug, ShoutRating.shout == slug)).first()
2021-09-25 11:40:37 +00:00
if rating:
rating.value = value;
rating.ts = datetime.now()
session.commit()
else:
rating = ShoutRating.create(
rater = user.slug,
2021-12-13 07:50:33 +00:00
shout = slug,
2021-09-25 11:40:37 +00:00
value = value
)
await ShoutRatingStorage.update_rating(rating)
2021-09-25 11:40:37 +00:00
return {"error" : ""}
2021-09-27 14:59:44 +00:00
@mutation.field("viewShout")
2021-12-13 07:50:33 +00:00
async def view_shout(_, info, slug):
await ShoutViewStorage.inc_view(slug)
2021-09-27 14:59:44 +00:00
return {"error" : ""}
2021-09-24 14:39:37 +00:00
@query.field("getShoutBySlug")
2021-09-05 07:16:28 +00:00
async def get_shout_by_slug(_, info, slug):
all_fields = [node.name.value for node in info.field_nodes[0].selection_set.selections]
2021-12-12 10:54:06 +00:00
selected_fields = set(["authors", "topics"]).intersection(all_fields)
select_options = [selectinload(getattr(Shout, field)) for field in selected_fields]
2021-09-25 11:40:37 +00:00
2021-09-03 07:16:19 +00:00
with local_session() as session:
2021-09-24 14:39:37 +00:00
shout = session.query(Shout).\
2021-09-25 11:40:37 +00:00
options(select_options).\
2021-09-24 14:39:37 +00:00
filter(Shout.slug == slug).first()
if not shout:
print("shout not exist")
return {} #TODO return error field
shout.ratings = await ShoutRatingStorage.get_ratings(slug)
2021-09-05 08:56:15 +00:00
return shout
2021-12-06 14:50:49 +00:00
@query.field("getShoutComments")
2021-12-13 07:50:33 +00:00
async def get_shout_comments(_, info, slug):
2021-12-06 14:50:49 +00:00
with local_session() as session:
2021-12-12 10:54:06 +00:00
comments = session.query(Comment).\
options(selectinload(Comment.ratings)).\
2021-12-13 07:50:33 +00:00
filter(Comment.shout == slug).\
2021-12-06 14:50:49 +00:00
group_by(Comment.id).all()
2021-12-12 10:54:06 +00:00
for comment in comments:
2021-12-06 14:50:49 +00:00
comment.author = await UserStorage.get_user(comment.author)
return comments
@query.field("shoutsByTopic")
async def shouts_by_topic(_, info, topic, page, size):
2022-01-08 09:09:06 +00:00
page = page - 1
with local_session() as session:
shouts = session.query(Shout).\
join(ShoutTopic).\
2021-12-17 14:56:05 +00:00
where(and_(ShoutTopic.topic == topic, Shout.publishedAt != None)).\
order_by(desc(Shout.publishedAt)).\
limit(size).\
offset(page * size)
return shouts
@query.field("shoutsByAuthor")
async def shouts_by_author(_, info, author, page, size):
2022-01-08 09:09:06 +00:00
page = page - 1
with local_session() as session:
user = session.query(User).\
filter(User.slug == author).first()
if not user:
print("author not exist")
return
shouts = session.query(Shout).\
join(ShoutAuthor).\
2021-12-17 14:56:05 +00:00
where(and_(ShoutAuthor.user == user.id, Shout.publishedAt != None)).\
order_by(desc(Shout.publishedAt)).\
limit(size).\
offset(page * size)
return shouts
@query.field("shoutsByCommunity")
async def shouts_by_community(_, info, community, page, size):
2022-01-08 09:09:06 +00:00
page = page - 1
with local_session() as session:
2021-12-17 14:27:16 +00:00
#TODO fix postgres high load
shouts = session.query(Shout).distinct().\
join(ShoutTopic).\
2021-12-17 14:56:05 +00:00
where(and_(Shout.publishedAt != None,\
ShoutTopic.topic.in_(\
2021-12-17 14:27:16 +00:00
select(Topic.slug).where(Topic.community == community)\
2021-12-17 14:56:05 +00:00
))).\
order_by(desc(Shout.publishedAt)).\
limit(size).\
offset(page * size)
return shouts
2022-01-30 11:28:27 +00:00
@query.field("shoutsByUserRatingOrComment")
async def shouts_by_user_rating_or_comment(_, info, userSlug, page, size):
user = await UserStorage.get_user_by_slug(userSlug)
if not user:
return
with local_session() as session:
shouts_by_rating = session.query(Shout).\
join(ShoutRating).\
where(and_(Shout.publishedAt != None, ShoutRating.rater == userSlug))
shouts_by_comment = session.query(Shout).\
join(Comment).\
where(and_(Shout.publishedAt != None, Comment.author == user.id))
shouts = shouts_by_rating.union(shouts_by_comment).\
order_by(desc(Shout.publishedAt)).\
limit(size).\
offset( (page - 1) * size)
return shouts