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
201 lines
6.5 KiB
JavaScript
201 lines
6.5 KiB
JavaScript
/**
|
|
* @param { import("knex").Knex } knex
|
|
* @returns { Promise<void> }
|
|
*/
|
|
exports.up = async function(knex) {
|
|
// Helper function to create a permission if it doesn't exist
|
|
const ensurePermission = async (tenant, resource, action, msp = true, client = false, description = null) => {
|
|
const existing = await knex('permissions')
|
|
.where({ tenant, resource, action })
|
|
.first();
|
|
|
|
if (!existing) {
|
|
const [permission] = await knex('permissions')
|
|
.insert({
|
|
tenant,
|
|
resource,
|
|
action,
|
|
msp,
|
|
client,
|
|
description,
|
|
permission_id: knex.raw('gen_random_uuid()'),
|
|
created_at: knex.fn.now()
|
|
})
|
|
.returning('*');
|
|
return permission;
|
|
}
|
|
|
|
// Update existing permission with msp/client flags and description
|
|
await knex('permissions')
|
|
.where({ tenant, resource, action })
|
|
.update({ msp, client, description });
|
|
|
|
return existing;
|
|
};
|
|
|
|
// Helper function to assign permission to role
|
|
const assignPermissionToRole = async (tenant, roleId, permissionId) => {
|
|
const existing = await knex('role_permissions')
|
|
.where({ tenant, role_id: roleId, permission_id: permissionId })
|
|
.first();
|
|
|
|
if (!existing) {
|
|
await knex('role_permissions').insert({
|
|
tenant,
|
|
role_id: roleId,
|
|
permission_id: permissionId,
|
|
created_at: knex.fn.now()
|
|
});
|
|
}
|
|
};
|
|
|
|
// Get all tenants
|
|
const tenants = await knex('tenants').select('tenant');
|
|
|
|
for (const { tenant } of tenants) {
|
|
console.log(`Processing tenant: ${tenant} - Adding project_task permissions`);
|
|
|
|
// Define project_task permissions (similar to project permissions)
|
|
const projectTaskPermissions = [
|
|
{ action: 'create', description: 'Create new project tasks' },
|
|
{ action: 'read', description: 'View project task details' },
|
|
{ action: 'update', description: 'Modify project task information' },
|
|
{ action: 'delete', description: 'Delete project tasks' }
|
|
];
|
|
|
|
const permissionMap = new Map();
|
|
|
|
// Create permissions for MSP portal
|
|
for (const perm of projectTaskPermissions) {
|
|
const permission = await ensurePermission(
|
|
tenant,
|
|
'project_task',
|
|
perm.action,
|
|
true, // MSP
|
|
false, // Client - project tasks are MSP only like projects
|
|
perm.description
|
|
);
|
|
permissionMap.set(perm.action, permission.permission_id);
|
|
}
|
|
|
|
// Find all roles that have project permissions and grant them project_task permissions too
|
|
// Split the join to avoid Citus repartitioning issues
|
|
const projectPermissions = await knex('permissions')
|
|
.where('tenant', tenant)
|
|
.where('resource', 'project')
|
|
.select('permission_id', 'action');
|
|
|
|
const projectPermissionIds = projectPermissions.map(p => p.permission_id);
|
|
|
|
let rolesWithProjectPerms = [];
|
|
if (projectPermissionIds.length > 0) {
|
|
const rolePermissions = await knex('role_permissions')
|
|
.where('tenant', tenant)
|
|
.whereIn('permission_id', projectPermissionIds)
|
|
.select('role_id', 'permission_id')
|
|
.distinct();
|
|
|
|
// Map back to actions
|
|
const permissionIdToAction = new Map(
|
|
projectPermissions.map(p => [p.permission_id, p.action])
|
|
);
|
|
|
|
rolesWithProjectPerms = rolePermissions.map(rp => ({
|
|
role_id: rp.role_id,
|
|
action: permissionIdToAction.get(rp.permission_id)
|
|
}));
|
|
}
|
|
|
|
console.log(`Found ${rolesWithProjectPerms.length} role-permission combinations for projects`);
|
|
|
|
// Grant corresponding project_task permissions
|
|
for (const rolePerm of rolesWithProjectPerms) {
|
|
const permissionId = permissionMap.get(rolePerm.action);
|
|
if (permissionId) {
|
|
await assignPermissionToRole(tenant, rolePerm.role_id, permissionId);
|
|
console.log(`Granted project_task:${rolePerm.action} to role ${rolePerm.role_id}`);
|
|
}
|
|
}
|
|
|
|
// Also create read permission for client portal (like projects)
|
|
const clientReadPermission = await ensurePermission(
|
|
tenant,
|
|
'project_task',
|
|
'read',
|
|
true, // MSP can read
|
|
true, // Client can also read
|
|
'View project task details'
|
|
);
|
|
|
|
// Update the permission map with the client-enabled read permission
|
|
permissionMap.set('read', clientReadPermission.permission_id);
|
|
|
|
// Find client roles that have project:read permission and grant them project_task:read
|
|
// Split the joins to avoid Citus repartitioning issues
|
|
const projectReadPermission = await knex('permissions')
|
|
.where('tenant', tenant)
|
|
.where('resource', 'project')
|
|
.where('action', 'read')
|
|
.first();
|
|
|
|
let clientRolesWithProjectRead = [];
|
|
if (projectReadPermission) {
|
|
// Get role permissions for this permission
|
|
const rolePerms = await knex('role_permissions')
|
|
.where('tenant', tenant)
|
|
.where('permission_id', projectReadPermission.permission_id)
|
|
.select('role_id');
|
|
|
|
const roleIds = rolePerms.map(rp => rp.role_id);
|
|
|
|
if (roleIds.length > 0) {
|
|
// Get client roles from those role IDs
|
|
clientRolesWithProjectRead = await knex('roles')
|
|
.where('tenant', tenant)
|
|
.whereIn('role_id', roleIds)
|
|
.where('client', true)
|
|
.select('role_id', 'role_name')
|
|
.distinct();
|
|
}
|
|
}
|
|
|
|
for (const role of clientRolesWithProjectRead) {
|
|
await assignPermissionToRole(tenant, role.role_id, clientReadPermission.permission_id);
|
|
console.log(`Granted project_task:read to client role ${role.role_name}`);
|
|
}
|
|
}
|
|
};
|
|
|
|
/**
|
|
* @param { import("knex").Knex } knex
|
|
* @returns { Promise<void> }
|
|
*/
|
|
exports.down = async function(knex) {
|
|
// Get all tenants
|
|
const tenants = await knex('tenants').select('tenant');
|
|
|
|
for (const { tenant } of tenants) {
|
|
// Find project_task permissions
|
|
const permissions = await knex('permissions')
|
|
.where({ tenant, resource: 'project_task' })
|
|
.select('permission_id');
|
|
|
|
const permissionIds = permissions.map(p => p.permission_id);
|
|
|
|
if (permissionIds.length > 0) {
|
|
// Remove role assignments
|
|
await knex('role_permissions')
|
|
.where('tenant', tenant)
|
|
.whereIn('permission_id', permissionIds)
|
|
.delete();
|
|
|
|
// Remove permissions
|
|
await knex('permissions')
|
|
.where('tenant', tenant)
|
|
.whereIn('permission_id', permissionIds)
|
|
.delete();
|
|
|
|
console.log(`Removed ${permissionIds.length} project_task permissions for tenant ${tenant}`);
|
|
}
|
|
}
|
|
}; |