123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207 |
- /******************************************************************************
- Copyright (C) 2023 by Lain Bailey <[email protected]>
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 2 of the License, or
- (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
- ******************************************************************************/
- #include "RemoteTextThread.hpp"
- #include <OBSApp.hpp>
- #include <qt-wrappers.hpp>
- #include <util/curl/curl-helper.h>
- #include "moc_RemoteTextThread.cpp"
- using namespace std;
- static auto curl_deleter = [](CURL *curl) {
- curl_easy_cleanup(curl);
- };
- using Curl = unique_ptr<CURL, decltype(curl_deleter)>;
- static size_t string_write(char *ptr, size_t size, size_t nmemb, string &str)
- {
- size_t total = size * nmemb;
- if (total)
- str.append(ptr, total);
- return total;
- }
- void RemoteTextThread::run()
- {
- char error[CURL_ERROR_SIZE];
- CURLcode code;
- string versionString("User-Agent: obs-basic ");
- versionString += App()->GetVersionString();
- string contentTypeString;
- if (!contentType.empty()) {
- contentTypeString += "Content-Type: ";
- contentTypeString += contentType;
- }
- Curl curl{curl_easy_init(), curl_deleter};
- if (curl) {
- struct curl_slist *header = nullptr;
- string str;
- header = curl_slist_append(header, versionString.c_str());
- if (!contentTypeString.empty()) {
- header = curl_slist_append(header, contentTypeString.c_str());
- }
- for (std::string &h : extraHeaders)
- header = curl_slist_append(header, h.c_str());
- curl_easy_setopt(curl.get(), CURLOPT_URL, url.c_str());
- curl_easy_setopt(curl.get(), CURLOPT_ACCEPT_ENCODING, "");
- curl_easy_setopt(curl.get(), CURLOPT_HTTPHEADER, header);
- curl_easy_setopt(curl.get(), CURLOPT_ERRORBUFFER, error);
- curl_easy_setopt(curl.get(), CURLOPT_FAILONERROR, 1L);
- curl_easy_setopt(curl.get(), CURLOPT_WRITEFUNCTION, string_write);
- curl_easy_setopt(curl.get(), CURLOPT_WRITEDATA, &str);
- curl_obs_set_revoke_setting(curl.get());
- if (timeoutSec)
- curl_easy_setopt(curl.get(), CURLOPT_TIMEOUT, timeoutSec);
- if (!postData.empty()) {
- curl_easy_setopt(curl.get(), CURLOPT_POSTFIELDS, postData.c_str());
- }
- code = curl_easy_perform(curl.get());
- if (code != CURLE_OK) {
- blog(LOG_WARNING, "RemoteTextThread: HTTP request failed. %s",
- strlen(error) ? error : curl_easy_strerror(code));
- emit Result(QString(), QT_UTF8(error));
- } else {
- emit Result(QT_UTF8(str.c_str()), QString());
- }
- curl_slist_free_all(header);
- }
- }
- static size_t header_write(char *ptr, size_t size, size_t nmemb, vector<string> &list)
- {
- string str;
- size_t total = size * nmemb;
- if (total)
- str.append(ptr, total);
- if (str.back() == '\n')
- str.resize(str.size() - 1);
- if (str.back() == '\r')
- str.resize(str.size() - 1);
- list.push_back(std::move(str));
- return total;
- }
- bool GetRemoteFile(const char *url, std::string &str, std::string &error, long *responseCode, const char *contentType,
- std::string request_type, const char *postData, std::vector<std::string> extraHeaders,
- std::string *signature, int timeoutSec, bool fail_on_error, int postDataSize)
- {
- vector<string> header_in_list;
- char error_in[CURL_ERROR_SIZE];
- CURLcode code = CURLE_FAILED_INIT;
- error_in[0] = 0;
- string versionString("User-Agent: obs-basic ");
- versionString += App()->GetVersionString();
- string contentTypeString;
- if (contentType) {
- contentTypeString += "Content-Type: ";
- contentTypeString += contentType;
- }
- Curl curl{curl_easy_init(), curl_deleter};
- if (curl) {
- struct curl_slist *header = nullptr;
- header = curl_slist_append(header, versionString.c_str());
- if (!contentTypeString.empty()) {
- header = curl_slist_append(header, contentTypeString.c_str());
- }
- for (std::string &h : extraHeaders)
- header = curl_slist_append(header, h.c_str());
- curl_easy_setopt(curl.get(), CURLOPT_URL, url);
- curl_easy_setopt(curl.get(), CURLOPT_ACCEPT_ENCODING, "");
- curl_easy_setopt(curl.get(), CURLOPT_HTTPHEADER, header);
- curl_easy_setopt(curl.get(), CURLOPT_ERRORBUFFER, error_in);
- if (fail_on_error)
- curl_easy_setopt(curl.get(), CURLOPT_FAILONERROR, 1L);
- curl_easy_setopt(curl.get(), CURLOPT_WRITEFUNCTION, string_write);
- curl_easy_setopt(curl.get(), CURLOPT_WRITEDATA, &str);
- curl_obs_set_revoke_setting(curl.get());
- if (signature) {
- curl_easy_setopt(curl.get(), CURLOPT_HEADERFUNCTION, header_write);
- curl_easy_setopt(curl.get(), CURLOPT_HEADERDATA, &header_in_list);
- }
- if (timeoutSec)
- curl_easy_setopt(curl.get(), CURLOPT_TIMEOUT, timeoutSec);
- if (!request_type.empty()) {
- if (request_type != "GET")
- curl_easy_setopt(curl.get(), CURLOPT_CUSTOMREQUEST, request_type.c_str());
- // Special case of "POST"
- if (request_type == "POST") {
- curl_easy_setopt(curl.get(), CURLOPT_POST, 1);
- if (!postData)
- curl_easy_setopt(curl.get(), CURLOPT_POSTFIELDS, "{}");
- }
- }
- if (postData) {
- if (postDataSize > 0) {
- curl_easy_setopt(curl.get(), CURLOPT_POSTFIELDSIZE, (long)postDataSize);
- }
- curl_easy_setopt(curl.get(), CURLOPT_POSTFIELDS, postData);
- }
- code = curl_easy_perform(curl.get());
- if (responseCode)
- curl_easy_getinfo(curl.get(), CURLINFO_RESPONSE_CODE, responseCode);
- if (code != CURLE_OK) {
- error = strlen(error_in) ? error_in : curl_easy_strerror(code);
- } else if (signature) {
- for (string &h : header_in_list) {
- string name = h.substr(0, 13);
- // HTTP headers are technically case-insensitive
- if (name == "X-Signature: " || name == "x-signature: ") {
- *signature = h.substr(13);
- break;
- }
- }
- }
- curl_slist_free_all(header);
- }
- return code == CURLE_OK;
- }
|