[230] | 1 | using System.IO;
|
---|
| 2 | using System.Net;
|
---|
[325] | 3 | using AllocsFixes.FileCache;
|
---|
[230] | 4 |
|
---|
[325] | 5 | namespace AllocsFixes.NetConnections.Servers.Web.Handlers {
|
---|
| 6 | public class StaticHandler : PathHandler {
|
---|
| 7 | private readonly AbstractCache cache;
|
---|
| 8 | private readonly string datapath;
|
---|
| 9 | private readonly bool logMissingFiles;
|
---|
| 10 | private readonly string staticPart;
|
---|
[230] | 11 |
|
---|
[325] | 12 | public StaticHandler (string staticPart, string filePath, AbstractCache cache, bool logMissingFiles,
|
---|
| 13 | string moduleName = null) : base (moduleName) {
|
---|
[230] | 14 | this.staticPart = staticPart;
|
---|
[325] | 15 | datapath = filePath;
|
---|
[230] | 16 | this.cache = cache;
|
---|
| 17 | this.logMissingFiles = logMissingFiles;
|
---|
| 18 | }
|
---|
| 19 |
|
---|
[325] | 20 | public override void HandleRequest (HttpListenerRequest req, HttpListenerResponse resp, WebConnection user,
|
---|
| 21 | int permissionLevel) {
|
---|
[230] | 22 | string fn = req.Url.AbsolutePath.Remove (0, staticPart.Length);
|
---|
| 23 |
|
---|
[325] | 24 | byte[] content = cache.GetFileContent (datapath + "/" + fn);
|
---|
[251] | 25 |
|
---|
[230] | 26 | if (content != null) {
|
---|
| 27 | resp.ContentType = MimeType.GetMimeType (Path.GetExtension (fn));
|
---|
| 28 | resp.ContentLength64 = content.Length;
|
---|
| 29 | resp.OutputStream.Write (content, 0, content.Length);
|
---|
| 30 | } else {
|
---|
[325] | 31 | resp.StatusCode = (int) HttpStatusCode.NotFound;
|
---|
| 32 | if (logMissingFiles) {
|
---|
| 33 | Log.Out ("Web:Static:FileNotFound: \"" + req.Url.AbsolutePath + "\" @ \"" + datapath + "/" +
|
---|
| 34 | req.Url.AbsolutePath.Remove (0, staticPart.Length) + "\"");
|
---|
| 35 | }
|
---|
[230] | 36 | }
|
---|
| 37 | }
|
---|
| 38 | }
|
---|
[325] | 39 | }
|
---|