1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
|
/*
The MIT License (MIT)
Copyright (c) 2012 Cyril Margorin, Imperx Inc. and other contributors
https://code.google.com/p/parsewebdata/
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
/*
* ParseMultipartFormData.cpp
*
* Created on: Jul 10, 2012
* Author: cyril
*/
#include <parsewebdata/ParseWebData.h>
#include "parsewebdata/ParseWebData_local.h"
#include "parsewebdata/ParseMultipartFormData.h"
#include <sstream>
#include <algorithm>
namespace ParseWebData {
namespace ParseMultipartFormData {
class ParseData {
public:
ParseData(WebDataMap& _dataMap) :
dataMap(_dataMap) {
}
void operator()(std::string data) {
WebData outData;
std::istringstream dataStream(data);
std::string header;
while (true) {
std::string line;
std::getline(dataStream, line);
if (line.rfind('\r') == line.length() - 1)
line.erase(line.rfind('\r'), 1);
if (line.empty())
break;
header += line + "\n";
}
outData.attributes = map_pairs(header, "\n", ": ");
string_map::iterator iter = outData.attributes.find(
"Content-Disposition");
if (iter != outData.attributes.end()) {
string_map extraParam = map_pairs(
std::string("type=") + (*iter).second, "; ", "=");
outData.attributes.erase(iter);
outData.attributes.insert(extraParam.begin(), extraParam.end());
}
for (iter = outData.attributes.begin();
iter != outData.attributes.end(); ++iter) {
std::string::size_type start = (*iter).second.find_first_not_of(
"\"");
std::string::size_type stop = (*iter).second.find_last_not_of("\"");
if (start == std::string::npos)
(*iter).second.clear();
else
(*iter).second = (*iter).second.substr(start, stop - start + 1);
}
std::ostringstream valueStream;
std::copy(std::istreambuf_iterator<char>(dataStream),
std::istreambuf_iterator<char>(),
std::ostreambuf_iterator<char>(valueStream));
outData.value = valueStream.str();
dataMap.insert(std::make_pair(outData.attributes["name"], outData));
}
private:
WebDataMap& dataMap;
};
void sanitize_parts(string_list& parts) {
string_list::iterator iter = parts.begin();
while (iter != parts.end()) {
if ((*iter).find("--\r\n") == 0) { // If part starts with --\r\n - it is last boundary. remove
iter = parts.erase(iter);
continue;
}
if ((*iter).find("\r\n") == 0) { // Due to split command all parts starts with empty line. Remove it
(*iter).erase(0, 2);
}
if ((*iter).rfind("\r\n") == (*iter).length() - 2) { // Due to split command all parts ends with CRLF. Remove it
(*iter).erase((*iter).rfind("\r\n"), 2);
}
++iter;
}
}
bool parse_data(const std::string& data, const string_map& content_type,
WebDataMap& dataMap) {
string_map::const_iterator bndIter = content_type.find("boundary");
if (content_type.end() == bndIter) // No boundary indicator!
return false;
string_list parts = split(data, std::string("--") + bndIter->second, false);
sanitize_parts(parts);
std::for_each(parts.begin(), parts.end(), ParseData(dataMap));
return true;
}
} // namespace ParseMultipartFormData
} // namespace ParseWebData
|