mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 19:44:21 +00:00
4eaa3163b6
# Which Problems Are Solved We identified the need of caching. Currently we have a number of places where we use different ways of caching, like go maps or LRU. We might also want shared chaches in the future, like Redis-based or in special SQL tables. # How the Problems Are Solved Define a generic Cache interface which allows different implementations. - A noop implementation is provided and enabled as. - An implementation using go maps is provided - disabled in defaults.yaml - enabled in integration tests - Authz middleware instance objects are cached using the interface. # Additional Changes - Enabled integration test command raceflag - Fix a race condition in the limits integration test client - Fix a number of flaky integration tests. (Because zitadel is super fast now!) 🎸 🚀 # Additional Context Related to https://github.com/zitadel/zitadel/issues/8648
50 lines
1.5 KiB
SQL
50 lines
1.5 KiB
SQL
with domain as (
|
|
select instance_id from projections.instance_domains
|
|
where domain = $1
|
|
), instance_features as (
|
|
select i.*
|
|
from domain d
|
|
join projections.instance_features2 i on d.instance_id = i.instance_id
|
|
), features as (
|
|
select instance_id, json_object_agg(
|
|
coalesce(i.key, s.key),
|
|
coalesce(i.value, s.value)
|
|
) features
|
|
from domain d
|
|
cross join projections.system_features s
|
|
full outer join instance_features i using (instance_id, key)
|
|
group by instance_id
|
|
), external_domains as (
|
|
select ed.instance_id, array_agg(ed.domain) as domains
|
|
from domain d
|
|
join projections.instance_domains ed on d.instance_id = ed.instance_id
|
|
group by ed.instance_id
|
|
), trusted_domains as (
|
|
select td.instance_id, array_agg(td.domain) as domains
|
|
from domain d
|
|
join projections.instance_trusted_domains td on d.instance_id = td.instance_id
|
|
group by td.instance_id
|
|
)
|
|
select
|
|
i.id,
|
|
i.default_org_id,
|
|
i.iam_project_id,
|
|
i.console_client_id,
|
|
i.console_app_id,
|
|
i.default_language,
|
|
s.enable_iframe_embedding,
|
|
s.origins,
|
|
s.enable_impersonation,
|
|
l.audit_log_retention,
|
|
l.block,
|
|
f.features,
|
|
ed.domains as external_domains,
|
|
td.domains as trusted_domains
|
|
from domain d
|
|
join projections.instances i on i.id = d.instance_id
|
|
left join projections.security_policies2 s on i.id = s.instance_id
|
|
left join projections.limits l on i.id = l.instance_id
|
|
left join features f on i.id = f.instance_id
|
|
left join external_domains ed on i.id = ed.instance_id
|
|
left join trusted_domains td on i.id = td.instance_id;
|