[1.1.3] Variables parsing now as a String
This commit is contained in:
parent
ba1597ca3b
commit
4a87299d98
@ -6,12 +6,12 @@ using System.Runtime.InteropServices;
|
|||||||
// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern,
|
// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern,
|
||||||
// die einer Assembly zugeordnet sind.
|
// die einer Assembly zugeordnet sind.
|
||||||
[assembly: AssemblyTitle("Bot-Utils")]
|
[assembly: AssemblyTitle("Bot-Utils")]
|
||||||
[assembly: AssemblyDescription("")]
|
[assembly: AssemblyDescription("Bot-Utils are helpers for programming a bot")]
|
||||||
[assembly: AssemblyConfiguration("")]
|
[assembly: AssemblyConfiguration("")]
|
||||||
[assembly: AssemblyCompany("")]
|
[assembly: AssemblyCompany("BlubbFish")]
|
||||||
[assembly: AssemblyProduct("Bot-Utils")]
|
[assembly: AssemblyProduct("Bot-Utils")]
|
||||||
[assembly: AssemblyCopyright("Copyright © 2018 - 17.02.2019")]
|
[assembly: AssemblyCopyright("Copyright © 2018 - 09.03.2019")]
|
||||||
[assembly: AssemblyTrademark("")]
|
[assembly: AssemblyTrademark("© BlubbFish")]
|
||||||
[assembly: AssemblyCulture("")]
|
[assembly: AssemblyCulture("")]
|
||||||
|
|
||||||
// Durch Festlegen von ComVisible auf FALSE werden die Typen in dieser Assembly
|
// Durch Festlegen von ComVisible auf FALSE werden die Typen in dieser Assembly
|
||||||
@ -32,11 +32,12 @@ using System.Runtime.InteropServices;
|
|||||||
// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
|
// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
|
||||||
// indem Sie "*" wie unten gezeigt eingeben:
|
// indem Sie "*" wie unten gezeigt eingeben:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("1.1.2")]
|
[assembly: AssemblyVersion("1.1.3")]
|
||||||
[assembly: AssemblyFileVersion("1.1.2")]
|
[assembly: AssemblyFileVersion("1.1.3")]
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* 1.1.0 Remove Helper from Bot-Utils
|
* 1.1.0 Remove Helper from Bot-Utils
|
||||||
* 1.1.1 Update to local librarys
|
* 1.1.1 Update to local librarys
|
||||||
* 1.1.2 Fixing bug for Contenttype
|
* 1.1.2 Fixing bug for Contenttype
|
||||||
|
* 1.1.3 Variables parsing now as a String
|
||||||
*/
|
*/
|
||||||
|
@ -1,103 +1,103 @@
|
|||||||
using BlubbFish.Utils.IoT.Connector;
|
using BlubbFish.Utils.IoT.Connector;
|
||||||
using BlubbFish.Utils.IoT.Events;
|
using BlubbFish.Utils.IoT.Events;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Net;
|
using System.Net;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace BlubbFish.Utils.IoT.Bots
|
namespace BlubbFish.Utils.IoT.Bots
|
||||||
{
|
{
|
||||||
public abstract class Webserver
|
public abstract class Webserver
|
||||||
{
|
{
|
||||||
protected Dictionary<String, String> config;
|
protected Dictionary<String, String> config;
|
||||||
protected InIReader requests;
|
protected InIReader requests;
|
||||||
protected HttpListener httplistener;
|
protected HttpListener httplistener;
|
||||||
|
|
||||||
public Webserver(ABackend backend, Dictionary<String, String> settings, InIReader requests) {
|
public Webserver(ABackend backend, Dictionary<String, String> settings, InIReader requests) {
|
||||||
this.config = settings;
|
this.config = settings;
|
||||||
this.requests = requests;
|
this.requests = requests;
|
||||||
backend.MessageIncomming += this.Backend_MessageIncomming;
|
backend.MessageIncomming += this.Backend_MessageIncomming;
|
||||||
this.httplistener = new HttpListener();
|
this.httplistener = new HttpListener();
|
||||||
this.httplistener.Prefixes.Add(this.config["prefix"]);
|
this.httplistener.Prefixes.Add(this.config["prefix"]);
|
||||||
this.httplistener.Start();
|
this.httplistener.Start();
|
||||||
ThreadPool.QueueUserWorkItem((o) => {
|
ThreadPool.QueueUserWorkItem((o) => {
|
||||||
Console.WriteLine("Webserver is Running...");
|
Console.WriteLine("Webserver is Running...");
|
||||||
try {
|
try {
|
||||||
while (this.httplistener.IsListening) {
|
while (this.httplistener.IsListening) {
|
||||||
ThreadPool.QueueUserWorkItem((state) => {
|
ThreadPool.QueueUserWorkItem((state) => {
|
||||||
HttpListenerContext httplistenercontext = state as HttpListenerContext;
|
HttpListenerContext httplistenercontext = state as HttpListenerContext;
|
||||||
try {
|
try {
|
||||||
this.SendResponse(httplistenercontext);
|
this.SendResponse(httplistenercontext);
|
||||||
} catch { } finally {
|
} catch { } finally {
|
||||||
httplistenercontext.Response.OutputStream.Close();
|
httplistenercontext.Response.OutputStream.Close();
|
||||||
}
|
}
|
||||||
}, this.httplistener.GetContext());
|
}, this.httplistener.GetContext());
|
||||||
}
|
}
|
||||||
} catch { };
|
} catch { };
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
protected virtual void SendResponse(HttpListenerContext cont) {
|
protected virtual void SendResponse(HttpListenerContext cont) {
|
||||||
String restr = cont.Request.Url.PathAndQuery;
|
String restr = cont.Request.Url.PathAndQuery;
|
||||||
if (restr.StartsWith("/")) {
|
if (restr.StartsWith("/")) {
|
||||||
if(restr.IndexOf("?") != -1) {
|
if(restr.IndexOf("?") != -1) {
|
||||||
restr = restr.Substring(1, restr.IndexOf("?")-1);
|
restr = restr.Substring(1, restr.IndexOf("?")-1);
|
||||||
} else {
|
} else {
|
||||||
restr = restr.Substring(1);
|
restr = restr.Substring(1);
|
||||||
}
|
}
|
||||||
if(restr == "") {
|
if(restr == "") {
|
||||||
restr = "index.html";
|
restr = "index.html";
|
||||||
}
|
}
|
||||||
String end = restr.IndexOf('.') != -1 ? restr.Substring(restr.IndexOf('.')+1) : "";
|
String end = restr.IndexOf('.') != -1 ? restr.Substring(restr.IndexOf('.')+1) : "";
|
||||||
if (File.Exists("resources/"+ restr)) {
|
if (File.Exists("resources/"+ restr)) {
|
||||||
try {
|
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);
|
Byte[] output = File.ReadAllBytes("resources/" + restr);
|
||||||
switch(end) {
|
switch(end) {
|
||||||
case "ico": cont.Response.ContentType = "image/x-ico"; break;
|
case "ico": cont.Response.ContentType = "image/x-ico"; break;
|
||||||
}
|
}
|
||||||
cont.Response.OutputStream.Write(output, 0, output.Length);
|
cont.Response.OutputStream.Write(output, 0, output.Length);
|
||||||
return;
|
return;
|
||||||
} else {
|
} else {
|
||||||
String file = File.ReadAllText("resources/" + restr);
|
String file = File.ReadAllText("resources/" + restr);
|
||||||
if (this.requests.GetSections(false).Contains(restr)) {
|
if (this.requests.GetSections(false).Contains(restr)) {
|
||||||
Dictionary<String, String> vars = this.requests.GetSection(restr);
|
Dictionary<String, String> vars = this.requests.GetSection(restr);
|
||||||
foreach (KeyValuePair<String, String> item in vars) {
|
foreach (KeyValuePair<String, String> item in vars) {
|
||||||
file = file.Replace("{%" + item.Key.ToUpper() + "%}", item.Value);
|
file = file.Replace("\"{%" + item.Key.ToUpper() + "%}\"", item.Value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
file = file.Replace("{%REQUEST_URL_HOST%}", cont.Request.Url.Host);
|
file = file.Replace("{%REQUEST_URL_HOST%}", cont.Request.Url.Host);
|
||||||
Byte[] buf = Encoding.UTF8.GetBytes(file);
|
Byte[] buf = Encoding.UTF8.GetBytes(file);
|
||||||
cont.Response.ContentLength64 = buf.Length;
|
cont.Response.ContentLength64 = buf.Length;
|
||||||
switch(end) {
|
switch(end) {
|
||||||
case "css": cont.Response.ContentType = "text/css"; break;
|
case "css": cont.Response.ContentType = "text/css"; break;
|
||||||
}
|
}
|
||||||
cont.Response.OutputStream.Write(buf, 0, buf.Length);
|
cont.Response.OutputStream.Write(buf, 0, buf.Length);
|
||||||
Console.WriteLine("200 - " + cont.Request.Url.PathAndQuery);
|
Console.WriteLine("200 - " + cont.Request.Url.PathAndQuery);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
} catch(Exception e) {
|
} catch(Exception e) {
|
||||||
Helper.WriteError("500 - " + e.Message);
|
Helper.WriteError("500 - " + e.Message);
|
||||||
cont.Response.StatusCode = 500;
|
cont.Response.StatusCode = 500;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Helper.WriteError("404 - " + cont.Request.Url.PathAndQuery + " not found!");
|
Helper.WriteError("404 - " + cont.Request.Url.PathAndQuery + " not found!");
|
||||||
cont.Response.StatusCode = 404;
|
cont.Response.StatusCode = 404;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Dispose() {
|
public void Dispose() {
|
||||||
this.httplistener.Stop();
|
this.httplistener.Stop();
|
||||||
this.httplistener.Close();
|
this.httplistener.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
protected abstract void Backend_MessageIncomming(Object sender, BackendEvent e);
|
protected abstract void Backend_MessageIncomming(Object sender, BackendEvent e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user