forked from logto-io/logto
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: add
report:subscription:updates
Cloud scope (logto-io#6403)
- Loading branch information
Showing
4 changed files
with
108 additions
and
2 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
92 changes: 92 additions & 0 deletions
92
packages/schemas/alterations/next-1722914357-add-report-sub-updates-cloud-scope.ts
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,92 @@ | ||
import { generateStandardId } from '@logto/shared/universal'; | ||
import { sql } from '@silverhand/slonik'; | ||
|
||
import type { AlterationScript } from '../lib/types/alteration.js'; | ||
|
||
type Resource = { | ||
tenantId: string; | ||
id: string; | ||
name: string; | ||
indicator: string; | ||
isDefault: boolean; | ||
}; | ||
|
||
type Scope = { | ||
tenantId: string; | ||
id: string; | ||
resourceId: string; | ||
name: string; | ||
description: string; | ||
}; | ||
|
||
type Role = { | ||
tenantId: string; | ||
id: string; | ||
name: string; | ||
description: string; | ||
}; | ||
|
||
const cloudApiIndicator = 'https://cloud.logto.io/api'; | ||
|
||
const cloudConnectionAppRoleName = 'tenantApplication'; | ||
|
||
const adminTenantId = 'admin'; | ||
|
||
const reportSubscriptionUpdatesScopeName = 'report:subscription:updates'; | ||
const reportSubscriptionUpdatesScopeDescription = | ||
'Allow reporting changes on Stripe subscription to Logto Cloud.'; | ||
|
||
const alteration: AlterationScript = { | ||
up: async (pool) => { | ||
// Get the Cloud API resource | ||
const cloudApiResource = await pool.one<Resource>(sql` | ||
select * from resources | ||
where tenant_id = ${adminTenantId} | ||
and indicator = ${cloudApiIndicator} | ||
`); | ||
|
||
// Get cloud connection application role | ||
const tenantApplicationRole = await pool.one<Role>(sql` | ||
select * from roles | ||
where tenant_id = ${adminTenantId} | ||
and name = ${cloudConnectionAppRoleName} and type = 'MachineToMachine' | ||
`); | ||
|
||
// Create the `report:subscription:updates` scope | ||
const reportSubscriptionUpdatesCloudScope = await pool.one<Scope>(sql` | ||
insert into scopes (id, tenant_id, resource_id, name, description) | ||
values (${generateStandardId()}, ${adminTenantId}, ${ | ||
cloudApiResource.id | ||
}, ${reportSubscriptionUpdatesScopeName}, ${reportSubscriptionUpdatesScopeDescription}) | ||
returning *; | ||
`); | ||
|
||
// Assign the `report:subscription:updates` scope to cloud connection application role | ||
await pool.query(sql` | ||
insert into roles_scopes (id, tenant_id, role_id, scope_id) | ||
values (${generateStandardId()}, ${adminTenantId}, ${tenantApplicationRole.id}, ${ | ||
reportSubscriptionUpdatesCloudScope.id | ||
}); | ||
`); | ||
}, | ||
down: async (pool) => { | ||
// Get the Cloud API resource | ||
const cloudApiResource = await pool.one<Resource>(sql` | ||
select * from resources | ||
where tenant_id = ${adminTenantId} | ||
and indicator = ${cloudApiIndicator} | ||
`); | ||
|
||
// Remove the `report:subscription:updates` scope | ||
await pool.query(sql` | ||
delete from scopes | ||
where | ||
tenant_id = ${adminTenantId} and | ||
name = ${reportSubscriptionUpdatesScopeName} and | ||
description = ${reportSubscriptionUpdatesScopeDescription} and | ||
resource_id = ${cloudApiResource.id} | ||
`); | ||
}, | ||
}; | ||
|
||
export default alteration; |
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