source: TFP-WebServer/WebServer/src/UrlHandlers/ApiHandler.cs@ 459

Last change on this file since 459 was 459, checked in by alloc, 15 months ago

Updated to dashboard/marker files 0.8.0
Added initial OpenAPI support

File size: 3.3 KB
Line 
1using System;
2using System.Collections.Generic;
3using System.Net;
4using System.Reflection;
5using Webserver.WebAPI;
6
7namespace Webserver.UrlHandlers {
8 public class ApiHandler : AbsHandler {
9 private readonly Dictionary<string, AbsWebAPI> apis = new CaseInsensitiveStringDictionary<AbsWebAPI> ();
10
11 public ApiHandler () : base (null) {
12 }
13
14 private static readonly Type[] apiWithParentCtorTypes = { typeof (Web) };
15 private static readonly object[] apiWithParentCtorArgs = new object[1];
16 private static readonly Type[] apiEmptyCtorTypes = { };
17 private static readonly object[] apiEmptyCtorArgs = { };
18
19 public override void SetBasePathAndParent (Web _parent, string _relativePath) {
20 base.SetBasePathAndParent (_parent, _relativePath);
21
22 apiWithParentCtorArgs[0] = _parent;
23
24 ReflectionHelpers.FindTypesImplementingBase (typeof (AbsWebAPI), apiFoundCallback);
25
26 // Permissions that don't map to a real API
27 addApi (new Null ("viewallclaims"));
28 addApi (new Null ("viewallplayers"));
29 }
30
31 private void apiFoundCallback (Type _type) {
32 ConstructorInfo ctor = _type.GetConstructor (BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic, (Binder)null,
33 apiWithParentCtorTypes, (ParameterModifier[])null);
34 if (ctor != null) {
35 AbsWebAPI apiInstance = (AbsWebAPI)ctor.Invoke (apiWithParentCtorArgs);
36 addApi (apiInstance);
37 return;
38 }
39
40 ctor = _type.GetConstructor (BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic, (Binder)null,
41 apiEmptyCtorTypes, (ParameterModifier[])null);
42 if (ctor != null) {
43 AbsWebAPI apiInstance = (AbsWebAPI)ctor.Invoke (apiEmptyCtorArgs);
44 addApi (apiInstance);
45 }
46 }
47
48 private void addApi (AbsWebAPI _api) {
49 apis.Add (_api.Name, _api);
50 parent.OpenApiHelpers.LoadOpenApiSpec (_api);
51 }
52
53 private static readonly UnityEngine.Profiling.CustomSampler apiHandlerSampler = UnityEngine.Profiling.CustomSampler.Create ("API_Handler");
54
55 public override void HandleRequest (RequestContext _context) {
56
57 string apiName;
58 string subPath = null;
59
60 int pathSeparatorIndex = _context.RequestPath.IndexOf ('/', urlBasePath.Length);
61 if (pathSeparatorIndex >= 0) {
62 apiName = _context.RequestPath.Substring (urlBasePath.Length, pathSeparatorIndex - urlBasePath.Length);
63 subPath = _context.RequestPath.Substring (pathSeparatorIndex + 1);
64 } else {
65 apiName = _context.RequestPath.Substring (urlBasePath.Length);
66 }
67
68 if (!apis.TryGetValue (apiName, out AbsWebAPI api)) {
69 Log.Warning ($"[Web] In {nameof(ApiHandler)}.HandleRequest(): No handler found for API \"{apiName}\"");
70 _context.Response.StatusCode = (int) HttpStatusCode.NotFound;
71 return;
72 }
73
74 _context.RequestPath = subPath;
75
76 if (!api.Authorized (_context)) {
77 _context.Response.StatusCode = (int) HttpStatusCode.Forbidden;
78 if (_context.Connection != null) {
79 //Log.Out ($"{nameof(ApiHandler)}: user '{user.SteamID}' not allowed to execute '{apiName}'");
80 }
81
82 return;
83 }
84
85 try {
86 apiHandlerSampler.Begin ();
87 api.HandleRequest (_context);
88 apiHandlerSampler.End ();
89 } catch (Exception e) {
90 Log.Error ($"[Web] In {nameof(ApiHandler)}.HandleRequest(): Handler {api.Name} threw an exception:");
91 Log.Exception (e);
92 _context.Response.StatusCode = (int) HttpStatusCode.InternalServerError;
93 }
94 }
95 }
96}
Note: See TracBrowser for help on using the repository browser.