[1.1.2] Fixing bug for Contenttype

This commit is contained in:
BlubbFish 2019-03-08 10:43:31 +01:00
parent 9fcd43e3a5
commit ba1597ca3b
2 changed files with 47 additions and 41 deletions

View File

@ -32,10 +32,11 @@ using System.Runtime.InteropServices;
// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
// indem Sie "*" wie unten gezeigt eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.1.1")]
[assembly: AssemblyFileVersion("1.1.1")]
[assembly: AssemblyVersion("1.1.2")]
[assembly: AssemblyFileVersion("1.1.2")]
/*
* 1.1.0 Remove Helper from Bot-Utils
* 1.1.1 Update to local librarys
* 1.1.2 Fixing bug for Contenttype
*/

View File

@ -55,10 +55,12 @@ namespace BlubbFish.Utils.IoT.Bots
String end = restr.IndexOf('.') != -1 ? restr.Substring(restr.IndexOf('.')+1) : "";
if (File.Exists("resources/"+ restr)) {
try {
if (end == "png" || end == ".jpg" || end == ".jpeg" || end == ".ico") {
if (end == "png" || end == "jpg" || end == "jpeg" || end == "ico") {
Byte[] output = File.ReadAllBytes("resources/" + restr);
switch(end) {
case "ico": cont.Response.ContentType = "image/x-ico"; break;
}
cont.Response.OutputStream.Write(output, 0, output.Length);
cont.Response.ContentType = "image/"+end;
return;
} else {
String file = File.ReadAllText("resources/" + restr);
@ -71,6 +73,9 @@ namespace BlubbFish.Utils.IoT.Bots
file = file.Replace("{%REQUEST_URL_HOST%}", cont.Request.Url.Host);
Byte[] buf = Encoding.UTF8.GetBytes(file);
cont.Response.ContentLength64 = buf.Length;
switch(end) {
case "css": cont.Response.ContentType = "text/css"; break;
}
cont.Response.OutputStream.Write(buf, 0, buf.Length);
Console.WriteLine("200 - " + cont.Request.Url.PathAndQuery);
return;