From fcec787eb6daa55fcb86a3eb71a481e3a6ab20a5 Mon Sep 17 00:00:00 2001 From: Robin Dadswell <19610103+RobinDadswell@users.noreply.github.com> Date: Tue, 18 May 2021 02:45:23 +0100 Subject: [PATCH] Show User Agent in System->Tasks for externally triggered commands (#6327) * Show User Agent in System->Tasks for externally triggered commands (cherry picked from commit fe8f319f7bfdadb7218b6313ada6cae1d2a35ad8) * Translations Co-authored-by: Taloth Saldono --- .../src/System/Tasks/Queued/QueuedTaskRow.css | 9 ++++++++ .../src/System/Tasks/Queued/QueuedTaskRow.js | 14 ++++++++++++- src/NzbDrone.Api/Commands/CommandResource.cs | 5 +++++ src/NzbDrone.Common/Http/UserAgentParser.cs | 21 +++++++++++++++++++ src/NzbDrone.Core/Localization/Core/en.json | 2 ++ .../Messaging/Commands/Command.cs | 2 ++ src/Radarr.Api.V3/Commands/CommandModule.cs | 2 ++ src/Radarr.Api.V3/Commands/CommandResource.cs | 5 +++++ 8 files changed, 59 insertions(+), 1 deletion(-) create mode 100644 src/NzbDrone.Common/Http/UserAgentParser.cs diff --git a/frontend/src/System/Tasks/Queued/QueuedTaskRow.css b/frontend/src/System/Tasks/Queued/QueuedTaskRow.css index 6e38929c9..034804711 100644 --- a/frontend/src/System/Tasks/Queued/QueuedTaskRow.css +++ b/frontend/src/System/Tasks/Queued/QueuedTaskRow.css @@ -10,6 +10,15 @@ width: 100%; } +.commandName { + display: inline-block; + min-width: 220px; +} + +.userAgent { + color: #b0b0b0; +} + .queued, .started, .ended { diff --git a/frontend/src/System/Tasks/Queued/QueuedTaskRow.js b/frontend/src/System/Tasks/Queued/QueuedTaskRow.js index cfe85573c..f9afcb32e 100644 --- a/frontend/src/System/Tasks/Queued/QueuedTaskRow.js +++ b/frontend/src/System/Tasks/Queued/QueuedTaskRow.js @@ -157,6 +157,7 @@ class QueuedTaskRow extends Component { status, duration, message, + clientUserAgent, longDateFormat, timeFormat, onCancelPress @@ -192,7 +193,17 @@ class QueuedTaskRow extends Component { - {commandName} + + + {commandName} + + { + clientUserAgent && + + {translate('from')}: {clientUserAgent} + + } +