mirror of
https://github.com/LemmyNet/lemmy.git
synced 2025-06-07 08:58:52 +00:00
* migration
* update code
* tests
* triggers
* fix
* fmt
* clippy
* post aggregate migration
* changes for post aggregate code
* wip: update tests for post aggregate
* format
* fix partialeq
* trigger fix
* fix post insert trigger
* wip
* reorder
* fixes
* community aggregate migration
* update code
* triggers
* person aggregate migration
* person aggregate code
* person triggers
* test fixes
* fix scheduled task
* update api tests
* site_aggregates to local_site migration
* site_aggregates code changes
* triggers, tests
* more fixes
* Rename PersonPostAggregates to PostActions
* Merge local_user_vote_display_mode into local_user
* fix schema
* Extracting pagination cursor utils into a trait.
- Fixes #5275
* Refactoring to avoid stack overflows.
* Fixing api_common feature.
* Adding pagination for GetBannedPersons.
- Must come after #5424
- Fixes #2847
* Starting to work on removing rest of page / limit.
* Issues with community pagination.
* Rename the traits and paginationcursor::new
* remove duplicate fields
* remove "aggregates" from index names
* uncomment indices
* if count = 0
* Using combined trait.
* remove commentaggregates
* Fix triggers in remove aggregates tables pr (#5451)
* prevent all db_schema test errors
* fix the delete_comments_before_post problem in a way that doesn't affect the returned number of affected rows
* remove unnecessary recursion checks and add comment to remaining check
* clean up
* Fixing SQL format.
* Update triggers.sql
* Update triggers.sql
* Update triggers.sql
* Update triggers.sql
* remove update of deleted column
---------
Co-authored-by: Dessalines <tyhou13@gmx.com>
* rename migration
* Fix migration errors
* Move community.hidden to visibility (fixes #5458)
* Removing empty files.
* Fixing person_saved_combined. (#5481)
* Remove comment and post specific action structs. #5473
* Doing reports
* fix up migration by dropping index
* also add enum variant `LocalOnlyPublic`, rename `LocalOnly` to `LocalOnlyPrivate`
fixes #5351
* fix column order in down.sql
* wip
* Moving blocks.
* Adding a few more views.
* more wip
* fixes
* migration for modlog
* fix migration
* Working views and schema.
* Fix ts_optionals.
* wip
* db_schema compiling
* make the code compile
* Merging from main.
* lint
* Fixing SQL format.
* fix down migration
* Fixing api tests.
* Adding field comments for the actions tables.
* Refactoring CommunityFollower to include follow_state
* fix test
* make hidden status federate
* ts attr
* fix
* fix api test
* Update crates/api/src/reports/post_report/resolve.rs
Co-authored-by: Nutomic <me@nutomic.com>
* Addressing PR comments
* Fix ts export.
* update api client
* review
* Extracting filter_not_hidden_or_is_subscribed (#5497)
* Extracting filter_not_hidden_or_is_subscribed
* Cleanup.
* Cleanup 2.
* Remove follower_state_helper function.
* Cleaning up some utils functions.
* rename hidden to unlisted
* Updating lemmy-js-client.
* Fixing a few cases.
* Fixing list_banned.
* Starting to convert to lemmy results.
* Fixing vote_view.
* Close to finishing up errors.
* Got compiling.
* Remove tracing for CI.
* Removing unused errors.
* Fixing merge from main.
* lower_name community_view sort.
* Syntax errors.
* Removing rest of Result from db_schema, db_views.
* Finally compiling again.
* fmt.
* Subpath tries again.
* Adding some more indexes./
* Fixing shear.
* Fix keyword_blocks test.
* @dullbananas fixes to Subpath, fixing comment tests.
* sql fmt
* Fixing unused error.
* API test fixing
* Moving read_only_posts to its own endpoint, sorted by read date.
- Fixes #5505
* Adding endpoint to list hidden posts.
- Fixes #5607
* Adding a first_id helper function.
* Fixing api_common
* Adding a person/liked endpoint for posts and comments.
- Fixes #4499
* Get rid of old liked_only filters.
* Formatting sql.
* Clippy
* Fixing view tests.
* SQL fmt
* Addressing PR comments
* Addressing PR comments 1.
* Using id desc.
* Addressing PR comments 2.
* Removing the reverse_timestamp keys for the post table.
* Make community_title and community_lower_name indexes desc
* Remove featured_community from post sort
* Forgot to drop index.
* Addressing PR comments
* Fixing clippy.
* Adding person_local column to post_actions and comment_actions
* Fixing pg_format
* Fixing pg_format 2
* Revert "Adding person_local column to post_actions and comment_actions"
This reverts commit e5145d8b07
.
* Adding local person check to liked and saved combined.
* Formatting sql.
* Adding local check to migration.
* Addressing PR comments
* Try to add versioned pg_formatter 1
* Try to add versioned pg_formatter 2
* Try to add versioned pg_formatter 3
* Try to add versioned pg_formatter 4
* Moving back to correct location.
---------
Co-authored-by: Felix Ableitner <me@nutomic.com>
Co-authored-by: dullbananas <dull.bananas0@gmail.com>
481 lines
11 KiB
SQL
481 lines
11 KiB
SQL
-- functions and triggers
|
|
DROP TRIGGER refresh_user ON user_;
|
|
|
|
DROP FUNCTION refresh_user ();
|
|
|
|
DROP TRIGGER refresh_post ON post;
|
|
|
|
DROP FUNCTION refresh_post ();
|
|
|
|
DROP TRIGGER refresh_post_like ON post_like;
|
|
|
|
DROP FUNCTION refresh_post_like ();
|
|
|
|
DROP TRIGGER refresh_community ON community;
|
|
|
|
DROP FUNCTION refresh_community ();
|
|
|
|
DROP TRIGGER refresh_community_follower ON community_follower;
|
|
|
|
DROP FUNCTION refresh_community_follower ();
|
|
|
|
DROP TRIGGER refresh_community_user_ban ON community_user_ban;
|
|
|
|
DROP FUNCTION refresh_community_user_ban ();
|
|
|
|
DROP TRIGGER refresh_comment ON comment;
|
|
|
|
DROP FUNCTION refresh_comment ();
|
|
|
|
DROP TRIGGER refresh_comment_like ON comment_like;
|
|
|
|
DROP FUNCTION refresh_comment_like ();
|
|
|
|
-- post
|
|
-- Recreate the view
|
|
DROP VIEW post_view;
|
|
|
|
CREATE VIEW post_view AS
|
|
with all_post AS (
|
|
SELECT
|
|
p.*,
|
|
(
|
|
SELECT
|
|
u.banned
|
|
FROM
|
|
user_ u
|
|
WHERE
|
|
p.creator_id = u.id) AS banned,
|
|
(
|
|
SELECT
|
|
cb.id::bool
|
|
FROM
|
|
community_user_ban cb
|
|
WHERE
|
|
p.creator_id = cb.user_id
|
|
AND p.community_id = cb.community_id) AS banned_from_community,
|
|
(
|
|
SELECT
|
|
name
|
|
FROM
|
|
user_
|
|
WHERE
|
|
p.creator_id = user_.id) AS creator_name,
|
|
(
|
|
SELECT
|
|
avatar
|
|
FROM
|
|
user_
|
|
WHERE
|
|
p.creator_id = user_.id) AS creator_avatar,
|
|
(
|
|
SELECT
|
|
name
|
|
FROM
|
|
community
|
|
WHERE
|
|
p.community_id = community.id) AS community_name,
|
|
(
|
|
SELECT
|
|
removed
|
|
FROM
|
|
community c
|
|
WHERE
|
|
p.community_id = c.id) AS community_removed,
|
|
(
|
|
SELECT
|
|
deleted
|
|
FROM
|
|
community c
|
|
WHERE
|
|
p.community_id = c.id) AS community_deleted,
|
|
(
|
|
SELECT
|
|
nsfw
|
|
FROM
|
|
community c
|
|
WHERE
|
|
p.community_id = c.id) AS community_nsfw,
|
|
(
|
|
SELECT
|
|
count(*)
|
|
FROM
|
|
comment
|
|
WHERE
|
|
comment.post_id = p.id) AS number_of_comments,
|
|
coalesce(sum(pl.score), 0) AS score,
|
|
count(
|
|
CASE WHEN pl.score = 1 THEN
|
|
1
|
|
ELSE
|
|
NULL
|
|
END) AS upvotes,
|
|
count(
|
|
CASE WHEN pl.score = -1 THEN
|
|
1
|
|
ELSE
|
|
NULL
|
|
END) AS downvotes,
|
|
hot_rank (coalesce(sum(pl.score), 0), p.published) AS hot_rank
|
|
FROM
|
|
post p
|
|
LEFT JOIN post_like pl ON p.id = pl.post_id
|
|
GROUP BY
|
|
p.id
|
|
)
|
|
SELECT
|
|
ap.*,
|
|
u.id AS user_id,
|
|
coalesce(pl.score, 0) AS my_vote,
|
|
(
|
|
SELECT
|
|
cf.id::bool
|
|
FROM
|
|
community_follower cf
|
|
WHERE
|
|
u.id = cf.user_id
|
|
AND cf.community_id = ap.community_id) AS subscribed,
|
|
(
|
|
SELECT
|
|
pr.id::bool
|
|
FROM
|
|
post_read pr
|
|
WHERE
|
|
u.id = pr.user_id
|
|
AND pr.post_id = ap.id) AS read,
|
|
(
|
|
SELECT
|
|
ps.id::bool
|
|
FROM
|
|
post_saved ps
|
|
WHERE
|
|
u.id = ps.user_id
|
|
AND ps.post_id = ap.id) AS saved
|
|
FROM
|
|
user_ u
|
|
CROSS JOIN all_post ap
|
|
LEFT JOIN post_like pl ON u.id = pl.user_id
|
|
AND ap.id = pl.post_id
|
|
UNION ALL
|
|
SELECT
|
|
ap.*,
|
|
NULL AS user_id,
|
|
NULL AS my_vote,
|
|
NULL AS subscribed,
|
|
NULL AS read,
|
|
NULL AS saved
|
|
FROM
|
|
all_post ap;
|
|
|
|
DROP VIEW post_mview;
|
|
|
|
DROP MATERIALIZED VIEW post_aggregates_mview;
|
|
|
|
DROP VIEW post_aggregates_view;
|
|
|
|
-- user
|
|
DROP MATERIALIZED VIEW user_mview;
|
|
|
|
DROP VIEW user_view;
|
|
|
|
CREATE VIEW user_view AS
|
|
SELECT
|
|
id,
|
|
name,
|
|
avatar,
|
|
email,
|
|
fedi_name,
|
|
admin,
|
|
banned,
|
|
show_avatars,
|
|
send_notifications_to_email,
|
|
published,
|
|
(
|
|
SELECT
|
|
count(*)
|
|
FROM
|
|
post p
|
|
WHERE
|
|
p.creator_id = u.id) AS number_of_posts,
|
|
(
|
|
SELECT
|
|
coalesce(sum(score), 0)
|
|
FROM
|
|
post p,
|
|
post_like pl
|
|
WHERE
|
|
u.id = p.creator_id
|
|
AND p.id = pl.post_id) AS post_score,
|
|
(
|
|
SELECT
|
|
count(*)
|
|
FROM
|
|
comment c
|
|
WHERE
|
|
c.creator_id = u.id) AS number_of_comments,
|
|
(
|
|
SELECT
|
|
coalesce(sum(score), 0)
|
|
FROM
|
|
comment c,
|
|
comment_like cl
|
|
WHERE
|
|
u.id = c.creator_id
|
|
AND c.id = cl.comment_id) AS comment_score
|
|
FROM
|
|
user_ u;
|
|
|
|
-- community
|
|
DROP VIEW community_mview;
|
|
|
|
DROP MATERIALIZED VIEW community_aggregates_mview;
|
|
|
|
DROP VIEW community_view;
|
|
|
|
DROP VIEW community_aggregates_view;
|
|
|
|
CREATE VIEW community_view AS
|
|
with all_community AS (
|
|
SELECT
|
|
*,
|
|
(
|
|
SELECT
|
|
name
|
|
FROM
|
|
user_ u
|
|
WHERE
|
|
c.creator_id = u.id) AS creator_name,
|
|
(
|
|
SELECT
|
|
avatar
|
|
FROM
|
|
user_ u
|
|
WHERE
|
|
c.creator_id = u.id) AS creator_avatar,
|
|
(
|
|
SELECT
|
|
name
|
|
FROM
|
|
category ct
|
|
WHERE
|
|
c.category_id = ct.id) AS category_name,
|
|
(
|
|
SELECT
|
|
count(*)
|
|
FROM
|
|
community_follower cf
|
|
WHERE
|
|
cf.community_id = c.id) AS number_of_subscribers,
|
|
(
|
|
SELECT
|
|
count(*)
|
|
FROM
|
|
post p
|
|
WHERE
|
|
p.community_id = c.id) AS number_of_posts,
|
|
(
|
|
SELECT
|
|
count(*)
|
|
FROM
|
|
comment co,
|
|
post p
|
|
WHERE
|
|
c.id = p.community_id
|
|
AND p.id = co.post_id) AS number_of_comments,
|
|
hot_rank ((
|
|
SELECT
|
|
count(*)
|
|
FROM community_follower cf
|
|
WHERE
|
|
cf.community_id = c.id), c.published) AS hot_rank
|
|
FROM
|
|
community c
|
|
)
|
|
SELECT
|
|
ac.*,
|
|
u.id AS user_id,
|
|
(
|
|
SELECT
|
|
cf.id::boolean
|
|
FROM
|
|
community_follower cf
|
|
WHERE
|
|
u.id = cf.user_id
|
|
AND ac.id = cf.community_id) AS subscribed
|
|
FROM
|
|
user_ u
|
|
CROSS JOIN all_community ac
|
|
UNION ALL
|
|
SELECT
|
|
ac.*,
|
|
NULL AS user_id,
|
|
NULL AS subscribed
|
|
FROM
|
|
all_community ac;
|
|
|
|
-- reply and comment view
|
|
DROP VIEW reply_view;
|
|
|
|
DROP VIEW user_mention_view;
|
|
|
|
DROP VIEW comment_view;
|
|
|
|
DROP VIEW comment_mview;
|
|
|
|
DROP MATERIALIZED VIEW comment_aggregates_mview;
|
|
|
|
DROP VIEW comment_aggregates_view;
|
|
|
|
CREATE VIEW comment_view AS
|
|
with all_comment AS (
|
|
SELECT
|
|
c.*,
|
|
(
|
|
SELECT
|
|
community_id
|
|
FROM
|
|
post p
|
|
WHERE
|
|
p.id = c.post_id),
|
|
(
|
|
SELECT
|
|
u.banned
|
|
FROM
|
|
user_ u
|
|
WHERE
|
|
c.creator_id = u.id) AS banned,
|
|
(
|
|
SELECT
|
|
cb.id::bool
|
|
FROM
|
|
community_user_ban cb,
|
|
post p
|
|
WHERE
|
|
c.creator_id = cb.user_id
|
|
AND p.id = c.post_id
|
|
AND p.community_id = cb.community_id) AS banned_from_community,
|
|
(
|
|
SELECT
|
|
name
|
|
FROM
|
|
user_
|
|
WHERE
|
|
c.creator_id = user_.id) AS creator_name,
|
|
(
|
|
SELECT
|
|
avatar
|
|
FROM
|
|
user_
|
|
WHERE
|
|
c.creator_id = user_.id) AS creator_avatar,
|
|
coalesce(sum(cl.score), 0) AS score,
|
|
count(
|
|
CASE WHEN cl.score = 1 THEN
|
|
1
|
|
ELSE
|
|
NULL
|
|
END) AS upvotes,
|
|
count(
|
|
CASE WHEN cl.score = -1 THEN
|
|
1
|
|
ELSE
|
|
NULL
|
|
END) AS downvotes
|
|
FROM
|
|
comment c
|
|
LEFT JOIN comment_like cl ON c.id = cl.comment_id
|
|
GROUP BY
|
|
c.id
|
|
)
|
|
SELECT
|
|
ac.*,
|
|
u.id AS user_id,
|
|
coalesce(cl.score, 0) AS my_vote,
|
|
(
|
|
SELECT
|
|
cs.id::bool
|
|
FROM
|
|
comment_saved cs
|
|
WHERE
|
|
u.id = cs.user_id
|
|
AND cs.comment_id = ac.id) AS saved
|
|
FROM
|
|
user_ u
|
|
CROSS JOIN all_comment ac
|
|
LEFT JOIN comment_like cl ON u.id = cl.user_id
|
|
AND ac.id = cl.comment_id
|
|
UNION ALL
|
|
SELECT
|
|
ac.*,
|
|
NULL AS user_id,
|
|
NULL AS my_vote,
|
|
NULL AS saved
|
|
FROM
|
|
all_comment ac;
|
|
|
|
CREATE VIEW reply_view AS
|
|
with closereply AS (
|
|
SELECT
|
|
c2.id,
|
|
c2.creator_id AS sender_id,
|
|
c.creator_id AS recipient_id
|
|
FROM
|
|
comment c
|
|
INNER JOIN comment c2 ON c.id = c2.parent_id
|
|
WHERE
|
|
c2.creator_id != c.creator_id
|
|
-- Do union where post is null
|
|
UNION
|
|
SELECT
|
|
c.id,
|
|
c.creator_id AS sender_id,
|
|
p.creator_id AS recipient_id
|
|
FROM
|
|
comment c,
|
|
post p
|
|
WHERE
|
|
c.post_id = p.id
|
|
AND c.parent_id IS NULL
|
|
AND c.creator_id != p.creator_id
|
|
)
|
|
SELECT
|
|
cv.*,
|
|
closereply.recipient_id
|
|
FROM
|
|
comment_view cv,
|
|
closereply
|
|
WHERE
|
|
closereply.id = cv.id;
|
|
|
|
-- user mention
|
|
CREATE VIEW user_mention_view AS
|
|
SELECT
|
|
c.id,
|
|
um.id AS user_mention_id,
|
|
c.creator_id,
|
|
c.post_id,
|
|
c.parent_id,
|
|
c.content,
|
|
c.removed,
|
|
um.read,
|
|
c.published,
|
|
c.updated,
|
|
c.deleted,
|
|
c.community_id,
|
|
c.banned,
|
|
c.banned_from_community,
|
|
c.creator_name,
|
|
c.creator_avatar,
|
|
c.score,
|
|
c.upvotes,
|
|
c.downvotes,
|
|
c.user_id,
|
|
c.my_vote,
|
|
c.saved,
|
|
um.recipient_id
|
|
FROM
|
|
user_mention um,
|
|
comment_view c
|
|
WHERE
|
|
um.comment_id = c.id;
|
|
|