blob: 296a713593b439a75f4fce44764a6e23978c1950 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
<?php
namespace OC\SpeechToText;
use OCP\AppFramework\Utility\ITimeFactory;
use OCP\BackgroundJob\QueuedJob;
use OCP\EventDispatcher\IEventDispatcher;
use OCP\Files\IRootFolder;
use OCP\PreConditionNotMetException;
use OCP\SpeechToText\Events\TranscriptionFinishedEvent;
use OCP\SpeechToText\ISpeechToTextManager;
class TranscriptionJob extends QueuedJob {
public function __construct(
ITimeFactory $timeFactory,
private ISpeechToTextManager $speechToTextManager,
private IEventDispatcher $eventDispatcher,
private IRootFolder $rootFolder,
) {
parent::__construct($timeFactory);
}
/**
* @inheritDoc
*/
protected function run($argument) {
try {
$file = $this->rootFolder->getById($argument['fileId']);
$result = $this->speechToTextManager->transcribeFile($file);
$this->eventDispatcher->dispatchTyped(
new TranscriptionFinishedEvent(
true,
$result,
'',
$argument['context']
)
);
} catch (PreConditionNotMetException|\RuntimeException|\InvalidArgumentException $e) {
$this->eventDispatcher->dispatchTyped(
new TranscriptionFinishedEvent(
false,
'',
$e->getMessage(),
$argument['context']
)
);
}
}
}
|