source: binary-improvements/7dtd-server-fixes/src/NetConnections/Servers/Web/ApiHandler.cs@ 157

Last change on this file since 157 was 156, checked in by alloc, 11 years ago

fixes

File size: 1.4 KB
RevLine 
[154]1using AllocsFixes.NetConnections.Servers.Web.API;
2using System;
3using System.Collections.Generic;
4using System.IO;
5using System.Net;
6using System.Threading;
7
8namespace AllocsFixes.NetConnections.Servers.Web
9{
10 public class ApiHandler : PathHandler
11 {
12 private string staticPart;
13 private Dictionary<String, WebAPI> apis = new Dictionary<string, WebAPI> ();
14
15 public ApiHandler (string staticPart)
16 {
17 this.staticPart = staticPart;
18 apis.Add ("getplayersonline", new GetPlayersOnline ());
19 apis.Add ("getplayerslocation", new GetPlayersLocation ());
20 }
21
22 public override void HandleRequest (HttpListenerRequest req, HttpListenerResponse resp, HttpListenerBasicIdentity user)
23 {
24 string apiName = req.Url.AbsolutePath.Remove (0, staticPart.Length);
25 if (!AuthorizeForCommand (apiName, user)) {
26 resp.StatusCode = (int)HttpStatusCode.Forbidden;
27 } else {
[156]28 try {
29 foreach (KeyValuePair<string, WebAPI> kvp in apis) {
30 if (apiName.StartsWith (kvp.Key)) {
31 kvp.Value.HandleRequest (req, resp, user);
32 return;
33 }
[154]34 }
[156]35 } catch (Exception e) {
36 resp.StatusCode = (int)HttpStatusCode.InternalServerError;
[154]37 }
38 }
39
40 Log.Out ("Error in ApiHandler.HandleRequest(): No handler found for API \"" + apiName + "\"");
41 resp.StatusCode = (int)HttpStatusCode.NotFound;
42 }
43
44 private bool AuthorizeForCommand (string apiName, HttpListenerBasicIdentity user)
45 {
46 return true;
47 }
48
49 }
50
51}
52
Note: See TracBrowser for help on using the repository browser.