forked from graphql-dotnet/server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStartupWithRouting.cs
127 lines (110 loc) · 4.59 KB
/
StartupWithRouting.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
using System.Collections.Generic;
using GraphQL.DataLoader;
using GraphQL.Execution;
using GraphQL.Samples.Schemas.Chat;
using GraphQL.Server;
using GraphQL.Server.Ui.Altair;
using GraphQL.Server.Ui.GraphiQL;
using GraphQL.Server.Ui.Playground;
using GraphQL.Server.Ui.Voyager;
using GraphQL.SystemReactive;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
namespace GraphQL.Samples.Server
{
public class StartupWithRouting
{
public StartupWithRouting(IConfiguration configuration, IWebHostEnvironment environment)
{
Configuration = configuration;
Environment = environment;
}
public IConfiguration Configuration { get; }
public IWebHostEnvironment Environment { get; }
// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services)
{
services.AddRouting();
services.AddSingleton<IChat, Chat>();
MicrosoftDI.GraphQLBuilderExtensions.AddGraphQL(services)
.AddSubscriptionDocumentExecuter()
.AddServer(true)
.AddSchema<ChatSchema>()
.ConfigureExecution(options =>
{
options.EnableMetrics = Environment.IsDevelopment();
var logger = options.RequestServices.GetRequiredService<ILogger<Startup>>();
options.UnhandledExceptionDelegate = ctx => logger.LogError("{Error} occurred", ctx.OriginalException.Message);
})
.AddDefaultEndpointSelectorPolicy()
.AddSystemTextJson()
.AddErrorInfoProvider<CustomErrorInfoProvider>()
.Configure<ErrorInfoProviderOptions>(opt => opt.ExposeExceptionStackTrace = Environment.IsDevelopment())
.AddWebSockets()
.AddDataLoader()
.AddGraphTypes(typeof(ChatSchema).Assembly);
}
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app)
{
if (Environment.IsDevelopment())
app.UseDeveloperExceptionPage();
app.UseWebSockets();
app.UseRouting();
app.UseEndpoints(endpoints =>
{
endpoints.MapGraphQLWebSockets<ChatSchema>();
endpoints.MapGraphQL<ChatSchema, GraphQLHttpMiddlewareWithLogs<ChatSchema>>();
endpoints.MapGraphQLPlayground(new PlaygroundOptions
{
BetaUpdates = true,
RequestCredentials = RequestCredentials.Omit,
HideTracingResponse = false,
EditorCursorShape = EditorCursorShape.Line,
EditorTheme = EditorTheme.Light,
EditorFontSize = 14,
EditorReuseHeaders = true,
EditorFontFamily = "Consolas",
PrettierPrintWidth = 80,
PrettierTabWidth = 2,
PrettierUseTabs = true,
SchemaDisableComments = false,
SchemaPollingEnabled = true,
SchemaPollingEndpointFilter = "*localhost*",
SchemaPollingInterval = 5000,
Headers = new Dictionary<string, object>
{
["MyHeader1"] = "MyValue",
["MyHeader2"] = 42,
},
});
endpoints.MapGraphQLGraphiQL(new GraphiQLOptions
{
Headers = new Dictionary<string, string>
{
["X-api-token"] = "130fh9823bd023hd892d0j238dh",
}
});
endpoints.MapGraphQLAltair(new AltairOptions
{
Headers = new Dictionary<string, string>
{
["X-api-token"] = "130fh9823bd023hd892d0j238dh",
}
});
endpoints.MapGraphQLVoyager(new VoyagerOptions
{
Headers = new Dictionary<string, object>
{
["MyHeader1"] = "MyValue",
["MyHeader2"] = 42,
},
});
});
}
}
}