Refs #37 — implements ONLYOFFICE integration suggested in the discussion; video progress saving will be tracked separately.
15 lines
578 B
PHP
15 lines
578 B
PHP
<?php
|
|
/**
|
|
* @OA\Get(
|
|
* path="/api/onlyoffice/signed-download.php",
|
|
* summary="Serve a signed file blob to ONLYOFFICE",
|
|
* tags={"ONLYOFFICE"},
|
|
* @OA\Parameter(name="tok", in="query", required=true, @OA\Schema(type="string")),
|
|
* @OA\Response(response=200, description="File stream"),
|
|
* @OA\Response(response=403, description="Signature/expiry invalid")
|
|
* )
|
|
*/
|
|
declare(strict_types=1);
|
|
require_once __DIR__ . '/../../../config/config.php';
|
|
require_once PROJECT_ROOT . '/src/controllers/OnlyOfficeController.php';
|
|
(new OnlyOfficeController())->signedDownload(); |