Skip to content

Commit 334ed50

Browse files
committed
1 parent fd84e27 commit 334ed50

17 files changed

+1297
-0
lines changed

.gitignore

+439
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.30907.101
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lesson16Webserver", "Lesson16Webserver\Lesson16Webserver.csproj", "{85DE9B73-9071-4787-8CAB-6F8032359FCE}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{85DE9B73-9071-4787-8CAB-6F8032359FCE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{85DE9B73-9071-4787-8CAB-6F8032359FCE}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{85DE9B73-9071-4787-8CAB-6F8032359FCE}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{85DE9B73-9071-4787-8CAB-6F8032359FCE}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {AF1BB660-717B-460B-84B0-DF94275A7FEA}
24+
EndGlobalSection
25+
EndGlobal
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
using Microsoft.AspNetCore.Http;
2+
using Microsoft.AspNetCore.Mvc;
3+
using System;
4+
using System.Collections.Generic;
5+
using System.Linq;
6+
using System.Threading.Tasks;
7+
using Lesson16Webserver.ViewModels;
8+
using Microsoft.Extensions.Logging;
9+
10+
namespace Lesson16Webserver.Controllers
11+
{
12+
[Route("api/[controller]")]
13+
[ApiController]
14+
public class BonsaiController : ControllerBase
15+
{
16+
private readonly ILogger<BonsaiController> _logger;
17+
private readonly InMemStore<Bonsai> _store;
18+
private readonly InMemStore<CheckoutOption> _options;
19+
20+
public BonsaiController(ILogger<BonsaiController> logger, InMemStore<Bonsai> store, InMemStore<CheckoutOption> options)
21+
{
22+
_logger = logger;
23+
_store = store;
24+
_options = options;
25+
}
26+
27+
[HttpGet]
28+
public IEnumerable<Bonsai> Get()
29+
{
30+
return _store.GetAll();
31+
}
32+
33+
[HttpGet]
34+
[Route("Options")]
35+
public IEnumerable<CheckoutOption> GetOptions()
36+
{
37+
return _options.GetAll();
38+
}
39+
40+
[HttpGet]
41+
[Route("{id}")]
42+
public Bonsai GetItem(int id)
43+
{
44+
return _store.Get(id);
45+
}
46+
}
47+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
using Microsoft.AspNetCore.Http;
2+
using Microsoft.AspNetCore.Mvc;
3+
using System;
4+
using System.Collections.Generic;
5+
using System.Linq;
6+
using System.Threading.Tasks;
7+
using Lesson16Webserver.ViewModels;
8+
using Microsoft.Extensions.Logging;
9+
10+
namespace Lesson16Webserver.Controllers
11+
{
12+
[Route("api/[controller]")]
13+
[ApiController]
14+
public class ClientController : ControllerBase
15+
{
16+
private readonly ILogger<ClientController> _logger;
17+
private readonly InMemStore<Client> _store;
18+
19+
public ClientController(ILogger<ClientController> logger, InMemStore<Client> store)
20+
{
21+
_logger = logger;
22+
_store = store;
23+
}
24+
25+
[HttpGet]
26+
public IEnumerable<Client> Get()
27+
{
28+
return _store.GetAll();
29+
}
30+
31+
[HttpGet]
32+
[Route("saveWithGet")]
33+
public Client GetSave(string email, string password, string name)
34+
{
35+
if(!email.Contains("@"))
36+
throw new Exception("Email must have an @");
37+
return _store.Save(new Client(email, password, name));
38+
}
39+
40+
[HttpPost]
41+
[Route("save")]
42+
public Client PostSave(Client item)
43+
{
44+
if (!item.Email.Contains("@"))
45+
throw new Exception("Email must have an @");
46+
return _store.Save(item);
47+
}
48+
49+
50+
[HttpGet]
51+
[Route("{id}")]
52+
public Client GetItem(int id)
53+
{
54+
return _store.Get(id);
55+
}
56+
}
57+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
using Microsoft.AspNetCore.Mvc;
2+
using Microsoft.Extensions.Logging;
3+
using System;
4+
using System.Collections.Generic;
5+
using System.Linq;
6+
using System.Threading.Tasks;
7+
using Lesson16Webserver.ViewModels;
8+
9+
namespace Lesson16Webserver.Controllers
10+
{
11+
[ApiController]
12+
[Route("api/[controller]")]
13+
public class MessageController : ControllerBase
14+
{
15+
private readonly ILogger<MessageController> _logger;
16+
private readonly InMemStore<Message> _messageStore;
17+
18+
public MessageController(ILogger<MessageController> logger, InMemStore<Message> messageStore)
19+
{
20+
_logger = logger;
21+
_messageStore = messageStore;
22+
}
23+
24+
[HttpGet]
25+
public IEnumerable<Message> Get()
26+
{
27+
return _messageStore.GetAll();
28+
}
29+
30+
31+
[HttpGet]
32+
[Route("saveWithGet")]
33+
public Message SaveMessage(string to, string say)
34+
{
35+
return _messageStore.Save(new Message()
36+
{
37+
Say = say,
38+
To = to
39+
});
40+
}
41+
42+
[HttpPost]
43+
[Route("save")]
44+
public Message PostMessage(Message item)
45+
{
46+
return _messageStore.Save(item);
47+
}
48+
49+
[HttpGet]
50+
[Route("{id}")]
51+
public Message GetSave(int id)
52+
{
53+
return _messageStore.Get(id);
54+
}
55+
}
56+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
using Microsoft.AspNetCore.Http;
2+
using Microsoft.AspNetCore.Mvc;
3+
using System;
4+
using System.Collections.Generic;
5+
using System.Linq;
6+
using System.Threading.Tasks;
7+
using Lesson16Webserver.ViewModels;
8+
using Microsoft.Extensions.Logging;
9+
10+
namespace Lesson16Webserver.Controllers
11+
{
12+
[Route("api/[controller]/simple")]
13+
[ApiController]
14+
public class OrderController : ControllerBase
15+
{
16+
private readonly ILogger<OrderController> _logger;
17+
private readonly InMemStore<SimpleOrder> _simpleOrders;
18+
19+
public OrderController(ILogger<OrderController> logger, InMemStore<SimpleOrder> simpleOrders)
20+
{
21+
_logger = logger;
22+
_simpleOrders = simpleOrders;
23+
}
24+
25+
26+
[HttpGet]
27+
[Route("all")]
28+
public IEnumerable<SimpleOrder> Get()
29+
{
30+
return _simpleOrders.GetAll();
31+
}
32+
33+
[HttpGet]
34+
[Route("saveWithGet")]
35+
public SimpleOrder GetSaveSimple(string productName, decimal productPrice, string clientName, int qty)
36+
{
37+
return _simpleOrders.Save(new SimpleOrder(productName, productPrice, clientName, qty));
38+
}
39+
40+
[HttpPost]
41+
[Route("save")]
42+
public SimpleOrder PostSave(SimpleOrder item)
43+
{
44+
return _simpleOrders.Save(item);
45+
}
46+
47+
48+
[HttpGet]
49+
[Route("order/{id}")]
50+
public SimpleOrder GetOrder(int id)
51+
{
52+
return _simpleOrders.Get(id);
53+
}
54+
55+
[HttpGet]
56+
[Route("client")]
57+
public IEnumerable<SimpleOrder> GetOrdersForClient(string clientName)
58+
{
59+
return _simpleOrders.GetAll().Where(x => x.ClientName == clientName);
60+
}
61+
}
62+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
2+
3+
<PropertyGroup>
4+
<TargetFramework>netcoreapp3.1</TargetFramework>
5+
</PropertyGroup>
6+
7+
<ItemGroup>
8+
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.0.7" />
9+
</ItemGroup>
10+
11+
12+
</Project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
using Microsoft.AspNetCore.Hosting;
2+
using Microsoft.Extensions.Configuration;
3+
using Microsoft.Extensions.Hosting;
4+
using Microsoft.Extensions.Logging;
5+
using System;
6+
using System.Collections.Generic;
7+
using System.Linq;
8+
using System.Threading.Tasks;
9+
10+
namespace Lesson16Webserver
11+
{
12+
public class Program
13+
{
14+
public static void Main(string[] args)
15+
{
16+
CreateHostBuilder(args).Build().Run();
17+
}
18+
19+
public static IHostBuilder CreateHostBuilder(string[] args) =>
20+
Host.CreateDefaultBuilder(args)
21+
.ConfigureWebHostDefaults(webBuilder =>
22+
{
23+
webBuilder.UseStartup<Startup>();
24+
});
25+
}
26+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
using Lesson16Webserver.ViewModels;
2+
using Microsoft.AspNetCore.Builder;
3+
using Microsoft.AspNetCore.Hosting;
4+
using Microsoft.Extensions.Configuration;
5+
using Microsoft.Extensions.DependencyInjection;
6+
using Microsoft.OpenApi.Models;
7+
8+
namespace Lesson16Webserver
9+
{
10+
public class Startup
11+
{
12+
public Startup(IConfiguration configuration)
13+
{
14+
Configuration = configuration;
15+
}
16+
17+
public IConfiguration Configuration { get; }
18+
19+
// This method gets called by the runtime. Use this method to add services to the container.
20+
public void ConfigureServices(IServiceCollection services)
21+
{
22+
services.AddControllers();
23+
services.AddSwaggerGen(c =>
24+
{
25+
c.SwaggerDoc("v1", new OpenApiInfo { Title = "My API", Version = "v1" });
26+
});
27+
services.AddSingleton<InMemStore<Message>>(x => new InMemStore<Message>(Message.TestData()));
28+
services.AddSingleton<InMemStore<Client>>(x => new InMemStore<Client>(Client.Init()));
29+
services.AddSingleton<InMemStore<Bonsai>>(x => new InMemStore<Bonsai>(Bonsai.Init()));
30+
services.AddSingleton<InMemStore<CheckoutOption>>(x => new InMemStore<CheckoutOption>(CheckoutOption.Init()));
31+
services.AddSingleton<InMemStore<SimpleOrder>>(x => new InMemStore<SimpleOrder>(SimpleOrder.Init()));
32+
}
33+
34+
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
35+
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
36+
{
37+
38+
app.UseDeveloperExceptionPage();
39+
40+
app.UseSwagger();
41+
app.UseSwaggerUI(c =>
42+
{
43+
c.SwaggerEndpoint("/swagger/v1/swagger.json", "My API V1");
44+
});
45+
46+
app.UseHttpsRedirection();
47+
48+
app.UseRouting();
49+
50+
app.UseEndpoints(endpoints =>
51+
{
52+
endpoints.MapControllers();
53+
});
54+
}
55+
}
56+
}

0 commit comments

Comments
 (0)