-
Notifications
You must be signed in to change notification settings - Fork 732
Expand file tree
/
Copy pathindex.ts
More file actions
407 lines (371 loc) · 10.2 KB
/
index.ts
File metadata and controls
407 lines (371 loc) · 10.2 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
import { QueryFilter } from '../query'
import { QueryExecutor } from '../queryExecutor'
import { syncRepositoriesEnabledStatus } from '../repositories'
import { ICreateRepositoryGroup } from '../repositoryGroups'
import {
QueryResult,
injectSoftDeletionCriteria,
prepareBulkInsert,
prepareInsert,
queryTable,
queryTableById,
updateTableById,
} from '../utils'
import { QueryOptions } from '../utils'
export interface ICreateCollection {
categoryId: string
color?: string | null
description?: string
imageUrl?: string | null
name: string
slug?: string
starred: boolean
isPrivate?: boolean
ssoUserId?: string | null
logoUrl?: string | null
}
export interface ICollection extends ICreateCollection {
id: string
createdAt: string
updatedAt: string
}
export interface ICreateCollectionWithProjects extends ICreateCollection {
projects?: {
id: string
starred: boolean
}[]
}
export interface IInsightsProject {
id: string
name: string
description?: string
segmentId: string
createdAt: string
updatedAt: string
slug: string
isLF: boolean
enabled: boolean
keywords: string[]
logoUrl: string
organizationId: string
website: string
github: string
linkedin: string
twitter: string
widgets: string[]
repositories:
| {
platform: string
url: string
}[]
| string[]
repositoryGroups: ICreateRepositoryGroup[]
}
export interface ICreateInsightsProject extends IInsightsProject {
collections: string[]
starred?: boolean
}
export interface ICollectionInsightProject {
id: string
collectionId: string
insightsProjectId: string
starred: boolean
createdAt: string
updatedAt: string
}
export enum CollectionField {
CATEGORY_ID = 'categoryId',
COLOR = 'color',
CREATED_AT = 'createdAt',
DESCRIPTION = 'description',
ID = 'id',
IMAGE_URL = 'imageUrl',
IS_PRIVATE = 'isPrivate',
LOGO_URL = 'logoUrl',
NAME = 'name',
SLUG = 'slug',
SSO_USER_ID = 'ssoUserId',
STARRED = 'starred',
UPDATED_AT = 'updatedAt',
DELETED_AT = 'deletedAt',
}
export async function queryCollections<T extends CollectionField>(
qx: QueryExecutor,
opts: QueryOptions<T>,
): Promise<QueryResult<T>[]> {
opts.filter = injectSoftDeletionCriteria(opts.filter)
return queryTable(qx, 'collections', Object.values(CollectionField), opts)
}
export async function countCollections(qx: QueryExecutor, filter: QueryFilter): Promise<number> {
filter = injectSoftDeletionCriteria(filter)
const result = await queryTable(qx, 'collections', Object.values(CollectionField), {
filter,
fields: 'count',
})
return result[0]['count']
}
export async function queryCollectionById<T extends CollectionField>(
qx: QueryExecutor,
id: string,
fields: T[],
): Promise<QueryResult<T>> {
return queryTableById(qx, 'collections', Object.values(CollectionField), id, fields)
}
export async function deleteCollection(qx: QueryExecutor, id: string) {
return qx.result(
`
UPDATE collections
SET "deletedAt" = NOW(),
"updatedAt" = NOW()
WHERE id = $(id)
`,
{ id },
)
}
export async function createCollection(
qx: QueryExecutor,
collection: ICreateCollection,
): Promise<ICollection> {
const data = {
description: null,
slug: null,
logoUrl: null,
imageUrl: null,
color: null,
...collection,
}
return qx.selectOne(
`
INSERT INTO collections (name, description, slug, "categoryId", starred, "logoUrl", "imageUrl", color)
VALUES ($(name), $(description), $(slug), $(categoryId), $(starred), $(logoUrl), $(imageUrl), $(color))
RETURNING *
`,
data,
)
}
export async function updateCollection(
qx: QueryExecutor,
id: string,
collection: Partial<ICreateCollection>,
): Promise<ICollection> {
return updateTableById(qx, 'collections', id, Object.values(CollectionField), collection)
}
export enum InsightsProjectField {
CREATED_AT = 'createdAt',
DESCRIPTION = 'description',
ENABLED = 'enabled',
GITHUB = 'github',
ID = 'id',
IS_LF = 'isLF',
KEYWORDS = 'keywords',
LINKEDIN = 'linkedin',
LOGO_URL = 'logoUrl',
NAME = 'name',
ORGANIZATION_ID = 'organizationId',
// REPOSITORIES column deprecated - repos are managed via public.repositories table
// API still accepts repositories param which syncs public.repositories.enabled
SEARCH_KEYWORDS = 'searchKeywords',
SEGMENT_ID = 'segmentId',
SLUG = 'slug',
TWITTER = 'twitter',
UPDATED_AT = 'updatedAt',
WEBSITE = 'website',
WIDGETS = 'widgets',
DELETED_AT = 'deletedAt',
}
export async function queryInsightsProjects<T extends InsightsProjectField>(
qx: QueryExecutor,
opts: QueryOptions<T>,
): Promise<QueryResult<T>[]> {
opts.filter = injectSoftDeletionCriteria(opts.filter)
return queryTable(qx, 'insightsProjects', Object.values(InsightsProjectField), opts)
}
export async function createInsightsProject(
qx: QueryExecutor,
insightProject: Partial<IInsightsProject>,
) {
return qx.selectOne(
prepareInsert(
'insightsProjects',
Object.values(InsightsProjectField),
prepareProject(insightProject),
),
)
}
export async function disconnectProjectsAndCollections(
qx: QueryExecutor,
{
collectionId,
insightsProjectId,
}: {
collectionId?: string
insightsProjectId?: string
},
) {
return qx.result(
`
UPDATE "collectionsInsightsProjects"
SET "deletedAt" = NOW(),
"updatedAt" = NOW()
WHERE "deletedAt" IS NULL
${collectionId ? `AND "collectionId" = $(collectionId)` : ''}
${insightsProjectId ? `AND "insightsProjectId" = $(insightsProjectId)` : ''}
`,
{ collectionId, insightsProjectId },
)
}
export async function connectProjectsAndCollections(
qx: QueryExecutor,
connections: {
insightsProjectId: string
collectionId: string
starred: boolean
}[],
onConflict?: string,
) {
if (connections.length === 0) {
return
}
return qx.result(
prepareBulkInsert(
'collectionsInsightsProjects',
['collectionId', 'insightsProjectId', 'starred'],
connections,
onConflict ?? null,
),
)
}
export async function findCollectionProjectConnections(
qx: QueryExecutor,
{
collectionIds,
insightsProjectIds,
}: {
collectionIds?: string[]
insightsProjectIds?: string[]
},
): Promise<ICollectionInsightProject[]> {
if (!collectionIds && !insightsProjectIds) {
return []
}
return qx.select(
`
SELECT *
FROM "collectionsInsightsProjects"
WHERE "deletedAt" IS NULL
${collectionIds ? `AND "collectionId" IN ($(collectionIds:csv))` : ''}
${insightsProjectIds ? `AND "insightsProjectId" IN ($(insightsProjectIds:csv))` : ''}
`,
{ collectionIds, insightsProjectIds },
)
}
export async function countInsightsProjects(
qx: QueryExecutor,
filter: QueryFilter,
): Promise<number> {
filter = injectSoftDeletionCriteria(filter)
const result = await queryTable(qx, 'insightsProjects', Object.values(InsightsProjectField), {
filter,
fields: 'count',
})
return result[0]['count']
}
export async function deleteInsightsProject(qx: QueryExecutor, id: string) {
return qx.result(
`
UPDATE "insightsProjects"
SET "deletedAt" = NOW(),
"updatedAt" = NOW()
WHERE id = $(id)
`,
{ id },
)
}
export async function queryInsightsProjectById<T extends InsightsProjectField>(
qx: QueryExecutor,
id: string,
fields: T[],
): Promise<QueryResult<T>> {
return queryTableById(qx, 'insightsProjects', Object.values(InsightsProjectField), id, fields)
}
export async function updateInsightsProject(
qx: QueryExecutor,
id: string,
project: Partial<ICreateInsightsProject>,
) {
// Exclude repositories from update; only used to sync public.repositories.enabled
const { repositories, ...projectWithoutRepositories } = project
const updated = await updateTableById(
qx,
'insightsProjects',
id,
Object.values(InsightsProjectField),
prepareProject(projectWithoutRepositories),
)
if (!updated) {
throw new Error(`Update failed or project with id ${id} not found`)
}
// Sync repositories.enabled status when repositories field is provided
// Disables repos not in the new list (new repos are enabled by default on insert)
if (repositories !== undefined) {
const enabledUrls = normalizeRepositoriesToUrls(repositories)
await syncRepositoriesEnabledStatus(qx, id, enabledUrls)
}
// When slug changes, ON UPDATE CASCADE propagates the new slug to securityInsights* tables
// but does not touch their updatedAt — update it explicitly so Tinybird picks up the change
if (project.slug) {
await qx.result(
`UPDATE "securityInsightsEvaluationSuites" SET "updatedAt" = NOW() WHERE "insightsProjectSlug" = $(slug)`,
{ slug: project.slug },
)
await qx.result(
`UPDATE "securityInsightsEvaluations" SET "updatedAt" = NOW() WHERE "insightsProjectSlug" = $(slug)`,
{ slug: project.slug },
)
await qx.result(
`UPDATE "securityInsightsEvaluationAssessments" SET "updatedAt" = NOW() WHERE "insightsProjectSlug" = $(slug)`,
{ slug: project.slug },
)
}
return updated as IInsightsProject
}
function normalizeRepositoriesToUrls(
repositories: string[] | { platform: string; url: string }[] | undefined,
): string[] {
if (!repositories || repositories.length === 0) return []
if (typeof repositories[0] === 'string') {
return repositories as string[]
}
return (repositories as { platform: string; url: string }[]).map((r) => r.url)
}
function prepareProject(project: Partial<ICreateInsightsProject>) {
const toUpdate: Record<string, unknown> = {
...project,
}
return toUpdate
}
export async function moveInsightsProjectsToAnotherOrganization(
qx: QueryExecutor,
fromId: string,
toId: string,
) {
return qx.result(
`
UPDATE "insightsProjects"
SET "organizationId" = $(toId),
"updatedAt" = now()
WHERE "organizationId" = $(fromId)
AND "deletedAt" IS NULL
`,
{ fromId, toId },
)
}
export async function findBySlug(qx: QueryExecutor, slug: string) {
const collections = await queryCollections(qx, {
filter: {
slug: { eq: slug },
},
fields: Object.values(CollectionField),
})
return collections
}