Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
hivemind
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hive
hivemind
Commits
7a603e9d
Commit
7a603e9d
authored
7 years ago
by
Tim
Browse files
Options
Downloads
Patches
Plain Diff
ensure community always names an existing account. allow posting in unregistered communities.
parent
acdc8679
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
hive/indexer/community.py
+2
-3
2 additions, 3 deletions
hive/indexer/community.py
hive/indexer/core.py
+8
-0
8 additions, 0 deletions
hive/indexer/core.py
with
10 additions
and
3 deletions
hive/indexer/community.py
+
2
−
3
View file @
7a603e9d
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
hive/indexer/core.py
+
8
−
0
View file @
7a603e9d
...
@@ -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
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment