2015-09-13 20:25:26 +00:00
|
|
|
///
|
2017-10-31 18:07:12 +00:00
|
|
|
/// Copyright 2016-2017 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/>
|
|
|
|
///
|
|
|
|
#include "resources.h"
|
|
|
|
#include <string.h>
|
|
|
|
|
2017-10-31 18:07:12 +00:00
|
|
|
#define INIT_RESOURCE(route, name, content_type) \
|
2015-09-13 20:25:26 +00:00
|
|
|
extern const char _binary_##name##_z_start[];\
|
|
|
|
extern const char _binary_##name##_z_end[]; \
|
2017-10-31 18:07:12 +00:00
|
|
|
resources.emplace(route, Resource{_binary_ ## name ## _z_start, _binary_ ## name ## _z_end, content_type})
|
|
|
|
|
|
|
|
#define CONTENT_TYPE_HTML "text/html; charset=utf-8"
|
|
|
|
#define CONTENT_TYPE_ICO "image/x-icon"
|
|
|
|
#define CONTENT_TYPE_PNG "image/png"
|
|
|
|
#define CONTENT_TYPE_GIF "image/gif"
|
|
|
|
#define CONTENT_TYPE_JS "application/javascript; charset=utf-8"
|
|
|
|
#define CONTENT_TYPE_CSS "text/css; charset=utf-8"
|
2015-09-13 20:25:26 +00:00
|
|
|
|
|
|
|
Resources::Resources()
|
|
|
|
{
|
2017-10-31 18:07:12 +00:00
|
|
|
INIT_RESOURCE("/", index_html, CONTENT_TYPE_HTML);
|
|
|
|
INIT_RESOURCE("/favicon.ico", favicon_ico, CONTENT_TYPE_ICO);
|
|
|
|
INIT_RESOURCE("/favicon-152.png", favicon_152_png, CONTENT_TYPE_PNG);
|
|
|
|
INIT_RESOURCE("/icon.png", icon_png, CONTENT_TYPE_PNG);
|
2017-12-02 16:30:45 +00:00
|
|
|
INIT_RESOURCE("/tick.gif", tick_gif, CONTENT_TYPE_GIF);
|
|
|
|
INIT_RESOURCE("/cross.gif", cross_gif, CONTENT_TYPE_GIF);
|
|
|
|
INIT_RESOURCE("/spin.gif", spin_gif, CONTENT_TYPE_GIF);
|
2017-10-31 18:07:12 +00:00
|
|
|
INIT_RESOURCE("/js/app.js", js_app_js, CONTENT_TYPE_JS);
|
|
|
|
INIT_RESOURCE("/js/Chart.HorizontalBar.js", js_Chart_HorizontalBar_js, CONTENT_TYPE_JS);
|
|
|
|
INIT_RESOURCE("/js/ansi_up.js", js_ansi_up_js, CONTENT_TYPE_JS);
|
|
|
|
INIT_RESOURCE("/js/vue.min.js", js_vue_min_js, CONTENT_TYPE_JS);
|
|
|
|
INIT_RESOURCE("/js/vue-router.min.js", js_vue_router_min_js, CONTENT_TYPE_JS);
|
|
|
|
INIT_RESOURCE("/js/ansi_up.js", js_ansi_up_js, CONTENT_TYPE_JS);
|
|
|
|
INIT_RESOURCE("/js/Chart.min.js", js_Chart_min_js, CONTENT_TYPE_JS);
|
|
|
|
INIT_RESOURCE("/js/Chart.HorizontalBar.js", js_Chart_HorizontalBar_js, CONTENT_TYPE_JS);
|
|
|
|
INIT_RESOURCE("/css/bootstrap.min.css", css_bootstrap_min_css, CONTENT_TYPE_CSS);
|
2015-09-13 20:25:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline bool beginsWith(std::string haystack, const char* needle) {
|
|
|
|
return strncmp(haystack.c_str(), needle, strlen(needle)) == 0;
|
|
|
|
}
|
|
|
|
|
2017-10-31 18:07:12 +00:00
|
|
|
bool Resources::handleRequest(std::string path, const char** start, const char** end, const char** content_type) {
|
2015-09-13 20:25:26 +00:00
|
|
|
// need to keep the list of "application links" synchronised with the angular
|
|
|
|
// application. We cannot return a 404 for any of these
|
|
|
|
auto it = beginsWith(path,"/jobs")
|
|
|
|
? resources.find("/")
|
|
|
|
: resources.find(path);
|
|
|
|
|
|
|
|
if(it != resources.end()) {
|
2017-10-31 18:07:12 +00:00
|
|
|
*start = it->second.start;
|
|
|
|
*end = it->second.end;
|
|
|
|
*content_type = it->second.content_type;
|
2015-09-13 20:25:26 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|