-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathInsomniaCollectionMappingHelper.cs
More file actions
392 lines (344 loc) · 13.5 KB
/
InsomniaCollectionMappingHelper.cs
File metadata and controls
392 lines (344 loc) · 13.5 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
using System.Text.Json;
using Explore.Cli.Models.Explore;
using Explore.Cli.Models.Insomnia;
public static class InsomniaCollectionMappingHelper
{
public static bool IsCollectionExportVersion4(string json)
{
var jsonObject = JsonSerializer.Deserialize<Dictionary<string, object>>(json);
if(jsonObject != null && jsonObject.ContainsKey("__export_format"))
{
if(jsonObject["__export_format"] != null && jsonObject["__export_format"].ToString() != null)
{
var exportFormat = jsonObject["__export_format"].ToString();
if(string.Equals(exportFormat, "4", StringComparison.OrdinalIgnoreCase))
{
return true;
}
}
}
return false;
}
public static bool IsItemRequestModeSupported(Resource resource)
{
if(resource.Method != null && resource.Method.Equals("GET", StringComparison.OrdinalIgnoreCase))
{
return true;
}
if(resource.Body != null && resource.Body.MimeType != null && (resource.Body.MimeType.StartsWith("application/json", StringComparison.OrdinalIgnoreCase) || resource.Body.MimeType.StartsWith("application/x-www-form-urlencoded", StringComparison.OrdinalIgnoreCase)))
{
return true;
}
return false;
}
public static ApiRequestV2 MapInsomniaResourceToApiRequestV2(Resource resource)
{
return new ApiRequestV2()
{
Name = !string.IsNullOrEmpty(resource.Name)
? (resource.Name.Length > 60 ? resource.Name.Substring(0, 60) : resource.Name)
: string.Empty,
ServerURLs = new string[] { resource?.Url?.Split("?")[0] ?? string.Empty },
Description = $"Imported via Explore.CLI from Insomnia Collection. {resource?.Description ?? string.Empty}",
};
}
public static Connection MapInsomniaRequestResourceToExploreConnection(Resource resource, List<Resource> environmentResources)
{
return new Connection()
{
Type = "ConnectionRequest",
Name = "REST",
Schema = "OpenAPI",
SchemaVersion = "3.0.1",
ConnectionDefinition = new ConnectionDefinition()
{
Servers = new List<Server>()
{
new Server()
{
Url = ParseUrl(resource?.Url, environmentResources)
}
},
Paths = CreatePathsDictionary(resource, environmentResources),
},
Settings = new Settings()
{
Type = "RestConnectionSettings",
ConnectTimeout = 30,
FollowRedirects = true,
EncodeUrl = true
},
Credentials = MapInsomniaAuthenticationToExploreCredentials(resource?.Authentication)
};
}
public static Endpoint MapInsomniaRequestResourceToExploreEndpoint(Resource resource, List<Resource> environmentResources)
{
var baseUrl = resource?.Url?.Split("?")[0];
var path = baseUrl?.Substring(UtilityHelper.IndexOfNth(baseUrl, '/', 3));
return new Endpoint()
{
Method = resource?.Method?.ToUpperInvariant() ?? string.Empty,
Path = path ?? string.Empty,
Connection = new Connection()
{
Type = "ConnectionRequest",
Name = "REST",
Schema = "OpenAPI",
SchemaVersion = "3.0.1",
ConnectionDefinition = new ConnectionDefinition()
{
Servers = new List<Server>()
{
new Server()
{
Url = ParseUrl(resource?.Url, environmentResources)
}
},
Paths = CreatePathsDictionary(resource, environmentResources),
},
Settings = new Settings()
{
Type = "RestConnectionSettings",
ConnectTimeout = 30,
FollowRedirects = true,
EncodeUrl = true
},
Credentials = MapInsomniaAuthenticationToExploreCredentials(resource?.Authentication)
}
};
}
public static string ParseUrl(string? url, List<Resource> environmentResources)
{
if (string.IsNullOrEmpty(url))
{
return string.Empty;
}
url = ReplaceEnvironmentVariables(url, environmentResources);
return url.Substring(0, UtilityHelper.IndexOfNth(url, '/', 3));
}
public static string ReplaceEnvironmentVariables(string? value, List<Resource> environmentResources)
{
if(string.IsNullOrEmpty(value))
{
return string.Empty;
}
if(!value.Contains("{{ _."))
{
return value;
}
// replace the environment variables in the string
foreach(var variable in environmentResources)
{
if(variable.Data != null && variable.Data.Any())
{
foreach(KeyValuePair<string, string> entry in variable.Data)
{
value = value.Replace($"{{{{ _.{entry.Key} }}}}", entry.Value);
}
}
}
return value;
}
public static Examples MapEntryBodyToContentExamples(string? rawBody)
{
return new Examples()
{
Example = new Example()
{
Value = rawBody
}
};
}
public static Dictionary<string, object> CreatePathsDictionary(Resource? resource, List<Resource> environmentResources)
{
if(!string.IsNullOrEmpty(resource?.Url))
{
var pathsContent = new PathsContent()
{
Parameters = MapHeaderAndQueryParams(resource, environmentResources)
};
//add request body
if(resource.Body != null && resource.Body.MimeType != null && resource.Body.MimeType.StartsWith("application/json", StringComparison.OrdinalIgnoreCase))
{
var examplesJson = new Dictionary<string, object>
{
{ "examples", MapEntryBodyToContentExamples(resource.Body.Text) }
};
var contentJson = new Dictionary<string, object>
{
{ "*/*", examplesJson }
};
pathsContent.RequestBody = new RequestBody()
{
Content = contentJson
};
}
else if(resource.Body != null && resource.Body.MimeType != null && resource.Body.MimeType.StartsWith("application/x-www-form-urlencoded", StringComparison.OrdinalIgnoreCase))
{
var examplesJson = new Dictionary<string, object>
{
{ "examples", MapUrlEncodedBodyToContentExamples(resource.Body.Params, environmentResources) }
};
var contentJson = new Dictionary<string, object>
{
{ "application/x-www-form-urlencoded", examplesJson }
};
pathsContent.RequestBody = new RequestBody()
{
Content = contentJson
};
}
var baseUrl = resource.Url.Split("?")[0];
var path = baseUrl.Substring(UtilityHelper.IndexOfNth(baseUrl, '/', 3));
// add header and query params
if(resource.Method != null)
{
var methodJson = new Dictionary<string, object>
{
{ resource.Method.ToLowerInvariant(), pathsContent }
};
var json = new Dictionary<string, object>
{
{ $"{path}", methodJson }
};
return json;
}
}
return new Dictionary<string, object>();
}
public static Examples MapUrlEncodedBodyToContentExamples(List<Param>? formParams, List<Resource> environmentResources)
{
var rawBody = string.Empty;
if(formParams != null)
{
foreach(var param in formParams)
{
rawBody += $"{ReplaceEnvironmentVariables(param.Name, environmentResources)}={ReplaceEnvironmentVariables(param.Value, environmentResources)}&";
}
}
return new Examples()
{
Example = new Example()
{
Value = rawBody
}
};
}
public static List<Explore.Cli.Models.Explore.Parameter> MapHeaderAndQueryParams(Resource resource, List<Resource> environmentResources)
{
List<Explore.Cli.Models.Explore.Parameter> parameters = new List<Explore.Cli.Models.Explore.Parameter>();
if(resource.Headers != null && resource.Headers.Any())
{
// map the headers
foreach(var hdr in resource.Headers)
{
parameters.Add(new Explore.Cli.Models.Explore.Parameter()
{
In = "header",
Name = ReplaceEnvironmentVariables(hdr.Name, environmentResources),
Examples = new Examples()
{
Example = new Example()
{
Value = ReplaceEnvironmentVariables(hdr.Value, environmentResources)
}
}
});
}
}
//if we have urlencoded body then force the content type header as plaintext (Explore doesn't support urlencoded natively)
if(resource?.Body != null && resource.Body.Params != null && resource.Body.Params.Any())
{
parameters.Add(new Explore.Cli.Models.Explore.Parameter()
{
In = "header",
Name = "Content-Type",
Schema = new Schema()
{
type = "string"
},
Examples = new Examples()
{
Example = new Example()
{
Value = "application/x-www-form-urlencoded"
}
}
});
}
// parse and map the query string
if(resource?.Parameters != null && resource.Parameters.Any())
{
foreach(var param in resource.Parameters)
{
parameters.Add(new Explore.Cli.Models.Explore.Parameter()
{
In = "query",
Name = param.Name,
Examples = new Examples()
{
Example = new Example()
{
Value = ReplaceEnvironmentVariables(param.Value, environmentResources)
}
}
});
}
}
// parse the raw url for query parameters not explicitly defined
if(!string.IsNullOrEmpty(resource?.Url) && resource.Url.Contains("?"))
{
var query = resource.Url.Split("?")[1];
var queryParameters = query.Split("&");
foreach(var queryParameter in queryParameters)
{
var keyValuePair = queryParameter.Split("=");
if(parameters.Any(p => p.Name == keyValuePair[0]))
{
continue;
}
parameters.Add(new Explore.Cli.Models.Explore.Parameter()
{
In = "query",
Name = keyValuePair[0],
Examples = new Examples()
{
Example = new Example()
{
Value = ReplaceEnvironmentVariables(keyValuePair[1], environmentResources)
}
}
});
}
}
return parameters;
}
public static Credentials? MapInsomniaAuthenticationToExploreCredentials(Authentication? authentication)
{
if(authentication == null || authentication.Type != null)
{
return null;
}
if(authentication.Disabled == true)
{
return null;
}
switch(authentication?.Type?.ToLowerInvariant())
{
case ("basic"):
return new Credentials()
{
Type = "Basic",
Username = authentication.Username,
Password = authentication.Password
};
case ("bearer"):
return new Credentials()
{
Type = "Bearer",
Token = authentication.Token
};
}
return null;
}
}