70 lines
1.8 KiB
C++
70 lines
1.8 KiB
C++
#include "MacroDefinitions.h"
|
|
|
|
#include <string>
|
|
#include <fstream>
|
|
#include <cstring>
|
|
#include <filesystem>
|
|
|
|
#include "BlogPageBuilder.h"
|
|
|
|
|
|
std::string findAndReplace(std::string text, std::string find, std::string replace)
|
|
{
|
|
int pos = 0;
|
|
while (true)
|
|
{
|
|
pos = text.find(find, pos+1);
|
|
|
|
if (pos == std::string::npos)
|
|
break;
|
|
text.replace(pos, 1, replace);
|
|
}
|
|
|
|
return text;
|
|
}
|
|
|
|
std::string getArg(int argc, char* argv[], std::string argIdString)
|
|
{
|
|
for (int i = 0; i < argc; i++)
|
|
{
|
|
int idValSplit = argIdString.length()-1;
|
|
const char* argId = argIdString.c_str();
|
|
if (strncmp(argId, argv[i], idValSplit) == 0)
|
|
return std::string(argv[i]).substr(idValSplit+1, strlen(argv[i])-(idValSplit+1));
|
|
}
|
|
return "";
|
|
}
|
|
|
|
void copyFolderAndContents(std::string inUrl, std::string outUrl)
|
|
{
|
|
std::filesystem::copy_options opts = std::filesystem::copy_options::update_existing |
|
|
std::filesystem::copy_options::recursive;
|
|
std::filesystem::copy(inUrl, outUrl, opts);
|
|
}
|
|
|
|
/*
|
|
* -in="" // give source folder
|
|
* -out="" // give output folder
|
|
*/
|
|
int main(int argc, char* argv[])
|
|
{
|
|
std::string source = getArg(argc, argv, "-in=");
|
|
if (source == "")
|
|
source = SOURCE_FILE_FOLDER;
|
|
std::string output = getArg(argc, argv, "-out=");
|
|
if (output == "")
|
|
output = OUTPUT_FILE_FOLDER;
|
|
|
|
// generated pages
|
|
BlogPageBuilder* builder = new BlogPageBuilder(RESOURCE_FOLDER "/Templates/BlogPageTemplate.html", source, output);
|
|
builder->buildAllPages();
|
|
|
|
// pre-written pages and resources i.e. images
|
|
copyFolderAndContents(STATIC_RESOURCES_FOLDER, output);
|
|
|
|
}
|
|
|
|
// TODO: get images and resources moved across to output
|
|
// TODO: nav sections :eww:
|
|
// TODO: copy static pages over
|
|
// TODO: code doesnt copy moomin
|