Compare commits
2 Commits
ca0c8a94fb
...
b2a7ea4031
Author | SHA1 | Date | |
---|---|---|---|
b2a7ea4031 | |||
1d5bf80710 |
@ -167,6 +167,7 @@ Response HandlerPageView::handleRequest(PageDao &pageDao, std::string pagename,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
std::string revisionstr = std::to_string(revision->revision);
|
std::string revisionstr = std::to_string(revision->revision);
|
||||||
|
std::string customtitle = parser.extractCommand("pagetitle", revision->content);
|
||||||
page.setVar("content", parsedcontent);
|
page.setVar("content", parsedcontent);
|
||||||
page.setVar("index", indexcontent);
|
page.setVar("index", indexcontent);
|
||||||
page.setVar("editedby", revision->author);
|
page.setVar("editedby", revision->author);
|
||||||
@ -174,6 +175,10 @@ Response HandlerPageView::handleRequest(PageDao &pageDao, std::string pagename,
|
|||||||
page.setVar("historyurl", this->urlProvider->pageHistory(pagename));
|
page.setVar("historyurl", this->urlProvider->pageHistory(pagename));
|
||||||
page.setVar("revision", revisionstr);
|
page.setVar("revision", revisionstr);
|
||||||
setPageVars(page, pagename);
|
setPageVars(page, pagename);
|
||||||
|
if(!customtitle.empty())
|
||||||
|
{
|
||||||
|
page.setVar("title", createPageTitle(customtitle));
|
||||||
|
}
|
||||||
std::string body = page.render();
|
std::string body = page.render();
|
||||||
if(revisionid == 0 && !this->userSession->loggedIn)
|
if(revisionid == 0 && !this->userSession->loggedIn)
|
||||||
{
|
{
|
||||||
|
@ -8,10 +8,10 @@
|
|||||||
class IParser
|
class IParser
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
virtual std::string extractCommand(std::string cmdname, std::string content) const = 0;
|
virtual std::string extractCommand(std::string cmdname, const std::string &content) const = 0;
|
||||||
virtual std::vector<Headline> extractHeadlines(std::string content) const = 0;
|
virtual std::vector<Headline> extractHeadlines(const std::string &content) const = 0;
|
||||||
virtual std::string parse(const PageDao &pagedao, UrlProvider &provider, std::string content) const = 0;
|
virtual std::string parse(const PageDao &pagedao, UrlProvider &provider, const std::string &content) const = 0;
|
||||||
virtual std::vector<std::string> extractCategories(std::string content) const = 0;
|
virtual std::vector<std::string> extractCategories(const std::string &content) const = 0;
|
||||||
|
|
||||||
virtual ~IParser(){};
|
virtual ~IParser(){};
|
||||||
};
|
};
|
||||||
|
53
parser.cpp
53
parser.cpp
@ -27,7 +27,7 @@ SOFTWARE.
|
|||||||
#include "parser.h"
|
#include "parser.h"
|
||||||
#include "utils.h"
|
#include "utils.h"
|
||||||
#include "htmllink.h"
|
#include "htmllink.h"
|
||||||
std::vector<Headline> Parser::extractHeadlines(std::string content) const
|
std::vector<Headline> Parser::extractHeadlines(const std::string &content) const
|
||||||
{
|
{
|
||||||
std::vector<Headline> result;
|
std::vector<Headline> result;
|
||||||
std::string reg = R"(\[h(1|2|3)\](.*?)\[/h\1\])";
|
std::string reg = R"(\[h(1|2|3)\](.*?)\[/h\1\])";
|
||||||
@ -46,7 +46,7 @@ std::vector<Headline> Parser::extractHeadlines(std::string content) const
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::vector<std::string> Parser::extractCategories(std::string content) const
|
std::vector<std::string> Parser::extractCategories(const std::string &content) const
|
||||||
{
|
{
|
||||||
std::vector<std::string> result;
|
std::vector<std::string> result;
|
||||||
std::string reg = R"(\[category\](.*?)\[/category\])";
|
std::string reg = R"(\[category\](.*?)\[/category\])";
|
||||||
@ -62,7 +62,7 @@ std::vector<std::string> Parser::extractCategories(std::string content) const
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string Parser::extractCommand(std::string cmdname, std::string content) const
|
std::string Parser::extractCommand(std::string cmdname, const std::string &content) const
|
||||||
{
|
{
|
||||||
std::string cmd = "[cmd:" + cmdname + "]";
|
std::string cmd = "[cmd:" + cmdname + "]";
|
||||||
std::string cmdend = "[/cmd:" + cmdname + "]";
|
std::string cmdend = "[/cmd:" + cmdname + "]";
|
||||||
@ -116,31 +116,36 @@ std::string Parser::processLink(const PageDao &pageDao, UrlProvider &urlProvider
|
|||||||
return htmllink.render();
|
return htmllink.render();
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string Parser::parse(const PageDao &pagedao, UrlProvider &provider, std::string content) const
|
std::string Parser::parse(const PageDao &pagedao, UrlProvider &provider, const std::string &content) const
|
||||||
{
|
{
|
||||||
std::string result;
|
std::string result;
|
||||||
// we don't care about commands, but we nevertheless replace them with empty strings
|
// we don't care about commands, but we nevertheless replace them with empty strings
|
||||||
std::regex tagfinder(R"(\[(b|i|u|li||ul|ol|link|wikilink|h\d|cmd:rename|cmd:redirect|category)*?\]((\s|\S)*?)\[/\1])");
|
std::regex tagfinder(
|
||||||
result = utils::regex_callback_replacer(tagfinder, content, [&](std::smatch &match) {
|
R"(\[(b|i|u|li||ul|ol|link|wikilink|h\d|cmd:rename|cmd:redirect|cmd:pagetitle|category)*?\]((\s|\S)*?)\[/\1])");
|
||||||
std::string tag = match.str(1);
|
result = utils::regex_callback_replacer(
|
||||||
std::string content = match.str(2);
|
tagfinder, content,
|
||||||
std::string justreplace[] = {"b", "i", "u", "ul", "li", "ol"};
|
[&](std::smatch &match)
|
||||||
content = parse(pagedao, provider, content);
|
|
||||||
if(std::find(std::begin(justreplace), std::end(justreplace), tag) != std::end(justreplace))
|
|
||||||
{
|
{
|
||||||
return "<" + tag + ">" + content + "</" + tag + ">";
|
std::string tag = match.str(1);
|
||||||
}
|
std::string content = match.str(2);
|
||||||
if(tag == "link" || tag == "wikilink")
|
std::string justreplace[] = {"b", "i", "u", "ul", "li", "ol"};
|
||||||
{
|
content = parse(pagedao, provider, content);
|
||||||
return this->processLink(pagedao, provider,
|
if(std::find(std::begin(justreplace), std::end(justreplace), tag) != std::end(justreplace))
|
||||||
match); // TODO: recreate this so we don't check inside the function stuff again
|
{
|
||||||
}
|
return "<" + tag + ">" + content + "</" + tag + ">";
|
||||||
if(tag[0] == 'h')
|
}
|
||||||
{
|
if(tag == "link" || tag == "wikilink")
|
||||||
return "<" + tag + " id='" + content + "'>" + content + "</" + tag + ">";
|
{
|
||||||
}
|
return this->processLink(
|
||||||
return std::string("");
|
pagedao, provider,
|
||||||
});
|
match); // TODO: recreate this so we don't check inside the function stuff again
|
||||||
|
}
|
||||||
|
if(tag[0] == 'h')
|
||||||
|
{
|
||||||
|
return "<" + tag + " id='" + content + "'>" + content + "</" + tag + ">";
|
||||||
|
}
|
||||||
|
return std::string("");
|
||||||
|
});
|
||||||
result = utils::strreplace(result, "\r\n", "<br>");
|
result = utils::strreplace(result, "\r\n", "<br>");
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
8
parser.h
8
parser.h
@ -8,10 +8,10 @@ class Parser : public IParser
|
|||||||
std::string processLink(const PageDao &pageDao, UrlProvider &urlProvider, std::smatch &match) const;
|
std::string processLink(const PageDao &pageDao, UrlProvider &urlProvider, std::smatch &match) const;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
std::string extractCommand(std::string cmdname, std::string content) const;
|
std::string extractCommand(std::string cmdname, const std::string &content) const;
|
||||||
std::vector<Headline> extractHeadlines(std::string content) const override;
|
std::vector<Headline> extractHeadlines(const std::string &content) const override;
|
||||||
std::vector<std::string> extractCategories(std::string content) const override;
|
std::vector<std::string> extractCategories(const std::string &content) const override;
|
||||||
std::string parse(const PageDao &pagedao, UrlProvider &provider, std::string content) const override;
|
std::string parse(const PageDao &pagedao, UrlProvider &provider, const std::string &content) const override;
|
||||||
using IParser::IParser;
|
using IParser::IParser;
|
||||||
~Parser(){};
|
~Parser(){};
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user