summaryrefslogtreecommitdiffstats
path: root/xbmc/network/httprequesthandler/HTTPImageHandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'xbmc/network/httprequesthandler/HTTPImageHandler.cpp')
-rw-r--r--xbmc/network/httprequesthandler/HTTPImageHandler.cpp51
1 files changed, 51 insertions, 0 deletions
diff --git a/xbmc/network/httprequesthandler/HTTPImageHandler.cpp b/xbmc/network/httprequesthandler/HTTPImageHandler.cpp
new file mode 100644
index 0000000..6cde13b
--- /dev/null
+++ b/xbmc/network/httprequesthandler/HTTPImageHandler.cpp
@@ -0,0 +1,51 @@
+/*
+ * Copyright (C) 2012-2018 Team Kodi
+ * This file is part of Kodi - https://kodi.tv
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ * See LICENSES/README.md for more information.
+ */
+
+#include "HTTPImageHandler.h"
+
+#include "URL.h"
+#include "filesystem/ImageFile.h"
+#include "network/WebServer.h"
+#include "utils/FileUtils.h"
+
+
+CHTTPImageHandler::CHTTPImageHandler(const HTTPRequest &request)
+ : CHTTPFileHandler(request)
+{
+ std::string file;
+ int responseStatus = MHD_HTTP_BAD_REQUEST;
+
+ // resolve the URL into a file path and a HTTP response status
+ if (m_request.pathUrl.size() > 7)
+ {
+ file = m_request.pathUrl.substr(7);
+
+ XFILE::CImageFile imageFile;
+ const CURL pathToUrl(file);
+ if (imageFile.Exists(pathToUrl) && CFileUtils::CheckFileAccessAllowed(file))
+ {
+ responseStatus = MHD_HTTP_OK;
+ struct __stat64 statBuffer;
+ if (imageFile.Stat(pathToUrl, &statBuffer) == 0)
+ {
+ SetLastModifiedDate(&statBuffer);
+ SetCanBeCached(true);
+ }
+ }
+ else
+ responseStatus = MHD_HTTP_NOT_FOUND;
+ }
+
+ // set the file and the HTTP response status
+ SetFile(file, responseStatus);
+}
+
+bool CHTTPImageHandler::CanHandleRequest(const HTTPRequest &request) const
+{
+ return request.pathUrl.find("/image/") == 0;
+}