Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 | 86x 86x 86x 86x 86x 86x 86x 86x 86x 86x 86x 86x 86x 86x 162x 162x 162x 162x 162x 133x 133x 133x 133x 4888x 2672x 913x 137x 1x 136x 25x 7x 55x 55x 53x 53x 53x 2x 16x 16x 3x 2x 2x 1x 1x 2x 1x 1x 11x 11x 5x 4x 3x 14x 14x 13x 1x 107x 107x 40x 67x 28x 28x 105x 105x 28x 44x 1x 43x 43x 40x 40x 2x 2x 3x 59x 55x 55x 59x 30x 55x 25x 67x 4x 4x 4x 4x 4x 4x 2x 3x 1x 1x 1x 4x 4x 4x 5x 5x 4x 6x 6x 2x 4x 4x | import * as permissions from '../types/permissions'; import User, { IUser } from '../types/user'; import { IAccessStore, IRole, IRoleWithPermissions, IUserPermission, IUserRole, } from '../types/stores/access-store'; import { IUserStore } from '../types/stores/user-store'; import { Logger } from '../logger'; import { IUnleashStores } from '../types/stores'; import { IAvailablePermissions, ICustomRole, IPermission, IRoleData, IUserWithRole, RoleName, RoleType, } from '../types/model'; import { IRoleStore } from 'lib/types/stores/role-store'; import NameExistsError from '../error/name-exists-error'; import { IEnvironmentStore } from 'lib/types/stores/environment-store'; import RoleInUseError from '../error/role-in-use-error'; import { roleSchema } from '../schema/role-schema'; import { CUSTOM_ROLE_TYPE } from '../util/constants'; import { DEFAULT_PROJECT } from '../types/project'; import InvalidOperationError from '../error/invalid-operation-error'; export const ALL_PROJECTS = '*'; export const ALL_ENVS = '*'; const { ADMIN } = permissions; const PROJECT_ADMIN = [ permissions.UPDATE_PROJECT, permissions.DELETE_PROJECT, permissions.CREATE_FEATURE, permissions.UPDATE_FEATURE, permissions.DELETE_FEATURE, ]; interface IRoleCreation { name: string; description: string; permissions?: IPermission[]; } interface IRoleUpdate { id: number; name: string; description: string; permissions?: IPermission[]; } const isProjectPermission = (permission) => PROJECT_ADMIN.includes(permission); export class AccessService { private store: IAccessStore; private userStore: IUserStore; private roleStore: IRoleStore; private environmentStore: IEnvironmentStore; private logger: Logger; constructor( { accessStore, userStore, roleStore, environmentStore, }: Pick< IUnleashStores, 'accessStore' | 'userStore' | 'roleStore' | 'environmentStore' >, { getLogger }: { getLogger: Function }, ) { this.store = accessStore; this.userStore = userStore; this.roleStore = roleStore; this.environmentStore = environmentStore; this.logger = getLogger('/services/access-service.ts'); } /** * Used to check if a user has access to the requested resource * * @param user * @param permission * @param projectId */ async hasPermission( user: User, permission: string, projectId?: string, environment?: string, ): Promise<boolean> { this.logger.info( `Checking permission=${permission}, userId=${user.id}, projectId=${projectId}, environment=${environment}`, ); try { const userP = await this.getPermissionsForUser(user); return userP .filter( (p) => !p.project || p.project === projectId || p.project === ALL_PROJECTS, ) .filter( (p) => !p.environment || p.environment === environment || p.environment === ALL_ENVS, ) .some( (p) => p.permission === permission || p.permission === ADMIN, ); } catch (e) { this.logger.error( `Error checking permission=${permission}, userId=${user.id} projectId=${projectId}`, e, ); return Promise.resolve(false); } } async getPermissionsForUser(user: IUser): Promise<IUserPermission[]> { if (user.isAPI) { return user.permissions?.map((p) => ({ permission: p, })); } return this.store.getPermissionsForUser(user.id); } async getPermissions(): Promise<IAvailablePermissions> { const bindablePermissions = await this.store.getAvailablePermissions(); const environments = await this.environmentStore.getAll(); const projectPermissions = bindablePermissions.filter((x) => { return x.type === 'project'; }); const environmentPermissions = bindablePermissions.filter((perm) => { return perm.type === 'environment'; }); const allEnvironmentPermissions = environments.map((env) => { return { name: env.name, permissions: environmentPermissions.map((permission) => { return { environment: env.name, ...permission }; }), }; }); return { project: projectPermissions, environments: allEnvironmentPermissions, }; } async addUserToRole( userId: number, roleId: number, projectId: string, ): Promise<void> { return this.store.addUserToRole(userId, roleId, projectId); } async getRoleByName(roleName: string): Promise<IRole> { return this.roleStore.getRoleByName(roleName); } async setUserRootRole( userId: number, role: number | RoleName, ): Promise<void> { const newRootRole = await this.resolveRootRole(role); if (newRootRole) { try { await this.store.removeRolesOfTypeForUser( userId, RoleType.ROOT, ); await this.store.addUserToRole( userId, newRootRole.id, DEFAULT_PROJECT, ); } catch (error) { throw new Error( `Could not add role=${newRootRole.name} to userId=${userId}`, ); } } else { throw new Error(`Could not find rootRole=${role}`); } } async getUserRootRoles(userId: number): Promise<IRole[]> { const userRoles = await this.store.getRolesForUserId(userId); return userRoles.filter((r) => r.type === RoleType.ROOT); } async removeUserFromRole( userId: number, roleId: number, projectId: string, ): Promise<void> { return this.store.removeUserFromRole(userId, roleId, projectId); } async updateUserProjectRole( userId: number, roleId: number, projectId: string, ): Promise<void> { return this.store.updateUserProjectRole(userId, roleId, projectId); } //This actually only exists for testing purposes async addPermissionToRole( roleId: number, permission: string, environment?: string, ): Promise<void> { if (isProjectPermission(permission) && !environment) { throw new Error( `ProjectId cannot be empty for permission=${permission}`, ); } return this.store.addPermissionsToRole( roleId, [permission], environment, ); } //This actually only exists for testing purposes async removePermissionFromRole( roleId: number, permission: string, environment?: string, ): Promise<void> { if (isProjectPermission(permission) && !environment) { throw new Error( `ProjectId cannot be empty for permission=${permission}`, ); } return this.store.removePermissionFromRole( roleId, permission, environment, ); } async getRoles(): Promise<IRole[]> { return this.roleStore.getRoles(); } async getRole(id: number): Promise<IRoleWithPermissions> { const role = await this.store.get(id); const rolePermissions = await this.store.getPermissionsForRole(role.id); return { ...role, permissions: rolePermissions, }; } async getRoleData(roleId: number): Promise<IRoleData> { const [role, rolePerms, users] = await Promise.all([ this.store.get(roleId), this.store.getPermissionsForRole(roleId), this.getUsersForRole(roleId), ]); return { role, permissions: rolePerms, users }; } async getProjectRoles(): Promise<IRole[]> { return this.roleStore.getProjectRoles(); } async getRolesForProject(projectId: string): Promise<IRole[]> { return this.roleStore.getRolesForProject(projectId); } async getRolesForUser(userId: number): Promise<IRole[]> { return this.store.getRolesForUserId(userId); } async unlinkUserRoles(userId: number): Promise<void> { return this.store.unlinkUserRoles(userId); } async getUsersForRole(roleId: number): Promise<IUser[]> { const userIdList = await this.store.getUserIdsForRole(roleId); if (userIdList.length > 0) { return this.userStore.getAllWithId(userIdList); } return []; } async getProjectUsersForRole( roleId: number, projectId?: string, ): Promise<IUser[]> { const userIdList = await this.store.getProjectUserIdsForRole( roleId, projectId, ); if (userIdList.length > 0) { return this.userStore.getAllWithId(userIdList); } return []; } // Move to project-service? async getProjectRoleUsers( projectId: string, ): Promise<[IRole[], IUserWithRole[]]> { const roles = await this.roleStore.getProjectRoles(); const users = await Promise.all( roles.map(async (role) => { const projectUsers = await this.getProjectUsersForRole( role.id, projectId, ); return projectUsers.map((u) => ({ ...u, roleId: role.id })); }), ); return [roles, users.flat()]; } async createDefaultProjectRoles( owner: IUser, projectId: string, ): Promise<void> { if (!projectId) { throw new Error('ProjectId cannot be empty'); } const ownerRole = await this.roleStore.getRoleByName(RoleName.OWNER); // TODO: remove this when all users is guaranteed to have a unique id. if (owner.id) { this.logger.info( `Making ${owner.id} admin of ${projectId} via roleId=${ownerRole.id}`, ); await this.store.addUserToRole(owner.id, ownerRole.id, projectId); } } async removeDefaultProjectRoles( owner: User, projectId: string, ): Promise<void> { this.logger.info(`Removing project roles for ${projectId}`); return this.roleStore.removeRolesForProject(projectId); } async getRootRoleForAllUsers(): Promise<IUserRole[]> { return this.roleStore.getRootRoleForAllUsers(); } async getRootRoles(): Promise<IRole[]> { return this.roleStore.getRootRoles(); } public async resolveRootRole(rootRole: number | RoleName): Promise<IRole> { const rootRoles = await this.getRootRoles(); let role: IRole; if (typeof rootRole === 'number') { role = rootRoles.find((r) => r.id === rootRole); } else { role = rootRoles.find((r) => r.name === rootRole); } return role; } async getRootRole(roleName: RoleName): Promise<IRole> { const roles = await this.roleStore.getRootRoles(); return roles.find((r) => r.name === roleName); } async getAllRoles(): Promise<ICustomRole[]> { return this.roleStore.getAll(); } async createRole(role: IRoleCreation): Promise<ICustomRole> { const baseRole = { ...(await this.validateRole(role)), roleType: CUSTOM_ROLE_TYPE, }; const rolePermissions = role.permissions; const newRole = await this.roleStore.create(baseRole); if (rolePermissions) { await this.store.addEnvironmentPermissionsToRole( newRole.id, rolePermissions, ); } return newRole; } async updateRole(role: IRoleUpdate): Promise<ICustomRole> { await this.validateRole(role, role.id); const baseRole = { id: role.id, name: role.name, description: role.description, roleType: CUSTOM_ROLE_TYPE, }; const rolePermissions = role.permissions; const newRole = await this.roleStore.update(baseRole); Iif (rolePermissions) { await this.store.wipePermissionsFromRole(newRole.id); await this.store.addEnvironmentPermissionsToRole( newRole.id, rolePermissions, ); } return newRole; } async deleteRole(id: number): Promise<void> { await this.validateRoleIsNotBuiltIn(id); const roleUsers = await this.getUsersForRole(id); if (roleUsers.length > 0) { throw new RoleInUseError( 'Role is in use by more than one user. You cannot delete a role that is in use without first removing the role from the users.', ); } return this.roleStore.delete(id); } async validateRoleIsUnique( roleName: string, existingId?: number, ): Promise<void> { const exists = await this.roleStore.nameInUse(roleName, existingId); Iif (exists) { throw new NameExistsError( `There already exists a role with the name ${roleName}`, ); } return Promise.resolve(); } async validateRoleIsNotBuiltIn(roleId: number): Promise<void> { const role = await this.store.get(roleId); if (role.type !== CUSTOM_ROLE_TYPE) { throw new InvalidOperationError( 'You cannot change built in roles.', ); } } async validateRole( role: IRoleCreation, existingId?: number, ): Promise<IRoleCreation> { const cleanedRole = await roleSchema.validateAsync(role); if (existingId) { await this.validateRoleIsNotBuiltIn(existingId); } await this.validateRoleIsUnique(role.name, existingId); return cleanedRole; } } |