forked from loafle/openapi-generator-original
103 lines
3.7 KiB
C#
103 lines
3.7 KiB
C#
/*
|
|
* Swagger Petstore
|
|
*
|
|
* This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.
|
|
*
|
|
* OpenAPI spec version: 1.0.0
|
|
* Contact: apiteam@swagger.io
|
|
* Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
*
|
|
* 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 System.IO;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using System.Xml.XPath;
|
|
using Microsoft.AspNetCore.Builder;
|
|
using Microsoft.AspNetCore.Hosting;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Logging;
|
|
using Newtonsoft.Json.Serialization;
|
|
using Swashbuckle.Swagger.Model;
|
|
using Swashbuckle.SwaggerGen.Annotations;
|
|
|
|
namespace IO.Swagger
|
|
{
|
|
public class Startup
|
|
{
|
|
private readonly IHostingEnvironment _hostingEnv;
|
|
|
|
public IConfigurationRoot Configuration { get; }
|
|
|
|
public Startup(IHostingEnvironment env)
|
|
{
|
|
_hostingEnv = env;
|
|
|
|
var builder = new ConfigurationBuilder()
|
|
.SetBasePath(env.ContentRootPath)
|
|
.AddJsonFile("appsettings.json", optional: true, reloadOnChange: true)
|
|
.AddJsonFile($"appsettings.{env.EnvironmentName}.json", optional: true)
|
|
.AddEnvironmentVariables();
|
|
Configuration = builder.Build();
|
|
}
|
|
|
|
|
|
// This method gets called by the runtime. Use this method to add services to the container.
|
|
public void ConfigureServices(IServiceCollection services)
|
|
{
|
|
// Add framework services.
|
|
services.AddMvc()
|
|
.AddJsonOptions(
|
|
opts => { opts.SerializerSettings.ContractResolver = new CamelCasePropertyNamesContractResolver(); });
|
|
|
|
services.AddSwaggerGen();
|
|
|
|
services.ConfigureSwaggerGen(options =>
|
|
{
|
|
options.SingleApiVersion(new Info
|
|
{
|
|
Version = "v1",
|
|
Title = "IO.Swagger",
|
|
Description = "IO.Swagger (ASP.NET Core 1.0)"
|
|
});
|
|
|
|
options.DescribeAllEnumsAsStrings();
|
|
|
|
var comments = new XPathDocument($"{AppContext.BaseDirectory}{Path.DirectorySeparatorChar}{_hostingEnv.ApplicationName}.xml");
|
|
options.OperationFilter<XmlCommentsOperationFilter>(comments);
|
|
options.ModelFilter<XmlCommentsModelFilter>(comments);
|
|
});
|
|
|
|
}
|
|
|
|
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
|
|
public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
|
|
{
|
|
loggerFactory.AddConsole(Configuration.GetSection("Logging"));
|
|
loggerFactory.AddDebug();
|
|
|
|
app.UseMvc();
|
|
|
|
app.UseDefaultFiles();
|
|
app.UseStaticFiles();
|
|
|
|
app.UseSwagger();
|
|
app.UseSwaggerUi();
|
|
}
|
|
}
|
|
}
|