summaryrefslogtreecommitdiff
path: root/modules/extra/webcpanel/static_fileserver.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/extra/webcpanel/static_fileserver.cpp')
-rw-r--r--modules/extra/webcpanel/static_fileserver.cpp42
1 files changed, 42 insertions, 0 deletions
diff --git a/modules/extra/webcpanel/static_fileserver.cpp b/modules/extra/webcpanel/static_fileserver.cpp
new file mode 100644
index 000000000..3f51c8b40
--- /dev/null
+++ b/modules/extra/webcpanel/static_fileserver.cpp
@@ -0,0 +1,42 @@
+/*
+ * (C) 2003-2012 Anope Team
+ * Contact us at team@anope.org
+ *
+ * Please read COPYING and README for further details.
+ */
+
+#include "webcpanel.h"
+#include <fstream>
+#include <errno.h>
+
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <fcntl.h>
+#include <unistd.h>
+
+StaticFileServer::StaticFileServer(const Anope::string &f_n, const Anope::string &u, const Anope::string &c_t) : HTTPPage(u, c_t), file_name(f_n)
+{
+}
+
+void StaticFileServer::OnRequest(HTTPProvider *server, const Anope::string &page_name, HTTPClient *client, HTTPMessage &message, HTTPReply &reply)
+{
+ int fd = open((template_base + "/" + this->file_name).c_str(), O_RDONLY);
+ if (fd < 0)
+ {
+ Log(LOG_NORMAL, "httpd") << "Error serving file " << page_name << " (" << (template_base + "/" + this->file_name) << "): " << strerror(errno);
+
+ client->SendError(HTTP_PAGE_NOT_FOUND, "Page not found");
+ return;
+ }
+
+ reply.content_type = this->GetContentType();
+ reply.headers["Cache-Control"] = "public";
+
+ int i;
+ char buffer[BUFSIZE];
+ while ((i = read(fd, buffer, sizeof(buffer))) > 0)
+ reply.Write(buffer, i);
+
+ close(fd);
+}
+