Skip to content
Snippets Groups Projects
Commit 7a603e9d authored by Tim's avatar Tim
Browse files

ensure community always names an existing account. allow posting in unregistered communities.

parent acdc8679
No related branches found
No related tags found
No related merge requests found
...@@ -144,9 +144,8 @@ def is_community_post_valid(community, comment: dict) -> str: ...@@ -144,9 +144,8 @@ def is_community_post_valid(community, comment: dict) -> str:
community_props = get_community(community) community_props = get_community(community)
if not community_props: if not community_props:
# TODO: if a community is not found, assume it's completely open? # if this is not a defined community, it's free to post in.
# all we need to do at that point is validate that its a valid acct name. return True
return False
if is_author_muted(author, community): if is_author_muted(author, community):
return False return False
......
...@@ -115,8 +115,16 @@ def register_posts(ops, date): ...@@ -115,8 +115,16 @@ def register_posts(ops, date):
parent_id, parent_depth, category, community = parent_data parent_id, parent_depth, category, community = parent_data
depth = parent_depth + 1 depth = parent_depth + 1
# community must be an existing account
if not get_account_id(community):
print("Invalid community @{}/{} -- {}".format(op['author'], op['permlink'], community))
community = op['author']
# validated community; will return None if invalid & defaults to author. # validated community; will return None if invalid & defaults to author.
is_valid = int(is_community_post_valid(community, op)) is_valid = int(is_community_post_valid(community, op))
if not is_valid:
print("Invalid post @{}/{} in @{}".format(op['author'], op['permlink'], community))
# if we're reusing a previously-deleted post (rare!), update it # if we're reusing a previously-deleted post (rare!), update it
if id: if id:
......
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