Some checks are pending
Bidi Control Character Guard / bidi-control-guard (push) Waiting to run
Circular Dependency Check / Check for new circular dependencies (push) Waiting to run
Citus Migration Smoke / Combined migrations on single-node Citus (push) Waiting to run
E2E Fresh Install Tests / fresh-install-e2e (push) Waiting to run
ext-v2 guardrails / Run ext-v2 guard and ESLint (push) Waiting to run
Integration Tests / Check for relevant changes (push) Waiting to run
Integration Tests / ${{ (github.event_name == 'schedule' || github.event.inputs.suite == 'full') && 'Full integration suite' || 'Tier-1 integration subset' }} (push) Blocked by required conditions
Mobile checks / Mobile lint + typecheck (push) Waiting to run
Mobile checks / Mobile unit tests (push) Waiting to run
Mobile checks / Mobile dependency audit (report) (push) Waiting to run
Mobile checks / Mobile reproducibility checks (push) Waiting to run
Secrets guard (env backups) / Ensure no tracked env backup files (push) Waiting to run
Temporal Readiness / fast-readiness (push) Waiting to run
Temporal Readiness / docker-parity (push) Waiting to run
TypeScript Type Check / Nx affected typecheck (push) Waiting to run
Unit Tests / Skipped-test budget (push) Waiting to run
Unit Tests / Nx affected unit tests (push) Waiting to run
Unit Tests / Server unit coverage (informational) (push) Waiting to run
Validate Tenant Management Schema / Check for relevant changes (push) Waiting to run
Validate Tenant Management Schema / Validate Tenant Management Schema (push) Blocked by required conditions
EE Workflows Build Guard / ee-workflows-build-guard (push) Waiting to run
Excluded: .git, node_modules, secrets/, compose.env, assemblyscript tgz Source: /opt/alga-psa on psa.joliet.tech
108 lines
2.9 KiB
JavaScript
108 lines
2.9 KiB
JavaScript
/**
|
|
* @param { import("knex").Knex } knex
|
|
* @returns { Promise<void> }
|
|
*/
|
|
exports.up = async function(knex) {
|
|
// Get all tenants
|
|
const tenants = await knex('tenants').select('tenant');
|
|
if (!tenants.length) return;
|
|
|
|
// For each tenant, add the permissions and update roles
|
|
for (const { tenant } of tenants) {
|
|
// Get existing permissions to avoid duplicates
|
|
const existingPerms = await knex('permissions')
|
|
.where({ tenant, resource: 'client_billing' })
|
|
.select('resource', 'action');
|
|
|
|
const existingMap = new Set(existingPerms.map(p => `${p.resource}:${p.action}`));
|
|
|
|
// Define new client_billing permissions
|
|
const permissionsToAdd = [
|
|
{ resource: 'client_billing', action: 'read' }
|
|
].filter(p => !existingMap.has(`${p.resource}:${p.action}`))
|
|
.map(p => ({
|
|
tenant,
|
|
permission_id: knex.raw('gen_random_uuid()'),
|
|
...p
|
|
}));
|
|
|
|
if (permissionsToAdd.length > 0) {
|
|
await knex('permissions').insert(permissionsToAdd);
|
|
}
|
|
|
|
// Get client_admin role
|
|
const clientAdminRole = await knex('roles')
|
|
.where({ tenant, role_name: 'client_admin' })
|
|
.first();
|
|
|
|
if (clientAdminRole) {
|
|
// Get the client_billing permission
|
|
const clientBillingPerm = await knex('permissions')
|
|
.where({
|
|
tenant,
|
|
resource: 'client_billing',
|
|
action: 'read'
|
|
})
|
|
.first();
|
|
|
|
if (clientBillingPerm) {
|
|
// Check if role permission already exists
|
|
const existingRolePerm = await knex('role_permissions')
|
|
.where({
|
|
tenant,
|
|
role_id: clientAdminRole.role_id,
|
|
permission_id: clientBillingPerm.permission_id
|
|
})
|
|
.first();
|
|
|
|
// Assign permission to client_admin role if not already assigned
|
|
if (!existingRolePerm) {
|
|
await knex('role_permissions').insert({
|
|
tenant,
|
|
role_id: clientAdminRole.role_id,
|
|
permission_id: clientBillingPerm.permission_id
|
|
});
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
/**
|
|
* @param { import("knex").Knex } knex
|
|
* @returns { Promise<void> }
|
|
*/
|
|
exports.down = async function(knex) {
|
|
// Get all tenants
|
|
const tenants = await knex('tenants').select('tenant');
|
|
if (!tenants.length) return;
|
|
|
|
for (const { tenant } of tenants) {
|
|
// Get permission IDs
|
|
const permissions = await knex('permissions')
|
|
.where({
|
|
tenant,
|
|
resource: 'client_billing',
|
|
action: 'read'
|
|
});
|
|
|
|
if (permissions.length > 0) {
|
|
const permissionIds = permissions.map(p => p.permission_id);
|
|
|
|
// Remove role permissions
|
|
await knex('role_permissions')
|
|
.where('tenant', tenant)
|
|
.whereIn('permission_id', permissionIds)
|
|
.delete();
|
|
|
|
// Remove permissions
|
|
await knex('permissions')
|
|
.where({
|
|
tenant,
|
|
resource: 'client_billing',
|
|
action: 'read'
|
|
})
|
|
.delete();
|
|
}
|
|
}
|
|
}; |