1
0
Fork 0
mirror of synced 2024-10-04 03:54:37 +13:00

Updating types for audit logs to correctly handle the deletion of resources like users or apps.

This commit is contained in:
mike12345567 2023-02-17 19:00:45 +00:00
parent 49d2dc20d1
commit 70e525b928
3 changed files with 24 additions and 15 deletions

View file

@ -13,7 +13,7 @@ interface PaginatedSearchResponse<T> extends SearchResponse<T> {
hasNextPage: boolean
}
export type SearchParams = {
export type SearchParams<T> = {
tableId?: string
sort?: string
sortOrder?: string
@ -23,7 +23,7 @@ export type SearchParams = {
version?: string
indexer?: () => Promise<any>
disableEscaping?: boolean
rows?: Row[]
rows?: T | Row[]
}
export function removeKeyNumbering(key: any): string {
@ -502,7 +502,7 @@ async function recursiveSearch<T>(
if (rows.length > params.limit - 200) {
pageSize = params.limit - rows.length
}
const page = await new QueryBuilder<T | Row>(dbName, index, query)
const page = await new QueryBuilder<T>(dbName, index, query)
.setVersion(params.version)
.setTable(params.tableId)
.setBookmark(bookmark)
@ -546,14 +546,14 @@ export async function paginatedSearch<T>(
dbName: string,
index: string,
query: SearchFilters,
params: SearchParams
params: SearchParams<T>
) {
let limit = params.limit
if (limit == null || isNaN(limit) || limit < 0) {
limit = 50
}
limit = Math.min(limit, 200)
const search = new QueryBuilder<T | Row>(dbName, index, query)
const search = new QueryBuilder<T>(dbName, index, query)
if (params.version) {
search.setVersion(params.version)
}
@ -612,13 +612,13 @@ export async function fullSearch<T>(
dbName: string,
index: string,
query: SearchFilters,
params: SearchParams
params: SearchParams<T>
) {
let limit = params.limit
if (limit == null || isNaN(limit) || limit < 0) {
limit = 1000
}
params.limit = Math.min(limit, 1000)
const rows = await recursiveSearch<T | Row>(dbName, index, query, params)
const rows = await recursiveSearch<T>(dbName, index, query, params)
return { rows }
}

View file

@ -366,6 +366,16 @@ export async function getAllApps({
}
}
export async function getAppsById(appIds: string[]) {
const settled = await Promise.allSettled(
appIds.map(appId => getAppMetadata(appId))
)
// have to list the apps which exist, some may have been deleted
return settled
.filter(promise => promise.status === "fulfilled")
.map(promise => (promise as PromiseFulfilledResult<App>).value)
}
/**
* Utility function for getAllApps but filters to production apps only.
*/

View file

@ -1,5 +1,6 @@
import { Event, AuditedEventFriendlyName } from "../../../sdk"
import { PaginationResponse, PaginationRequest } from "../"
import { User, App } from "../../../"
export interface AuditLogSearchParams {
userId?: string[]
@ -16,15 +17,13 @@ export interface SearchAuditLogsRequest
extends PaginationRequest,
AuditLogSearchParams {}
export enum AuditLogResourceStatus {
DELETED = "deleted",
}
export interface AuditLogEnriched {
app: {
_id: string
name: string
}
user: {
_id: string
name: string
}
app?: App | { _id: string; status: AuditLogResourceStatus }
user: User | { _id: string; status: AuditLogResourceStatus }
event: Event
timestamp: string
name: string