diff options
author | Marcel Klehr <mklehr@gmx.net> | 2024-08-30 08:33:06 +0200 |
---|---|---|
committer | Marcel Klehr <mklehr@gmx.net> | 2024-08-30 08:33:06 +0200 |
commit | 278c313257a1e1767e9aa9fb1070bfcad7124b75 (patch) | |
tree | 3a5269fd207d155947c6d6b31df89340807d5c6e | |
parent | d624c8da8f0dc2eaf18d416aa15db0a2035de398 (diff) | |
download | nextcloud-server-278c313257a1e1767e9aa9fb1070bfcad7124b75.tar.gz nextcloud-server-278c313257a1e1767e9aa9fb1070bfcad7124b75.zip |
fix(SpeechToTextManager): Throw TaskProcessing Task failed
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
-rw-r--r-- | lib/private/SpeechToText/SpeechToTextManager.php | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/lib/private/SpeechToText/SpeechToTextManager.php b/lib/private/SpeechToText/SpeechToTextManager.php index c4397112a18..d69add2d80b 100644 --- a/lib/private/SpeechToText/SpeechToTextManager.php +++ b/lib/private/SpeechToText/SpeechToTextManager.php @@ -120,22 +120,24 @@ class SpeechToTextManager implements ISpeechToTextManager { // try to run a TaskProcessing core:audio2text task // this covers scheduling as well because OC\SpeechToText\TranscriptionJob calls this method try { - $taskProcessingTask = new Task( - AudioToText::ID, - ['input' => $file->getId()], - $appId, - $userId, - 'from-SpeechToTextManager||' . $file->getId() . '||' . ($userId ?? '') . '||' . $appId, - ); - $resultTask = $this->taskProcessingManager->runTask($taskProcessingTask); - if ($resultTask->getStatus() === Task::STATUS_SUCCESSFUL) { - $output = $resultTask->getOutput(); - if (isset($output['output']) && is_string($output['output'])) { - return $output['output']; + if (isset($this->taskProcessingManager->getAvailableTaskTypes()['core:audio2text'])) { + $taskProcessingTask = new Task( + AudioToText::ID, + ['input' => $file->getId()], + $appId, + $userId, + 'from-SpeechToTextManager||' . $file->getId() . '||' . ($userId ?? '') . '||' . $appId, + ); + $resultTask = $this->taskProcessingManager->runTask($taskProcessingTask); + if ($resultTask->getStatus() === Task::STATUS_SUCCESSFUL) { + $output = $resultTask->getOutput(); + if (isset($output['output']) && is_string($output['output'])) { + return $output['output']; + } } } } catch (Throwable $e) { - $this->logger->debug('Failed to run a Speech-to-text job from STTManager with TaskProcessing for file ' . $file->getId(), ['exception' => $e]); + throw new RuntimeException('Failed to run a Speech-to-text job from STTManager with TaskProcessing for file ' . $file->getId(), 0, $e); } if (!$this->hasProviders()) { |