-
Notifications
You must be signed in to change notification settings - Fork 316
Expand file tree
/
Copy pathorganization.service.ts
More file actions
663 lines (597 loc) · 18.6 KB
/
organization.service.ts
File metadata and controls
663 lines (597 loc) · 18.6 KB
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
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
import {
Injectable,
NotFoundException,
Logger,
BadRequestException,
ForbiddenException,
InternalServerErrorException,
} from '@nestjs/common';
import { allRoles } from '@trycompai/auth';
import { GetObjectCommand, PutObjectCommand } from '@aws-sdk/client-s3';
import { getSignedUrl } from '@aws-sdk/s3-request-presigner';
import { db, Role } from '@trycompai/db';
import { APP_AWS_ORG_ASSETS_BUCKET, s3Client } from '../app/s3';
import type { UpdateOrganizationDto } from './dto/update-organization.dto';
import type { TransferOwnershipResponseDto } from './dto/transfer-ownership.dto';
@Injectable()
export class OrganizationService {
private readonly logger = new Logger(OrganizationService.name);
async findById(id: string) {
try {
const organization = await db.organization.findUnique({
where: { id },
select: {
id: true,
name: true,
slug: true,
logo: true,
metadata: true,
website: true,
onboardingCompleted: true,
hasAccess: true,
fleetDmLabelId: true,
isFleetSetupCompleted: true,
primaryColor: true,
advancedModeEnabled: true,
createdAt: true,
},
});
if (!organization) {
throw new NotFoundException(`Organization with ID ${id} not found`);
}
this.logger.log(`Retrieved organization: ${organization.name} (${id})`);
return organization;
} catch (error) {
if (error instanceof NotFoundException) {
throw error;
}
this.logger.error(`Failed to retrieve organization ${id}:`, error);
throw error;
}
}
async findOnboarding(organizationId: string) {
const onboarding = await db.onboarding.findFirst({
where: { organizationId },
select: { triggerJobId: true, triggerJobCompleted: true },
});
return onboarding;
}
async updateById(id: string, updateData: UpdateOrganizationDto) {
try {
// First check if the organization exists
const existingOrganization = await db.organization.findUnique({
where: { id },
select: {
id: true,
name: true,
slug: true,
logo: true,
metadata: true,
website: true,
onboardingCompleted: true,
hasAccess: true,
fleetDmLabelId: true,
isFleetSetupCompleted: true,
primaryColor: true,
advancedModeEnabled: true,
createdAt: true,
},
});
if (!existingOrganization) {
throw new NotFoundException(`Organization with ID ${id} not found`);
}
// Update the organization with only provided fields
const updatedOrganization = await db.organization.update({
where: { id },
data: updateData,
select: {
id: true,
name: true,
slug: true,
logo: true,
metadata: true,
website: true,
onboardingCompleted: true,
hasAccess: true,
fleetDmLabelId: true,
isFleetSetupCompleted: true,
primaryColor: true,
advancedModeEnabled: true,
createdAt: true,
},
});
this.logger.log(
`Updated organization: ${updatedOrganization.name} (${id})`,
);
return updatedOrganization;
} catch (error) {
if (error instanceof NotFoundException) {
throw error;
}
this.logger.error(`Failed to update organization ${id}:`, error);
throw error;
}
}
async deleteById(id: string) {
try {
// First check if the organization exists
const organization = await db.organization.findUnique({
where: { id },
select: {
id: true,
name: true,
},
});
if (!organization) {
throw new NotFoundException(`Organization with ID ${id} not found`);
}
// Delete the organization
await db.organization.delete({
where: { id },
});
this.logger.log(`Deleted organization: ${organization.name} (${id})`);
return { success: true, deletedOrganization: organization };
} catch (error) {
if (error instanceof NotFoundException) {
throw error;
}
this.logger.error(`Failed to delete organization ${id}:`, error);
throw error;
}
}
async transferOwnership(
organizationId: string,
currentUserId: string,
newOwnerId: string,
): Promise<TransferOwnershipResponseDto> {
try {
// Validate input
if (!newOwnerId || newOwnerId.trim() === '') {
throw new BadRequestException('New owner must be selected');
}
// Get current user's member record
const currentUserMember = await db.member.findFirst({
where: { organizationId, userId: currentUserId },
});
if (!currentUserMember) {
throw new ForbiddenException(
'Current user is not a member of this organization',
);
}
// Check if current user is the owner
const currentUserRoles =
currentUserMember.role?.split(',').map((r) => r.trim()) ?? [];
if (!currentUserRoles.includes(Role.owner)) {
throw new ForbiddenException(
'Only the organization owner can transfer ownership',
);
}
// Get new owner's member record
const newOwnerMember = await db.member.findFirst({
where: {
id: newOwnerId,
organizationId,
deactivated: false,
},
});
if (!newOwnerMember) {
throw new NotFoundException('New owner not found or is deactivated');
}
// Prevent transferring to self
if (newOwnerMember.userId === currentUserId) {
throw new BadRequestException(
'You cannot transfer ownership to yourself',
);
}
// Parse new owner's current roles
const newOwnerRoles =
newOwnerMember.role?.split(',').map((r) => r.trim()) ?? [];
// Check if new owner already has owner role (shouldn't happen, but safety check)
if (newOwnerRoles.includes(Role.owner)) {
throw new BadRequestException('Selected member is already an owner');
}
// Prepare updated roles for current owner:
// Remove 'owner', add 'admin' if not present, keep all other roles
const updatedCurrentOwnerRoles = currentUserRoles
.filter((role) => role !== Role.owner) // Remove owner
.concat(currentUserRoles.includes(Role.admin) ? [] : [Role.admin]); // Add admin if not present
// Prepare updated roles for new owner:
// Add 'owner', keep all existing roles
const updatedNewOwnerRoles = [...new Set([...newOwnerRoles, Role.owner])]; // Use Set to avoid duplicates
this.logger.log('[Transfer Ownership] Role updates:', {
organizationId,
currentOwner: {
memberId: currentUserMember.id,
userId: currentUserId,
before: currentUserRoles,
after: updatedCurrentOwnerRoles,
},
newOwner: {
memberId: newOwnerMember.id,
userId: newOwnerMember.userId,
before: newOwnerRoles,
after: updatedNewOwnerRoles,
},
});
// Update both members in a transaction
await db.$transaction([
// Remove owner role from current user and add admin role (keep other roles)
db.member.update({
where: { id: currentUserMember.id },
data: {
role: updatedCurrentOwnerRoles.sort().join(','),
},
}),
// Add owner role to new owner (keep all existing roles)
db.member.update({
where: { id: newOwnerMember.id },
data: {
role: updatedNewOwnerRoles.sort().join(','),
},
}),
]);
this.logger.log(
`Ownership transferred successfully for organization ${organizationId}`,
);
return {
success: true,
message: 'Ownership transferred successfully',
currentOwner: {
memberId: currentUserMember.id,
previousRoles: currentUserRoles,
newRoles: updatedCurrentOwnerRoles,
},
newOwner: {
memberId: newOwnerMember.id,
previousRoles: newOwnerRoles,
newRoles: updatedNewOwnerRoles,
},
};
} catch (error) {
if (
error instanceof NotFoundException ||
error instanceof BadRequestException ||
error instanceof ForbiddenException
) {
throw error;
}
this.logger.error(
`Failed to transfer ownership for organization ${organizationId}:`,
error,
);
throw error;
}
}
async listApiKeys(organizationId: string) {
const apiKeys = await db.apiKey.findMany({
where: { organizationId, isActive: true },
select: {
id: true,
name: true,
createdAt: true,
expiresAt: true,
lastUsedAt: true,
isActive: true,
scopes: true,
},
orderBy: { createdAt: 'desc' },
});
return {
data: apiKeys.map((key) => ({
...key,
createdAt: key.createdAt.toISOString(),
expiresAt: key.expiresAt ? key.expiresAt.toISOString() : null,
lastUsedAt: key.lastUsedAt ? key.lastUsedAt.toISOString() : null,
})),
count: apiKeys.length,
};
}
async getRoleNotificationSettings(organizationId: string) {
const BUILT_IN_ROLES = Object.keys(allRoles);
const BUILT_IN_DEFAULTS: Record<
string,
Record<string, boolean>
> = {
owner: {
policyNotifications: true,
taskReminders: true,
taskAssignments: true,
taskMentions: true,
weeklyTaskDigest: true,
findingNotifications: true,
},
admin: {
policyNotifications: true,
taskReminders: true,
taskAssignments: true,
taskMentions: true,
weeklyTaskDigest: true,
findingNotifications: true,
},
auditor: {
policyNotifications: true,
taskReminders: false,
taskAssignments: false,
taskMentions: false,
weeklyTaskDigest: false,
findingNotifications: true,
},
employee: {
policyNotifications: true,
taskReminders: false,
taskAssignments: false,
taskMentions: false,
weeklyTaskDigest: false,
findingNotifications: false,
},
contractor: {
policyNotifications: true,
taskReminders: false,
taskAssignments: false,
taskMentions: false,
weeklyTaskDigest: false,
findingNotifications: false,
},
};
const ALL_ON: Record<string, boolean> = {
policyNotifications: true,
taskReminders: true,
taskAssignments: true,
taskMentions: true,
weeklyTaskDigest: true,
findingNotifications: true,
};
const [savedSettings, customRoles] = await Promise.all([
db.roleNotificationSetting.findMany({ where: { organizationId } }),
db.organizationRole.findMany({
where: { organizationId },
select: { name: true },
}),
]);
const settingsMap = new Map(savedSettings.map((s) => [s.role, s]));
const configs: Array<{
role: string;
label: string;
isCustom: boolean;
notifications: Record<string, boolean>;
}> = [];
for (const role of BUILT_IN_ROLES) {
const saved = settingsMap.get(role);
const defaults = BUILT_IN_DEFAULTS[role];
configs.push({
role,
label: role.charAt(0).toUpperCase() + role.slice(1),
isCustom: false,
notifications: saved
? {
policyNotifications: saved.policyNotifications,
taskReminders: saved.taskReminders,
taskAssignments: saved.taskAssignments,
taskMentions: saved.taskMentions,
weeklyTaskDigest: saved.weeklyTaskDigest,
findingNotifications: saved.findingNotifications,
}
: defaults,
});
}
for (const customRole of customRoles) {
const saved = settingsMap.get(customRole.name);
configs.push({
role: customRole.name,
label: customRole.name,
isCustom: true,
notifications: saved
? {
policyNotifications: saved.policyNotifications,
taskReminders: saved.taskReminders,
taskAssignments: saved.taskAssignments,
taskMentions: saved.taskMentions,
weeklyTaskDigest: saved.weeklyTaskDigest,
findingNotifications: saved.findingNotifications,
}
: ALL_ON,
});
}
return { data: configs };
}
async getLogoSignedUrl(logoKey: string | null | undefined): Promise<string | null> {
if (!logoKey || !s3Client || !APP_AWS_ORG_ASSETS_BUCKET) {
return null;
}
try {
return await getSignedUrl(
s3Client,
new GetObjectCommand({
Bucket: APP_AWS_ORG_ASSETS_BUCKET,
Key: logoKey,
}),
{ expiresIn: 3600 },
);
} catch {
return null;
}
}
async getOwnershipData(organizationId: string, userId: string) {
const currentUserMember = await db.member.findFirst({
where: { organizationId, userId, deactivated: false },
});
const currentUserRoles =
currentUserMember?.role?.split(',').map((r) => r.trim()) ?? [];
const isOwner = currentUserRoles.includes(Role.owner);
let eligibleMembers: Array<{
id: string;
user: { name: string | null; email: string };
}> = [];
if (isOwner) {
eligibleMembers = await db.member.findMany({
where: {
organizationId,
userId: { not: userId },
deactivated: false,
},
select: {
id: true,
user: { select: { name: true, email: true } },
},
orderBy: { user: { email: 'asc' } },
});
}
return { isOwner, eligibleMembers };
}
async updateRoleNotifications(
organizationId: string,
settings: Array<{
role: string;
policyNotifications: boolean;
taskReminders: boolean;
taskAssignments: boolean;
taskMentions: boolean;
weeklyTaskDigest: boolean;
findingNotifications: boolean;
}>,
) {
try {
await Promise.all(
settings.map((setting) =>
db.roleNotificationSetting.upsert({
where: {
organizationId_role: {
organizationId,
role: setting.role,
},
},
create: {
organizationId,
role: setting.role,
policyNotifications: setting.policyNotifications,
taskReminders: setting.taskReminders,
taskAssignments: setting.taskAssignments,
taskMentions: setting.taskMentions,
weeklyTaskDigest: setting.weeklyTaskDigest,
findingNotifications: setting.findingNotifications,
},
update: {
policyNotifications: setting.policyNotifications,
taskReminders: setting.taskReminders,
taskAssignments: setting.taskAssignments,
taskMentions: setting.taskMentions,
weeklyTaskDigest: setting.weeklyTaskDigest,
findingNotifications: setting.findingNotifications,
},
}),
),
);
this.logger.log(
`Updated role notification settings for organization ${organizationId} (${settings.length} roles)`,
);
return { success: true };
} catch (error) {
this.logger.error(
`Failed to update role notification settings for organization ${organizationId}:`,
error,
);
throw error;
}
}
async uploadLogo(
organizationId: string,
fileName: string,
fileType: string,
fileData: string,
) {
if (!fileType.startsWith('image/')) {
throw new BadRequestException('Only image files are allowed');
}
if (!s3Client || !APP_AWS_ORG_ASSETS_BUCKET) {
throw new InternalServerErrorException(
'File upload service is not available',
);
}
const fileBuffer = Buffer.from(fileData, 'base64');
const MAX_LOGO_SIZE = 2 * 1024 * 1024;
if (fileBuffer.length > MAX_LOGO_SIZE) {
throw new BadRequestException('Logo must be less than 2MB');
}
const timestamp = Date.now();
const sanitizedFileName = fileName.replace(/[^a-zA-Z0-9.-]/g, '_');
const key = `${organizationId}/logo/${timestamp}-${sanitizedFileName}`;
await s3Client.send(
new PutObjectCommand({
Bucket: APP_AWS_ORG_ASSETS_BUCKET,
Key: key,
Body: fileBuffer,
ContentType: fileType,
}),
);
await db.organization.update({
where: { id: organizationId },
data: { logo: key },
});
const signedUrl = await getSignedUrl(
s3Client,
new GetObjectCommand({
Bucket: APP_AWS_ORG_ASSETS_BUCKET,
Key: key,
}),
{ expiresIn: 3600 },
);
return { logoUrl: signedUrl };
}
async removeLogo(organizationId: string) {
await db.organization.update({
where: { id: organizationId },
data: { logo: null },
});
return { success: true };
}
async getPrimaryColor(organizationId: string, token?: string) {
try {
let targetOrgId = organizationId;
// If token is provided, resolve organization from the access grant
if (token) {
const grant = await db.trustAccessGrant.findUnique({
where: { accessToken: token },
select: {
expiresAt: true,
accessRequest: {
select: {
organizationId: true,
},
},
},
});
if (!grant) {
throw new NotFoundException('Invalid or expired access token');
}
if (grant.expiresAt && new Date() > grant.expiresAt) {
throw new NotFoundException('Access token has expired');
}
targetOrgId = grant.accessRequest.organizationId;
}
const primaryColor = await db.organization.findUnique({
where: { id: targetOrgId },
select: { primaryColor: true },
});
if (!primaryColor) {
throw new NotFoundException(
`Organization with ID ${targetOrgId} not found`,
);
}
this.logger.log(
`Retrieved organization primary color for organization ${targetOrgId}: ${primaryColor.primaryColor}`,
);
return {
primaryColor: primaryColor.primaryColor,
};
} catch (error) {
if (error instanceof NotFoundException) {
throw error;
}
this.logger.error(
`Failed to retrieve organization primary color for organization ${organizationId}:`,
error,
);
throw error;
}
}
}