2015-09-13 20:25:26 +00:00
|
|
|
///
|
2019-03-29 19:43:16 +00:00
|
|
|
/// Copyright 2015-2019 Oliver Giles
|
2015-09-13 20:25:26 +00:00
|
|
|
///
|
|
|
|
/// This file is part of Laminar
|
|
|
|
///
|
|
|
|
/// Laminar is free software: you can redistribute it and/or modify
|
|
|
|
/// it under the terms of the GNU General Public License as published by
|
|
|
|
/// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
/// (at your option) any later version.
|
|
|
|
///
|
2015-09-24 19:07:48 +00:00
|
|
|
/// Laminar is distributed in the hope that it will be useful,
|
2015-09-13 20:25:26 +00:00
|
|
|
/// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
/// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
/// GNU General Public License for more details.
|
|
|
|
///
|
|
|
|
/// You should have received a copy of the GNU General Public License
|
|
|
|
/// along with Laminar. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
///
|
2017-12-20 06:24:25 +00:00
|
|
|
#ifndef LAMINAR_RESOURCES_H_
|
|
|
|
#define LAMINAR_RESOURCES_H_
|
2015-09-13 20:25:26 +00:00
|
|
|
|
|
|
|
#include <unordered_map>
|
|
|
|
#include <utility>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
// Simple class to abstract away the mapping of HTTP requests for
|
|
|
|
// resources to their data.
|
|
|
|
class Resources {
|
|
|
|
public:
|
|
|
|
Resources();
|
|
|
|
|
|
|
|
// If a resource is known for the given path, set start and end to the
|
2017-10-31 18:07:12 +00:00
|
|
|
// binary data to send to the client, and content_type to its MIME
|
|
|
|
// type. Function returns false if no resource for the given path exists
|
|
|
|
bool handleRequest(std::string path, const char** start, const char** end, const char** content_type);
|
2015-09-13 20:25:26 +00:00
|
|
|
|
2020-03-10 17:40:14 +00:00
|
|
|
// Allows providing a custom HTML template. Pass an empty string to use the default.
|
|
|
|
void setHtmlTemplate(std::string templ = std::string());
|
|
|
|
|
2015-09-13 20:25:26 +00:00
|
|
|
private:
|
2017-10-31 18:07:12 +00:00
|
|
|
struct Resource {
|
|
|
|
const char* start;
|
|
|
|
const char* end;
|
|
|
|
const char* content_type;
|
|
|
|
};
|
2019-03-29 19:43:16 +00:00
|
|
|
std::unordered_map<std::string, Resource> resources;
|
|
|
|
std::string index_html;
|
2015-09-13 20:25:26 +00:00
|
|
|
};
|
|
|
|
|
2017-12-20 06:24:25 +00:00
|
|
|
#endif // LAMINAR_RESOURCES_H_
|