2018-12-28 18:12:45 +01:00
# pragma once
2020-03-26 17:59:41 +01:00
// parent class
# include <api/API.h>
2018-12-28 18:12:45 +01:00
// hyperion includes
# include <utils/Components.h>
# include <hyperion/Hyperion.h>
2019-08-24 22:53:30 +02:00
# include <hyperion/HyperionIManager.h>
2018-12-28 18:12:45 +01:00
2019-07-02 19:06:36 +02:00
// qt includes
2018-12-28 18:12:45 +01:00
# include <QJsonObject>
# include <QString>
2019-08-24 22:53:30 +02:00
class QTimer ;
2018-12-28 18:12:45 +01:00
class JsonCB ;
2019-07-12 16:54:26 +02:00
class AuthManager ;
2018-12-28 18:12:45 +01:00
2020-03-26 17:59:41 +01:00
class JsonAPI : public API
2018-12-28 18:12:45 +01:00
{
Q_OBJECT
public :
///
/// Constructor
///
/// @param peerAddress provide the Address of the peer
/// @param log The Logger class of the creator
/// @param parent Parent QObject
2019-07-12 16:54:26 +02:00
/// @param localConnection True when the sender has origin home network
2018-12-28 18:12:45 +01:00
/// @param noListener if true, this instance won't listen for hyperion push events
///
2020-08-08 13:09:15 +02:00
JsonAPI ( QString peerAddress , Logger * log , bool localConnection , QObject * parent , bool noListener = false ) ;
2018-12-28 18:12:45 +01:00
///
/// Handle an incoming JSON message
///
/// @param message the incoming message as string
///
2020-03-26 17:59:41 +01:00
void handleMessage ( const QString & message , const QString & httpAuthHeader = " " ) ;
2018-12-28 18:12:45 +01:00
2019-09-17 21:33:46 +02:00
///
/// @brief Initialization steps
///
2020-08-08 13:09:15 +02:00
void initialize ( ) ;
2019-09-17 21:33:46 +02:00
2018-12-28 18:12:45 +01:00
public slots :
2018-12-31 15:48:29 +01:00
///
2019-08-24 22:53:30 +02:00
/// @brief Is called whenever the current Hyperion instance pushes new led raw values (if enabled)
/// @param ledColors The current led colors
2018-12-31 15:48:29 +01:00
///
2020-03-26 17:59:41 +01:00
void streamLedcolorsUpdate ( const std : : vector < ColorRgb > & ledColors ) ;
2018-12-28 18:12:45 +01:00
2019-08-24 22:53:30 +02:00
///
/// @brief Push images whenever hyperion emits (if enabled)
/// @param image The current image
///
2020-03-26 17:59:41 +01:00
void setImage ( const Image < ColorRgb > & image ) ;
2018-12-28 18:12:45 +01:00
2019-08-24 22:53:30 +02:00
///
/// @brief Process and push new log messages from logger (if enabled)
///
2020-03-26 17:59:41 +01:00
void incommingLogMessage ( const Logger : : T_LOG_MESSAGE & ) ;
2018-12-28 18:12:45 +01:00
2019-07-12 16:54:26 +02:00
private slots :
///
2020-03-26 17:59:41 +01:00
/// @brief Handle emits from API of a new Token request.
2020-10-18 17:05:07 +02:00
/// @param id The id of the request
/// @param comment The comment which needs to be accepted
2019-07-12 16:54:26 +02:00
///
2020-03-26 17:59:41 +01:00
void newPendingTokenRequest ( const QString & id , const QString & comment ) ;
2019-07-12 16:54:26 +02:00
///
/// @brief Handle emits from AuthManager of accepted/denied/timeouts token request, just if QObject matches with this instance we are allowed to send response.
/// @param success If true the request was accepted else false and no token was created
/// @param token The new token that is now valid
/// @param comment The comment that was part of the request
/// @param id The id that was part of the request
2020-10-18 17:05:07 +02:00
/// @param tan The tan that was part of the request
2019-07-12 16:54:26 +02:00
///
2020-10-18 17:05:07 +02:00
void handleTokenResponse ( bool success , const QString & token , const QString & comment , const QString & id , const int & tan ) ;
2019-07-12 16:54:26 +02:00
2019-07-14 22:43:22 +02:00
///
/// @brief Handle whenever the state of a instance (HyperionIManager) changes according to enum instanceState
/// @param instaneState A state from enum
/// @param instance The index of instance
/// @param name The name of the instance, just available with H_CREATED
///
2020-08-08 13:09:15 +02:00
void handleInstanceStateChange ( InstanceState state , quint8 instance , const QString & name = QString ( ) ) ;
2019-07-14 22:43:22 +02:00
2018-12-28 18:12:45 +01:00
signals :
///
/// Signal emits with the reply message provided with handleMessage()
///
void callbackMessage ( QJsonObject ) ;
///
2020-07-12 20:27:56 +02:00
/// Signal emits whenever a JSON-message should be forwarded
2018-12-28 18:12:45 +01:00
///
void forwardJsonMessage ( QJsonObject ) ;
2022-12-22 12:40:39 +01:00
///
/// Signal emits whenever a suspend/resume request for all instances should be forwarded
///
void suspendAll ( bool isSuspend ) ;
///
/// Signal emits whenever a toggle suspend/resume request for all instances should be forwarded
///
void toggleSuspendAll ( ) ;
///
/// Signal emits whenever a idle mode request for all instances should be forwarded
///
void idleAll ( bool isIdle ) ;
///
/// Signal emits whenever a toggle idle/working mode request for all instances should be forwarded
///
void toggleIdleAll ( ) ;
2018-12-28 18:12:45 +01:00
private :
// true if further callbacks are forbidden (http)
bool _noListener ;
2018-12-31 15:48:29 +01:00
2019-07-02 19:06:36 +02:00
/// The peer address of the client
QString _peerAddress ;
2018-12-28 18:12:45 +01:00
2018-12-31 15:48:29 +01:00
// The JsonCB instance which handles data subscription/notifications
2020-03-26 17:59:41 +01:00
JsonCB * _jsonCB ;
2018-12-28 18:12:45 +01:00
// streaming buffers
QJsonObject _streaming_leds_reply ;
QJsonObject _streaming_image_reply ;
QJsonObject _streaming_logging_reply ;
/// flag to determine state of log streaming
bool _streaming_logging_activated ;
2019-08-24 22:53:30 +02:00
/// timer for led color refresh
2020-03-26 17:59:41 +01:00
QTimer * _ledStreamTimer ;
2018-12-31 15:48:29 +01:00
2019-08-24 22:53:30 +02:00
/// led stream connection handle
QMetaObject : : Connection _ledStreamConnection ;
2018-12-28 18:12:45 +01:00
2019-08-24 22:53:30 +02:00
/// the current streaming led values
std : : vector < ColorRgb > _currentLedValues ;
2018-12-31 15:48:29 +01:00
2019-07-14 22:43:22 +02:00
///
/// @brief Handle the switches of Hyperion instances
/// @param instance the instance to switch
/// @param forced indicate if it was a forced switch by system
/// @return true on success. false if not found
///
2020-08-08 13:09:15 +02:00
bool handleInstanceSwitch ( quint8 instance = 0 , bool forced = false ) ;
2019-07-14 22:43:22 +02:00
2018-12-28 18:12:45 +01:00
///
/// Handle an incoming JSON Color message
///
/// @param message the incoming message
///
2020-08-08 13:09:15 +02:00
void handleColorCommand ( const QJsonObject & message , const QString & command , int tan ) ;
2018-12-28 18:12:45 +01:00
///
/// Handle an incoming JSON Image message
///
/// @param message the incoming message
///
2020-08-08 13:09:15 +02:00
void handleImageCommand ( const QJsonObject & message , const QString & command , int tan ) ;
2018-12-28 18:12:45 +01:00
2022-02-11 20:36:15 +01:00
# if defined(ENABLE_EFFECTENGINE)
2018-12-28 18:12:45 +01:00
///
/// Handle an incoming JSON Effect message
///
/// @param message the incoming message
///
2020-08-08 13:09:15 +02:00
void handleEffectCommand ( const QJsonObject & message , const QString & command , int tan ) ;
2018-12-28 18:12:45 +01:00
///
/// Handle an incoming JSON Effect message (Write JSON Effect)
///
/// @param message the incoming message
///
2020-08-08 13:09:15 +02:00
void handleCreateEffectCommand ( const QJsonObject & message , const QString & command , int tan ) ;
2018-12-28 18:12:45 +01:00
///
/// Handle an incoming JSON Effect message (Delete JSON Effect)
///
/// @param message the incoming message
///
2020-08-08 13:09:15 +02:00
void handleDeleteEffectCommand ( const QJsonObject & message , const QString & command , int tan ) ;
2022-02-11 20:36:15 +01:00
# endif
2018-12-28 18:12:45 +01:00
///
/// Handle an incoming JSON System info message
///
/// @param message the incoming message
///
2020-08-08 13:09:15 +02:00
void handleSysInfoCommand ( const QJsonObject & message , const QString & command , int tan ) ;
2018-12-28 18:12:45 +01:00
///
/// Handle an incoming JSON Server info message
///
/// @param message the incoming message
///
2020-08-08 13:09:15 +02:00
void handleServerInfoCommand ( const QJsonObject & message , const QString & command , int tan ) ;
2018-12-28 18:12:45 +01:00
///
/// Handle an incoming JSON Clear message
///
/// @param message the incoming message
///
2020-08-08 13:09:15 +02:00
void handleClearCommand ( const QJsonObject & message , const QString & command , int tan ) ;
2018-12-28 18:12:45 +01:00
2019-07-14 22:43:22 +02:00
///
/// Handle an incoming JSON Clearall message
///
/// @param message the incoming message
///
2020-08-08 13:09:15 +02:00
void handleClearallCommand ( const QJsonObject & message , const QString & command , int tan ) ;
2019-07-14 22:43:22 +02:00
2018-12-28 18:12:45 +01:00
///
/// Handle an incoming JSON Adjustment message
///
/// @param message the incoming message
///
2020-08-08 13:09:15 +02:00
void handleAdjustmentCommand ( const QJsonObject & message , const QString & command , int tan ) ;
2018-12-28 18:12:45 +01:00
///
/// Handle an incoming JSON SourceSelect message
///
/// @param message the incoming message
///
2020-08-08 13:09:15 +02:00
void handleSourceSelectCommand ( const QJsonObject & message , const QString & command , int tan ) ;
2018-12-28 18:12:45 +01:00
/// Handle an incoming JSON GetConfig message and check subcommand
///
/// @param message the incoming message
///
2020-08-08 13:09:15 +02:00
void handleConfigCommand ( const QJsonObject & message , const QString & command , int tan ) ;
2018-12-28 18:12:45 +01:00
2020-04-17 16:59:20 +02:00
/// Handle an incoming JSON GetSchema message from handleConfigCommand()
2018-12-28 18:12:45 +01:00
///
/// @param message the incoming message
///
2020-08-08 13:09:15 +02:00
void handleSchemaGetCommand ( const QJsonObject & message , const QString & command , int tan ) ;
2018-12-28 18:12:45 +01:00
/// Handle an incoming JSON SetConfig message from handleConfigCommand()
///
/// @param message the incoming message
///
2020-08-08 13:09:15 +02:00
void handleConfigSetCommand ( const QJsonObject & message , const QString & command , int tan ) ;
2018-12-28 18:12:45 +01:00
2021-11-17 21:30:43 +01:00
/// Handle an incoming JSON RestoreConfig message from handleConfigCommand()
///
/// @param message the incoming message
///
void handleConfigRestoreCommand ( const QJsonObject & message , const QString & command , int tan ) ;
2018-12-28 18:12:45 +01:00
///
/// Handle an incoming JSON Component State message
///
/// @param message the incoming message
///
2020-08-08 13:09:15 +02:00
void handleComponentStateCommand ( const QJsonObject & message , const QString & command , int tan ) ;
2018-12-28 18:12:45 +01:00
/// Handle an incoming JSON Led Colors message
///
/// @param message the incoming message
///
2020-08-08 13:09:15 +02:00
void handleLedColorsCommand ( const QJsonObject & message , const QString & command , int tan ) ;
2018-12-28 18:12:45 +01:00
/// Handle an incoming JSON Logging message
///
/// @param message the incoming message
///
2020-08-08 13:09:15 +02:00
void handleLoggingCommand ( const QJsonObject & message , const QString & command , int tan ) ;
2018-12-28 18:12:45 +01:00
2020-07-12 20:27:56 +02:00
/// Handle an incoming JSON Processing message
2018-12-28 18:12:45 +01:00
///
/// @param message the incoming message
///
2020-08-08 13:09:15 +02:00
void handleProcessingCommand ( const QJsonObject & message , const QString & command , int tan ) ;
2018-12-28 18:12:45 +01:00
/// Handle an incoming JSON VideoMode message
///
/// @param message the incoming message
///
2020-08-08 13:09:15 +02:00
void handleVideoModeCommand ( const QJsonObject & message , const QString & command , int tan ) ;
2018-12-28 18:12:45 +01:00
2019-07-12 16:54:26 +02:00
/// Handle an incoming JSON plugin message
///
/// @param message the incoming message
///
2020-08-08 13:09:15 +02:00
void handleAuthorizeCommand ( const QJsonObject & message , const QString & command , int tan ) ;
2019-07-12 16:54:26 +02:00
2019-07-14 22:43:22 +02:00
/// Handle an incoming JSON instance message
2019-01-27 13:41:21 +01:00
///
/// @param message the incoming message
///
2020-08-08 13:09:15 +02:00
void handleInstanceCommand ( const QJsonObject & message , const QString & command , int tan ) ;
2019-01-27 13:41:21 +01:00
2020-07-12 20:27:56 +02:00
/// Handle an incoming JSON Led Device message
///
/// @param message the incoming message
///
2020-08-08 13:09:15 +02:00
void handleLedDeviceCommand ( const QJsonObject & message , const QString & command , int tan ) ;
2020-07-12 20:27:56 +02:00
Media Foundation/V4L2 grabber ... (#1119)
* - New Media Foundation grabber
- JsonAPI available grabber fix
- commented json config removed
* Added libjpeg-turbo to dependencies
* Fix OSX build
Removed Azure Pipelines from build scripts
* Remove Platform from Dashboard
* Correct Grabber Namings
* Grabber UI improvements, generic JSONEditor Selection Update
* Active grabber fix
* Stop Framebuffer grabber on failure
* - Image format NV12 and I420 added
- Flip mode
- Scaling factor for MJPEG
- VSCode (compile before run)
- CI (push) dependency libjpeg-turbo added
* Refactor MediaFoundation (Part 1)
* Remove QDebug output
* Added image flipping ability to MF Grabber
* fix issue 1160
* -Reload MF Grabber only once per WebUI update
- Cleanup
* Improvements
* - Set 'Software Frame Decimation' begin to 0
- Removed grabber specific device name from Log
- Keep pixel format when switching resolution
- Display 'Flip mode' correct in Log
- BGR24 images always flipped
* Refactor MediaFoundation (Part 2)
* Refactor V4L2 grabber (part 1) (#62)
* Media Foundation grabber adapted to V4L2 change
* Enable Media Foundation grabber on windows
* Have fps as int, fix height typo
* Added video standards to JsonAPI output
* Error handling in source reader improved
* Fix "Frame to small" error
* Discovery VideoSources and Dynamically Update Editor
* Hide all element when no video grabber discovered, upate naming
* Do not show unsupported grabbers
* Copy Log to Clipboard
* Update Grabber schema and Defaults
* Update access levels and validate crop ranges
* Height and width in Qt grabber corrected
* Correct formatting
* Untabify
* Global component states across instances
* Components divided on the dashboard
* refactor
* Fix Merge-issues
* Database migration aligning with updated grabber model
* Align Grabber.js with new utility functions
* Allow editor-validation for enum-lists
* Handle "Show Explainations scenario" correctly
* Grabber - Ensure save is only possible on valid content
* Dashboard update + fix GlobalSignal connection
* Ensure default database is populated with current release
* Correct grabber4L2 access level
* Display Signal detection area in preview
* Write Hyperion version into default config on compiling.
* Create defaultconfig.json dynamically
* WebUI changes
* Correct grabber config look-ups
* Refactor i18n language loading
* Fix en.json
* Split global capture from instance capture config
* Update grabber default values
* Standalone grabber: Add --debug switch
* Enhance showInputOptionsForKey for multiple keys
* Add grabber instance link to system grabber config
* Only show signal detection area, if grabber is enabled
* Always show Active element on grabber page
* Remote control - Only display gabber status, if global grabber is enabled
* WebUI optimization (thx to @mkcologne)
Start Grabber only when global settings are enabled
Fixed an issue in the WebUI preview
* V4L2/MF changes
* Jsoneditor, Correct translation for default values
* Refactor LED-Device handling in UI and make element naming consistent
* MF Discovery extended
* Fix LGTM finding
* Support Grabber Bri, Hue, Sat and Con in UI, plus their defaults
* Concider Access level for item filtering
* Concider Access level for item filtering
* Revert "Concider Access level for item filtering"
This reverts commit 5b0ce3c0f2de67e0c43788190cfff45614706129.
* Disable fpsSoftwareDecimation for framegrabber, as not supported yet
* JSON-Editor- Add updated schema for validation on dynamic elements
* added V4L2 color IDs
* LGTM findings fix
* destroy SR callback only on exit
* Grabber.js - Hide elements not supported by platform
* Fixed freezing start effect
* Grabber UI - Hardware controls - Show current values and allow to reset to defaults
* Grabber - Discovery - Add current values to properties
* Small things
* Clean-up Effects and have ENDLESS consistently defined
* Fix on/off/on priority during startup, by initializing _prevVisComp in line with background priority
* Add missing translation mappings
* DirectX Grabber reactivated/ QT Grabber size decimation fixed
* typo in push-master workflow
* Use PreciseTimer for Grabber to ensure stable FPS timing
* Set default Screencapture rate consistently
* Fix libjpeg-turbo download
* Remove Zero character from file
* docker-compile Add PLATFORM parameter, only copy output file after successful compile
* Framebuffer, Dispmanx, OSX, AML Grabber discovery, various clean-up and consistencies across grabbers
* Fix merge problem - on docker-compile Add PLATFORM parameter, only copy output file after successful compile
* Fix definition
* OSXFRameGrabber - Revert cast
* Clean-ups nach Feedback
* Disable certain libraries when building armlogic via standard stretch image as developer
* Add CEC availability to ServerInfo to have it platform independent
* Grabber UI - Fix problem that crop values are not populated when refining editor rage
* Preserve value when updating json-editor range
* LEDVisualisation - Clear image when source changes
* Fix - Preserve value when updating json-editor range
* LEDVisualisation - Clear image when no component is active
* Allow to have password handled by Password-Manager (#1263)
* Update default signal detection area to green assuming rainbow grabber
* LED Visualisation - Handle empty priority update
* Fix yuv420 in v4l2 grabber
* V4L2-Grabber discovery - Only report grabbers with valid video input information
* Grabber - Update static variables to have them working in release build
* LED Visualisation - ClearImage when no priorities
* LED Visualisation - Fix Logo resizing issue
* LED Visualisation - Have nearly black background and negative logo
Co-authored-by: LordGrey <lordgrey.emmel@gmail.com>
Co-authored-by: LordGrey <48840279+Lord-Grey@users.noreply.github.com>
2021-07-14 20:48:33 +02:00
/// Handle an incoming JSON message regarding Input Sources (Grabbers)
///
/// @param message the incoming message
///
void handleInputSourceCommand ( const QJsonObject & message , const QString & command , int tan ) ;
mDNS Support (#1452)
* Allow build, if no grabbers are enabled
* Align available functions to right Qt version
* Update to next development version
* Align available functions to right Qt version
* fix workflows (apt/nightly)
* Disable QNetworkConfigurationManager deprecation warnings
* Initial go on Smart Pointers
* Add Deallocation
* Correct QT_WARNING_DISABLE_DEPRECATED (available since 5.9)
* Cluster Build Variables
* Hyperion Light
* Address build warnings
* Hyperion Light - UI
* Update Protobuf to latest master
* Removed compiler warnings
* Added restart ability to systray
* Correct Protobuf
* Ignore 'no-return' warning on protobuf build
* hyperion-remote: Fix auto discovery of hyperion server
* Fix Qt version override
* Update changelog
* Remove Grabber Components, if no Grabber exists
* Standalone Grabber - Fix fps default
* Remote Control - Have Source Selction accrosswhole screen
* Enable Blackborder detection only, if relevant input sources available
* Enable Blackborder detection only, if relevant input sources available
* Remote UI - rearrange containers
* Checkout
* Fix compilation on windows
* Re-added qmdnsengine template cmake
* chrono added for linux
* Removed existing AVAHI/Bonjour, allow to enable/disable mDNS
* hyperiond macos typo fix
* Fix macOS Bundle build
* Fix macOS bundle info details
* Correct CMake files
* Removed existing AVAHI/Bonjour (2)
* Share hyperion's services via mDNS
* Add mDNS Browser and mDNS for LED-Devices
* Support mDNS discovery for standalone grabbers
* Remove ZLib Dependency & Cleanup
* mDNS - hanle 2.local2 an ".local." domains equally
* Hue - Link discovery to bridge class, workaround port 443 for mDNS discovery
* Fix save button state when switching between devices
* Removed sessions (of other hyperions)
* mDNS Publisher - Simplify service naming
* mDNS refactoring & Forwarder discovery
* mDNS Updates to use device service name
* Consistency of standalone grabbers with mDNS Service Registry
* Merge branch 'hyperion-project:master' into mDNS
* Start JSON and WebServers only after Instance 0 is available
* Remove bespoke qDebug Output again
* MDNS updates and refactor Forwarder
* Minor updates
* Upgrade to CMake 3.1
* typo
* macOS fix
* Correct merge
* - Remove dynamic linker flag from standalone dispmanX Grabber
- Added ability to use system qmdns libs
* Cec handler library will load at runtime
* typo fix
* protobuf changes
* mDNS changes for Windows/macOS
* test window build qmdnsengine
* absolute path to protobuf cmake dir
* Rework Hue Wizard supporting mDNS
* LED-Devices - Retry support + Refactoring (excl. Hue)
* LED-Devices - Refactoring/Retry support Hue + additional alignments
* Address LGTM findings
* Fix CI-Build, revert test changes
* Build Windows in Release mode to avoid python problem
* Correct that WebServerObject is available earlier
* Ensure that instance name in logs for one instance are presented
* Update content LEDs
* Rework mDNS Address lookup
* Fix LED UI
* Fix for non mDNS Services (ignore default port)
* Disbale device when now input is available
* Revert back some updates, ensure last color is updated when switched on
* Handle reopening case and changed IP, port for API-calls
* Add UPD-DDP Device
* WLED support for DDP
* Fix printout
* LEDDevice - Allow more retries, udapte defaults
* LED-Net Devices - Select Custom device, if configured
Co-authored-by: Paulchen Panther <16664240+Paulchen-Panther@users.noreply.github.com>
Co-authored-by: Paulchen Panther <Paulchen-Panter@protonmail.com>
2022-05-01 19:42:47 +02:00
/// Handle an incoming JSON message to request remote hyperion servers providing a given hyperion service
///
/// @param message the incoming message
///
void handleServiceCommand ( const QJsonObject & message , const QString & command , int tan ) ;
2022-12-22 12:40:39 +01:00
/// Handle an incoming JSON message for actions related to the overall Hyperion system
///
/// @param message the incoming message
///
void handleSystemCommand ( const QJsonObject & message , const QString & command , int tan ) ;
2018-12-28 18:12:45 +01:00
///
/// Handle an incoming JSON message of unknown type
///
2020-09-14 20:09:21 +02:00
void handleNotImplemented ( const QString & command , int tan ) ;
2018-12-28 18:12:45 +01:00
///
/// Send a standard reply indicating success
///
2020-08-08 13:09:15 +02:00
void sendSuccessReply ( const QString & command = " " , int tan = 0 ) ;
2018-12-28 18:12:45 +01:00
///
/// Send a standard reply indicating success with data
///
2020-08-08 13:09:15 +02:00
void sendSuccessDataReply ( const QJsonDocument & doc , const QString & command = " " , int tan = 0 ) ;
2018-12-28 18:12:45 +01:00
///
/// Send an error message back to the client
///
/// @param error String describing the error
///
2020-08-08 13:09:15 +02:00
void sendErrorReply ( const QString & error , const QString & command = " " , int tan = 0 ) ;
2019-09-17 21:33:46 +02:00
///
/// @brief Kill all signal/slot connections to stop possible data emitter
///
2020-08-08 13:09:15 +02:00
void stopDataConnections ( ) ;
2020-04-17 16:59:20 +02:00
} ;