Skip to content
Snippets Groups Projects
Commit 6662c9d0 authored by Jason Salyers's avatar Jason Salyers
Browse files

[JES] Remove the old style of fetching blacklists on posts as it now comes in from the SQL results

parent f9ff22d7
No related branches found
No related tags found
2 merge requests!456Release candidate v1 24,!421Jsalyers blacklist v2
This commit is part of merge request !421. Comments created here will be created in the context of that merge request.
...@@ -58,16 +58,12 @@ async def get_post(context, author, permlink, observer=None): ...@@ -58,16 +58,12 @@ async def get_post(context, author, permlink, observer=None):
valid_account(observer, allow_empty=True) valid_account(observer, allow_empty=True)
valid_permlink(permlink) valid_permlink(permlink)
blacklisted_for_user = None
if observer:
blacklisted_for_user = await Mutes.get_blacklisted_for_observer(observer, context)
sql = "SELECT * FROM bridge_get_post( (:author)::VARCHAR, (:permlink)::VARCHAR )" sql = "SELECT * FROM bridge_get_post( (:author)::VARCHAR, (:permlink)::VARCHAR )"
result = await db.query_all(sql, author=author, permlink=permlink) result = await db.query_all(sql, author=author, permlink=permlink)
post = _bridge_post_object(result[0]) post = _bridge_post_object(result[0])
post['active_votes'] = await find_votes_impl(db, author, permlink, VotesPresentation.BridgeApi) post['active_votes'] = await find_votes_impl(db, author, permlink, VotesPresentation.BridgeApi)
post = append_statistics_to_post(post, result[0], False, blacklisted_for_user) post = append_statistics_to_post(post, result[0], False)
return post return post
@return_error_info @return_error_info
...@@ -233,14 +229,11 @@ async def get_ranked_posts(context, sort:str, start_author:str='', start_permlin ...@@ -233,14 +229,11 @@ async def get_ranked_posts(context, sort:str, start_author:str='', start_permlin
db = context['db'] db = context['db']
async def process_query_results( sql_result ): async def process_query_results( sql_result ):
blacklisted_for_user = None
if observer:
blacklisted_for_user = await Mutes.get_blacklisted_for_observer(observer, context)
posts = [] posts = []
for row in sql_result: for row in sql_result:
post = _bridge_post_object(row) post = _bridge_post_object(row)
post['active_votes'] = await find_votes_impl(db, row['author'], row['permlink'], VotesPresentation.BridgeApi) post['active_votes'] = await find_votes_impl(db, row['author'], row['permlink'], VotesPresentation.BridgeApi)
post = append_statistics_to_post(post, row, row['is_pinned'], blacklisted_for_user) post = append_statistics_to_post(post, row, row['is_pinned'])
posts.append(post) posts.append(post)
return posts return posts
...@@ -298,12 +291,6 @@ async def get_account_posts(context, sort:str, account:str, start_author:str='', ...@@ -298,12 +291,6 @@ async def get_account_posts(context, sort:str, account:str, start_author:str='',
sql_result = await db.query_all(sql, account=account, author=start_author, permlink=start_permlink, limit=limit ) sql_result = await db.query_all(sql, account=account, author=start_author, permlink=start_permlink, limit=limit )
posts = [] posts = []
blacklisted_for_user = None
if observer and account_posts:
# it looks like the opposite would make more sense, that is, to handle observer for 'blog', 'feed' and 'replies',
# since that's when posts can come from various authors, some blacklisted and some not, but original version
# ignored it (only) in those cases
blacklisted_for_user = await Mutes.get_blacklisted_for_observer(observer, context)
for row in sql_result: for row in sql_result:
post = _bridge_post_object(row) post = _bridge_post_object(row)
...@@ -319,7 +306,7 @@ async def get_account_posts(context, sort:str, account:str, start_author:str='', ...@@ -319,7 +306,7 @@ async def get_account_posts(context, sort:str, account:str, start_author:str='',
reblogged_by_list.sort() reblogged_by_list.sort()
post['reblogged_by'] = reblogged_by_list post['reblogged_by'] = reblogged_by_list
post = append_statistics_to_post(post, row, False if account_posts else row['is_pinned'], blacklisted_for_user) post = append_statistics_to_post(post, row, False if account_posts else row['is_pinned'])
posts.append(post) posts.append(post)
return posts return posts
......
...@@ -15,7 +15,7 @@ log = logging.getLogger(__name__) ...@@ -15,7 +15,7 @@ log = logging.getLogger(__name__)
# pylint: disable=too-many-lines # pylint: disable=too-many-lines
def append_statistics_to_post(post, row, is_pinned, blacklisted_for_user={}): def append_statistics_to_post(post, row, is_pinned):
""" apply information such as blacklists and community names/roles to a given post """ """ apply information such as blacklists and community names/roles to a given post """
post['blacklists'] = [] post['blacklists'] = []
......
...@@ -21,10 +21,6 @@ async def get_discussion(context, author:str, permlink:str, observer:str=''): ...@@ -21,10 +21,6 @@ async def get_discussion(context, author:str, permlink:str, observer:str=''):
permlink = valid_permlink(permlink) permlink = valid_permlink(permlink)
observer = valid_account(observer, allow_empty=True) observer = valid_account(observer, allow_empty=True)
blacklisted_for_user = None
if observer:
blacklisted_for_user = await Mutes.get_blacklisted_for_observer(observer, context)
sql = "SELECT * FROM bridge_get_discussion(:author,:permlink,:observer)" sql = "SELECT * FROM bridge_get_discussion(:author,:permlink,:observer)"
rows = await db.query_all(sql, author=author, permlink=permlink, observer=observer) rows = await db.query_all(sql, author=author, permlink=permlink, observer=observer)
if not rows or len(rows) == 0: if not rows or len(rows) == 0:
...@@ -33,7 +29,7 @@ async def get_discussion(context, author:str, permlink:str, observer:str=''): ...@@ -33,7 +29,7 @@ async def get_discussion(context, author:str, permlink:str, observer:str=''):
all_posts = {} all_posts = {}
root_post = _bridge_post_object(rows[0]) root_post = _bridge_post_object(rows[0])
root_post['active_votes'] = await find_votes_impl(db, rows[0]['author'], rows[0]['permlink'], VotesPresentation.BridgeApi) root_post['active_votes'] = await find_votes_impl(db, rows[0]['author'], rows[0]['permlink'], VotesPresentation.BridgeApi)
root_post = append_statistics_to_post(root_post, rows[0], False, blacklisted_for_user) root_post = append_statistics_to_post(root_post, rows[0], False)
root_post['replies'] = [] root_post['replies'] = []
all_posts[root_id] = root_post all_posts[root_id] = root_post
...@@ -46,7 +42,7 @@ async def get_discussion(context, author:str, permlink:str, observer:str=''): ...@@ -46,7 +42,7 @@ async def get_discussion(context, author:str, permlink:str, observer:str=''):
parent_to_children_id_map[parent_id].append(rows[index]['id']) parent_to_children_id_map[parent_id].append(rows[index]['id'])
post = _bridge_post_object(rows[index]) post = _bridge_post_object(rows[index])
post['active_votes'] = await find_votes_impl(db, rows[index]['author'], rows[index]['permlink'], VotesPresentation.BridgeApi) post['active_votes'] = await find_votes_impl(db, rows[index]['author'], rows[index]['permlink'], VotesPresentation.BridgeApi)
post = append_statistics_to_post(post, rows[index], False, blacklisted_for_user) post = append_statistics_to_post(post, rows[index], False)
post['replies'] = [] post['replies'] = []
all_posts[post['post_id']] = post all_posts[post['post_id']] = post
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment