-
Notifications
You must be signed in to change notification settings - Fork 24
/
netcore.client.sync.ftl
86 lines (80 loc) · 3.07 KB
/
netcore.client.sync.ftl
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
[#import "_macros.ftl" as global/]
[#function removeConstantParams params]
[#local result = []]
[#list params![] as param]
[#if !param.constant??]
[#local result = result + [param]/]
[/#if]
[/#list]
[#return result/]
[/#function]
[#function getParamNames params]
[#local result = []]
[#list params as param]
[#local result = result + [param.name]/]
[/#list]
[#return result?join(", ")/]
[/#function]
/*
* Copyright (c) 2020-2023, FusionAuth, All Rights Reserved
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
* either express or implied. See the License for the specific
* language governing permissions and limitations under the License.
*/
using System;
using System.Collections.Generic;
using io.fusionauth.domain;
using io.fusionauth.domain.api;
using io.fusionauth.domain.api.email;
using io.fusionauth.domain.api.identityProvider;
using io.fusionauth.domain.api.jwt;
using io.fusionauth.domain.api.passwordless;
using io.fusionauth.domain.api.report;
using io.fusionauth.domain.api.twoFactor;
using io.fusionauth.domain.api.user;
using io.fusionauth.domain.oauth2;
using io.fusionauth.domain.provider;
using io.fusionauth.domain.reactor;
namespace io.fusionauth {
public class FusionAuthSyncClient : IFusionAuthSyncClient {
public readonly FusionAuthClient client;
public FusionAuthSyncClient(string apiKey, string host, string tenantId = null) {
client = new FusionAuthClient(apiKey, host, tenantId);
}
/**
* Return a new instance of FusionAuthSyncClient using the provided tenantId.
* @param tenantId the tenantId to use for this client.
*/
// ReSharper disable once ParameterHidesMember
public FusionAuthSyncClient withTenantId(string tenantId) {
return tenantId == null ? this : new FusionAuthSyncClient(client.apiKey, client.host, tenantId);
}
/**
* Return a new instance of FusionAuthSyncClient using the provided tenantId.
* @param tenantId the tenantId to use for this client.
*/
// ReSharper disable once ParameterHidesMember
public FusionAuthSyncClient withTenantId(Guid? tenantId) {
return tenantId == null ? this : new FusionAuthSyncClient(client.apiKey, client.host, tenantId.ToString());
}
[#list apis as api]
[#assign params = removeConstantParams(api.params![])]
/// <inheritdoc/>
[#if api.deprecated??]
[Obsolete("${api.deprecated?replace("{{renamedMethod}}", (api.renamedMethod!'')?cap_first)}")]
[/#if]
public ClientResponse<${global.convertType(api.successResponse, "csharp")}> ${api.methodName?cap_first}(${global.methodParameters(api, "csharp")}) {
return client.${api.methodName?cap_first}Async(${getParamNames(params)}).GetAwaiter().GetResult();
}
[/#list]
}
}