-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathCodeGenController.cs
85 lines (75 loc) · 2.68 KB
/
CodeGenController.cs
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
#if DEBUG //This controller is not needed in production release, since the client API should be generated during development of the Web Api.
using Fonlow.CodeDom.Web;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.ApiExplorer;
using System.Net;
namespace Fonlow.WebApiClientGen
{
/// <summary>
/// For CodeGen triggered by a client call.
/// </summary>
[ApiExplorerSettings(IgnoreApi = true)]
[ApiController]
[Route("api/[controller]")]
public class CodeGenController : ControllerBase
{
private readonly IApiDescriptionGroupCollectionProvider apiExplorer;
private readonly string webRootPath;
/// <summary>
/// For injecting some environment config by the run time.
/// </summary>
/// <param name="apiExplorer"></param>
/// <param name="hostingEnvironment"></param>
public CodeGenController(IApiDescriptionGroupCollectionProvider apiExplorer, IWebHostEnvironment hostingEnvironment)
{
this.apiExplorer = apiExplorer;
this.webRootPath = hostingEnvironment.WebRootPath;
}
/// <summary>
/// Trigger the API to generate WebApiClientAuto.cs for an established client API project.
/// </summary>
/// <param name="settings"></param>
/// <returns>OK if OK</returns>
[HttpPost]
public IActionResult TriggerCodeGen([FromBody] CodeGenSettings settings)
{
if (settings == null)
return BadRequest("No settings");
if (settings.ClientApiOutputs == null)
return BadRequest("No settings/ClientApiOutputs");
Fonlow.Web.Meta.WebApiDescription[] webApiDescriptions;
try
{
ApiDescription[] descriptions = ApiExplorerHelper.GetApiDescriptions(apiExplorer);
webApiDescriptions = descriptions.Select(d => Fonlow.Web.Meta.MetaTransform.GetWebApiDescription(d)).OrderBy(d => d.ActionDescriptor.ActionName).ToArray();
}
catch (Fonlow.Web.Meta.CodeGenException e)
{
Console.Error.WriteLine(e.Message);
return StatusCode((int)HttpStatusCode.InternalServerError, e.Message);
}
catch (System.InvalidOperationException e)
{
Console.Error.WriteLine(e.Message);
return StatusCode((int)HttpStatusCode.InternalServerError, e.Message);
}
if (!settings.ClientApiOutputs.CamelCase.HasValue)
{
settings.ClientApiOutputs.CamelCase = true;
}
try
{
CodeGen.GenerateClientAPIs(this.webRootPath, settings, webApiDescriptions);
}
catch (Fonlow.Web.Meta.CodeGenException e)
{
string msg = e.Message + (string.IsNullOrEmpty(e.Description) ? string.Empty : (" : " + e.Description));
Console.Error.WriteLine(msg);
return BadRequest(msg);
}
return Ok("Done");
}
}
}
#endif