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 | /** * Saved API Requests Endpoints * * Manages saved API requests for the admin documentation tester */ export const dynamic = "force-dynamic"; import { NextRequest, NextResponse } from 'next/server'; import { Session } from "next-auth"; import { prisma } from "@/lib/prisma"; import { withUser, withErrorHandling, successResponse, createdResponse, ApiError, ApiSuccessResponse, ApiErrorResponse } from "@/lib/api"; import { RouteContext } from "@/lib/api/middleware"; import type { AuthenticatedUser } from '@/lib/api/middleware/types'; // GET - Retrieve saved requests async function handleGet( request: NextRequest, _context: RouteContext | undefined, _session: Session, user: AuthenticatedUser ): Promise<NextResponse<ApiSuccessResponse<unknown> | ApiErrorResponse>> { const userId = user.id; const { searchParams } = new URL(request.url); const collectionId = searchParams.get("collectionId"); const endpointId = searchParams.get("endpointId"); const where: { userId: number; collectionId?: number | null; endpointId?: string; } = { userId }; if (collectionId) { where.collectionId = parseInt(collectionId); } if (endpointId) { where.endpointId = endpointId; } const savedRequests = await prisma.apiSavedRequest.findMany({ where, orderBy: [ { collectionId: "asc" }, { order: "asc" }, { createdAt: "desc" }, ], include: { collection: { select: { id: true, name: true}}}}); return successResponse({ data: savedRequests }); } // POST - Create a saved request async function handlePost( request: NextRequest, _context: RouteContext | undefined, _session: Session, user: AuthenticatedUser ): Promise<NextResponse<ApiSuccessResponse<unknown> | ApiErrorResponse>> { const userId = user.id; const body = await request.json(); const { name, endpointId, method, path, pathParams, queryParams, headers, requestBody, useAuth, collectionId, order} = body; // Validate required fields if (!name || !endpointId || !method || !path) { throw ApiError.badRequest("Missing required fields"); } // If collectionId is provided, verify user owns it if (collectionId) { const collection = await prisma.apiRequestCollection.findFirst({ where: { id: collectionId, userId }}); if (!collection) { throw ApiError.notFound("Collection"); } } const savedRequest = await prisma.apiSavedRequest.create({ data: { userId, name, endpointId, method, path, pathParams: pathParams || null, queryParams: queryParams || null, headers: headers || null, body: requestBody || null, useAuth: useAuth || false, collectionId: collectionId || null, order: order || 0}, include: { collection: { select: { id: true, name: true }}}}); return createdResponse(savedRequest); } // PUT - Update a saved request async function handlePut( request: NextRequest, _context: RouteContext | undefined, _session: Session, user: AuthenticatedUser ): Promise<NextResponse<ApiSuccessResponse<unknown> | ApiErrorResponse>> { const userId = user.id; const body = await request.json(); const { id, ...updateData } = body; if (!id) { throw ApiError.badRequest("Request ID is required"); } // Verify ownership const existingRequest = await prisma.apiSavedRequest.findFirst({ where: { id, userId }}); if (!existingRequest) { throw ApiError.notFound("Saved request"); } // If moving to a different collection, verify ownership if (updateData.collectionId) { const collection = await prisma.apiRequestCollection.findFirst({ where: { id: updateData.collectionId, userId }}); if (!collection) { throw ApiError.notFound("Target collection"); } } const updatedRequest = await prisma.apiSavedRequest.update({ where: { id }, data: { name: updateData.name, pathParams: updateData.pathParams || null, queryParams: updateData.queryParams || null, headers: updateData.headers || null, body: updateData.requestBody || null, useAuth: updateData.useAuth, collectionId: updateData.collectionId || null, order: updateData.order}, include: { collection: { select: { id: true, name: true }}}}); return successResponse({ data: updatedRequest }); } // DELETE - Delete a saved request async function handleDelete( request: NextRequest, _context: RouteContext | undefined, _session: Session, user: AuthenticatedUser ): Promise<NextResponse<ApiSuccessResponse<unknown> | ApiErrorResponse>> { const userId = user.id; const { searchParams } = new URL(request.url); const id = searchParams.get("id"); if (!id) { throw ApiError.badRequest("Request ID is required"); } // Verify ownership const existingRequest = await prisma.apiSavedRequest.findFirst({ where: { id: parseInt(id), userId }}); if (!existingRequest) { throw ApiError.notFound("Saved request"); } await prisma.apiSavedRequest.delete({ where: { id: parseInt(id) }}); return successResponse({ success: true }); } export const GET = withErrorHandling(withUser(handleGet)); export const POST = withErrorHandling(withUser(handlePost)); export const PUT = withErrorHandling(withUser(handlePut)); export const DELETE = withErrorHandling(withUser(handleDelete)); |