migrate therinaldos.com data
Build & Deploy to DigitalOcean Space / build (push) Failing after 2m38s

This commit is contained in:
2024-05-05 15:50:45 -04:00
commit ef1ff240d4
23182 changed files with 3801898 additions and 0 deletions
@@ -0,0 +1,75 @@
<?php
/**
* @copyright Copyright (c) 2019 Julius Härtl <jus@bitgrid.net>
*
* @author Julius Härtl <jus@bitgrid.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\DirectEditing;
use OCP\Files\File;
/**
* @since 18.0.0
*/
abstract class ACreateEmpty {
/**
* Unique id for the creator to filter templates
*
* e.g. document/spreadsheet/presentation
*
* @since 18.0.0
* @return string
*/
abstract public function getId(): string;
/**
* Descriptive name for the create action
*
* e.g Create a new document
*
* @since 18.0.0
* @return string
*/
abstract public function getName(): string;
/**
* Default file extension for the new file
*
* @since 18.0.0
* @return string
*/
abstract public function getExtension(): string;
/**
* Mimetype of the resulting created file
*
* @since 18.0.0
* @return string
*/
abstract public function getMimetype(): string;
/**
* Add content when creating empty files
*
* @since 18.0.0
* @param File $file
*/
public function create(File $file, string $creatorId = null, string $templateId = null): void {
}
}
@@ -0,0 +1,36 @@
<?php
/**
* @copyright Copyright (c) 2019 Julius Härtl <jus@bitgrid.net>
*
* @author Julius Härtl <jus@bitgrid.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\DirectEditing;
/**
* @since 18.0.0
*/
abstract class ACreateFromTemplate extends ACreateEmpty {
/**
* List of available templates for the create from template action
*
* @since 18.0.0
* @return ATemplate[]
*/
abstract public function getTemplates(): array;
}
@@ -0,0 +1,67 @@
<?php
/**
* @copyright Copyright (c) 2019 Julius Härtl <jus@bitgrid.net>
*
* @author Julius Härtl <jus@bitgrid.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\DirectEditing;
use JsonSerializable;
/**
* Class ATemplate
*
* @since 18.0.0
*/
abstract class ATemplate implements JsonSerializable {
/**
* Return a unique id so the app can identify the template
*
* @since 18.0.0
* @return string
*/
abstract public function getId(): string;
/**
* Return a title that is displayed to the user
*
* @since 18.0.0
* @return string
*/
abstract public function getTitle(): string;
/**
* Return a link to the template preview image
*
* @since 18.0.0
* @return string
*/
abstract public function getPreview(): string;
/**
* @since 18.0.0
*/
public function jsonSerialize(): array {
return [
'id' => $this->getId(),
'title' => $this->getTitle(),
'preview' => $this->getPreview(),
];
}
}
@@ -0,0 +1,98 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2019 Julius Härtl <jus@bitgrid.net>
*
* @author Julius Härtl <jus@bitgrid.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\DirectEditing;
use OCP\AppFramework\Http\Response;
/**
* @since 18.0.0
*/
interface IEditor {
/**
* Return a unique identifier for the editor
*
* e.g. richdocuments
*
* @since 18.0.0
* @return string
*/
public function getId(): string;
/**
* Return a readable name for the editor
*
* e.g. Collabora Online
*
* @since 18.0.0
* @return string
*/
public function getName(): string;
/**
* A list of mimetypes that should open the editor by default
*
* @since 18.0.0
* @return string[]
*/
public function getMimetypes(): array;
/**
* A list of mimetypes that can be opened in the editor optionally
*
* @since 18.0.0
* @return string[]
*/
public function getMimetypesOptional(): array;
/**
* Return a list of file creation options to be presented to the user
*
* @since 18.0.0
* @return ACreateFromTemplate[]|ACreateEmpty[]
*/
public function getCreators(): array;
/**
* Return if the view is able to securely view a file without downloading it to the browser
*
* @since 18.0.0
* @return bool
*/
public function isSecure(): bool;
/**
* Return a template response for displaying the editor
*
* open can only be called once when the client requests the editor with a one-time-use token
* For handling editing and later requests, editors need to implement their own token handling and take care of invalidation
*
* This behavior is similar to the current direct editing implementation in collabora where we generate a one-time token and switch over to the regular wopi token for the actual editing/saving process
*
* @since 18.0.0
* @return Response
*/
public function open(IToken $token): Response;
}
@@ -0,0 +1,99 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2019 Julius Härtl <jus@bitgrid.net>
*
* @author Julius Härtl <jus@bitgrid.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\DirectEditing;
use OCP\AppFramework\Http\Response;
use OCP\Files\NotPermittedException;
use RuntimeException;
/**
* Interface IManager
*
* @since 18.0.0
*/
interface IManager {
/**
* Register a new editor
*
* @since 18.0.0
* @param IEditor $directEditor
*/
public function registerDirectEditor(IEditor $directEditor): void;
/**
* Open the editing page for a provided token
*
* @since 18.0.0
* @param string $token
* @return Response
*/
public function edit(string $token): Response;
/**
* Create a new token based on the file path and editor details
*
* @since 18.0.0
* @param string $path
* @param string $editorId
* @param string $creatorId
* @param null $templateId
* @return string
* @throws NotPermittedException
* @throws RuntimeException
*/
public function create(string $path, string $editorId, string $creatorId, $templateId = null): string;
/**
* Get the token details for a given token
*
* @since 18.0.0
* @param string $token
* @return IToken
*/
public function getToken(string $token): IToken;
/**
* Cleanup expired tokens
*
* @since 18.0.0
* @return int number of deleted tokens
*/
public function cleanup(): int;
/**
* Check if direct editing is enabled
*
* @since 20.0.0
* @return bool
*/
public function isEnabled(): bool;
/**
* @since 24.0.0
* @return IEditor[]
*/
public function getEditors(): array;
}
@@ -0,0 +1,81 @@
<?php
/**
* @copyright Copyright (c) 2019 Julius Härtl <jus@bitgrid.net>
*
* @author Julius Härtl <jus@bitgrid.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\DirectEditing;
use OCP\Files\File;
use OCP\Files\NotFoundException;
/**
* @since 18.0.0
*/
interface IToken {
/**
* Extend the token validity time
*
* @since 18.0.0
*/
public function extend(): void;
/**
* Invalidate the token
*
* @since 18.0.0
*/
public function invalidate(): void;
/**
* Check if the token has already been used
*
* @since 18.0.0
* @return bool
*/
public function hasBeenAccessed(): bool;
/**
* Change to the user scope of the token
*
* @since 18.0.0
*/
public function useTokenScope(): void;
/**
* Get the file that is related to the token
*
* @since 18.0.0
* @return File
* @throws NotFoundException
*/
public function getFile(): File;
/**
* @since 18.0.0
* @return string
*/
public function getEditor(): string;
/**
* @since 18.0.0
* @return string
*/
public function getUser(): string;
}
@@ -0,0 +1,57 @@
<?php
/**
* @copyright Copyright (c) 2019 Julius Härtl <jus@bitgrid.net>
*
* @author Julius Härtl <jus@bitgrid.net>
* @author Morris Jobke <hey@morrisjobke.de>
*
* @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\DirectEditing;
use OCP\EventDispatcher\Event;
/**
* Event to allow to register the direct editor.
*
* @since 18.0.0
*/
class RegisterDirectEditorEvent extends Event {
/**
* @var IManager
*/
private $manager;
/**
* RegisterDirectEditorEvent constructor.
*
* @param IManager $manager
* @since 18.0.0
*/
public function __construct(IManager $manager) {
parent::__construct();
$this->manager = $manager;
}
/**
* @since 18.0.0
* @param IEditor $editor
*/
public function register(IEditor $editor): void {
$this->manager->registerDirectEditor($editor);
}
}