rcpp_framework/modules/list_page/list_page.cpp

87 lines
1.5 KiB
C++
Raw Normal View History

2020-12-26 00:18:11 +01:00
#include "list_page.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>
2020-12-26 00:18:11 +01:00
void ListPage::index(Request *request) {
String r = "";
2020-12-26 00:18:11 +01:00
for (uint32_t i = 0; i < list_entries.size(); ++i) {
r += "<div class=\"list_entry\">" + list_entries[i] + "</div>";
2020-12-26 00:18:11 +01:00
}
request->body += r;
request->compile_and_send_body();
}
void ListPage::load() {
if (folder == "") {
printf("Error: ListPage::load called, but a folder is not set!");
return;
}
2020-12-26 00:18:11 +01:00
std::vector<String> files;
2020-12-26 00:18:11 +01:00
tinydir_dir dir;
if (tinydir_open(&dir, folder.c_str()) == -1) {
printf("Error opening ListPage::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) {
String np = file.path;
files.push_back(np);
}
tinydir_next(&dir);
}
tinydir_close(&dir);
//todo
//std::sort(files.begin(), files.end());
for (uint32_t i = 0; i < files.size(); ++i) {
FILE *f = fopen(files[i].c_str(), "r");
if (!f) {
printf("Settings::parse_file: Error opening file!\n");
return;
}
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);
list_entries.push_back(fd);
}
2020-12-26 00:18:11 +01:00
}
ListPage::ListPage() :
Object() {
}
ListPage::~ListPage() {
}