mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
160c5d0b3a
* Stop Web-Capture when priority changes * Remote control UI: Treat duration=0 as endless * Stop Web-Capture on non-Image events changes * LED Matrix Layout - Support vertical cabling direction * Additional Yeelight models * Treat http headers case insensitive * Update change log * Treat http headers case insensitive (consider Qt version) * API - Consider provided format when setImage * UI - Support Boblight configuration per LED instance * Support multiple Boblight clients with different priorities * Update changelog * Simplify isGUI rules allowing for QT only builds * Sysinfo: Fix indents * LED-Devices: Show warning, if get properties failed * Qt-Grabber: Fixed position handling of multiple monitors * LED layout: Remove indention limitations * Yeelight: Test YLTD003 * hyperion-remote: Provide image filename to muxer/UI * Refactor PriorityMuxer and related * Temp: Build under Windows 2019 * Yeelight: Remove YLTD003 as it is not working without additional changes * Test Windows-latest with out removing redistributables/new MSVC * correct workflows * correct CI script * Build Windows with Qt 5.15.2 * Priority Muxer: Updates after testing * Fix Typo * Update BGHandler * QTGrabber - Reactivate windows code to avoid cursor issues * Emit prioritiesChanged when autoselect was changed by user Co-authored-by: Paulchen Panther <Paulchen-Panter@protonmail.com>
35 lines
936 B
C++
35 lines
936 B
C++
|
|
#include "QtHttpRequest.h"
|
|
#include "QtHttpHeader.h"
|
|
#include "QtHttpServer.h"
|
|
|
|
QtHttpRequest::QtHttpRequest (QtHttpClientWrapper * client, QtHttpServer * parent)
|
|
: QObject (parent)
|
|
, m_url (QUrl ())
|
|
, m_command (QString ())
|
|
, m_data (QByteArray ())
|
|
, m_serverHandle (parent)
|
|
, m_clientHandle (client)
|
|
, m_postData (QtHttpPostData())
|
|
{
|
|
// set some additional headers
|
|
addHeader (QtHttpHeader::ContentLength, QByteArrayLiteral ("0"));
|
|
addHeader (QtHttpHeader::Connection, QByteArrayLiteral ("Keep-Alive"));
|
|
}
|
|
|
|
void QtHttpRequest::setClientInfo (const QHostAddress & server, const QHostAddress & client)
|
|
{
|
|
m_clientInfo.serverAddress = server;
|
|
m_clientInfo.clientAddress = client;
|
|
}
|
|
|
|
void QtHttpRequest::addHeader (const QByteArray & header, const QByteArray & value)
|
|
{
|
|
QByteArray key = header.trimmed().toLower();
|
|
|
|
if (!key.isEmpty ())
|
|
{
|
|
m_headersHash.insert (key, value);
|
|
}
|
|
}
|