mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
22 lines
778 B
TypeScript
22 lines
778 B
TypeScript
import { database as db } from '../../common/database';
|
|
import { GrpcRequest, type as GrpcRequestType } from '../grpc-request';
|
|
import { Request, type as RequestType } from '../request';
|
|
import { Workspace } from '../workspace';
|
|
|
|
export const queryAllWorkspaceUrls = async (
|
|
workspace: Workspace | null,
|
|
reqType: typeof RequestType | typeof GrpcRequestType,
|
|
reqId = 'n/a',
|
|
): Promise<string[]> => {
|
|
const docs = await db.withDescendants(workspace, reqType);
|
|
const urls = docs
|
|
.filter(
|
|
(d: Request | GrpcRequest) =>
|
|
d.type === reqType &&
|
|
d._id !== reqId && // Not current request
|
|
(d.url || ''), // Only ones with non-empty URLs
|
|
)
|
|
.map((r: Request | GrpcRequest) => (r.url || '').trim());
|
|
return Array.from(new Set(urls));
|
|
};
|