-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Expand file tree
/
Copy pathroute.ts
More file actions
124 lines (110 loc) · 3.27 KB
/
Copy pathroute.ts
File metadata and controls
124 lines (110 loc) · 3.27 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
import { createManualCommissions } from "@/lib/api/commissions/create-manual-commissions";
import { getCommissions } from "@/lib/api/commissions/get-commissions";
import { transformCustomerForCommission } from "@/lib/api/customers/transform-customer";
import { DubApiError } from "@/lib/api/errors";
import { getDefaultProgramIdOrThrow } from "@/lib/api/programs/get-default-program-id-or-throw";
import { parseRequestBody } from "@/lib/api/utils";
import { withWorkspace } from "@/lib/auth";
import {
CommissionEnrichedSchema,
createCommissionResponseSchema,
createManualCommissionBodySchema,
getCommissionsQuerySchema,
} from "@/lib/zod/schemas/commissions";
import { prisma } from "@dub/prisma";
import { NextResponse } from "next/server";
import * as z from "zod/v4";
// GET /api/commissions - get all commissions for a program
export const GET = withWorkspace(async ({ workspace, searchParams }) => {
const programId = getDefaultProgramIdOrThrow(workspace);
const isHoldStatus = searchParams.status === "hold";
const {
status: _status,
fraudEventGroupId,
type: rawType,
...restSearchParams
} = searchParams;
let { partnerId, tenantId, ...filters } = getCommissionsQuerySchema.parse(
isHoldStatus
? restSearchParams
: { ...restSearchParams, status: searchParams.status },
);
if (tenantId && !partnerId) {
const partner = await prisma.programEnrollment.findUnique({
where: {
tenantId_programId: {
tenantId,
programId,
},
},
select: {
partnerId: true,
},
});
if (!partner) {
throw new DubApiError({
code: "not_found",
message: `Partner with specified tenantId ${tenantId} not found.`,
});
}
partnerId = partner.partnerId;
}
const commissions = await getCommissions({
...filters,
// Pass raw type string (may be comma-separated) for multi-value handling
...(rawType && { type: rawType }),
partnerId,
programId,
isHoldStatus,
...(fraudEventGroupId && { fraudEventGroupId }),
});
return NextResponse.json(
z.array(CommissionEnrichedSchema).parse(
commissions.map((c) => ({
...c,
customer: transformCustomerForCommission(c.customer),
partner: {
...c.partner,
groupId: c.programEnrollment.groupId,
},
})),
),
);
});
// POST /api/commissions - create commissions
export const POST = withWorkspace(
async ({ workspace, session, req }) => {
const programId = getDefaultProgramIdOrThrow(workspace);
const body = createManualCommissionBodySchema.parse(
await parseRequestBody(req),
);
console.time("createManualCommissions");
await createManualCommissions({
...body,
workspace,
programId,
user: session.user,
});
console.timeEnd("createManualCommissions");
return NextResponse.json(
createCommissionResponseSchema.parse({
success: true,
message: "Your commissions are being created and will appear shortly.",
}),
{
status: 202,
},
);
},
{
requiredPlan: [
"business",
"business plus",
"business extra",
"business max",
"advanced",
"enterprise",
],
requiredRoles: ["owner", "member"],
},
);