-
Notifications
You must be signed in to change notification settings - Fork 342
Expand file tree
/
Copy pathEndpointSnippetGenerator.ts
More file actions
1148 lines (1047 loc) · 40.2 KB
/
Copy pathEndpointSnippetGenerator.ts
File metadata and controls
1148 lines (1047 loc) · 40.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
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import { AbstractAstNode, NamedArgument, Options, Scope, Severity } from "@fern-api/browser-compatible-base-generator";
import { assertNever } from "@fern-api/core-utils";
import { FernIr } from "@fern-api/dynamic-ir-sdk";
import { php } from "@fern-api/php-codegen";
import { DynamicSnippetsGeneratorContext } from "./context/DynamicSnippetsGeneratorContext.js";
import { FilePropertyInfo } from "./context/FilePropertyMapper.js";
const CLIENT_VAR_NAME = "$client";
const SNIPPET_NAMESPACE = "Example";
const PHP_PREFIX = "<?php\n\n";
export class EndpointSnippetGenerator {
private context: DynamicSnippetsGeneratorContext;
constructor({ context }: { context: DynamicSnippetsGeneratorContext }) {
this.context = context;
}
public async generateSnippet({
endpoint,
request
}: {
endpoint: FernIr.dynamic.Endpoint;
request: FernIr.dynamic.EndpointSnippetRequest;
}): Promise<string> {
const code = this.buildCodeBlock({ endpoint, snippet: request });
return (
PHP_PREFIX +
(await code.toStringAsync({
namespace: SNIPPET_NAMESPACE,
rootNamespace: SNIPPET_NAMESPACE,
customConfig: this.context.customConfig ?? {}
}))
);
}
public generateSnippetSync({
endpoint,
request
}: {
endpoint: FernIr.dynamic.Endpoint;
request: FernIr.dynamic.EndpointSnippetRequest;
}): string {
const code = this.buildCodeBlock({ endpoint, snippet: request });
return (
PHP_PREFIX +
code.toString({
namespace: SNIPPET_NAMESPACE,
rootNamespace: SNIPPET_NAMESPACE,
customConfig: this.context.customConfig ?? {}
})
);
}
public async generateSnippetAst({
endpoint,
request,
options
}: {
endpoint: FernIr.dynamic.Endpoint;
request: FernIr.dynamic.EndpointSnippetRequest;
options?: Options;
}): Promise<AbstractAstNode> {
if (options?.skipClientInstantiation) {
return this.buildCodeBlockWithoutClient({ endpoint, snippet: request });
}
return this.buildCodeBlock({ endpoint, snippet: request });
}
public buildCodeBlock({
endpoint,
snippet
}: {
endpoint: FernIr.dynamic.Endpoint;
snippet: FernIr.dynamic.EndpointSnippetRequest;
}): php.AstNode {
return php.codeblock((writer) => {
writer.writeNodeStatement(this.constructClient({ endpoint, snippet }));
writer.writeNodeStatement(this.callMethod({ endpoint, snippet }));
});
}
public buildCodeBlockWithoutClient({
endpoint,
snippet
}: {
endpoint: FernIr.dynamic.Endpoint;
snippet: FernIr.dynamic.EndpointSnippetRequest;
}): php.AstNode {
return php.codeblock((writer) => {
// Skip client instantiation - assume client is already available as $this->client
writer.writeNodeStatement(this.callMethodOnExistingClient({ endpoint, snippet }));
});
}
private constructClient({
endpoint,
snippet
}: {
endpoint: FernIr.dynamic.Endpoint;
snippet: FernIr.dynamic.EndpointSnippetRequest;
}): php.CodeBlock {
return php.codeblock((writer) => {
writer.write(`${CLIENT_VAR_NAME} = `);
writer.writeNode(this.getRootClientClassInstantiation(this.getConstructorArgs({ endpoint, snippet })));
});
}
private callMethod({
endpoint,
snippet
}: {
endpoint: FernIr.dynamic.Endpoint;
snippet: FernIr.dynamic.EndpointSnippetRequest;
}): php.MethodInvocation {
return php.invokeMethod({
on: php.codeblock(CLIENT_VAR_NAME),
method: this.getMethod({ endpoint }),
arguments_: this.getMethodArgs({ endpoint, snippet }),
multiline: true
});
}
private callMethodOnExistingClient({
endpoint,
snippet
}: {
endpoint: FernIr.dynamic.Endpoint;
snippet: FernIr.dynamic.EndpointSnippetRequest;
}): php.MethodInvocation {
const args = this.getMethodArgs({ endpoint, snippet });
const requestOptions = this.getRequestOptions({ endpoint, snippet });
if (!php.TypeLiteral.isNop(requestOptions)) {
args.push(requestOptions);
}
return php.invokeMethod({
on: php.codeblock("$this->client"),
method: this.getMethod({ endpoint }),
arguments_: args,
multiline: true
});
}
/**
* Builds request options from snippet headers for per-request options.
* This is used when generating snippets for existing clients (e.g., wire tests)
* where headers should be passed as method call options rather than client constructor options.
* Only includes headers that are NOT already mapped to the request directly (i.e., not defined in the IR).
*/
private getRequestOptions({
endpoint,
snippet
}: {
endpoint: FernIr.dynamic.Endpoint;
snippet: FernIr.dynamic.EndpointSnippetRequest;
}): php.TypeLiteral {
const headers = snippet.headers ?? {};
const entries = Object.entries(headers);
if (entries.length === 0) {
return php.TypeLiteral.nop();
}
// Build a set of header names that are already mapped to the request directly
const mappedHeaderNames = new Set<string>();
// Add global headers from IR
if (this.context.ir.headers != null) {
for (const header of this.context.ir.headers) {
mappedHeaderNames.add(header.name.wireValue.toLowerCase());
}
}
// Add endpoint-level headers from inlined request
if (endpoint.request.type === "inlined" && endpoint.request.headers != null) {
for (const header of endpoint.request.headers) {
mappedHeaderNames.add(header.name.wireValue.toLowerCase());
}
}
// Filter out headers that are already mapped to the request
const unmappedEntries = entries.filter(([name]) => !mappedHeaderNames.has(name.toLowerCase()));
if (unmappedEntries.length === 0) {
return php.TypeLiteral.nop();
}
return php.TypeLiteral.map({
entries: [
{
key: php.TypeLiteral.string("headers"),
value: php.TypeLiteral.map({
entries: unmappedEntries.map(([name, value]) => ({
key: php.TypeLiteral.string(name),
value: php.TypeLiteral.string(String(value))
}))
})
}
]
});
}
private getConstructorArgs({
endpoint,
snippet
}: {
endpoint: FernIr.dynamic.Endpoint;
snippet: FernIr.dynamic.EndpointSnippetRequest;
}): NamedArgument[] {
const authArgs: NamedArgument[] = [];
if (endpoint.auth != null) {
if (snippet.auth != null) {
authArgs.push(...this.getConstructorAuthArgs({ auth: endpoint.auth, values: snippet.auth }));
} else {
authArgs.push(...this.getDefaultAuthArgs({ auth: endpoint.auth }));
}
}
const hasMultiUrlEnvironments = this.context.ir.environments?.environments.type === "multipleBaseUrls";
const environmentArg = this.getConstructorEnvironmentArg({
environment: snippet.environment,
hasMultiUrlEnvironments
});
const optionArgs: php.ConstructorField[] = [];
if (!hasMultiUrlEnvironments) {
const baseUrlArgs = this.getConstructorBaseUrlArgs({
baseUrl: snippet.baseURL,
environment: snippet.environment
});
if (baseUrlArgs.length > 0) {
optionArgs.push(...baseUrlArgs);
}
}
this.context.errors.scope(Scope.Headers);
const requiredGlobalHeaderArgs: NamedArgument[] = [];
if (this.context.ir.headers != null) {
requiredGlobalHeaderArgs.push(
...this.getRequiredGlobalHeaderArgs({ headers: this.context.ir.headers, values: snippet.headers })
);
}
if (this.context.ir.headers != null && snippet.headers != null) {
optionArgs.push(
...this.getOptionalGlobalHeaderArgs({ headers: this.context.ir.headers, values: snippet.headers })
);
}
this.context.errors.unscope();
const args: NamedArgument[] = [...requiredGlobalHeaderArgs, ...authArgs];
if (environmentArg != null) {
args.push(environmentArg);
}
if (optionArgs.length > 0) {
args.push({
name: "options",
assignment: php.TypeLiteral.map({
entries: optionArgs.map((arg) => ({
key: php.TypeLiteral.string(arg.name),
value: arg.value
}))
})
});
}
return args;
}
private getConstructorAuthArgs({
auth,
values
}: {
auth: FernIr.dynamic.Auth;
values: FernIr.dynamic.AuthValues;
}): NamedArgument[] {
if (values.type !== auth.type) {
this.addError(this.context.newAuthMismatchError({ auth, values }).message);
return [];
}
switch (auth.type) {
case "basic":
return values.type === "basic" ? this.getConstructorBasicAuthArgs({ auth, values }) : [];
case "bearer":
return values.type === "bearer" ? this.getConstructorBearerAuthArgs({ auth, values }) : [];
case "header":
return values.type === "header" ? this.getConstructorHeaderAuthArgs({ auth, values }) : [];
case "oauth":
return values.type === "oauth" ? this.getConstructorOAuthArgs({ auth, values }) : [];
case "inferred":
return values.type === "inferred" ? this.getConstructorInferredAuthArgs({ auth, values }) : [];
default:
assertNever(auth);
}
}
private getDefaultAuthArgs({ auth }: { auth: FernIr.dynamic.Auth }): NamedArgument[] {
switch (auth.type) {
case "bearer":
return this.getConstructorBearerAuthArgs({
auth,
values: { token: "YOUR_TOKEN" }
});
case "oauth":
return this.getConstructorOAuthArgs({
auth,
values: { clientId: "YOUR_CLIENT_ID", clientSecret: "YOUR_CLIENT_SECRET" }
});
case "basic":
return this.getConstructorBasicAuthArgs({
auth,
values: {
username: "YOUR_USERNAME",
password: "YOUR_PASSWORD"
}
});
case "header":
return this.getConstructorHeaderAuthArgs({
auth,
values: { value: "YOUR_AUTH_TOKEN" }
});
case "inferred":
return this.getConstructorInferredAuthArgs({
auth,
values: { values: undefined }
});
default:
assertNever(auth);
}
}
private addError(message: string): void {
this.context.errors.add({ severity: Severity.Critical, message });
}
private addWarning(message: string): void {
this.context.errors.add({ severity: Severity.Warning, message });
}
private getConstructorBasicAuthArgs({
auth,
values
}: {
auth: FernIr.dynamic.BasicAuth;
values: FernIr.dynamic.BasicAuthValues;
}): NamedArgument[] {
const args: NamedArgument[] = [];
if (!auth.usernameOmit) {
args.push({
name: this.context.getPropertyName(auth.username),
assignment: php.TypeLiteral.string(values.username)
});
}
if (!auth.passwordOmit) {
args.push({
name: this.context.getPropertyName(auth.password),
assignment: php.TypeLiteral.string(values.password)
});
}
return args;
}
private getConstructorEnvironmentArg({
environment,
hasMultiUrlEnvironments
}: {
environment: FernIr.dynamic.EnvironmentValues | undefined;
hasMultiUrlEnvironments: boolean;
}): NamedArgument | undefined {
if (!hasMultiUrlEnvironments) {
return undefined;
}
const environmentClassRef = this.context.getEnvironmentsClassReference();
if (environment != null) {
if (this.context.isSingleEnvironmentID(environment)) {
const environmentName = this.context.resolveEnvironmentName(environment);
if (environmentName == null) {
this.addWarning(`Environment "${environment}" was not found`);
return undefined;
}
const className = this.context.getClassName(environmentName);
return {
name: "environment",
assignment: php.TypeLiteral.reference(
php.codeblock((writer) => {
writer.writeNode(environmentClassRef);
writer.write(`::`);
writer.write(className);
writer.write(`()`);
})
)
};
}
if (this.context.isMultiEnvironmentValues(environment)) {
const result = this.resolveMultiEnvironmentName(environment);
if (result == null) {
this.addWarning("Invalid multi url environment");
return undefined;
}
if (result.type === "named") {
return {
name: "environment",
assignment: php.TypeLiteral.reference(
php.codeblock((writer) => {
writer.writeNode(environmentClassRef);
writer.write(`::`);
writer.write(result.name);
writer.write(`()`);
})
)
};
} else {
return {
name: "environment",
assignment: php.TypeLiteral.reference(
php.codeblock((writer) => {
writer.writeNode(environmentClassRef);
writer.write(`::custom(`);
const entries = Object.entries(result.urls);
entries.forEach(([paramName, url], index) => {
writer.write(`${paramName}: '${url}'`);
if (index < entries.length - 1) {
writer.write(`, `);
}
});
writer.write(`)`);
})
)
};
}
}
}
const defaultName = this.getDefaultEnvironmentName();
if (defaultName == null) {
return undefined;
}
return {
name: "environment",
assignment: php.TypeLiteral.reference(
php.codeblock((writer) => {
writer.writeNode(environmentClassRef);
writer.write(`::`);
writer.write(defaultName);
writer.write(`()`);
})
)
};
}
private getDefaultEnvironmentName(): string | undefined {
if (this.context.ir.environments?.environments.type !== "multipleBaseUrls") {
return undefined;
}
const environmentsConfig = this.context.ir.environments.environments;
if (environmentsConfig.type !== "multipleBaseUrls") {
return undefined;
}
const environments = environmentsConfig.environments;
if (environments.length === 0) {
return undefined;
}
for (const env of environments) {
const className = this.context.getClassName(env.name);
if (className === "Production") {
return className;
}
}
const firstEnv = environments[0];
if (firstEnv == null) {
return undefined;
}
return this.context.getClassName(firstEnv.name);
}
private resolveMultiEnvironmentName(
environment: FernIr.dynamic.MultipleEnvironmentUrlValues
): { type: "named"; name: string } | { type: "custom"; urls: Record<string, string> } | undefined {
const baseUrlIds = Object.keys(environment);
if (baseUrlIds.length === 0) {
return undefined;
}
// Validate that all required base URLs are provided
if (!this.context.validateMultiEnvironmentUrlValues(environment)) {
return undefined;
}
const firstBaseUrlId = baseUrlIds[0];
if (firstBaseUrlId == null) {
return undefined;
}
const firstBaseUrlValue = environment[firstBaseUrlId];
if (firstBaseUrlValue == null) {
return undefined;
}
// Check if the first value is a valid environment ID (not just any string)
const firstEnvironmentName = this.context.resolveEnvironmentName(firstBaseUrlValue);
if (firstEnvironmentName != null) {
// Check if all values point to the same environment
const allSameEnvironment = baseUrlIds.every((baseUrlId) => {
const value = environment[baseUrlId];
if (value == null) {
return false;
}
const envName = this.context.resolveEnvironmentName(value);
return envName != null && value === firstBaseUrlValue;
});
if (allSameEnvironment) {
return { type: "named", name: this.context.getClassName(firstEnvironmentName) };
}
}
// Treat all values as custom URLs
const urls: Record<string, string> = {};
for (const baseUrlId of baseUrlIds) {
const value = environment[baseUrlId];
if (value == null) {
continue;
}
const paramName = this.getBaseUrlPropertyName(baseUrlId);
urls[paramName] = value;
}
if (Object.keys(urls).length > 0) {
return { type: "custom", urls };
}
return undefined;
}
private getBaseUrlPropertyName(baseUrlId: string): string {
if (this.context.ir.environments?.environments.type !== "multipleBaseUrls") {
return baseUrlId;
}
const environmentsConfig = this.context.ir.environments.environments;
if (environmentsConfig.type !== "multipleBaseUrls") {
return baseUrlId;
}
const baseUrl = environmentsConfig.baseUrls.find((url) => url.id === baseUrlId);
if (baseUrl == null) {
return baseUrlId;
}
return baseUrl.name.camelCase.safeName;
}
private getConstructorBaseUrlArgs({
baseUrl,
environment
}: {
baseUrl: string | undefined;
environment: FernIr.dynamic.EnvironmentValues | undefined;
}): php.ConstructorField[] {
const baseUrlArg = this.getBaseUrlArg({ baseUrl, environment });
if (php.TypeLiteral.isNop(baseUrlArg)) {
return [];
}
return [
{
name: "baseUrl",
value: baseUrlArg
}
];
}
private getBaseUrlArg({
baseUrl,
environment
}: {
baseUrl: string | undefined;
environment: FernIr.dynamic.EnvironmentValues | undefined;
}): php.TypeLiteral {
if (baseUrl != null && environment != null) {
this.context.errors.add({
severity: Severity.Critical,
message: "Cannot specify both baseUrl and environment options"
});
return php.TypeLiteral.nop();
}
if (baseUrl != null) {
return php.TypeLiteral.string(baseUrl);
}
if (environment != null) {
if (this.context.isSingleEnvironmentID(environment)) {
const classReference = this.context.getEnvironmentClassAccessFromID(environment);
if (classReference == null) {
this.context.errors.add({
severity: Severity.Warning,
message: `Environment ${JSON.stringify(environment)} was not found`
});
return php.TypeLiteral.nop();
}
return php.TypeLiteral.reference(
php.codeblock((writer) => {
writer.writeNode(classReference);
writer.write("->value");
})
);
}
if (this.context.ir.environments?.environments.type === "multipleBaseUrls") {
return php.TypeLiteral.nop();
}
}
return php.TypeLiteral.nop();
}
private getConstructorBearerAuthArgs({
auth,
values
}: {
auth: FernIr.dynamic.BearerAuth;
values: FernIr.dynamic.BearerAuthValues;
}): NamedArgument[] {
return [
{
name: this.context.getPropertyName(auth.token),
assignment: php.TypeLiteral.string(values.token)
}
];
}
private getConstructorHeaderAuthArgs({
auth,
values
}: {
auth: FernIr.dynamic.HeaderAuth;
values: FernIr.dynamic.HeaderAuthValues;
}): NamedArgument[] {
return [
{
name: this.context.getPropertyName(auth.header.name.name),
assignment: this.context.dynamicTypeLiteralMapper.convert({
typeReference: auth.header.typeReference,
value: values.value
})
}
];
}
private getConstructorOAuthArgs({
auth,
values
}: {
auth: FernIr.dynamic.OAuth;
values: FernIr.dynamic.OAuthValues;
}): NamedArgument[] {
return [
{
name: this.context.getPropertyName(auth.clientId),
assignment: php.TypeLiteral.string(values.clientId)
},
{
name: this.context.getPropertyName(auth.clientSecret),
assignment: php.TypeLiteral.string(values.clientSecret)
}
];
}
private getConstructorInferredAuthArgs({
auth,
values
}: {
auth: FernIr.dynamic.InferredAuth;
values: FernIr.dynamic.InferredAuthValues;
}): NamedArgument[] {
// For now, return empty array to avoid the RangeError issue
// The inferred auth parameters should be extracted from the normal IR,
// not the dynamic IR which doesn't contain the detailed endpoint information
return [];
}
// NOTE: We intentionally avoid this.context.isOptional here because it treats
// named aliases to nullable types as optional, which would misclassify required
// headers with nullable alias types (they're still required constructor params).
private isHeaderTypeOptional(typeReference: FernIr.dynamic.TypeReference): boolean {
switch (typeReference.type) {
case "optional":
return true;
case "nullable":
return this.isHeaderTypeOptional(typeReference.value);
default:
return false;
}
}
private getRequiredGlobalHeaderArgs({
headers,
values
}: {
headers: FernIr.dynamic.NamedParameter[];
values: FernIr.dynamic.Values | undefined;
}): NamedArgument[] {
const args: NamedArgument[] = [];
for (const header of headers) {
if (this.isHeaderTypeOptional(header.typeReference)) {
continue;
}
const value = values?.[header.name.wireValue];
const arg = this.getRequiredGlobalHeaderValue({ header, value });
if (arg != null) {
args.push({
name: this.context.getPropertyName(header.name.name),
assignment: arg
});
}
}
return args;
}
private getRequiredGlobalHeaderValue({
header,
value
}: {
header: FernIr.dynamic.NamedParameter;
value: unknown;
}): php.TypeLiteral | undefined {
if (value !== undefined) {
const typeLiteral = this.context.dynamicTypeLiteralMapper.convert({
typeReference: header.typeReference,
value
});
if (php.TypeLiteral.isNop(typeLiteral)) {
return undefined;
}
return typeLiteral;
}
const placeholder = this.context.dynamicTypeLiteralMapper.generatePlaceholderValueForRequiredHeader({
typeReference: header.typeReference
});
if (php.TypeLiteral.isNop(placeholder)) {
return undefined;
}
return placeholder;
}
private getOptionalGlobalHeaderArgs({
headers,
values
}: {
headers: FernIr.dynamic.NamedParameter[];
values: FernIr.dynamic.Values;
}): php.ConstructorField[] {
const args: php.ConstructorField[] = [];
for (const header of headers) {
if (!this.isHeaderTypeOptional(header.typeReference)) {
continue;
}
const value = values[header.name.wireValue];
const arg = this.getConstructorHeaderArg({ header, value });
if (arg != null) {
args.push({
name: this.context.getPropertyName(header.name.name),
value: arg
});
}
}
return args;
}
private getConstructorHeaderArg({
header,
value
}: {
header: FernIr.dynamic.NamedParameter;
value: unknown;
}): php.TypeLiteral | undefined {
const typeLiteral = this.context.dynamicTypeLiteralMapper.convert({
typeReference: header.typeReference,
value
});
if (php.TypeLiteral.isNop(typeLiteral)) {
// Literal header values (e.g. "X-API-Version") should not be included in the
// client constructor.
return undefined;
}
return typeLiteral;
}
private getMethodArgs({
endpoint,
snippet
}: {
endpoint: FernIr.dynamic.Endpoint;
snippet: FernIr.dynamic.EndpointSnippetRequest;
}): php.TypeLiteral[] {
switch (endpoint.request.type) {
case "inlined":
return this.getMethodArgsForInlinedRequest({ request: endpoint.request, snippet });
case "body":
return this.getMethodArgsForBodyRequest({ request: endpoint.request, snippet });
default:
assertNever(endpoint.request);
}
}
private getMethodArgsForBodyRequest({
request,
snippet
}: {
request: FernIr.dynamic.BodyRequest;
snippet: FernIr.dynamic.EndpointSnippetRequest;
}): php.TypeLiteral[] {
const args: php.TypeLiteral[] = [];
this.context.errors.scope(Scope.PathParameters);
const endpointPathParameters = request.pathParameters ?? [];
const rootPathParameters = this.context.ir.pathParameters ?? [];
// Process all path parameters together so associateByWireValue sees the
// full set and doesn't flag endpoint params as unrecognized.
const allNamedParameters = [...rootPathParameters, ...endpointPathParameters];
const allPathParamFields = this.getPathParameters({ namedParameters: allNamedParameters, snippet });
this.context.errors.unscope();
// When there are no endpoint-specific path parameters, root-level path
// parameters may have default values (e.g. from x-fern-base-path). Place
// them after the body argument to match Method.ts parameter ordering which
// moves parameters with initializers after required parameters.
const moveRootAfterBody = endpointPathParameters.length === 0 && rootPathParameters.length > 0;
if (moveRootAfterBody) {
// No endpoint params, so allPathParamFields are all root — skip them for now
} else {
args.push(...allPathParamFields.map((field) => field.value));
}
this.context.errors.scope(Scope.RequestBody);
if (request.body != null) {
args.push(this.getBodyRequestArg({ body: request.body, value: snippet.requestBody }));
}
this.context.errors.unscope();
if (moveRootAfterBody) {
args.push(...allPathParamFields.map((field) => field.value));
}
return args;
}
private getBodyRequestArg({
body,
value
}: {
body: FernIr.dynamic.ReferencedRequestBodyType;
value: unknown;
}): php.TypeLiteral {
switch (body.type) {
case "bytes": {
return this.getBytesBodyRequestArg({ value });
}
case "typeReference":
return this.context.dynamicTypeLiteralMapper.convert({ typeReference: body.value, value });
default:
assertNever(body);
}
}
private getBytesBodyRequestArg({ value }: { value: unknown }): php.TypeLiteral {
this.context.errors.add({
severity: Severity.Critical,
message: "The PHP SDK doesn't support bytes requests yet"
});
return php.TypeLiteral.nop();
}
private getMethodArgsForInlinedRequest({
request,
snippet
}: {
request: FernIr.dynamic.InlinedRequest;
snippet: FernIr.dynamic.EndpointSnippetRequest;
}): php.TypeLiteral[] {
const args: php.TypeLiteral[] = [];
const inlinePathParameters = this.context.customConfig?.inlinePathParameters ?? false;
this.context.errors.scope(Scope.PathParameters);
const endpointPathParameters = request.pathParameters ?? [];
const rootPathParameters = this.context.ir.pathParameters ?? [];
// Process all path parameters together so associateByWireValue sees the
// full set and doesn't flag endpoint params as unrecognized.
const allNamedParameters = [...rootPathParameters, ...endpointPathParameters];
const allPathParameterFields = this.getPathParameters({ namedParameters: allNamedParameters, snippet });
// When there are no endpoint-specific path parameters, root-level path
// parameters may have default values (e.g. from x-fern-base-path). Place
// them after the request argument to match Method.ts parameter ordering.
// When endpoint-specific path parameters exist, keep the original combined
// order (root first, then endpoint) before the request.
const moveRootAfterRequest = endpointPathParameters.length === 0 && rootPathParameters.length > 0;
// Split the fields back into root vs endpoint groups based on count.
const rootPathParameterFields = allPathParameterFields.slice(0, rootPathParameters.length);
const endpointPathParameterFields = allPathParameterFields.slice(rootPathParameters.length);
this.context.errors.unscope();
this.context.errors.scope(Scope.RequestBody);
const filePropertyInfo = this.getFilePropertyInfo({ request, snippet });
this.context.errors.unscope();
if (!this.context.includePathParametersInWrappedRequest({ request, inlinePathParameters })) {
if (moveRootAfterRequest) {
args.push(...endpointPathParameterFields.map((field) => field.value));
} else {
args.push(...allPathParameterFields.map((field) => field.value));
}
}
if (
this.context.needsRequestParameter({
request,
inlinePathParameters,
inlineFileProperties: true // The PHP SDK requires inlineFileProperties.
})
) {
args.push(
this.getInlinedRequestArg({
request,
snippet,
pathParameterFields: this.context.includePathParametersInWrappedRequest({
request,
inlinePathParameters
})
? allPathParameterFields
: [],
filePropertyInfo
})
);
}
if (
moveRootAfterRequest &&
!this.context.includePathParametersInWrappedRequest({ request, inlinePathParameters })
) {
args.push(...rootPathParameterFields.map((field) => field.value));
}
return args;
}
private getFilePropertyInfo({
request,
snippet
}: {
request: FernIr.dynamic.InlinedRequest;
snippet: FernIr.dynamic.EndpointSnippetRequest;
}): FilePropertyInfo {
if (request.body == null || !this.context.isFileUploadRequestBody(request.body)) {
return {
fileFields: [],
bodyPropertyFields: []
};
}
return this.context.filePropertyMapper.getFilePropertyInfo({
body: request.body,
value: snippet.requestBody
});
}
private getInlinedRequestArg({
request,
snippet,
pathParameterFields,
filePropertyInfo
}: {
request: FernIr.dynamic.InlinedRequest;
snippet: FernIr.dynamic.EndpointSnippetRequest;
pathParameterFields: php.ConstructorField[];
filePropertyInfo: FilePropertyInfo;
}): php.TypeLiteral {
this.context.errors.scope(Scope.QueryParameters);
const queryParameters = this.context.associateQueryParametersByWireValue({
parameters: request.queryParameters ?? [],
values: snippet.queryParameters ?? {}
});
const queryParameterFields = queryParameters.map((queryParameter) => ({
name: this.context.getPropertyName(queryParameter.name.name),
value: this.context.dynamicTypeLiteralMapper.convert(queryParameter)
}));
this.context.errors.unscope();
this.context.errors.scope(Scope.Headers);
const headers = this.context.associateByWireValue({
parameters: request.headers ?? [],
values: snippet.headers ?? {}
});
const headerFields = headers.map((header) => ({
name: this.context.getPropertyName(header.name.name),
value: this.context.dynamicTypeLiteralMapper.convert(header)