PrusaSlicer-NonPlainar/xs/src/slic3r/Utils/OctoPrint.hpp

35 lines
583 B
C++
Raw Normal View History

2018-02-07 10:37:15 +00:00
#ifndef slic3r_OctoPrint_hpp_
#define slic3r_OctoPrint_hpp_
#include <string>
#include <wx/string.h>
2018-02-07 10:37:15 +00:00
namespace Slic3r {
class DynamicPrintConfig;
class Http;
class OctoPrint
{
public:
2018-02-20 14:37:26 +00:00
OctoPrint(DynamicPrintConfig *config);
2018-02-07 10:37:15 +00:00
bool test(wxString &curl_msg) const;
bool send_gcode(const std::string &filename, bool print = false) const;
2018-02-07 10:37:15 +00:00
private:
2018-02-20 14:37:26 +00:00
std::string host;
std::string apikey;
std::string cafile;
2018-02-07 10:37:15 +00:00
2018-02-20 14:37:26 +00:00
void set_auth(Http &http) const;
std::string make_url(const std::string &path) const;
static wxString format_error(std::string error, unsigned status);
2018-02-07 10:37:15 +00:00
};
}
#endif