-
Notifications
You must be signed in to change notification settings - Fork 378
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "fix: revert define search path in auth functions (#1634)"
This reverts commit 155e87e.
- Loading branch information
1 parent
32afa7e
commit 640718f
Showing
1 changed file
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
-- set the search_path to an empty string to force fully qualified names in the function | ||
do $$ | ||
begin | ||
-- auth.uid() function | ||
create or replace function auth.uid() | ||
returns uuid | ||
set search_path to '' | ||
as $func$ | ||
select nullif(current_setting('request.jwt.claim.sub', true), '')::uuid; | ||
$func$ language sql stable; | ||
|
||
-- auth.role() function | ||
create or replace function {{ index .Options "Namespace" }}.role() | ||
returns text | ||
set search_path to '' | ||
as $func$ | ||
select nullif(current_setting('request.jwt.claim.role', true), '')::text; | ||
$func$ language sql stable; | ||
|
||
-- auth.email() function | ||
create or replace function {{ index .Options "Namespace" }}.email() | ||
returns text | ||
set search_path to '' | ||
as $func$ | ||
select | ||
coalesce( | ||
current_setting('request.jwt.claim.email', true), | ||
(current_setting('request.jwt.claims', true)::jsonb ->> 'email') | ||
)::text | ||
$func$ language sql stable; | ||
|
||
-- auth.jwt() function | ||
create or replace function {{ index .Options "Namespace" }}.jwt() | ||
returns jsonb | ||
set search_path to '' | ||
as $func$ | ||
select | ||
coalesce( | ||
nullif(current_setting('request.jwt.claim', true), ''), | ||
nullif(current_setting('request.jwt.claims', true), '') | ||
)::jsonb; | ||
$func$ language sql stable; | ||
end $$; |