| [230] | 1 | using System.Net;
|
|---|
| 2 | using System.Text;
|
|---|
| [325] | 3 | using AllocsFixes.JSON;
|
|---|
| [332] | 4 | using UnityEngine.Profiling;
|
|---|
| [230] | 5 |
|
|---|
| [325] | 6 | namespace AllocsFixes.NetConnections.Servers.Web.API {
|
|---|
| 7 | public abstract class WebAPI {
|
|---|
| [326] | 8 | public readonly string Name;
|
|---|
| 9 |
|
|---|
| 10 | protected WebAPI () {
|
|---|
| 11 | Name = GetType ().Name;
|
|---|
| 12 | }
|
|---|
| 13 |
|
|---|
| [332] | 14 | #if ENABLE_PROFILER
|
|---|
| 15 | private static readonly CustomSampler jsonSerializeSampler = CustomSampler.Create ("JSON_Serialize");
|
|---|
| 16 | private static readonly CustomSampler netWriteSampler = CustomSampler.Create ("JSON_Write");
|
|---|
| 17 | #endif
|
|---|
| 18 |
|
|---|
| [351] | 19 | public static void WriteJSON (HttpListenerResponse _resp, JSONNode _root) {
|
|---|
| [332] | 20 | #if ENABLE_PROFILER
|
|---|
| 21 | jsonSerializeSampler.Begin ();
|
|---|
| 22 | #endif
|
|---|
| [309] | 23 | StringBuilder sb = new StringBuilder ();
|
|---|
| [351] | 24 | _root.ToString (sb);
|
|---|
| [332] | 25 | #if ENABLE_PROFILER
|
|---|
| 26 | jsonSerializeSampler.End ();
|
|---|
| 27 | netWriteSampler.Begin ();
|
|---|
| 28 | #endif
|
|---|
| [309] | 29 | byte[] buf = Encoding.UTF8.GetBytes (sb.ToString ());
|
|---|
| [351] | 30 | _resp.ContentLength64 = buf.Length;
|
|---|
| 31 | _resp.ContentType = "application/json";
|
|---|
| 32 | _resp.ContentEncoding = Encoding.UTF8;
|
|---|
| 33 | _resp.OutputStream.Write (buf, 0, buf.Length);
|
|---|
| [332] | 34 | #if ENABLE_PROFILER
|
|---|
| 35 | netWriteSampler.End ();
|
|---|
| 36 | #endif
|
|---|
| [230] | 37 | }
|
|---|
| 38 |
|
|---|
| [325] | 39 | public static void WriteText (HttpListenerResponse _resp, string _text) {
|
|---|
| [306] | 40 | byte[] buf = Encoding.UTF8.GetBytes (_text);
|
|---|
| 41 | _resp.ContentLength64 = buf.Length;
|
|---|
| 42 | _resp.ContentType = "text/plain";
|
|---|
| 43 | _resp.ContentEncoding = Encoding.UTF8;
|
|---|
| 44 | _resp.OutputStream.Write (buf, 0, buf.Length);
|
|---|
| 45 | }
|
|---|
| 46 |
|
|---|
| [351] | 47 | public abstract void HandleRequest (HttpListenerRequest _req, HttpListenerResponse _resp, WebConnection _user,
|
|---|
| 48 | int _permissionLevel);
|
|---|
| [279] | 49 |
|
|---|
| 50 | public virtual int DefaultPermissionLevel () {
|
|---|
| 51 | return 0;
|
|---|
| 52 | }
|
|---|
| [230] | 53 | }
|
|---|
| [325] | 54 | }
|
|---|