mirror of
https://github.com/leejet/stable-diffusion.cpp
synced 2026-04-20 13:56:07 +02:00
23 lines
864 B
C++
23 lines
864 B
C++
#include "routes.h"
|
|
|
|
#include <fstream>
|
|
#include <iterator>
|
|
|
|
void register_index_endpoints(httplib::Server& svr, const SDSvrParams& svr_params, const std::string& index_html) {
|
|
const std::string serve_html_path = svr_params.serve_html_path;
|
|
svr.Get("/", [serve_html_path, index_html](const httplib::Request&, httplib::Response& res) {
|
|
if (!serve_html_path.empty()) {
|
|
std::ifstream file(serve_html_path);
|
|
if (file) {
|
|
std::string content((std::istreambuf_iterator<char>(file)), std::istreambuf_iterator<char>());
|
|
res.set_content(content, "text/html");
|
|
} else {
|
|
res.status = 500;
|
|
res.set_content("Error: Unable to read HTML file", "text/plain");
|
|
}
|
|
} else {
|
|
res.set_content(index_html, "text/html");
|
|
}
|
|
});
|
|
}
|