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
40430b24
Commit
40430b24
authored
4 years ago
by
Jason Salyers
Browse files
Options
Downloads
Patches
Plain Diff
[JES] Pass observer through to bridge.get_discussion
parent
0d09ea5f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!456
Release candidate v1 24
,
!385
[JES] Pass observer through to bridge.get_discussion
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
hive/db/sql_scripts/bridge_get_discussion.sql
+5
-3
5 additions, 3 deletions
hive/db/sql_scripts/bridge_get_discussion.sql
hive/server/bridge_api/thread.py
+2
-2
2 additions, 2 deletions
hive/server/bridge_api/thread.py
with
7 additions
and
5 deletions
hive/db/sql_scripts/bridge_get_discussion.sql
+
5
−
3
View file @
40430b24
...
...
@@ -2,7 +2,8 @@ DROP FUNCTION IF EXISTS get_discussion
;
CREATE
OR
REPLACE
FUNCTION
get_discussion
(
in
_author
hive_accounts
.
name
%
TYPE
,
in
_permlink
hive_permlink_data
.
permlink
%
TYPE
in
_permlink
hive_permlink_data
.
permlink
%
TYPE
,
in
_observer
VARCHAR
)
RETURNS
TABLE
(
...
...
@@ -72,12 +73,13 @@ BEGIN
SELECT
hp
.
id
,
hp
.
parent_id
FROM
hive_posts
hp
WHERE
hp
.
id
=
__post_id
AND
NOT
hp
.
is_muted
UNION
ALL
SELECT
children
.
id
,
children
.
parent_id
FROM
hive_posts
children
JOIN
child_posts
ON
children
.
parent_id
=
child_posts
.
id
WHERE
children
.
counter_deleted
=
0
AND
NOT
children
.
is_muted
JOIN
hive_accounts
ON
children
.
author_id
=
hive_accounts
.
id
WHERE
children
.
counter_deleted
=
0
AND
(
CASE
WHEN
_observer
IS
NOT
NULL
THEN
NOT
EXISTS
(
SELECT
1
FROM
muted_accounts_view
WHERE
observer
=
_observer
AND
muted
=
hive_accounts
.
name
)
ELSE
True
END
)
)
SELECT
hp2
.
id
FROM
hive_posts
hp2
...
...
This diff is collapsed.
Click to expand it.
hive/server/bridge_api/thread.py
+
2
−
2
View file @
40430b24
...
...
@@ -26,8 +26,8 @@ async def get_discussion(context, author, permlink, observer=None):
if
observer
:
blacklists_for_user
=
await
Mutes
.
get_blacklists_for_observer
(
observer
,
context
)
sql
=
"
SELECT * FROM get_discussion(:author,:permlink)
"
rows
=
await
db
.
query_all
(
sql
,
author
=
author
,
permlink
=
permlink
)
sql
=
"
SELECT * FROM get_discussion(:author,:permlink
,:observer
)
"
rows
=
await
db
.
query_all
(
sql
,
author
=
author
,
permlink
=
permlink
,
observer
=
observer
)
if
not
rows
or
len
(
rows
)
==
0
:
return
{}
root_id
=
rows
[
0
][
'
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