mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-10 00:52:11 +01:00
230 lines
4.4 KiB
C++
230 lines
4.4 KiB
C++
#include "paged_article.h"
|
|
|
|
#include "core/database/query_builder.h"
|
|
#include "core/database/query_result.h"
|
|
#include "core/database/table_builder.h"
|
|
#include "core/utils.h"
|
|
|
|
#include <tinydir/tinydir.h>
|
|
#include <iostream>
|
|
|
|
void PagedArticle::index(Request *request) {
|
|
const String r = request->get_current_path_segment();
|
|
|
|
Article *s = pages[r];
|
|
|
|
if (s == nullptr) {
|
|
request->send_error(404);
|
|
return;
|
|
}
|
|
|
|
request->push_path();
|
|
|
|
const String rp = request->get_current_path_segment();
|
|
|
|
if (request->get_remaining_segment_count() > 1 && rp == "files") {
|
|
String file_name = "/" + request->get_path_segment(request->get_current_segment_index() + 1);
|
|
|
|
if (s->file_cache->wwwroot_has_file(file_name)) {
|
|
String fp = s->file_cache->wwwroot + file_name;
|
|
|
|
request->send_file(fp);
|
|
return;
|
|
}
|
|
}
|
|
|
|
if (rp == "") {
|
|
//summary page
|
|
request->body += s->summary_page;
|
|
|
|
request->compile_and_send_body();
|
|
request->pop_path();
|
|
return;
|
|
}
|
|
|
|
const String *page = s->pages[rp];
|
|
|
|
if (page == nullptr) {
|
|
//bad url
|
|
request->send_error(404);
|
|
return;
|
|
}
|
|
|
|
request->body += (*page);
|
|
request->compile_and_send_body();
|
|
request->pop_path();
|
|
}
|
|
|
|
void PagedArticle::load() {
|
|
if (folder == "") {
|
|
printf("Error: PagedArticle::load called, but a folder is not set!");
|
|
return;
|
|
}
|
|
|
|
if (base_path.size() > 0 && base_path[base_path.size() - 1] == '/') {
|
|
base_path.pop_back();
|
|
}
|
|
|
|
if (folder.size() > 0 && folder[folder.size() - 1] == '/') {
|
|
folder.pop_back();
|
|
}
|
|
|
|
tinydir_dir dir;
|
|
if (tinydir_open(&dir, folder.c_str()) == -1) {
|
|
printf("Error opening PagedArticle::folder! folder: %s\n", folder.c_str());
|
|
return;
|
|
}
|
|
|
|
while (dir.has_next) {
|
|
tinydir_file file;
|
|
if (tinydir_readfile(&dir, &file) == -1) {
|
|
tinydir_next(&dir);
|
|
continue;
|
|
}
|
|
|
|
if (file.is_dir) {
|
|
if (file.name[0] == '.' || (file.name[0] == '.' && file.name[1] == '.')) {
|
|
tinydir_next(&dir);
|
|
continue;
|
|
}
|
|
|
|
String np = file.path;
|
|
String fn = file.name;
|
|
|
|
String ff = folder + "/" + fn;
|
|
String wp = base_path + "/" + fn;
|
|
|
|
Article *a = load_folder(np, wp);
|
|
|
|
if (a) {
|
|
|
|
String p = file.name;
|
|
|
|
a->url = p;
|
|
pages[p] = a;
|
|
}
|
|
|
|
a->file_cache->wwwroot = (ff + "/files");
|
|
a->file_cache->wwwroot_refresh_cache();
|
|
}
|
|
|
|
tinydir_next(&dir);
|
|
}
|
|
|
|
tinydir_close(&dir);
|
|
|
|
generate_summaries();
|
|
}
|
|
|
|
Article *PagedArticle::load_folder(const String &folder, const String &path) {
|
|
printf("PagedArticle: loading: %s\n", folder.c_str());
|
|
|
|
Vector<String> files;
|
|
|
|
tinydir_dir dir;
|
|
if (tinydir_open(&dir, folder.c_str()) == -1) {
|
|
printf("PagedArticle::load_folder: Error opening folder %s!\n", folder.c_str());
|
|
return nullptr;
|
|
}
|
|
|
|
while (dir.has_next) {
|
|
tinydir_file file;
|
|
if (tinydir_readfile(&dir, &file) == -1) {
|
|
tinydir_next(&dir);
|
|
continue;
|
|
}
|
|
|
|
if (!file.is_dir) {
|
|
String np = file.name;
|
|
|
|
files.push_back(np);
|
|
}
|
|
|
|
tinydir_next(&dir);
|
|
}
|
|
|
|
tinydir_close(&dir);
|
|
|
|
if (files.size() == 0) {
|
|
return nullptr;
|
|
}
|
|
|
|
//todo
|
|
//std::sort(files.begin(), files.end());
|
|
|
|
Article *article = new Article();
|
|
|
|
for (uint32_t i = 0; i < files.size(); ++i) {
|
|
String file_path = folder;
|
|
|
|
if (file_path.size() > 0 && file_path[file_path.size() - 1] != '/')
|
|
file_path += "/";
|
|
|
|
file_path += files[i].c_str();
|
|
|
|
FILE *f = fopen(file_path.c_str(), "r");
|
|
|
|
if (!f) {
|
|
printf("PagedArticle::load_folder: Error opening file! %s\n", file_path.c_str());
|
|
continue;
|
|
}
|
|
|
|
fseek(f, 0, SEEK_END);
|
|
long fsize = ftell(f);
|
|
fseek(f, 0, SEEK_SET); /* same as rewind(f); */
|
|
|
|
String fd;
|
|
fd.resize(fsize);
|
|
|
|
fread(&fd[0], 1, fsize, f);
|
|
fclose(f);
|
|
|
|
Utils::markdown_to_html(&fd);
|
|
|
|
String pagination;
|
|
|
|
pagination = Utils::get_pagination_links(path, files, i);
|
|
|
|
String *finals = new String();
|
|
|
|
(*finals) += pagination;
|
|
(*finals) += fd;
|
|
(*finals) += pagination;
|
|
|
|
article->pages[files[i]] = finals;
|
|
|
|
if (i == 0) {
|
|
article->summary_page = (*finals);
|
|
}
|
|
}
|
|
|
|
return article;
|
|
}
|
|
|
|
void PagedArticle::generate_summaries() {
|
|
for (std::map<String, Article *>::iterator it = pages.begin(); it != pages.end(); ++it) {
|
|
generate_summary((*it).second);
|
|
}
|
|
}
|
|
|
|
void PagedArticle::generate_summary(Article *article) {
|
|
if (article->summary_page != "") {
|
|
return;
|
|
}
|
|
|
|
for (std::map<String, String *>::iterator it = article->pages.begin(); it != article->pages.end(); ++it) {
|
|
String *s = (*it).second;
|
|
|
|
if (s != nullptr) {
|
|
article->summary_page = (*s);
|
|
}
|
|
}
|
|
}
|
|
|
|
PagedArticle::PagedArticle() :
|
|
Object() {
|
|
}
|
|
|
|
PagedArticle::~PagedArticle() {
|
|
pages.clear();
|
|
} |