mirror of
https://github.com/bitwarden/server
synced 2025-12-12 22:33:45 +00:00
[PM-8108] Add Duo SDK v4 metadata to Duo Two Factor Provider (#4774)
* Migrate Duo Two Factor Configuration to support both v2 and v4 * Postgres Migrations * SQLite migrations * comment updates for SQLite; Query changes for consistency; * comment clean up; formatting
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
-- Update User table
|
||||
update
|
||||
"User"
|
||||
set
|
||||
"TwoFactorProviders" = jsonb_set(
|
||||
jsonb_set("TwoFactorProviders"::jsonb,
|
||||
'{2,MetaData,ClientSecret}',
|
||||
("TwoFactorProviders"::jsonb -> '2' -> 'MetaData' -> 'SKey')),
|
||||
'{2,MetaData,ClientId}',
|
||||
("TwoFactorProviders"::jsonb -> '2' -> 'MetaData' -> 'IKey'))
|
||||
where
|
||||
"TwoFactorProviders" like '%"2":%'
|
||||
and jsonb_typeof("TwoFactorProviders"::jsonb) = 'object';
|
||||
|
||||
-- Update Organization table
|
||||
update
|
||||
"Organization"
|
||||
set
|
||||
"TwoFactorProviders" = jsonb_set(
|
||||
jsonb_set("TwoFactorProviders"::jsonb,
|
||||
'{6,MetaData,ClientSecret}',
|
||||
("TwoFactorProviders"::jsonb -> '6' -> 'MetaData' -> 'SKey')),
|
||||
'{6,MetaData,ClientId}',
|
||||
("TwoFactorProviders"::jsonb -> '6' -> 'MetaData' -> 'IKey'))
|
||||
where
|
||||
"TwoFactorProviders" like '%"6":%'
|
||||
and jsonb_typeof("TwoFactorProviders"::jsonb) = 'object';
|
||||
|
||||
Reference in New Issue
Block a user