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
5
Open
Dan Notestein
requested to merge
267-update-notification-cache
into
develop
2 weeks ago
Overview
0
Commits
90
Pipelines
0
Changes
5
Expand
Based on
!819
Edited
1 week ago
by
Krzysztof Leśniak
0
0
Merge request reports
Viewing commit
9ec74b82
Prev
Next
Show latest version
5 files
+
0
−
480
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
9ec74b82
Remove old follow indexer
· 9ec74b82
Krzysztof Leśniak
authored
2 months ago
hive/db/sql_scripts/follows.sql deleted
100644 → 0
+
0
−
107
Options
DROP
FUNCTION
IF
EXISTS
hivemind_app
.
follow_reset_blacklist
(
character
varying
,
integer
)
;
CREATE
OR
REPLACE
FUNCTION
hivemind_app
.
follow_reset_blacklist
(
in
_follower
hivemind_app
.
hive_accounts
.
name
%
TYPE
,
in
_block_num
hivemind_app
.
hive_follows
.
block_num
%
TYPE
)
RETURNS
VOID
LANGUAGE
plpgsql
AS
$
function
$
DECLARE
__account_id
INT
;
BEGIN
__account_id
=
hivemind_app
.
find_account_id
(
_follower
,
False
);
UPDATE
hivemind_app
.
hive_follows
hf
-- follow_reset_blacklist
SET
blacklisted
=
false
,
block_num
=
_block_num
WHERE
hf
.
follower
=
__account_id
AND
hf
.
blacklisted
;
END
$
function
$
;
DROP
FUNCTION
IF
EXISTS
hivemind_app
.
follow_reset_following_list
(
character
varying
,
integer
)
;
CREATE
OR
REPLACE
FUNCTION
hivemind_app
.
follow_reset_following_list
(
in
_follower
hivemind_app
.
hive_accounts
.
name
%
TYPE
,
in
_block_num
hivemind_app
.
hive_follows
.
block_num
%
TYPE
)
RETURNS
VOID
LANGUAGE
plpgsql
AS
$
function
$
DECLARE
__account_id
INT
;
BEGIN
__account_id
=
hivemind_app
.
find_account_id
(
_follower
,
False
);
UPDATE
hivemind_app
.
hive_follows
hf
-- follow_reset_following_list
SET
state
=
0
,
block_num
=
_block_num
WHERE
hf
.
follower
=
__account_id
AND
hf
.
state
=
1
;
END
$
function
$
;
DROP
FUNCTION
IF
EXISTS
hivemind_app
.
follow_reset_muted_list
(
character
varying
,
integer
)
;
CREATE
OR
REPLACE
FUNCTION
hivemind_app
.
follow_reset_muted_list
(
in
_follower
hivemind_app
.
hive_accounts
.
name
%
TYPE
,
in
_block_num
hivemind_app
.
hive_follows
.
block_num
%
TYPE
)
RETURNS
VOID
LANGUAGE
plpgsql
AS
$
function
$
DECLARE
__account_id
INT
;
BEGIN
__account_id
=
hivemind_app
.
find_account_id
(
_follower
,
False
);
UPDATE
hivemind_app
.
hive_follows
hf
-- follow_reset_muted_list
SET
state
=
0
,
block_num
=
_block_num
WHERE
hf
.
follower
=
__account_id
AND
hf
.
state
=
2
;
END
$
function
$
;
DROP
FUNCTION
IF
EXISTS
hivemind_app
.
follow_reset_follow_blacklist
(
character
varying
,
integer
)
;
CREATE
OR
REPLACE
FUNCTION
hivemind_app
.
follow_reset_follow_blacklist
(
in
_follower
hivemind_app
.
hive_accounts
.
name
%
TYPE
,
in
_block_num
hivemind_app
.
hive_follows
.
block_num
%
TYPE
)
RETURNS
VOID
LANGUAGE
plpgsql
AS
$
function
$
DECLARE
__account_id
INT
;
BEGIN
__account_id
=
hivemind_app
.
find_account_id
(
_follower
,
False
);
UPDATE
hivemind_app
.
hive_follows
hf
-- follow_reset_follow_blacklist
SET
follow_blacklists
=
false
,
block_num
=
_block_num
WHERE
hf
.
follower
=
__account_id
AND
hf
.
follow_blacklists
;
END
$
function
$
;
DROP
FUNCTION
IF
EXISTS
hivemind_app
.
follow_reset_follow_muted_list
(
character
varying
,
integer
)
;
CREATE
OR
REPLACE
FUNCTION
hivemind_app
.
follow_reset_follow_muted_list
(
in
_follower
hivemind_app
.
hive_accounts
.
name
%
TYPE
,
in
_block_num
hivemind_app
.
hive_follows
.
block_num
%
TYPE
)
RETURNS
VOID
LANGUAGE
plpgsql
AS
$
function
$
DECLARE
__account_id
INT
;
BEGIN
__account_id
=
hivemind_app
.
find_account_id
(
_follower
,
False
);
UPDATE
hivemind_app
.
hive_follows
hf
-- follow_reset_follow_muted_list
SET
follow_muted
=
false
,
block_num
=
_block_num
WHERE
hf
.
follower
=
__account_id
AND
hf
.
follow_muted
;
END
$
function
$
;
DROP
FUNCTION
IF
EXISTS
hivemind_app
.
follow_reset_all_lists
(
character
varying
,
integer
)
;
CREATE
OR
REPLACE
FUNCTION
hivemind_app
.
follow_reset_all_lists
(
in
_follower
hivemind_app
.
hive_accounts
.
name
%
TYPE
,
in
_block_num
hivemind_app
.
hive_follows
.
block_num
%
TYPE
)
RETURNS
VOID
LANGUAGE
plpgsql
AS
$
function
$
DECLARE
__account_id
INT
;
BEGIN
__account_id
=
hivemind_app
.
find_account_id
(
_follower
,
False
);
UPDATE
hivemind_app
.
hive_follows
hf
-- follow_reset_all_lists
SET
blacklisted
=
false
,
follow_blacklists
=
false
,
follow_muted
=
false
,
state
=
0
,
block_num
=
_block_num
WHERE
hf
.
follower
=
__account_id
;
END
$
function
$
;
Loading