2021-02-02 19:01:29 -05:00
|
|
|
using Demo.AsyncProvider;
|
2021-02-02 12:19:59 -05:00
|
|
|
using Demo.Commands;
|
2021-02-02 19:01:29 -05:00
|
|
|
using Demo.DynamicQueries;
|
2021-02-02 01:05:48 -05:00
|
|
|
using Demo.Queries;
|
2021-02-02 12:19:59 -05:00
|
|
|
using FluentValidation;
|
|
|
|
using FluentValidation.AspNetCore;
|
2021-02-02 01:05:48 -05:00
|
|
|
using Microsoft.AspNetCore.Builder;
|
|
|
|
using Microsoft.AspNetCore.Hosting;
|
|
|
|
using Microsoft.Extensions.Configuration;
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
using Microsoft.Extensions.Hosting;
|
|
|
|
using PoweredSoft.CQRS;
|
|
|
|
using PoweredSoft.CQRS.Abstractions;
|
|
|
|
using PoweredSoft.CQRS.AspNetCore.Mvc;
|
2021-02-02 19:01:29 -05:00
|
|
|
using PoweredSoft.CQRS.DynamicQuery;
|
|
|
|
using PoweredSoft.CQRS.DynamicQuery.Abstractions;
|
|
|
|
using PoweredSoft.CQRS.DynamicQuery.AspNetCore;
|
2021-02-03 20:28:56 -05:00
|
|
|
using PoweredSoft.CQRS.GraphQL.FluentValidation;
|
2021-02-03 19:51:23 -05:00
|
|
|
using PoweredSoft.CQRS.GraphQL.HotChocolate;
|
2021-02-02 19:01:29 -05:00
|
|
|
using PoweredSoft.Data;
|
|
|
|
using PoweredSoft.Data.Core;
|
|
|
|
using PoweredSoft.DynamicQuery;
|
2021-02-02 01:05:48 -05:00
|
|
|
using System.Linq;
|
2021-02-04 13:51:31 -05:00
|
|
|
using PoweredSoft.CQRS.GraphQL.HotChocolate.DynamicQuery;
|
2021-02-04 21:00:24 -05:00
|
|
|
using PoweredSoft.CQRS.Abstractions.Security;
|
|
|
|
using Demo.Security;
|
2021-02-05 13:06:34 -05:00
|
|
|
using Microsoft.AspNet.OData.Extensions;
|
2021-08-11 17:00:22 -04:00
|
|
|
using PoweredSoft.CQRS.FluentValidation;
|
2021-02-02 01:05:48 -05:00
|
|
|
|
|
|
|
namespace Demo
|
2021-02-04 13:51:31 -05:00
|
|
|
{
|
2021-02-02 01:05:48 -05:00
|
|
|
public class Startup
|
|
|
|
{
|
|
|
|
public Startup(IConfiguration configuration)
|
|
|
|
{
|
|
|
|
Configuration = configuration;
|
|
|
|
}
|
|
|
|
|
|
|
|
public IConfiguration Configuration { get; }
|
|
|
|
|
|
|
|
// This method gets called by the runtime. Use this method to add services to the container.
|
|
|
|
public void ConfigureServices(IServiceCollection services)
|
|
|
|
{
|
|
|
|
AddQueries(services);
|
2021-02-02 19:01:29 -05:00
|
|
|
AddDynamicQueries(services);
|
2021-02-02 12:19:59 -05:00
|
|
|
AddCommands(services);
|
2021-02-02 01:05:48 -05:00
|
|
|
|
2021-02-04 21:00:24 -05:00
|
|
|
services.AddHttpContextAccessor();
|
|
|
|
services.AddTransient<IQueryAuthorizationService, CommandAndQueryAuthorizationService>();
|
|
|
|
services.AddTransient<ICommandAuthorizationService, CommandAndQueryAuthorizationService>();
|
2021-02-02 19:01:29 -05:00
|
|
|
services.AddTransient<IAsyncQueryableHandlerService, InMemoryQueryableHandler>();
|
|
|
|
services.AddPoweredSoftDataServices();
|
|
|
|
services.AddPoweredSoftDynamicQuery();
|
|
|
|
|
2021-02-05 13:06:34 -05:00
|
|
|
services.AddPoweredSoftCQRS();
|
|
|
|
services.AddOData();
|
2021-02-03 20:28:56 -05:00
|
|
|
|
2021-02-02 01:05:48 -05:00
|
|
|
services
|
|
|
|
.AddControllers()
|
2021-02-02 12:22:58 -05:00
|
|
|
.AddPoweredSoftQueries()
|
|
|
|
.AddPoweredSoftCommands()
|
2021-02-02 19:01:29 -05:00
|
|
|
.AddPoweredSoftDynamicQueries()
|
2021-02-05 13:06:34 -05:00
|
|
|
.AddPoweredSoftODataQueries()
|
2021-02-02 12:19:59 -05:00
|
|
|
.AddFluentValidation();
|
2021-02-02 01:05:48 -05:00
|
|
|
|
2021-02-03 19:51:23 -05:00
|
|
|
services
|
|
|
|
.AddGraphQLServer()
|
2021-02-05 11:59:53 -05:00
|
|
|
.AddProjections()
|
2021-02-03 19:51:23 -05:00
|
|
|
.AddQueryType(d => d.Name("Query"))
|
|
|
|
.AddPoweredSoftQueries()
|
2021-02-04 13:51:31 -05:00
|
|
|
.AddPoweredSoftDynamicQueries()
|
2021-02-03 19:51:23 -05:00
|
|
|
.AddMutationType(d => d.Name("Mutation"))
|
|
|
|
.AddPoweredSoftMutations();
|
|
|
|
|
2021-02-03 20:28:56 -05:00
|
|
|
services.AddPoweredSoftGraphQLFluentValidation();
|
2021-02-03 19:51:23 -05:00
|
|
|
|
2021-02-03 20:28:56 -05:00
|
|
|
services.AddSwaggerGen();
|
2021-02-07 00:12:41 -05:00
|
|
|
services.AddCors();
|
2021-02-02 01:05:48 -05:00
|
|
|
}
|
|
|
|
|
2021-02-02 19:01:29 -05:00
|
|
|
private void AddDynamicQueries(IServiceCollection services)
|
|
|
|
{
|
|
|
|
services.AddTransient<IQueryableProvider<Contact>, ContactQueryableProvider>();
|
2021-02-02 19:51:07 -05:00
|
|
|
services.AddDynamicQuery<Contact>();
|
2021-02-02 20:06:56 -05:00
|
|
|
services.AddDynamicQueryWithParams<Contact, SearchContactParams>(name: "SearchContacts")
|
|
|
|
.AddAlterQueryableWithParams<Contact, SearchContactParams, SearchContactParamsService>();
|
2021-02-03 01:26:37 -05:00
|
|
|
|
|
|
|
services
|
|
|
|
.AddTransient<IQueryableProvider<Person>, PersonQueryableProvider>()
|
2021-02-03 10:50:28 -05:00
|
|
|
.AddDynamicQuery<Person, PersonModel>(name: "People")
|
|
|
|
.AddDynamicQueryInterceptors<Person, PersonModel, PersonConvertInterceptor, PersonOptimizationInterceptor>();
|
2021-02-02 19:01:29 -05:00
|
|
|
}
|
|
|
|
|
2021-02-02 12:19:59 -05:00
|
|
|
private void AddCommands(IServiceCollection services)
|
|
|
|
{
|
|
|
|
services.AddCommand<CreatePersonCommand, CreatePersonCommandHandler>();
|
|
|
|
services.AddTransient<IValidator<CreatePersonCommand>, CreatePersonCommandValidator>();
|
|
|
|
|
2021-08-11 17:00:22 -04:00
|
|
|
/* OLD WAY STILL VALID
|
2021-02-02 12:19:59 -05:00
|
|
|
services.AddCommand<EchoCommand, string, EchoCommandHandler>();
|
2021-08-11 17:00:22 -04:00
|
|
|
services.AddTransient<IValidator<EchoCommand>, EchoCommandValidator>();*/
|
|
|
|
|
|
|
|
// new way :) with PoweredSoft.CQRS.FluentValidation package.
|
|
|
|
services.AddCommandWithValidator<EchoCommand, string, EchoCommandHandler, EchoCommandValidator>();
|
2021-02-02 12:19:59 -05:00
|
|
|
}
|
|
|
|
|
2021-02-02 01:05:48 -05:00
|
|
|
private void AddQueries(IServiceCollection services)
|
|
|
|
{
|
|
|
|
services.AddQuery<PersonQuery, IQueryable<Person>, PersonQueryHandler>();
|
|
|
|
}
|
|
|
|
|
|
|
|
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
|
|
|
|
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
|
|
|
|
{
|
|
|
|
if (env.IsDevelopment())
|
|
|
|
{
|
|
|
|
app.UseDeveloperExceptionPage();
|
|
|
|
}
|
|
|
|
|
|
|
|
app.UseHttpsRedirection();
|
|
|
|
|
2021-02-07 00:12:41 -05:00
|
|
|
app.UseCors(o => o.AllowAnyOrigin().AllowAnyHeader().AllowAnyMethod());
|
|
|
|
|
2021-02-02 01:05:48 -05:00
|
|
|
app.UseRouting();
|
|
|
|
|
|
|
|
app.UseAuthorization();
|
|
|
|
|
2021-02-04 13:51:31 -05:00
|
|
|
app.UseSwagger();
|
2021-02-02 01:05:48 -05:00
|
|
|
|
|
|
|
// Enable middleware to serve swagger-ui (HTML, JS, CSS, etc.),
|
|
|
|
// specifying the Swagger JSON endpoint.
|
2021-02-04 13:51:31 -05:00
|
|
|
app.UseSwaggerUI(c =>
|
|
|
|
{
|
|
|
|
c.SwaggerEndpoint("/swagger/v1/swagger.json", "My API V1");
|
|
|
|
});
|
2021-02-02 01:05:48 -05:00
|
|
|
|
|
|
|
app.UseEndpoints(endpoints =>
|
|
|
|
{
|
|
|
|
endpoints.MapControllers();
|
2021-02-03 19:51:23 -05:00
|
|
|
endpoints.MapGraphQL();
|
2021-02-05 13:06:34 -05:00
|
|
|
|
|
|
|
endpoints.Select().Filter().OrderBy().Count().MaxTop(10);
|
|
|
|
|
|
|
|
endpoints.MapODataRoute("odata", "odata", endpoints.GetPoweredSoftODataEdmModel());
|
2021-02-02 01:05:48 -05:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|