diff options
author | Mattes D <github@xoft.cz> | 2014-09-06 11:12:18 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-09-06 11:12:18 +0200 |
commit | b1cc1451d4c76e68a462017f0fd1939f24a50ea1 (patch) | |
tree | dd3444187ba8d45ebd3ad9269585966d47185282 /src/WebAdmin.h | |
parent | WorldStorage no longer queues chunks into generator. (diff) | |
parent | Xoft fixes. (diff) | |
download | cuberite-b1cc1451d4c76e68a462017f0fd1939f24a50ea1.tar cuberite-b1cc1451d4c76e68a462017f0fd1939f24a50ea1.tar.gz cuberite-b1cc1451d4c76e68a462017f0fd1939f24a50ea1.tar.bz2 cuberite-b1cc1451d4c76e68a462017f0fd1939f24a50ea1.tar.lz cuberite-b1cc1451d4c76e68a462017f0fd1939f24a50ea1.tar.xz cuberite-b1cc1451d4c76e68a462017f0fd1939f24a50ea1.tar.zst cuberite-b1cc1451d4c76e68a462017f0fd1939f24a50ea1.zip |
Diffstat (limited to 'src/WebAdmin.h')
-rw-r--r-- | src/WebAdmin.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/WebAdmin.h b/src/WebAdmin.h index aefc1d145..94b95dbcf 100644 --- a/src/WebAdmin.h +++ b/src/WebAdmin.h @@ -116,6 +116,9 @@ public: /** Stops the HTTP server, if it was started. */ void Stop(void); + /** Loads the login template. Returns true if the loading succeeds, false if not. */ + bool LoadLoginTemplate(void); + void AddPlugin(cWebPlugin * a_Plugin); void RemovePlugin(cWebPlugin * a_Plugin); @@ -146,6 +149,9 @@ public: /** Returns the prefix needed for making a link point to the webadmin root from the given URL ("../../../webadmin"-style) */ static AString GetBaseURL(const AStringVector & a_URLSplit); + /** Returns the content type from the file extension. If the extension isn't in the list, the function returns "text/html" */ + static AString GetContentTypeFromFileExt(const AString & a_FileExtension); + protected: /** Common base class for request body data handlers */ class cRequestData @@ -205,6 +211,9 @@ protected: /** The Lua template script to provide templates: */ cLuaState m_TemplateScript; + /** The template that provides the login site: */ + AString m_LoginTemplate; + /** The HTTP server which provides the underlying HTTP parsing, serialization and events */ cHTTPServer m_HTTPServer; @@ -214,6 +223,9 @@ protected: /** Handles requests for the root page */ void HandleRootRequest(cHTTPConnection & a_Connection, cHTTPRequest & a_Request); + /** Handles requests for a file */ + void HandleFileRequest(cHTTPConnection & a_Connection, cHTTPRequest & a_Request); + // cHTTPServer::cCallbacks overrides: virtual void OnRequestBegun (cHTTPConnection & a_Connection, cHTTPRequest & a_Request) override; virtual void OnRequestBody (cHTTPConnection & a_Connection, cHTTPRequest & a_Request, const char * a_Data, size_t a_Size) override; |