web::url::mapping::Pattern: fix reconstruct method

This commit is contained in:
Leonid Stryzhevskyi 2024-12-12 04:46:57 +02:00
parent 702f465c40
commit c59248414e
2 changed files with 5 additions and 4 deletions

View File

@ -181,15 +181,17 @@ bool Pattern::match(const StringKeyLabel& url, MatchMap& matchMap) const {
}
oatpp::String Pattern::reconstruct(const data::mapping::Tree& params, const oatpp::String& tail) const {
oatpp::String Pattern::reconstruct(const std::unordered_map<oatpp::String, oatpp::String>& params, const oatpp::String& tail) const {
oatpp::data::stream::BufferOutputStream stream;
for (const std::shared_ptr<Part>& part : *m_parts) {
if(part->function == Part::FUNCTION_CONST) {
stream.writeSimple("/", 1);
stream.writeSimple(part->text);
} else if(part->function == Part::FUNCTION_VAR) {
stream.writeSimple(params[part->text].toString());
stream.writeSimple("/", 1);
stream.writeSimple(params.at(part->text));
} else if(part->function == Part::FUNCTION_ANY_END) {
stream.writeSimple("/", 1);
stream.writeSimple(tail);
}
}

View File

@ -27,7 +27,6 @@
#include "oatpp/data/share/MemoryLabel.hpp"
#include "oatpp/utils/parser/Caret.hpp"
#include "oatpp/data/mapping/Tree.hpp"
#include <list>
#include <unordered_map>
@ -112,7 +111,7 @@ public:
bool match(const StringKeyLabel& url, MatchMap& matchMap) const;
oatpp::String reconstruct(const data::mapping::Tree& params, const oatpp::String& tail) const;
oatpp::String reconstruct(const std::unordered_map<oatpp::String, oatpp::String>& params, const oatpp::String& tail) const;
oatpp::String toString() const;
};