2021-08-09 07:27:32 -07:00
|
|
|
using CaseExtensions;
|
2018-05-01 00:07:27 +02:00
|
|
|
using NJsonSchema;
|
|
|
|
|
using NSwag;
|
|
|
|
|
using Nustache.Core;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2021-08-09 07:27:32 -07:00
|
|
|
using System.Data.Common;
|
|
|
|
|
using System.Globalization;
|
2018-05-01 00:07:27 +02:00
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
2021-08-09 07:27:32 -07:00
|
|
|
using System.Reflection.Metadata;
|
2020-05-20 19:28:19 -04:00
|
|
|
using System.Runtime.CompilerServices;
|
2021-08-09 07:27:32 -07:00
|
|
|
using System.Security;
|
2020-05-20 19:28:19 -04:00
|
|
|
using System.Text.RegularExpressions;
|
2021-08-09 07:27:32 -07:00
|
|
|
using System.Threading;
|
2018-05-01 00:07:27 +02:00
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace KubernetesWatchGenerator
|
|
|
|
|
{
|
2020-10-23 08:31:57 -07:00
|
|
|
internal class Program
|
2018-05-01 00:07:27 +02:00
|
|
|
{
|
2020-03-23 00:22:45 -04:00
|
|
|
private static HashSet<string> _classesWithValidation;
|
2020-10-23 08:31:57 -07:00
|
|
|
private static readonly Dictionary<string, string> ClassNameMap = new Dictionary<string, string>();
|
2020-03-23 00:22:45 -04:00
|
|
|
private static Dictionary<JsonSchema4, string> _schemaToNameMap;
|
2021-08-09 07:27:32 -07:00
|
|
|
private static Dictionary<JsonSchema4, string> _schemaToNameMapCooked;
|
2020-03-23 00:22:45 -04:00
|
|
|
private static HashSet<string> _schemaDefinitionsInMultipleGroups;
|
|
|
|
|
private static Dictionary<string, string> _classNameToPluralMap;
|
2020-03-17 13:57:26 -07:00
|
|
|
|
2020-10-23 08:31:57 -07:00
|
|
|
private static async Task Main(string[] args)
|
2018-05-01 00:07:27 +02:00
|
|
|
{
|
2019-03-06 16:18:57 -08:00
|
|
|
if (args.Length < 2)
|
2018-05-01 00:07:27 +02:00
|
|
|
{
|
2020-03-17 13:57:26 -07:00
|
|
|
Console.Error.WriteLine($"usage {args[0]} path/to/generated");
|
2019-03-06 16:18:57 -08:00
|
|
|
Environment.Exit(1);
|
2018-05-01 00:07:27 +02:00
|
|
|
}
|
|
|
|
|
|
2020-03-17 13:57:26 -07:00
|
|
|
var outputDirectory = args[1];
|
2018-05-01 00:07:27 +02:00
|
|
|
|
2020-03-17 13:57:26 -07:00
|
|
|
// Read the spec trimmed
|
|
|
|
|
// here we cache all name in gen project for later use
|
2021-08-09 07:27:32 -07:00
|
|
|
var swaggercooked = await SwaggerDocument.FromFileAsync(Path.Combine(args[1], "swagger.json")).ConfigureAwait(false);
|
|
|
|
|
foreach (var (k, v) in swaggercooked.Definitions)
|
2018-05-01 00:07:27 +02:00
|
|
|
{
|
2020-03-17 13:57:26 -07:00
|
|
|
if (v.ExtensionData?.TryGetValue("x-kubernetes-group-version-kind", out var _) == true)
|
2018-05-01 00:07:27 +02:00
|
|
|
{
|
2020-03-17 13:57:26 -07:00
|
|
|
var groupVersionKindElements = (object[])v.ExtensionData["x-kubernetes-group-version-kind"];
|
|
|
|
|
var groupVersionKind = (Dictionary<string, object>)groupVersionKindElements[0];
|
|
|
|
|
|
|
|
|
|
var group = (string)groupVersionKind["group"];
|
|
|
|
|
var kind = (string)groupVersionKind["kind"];
|
|
|
|
|
var version = (string)groupVersionKind["version"];
|
|
|
|
|
ClassNameMap[$"{group}_{kind}_{version}"] = ToPascalCase(k.Replace(".", ""));
|
2018-05-01 00:07:27 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-09 07:27:32 -07:00
|
|
|
_schemaToNameMapCooked = swaggercooked.Definitions.ToDictionary(x => x.Value, x => ToPascalCase(x.Key.Replace(".", "")));
|
|
|
|
|
|
2020-03-17 13:57:26 -07:00
|
|
|
// gen project removed all watch operations, so here we switch back to unprocessed version
|
2021-08-09 07:27:32 -07:00
|
|
|
var swagger = await SwaggerDocument.FromFileAsync(Path.Combine(args[1], "swagger.json.unprocessed")).ConfigureAwait(false);
|
2020-03-23 00:22:45 -04:00
|
|
|
_schemaToNameMap = swagger.Definitions.ToDictionary(x => x.Value, x => x.Key);
|
|
|
|
|
_schemaDefinitionsInMultipleGroups = _schemaToNameMap.Values.Select(x =>
|
2020-04-23 11:40:06 -07:00
|
|
|
{
|
|
|
|
|
var parts = x.Split(".");
|
|
|
|
|
return new
|
|
|
|
|
{
|
|
|
|
|
FullName = x,
|
|
|
|
|
Name = parts[parts.Length - 1],
|
|
|
|
|
Version = parts[parts.Length - 2],
|
|
|
|
|
Group = parts[parts.Length - 3],
|
|
|
|
|
};
|
|
|
|
|
})
|
2020-04-22 12:15:45 -07:00
|
|
|
.GroupBy(x => new { x.Name, x.Version })
|
2020-03-23 00:22:45 -04:00
|
|
|
.Where(x => x.Count() > 1)
|
|
|
|
|
.SelectMany(x => x)
|
|
|
|
|
.Select(x => x.FullName)
|
|
|
|
|
.ToHashSet();
|
|
|
|
|
|
|
|
|
|
_classNameToPluralMap = swagger.Operations
|
2020-11-22 14:52:09 -08:00
|
|
|
.Where(x => x.Operation.OperationId.StartsWith("list", StringComparison.InvariantCulture))
|
2020-04-23 11:40:06 -07:00
|
|
|
.Select(x =>
|
|
|
|
|
{
|
|
|
|
|
return new
|
|
|
|
|
{
|
|
|
|
|
PluralName = x.Path.Split("/").Last(),
|
|
|
|
|
ClassName = GetClassNameForSchemaDefinition(x.Operation.Responses["200"]
|
|
|
|
|
.ActualResponseSchema),
|
|
|
|
|
};
|
|
|
|
|
})
|
2020-03-23 00:22:45 -04:00
|
|
|
.Distinct()
|
|
|
|
|
.ToDictionary(x => x.ClassName, x => x.PluralName);
|
|
|
|
|
|
|
|
|
|
// dictionary only contains "list" plural maps. assign the same plural names to entities those lists support
|
|
|
|
|
_classNameToPluralMap = _classNameToPluralMap
|
2020-11-22 14:52:09 -08:00
|
|
|
.Where(x => x.Key.EndsWith("List", StringComparison.InvariantCulture))
|
2020-03-23 00:22:45 -04:00
|
|
|
.Select(x =>
|
2020-04-22 12:15:45 -07:00
|
|
|
new { ClassName = x.Key.Remove(x.Key.Length - 4), PluralName = x.Value })
|
2020-03-23 00:22:45 -04:00
|
|
|
.ToDictionary(x => x.ClassName, x => x.PluralName)
|
|
|
|
|
.Union(_classNameToPluralMap)
|
|
|
|
|
.ToDictionary(x => x.Key, x => x.Value);
|
|
|
|
|
|
2018-05-03 07:04:47 +02:00
|
|
|
// Register helpers used in the templating.
|
|
|
|
|
Helpers.Register(nameof(ToXmlDoc), ToXmlDoc);
|
|
|
|
|
Helpers.Register(nameof(GetClassName), GetClassName);
|
2020-03-23 00:22:45 -04:00
|
|
|
Helpers.Register(nameof(GetInterfaceName), GetInterfaceName);
|
2018-05-03 07:04:47 +02:00
|
|
|
Helpers.Register(nameof(GetMethodName), GetMethodName);
|
|
|
|
|
Helpers.Register(nameof(GetDotNetName), GetDotNetName);
|
|
|
|
|
Helpers.Register(nameof(GetDotNetType), GetDotNetType);
|
|
|
|
|
Helpers.Register(nameof(GetPathExpression), GetPathExpression);
|
|
|
|
|
Helpers.Register(nameof(GetGroup), GetGroup);
|
|
|
|
|
Helpers.Register(nameof(GetApiVersion), GetApiVersion);
|
|
|
|
|
Helpers.Register(nameof(GetKind), GetKind);
|
2020-03-23 00:22:45 -04:00
|
|
|
Helpers.Register(nameof(GetPlural), GetPlural);
|
2020-05-20 19:28:19 -04:00
|
|
|
Helpers.Register(nameof(GetTuple), GetTuple);
|
2021-08-09 07:27:32 -07:00
|
|
|
Helpers.Register(nameof(GetReturnType), GetReturnType);
|
|
|
|
|
Helpers.Register(nameof(IfKindIs), IfKindIs);
|
|
|
|
|
Helpers.Register(nameof(AddCurly), AddCurly);
|
|
|
|
|
Helpers.Register(nameof(GetRequestMethod), GetRequestMethod);
|
|
|
|
|
Helpers.Register(nameof(EscapeDataString), EscapeDataString);
|
|
|
|
|
Helpers.Register(nameof(IfReturnType), IfReturnType);
|
|
|
|
|
Helpers.Register(nameof(GetModelCtorParam), GetModelCtorParam);
|
|
|
|
|
Helpers.Register(nameof(IfType), IfType);
|
2018-05-03 07:04:47 +02:00
|
|
|
|
|
|
|
|
// Generate the Watcher operations
|
2018-05-01 00:07:27 +02:00
|
|
|
// We skip operations where the name of the class in the C# client could not be determined correctly.
|
|
|
|
|
// That's usually because there are different version of the same object (e.g. for deployments).
|
2020-04-23 11:40:06 -07:00
|
|
|
var blacklistedOperations = new HashSet<string>() { };
|
2018-05-01 00:07:27 +02:00
|
|
|
|
|
|
|
|
var watchOperations = swagger.Operations.Where(
|
|
|
|
|
o => o.Path.Contains("/watch/")
|
2020-04-23 11:40:06 -07:00
|
|
|
&& o.Operation.ActualParameters.Any(p => p.Name == "name")
|
|
|
|
|
&& !blacklistedOperations.Contains(o.Operation.OperationId)).ToArray();
|
2018-05-01 00:07:27 +02:00
|
|
|
|
|
|
|
|
// Render.
|
2020-04-23 11:40:06 -07:00
|
|
|
Render.FileToFile("IKubernetes.Watch.cs.template", watchOperations,
|
|
|
|
|
Path.Combine(outputDirectory, "IKubernetes.Watch.cs"));
|
|
|
|
|
Render.FileToFile("Kubernetes.Watch.cs.template", watchOperations,
|
|
|
|
|
Path.Combine(outputDirectory, "Kubernetes.Watch.cs"));
|
2018-05-03 07:04:47 +02:00
|
|
|
|
2021-08-09 07:27:32 -07:00
|
|
|
var data = swaggercooked.Operations
|
|
|
|
|
.Where(o => o.Method != SwaggerOperationMethod.Options)
|
|
|
|
|
.GroupBy(o => o.Operation.OperationId)
|
|
|
|
|
.Select(g =>
|
|
|
|
|
{
|
|
|
|
|
var gs = g.ToArray();
|
|
|
|
|
|
|
|
|
|
for (int i = 1; i < g.Count(); i++)
|
|
|
|
|
{
|
|
|
|
|
gs[i].Operation.OperationId += i;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return gs;
|
|
|
|
|
})
|
|
|
|
|
.SelectMany(g => g)
|
|
|
|
|
.Select(o =>
|
|
|
|
|
{
|
|
|
|
|
var ps = o.Operation.ActualParameters.OrderBy(p => !p.IsRequired).ToArray();
|
|
|
|
|
|
|
|
|
|
o.Operation.Parameters.Clear();
|
|
|
|
|
|
|
|
|
|
var name = new HashSet<string>();
|
|
|
|
|
|
|
|
|
|
var i = 1;
|
|
|
|
|
foreach (var p in ps)
|
|
|
|
|
{
|
|
|
|
|
if (name.Contains(p.Name))
|
|
|
|
|
{
|
|
|
|
|
p.Name = p.Name + i++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
o.Operation.Parameters.Add(p);
|
|
|
|
|
name.Add(p.Name);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return o;
|
|
|
|
|
})
|
|
|
|
|
.ToArray();
|
|
|
|
|
|
|
|
|
|
Render.FileToFile("IKubernetes.cs.template", data, Path.Combine(outputDirectory, "IKubernetes.cs"));
|
|
|
|
|
Render.FileToFile("KubernetesExtensions.cs.template", data, Path.Combine(outputDirectory, "KubernetesExtensions.cs"));
|
|
|
|
|
Render.FileToFile("Kubernetes.cs.template", data, Path.Combine(outputDirectory, "Kubernetes.cs"));
|
|
|
|
|
|
|
|
|
|
foreach (var (_, def) in swaggercooked.Definitions)
|
|
|
|
|
{
|
|
|
|
|
var clz = GetClassNameForSchemaDefinition(def);
|
|
|
|
|
Render.FileToFile("Model.cs.template", new
|
|
|
|
|
{
|
|
|
|
|
clz,
|
|
|
|
|
def,
|
|
|
|
|
properties = def.Properties.Values,
|
|
|
|
|
}, Path.Combine(outputDirectory, "Models", $"{clz}.cs"));
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-03 07:04:47 +02:00
|
|
|
// Generate the interface declarations
|
2020-04-23 11:40:06 -07:00
|
|
|
var skippedTypes = new HashSet<string>() { "V1WatchEvent", };
|
2018-05-03 07:04:47 +02:00
|
|
|
|
|
|
|
|
var definitions = swagger.Definitions.Values
|
|
|
|
|
.Where(
|
|
|
|
|
d => d.ExtensionData != null
|
2020-04-23 11:40:06 -07:00
|
|
|
&& d.ExtensionData.ContainsKey("x-kubernetes-group-version-kind")
|
|
|
|
|
&& !skippedTypes.Contains(GetClassName(d)));
|
2018-05-03 07:04:47 +02:00
|
|
|
|
2020-03-23 00:22:45 -04:00
|
|
|
var modelsDir = Path.Combine(outputDirectory, "Models");
|
|
|
|
|
_classesWithValidation = Directory.EnumerateFiles(modelsDir)
|
2020-04-22 12:15:45 -07:00
|
|
|
.Select(x => new { Class = Path.GetFileNameWithoutExtension(x), Content = File.ReadAllText(x) })
|
2020-03-23 00:22:45 -04:00
|
|
|
.Where(x => x.Content.Contains("public virtual void Validate()"))
|
|
|
|
|
.Select(x => x.Class)
|
|
|
|
|
.ToHashSet();
|
|
|
|
|
|
2020-05-20 19:28:19 -04:00
|
|
|
Render.FileToFile("ModelExtensions.cs.template", definitions, Path.Combine(outputDirectory, "ModelExtensions.cs"));
|
|
|
|
|
|
|
|
|
|
// generate version converter maps
|
|
|
|
|
var allGeneratedModelClassNames = Directory
|
|
|
|
|
.EnumerateFiles(Path.Combine(outputDirectory, "Models"))
|
|
|
|
|
.Select(Path.GetFileNameWithoutExtension)
|
|
|
|
|
.ToList();
|
|
|
|
|
|
|
|
|
|
var versionRegex = @"(^V|v)[0-9]+((alpha|beta)[0-9]+)?";
|
|
|
|
|
var typePairs = allGeneratedModelClassNames
|
|
|
|
|
.OrderBy(x => x)
|
|
|
|
|
.Select(x => new { Version = Regex.Match(x, versionRegex).Value?.ToLower(), Kinda = Regex.Replace(x, versionRegex, string.Empty), Type = x })
|
|
|
|
|
.Where(x => !string.IsNullOrEmpty(x.Version))
|
|
|
|
|
.GroupBy(x => x.Kinda)
|
|
|
|
|
.Where(x => x.Count() > 1)
|
|
|
|
|
.SelectMany(x => x.SelectMany((value, index) => x.Skip(index + 1), (first, second) => new { first, second }))
|
|
|
|
|
.OrderBy(x => x.first.Kinda)
|
|
|
|
|
.ThenBy(x => x.first.Version)
|
|
|
|
|
.Select(x => (ITuple)Tuple.Create(x.first.Type, x.second.Type))
|
|
|
|
|
.ToList();
|
|
|
|
|
|
|
|
|
|
var versionFile = File.ReadAllText(Path.Combine(outputDirectory, "..", "Versioning", "VersionConverter.cs"));
|
|
|
|
|
var manualMaps = Regex.Matches(versionFile, @"\.CreateMap<(?<T1>.+?),\s?(?<T2>.+?)>")
|
|
|
|
|
.Select(x => Tuple.Create(x.Groups["T1"].Value, x.Groups["T2"].Value))
|
|
|
|
|
.ToList();
|
|
|
|
|
var versionConverterPairs = typePairs.Except(manualMaps).ToList();
|
|
|
|
|
|
|
|
|
|
Render.FileToFile("VersionConverter.cs.template", versionConverterPairs, Path.Combine(outputDirectory, "VersionConverter.cs"));
|
|
|
|
|
Render.FileToFile("ModelOperators.cs.template", typePairs, Path.Combine(outputDirectory, "ModelOperators.cs"));
|
2019-03-06 16:18:57 -08:00
|
|
|
}
|
|
|
|
|
|
2020-10-23 08:31:57 -07:00
|
|
|
private static void ToXmlDoc(RenderContext context, IList<object> arguments, IDictionary<string, object> options,
|
2020-04-23 11:40:06 -07:00
|
|
|
RenderBlock fn, RenderBlock inverse)
|
2018-05-01 00:07:27 +02:00
|
|
|
{
|
|
|
|
|
if (arguments != null && arguments.Count > 0 && arguments[0] != null && arguments[0] is string)
|
|
|
|
|
{
|
2020-11-22 14:52:09 -08:00
|
|
|
var first = true;
|
2018-05-01 00:07:27 +02:00
|
|
|
|
2020-11-22 14:52:09 -08:00
|
|
|
using (var reader = new StringReader(arguments[0] as string))
|
2018-05-01 00:07:27 +02:00
|
|
|
{
|
|
|
|
|
string line = null;
|
|
|
|
|
while ((line = reader.ReadLine()) != null)
|
|
|
|
|
{
|
2021-08-09 07:27:32 -07:00
|
|
|
foreach (var wline in WordWrap(line, 80))
|
2018-05-01 00:07:27 +02:00
|
|
|
{
|
2021-08-09 07:27:32 -07:00
|
|
|
if (!first)
|
|
|
|
|
{
|
|
|
|
|
context.Write("\n");
|
|
|
|
|
context.Write(" /// ");
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
first = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
context.Write(SecurityElement.Escape(wline));
|
2018-05-01 00:07:27 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-23 08:31:57 -07:00
|
|
|
private static void GetTuple(RenderContext context, IList<object> arguments, IDictionary<string, object> options, RenderBlock fn, RenderBlock inverse)
|
2020-05-20 19:28:19 -04:00
|
|
|
{
|
|
|
|
|
if (arguments != null && arguments.Count > 0 && arguments[0] is ITuple && options.TryGetValue("index", out var indexObj) && int.TryParse(indexObj?.ToString(), out var index))
|
|
|
|
|
{
|
|
|
|
|
var pair = (ITuple)arguments[0];
|
|
|
|
|
var value = pair[index];
|
|
|
|
|
context.Write(value.ToString());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-23 08:31:57 -07:00
|
|
|
private static void GetClassName(RenderContext context, IList<object> arguments, IDictionary<string, object> options,
|
2020-04-23 11:40:06 -07:00
|
|
|
RenderBlock fn, RenderBlock inverse)
|
2018-05-01 00:07:27 +02:00
|
|
|
{
|
|
|
|
|
if (arguments != null && arguments.Count > 0 && arguments[0] != null && arguments[0] is SwaggerOperation)
|
|
|
|
|
{
|
2018-05-03 07:04:47 +02:00
|
|
|
context.Write(GetClassName(arguments[0] as SwaggerOperation));
|
|
|
|
|
}
|
|
|
|
|
else if (arguments != null && arguments.Count > 0 && arguments[0] != null && arguments[0] is JsonSchema4)
|
|
|
|
|
{
|
2021-08-09 07:27:32 -07:00
|
|
|
context.Write(GetClassNameForSchemaDefinition(arguments[0] as JsonSchema4));
|
2018-05-01 00:07:27 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-23 08:31:57 -07:00
|
|
|
private static string GetClassName(SwaggerOperation watchOperation)
|
2018-05-01 00:07:27 +02:00
|
|
|
{
|
2020-04-23 11:40:06 -07:00
|
|
|
var groupVersionKind =
|
|
|
|
|
(Dictionary<string, object>)watchOperation.ExtensionData["x-kubernetes-group-version-kind"];
|
2020-03-17 13:57:26 -07:00
|
|
|
return GetClassName(groupVersionKind);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static string GetClassName(Dictionary<string, object> groupVersionKind)
|
|
|
|
|
{
|
2018-05-03 07:04:47 +02:00
|
|
|
var group = (string)groupVersionKind["group"];
|
|
|
|
|
var kind = (string)groupVersionKind["kind"];
|
|
|
|
|
var version = (string)groupVersionKind["version"];
|
2018-05-01 00:07:27 +02:00
|
|
|
|
2020-03-17 13:57:26 -07:00
|
|
|
return ClassNameMap[$"{group}_{kind}_{version}"];
|
2018-05-03 07:04:47 +02:00
|
|
|
}
|
2018-05-01 00:07:27 +02:00
|
|
|
|
2018-05-03 07:04:47 +02:00
|
|
|
private static string GetClassName(JsonSchema4 definition)
|
|
|
|
|
{
|
|
|
|
|
var groupVersionKindElements = (object[])definition.ExtensionData["x-kubernetes-group-version-kind"];
|
|
|
|
|
var groupVersionKind = (Dictionary<string, object>)groupVersionKindElements[0];
|
|
|
|
|
|
2020-03-17 13:57:26 -07:00
|
|
|
return GetClassName(groupVersionKind);
|
2018-05-03 07:04:47 +02:00
|
|
|
}
|
2020-03-23 00:22:45 -04:00
|
|
|
|
2020-04-23 11:40:06 -07:00
|
|
|
private static void GetInterfaceName(RenderContext context, IList<object> arguments,
|
|
|
|
|
IDictionary<string, object> options, RenderBlock fn, RenderBlock inverse)
|
|
|
|
|
{
|
2020-03-23 00:22:45 -04:00
|
|
|
if (arguments != null && arguments.Count > 0 && arguments[0] != null && arguments[0] is JsonSchema4)
|
|
|
|
|
{
|
|
|
|
|
context.Write(GetInterfaceName(arguments[0] as JsonSchema4));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-23 08:31:57 -07:00
|
|
|
private static string GetClassNameForSchemaDefinition(JsonSchema4 definition)
|
2020-03-23 00:22:45 -04:00
|
|
|
{
|
2020-04-23 11:40:06 -07:00
|
|
|
if (definition.ExtensionData != null &&
|
|
|
|
|
definition.ExtensionData.ContainsKey("x-kubernetes-group-version-kind"))
|
|
|
|
|
{
|
2020-03-23 00:22:45 -04:00
|
|
|
return GetClassName(definition);
|
2020-04-23 11:40:06 -07:00
|
|
|
}
|
2020-03-23 00:22:45 -04:00
|
|
|
|
2021-08-09 07:27:32 -07:00
|
|
|
if (_schemaToNameMapCooked.TryGetValue(definition, out var name))
|
|
|
|
|
{
|
|
|
|
|
return name;
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-23 00:22:45 -04:00
|
|
|
var schemaName = _schemaToNameMap[definition];
|
|
|
|
|
|
|
|
|
|
var parts = schemaName.Split(".");
|
|
|
|
|
var group = parts[parts.Length - 3];
|
|
|
|
|
var version = parts[parts.Length - 2];
|
|
|
|
|
var entityName = parts[parts.Length - 1];
|
|
|
|
|
if (!_schemaDefinitionsInMultipleGroups.Contains(schemaName))
|
2020-04-23 11:40:06 -07:00
|
|
|
{
|
|
|
|
|
@group = null;
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-23 00:22:45 -04:00
|
|
|
var className = ToPascalCase($"{group}{version}{entityName}");
|
|
|
|
|
return className;
|
|
|
|
|
}
|
2020-04-23 11:40:06 -07:00
|
|
|
|
2020-10-23 08:31:57 -07:00
|
|
|
private static string GetInterfaceName(JsonSchema4 definition)
|
2020-03-23 00:22:45 -04:00
|
|
|
{
|
|
|
|
|
var groupVersionKindElements = (object[])definition.ExtensionData["x-kubernetes-group-version-kind"];
|
|
|
|
|
var groupVersionKind = (Dictionary<string, object>)groupVersionKindElements[0];
|
|
|
|
|
|
|
|
|
|
var group = groupVersionKind["group"] as string;
|
|
|
|
|
var version = groupVersionKind["version"] as string;
|
|
|
|
|
var kind = groupVersionKind["kind"] as string;
|
|
|
|
|
var className = GetClassName(definition);
|
|
|
|
|
var interfaces = new List<string>();
|
|
|
|
|
if (definition.Properties.TryGetValue("metadata", out var metadataProperty))
|
|
|
|
|
{
|
2020-04-09 15:13:48 -07:00
|
|
|
interfaces.Add($"IKubernetesObject<{GetClassNameForSchemaDefinition(metadataProperty.Reference)}>");
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
interfaces.Add("IKubernetesObject");
|
2020-03-23 00:22:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (definition.Properties.TryGetValue("items", out var itemsProperty))
|
|
|
|
|
{
|
2020-04-23 11:40:06 -07:00
|
|
|
var schema = itemsProperty.Type == JsonObjectType.Object
|
|
|
|
|
? itemsProperty.Reference
|
|
|
|
|
: itemsProperty.Item.Reference;
|
2020-03-23 00:22:45 -04:00
|
|
|
interfaces.Add($"IItems<{GetClassNameForSchemaDefinition(schema)}>");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (definition.Properties.TryGetValue("spec", out var specProperty))
|
|
|
|
|
{
|
2020-12-13 19:55:27 -08:00
|
|
|
// ignore empty spec placeholder
|
|
|
|
|
if (specProperty.Reference.ActualProperties.Any())
|
|
|
|
|
{
|
|
|
|
|
interfaces.Add($"ISpec<{GetClassNameForSchemaDefinition(specProperty.Reference)}>");
|
|
|
|
|
}
|
2020-03-23 00:22:45 -04:00
|
|
|
}
|
|
|
|
|
|
2020-04-22 12:15:45 -07:00
|
|
|
if (_classesWithValidation.Contains(className))
|
2020-04-23 11:40:06 -07:00
|
|
|
{
|
2020-03-23 00:22:45 -04:00
|
|
|
interfaces.Add("IValidate");
|
2020-04-23 11:40:06 -07:00
|
|
|
}
|
|
|
|
|
|
2020-03-23 00:22:45 -04:00
|
|
|
var result = string.Join(", ", interfaces);
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-23 08:31:57 -07:00
|
|
|
private static void GetKind(RenderContext context, IList<object> arguments, IDictionary<string, object> options,
|
2020-04-23 11:40:06 -07:00
|
|
|
RenderBlock fn, RenderBlock inverse)
|
2018-05-03 07:04:47 +02:00
|
|
|
{
|
|
|
|
|
if (arguments != null && arguments.Count > 0 && arguments[0] != null && arguments[0] is JsonSchema4)
|
|
|
|
|
{
|
|
|
|
|
context.Write(GetKind(arguments[0] as JsonSchema4));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static string GetKind(JsonSchema4 definition)
|
|
|
|
|
{
|
|
|
|
|
var groupVersionKindElements = (object[])definition.ExtensionData["x-kubernetes-group-version-kind"];
|
|
|
|
|
var groupVersionKind = (Dictionary<string, object>)groupVersionKindElements[0];
|
|
|
|
|
|
|
|
|
|
return groupVersionKind["kind"] as string;
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-23 08:31:57 -07:00
|
|
|
private static void GetPlural(RenderContext context, IList<object> arguments, IDictionary<string, object> options,
|
2020-04-23 11:40:06 -07:00
|
|
|
RenderBlock fn, RenderBlock inverse)
|
2020-03-23 00:22:45 -04:00
|
|
|
{
|
|
|
|
|
if (arguments != null && arguments.Count > 0 && arguments[0] != null && arguments[0] is JsonSchema4)
|
|
|
|
|
{
|
|
|
|
|
var plural = GetPlural(arguments[0] as JsonSchema4);
|
2020-04-22 12:15:45 -07:00
|
|
|
if (plural != null)
|
2020-04-23 11:40:06 -07:00
|
|
|
{
|
2020-03-23 00:22:45 -04:00
|
|
|
context.Write($"\"{plural}\"");
|
2020-04-23 11:40:06 -07:00
|
|
|
}
|
2020-03-23 00:22:45 -04:00
|
|
|
else
|
2020-04-23 11:40:06 -07:00
|
|
|
{
|
2020-03-23 00:22:45 -04:00
|
|
|
context.Write("null");
|
2020-04-23 11:40:06 -07:00
|
|
|
}
|
2020-03-23 00:22:45 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static string GetPlural(JsonSchema4 definition)
|
|
|
|
|
{
|
|
|
|
|
var className = GetClassNameForSchemaDefinition(definition);
|
|
|
|
|
return _classNameToPluralMap.GetValueOrDefault(className, null);
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-23 08:31:57 -07:00
|
|
|
private static void GetGroup(RenderContext context, IList<object> arguments, IDictionary<string, object> options,
|
2020-04-23 11:40:06 -07:00
|
|
|
RenderBlock fn, RenderBlock inverse)
|
2018-05-03 07:04:47 +02:00
|
|
|
{
|
|
|
|
|
if (arguments != null && arguments.Count > 0 && arguments[0] != null && arguments[0] is JsonSchema4)
|
|
|
|
|
{
|
|
|
|
|
context.Write(GetGroup(arguments[0] as JsonSchema4));
|
|
|
|
|
}
|
2018-05-01 00:07:27 +02:00
|
|
|
}
|
|
|
|
|
|
2018-05-03 07:04:47 +02:00
|
|
|
private static string GetGroup(JsonSchema4 definition)
|
|
|
|
|
{
|
|
|
|
|
var groupVersionKindElements = (object[])definition.ExtensionData["x-kubernetes-group-version-kind"];
|
|
|
|
|
var groupVersionKind = (Dictionary<string, object>)groupVersionKindElements[0];
|
|
|
|
|
|
|
|
|
|
return groupVersionKind["group"] as string;
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-23 08:31:57 -07:00
|
|
|
private static void GetMethodName(RenderContext context, IList<object> arguments, IDictionary<string, object> options,
|
2020-04-23 11:40:06 -07:00
|
|
|
RenderBlock fn, RenderBlock inverse)
|
2018-05-01 00:07:27 +02:00
|
|
|
{
|
|
|
|
|
if (arguments != null && arguments.Count > 0 && arguments[0] != null && arguments[0] is SwaggerOperation)
|
|
|
|
|
{
|
2021-08-09 07:27:32 -07:00
|
|
|
string suffix = null;
|
|
|
|
|
if (arguments.Count > 1)
|
|
|
|
|
{
|
|
|
|
|
suffix = arguments[1] as string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
context.Write(GetMethodName(arguments[0] as SwaggerOperation, suffix));
|
2018-05-01 00:07:27 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-09 07:27:32 -07:00
|
|
|
private static string GetMethodName(SwaggerOperation watchOperation, string suffix)
|
2018-05-01 00:07:27 +02:00
|
|
|
{
|
2018-05-03 07:04:47 +02:00
|
|
|
var tag = watchOperation.Tags[0];
|
|
|
|
|
tag = tag.Replace("_", string.Empty);
|
2018-05-01 00:07:27 +02:00
|
|
|
|
2018-05-03 07:04:47 +02:00
|
|
|
var methodName = ToPascalCase(watchOperation.OperationId);
|
|
|
|
|
|
2021-08-09 07:27:32 -07:00
|
|
|
switch (suffix)
|
|
|
|
|
{
|
|
|
|
|
case "":
|
|
|
|
|
case "Async":
|
|
|
|
|
case "WithHttpMessagesAsync":
|
|
|
|
|
methodName += suffix;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
// This tries to remove the version from the method name, e.g. watchCoreV1NamespacedPod => WatchNamespacedPod
|
|
|
|
|
methodName = methodName.Replace(tag, string.Empty, StringComparison.OrdinalIgnoreCase);
|
|
|
|
|
methodName += "Async";
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-03 07:04:47 +02:00
|
|
|
return methodName;
|
2018-05-01 00:07:27 +02:00
|
|
|
}
|
|
|
|
|
|
2020-10-23 08:31:57 -07:00
|
|
|
private static void GetDotNetType(RenderContext context, IList<object> arguments, IDictionary<string, object> options,
|
2020-04-23 11:40:06 -07:00
|
|
|
RenderBlock fn, RenderBlock inverse)
|
2018-05-01 00:07:27 +02:00
|
|
|
{
|
|
|
|
|
if (arguments != null && arguments.Count > 0 && arguments[0] != null && arguments[0] is SwaggerParameter)
|
|
|
|
|
{
|
|
|
|
|
var parameter = arguments[0] as SwaggerParameter;
|
2021-08-09 07:27:32 -07:00
|
|
|
|
|
|
|
|
if (parameter.Schema?.Reference != null)
|
|
|
|
|
{
|
|
|
|
|
context.Write(GetClassNameForSchemaDefinition(parameter.Schema.Reference));
|
|
|
|
|
}
|
|
|
|
|
else if (parameter.Schema != null)
|
|
|
|
|
{
|
|
|
|
|
context.Write(GetDotNetType(parameter.Schema.Type, parameter.Name, parameter.IsRequired, parameter.Schema.Format));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
context.Write(GetDotNetType(parameter.Type, parameter.Name, parameter.IsRequired, parameter.Format));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (arguments != null && arguments.Count > 0 && arguments[0] != null && arguments[0] is JsonProperty)
|
|
|
|
|
{
|
|
|
|
|
var property = arguments[0] as JsonProperty;
|
|
|
|
|
context.Write(GetDotNetType(property));
|
2018-05-01 00:07:27 +02:00
|
|
|
}
|
2020-04-23 11:40:06 -07:00
|
|
|
else if (arguments != null && arguments.Count > 2 && arguments[0] != null && arguments[1] != null &&
|
|
|
|
|
arguments[2] != null && arguments[0] is JsonObjectType && arguments[1] is string &&
|
|
|
|
|
arguments[2] is bool)
|
2018-05-01 00:07:27 +02:00
|
|
|
{
|
2021-08-09 07:27:32 -07:00
|
|
|
context.Write(GetDotNetType((JsonObjectType)arguments[0], (string)arguments[1], (bool)arguments[2], (string)arguments[3]));
|
2018-05-01 00:07:27 +02:00
|
|
|
}
|
2018-05-03 07:04:47 +02:00
|
|
|
else if (arguments != null && arguments.Count > 0 && arguments[0] != null)
|
2018-05-01 00:07:27 +02:00
|
|
|
{
|
|
|
|
|
context.Write($"ERROR: Expected SwaggerParameter but got {arguments[0].GetType().FullName}");
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
context.Write($"ERROR: Expected a SwaggerParameter argument but got none.");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-09 07:27:32 -07:00
|
|
|
private static string GetDotNetType(JsonObjectType jsonType, string name, bool required, string format)
|
2018-05-01 00:07:27 +02:00
|
|
|
{
|
|
|
|
|
if (name == "pretty" && !required)
|
|
|
|
|
{
|
2021-08-09 07:27:32 -07:00
|
|
|
return "string";
|
2018-05-01 00:07:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch (jsonType)
|
|
|
|
|
{
|
|
|
|
|
case JsonObjectType.Boolean:
|
|
|
|
|
if (required)
|
|
|
|
|
{
|
|
|
|
|
return "bool";
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return "bool?";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case JsonObjectType.Integer:
|
2021-08-09 07:27:32 -07:00
|
|
|
switch (format)
|
|
|
|
|
{
|
|
|
|
|
case "int64":
|
|
|
|
|
if (required)
|
|
|
|
|
{
|
|
|
|
|
return "long";
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return "long?";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
case "int32":
|
|
|
|
|
default:
|
|
|
|
|
if (required)
|
|
|
|
|
{
|
|
|
|
|
return "int";
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return "int?";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case JsonObjectType.Number:
|
2018-05-01 00:07:27 +02:00
|
|
|
if (required)
|
|
|
|
|
{
|
2021-08-09 07:27:32 -07:00
|
|
|
return "double";
|
2018-05-01 00:07:27 +02:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2021-08-09 07:27:32 -07:00
|
|
|
return "double?";
|
2018-05-01 00:07:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case JsonObjectType.String:
|
|
|
|
|
|
2021-08-09 07:27:32 -07:00
|
|
|
switch (format)
|
|
|
|
|
{
|
|
|
|
|
case "byte":
|
|
|
|
|
return "byte[]";
|
|
|
|
|
case "date-time":
|
|
|
|
|
if (required)
|
|
|
|
|
{
|
|
|
|
|
return "System.DateTime";
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return "System.DateTime?";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return "string";
|
|
|
|
|
case JsonObjectType.Object:
|
|
|
|
|
return "object";
|
2018-05-01 00:07:27 +02:00
|
|
|
default:
|
|
|
|
|
throw new NotSupportedException();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-09 07:27:32 -07:00
|
|
|
private static string GetDotNetType(JsonSchema4 schema, JsonProperty parent)
|
|
|
|
|
{
|
|
|
|
|
if (schema != null)
|
|
|
|
|
{
|
|
|
|
|
if (schema.IsArray)
|
|
|
|
|
{
|
|
|
|
|
return $"IList<{GetDotNetType(schema.Item, parent)}>";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (schema.IsDictionary && schema.AdditionalPropertiesSchema != null)
|
|
|
|
|
{
|
|
|
|
|
return $"IDictionary<string, {GetDotNetType(schema.AdditionalPropertiesSchema, parent)}>";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (schema?.Reference != null)
|
|
|
|
|
{
|
|
|
|
|
return GetClassNameForSchemaDefinition(schema.Reference);
|
|
|
|
|
}
|
|
|
|
|
else if (schema != null)
|
|
|
|
|
{
|
|
|
|
|
return GetDotNetType(schema.Type, parent.Name, parent.IsRequired, schema.Format);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return GetDotNetType(parent.Type, parent.Name, parent.IsRequired, parent.Format);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static string GetDotNetType(JsonProperty p)
|
|
|
|
|
{
|
|
|
|
|
if (p.SchemaReference != null)
|
|
|
|
|
{
|
|
|
|
|
return GetClassNameForSchemaDefinition(p.SchemaReference);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (p.IsArray)
|
|
|
|
|
{
|
|
|
|
|
// getType
|
|
|
|
|
return $"IList<{GetDotNetType(p.Item, p)}>";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (p.IsDictionary && p.AdditionalPropertiesSchema != null)
|
|
|
|
|
{
|
|
|
|
|
return $"IDictionary<string, {GetDotNetType(p.AdditionalPropertiesSchema, p)}>";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return GetDotNetType(p.Type, p.Name, p.IsRequired, p.Format);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-23 08:31:57 -07:00
|
|
|
private static void GetDotNetName(RenderContext context, IList<object> arguments, IDictionary<string, object> options,
|
2020-04-23 11:40:06 -07:00
|
|
|
RenderBlock fn, RenderBlock inverse)
|
2018-05-01 00:07:27 +02:00
|
|
|
{
|
|
|
|
|
if (arguments != null && arguments.Count > 0 && arguments[0] != null && arguments[0] is SwaggerParameter)
|
|
|
|
|
{
|
|
|
|
|
var parameter = arguments[0] as SwaggerParameter;
|
|
|
|
|
context.Write(GetDotNetName(parameter.Name));
|
2021-08-09 07:27:32 -07:00
|
|
|
|
|
|
|
|
if (arguments.Count > 1 && arguments[1] as string == "true" && !parameter.IsRequired)
|
|
|
|
|
{
|
|
|
|
|
context.Write($" = null");
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-01 00:07:27 +02:00
|
|
|
}
|
|
|
|
|
else if (arguments != null && arguments.Count > 0 && arguments[0] != null && arguments[0] is string)
|
|
|
|
|
{
|
2021-08-09 07:27:32 -07:00
|
|
|
var style = "parameter";
|
|
|
|
|
if (arguments.Count > 1)
|
|
|
|
|
{
|
|
|
|
|
style = arguments[1] as string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
context.Write(GetDotNetName((string)arguments[0], style));
|
2018-05-01 00:07:27 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-09 07:27:32 -07:00
|
|
|
private static string GetDotNetName(string jsonName, string style = "parameter")
|
2018-05-01 00:07:27 +02:00
|
|
|
{
|
2021-08-09 07:27:32 -07:00
|
|
|
switch (style)
|
2018-05-01 00:07:27 +02:00
|
|
|
{
|
2021-08-09 07:27:32 -07:00
|
|
|
case "parameter":
|
|
|
|
|
if (jsonName == "namespace")
|
|
|
|
|
{
|
|
|
|
|
return "namespaceParameter";
|
|
|
|
|
}
|
|
|
|
|
else if (jsonName == "continue")
|
|
|
|
|
{
|
|
|
|
|
return "continueParameter";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case "fieldctor":
|
|
|
|
|
if (jsonName == "namespace")
|
|
|
|
|
{
|
|
|
|
|
return "namespaceProperty";
|
|
|
|
|
}
|
|
|
|
|
else if (jsonName == "continue")
|
|
|
|
|
{
|
|
|
|
|
return "continueProperty";
|
|
|
|
|
}
|
|
|
|
|
else if (jsonName == "__referencePath")
|
|
|
|
|
{
|
|
|
|
|
return "refProperty";
|
|
|
|
|
}
|
|
|
|
|
else if (jsonName == "default")
|
|
|
|
|
{
|
|
|
|
|
return "defaultProperty";
|
|
|
|
|
}
|
|
|
|
|
else if (jsonName == "operator")
|
|
|
|
|
{
|
|
|
|
|
return "operatorProperty";
|
|
|
|
|
}
|
|
|
|
|
else if (jsonName == "$schema")
|
|
|
|
|
{
|
|
|
|
|
return "schema";
|
|
|
|
|
}
|
|
|
|
|
else if (jsonName == "enum")
|
|
|
|
|
{
|
|
|
|
|
return "enumProperty";
|
|
|
|
|
}
|
|
|
|
|
else if (jsonName == "object")
|
|
|
|
|
{
|
|
|
|
|
return "objectProperty";
|
|
|
|
|
}
|
|
|
|
|
else if (jsonName == "readOnly")
|
|
|
|
|
{
|
|
|
|
|
return "readOnlyProperty";
|
|
|
|
|
}
|
|
|
|
|
else if (jsonName == "from")
|
|
|
|
|
{
|
|
|
|
|
return "fromProperty";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (jsonName.Contains("-"))
|
|
|
|
|
{
|
|
|
|
|
return jsonName.ToCamelCase();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
case "field":
|
|
|
|
|
return GetDotNetName(jsonName, "fieldctor").ToPascalCase();
|
|
|
|
|
|
2018-05-01 00:07:27 +02:00
|
|
|
}
|
|
|
|
|
|
2021-08-09 07:27:32 -07:00
|
|
|
return jsonName.ToCamelCase();
|
2018-05-01 00:07:27 +02:00
|
|
|
}
|
|
|
|
|
|
2020-10-23 08:31:57 -07:00
|
|
|
private static void GetPathExpression(RenderContext context, IList<object> arguments,
|
2020-04-23 11:40:06 -07:00
|
|
|
IDictionary<string, object> options, RenderBlock fn, RenderBlock inverse)
|
2018-05-01 00:07:27 +02:00
|
|
|
{
|
2020-04-23 11:40:06 -07:00
|
|
|
if (arguments != null && arguments.Count > 0 && arguments[0] != null &&
|
|
|
|
|
arguments[0] is SwaggerOperationDescription)
|
2018-05-01 00:07:27 +02:00
|
|
|
{
|
|
|
|
|
var operation = arguments[0] as SwaggerOperationDescription;
|
|
|
|
|
context.Write(GetPathExpression(operation));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static string GetPathExpression(SwaggerOperationDescription operation)
|
|
|
|
|
{
|
2020-11-22 14:52:09 -08:00
|
|
|
var pathExpression = operation.Path;
|
2018-05-30 04:42:34 +02:00
|
|
|
|
2020-11-22 14:52:09 -08:00
|
|
|
if (pathExpression.StartsWith("/", StringComparison.InvariantCulture))
|
2018-05-30 04:42:34 +02:00
|
|
|
{
|
|
|
|
|
pathExpression = pathExpression.Substring(1);
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-09 07:27:32 -07:00
|
|
|
pathExpression = pathExpression.Replace("{namespace}", "{namespaceParameter}");
|
2018-05-01 00:07:27 +02:00
|
|
|
return pathExpression;
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-23 08:31:57 -07:00
|
|
|
private static void GetApiVersion(RenderContext context, IList<object> arguments, IDictionary<string, object> options,
|
2020-04-23 11:40:06 -07:00
|
|
|
RenderBlock fn, RenderBlock inverse)
|
2018-05-03 07:04:47 +02:00
|
|
|
{
|
|
|
|
|
if (arguments != null && arguments.Count > 0 && arguments[0] != null && arguments[0] is JsonSchema4)
|
|
|
|
|
{
|
|
|
|
|
context.Write(GetApiVersion(arguments[0] as JsonSchema4));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-09 07:27:32 -07:00
|
|
|
private static void GetReturnType(RenderContext context, IList<object> arguments, IDictionary<string, object> options,
|
|
|
|
|
RenderBlock fn, RenderBlock inverse)
|
|
|
|
|
{
|
|
|
|
|
var operation = arguments?.FirstOrDefault() as SwaggerOperation;
|
|
|
|
|
if (operation != null)
|
|
|
|
|
{
|
|
|
|
|
string style = null;
|
|
|
|
|
if (arguments.Count > 1)
|
|
|
|
|
{
|
|
|
|
|
style = arguments[1] as string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
context.Write(GetReturnType(operation, style));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static string GetReturnType(SwaggerOperation operation, string sytle)
|
|
|
|
|
{
|
|
|
|
|
SwaggerResponse response;
|
|
|
|
|
|
|
|
|
|
if (!operation.Responses.TryGetValue("200", out response))
|
|
|
|
|
{
|
|
|
|
|
operation.Responses.TryGetValue("201", out response);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
string toType()
|
|
|
|
|
{
|
|
|
|
|
if (response != null)
|
|
|
|
|
{
|
|
|
|
|
var schema = response.Schema;
|
|
|
|
|
|
|
|
|
|
if (schema == null)
|
|
|
|
|
{
|
|
|
|
|
return "";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (schema.Format == "file")
|
|
|
|
|
{
|
|
|
|
|
return "Stream";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (schema.Reference != null)
|
|
|
|
|
{
|
|
|
|
|
return GetClassNameForSchemaDefinition(schema.Reference);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return GetDotNetType(schema.Type, "", true, schema.Format);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return "";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var t = toType();
|
|
|
|
|
|
|
|
|
|
switch (sytle)
|
|
|
|
|
{
|
|
|
|
|
case "<>":
|
|
|
|
|
if (t != "")
|
|
|
|
|
{
|
|
|
|
|
return "<" + t + ">";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
case "void":
|
|
|
|
|
if (t == "")
|
|
|
|
|
{
|
|
|
|
|
return "void";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
case "return":
|
|
|
|
|
if (t != "")
|
|
|
|
|
{
|
|
|
|
|
return "return";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
case "_result.Body":
|
|
|
|
|
if (t != "")
|
|
|
|
|
{
|
|
|
|
|
return "return _result.Body";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return t;
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-03 07:04:47 +02:00
|
|
|
private static string GetApiVersion(JsonSchema4 definition)
|
|
|
|
|
{
|
|
|
|
|
var groupVersionKindElements = (object[])definition.ExtensionData["x-kubernetes-group-version-kind"];
|
|
|
|
|
var groupVersionKind = (Dictionary<string, object>)groupVersionKindElements[0];
|
|
|
|
|
|
|
|
|
|
return groupVersionKind["version"] as string;
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-09 07:27:32 -07:00
|
|
|
private static void IfKindIs(RenderContext context, IList<object> arguments, IDictionary<string, object> options,
|
|
|
|
|
RenderBlock fn, RenderBlock inverse)
|
|
|
|
|
{
|
|
|
|
|
var parameter = arguments?.FirstOrDefault() as SwaggerParameter;
|
|
|
|
|
if (parameter != null)
|
|
|
|
|
{
|
|
|
|
|
string kind = null;
|
|
|
|
|
if (arguments.Count > 1)
|
|
|
|
|
{
|
|
|
|
|
kind = arguments[1] as string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (kind == "query" && parameter.Kind == SwaggerParameterKind.Query)
|
|
|
|
|
{
|
|
|
|
|
fn(null);
|
|
|
|
|
}
|
|
|
|
|
else if (kind == "path" && parameter.Kind == SwaggerParameterKind.Path)
|
|
|
|
|
{
|
|
|
|
|
fn(null);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static void AddCurly(RenderContext context, IList<object> arguments, IDictionary<string, object> options,
|
|
|
|
|
RenderBlock fn, RenderBlock inverse)
|
|
|
|
|
{
|
|
|
|
|
var s = arguments?.FirstOrDefault() as string;
|
|
|
|
|
if (s != null)
|
|
|
|
|
{
|
|
|
|
|
context.Write("{" + s + "}");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static void GetRequestMethod(RenderContext context, IList<object> arguments, IDictionary<string, object> options,
|
|
|
|
|
RenderBlock fn, RenderBlock inverse)
|
|
|
|
|
{
|
|
|
|
|
var s = arguments?.FirstOrDefault() as SwaggerOperationMethod?;
|
|
|
|
|
if (s != null)
|
|
|
|
|
{
|
|
|
|
|
context.Write(s.ToString().ToUpper());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static void IfReturnType(RenderContext context, IList<object> arguments, IDictionary<string, object> options,
|
|
|
|
|
RenderBlock fn, RenderBlock inverse)
|
|
|
|
|
{
|
|
|
|
|
var operation = arguments?.FirstOrDefault() as SwaggerOperation;
|
|
|
|
|
if (operation != null)
|
|
|
|
|
{
|
|
|
|
|
string type = null;
|
|
|
|
|
if (arguments.Count > 1)
|
|
|
|
|
{
|
|
|
|
|
type = arguments[1] as string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var rt = GetReturnType(operation, "void");
|
|
|
|
|
if (type == "any" && rt != "void")
|
|
|
|
|
{
|
|
|
|
|
fn(null);
|
|
|
|
|
}
|
|
|
|
|
else if (type == "stream" && rt == "Stream")
|
|
|
|
|
{
|
|
|
|
|
fn(null);
|
|
|
|
|
}
|
|
|
|
|
else if (type == "obj" && rt != "void" && rt != "Stream")
|
|
|
|
|
{
|
|
|
|
|
fn(null);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static void EscapeDataString(RenderContext context, IList<object> arguments, IDictionary<string, object> options,
|
|
|
|
|
RenderBlock fn, RenderBlock inverse)
|
|
|
|
|
{
|
|
|
|
|
var name = GetDotNetName(arguments[0] as string);
|
|
|
|
|
var type = arguments[1] as JsonObjectType?;
|
|
|
|
|
|
|
|
|
|
switch (type)
|
|
|
|
|
{
|
|
|
|
|
case JsonObjectType.String:
|
|
|
|
|
context.Write($"System.Uri.EscapeDataString({name})");
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
context.Write($"System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject({name}, SerializationSettings).Trim('\"'))");
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static void GetModelCtorParam(RenderContext context, IList<object> arguments, IDictionary<string, object> options,
|
|
|
|
|
RenderBlock fn, RenderBlock inverse)
|
|
|
|
|
{
|
|
|
|
|
var schema = arguments[0] as JsonSchema4;
|
|
|
|
|
|
|
|
|
|
if (schema != null)
|
|
|
|
|
{
|
|
|
|
|
context.Write(string.Join(", ", schema.Properties.Values
|
|
|
|
|
.OrderBy(p => !p.IsRequired)
|
|
|
|
|
.Select(p =>
|
|
|
|
|
{
|
|
|
|
|
string sp = $"{GetDotNetType(p)} {GetDotNetName(p.Name, "fieldctor")}";
|
|
|
|
|
|
|
|
|
|
if (!p.IsRequired)
|
|
|
|
|
{
|
|
|
|
|
sp = $"{sp} = null";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return sp;
|
|
|
|
|
})));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static void IfType(RenderContext context, IList<object> arguments, IDictionary<string, object> options,
|
|
|
|
|
RenderBlock fn, RenderBlock inverse)
|
|
|
|
|
{
|
|
|
|
|
var property = arguments?.FirstOrDefault() as JsonProperty;
|
|
|
|
|
if (property != null)
|
|
|
|
|
{
|
|
|
|
|
string type = null;
|
|
|
|
|
if (arguments.Count > 1)
|
|
|
|
|
{
|
|
|
|
|
type = arguments[1] as string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (type == "object" && property.Reference != null && !property.IsArray && property.AdditionalPropertiesSchema == null)
|
|
|
|
|
{
|
|
|
|
|
fn(null);
|
|
|
|
|
}
|
|
|
|
|
else if (type == "objectarray" && property.IsArray && property.Item?.Reference != null)
|
|
|
|
|
{
|
|
|
|
|
fn(null);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2018-05-01 00:07:27 +02:00
|
|
|
private static string ToPascalCase(string name)
|
|
|
|
|
{
|
2018-05-03 07:04:47 +02:00
|
|
|
if (string.IsNullOrWhiteSpace(name))
|
|
|
|
|
{
|
|
|
|
|
return name;
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-01 00:07:27 +02:00
|
|
|
return char.ToUpper(name[0]) + name.Substring(1);
|
|
|
|
|
}
|
2021-08-09 07:27:32 -07:00
|
|
|
|
|
|
|
|
public static IEnumerable<string> WordWrap(string text, int width)
|
|
|
|
|
{
|
|
|
|
|
var lines = text.Split(new[] { "\r\n", "\r", "\n" }, StringSplitOptions.None);
|
|
|
|
|
foreach (var line in lines)
|
|
|
|
|
{
|
|
|
|
|
var processedLine = line.Trim();
|
|
|
|
|
|
|
|
|
|
// yield empty lines as they are (probably) intensional
|
|
|
|
|
if (processedLine.Length == 0)
|
|
|
|
|
{
|
|
|
|
|
yield return processedLine;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// feast on the line until it's gone
|
|
|
|
|
while (processedLine.Length > 0)
|
|
|
|
|
{
|
|
|
|
|
// determine potential wrapping points
|
|
|
|
|
var whitespacePositions = Enumerable
|
|
|
|
|
.Range(0, processedLine.Length)
|
|
|
|
|
.Where(i => char.IsWhiteSpace(processedLine[i]))
|
|
|
|
|
.Concat(new[] { processedLine.Length })
|
|
|
|
|
.Cast<int?>();
|
|
|
|
|
var preWidthWrapAt = whitespacePositions.LastOrDefault(i => i <= width);
|
|
|
|
|
var postWidthWrapAt = whitespacePositions.FirstOrDefault(i => i > width);
|
|
|
|
|
|
|
|
|
|
// choose preferred wrapping point
|
|
|
|
|
var wrapAt = preWidthWrapAt ?? postWidthWrapAt ?? processedLine.Length;
|
|
|
|
|
|
|
|
|
|
// wrap
|
|
|
|
|
yield return processedLine.Substring(0, wrapAt);
|
|
|
|
|
processedLine = processedLine.Substring(wrapAt).Trim();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-05-01 00:07:27 +02:00
|
|
|
}
|
|
|
|
|
}
|