2021-09-24 14:39:37 +00:00
|
|
|
from orm import Shout, ShoutAuthor, ShoutTopic, ShoutRating, ShoutViewByDay, User, Community, Resource,\
|
2021-09-29 13:37:08 +00:00
|
|
|
ShoutRatingStorage, ShoutViewStorage
|
2021-08-07 16:14:20 +00:00
|
|
|
from orm.base import local_session
|
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()
|
|
|
|
|
|
|
|
cmd = "cd %s && git init && touch initial && git add initial && git commit -m 'init repo'" % (repo_path)
|
|
|
|
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()
|
|
|
|
|
|
|
|
cmd = "cd %s && git checkout master" % (repo_path)
|
2021-08-08 09:49:15 +00:00
|
|
|
output = subprocess.check_output(cmd, shell=True)
|
|
|
|
print(output)
|
|
|
|
|
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:
|
2021-09-01 10:28:42 +00:00
|
|
|
limit = 50
|
|
|
|
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-10-30 18:54:50 +00:00
|
|
|
order_by(desc("createdAt")).\
|
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
|
2021-10-31 09:55:25 +00:00
|
|
|
shout.rating = await ShoutRatingStorage.get_rating(shout.id)
|
|
|
|
shout.views = await ShoutViewStorage.get_view(shout.id)
|
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-10-31 14:50:55 +00:00
|
|
|
group_by(Shout.id).\
|
|
|
|
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.rating = row.rating
|
|
|
|
shout.views = await ShoutViewStorage.get_view(shout.id)
|
|
|
|
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-09-01 16:03:00 +00:00
|
|
|
group_by(Shout.id).\
|
|
|
|
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.rating = row.rating
|
2021-10-31 10:43:05 +00:00
|
|
|
shout.views = await ShoutViewStorage.get_view(shout.id)
|
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-09-01 10:28:42 +00:00
|
|
|
group_by(Shout.id).\
|
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
|
2021-10-31 10:43:05 +00:00
|
|
|
shout.rating = await ShoutRatingStorage.get_rating(shout.id)
|
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 10:28:42 +00:00
|
|
|
|
2021-09-01 16:03:00 +00:00
|
|
|
@staticmethod
|
2021-09-02 11:04:58 +00:00
|
|
|
async def prepare_top_authors():
|
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:
|
|
|
|
shout_with_view = select(Shout.id, func.sum(ShoutViewByDay.value).label("view")).\
|
|
|
|
join(ShoutViewByDay).\
|
2021-11-15 08:43:38 +00:00
|
|
|
where(and_(ShoutViewByDay.day > month_ago, Shout.publishedAt != None)).\
|
2021-09-01 16:03:00 +00:00
|
|
|
group_by(Shout.id).\
|
|
|
|
order_by(desc("view")).cte()
|
2021-09-02 11:04:58 +00:00
|
|
|
stmt = select(ShoutAuthor.user, func.sum(shout_with_view.c.view).label("view")).\
|
|
|
|
join(shout_with_view, ShoutAuthor.shout == shout_with_view.c.id).\
|
|
|
|
group_by(ShoutAuthor.user).\
|
|
|
|
order_by(desc("view")).\
|
2021-10-31 17:55:59 +00:00
|
|
|
limit(ShoutsCache.limit)
|
2021-09-02 11:04:58 +00:00
|
|
|
authors = {}
|
2021-09-01 16:03:00 +00:00
|
|
|
for row in session.execute(stmt):
|
2021-09-02 11:04:58 +00:00
|
|
|
authors[row.user] = row.view
|
|
|
|
authors_ids = authors.keys()
|
|
|
|
authors = session.query(User).filter(User.id.in_(authors_ids)).all()
|
2021-10-31 17:55:59 +00:00
|
|
|
async with ShoutsCache.lock:
|
|
|
|
ShoutsCache.top_authors = authors
|
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()
|
|
|
|
await ShoutsCache.prepare_top_authors()
|
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-10-31 15:09:16 +00:00
|
|
|
@query.field("topViewed")
|
|
|
|
async def top_viewed(_, info, limit):
|
2021-10-31 17:55:59 +00:00
|
|
|
async with ShoutsCache.lock:
|
|
|
|
return ShoutsCache.top_viewed[:limit]
|
2021-07-27 05:41:45 +00:00
|
|
|
|
2021-10-31 14:50:55 +00:00
|
|
|
@query.field("topMonth")
|
|
|
|
async def top_month(_, info, limit):
|
2021-10-31 17:55:59 +00:00
|
|
|
async with ShoutsCache.lock:
|
|
|
|
return ShoutsCache.top_month[:limit]
|
2021-10-31 14:50:55 +00:00
|
|
|
|
|
|
|
@query.field("topOverall")
|
|
|
|
async def top_overall(_, info, limit):
|
2021-10-31 17:55:59 +00:00
|
|
|
async with ShoutsCache.lock:
|
|
|
|
return ShoutsCache.top_overall[:limit]
|
2021-10-30 19:15:29 +00:00
|
|
|
|
2021-10-31 10:26:14 +00:00
|
|
|
@query.field("recents")
|
2021-10-30 19:15:29 +00:00
|
|
|
async def recent_shouts(_, info, limit):
|
2021-10-31 17:55:59 +00:00
|
|
|
async with ShoutsCache.lock:
|
|
|
|
return ShoutsCache.recent_shouts[:limit]
|
2021-09-01 16:03:00 +00:00
|
|
|
|
|
|
|
|
2021-09-02 11:04:58 +00:00
|
|
|
@query.field("topAuthors")
|
|
|
|
async def top_authors(_, info, limit):
|
2021-10-31 17:55:59 +00:00
|
|
|
async with ShoutsCache.lock:
|
|
|
|
return ShoutsCache.top_authors[:limit]
|
2021-07-27 05:41:45 +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-07-27 04:58:06 +00:00
|
|
|
auth = info.context["request"].auth
|
|
|
|
user_id = auth.user_id
|
|
|
|
|
2021-08-08 09:49:15 +00:00
|
|
|
with local_session() as session:
|
|
|
|
user = session.query(User).filter(User.id == user_id).first()
|
2021-11-10 08:42:29 +00:00
|
|
|
|
|
|
|
topic_ids = input.get("topic_ids")
|
|
|
|
del input["topic_ids"]
|
2021-08-28 10:13:50 +00:00
|
|
|
|
|
|
|
new_shout = Shout.create(**input)
|
|
|
|
ShoutAuthor.create(
|
|
|
|
shout = new_shout.id,
|
|
|
|
user = user_id)
|
2021-11-10 08:42:29 +00:00
|
|
|
|
|
|
|
for id in topic_ids:
|
|
|
|
topic = ShoutTopic.create(
|
|
|
|
shout = new_shout.id,
|
|
|
|
topic = id)
|
|
|
|
new_shout.topic_ids = topic_ids
|
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-08-28 10:13:50 +00:00
|
|
|
async def update_shout(_, info, id, input):
|
2021-08-17 09:14:26 +00:00
|
|
|
auth = info.context["request"].auth
|
|
|
|
user_id = auth.user_id
|
|
|
|
|
2021-08-28 15:12:13 +00:00
|
|
|
session = local_session()
|
|
|
|
user = session.query(User).filter(User.id == user_id).first()
|
|
|
|
shout = session.query(Shout).filter(Shout.id == id).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-08-28 15:12:13 +00:00
|
|
|
for topic in input.get("topics"):
|
|
|
|
ShoutTopic.create(
|
|
|
|
shout = shout.id,
|
|
|
|
topic = topic)
|
2021-08-18 16:53:55 +00:00
|
|
|
|
|
|
|
task = GitTask(
|
|
|
|
input,
|
|
|
|
user.username,
|
|
|
|
user.email,
|
|
|
|
"update shout %s" % (shout.slug)
|
|
|
|
)
|
|
|
|
|
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
|
|
|
|
async def rate_shout(_, info, shout_id, value):
|
|
|
|
auth = info.context["request"].auth
|
|
|
|
user_id = auth.user_id
|
|
|
|
|
|
|
|
with local_session() as session:
|
|
|
|
rating = session.query(ShoutRating).\
|
|
|
|
filter(and_(ShoutRating.rater_id == user_id, ShoutRating.shout_id == shout_id)).first()
|
|
|
|
if rating:
|
|
|
|
rating.value = value;
|
|
|
|
rating.ts = datetime.now()
|
|
|
|
session.commit()
|
|
|
|
else:
|
|
|
|
rating = ShoutRating.create(
|
|
|
|
rater_id = user_id,
|
|
|
|
shout_id = shout_id,
|
|
|
|
value = value
|
|
|
|
)
|
|
|
|
|
2021-09-29 13:37:08 +00:00
|
|
|
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")
|
|
|
|
async def view_shout(_, info, shout_id):
|
2021-09-29 12:59:48 +00:00
|
|
|
await ShoutViewStorage.inc_view(shout_id)
|
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):
|
2021-09-25 11:40:37 +00:00
|
|
|
slug_fields = [node.name.value for node in info.field_nodes[0].selection_set.selections]
|
|
|
|
slug_fields = set(["authors", "comments", "topics"]).intersection(slug_fields)
|
|
|
|
select_options = [selectinload(getattr(Shout, field)) for field in slug_fields]
|
|
|
|
|
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()
|
2021-09-29 13:37:08 +00:00
|
|
|
shout.rating = await ShoutRatingStorage.get_rating(shout.id)
|
2021-09-29 12:59:48 +00:00
|
|
|
shout.views = await ShoutViewStorage.get_view(shout.id)
|
2021-09-05 08:56:15 +00:00
|
|
|
return shout
|