123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243 |
- <?php
- declare(strict_types=1);
- /**
- * @copyright Copyright (c) 2023 Marcel Klehr <mklehr@gmx.net>
- *
- * @author Marcel Klehr <mklehr@gmx.net>
- *
- * @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 OCP\TextProcessing;
- /**
- * This is a text processing task
- * @since 27.1.0
- * @psalm-template T of ITaskType
- * @psalm-template S as class-string<T>
- * @psalm-template P as IProvider<T>
- */
- final class Task implements \JsonSerializable {
- protected ?int $id = null;
- protected ?string $output = null;
- private ?\DateTime $completionExpectedAt = null;
- /**
- * @since 27.1.0
- */
- public const TYPES = [
- FreePromptTaskType::class,
- SummaryTaskType::class,
- HeadlineTaskType::class,
- TopicsTaskType::class,
- ];
- /**
- * @since 27.1.0
- */
- public const STATUS_FAILED = 4;
- /**
- * @since 27.1.0
- */
- public const STATUS_SUCCESSFUL = 3;
- /**
- * @since 27.1.0
- */
- public const STATUS_RUNNING = 2;
- /**
- * @since 27.1.0
- */
- public const STATUS_SCHEDULED = 1;
- /**
- * @since 27.1.0
- */
- public const STATUS_UNKNOWN = 0;
- /**
- * @psalm-var self::STATUS_*
- */
- protected int $status = self::STATUS_UNKNOWN;
- /**
- * @psalm-param S $type
- * @param string $type
- * @param string $input
- * @param string $appId
- * @param string|null $userId
- * @param string $identifier An arbitrary identifier for this task. max length: 255 chars
- * @since 27.1.0
- */
- final public function __construct(
- protected string $type,
- protected string $input,
- protected string $appId,
- protected ?string $userId,
- protected string $identifier = '',
- ) {
- }
- /**
- * @psalm-param P $provider
- * @param IProvider $provider
- * @return string
- * @since 27.1.0
- */
- public function visitProvider(IProvider $provider): string {
- if ($this->canUseProvider($provider)) {
- if ($provider instanceof IProviderWithUserId) {
- $provider->setUserId($this->getUserId());
- }
- return $provider->process($this->getInput());
- } else {
- throw new \RuntimeException('Task of type ' . $this->getType() . ' cannot visit provider with task type ' . $provider->getTaskType());
- }
- }
- /**
- * @psalm-param P $provider
- * @param IProvider $provider
- * @return bool
- * @since 27.1.0
- */
- public function canUseProvider(IProvider $provider): bool {
- return $provider->getTaskType() === $this->getType();
- }
- /**
- * @psalm-return S
- * @since 27.1.0
- */
- final public function getType(): string {
- return $this->type;
- }
- /**
- * @return string|null
- * @since 27.1.0
- */
- final public function getOutput(): ?string {
- return $this->output;
- }
- /**
- * @param string|null $output
- * @since 27.1.0
- */
- final public function setOutput(?string $output): void {
- $this->output = $output;
- }
- /**
- * @psalm-return self::STATUS_*
- * @since 27.1.0
- */
- final public function getStatus(): int {
- return $this->status;
- }
- /**
- * @psalm-param self::STATUS_* $status
- * @since 27.1.0
- */
- final public function setStatus(int $status): void {
- $this->status = $status;
- }
- /**
- * @return int|null
- * @since 27.1.0
- */
- final public function getId(): ?int {
- return $this->id;
- }
- /**
- * @param int|null $id
- * @since 27.1.0
- */
- final public function setId(?int $id): void {
- $this->id = $id;
- }
- /**
- * @return string
- * @since 27.1.0
- */
- final public function getInput(): string {
- return $this->input;
- }
- /**
- * @return string
- * @since 27.1.0
- */
- final public function getAppId(): string {
- return $this->appId;
- }
- /**
- * @return string
- * @since 27.1.0
- */
- final public function getIdentifier(): string {
- return $this->identifier;
- }
- /**
- * @return string|null
- * @since 27.1.0
- */
- final public function getUserId(): ?string {
- return $this->userId;
- }
- /**
- * @psalm-return array{id: ?int, type: S, status: 0|1|2|3|4, userId: ?string, appId: string, input: string, output: ?string, identifier: string, completionExpectedAt: ?int}
- * @since 27.1.0
- */
- public function jsonSerialize(): array {
- return [
- 'id' => $this->getId(),
- 'type' => $this->getType(),
- 'status' => $this->getStatus(),
- 'userId' => $this->getUserId(),
- 'appId' => $this->getAppId(),
- 'input' => $this->getInput(),
- 'output' => $this->getOutput(),
- 'identifier' => $this->getIdentifier(),
- 'completionExpectedAt' => $this->getCompletionExpectedAt()?->getTimestamp(),
- ];
- }
- /**
- * @param null|\DateTime $completionExpectedAt
- * @return void
- * @since 28.0.0
- */
- final public function setCompletionExpectedAt(?\DateTime $completionExpectedAt): void {
- $this->completionExpectedAt = $completionExpectedAt;
- }
- /**
- * @return \DateTime|null
- * @since 28.0.0
- */
- final public function getCompletionExpectedAt(): ?\DateTime {
- return $this->completionExpectedAt;
- }
- }
|