-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update pg in docker to 3.3.3 * stage version change to 0.7.9
- Loading branch information
Showing
6 changed files
with
4,279 additions
and
4 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
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
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,215 @@ | ||
RESET ROLE; | ||
DO $$ | ||
DECLARE | ||
BEGIN | ||
IF NOT EXISTS (SELECT 1 FROM pg_extension WHERE extname='postgis') THEN | ||
CREATE EXTENSION IF NOT EXISTS postgis; | ||
END IF; | ||
IF NOT EXISTS (SELECT 1 FROM pg_extension WHERE extname='btree_gist') THEN | ||
CREATE EXTENSION IF NOT EXISTS btree_gist; | ||
END IF; | ||
END; | ||
$$ LANGUAGE PLPGSQL; | ||
|
||
DO $$ | ||
BEGIN | ||
CREATE ROLE pgstac_admin; | ||
EXCEPTION WHEN duplicate_object THEN | ||
RAISE NOTICE '%, skipping', SQLERRM USING ERRCODE = SQLSTATE; | ||
END | ||
$$; | ||
|
||
DO $$ | ||
BEGIN | ||
CREATE ROLE pgstac_read; | ||
EXCEPTION WHEN duplicate_object THEN | ||
RAISE NOTICE '%, skipping', SQLERRM USING ERRCODE = SQLSTATE; | ||
END | ||
$$; | ||
|
||
DO $$ | ||
BEGIN | ||
CREATE ROLE pgstac_ingest; | ||
EXCEPTION WHEN duplicate_object THEN | ||
RAISE NOTICE '%, skipping', SQLERRM USING ERRCODE = SQLSTATE; | ||
END | ||
$$; | ||
|
||
|
||
GRANT pgstac_admin TO current_user; | ||
|
||
-- Function to make sure pgstac_admin is the owner of items | ||
CREATE OR REPLACE FUNCTION pgstac_admin_owns() RETURNS VOID AS $$ | ||
DECLARE | ||
f RECORD; | ||
BEGIN | ||
FOR f IN ( | ||
SELECT | ||
concat( | ||
oid::regproc::text, | ||
'(', | ||
coalesce(pg_get_function_identity_arguments(oid),''), | ||
')' | ||
) AS name, | ||
CASE prokind WHEN 'f' THEN 'FUNCTION' WHEN 'p' THEN 'PROCEDURE' WHEN 'a' THEN 'AGGREGATE' END as typ | ||
FROM pg_proc | ||
WHERE | ||
pronamespace=to_regnamespace('pgstac') | ||
AND proowner != to_regrole('pgstac_admin') | ||
AND proname NOT LIKE 'pg_stat%' | ||
) | ||
LOOP | ||
BEGIN | ||
EXECUTE format('ALTER %s %s OWNER TO pgstac_admin;', f.typ, f.name); | ||
EXCEPTION WHEN others THEN | ||
RAISE NOTICE '%, skipping', SQLERRM USING ERRCODE = SQLSTATE; | ||
END; | ||
END LOOP; | ||
FOR f IN ( | ||
SELECT | ||
oid::regclass::text as name, | ||
CASE relkind | ||
WHEN 'i' THEN 'INDEX' | ||
WHEN 'I' THEN 'INDEX' | ||
WHEN 'p' THEN 'TABLE' | ||
WHEN 'r' THEN 'TABLE' | ||
WHEN 'v' THEN 'VIEW' | ||
WHEN 'S' THEN 'SEQUENCE' | ||
ELSE NULL | ||
END as typ | ||
FROM pg_class | ||
WHERE relnamespace=to_regnamespace('pgstac') and relowner != to_regrole('pgstac_admin') AND relkind IN ('r','p','v','S') AND relname NOT LIKE 'pg_stat' | ||
) | ||
LOOP | ||
BEGIN | ||
EXECUTE format('ALTER %s %s OWNER TO pgstac_admin;', f.typ, f.name); | ||
EXCEPTION WHEN others THEN | ||
RAISE NOTICE '%, skipping', SQLERRM USING ERRCODE = SQLSTATE; | ||
END; | ||
END LOOP; | ||
RETURN; | ||
END; | ||
$$ LANGUAGE PLPGSQL; | ||
SELECT pgstac_admin_owns(); | ||
|
||
CREATE SCHEMA IF NOT EXISTS pgstac AUTHORIZATION pgstac_admin; | ||
|
||
GRANT ALL ON ALL FUNCTIONS IN SCHEMA pgstac to pgstac_admin; | ||
GRANT ALL ON ALL TABLES IN SCHEMA pgstac to pgstac_admin; | ||
GRANT ALL ON ALL SEQUENCES IN SCHEMA pgstac to pgstac_admin; | ||
|
||
ALTER ROLE pgstac_admin SET SEARCH_PATH TO pgstac, public; | ||
ALTER ROLE pgstac_read SET SEARCH_PATH TO pgstac, public; | ||
ALTER ROLE pgstac_ingest SET SEARCH_PATH TO pgstac, public; | ||
|
||
GRANT USAGE ON SCHEMA pgstac to pgstac_read; | ||
ALTER DEFAULT PRIVILEGES IN SCHEMA pgstac GRANT SELECT ON TABLES TO pgstac_read; | ||
ALTER DEFAULT PRIVILEGES IN SCHEMA pgstac GRANT USAGE ON TYPES TO pgstac_read; | ||
ALTER DEFAULT PRIVILEGES IN SCHEMA pgstac GRANT ALL ON SEQUENCES TO pgstac_read; | ||
|
||
GRANT pgstac_read TO pgstac_ingest; | ||
GRANT ALL ON SCHEMA pgstac TO pgstac_ingest; | ||
ALTER DEFAULT PRIVILEGES IN SCHEMA pgstac GRANT ALL ON TABLES TO pgstac_ingest; | ||
ALTER DEFAULT PRIVILEGES IN SCHEMA pgstac GRANT ALL ON FUNCTIONS TO pgstac_ingest; | ||
|
||
SET ROLE pgstac_admin; | ||
|
||
SET SEARCH_PATH TO pgstac, public; | ||
|
||
DO $$ | ||
BEGIN | ||
DROP FUNCTION IF EXISTS analyze_items; | ||
EXCEPTION WHEN others THEN | ||
RAISE NOTICE '%, skipping', SQLERRM USING ERRCODE = SQLSTATE; | ||
END | ||
$$; | ||
DO $$ | ||
BEGIN | ||
DROP FUNCTION IF EXISTS validate_constraints; | ||
EXCEPTION WHEN others THEN | ||
RAISE NOTICE '%, skipping', SQLERRM USING ERRCODE = SQLSTATE; | ||
END | ||
$$; | ||
SET client_min_messages TO WARNING; | ||
SET SEARCH_PATH to pgstac, public; | ||
-- BEGIN migra calculated SQL | ||
-- END migra calculated SQL | ||
DO $$ | ||
BEGIN | ||
INSERT INTO queryables (name, definition, property_wrapper, property_index_type) VALUES | ||
('id', '{"title": "Item ID","description": "Item identifier","$ref": "https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/item.json#/definitions/core/allOf/2/properties/id"}', null, null); | ||
EXCEPTION WHEN unique_violation THEN | ||
RAISE NOTICE '%', SQLERRM USING ERRCODE = SQLSTATE; | ||
END | ||
$$; | ||
|
||
DO $$ | ||
BEGIN | ||
INSERT INTO queryables (name, definition, property_wrapper, property_index_type) VALUES | ||
('geometry', '{"title": "Item Geometry","description": "Item Geometry","$ref": "https://geojson.org/schema/Feature.json"}', null, null); | ||
EXCEPTION WHEN unique_violation THEN | ||
RAISE NOTICE '%', SQLERRM USING ERRCODE = SQLSTATE; | ||
END | ||
$$; | ||
|
||
DO $$ | ||
BEGIN | ||
INSERT INTO queryables (name, definition, property_wrapper, property_index_type) VALUES | ||
('datetime','{"description": "Datetime","type": "string","title": "Acquired","format": "date-time","pattern": "(\\+00:00|Z)$"}', null, null); | ||
EXCEPTION WHEN unique_violation THEN | ||
RAISE NOTICE '%', SQLERRM USING ERRCODE = SQLSTATE; | ||
END | ||
$$; | ||
|
||
DO $$ | ||
BEGIN | ||
INSERT INTO queryables (name, definition, property_wrapper, property_index_type) VALUES | ||
('eo:cloud_cover','{"$ref": "https://stac-extensions.github.io/eo/v1.0.0/schema.json#/definitions/fieldsproperties/eo:cloud_cover"}','to_int','BTREE'); | ||
EXCEPTION WHEN unique_violation THEN | ||
RAISE NOTICE '%', SQLERRM USING ERRCODE = SQLSTATE; | ||
END | ||
$$; | ||
|
||
DELETE FROM queryables a USING queryables b | ||
WHERE a.name = b.name AND a.collection_ids IS NOT DISTINCT FROM b.collection_ids AND a.id > b.id; | ||
|
||
|
||
INSERT INTO pgstac_settings (name, value) VALUES | ||
('context', 'off'), | ||
('context_estimated_count', '100000'), | ||
('context_estimated_cost', '100000'), | ||
('context_stats_ttl', '1 day'), | ||
('default_filter_lang', 'cql2-json'), | ||
('additional_properties', 'true'), | ||
('use_queue', 'false'), | ||
('queue_timeout', '10 minutes'), | ||
('update_collection_extent', 'false'), | ||
('format_cache', 'false') | ||
ON CONFLICT DO NOTHING | ||
; | ||
|
||
ALTER FUNCTION to_text COST 5000; | ||
ALTER FUNCTION to_float COST 5000; | ||
ALTER FUNCTION to_int COST 5000; | ||
ALTER FUNCTION to_tstz COST 5000; | ||
ALTER FUNCTION to_text_array COST 5000; | ||
|
||
|
||
GRANT USAGE ON SCHEMA pgstac to pgstac_read; | ||
GRANT ALL ON SCHEMA pgstac to pgstac_ingest; | ||
GRANT ALL ON SCHEMA pgstac to pgstac_admin; | ||
|
||
-- pgstac_read role limited to using function apis | ||
GRANT EXECUTE ON FUNCTION search TO pgstac_read; | ||
GRANT EXECUTE ON FUNCTION search_query TO pgstac_read; | ||
GRANT EXECUTE ON FUNCTION item_by_id TO pgstac_read; | ||
GRANT EXECUTE ON FUNCTION get_item TO pgstac_read; | ||
GRANT SELECT ON ALL TABLES IN SCHEMA pgstac TO pgstac_read; | ||
|
||
|
||
GRANT EXECUTE ON ALL FUNCTIONS IN SCHEMA pgstac to pgstac_ingest; | ||
GRANT ALL ON ALL TABLES IN SCHEMA pgstac to pgstac_ingest; | ||
GRANT USAGE ON ALL SEQUENCES IN SCHEMA pgstac to pgstac_ingest; | ||
|
||
SELECT update_partition_stats_q(partition) FROM partitions_view; | ||
SELECT set_version('0.7.9'); |
Oops, something went wrong.