Browse Source
Merge pull request #9326 from nextcloud/feat/9274/transcripts-of-call-recordings
Merge pull request #9326 from nextcloud/feat/9274/transcripts-of-call-recordings
feat(recording): Automatically generate transcripts of call recordingpull/9348/head
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
12 changed files with 374 additions and 16 deletions
-
8composer.lock
-
6lib/AppInfo/Application.php
-
27lib/Notification/Notifier.php
-
89lib/Recording/Listener.php
-
89lib/Service/RecordingService.php
-
67tests/integration/features/bootstrap/FeatureContext.php
-
13tests/integration/features/bootstrap/SharingContext.php
-
33tests/integration/features/callapi/recording.feature
-
4tests/integration/spreedcheats/lib/AppInfo/Application.php
-
45tests/integration/spreedcheats/lib/SpeechToText/LoremIpsumProvider.php
-
4tests/php/Service/RecordingServiceTest.php
-
5tests/psalm-baseline.xml
@ -0,0 +1,89 @@ |
|||
<?php |
|||
|
|||
declare(strict_types=1); |
|||
|
|||
/** |
|||
* @copyright Copyright (c) 2023 Joas Schilling <coding@schilljs.com> |
|||
* |
|||
* @author Joas Schilling <coding@schilljs.com> |
|||
* |
|||
* @license GNU AGPL version 3 or any later version |
|||
* |
|||
* This program is free software: you can redistribute it and/or modify |
|||
* it under the terms of the GNU Affero General Public License as |
|||
* published by the Free Software Foundation, either version 3 of the |
|||
* License, or (at your option) any later version. |
|||
* |
|||
* This program is distributed in the hope that it will be useful, |
|||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
* GNU Affero General Public License for more details. |
|||
* |
|||
* You should have received a copy of the GNU Affero General Public License |
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
|||
* |
|||
*/ |
|||
|
|||
namespace OCA\Talk\Recording; |
|||
|
|||
use OCA\Talk\AppInfo\Application; |
|||
use OCA\Talk\Service\RecordingService; |
|||
use OCP\EventDispatcher\Event; |
|||
use OCP\EventDispatcher\IEventListener; |
|||
use OCP\Files\File; |
|||
use OCP\Files\IRootFolder; |
|||
use OCP\SpeechToText\Events\AbstractTranscriptionEvent; |
|||
use OCP\SpeechToText\Events\TranscriptionFailedEvent; |
|||
use OCP\SpeechToText\Events\TranscriptionSuccessfulEvent; |
|||
|
|||
/** |
|||
* @template-implements IEventListener<Event> |
|||
*/ |
|||
class Listener implements IEventListener { |
|||
public function __construct( |
|||
protected RecordingService $recordingService, |
|||
protected IRootFolder $rootFolder, |
|||
) { |
|||
} |
|||
|
|||
public function handle(Event $event): void { |
|||
if (!($event instanceof AbstractTranscriptionEvent)) { |
|||
// Unrelated
|
|||
return; |
|||
} |
|||
|
|||
if ($event->getAppId() !== Application::APP_ID) { |
|||
return; |
|||
} |
|||
|
|||
if ($event instanceof TranscriptionSuccessfulEvent) { |
|||
$this->successfulTranscript($event->getUserId(), $event->getFile(), $event->getTranscript()); |
|||
} elseif ($event instanceof TranscriptionFailedEvent) { |
|||
$this->failedTranscript($event->getUserId(), $event->getFile()); |
|||
} |
|||
} |
|||
|
|||
protected function successfulTranscript(?string $owner, ?File $fileNode, string $transcript): void { |
|||
if (!$fileNode instanceof File) { |
|||
return; |
|||
} |
|||
|
|||
if ($owner === null) { |
|||
return; |
|||
} |
|||
|
|||
$this->recordingService->storeTranscript($owner, $fileNode, $transcript); |
|||
} |
|||
|
|||
protected function failedTranscript(?string $owner, ?File $fileNode): void { |
|||
if (!$fileNode instanceof File) { |
|||
return; |
|||
} |
|||
|
|||
if ($owner === null) { |
|||
return; |
|||
} |
|||
|
|||
$this->recordingService->notifyAboutFailedTranscript($owner, $fileNode); |
|||
} |
|||
} |
@ -0,0 +1,45 @@ |
|||
<?php |
|||
|
|||
declare(strict_types=1); |
|||
|
|||
/** |
|||
* @copyright Copyright (c) 2023 Joas Schilling <coding@schilljs.com> |
|||
* |
|||
* @author Joas Schilling <coding@schilljs.com> |
|||
* |
|||
* @license GNU AGPL version 3 or any later version |
|||
* |
|||
* This program is free software: you can redistribute it and/or modify |
|||
* it under the terms of the GNU Affero General Public License as |
|||
* published by the Free Software Foundation, either version 3 of the |
|||
* License, or (at your option) any later version. |
|||
* |
|||
* This program is distributed in the hope that it will be useful, |
|||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
* GNU Affero General Public License for more details. |
|||
* |
|||
* You should have received a copy of the GNU Affero General Public License |
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
|||
* |
|||
*/ |
|||
|
|||
namespace OCA\SpreedCheats\SpeechToText; |
|||
|
|||
use OCP\Files\File; |
|||
use OCP\SpeechToText\ISpeechToTextProvider; |
|||
|
|||
class LoremIpsumProvider implements ISpeechToTextProvider { |
|||
|
|||
public function getName(): string { |
|||
return 'Lorem ipsum - Talk Integrationtests'; |
|||
} |
|||
|
|||
public function transcribeFile(File $file): string { |
|||
if (str_contains($file->getName(), 'leave')) { |
|||
throw new \RuntimeException('Transcription failed by name'); |
|||
} |
|||
|
|||
return 'Lorem ipsum'; |
|||
} |
|||
} |
Write
Preview
Loading…
Cancel
Save
Reference in new issue