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
Merge requests
!863
Draft: refactor follows and update_nofications indexing
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Draft: refactor follows and update_nofications indexing
267-update-notification-cache
into
develop
Overview
0
Commits
90
Pipelines
0
Changes
2
Open
Dan Notestein
requested to merge
267-update-notification-cache
into
develop
2 weeks ago
Overview
0
Commits
90
Pipelines
0
Changes
2
Expand
Based on
!819
Edited
1 week ago
by
Krzysztof Leśniak
0
0
Merge request reports
Viewing commit
9ff0723e
Prev
Next
Show latest version
2 files
+
74
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
9ff0723e
add new get_followers
· 9ff0723e
Dan Notestein
authored
3 months ago
hive/db/sql_scripts/postgrest/condenser_api/new_condenser_api_get_followers.sql
0 → 100644
+
73
−
0
Options
DROP
FUNCTION
IF
EXISTS
hivemind_endpoints
.
new_condenser_api_get_followers
;
CREATE
FUNCTION
hivemind_endpoints
.
new_condenser_api_get_followers
(
IN
_params
JSONB
)
RETURNS
JSONB
LANGUAGE
'plpgsql'
STABLE
AS
$$
DECLARE
_account
TEXT
;
_account_id
INT
;
_start
TEXT
;
_start_id
INT
;
_follow_type
TEXT
;
_limit
INT
;
_result
JSONB
;
BEGIN
_params
:
=
hivemind_postgrest_utilities
.
validate_json_arguments
(
_params
,
'{"account": "string", "start" : "string", "type" : "string", "limit" : "number"}'
,
4
,
NULL
);
_account
:
=
params
->
'account'
;
_account_id
:
=
hivemind_postgrest_utilities
.
find_account_id
(
_account
,
TRUE
);
if
(
_account_id
=
0
)
then
raise_parameter_validation_exception
(
'Invalid account'
);
end
if
;
_start
:
=
params
->
'start'
;
_start_id
:
=
hivemind_postgrest_utilities
.
find_account_id
(
_start
,
TRUE
);
if
(
_start_id
=
0
)
then
raise_parameter_validation_exception
(
'Invalid start account'
);
end
if
;
_follow_type
:
=
hivemind_postgrest_utilities
.
parse_argument_from_json
(
_params
,
'type'
,
FALSE
);
_limit
=
(
_params
->
'limit'
)::
INT
;
IF
_follow_type
=
'blog'
THEN
_result
:
=
(
SELECT
jsonb_agg
(
jsonb_build_object
(
'following'
,
_account
,
'follower'
,
ha
.
name
,
'what'
,
'[blog]'
,
)
)
FROM
{
SCHEMA_NAME
}.
follows
f
JOIN
{
SCHEMA_NAME
}.
hive_accounts
ha
ON
ha
.
id
=
f
.
follower
WHERE
f
.
following
=
_account_id
AND
ha
.
id
<
_start_id
ORDER
BY
f
.
follower
DESC
LIMIT
_limit
);
ELSIF
_follow_type
=
'ignore'
THEN
_result
:
=
(
SELECT
jsonb_agg
(
jsonb_build_object
(
'following'
,
_account
,
'follower'
,
ha
.
name
,
'what'
,
_f
'[ignore]'
,
)
)
FROM
{
SCHEMA_NAME
}.
muted
m
JOIN
{
SCHEMA_NAME
}.
hive_accounts
ha
ON
ha
.
id
=
m
.
follower
WHERE
m
.
following
=
_account_id
AND
ha
.
id
<
_start_id
ORDER
BY
f
.
follower
DESC
LIMIT
_limit
);
ELSE
RAISE
EXCEPTION
'%'
,
hivemind_postgrest_utilities
.
raise_parameter_validation_exception
(
'Unsupported follow_type, valid values: blog, ignore'
);
END
IF
;
RETURN
COALESCE
(
_result
,
'[]'
::
jsonb
);
END
$$
;
Loading