view include/core/http.h @ 234:8ccf0302afb1

dep/animia: convert xlib code to xcb I'm not *entirely* sure if this will work correctly for everything, but it works fine enough
author Paper <mrpapersonic@gmail.com>
date Tue, 16 Jan 2024 08:08:42 -0500
parents 2f5a9247e501
children 4d461ef7d424
line wrap: on
line source

#ifndef __core__http_h
#define __core__http_h

#include <QByteArray>
#include <QThread>
#include <string>
#include <vector>

namespace HTTP {

QByteArray Get(const std::string& url, const std::vector<std::string>& headers = {});
QByteArray Post(const std::string& url, const std::string& data, const std::vector<std::string>& headers = {});

class GetThread : public QThread {
	Q_OBJECT

public:
	GetThread(const std::string& u, const std::vector<std::string>& h = {}) {
		url = u;
		headers = h;
	}

signals:
	void ReceivedData(const QByteArray& ba);

protected:
	void run() override {
		emit ReceivedData(Get(url, headers));
	}

	std::string url;
	std::vector<std::string> headers;
};

class PostThread : public QThread {
	Q_OBJECT

public:
	PostThread(const std::string& u, const std::string& d, const std::vector<std::string>& h = {}) {
		url = u;
		data = d;
		headers = h;
	}

signals:
	void ReceivedData(const QByteArray& ba);

protected:
	void run() override {
		emit ReceivedData(Post(url, data, headers));
	}

	std::string url;
	std::string data;
	std::vector<std::string> headers;
};

} // namespace HTTP

#endif // __core__http_h