2018-02-07 10:37:15 +00:00
|
|
|
#ifndef slic3r_OctoPrint_hpp_
|
|
|
|
#define slic3r_OctoPrint_hpp_
|
|
|
|
|
|
|
|
#include <string>
|
2018-03-15 17:06:26 +00:00
|
|
|
#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
|
|
|
|
2018-03-15 17:06:26 +00:00
|
|
|
bool test(wxString &curl_msg) const;
|
2018-02-20 14:37:26 +00:00
|
|
|
void send_gcode(int windowId, int completeEvt, int errorEvt, 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;
|
2018-03-15 17:06:26 +00:00
|
|
|
static wxString format_error(std::string error, unsigned status);
|
2018-02-07 10:37:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|