Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

filter mutes from recent replies #201

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 15 additions & 4 deletions hive/server/condenser_api/cursor.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
from dateutil.relativedelta import relativedelta

from hive.utils.normalize import rep_to_raw
from hive.server.common.mutes import Mutes

#pylint: disable=too-many-lines

def last_month():
"""Get the date 1 month ago."""
Expand Down Expand Up @@ -114,6 +117,7 @@ async def pids_by_query(db, sort, start_author, start_permlink, limit, tag):

`sort` can be trending, hot, created, promoted, payout, or payout_comments.
"""
#pylint: disable=too-many-arguments
assert sort in ['trending', 'hot', 'created', 'promoted',
'payout', 'payout_comments']

Expand Down Expand Up @@ -316,7 +320,8 @@ async def pids_by_account_comments(db, account: str, start_permlink: str = '', l
return await db.query_col(sql, account=account, start_id=start_id, limit=limit)


async def pids_by_replies_to_account(db, start_author: str, start_permlink: str = '', limit: int = 20):
async def pids_by_replies_to_account(db, start_author: str, start_permlink: str = '',
limit: int = 20):
"""Get a list of post_ids representing replies to an author.

To get the first page of results, specify `start_author` as the
Expand Down Expand Up @@ -346,16 +351,22 @@ async def pids_by_replies_to_account(db, start_author: str, start_permlink: str
else:
parent_account = start_author

mute = ''
muted_accounts = Mutes.all()
if muted_accounts:
mute = " AND author NOT IN :mutes"

sql = """
SELECT id FROM hive_posts
WHERE parent_id IN (SELECT id FROM hive_posts
WHERE author = :parent
AND is_deleted = '0'
ORDER BY id DESC
LIMIT 10000) %s
AND is_deleted = '0'
AND is_deleted = '0' %s
ORDER BY id DESC
LIMIT :limit
""" % seek
""" % (seek, mute)

return await db.query_col(sql, parent=parent_account, start_id=start_id, limit=limit)
return await db.query_col(sql, parent=parent_account, start_id=start_id,
limit=limit, mutes=tuple(muted_accounts))