2018-02-07 10:37:15 +00:00
|
|
|
#ifndef slic3r_OctoPrint_hpp_
|
|
|
|
#define slic3r_OctoPrint_hpp_
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2018-03-02 14:05:17 +00:00
|
|
|
// #include "Http.hpp" // XXX: ?
|
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-02-20 14:37:26 +00:00
|
|
|
std::string test() const;
|
|
|
|
// XXX: style
|
|
|
|
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;
|
|
|
|
static std::string format_error(std::string error, unsigned status);
|
2018-02-07 10:37:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|