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

Last change on this file since 156 was 154, checked in by alloc, 10 years ago

fixes

File size: 1.9 KB
Line 
1using System;
2using System.Collections.Generic;
3using System.IO;
4using System.Net;
5using System.Threading;
6
7namespace AllocsFixes.NetConnections.Servers.Web
8{
9 public class StaticHandler : PathHandler
10 {
11 private string datapath;
12 private string staticPart;
13 private bool cache;
14 private bool logMissingFiles;
15 private Dictionary<string, byte[]> fileCache = new Dictionary<string, byte[]> ();
16
17 public StaticHandler (string staticPart, string filePath, bool cache, bool logMissingFiles)
18 {
19 this.staticPart = staticPart;
20 this.datapath = filePath;
21 this.cache = cache;
22 this.logMissingFiles = logMissingFiles;
23 }
24
25 public override void HandleRequest (HttpListenerRequest req, HttpListenerResponse resp, HttpListenerBasicIdentity user)
26 {
27 try {
28 string fn = req.Url.AbsolutePath.Remove (0, staticPart.Length);
29
30 byte[] content;
31 if (cache) {
32 Monitor.Enter (fileCache);
33 try {
34 if (!fileCache.ContainsKey (fn)) {
35 if (!File.Exists (datapath + "/" + fn)) {
36 throw new FileNotFoundException ();
37 }
38
39 fileCache.Add (fn, File.ReadAllBytes (datapath + "/" + fn));
40 }
41
42 content = fileCache [fn];
43 } finally {
44 Monitor.Exit (fileCache);
45 }
46 } else {
47 if (!File.Exists (datapath + "/" + fn)) {
48 throw new FileNotFoundException ();
49 }
50
51 content = File.ReadAllBytes (datapath + "/" + fn);
52 }
53
54 resp.ContentType = MimeType.GetMimeType (Path.GetExtension (fn));
55 resp.ContentLength64 = content.Length;
56 resp.OutputStream.Write (content, 0, content.Length);
57 } catch (FileNotFoundException e) {
58 resp.StatusCode = (int)HttpStatusCode.NotFound;
59 if (logMissingFiles)
60 Log.Out ("Web:Static:FileNotFound: \"" + req.Url.AbsolutePath + "\" @ \"" + datapath + "/" + req.Url.AbsolutePath.Remove (0, staticPart.Length) + "\"");
61 return;
62 } catch (Exception e) {
63 Log.Out ("Error in StaticHandler.HandleRequest: " + e);
64 }
65 }
66 }
67}
68
Note: See TracBrowser for help on using the repository browser.