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

43 lines
915 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
#include "PrintHost.hpp"
2018-02-07 10:37:15 +00:00
namespace Slic3r {
class DynamicPrintConfig;
class Http;
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
bool test(wxString &curl_msg) const;
wxString get_test_ok_msg () const;
wxString get_test_failed_msg (wxString &msg) const;
bool upload(PrintHostUpload upload_data, Http::ProgressFn prorgess_fn, Http::ErrorFn error_fn) const;
2018-08-21 09:10:32 +00:00
bool has_auto_discovery() const;
bool can_test() const;
virtual std::string get_host() const { return host; }
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