2016-07-06 16:48:56 +06:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "backends/networking/sdl_net/handlers/filespagehandler.h"
|
2016-07-09 17:06:50 +06:00
|
|
|
#include "backends/networking/sdl_net/handlerutils.h"
|
2016-07-06 16:48:56 +06:00
|
|
|
#include "backends/networking/sdl_net/localwebserver.h"
|
|
|
|
#include "common/translation.h"
|
|
|
|
|
|
|
|
namespace Networking {
|
|
|
|
|
|
|
|
#define INDEX_PAGE_NAME ".index.html"
|
|
|
|
#define FILES_PAGE_NAME ".files.html"
|
|
|
|
|
|
|
|
FilesPageHandler::FilesPageHandler() {}
|
|
|
|
|
|
|
|
FilesPageHandler::~FilesPageHandler() {}
|
|
|
|
|
2016-07-08 16:30:11 +06:00
|
|
|
namespace {
|
|
|
|
Common::String encodeDoubleQuotes(Common::String s) {
|
|
|
|
Common::String result = "";
|
|
|
|
for (uint32 i = 0; i < s.size(); ++i)
|
|
|
|
if (s[i] == '"') {
|
|
|
|
result += "\\\"";
|
|
|
|
} else result += s[i];
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-06 16:48:56 +06:00
|
|
|
void FilesPageHandler::handle(Client &client) {
|
2016-07-11 14:44:15 +06:00
|
|
|
Common::String response =
|
|
|
|
"<html>" \
|
|
|
|
"<head><title>ScummVM</title></head>" \
|
|
|
|
"<body>" \
|
|
|
|
"<p>{create_directory_desc}</p>" \
|
|
|
|
"<form action=\"create\">" \
|
|
|
|
"<input type=\"hidden\" name=\"path\" value=\"{path}\"/>" \
|
|
|
|
"<input type=\"text\" name=\"directory_name\" value=\"\"/>" \
|
|
|
|
"<input type=\"submit\" value=\"{create_directory_button}\"/>" \
|
|
|
|
"</form>" \
|
|
|
|
"<hr/>" \
|
|
|
|
"<p>{upload_file_desc}</p>" \
|
|
|
|
"<form action=\"upload?path={path}\" method=\"post\" enctype=\"multipart/form-data\">" \
|
2016-07-12 10:48:10 +06:00
|
|
|
"<input type=\"file\" name=\"upload_file-f\" allowdirs multiple/>" \
|
|
|
|
"<span>{or_upload_directory_desc}</span>" \
|
|
|
|
"<input type=\"file\" name=\"upload_file-d\" directory webkitdirectory multiple/>" \
|
2016-07-11 14:44:15 +06:00
|
|
|
"<input type=\"submit\" value=\"{upload_file_button}\"/>" \
|
|
|
|
"</form>"
|
|
|
|
"<hr/>" \
|
|
|
|
"<table>{content}</table>" \
|
|
|
|
"</body>" \
|
|
|
|
"</html>";
|
2016-07-15 13:46:43 +06:00
|
|
|
Common::String itemTemplate = "<tr><td><img src=\"icons/{icon}\"/></td><td><a href=\"{link}\">{name}</a></td><td>{size}</td></tr>\n"; //TODO: load this template too?
|
2016-07-06 16:48:56 +06:00
|
|
|
|
|
|
|
// load stylish response page from the archive
|
2016-07-09 17:06:50 +06:00
|
|
|
Common::SeekableReadStream *const stream = HandlerUtils::getArchiveFile(FILES_PAGE_NAME);
|
|
|
|
if (stream) response = HandlerUtils::readEverythingFromStream(stream);
|
2016-07-06 16:48:56 +06:00
|
|
|
|
|
|
|
Common::String path = client.queryParameter("path");
|
|
|
|
Common::String content = "";
|
|
|
|
|
|
|
|
// show an error message if failed to list directory
|
|
|
|
if (!listDirectory(path, content, itemTemplate)) {
|
2016-07-09 17:06:50 +06:00
|
|
|
HandlerUtils::setFilesManagerErrorMessageHandler(client, _("ScummVM couldn't list the directory you specified."));
|
2016-07-06 16:48:56 +06:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
//these occur twice:
|
|
|
|
replace(response, "{create_directory_button}", _("Create directory"));
|
|
|
|
replace(response, "{create_directory_button}", _("Create directory"));
|
2016-07-08 16:30:11 +06:00
|
|
|
replace(response, "{path}", encodeDoubleQuotes(client.queryParameter("path")));
|
|
|
|
replace(response, "{path}", encodeDoubleQuotes(client.queryParameter("path")));
|
2016-07-06 16:48:56 +06:00
|
|
|
replace(response, "{upload_files_button}", _("Upload files")); //tab
|
|
|
|
replace(response, "{upload_file_button}", _("Upload files")); //button in the tab
|
|
|
|
replace(response, "{create_directory_desc}", _("Type new directory name:"));
|
|
|
|
replace(response, "{upload_file_desc}", _("Select a file to upload:"));
|
2016-07-12 10:48:10 +06:00
|
|
|
replace(response, "{or_upload_directory_desc}", _("Or select a directory (works in Chrome only):"));
|
2016-07-06 16:48:56 +06:00
|
|
|
replace(response, "{content}", content);
|
|
|
|
LocalWebserver::setClientGetHandler(client, response);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool FilesPageHandler::listDirectory(Common::String path, Common::String &content, const Common::String &itemTemplate) {
|
|
|
|
if (path == "" || path == "/") {
|
2016-07-15 13:46:43 +06:00
|
|
|
addItem(content, itemTemplate, IT_DIRECTORY, "/root/", _("File system root"));
|
|
|
|
addItem(content, itemTemplate, IT_DIRECTORY, "/saves/", _("Saved games"));
|
2016-07-06 16:48:56 +06:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
Common::String prefixToRemove = "", prefixToAdd = "";
|
|
|
|
if (!transformPath(path, prefixToRemove, prefixToAdd)) return false;
|
|
|
|
|
|
|
|
Common::FSNode node = Common::FSNode(path);
|
|
|
|
if (path == "/") node = node.getParent(); // absolute root
|
|
|
|
if (!node.isDirectory()) return false;
|
|
|
|
|
|
|
|
// list directory
|
|
|
|
Common::FSList _nodeContent;
|
|
|
|
if (!node.getChildren(_nodeContent, Common::FSNode::kListAll, false)) // do not show hidden files
|
|
|
|
_nodeContent.clear();
|
|
|
|
else
|
|
|
|
Common::sort(_nodeContent.begin(), _nodeContent.end());
|
|
|
|
|
|
|
|
// add parent directory link
|
|
|
|
{
|
|
|
|
Common::String filePath = path;
|
|
|
|
if (filePath.hasPrefix(prefixToRemove))
|
|
|
|
filePath.erase(0, prefixToRemove.size());
|
|
|
|
if (filePath == "" || filePath == "/" || filePath == "\\")
|
|
|
|
filePath = "/";
|
|
|
|
else
|
|
|
|
filePath = parentPath(prefixToAdd + filePath);
|
2016-07-15 13:46:43 +06:00
|
|
|
addItem(content, itemTemplate, IT_PARENT_DIRECTORY, filePath, _("Parent directory"));
|
2016-07-06 16:48:56 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
// fill the content
|
|
|
|
for (Common::FSList::iterator i = _nodeContent.begin(); i != _nodeContent.end(); ++i) {
|
|
|
|
Common::String name = i->getDisplayName();
|
|
|
|
if (i->isDirectory()) name += "/";
|
|
|
|
|
|
|
|
Common::String filePath = i->getPath();
|
|
|
|
if (filePath.hasPrefix(prefixToRemove))
|
|
|
|
filePath.erase(0, prefixToRemove.size());
|
|
|
|
filePath = prefixToAdd + filePath;
|
|
|
|
|
2016-07-15 13:46:43 +06:00
|
|
|
addItem(content, itemTemplate, detectType(i->isDirectory(), name), filePath, name);
|
2016-07-06 16:48:56 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-07-15 13:46:43 +06:00
|
|
|
FilesPageHandler::ItemType FilesPageHandler::detectType(bool isDirectory, const Common::String &name) const {
|
|
|
|
if (isDirectory) return IT_DIRECTORY;
|
|
|
|
if (name.hasSuffix(".txt")) return IT_TXT;
|
|
|
|
if (name.hasSuffix(".zip")) return IT_ZIP;
|
|
|
|
if (name.hasSuffix(".7z")) return IT_7Z;
|
|
|
|
return IT_UNKNOWN;
|
|
|
|
}
|
|
|
|
|
|
|
|
void FilesPageHandler::addItem(Common::String &content, const Common::String &itemTemplate, ItemType itemType, Common::String path, Common::String name, Common::String size) {
|
|
|
|
Common::String item = itemTemplate, icon;
|
|
|
|
bool isDirectory = (itemType == IT_DIRECTORY || itemType == IT_PARENT_DIRECTORY);
|
|
|
|
switch (itemType) {
|
|
|
|
case IT_DIRECTORY: icon = "dir.png"; break;
|
|
|
|
case IT_PARENT_DIRECTORY: icon = "up.png"; break;
|
|
|
|
case IT_TXT: icon = "txt.png"; break;
|
|
|
|
case IT_ZIP: icon = "zip.png"; break;
|
|
|
|
case IT_7Z: icon = "7z.png"; break;
|
|
|
|
default: icon = "unk.png";
|
|
|
|
}
|
|
|
|
replace(item, "{icon}", icon);
|
2016-07-07 15:01:07 +06:00
|
|
|
replace(item, "{link}", (isDirectory ? "files?path=" : "download?path=") + LocalWebserver::urlEncodeQueryParameterValue(path));
|
2016-07-06 16:48:56 +06:00
|
|
|
replace(item, "{name}", name);
|
|
|
|
replace(item, "{size}", size);
|
|
|
|
content += item;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// public
|
|
|
|
|
|
|
|
ClientHandlerCallback FilesPageHandler::getHandler() {
|
|
|
|
return new Common::Callback<FilesPageHandler, Client &>(this, &FilesPageHandler::handle);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // End of namespace Networking
|