[230] | 1 | using AllocsFixes.NetConnections.Servers.Web.API;
|
---|
| 2 | using System;
|
---|
| 3 | using System.Collections.Generic;
|
---|
| 4 | using System.IO;
|
---|
| 5 | using System.Net;
|
---|
[250] | 6 | using System.Reflection;
|
---|
[230] | 7 | using System.Threading;
|
---|
| 8 |
|
---|
[244] | 9 | namespace AllocsFixes.NetConnections.Servers.Web.Handlers
|
---|
[230] | 10 | {
|
---|
[244] | 11 | public class ApiHandler : PathHandler {
|
---|
[230] | 12 | private string staticPart;
|
---|
| 13 | private Dictionary<String, WebAPI> apis = new Dictionary<string, WebAPI> ();
|
---|
| 14 |
|
---|
[251] | 15 | public ApiHandler (string staticPart, string moduleName = null) : base (moduleName) {
|
---|
[230] | 16 | this.staticPart = staticPart;
|
---|
[250] | 17 |
|
---|
| 18 | foreach (Type t in Assembly.GetExecutingAssembly ().GetTypes ()) {
|
---|
| 19 | if (!t.IsAbstract && t.IsSubclassOf (typeof(WebAPI))) {
|
---|
[251] | 20 | ConstructorInfo ctor = t.GetConstructor (new Type [0]);
|
---|
[250] | 21 | if (ctor != null) {
|
---|
[251] | 22 | WebAPI apiInstance = (WebAPI)ctor.Invoke (new object [0]);
|
---|
[250] | 23 | addApi (t.Name.ToLower (), apiInstance);
|
---|
| 24 | }
|
---|
| 25 | }
|
---|
[251] | 26 | }
|
---|
| 27 |
|
---|
| 28 | // Add dummy types
|
---|
| 29 | Type dummy_t = typeof (API.Null);
|
---|
| 30 | ConstructorInfo dummy_ctor = dummy_t.GetConstructor (new Type [0]);
|
---|
| 31 | if (dummy_ctor != null) {
|
---|
| 32 | WebAPI dummy_apiInstance = (WebAPI)dummy_ctor.Invoke (new object[0]);
|
---|
| 33 |
|
---|
| 34 | // Permissions that don't map to a real API
|
---|
| 35 | addApi("viewallclaims", dummy_apiInstance);
|
---|
| 36 | addApi("viewallplayers", dummy_apiInstance);
|
---|
| 37 | }
|
---|
[230] | 38 | }
|
---|
| 39 |
|
---|
[244] | 40 | private void addApi (string _apiName, WebAPI _api) {
|
---|
| 41 | apis.Add (_apiName, _api);
|
---|
[279] | 42 | WebPermissions.Instance.AddKnownModule ("webapi." + _apiName, _api.DefaultPermissionLevel ());
|
---|
[244] | 43 | }
|
---|
| 44 |
|
---|
| 45 | public override void HandleRequest (HttpListenerRequest req, HttpListenerResponse resp, WebConnection user, int permissionLevel) {
|
---|
[230] | 46 | string apiName = req.Url.AbsolutePath.Remove (0, staticPart.Length);
|
---|
[244] | 47 | if (!AuthorizeForCommand (apiName, user, permissionLevel)) {
|
---|
[230] | 48 | resp.StatusCode = (int)HttpStatusCode.Forbidden;
|
---|
[244] | 49 | if (user != null) {
|
---|
[247] | 50 | //Log.Out ("ApiHandler: user '{0}' not allowed to execute '{1}'", user.SteamID, apiName);
|
---|
[244] | 51 | } else {
|
---|
[247] | 52 | //Log.Out ("ApiHandler: unidentified user from '{0}' not allowed to execute '{1}'", req.RemoteEndPoint.Address, apiName);
|
---|
[244] | 53 | }
|
---|
| 54 | return;
|
---|
[230] | 55 | } else {
|
---|
| 56 | foreach (KeyValuePair<string, WebAPI> kvp in apis) {
|
---|
[250] | 57 | if (apiName.StartsWith (kvp.Key)) {
|
---|
| 58 | try {
|
---|
[244] | 59 | kvp.Value.HandleRequest (req, resp, user, permissionLevel);
|
---|
[230] | 60 | return;
|
---|
[250] | 61 | } catch (Exception e) {
|
---|
| 62 | Log.Error ("Error in ApiHandler.HandleRequest(): Handler {0} threw an exception:", kvp.Key);
|
---|
| 63 | Log.Exception (e);
|
---|
| 64 | resp.StatusCode = (int)HttpStatusCode.InternalServerError;
|
---|
| 65 | return;
|
---|
[230] | 66 | }
|
---|
| 67 | }
|
---|
| 68 | }
|
---|
| 69 | }
|
---|
| 70 |
|
---|
| 71 | Log.Out ("Error in ApiHandler.HandleRequest(): No handler found for API \"" + apiName + "\"");
|
---|
| 72 | resp.StatusCode = (int)HttpStatusCode.NotFound;
|
---|
| 73 | }
|
---|
| 74 |
|
---|
[244] | 75 | private bool AuthorizeForCommand (string apiName, WebConnection user, int permissionLevel) {
|
---|
| 76 | return WebPermissions.Instance.ModuleAllowedWithLevel ("webapi." + apiName, permissionLevel);
|
---|
[230] | 77 | }
|
---|
| 78 |
|
---|
| 79 | }
|
---|
| 80 |
|
---|
| 81 | }
|
---|
| 82 |
|
---|