-
Notifications
You must be signed in to change notification settings - Fork 325
fix: pass boardId to attachmentController #7708
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,85 @@ | ||
| <?php | ||
|
|
||
| declare(strict_types=1); | ||
|
|
||
| /** | ||
| * SPDX-FileCopyrightText: 2026 Nextcloud GmbH and Nextcloud contributors | ||
| * SPDX-License-Identifier: AGPL-3.0-or-later | ||
| */ | ||
| namespace OCA\Deck\Controller; | ||
|
|
||
| use OCA\Deck\NotImplementedException; | ||
| use OCA\Deck\Service\AttachmentService; | ||
| use OCA\Deck\Service\BoardService; | ||
| use OCP\AppFramework\Http\Attribute\CORS; | ||
| use OCP\AppFramework\Http\Attribute\NoAdminRequired; | ||
| use OCP\AppFramework\Http\Attribute\NoCSRFRequired; | ||
| use OCP\AppFramework\Http\DataResponse; | ||
| use OCP\AppFramework\OCSController; | ||
| use OCP\IRequest; | ||
|
|
||
| class AttachmentOcsController extends OCSController { | ||
| public function __construct( | ||
| string $appName, | ||
| IRequest $request, | ||
| private AttachmentService $attachmentService, | ||
| private BoardService $boardService, | ||
| ) { | ||
| parent::__construct($appName, $request); | ||
| } | ||
|
|
||
| private function ensureLocalBoard(?int $boardId): void { | ||
| if ($boardId) { | ||
| $board = $this->boardService->find($boardId); | ||
| if ($board->getExternalId()) { | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. maybe add a check to ensure that the board exists before accessing it.
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. it's already integrated in the boardservice/permissionservice to throw NoPermission when the board does not exist |
||
| throw new NotImplementedException('attachments for federated boards are not supported'); | ||
| } | ||
| } | ||
| } | ||
|
|
||
| #[NoAdminRequired] | ||
| #[CORS] | ||
| #[NoCSRFRequired] | ||
| public function getAll(int $cardId, ?int $boardId = null): DataResponse { | ||
| $this->ensureLocalBoard($boardId); | ||
| $attachment = $this->attachmentService->findAll($cardId, true); | ||
| return new DataResponse($attachment); | ||
| } | ||
|
|
||
| #[NoAdminRequired] | ||
| #[CORS] | ||
| #[NoCSRFRequired] | ||
| public function create(int $cardId, string $type, string $data = '', ?int $boardId = null): DataResponse { | ||
| $this->ensureLocalBoard($boardId); | ||
| $attachment = $this->attachmentService->create($cardId, $type, $data); | ||
| return new DataResponse($attachment); | ||
| } | ||
|
|
||
| #[NoAdminRequired] | ||
| #[CORS] | ||
| #[NoCSRFRequired] | ||
| public function update(int $cardId, int $attachmentId, string $data, string $type = 'file', ?int $boardId = null): DataResponse { | ||
| $this->ensureLocalBoard($boardId); | ||
| $attachment = $this->attachmentService->update($cardId, $attachmentId, $data, $type); | ||
| return new DataResponse($attachment); | ||
| } | ||
|
|
||
| #[NoAdminRequired] | ||
| #[CORS] | ||
| #[NoCSRFRequired] | ||
| public function delete(int $cardId, int $attachmentId, string $type = 'file', ?int $boardId = null): DataResponse { | ||
| $this->ensureLocalBoard($boardId); | ||
| $attachment = $this->attachmentService->delete($cardId, $attachmentId, $type); | ||
| return new DataResponse($attachment); | ||
| } | ||
|
|
||
| #[NoAdminRequired] | ||
| #[CORS] | ||
| #[NoCSRFRequired] | ||
| public function restore(int $cardId, int $attachmentId, string $type = 'file', ?int $boardId = null): DataResponse { | ||
| $this->ensureLocalBoard($boardId); | ||
| $attachment = $this->attachmentService->restore($cardId, $attachmentId, $type); | ||
| return new DataResponse($attachment); | ||
| } | ||
|
|
||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| <?php | ||
|
|
||
| /** | ||
| * SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors | ||
| * SPDX-License-Identifier: AGPL-3.0-or-later | ||
| */ | ||
|
|
||
| namespace OCA\Deck; | ||
|
|
||
| use OCP\AppFramework\Http; | ||
|
|
||
| class NotImplementedException extends StatusException { | ||
| public function __construct($message) { | ||
| parent::__construct($message); | ||
| } | ||
|
|
||
| public function getStatus() { | ||
| return HTTP::STATUS_NOT_IMPLEMENTED; | ||
| } | ||
| } |
Uh oh!
There was an error while loading. Please reload this page.