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
|
|
|
|
2018-07-08 12:32:48 +00:00
|
|
|
#include "PrintHost.hpp"
|
|
|
|
|
2018-02-07 10:37:15 +00:00
|
|
|
|
|
|
|
namespace Slic3r {
|
|
|
|
|
|
|
|
|
|
|
|
class DynamicPrintConfig;
|
|
|
|
class Http;
|
|
|
|
|
2018-07-08 12:32:48 +00:00
|
|
|
class OctoPrint : public PrintHost
|
2018-02-07 10:37:15 +00:00
|
|
|
{
|
|
|
|
public:
|
2018-02-20 14:37:26 +00:00
|
|
|
OctoPrint(DynamicPrintConfig *config);
|
2018-08-21 09:10:32 +00:00
|
|
|
virtual ~OctoPrint();
|
2018-02-07 10:37:15 +00:00
|
|
|
|
2018-03-15 17:06:26 +00:00
|
|
|
bool test(wxString &curl_msg) const;
|
2018-07-08 12:32:48 +00:00
|
|
|
wxString get_test_ok_msg () const;
|
|
|
|
wxString get_test_failed_msg (wxString &msg) const;
|
2018-06-12 10:32:03 +00:00
|
|
|
// Send gcode file to octoprint, filename is expected to be in UTF-8
|
2018-05-23 10:47:39 +00:00
|
|
|
bool send_gcode(const std::string &filename) const;
|
2018-08-21 09:10:32 +00:00
|
|
|
bool has_auto_discovery() const;
|
2018-07-08 12:32:48 +00:00
|
|
|
bool can_test() 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-06-27 15:00:20 +00:00
|
|
|
static wxString format_error(const std::string &body, const std::string &error, unsigned status);
|
2018-02-07 10:37:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|