Skip to content

Commit

Permalink
Set security_invoker=true to use permissions on the underlying tables…
Browse files Browse the repository at this point in the history
… when creating new view (#2942)
  • Loading branch information
evankanderson authored Apr 4, 2024
1 parent 1a7ee92 commit 82960ac
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
19 changes: 19 additions & 0 deletions database/migrations/000047_entity_profiles_views.down.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
-- Copyright 2024 Stacklok, Inc
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.

BEGIN;

ALTER VIEW profiles_with_entity_profiles SET (security_invoker = false);

COMMIT;
23 changes: 23 additions & 0 deletions database/migrations/000047_entity_profiles_views.up.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
-- Copyright 2024 Stacklok, Inc
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.

BEGIN;

DROP VIEW profiles_with_entity_profiles;

CREATE VIEW profiles_with_entity_profiles WITH (security_invoker = true) AS (
SELECT entity_profiles.*, profiles.id as profid FROM profiles LEFT JOIN entity_profiles ON profiles.id = entity_profiles.profile_id
);

COMMIT;

0 comments on commit 82960ac

Please sign in to comment.