Skip to content
Snippets Groups Projects
Commit 878c8168 authored by Howo's avatar Howo Committed by Dan Notestein
Browse files

Update list_subscribers to order by name instead of by id

parent 31e5e974
No related branches found
No related tags found
1 merge request!834Update list_subscribers to order by name instead of by id
Showing
with 41 additions and 46 deletions
......@@ -8,7 +8,7 @@ $$
DECLARE
_community_id INT;
_community TEXT;
_subscription_id INT;
_last_name TEXT;
_limit INTEGER := 100;
BEGIN
_params = hivemind_postgrest_utilities.validate_json_arguments(_params, '{"community": "string", "last": "string", "limit": "number"}', 1, '{"community": "given community name is not valid"}');
......@@ -17,13 +17,14 @@ BEGIN
_community = hivemind_postgrest_utilities.valid_community(_community);
_community_id = hivemind_postgrest_utilities.find_community_id(_community, True);
_subscription_id =
hivemind_postgrest_utilities.find_subscription_id(
hivemind_postgrest_utilities.valid_account(
hivemind_postgrest_utilities.parse_argument_from_json(_params, 'last', False),
True),
_community,
True);
_last_name = hivemind_postgrest_utilities.valid_account(
hivemind_postgrest_utilities.parse_argument_from_json(_params, 'last', False),
True
);
IF _last_name IS NOT NULL THEN
PERFORM hivemind_postgrest_utilities.find_subscription_id(_last_name, _community, True); -- Check that account exists and is subscribed to the community
END IF;
_limit = hivemind_postgrest_utilities.parse_integer_argument_from_json(_params, 'limit', False);
_limit = hivemind_postgrest_utilities.valid_number(_limit, 100, 1, 100, 'limit');
......@@ -40,7 +41,8 @@ BEGIN
LEFT JOIN hivemind_app.hive_roles hr ON hs.account_id = hr.account_id
AND hs.community_id = hr.community_id
JOIN hivemind_app.hive_accounts ha ON hs.account_id = ha.id
WHERE hs.community_id = _community_id AND (_subscription_id = 0 OR (hs.id < _subscription_id))
WHERE hs.community_id = _community_id
AND (_last_name IS NULL OR ha.name COLLATE "C" > _last_name COLLATE "C")
ORDER BY ha.name ASC
LIMIT _limit
) row
......@@ -48,5 +50,4 @@ BEGIN
'[]'::JSONB
);
END
$$
;
\ No newline at end of file
$$;
\ No newline at end of file
[
[
"agartha",
"guest",
null,
"2016-09-15T18:02:03"
],
[
"alice",
"guest",
......@@ -29,4 +35,4 @@
null,
"2016-09-15T18:01:48"
]
]
]
\ No newline at end of file
[
[
"camilla",
"guest",
null,
"2016-09-15T18:01:57"
],
[
"good-karma",
"guest",
null,
"2016-09-15T18:01:51"
],
[
"gtg",
"guest",
null,
"2016-09-15T18:02:00"
],
[
"test-safari",
"guest",
null,
"2016-09-15T18:01:48"
]
]
]
\ No newline at end of file
[
[
"alice",
"guest",
null,
"2016-09-15T18:01:54"
],
[
"camilla",
"guest",
null,
"2016-09-15T18:01:57"
],
[
"good-karma",
"guest",
null,
"2016-09-15T18:01:51"
],
[
"test-safari",
"guest",
null,
"2016-09-15T18:01:48"
]
]
]
\ No newline at end of file
......@@ -19,7 +19,7 @@
jsonrpc: "2.0"
id: 1
method: "bridge.list_subscribers"
params: {"community":"hive-186669", "last":"roadscape"}
params: {"community":"hive-186669", "last":"gtg"}
response:
status_code: 200
verify_response_with:
......
[
[
"gtg",
"guest",
null,
"2016-09-15T18:01:48"
],
[
"test-safari",
"admin",
"",
"2016-09-15T18:01:48"
]
]
]
\ No newline at end of file
[
[
"gtg",
"guest",
null,
"test-safari",
"admin",
"",
"2016-09-15T18:01:48"
]
]
]
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment