@@ -45,7 +45,7 @@ class AttachmentApiController extends ApiController {
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public function getAll() {
|
public function getAll() {
|
||||||
$attachment = $this->attachmentService->findAll($this->request->getParam('cardId'));
|
$attachment = $this->attachmentService->findAll($this->request->getParam('cardId'), true);
|
||||||
return new DataResponse($attachment, HTTP::STATUS_OK);
|
return new DataResponse($attachment, HTTP::STATUS_OK);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ class AttachmentController extends Controller {
|
|||||||
* @NoAdminRequired
|
* @NoAdminRequired
|
||||||
*/
|
*/
|
||||||
public function getAll($cardId) {
|
public function getAll($cardId) {
|
||||||
return $this->attachmentService->findAll($cardId);
|
return $this->attachmentService->findAll($cardId, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -81,6 +81,22 @@ class AttachmentMapper extends DeckMapper implements IPermissionMapper {
|
|||||||
return $this->mapRowToEntity($row);
|
return $this->mapRowToEntity($row);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function findByData($cardId, $data) {
|
||||||
|
$qb = $this->db->getQueryBuilder();
|
||||||
|
$qb->select('*')
|
||||||
|
->from('deck_attachment')
|
||||||
|
->where($qb->expr()->eq('card_id', $qb->createNamedParameter($cardId, IQueryBuilder::PARAM_INT)))
|
||||||
|
->andWhere($qb->expr()->eq('data', $qb->createNamedParameter($data, IQueryBuilder::PARAM_STR)));
|
||||||
|
$cursor = $qb->execute();
|
||||||
|
$row = $cursor->fetch(PDO::FETCH_ASSOC);
|
||||||
|
if($row === false) {
|
||||||
|
$cursor->closeCursor();
|
||||||
|
throw new DoesNotExistException('Did expect one result but found none when executing' . $qb);
|
||||||
|
}
|
||||||
|
$cursor->closeCursor();
|
||||||
|
return $this->mapRowToEntity($row);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Find all attachments for a card
|
* Find all attachments for a card
|
||||||
*
|
*
|
||||||
|
|||||||
44
lib/Exceptions/ConflictException.php
Normal file
44
lib/Exceptions/ConflictException.php
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* @copyright Copyright (c) 2020 Jakob Röhrl <jakob.roehrl@web.de>
|
||||||
|
*
|
||||||
|
* @author Jakob Röhrl <jakob.roehrl@web.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 OCA\Deck\Exceptions;
|
||||||
|
|
||||||
|
use OCA\Deck\StatusException;
|
||||||
|
|
||||||
|
class ConflictException extends StatusException {
|
||||||
|
|
||||||
|
private $data;
|
||||||
|
|
||||||
|
public function __construct($message, $data = null) {
|
||||||
|
parent::__construct($message);
|
||||||
|
$this->data = $data;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getStatus() {
|
||||||
|
return 409;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getData() {
|
||||||
|
return $this->data;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -25,6 +25,7 @@ namespace OCA\Deck\Middleware;
|
|||||||
|
|
||||||
use OCA\Deck\Controller\PageController;
|
use OCA\Deck\Controller\PageController;
|
||||||
use OCA\Deck\StatusException;
|
use OCA\Deck\StatusException;
|
||||||
|
use OCA\Deck\Exceptions\ConflictException;
|
||||||
use OCP\AppFramework\Db\DoesNotExistException;
|
use OCP\AppFramework\Db\DoesNotExistException;
|
||||||
use OCP\AppFramework\Middleware;
|
use OCP\AppFramework\Middleware;
|
||||||
use OCP\AppFramework\Http\JSONResponse;
|
use OCP\AppFramework\Http\JSONResponse;
|
||||||
@@ -63,6 +64,17 @@ class ExceptionMiddleware extends Middleware {
|
|||||||
* @throws \Exception
|
* @throws \Exception
|
||||||
*/
|
*/
|
||||||
public function afterException($controller, $methodName, \Exception $exception) {
|
public function afterException($controller, $methodName, \Exception $exception) {
|
||||||
|
if ($exception instanceof ConflictException) {
|
||||||
|
if ($this->config->getSystemValue('loglevel', Util::WARN) === Util::DEBUG) {
|
||||||
|
$this->logger->logException($exception);
|
||||||
|
}
|
||||||
|
return new JSONResponse([
|
||||||
|
'status' => $exception->getStatus(),
|
||||||
|
'message' => $exception->getMessage(),
|
||||||
|
'data' => $exception->getData(),
|
||||||
|
], $exception->getStatus());
|
||||||
|
}
|
||||||
|
|
||||||
if ($exception instanceof StatusException) {
|
if ($exception instanceof StatusException) {
|
||||||
if ($this->config->getSystemValue('loglevel', Util::WARN) === Util::DEBUG) {
|
if ($this->config->getSystemValue('loglevel', Util::WARN) === Util::DEBUG) {
|
||||||
$this->logger->logException($exception);
|
$this->logger->logException($exception);
|
||||||
|
|||||||
@@ -25,7 +25,9 @@ namespace OCA\Deck\Service;
|
|||||||
|
|
||||||
use OC\Security\CSP\ContentSecurityPolicyManager;
|
use OC\Security\CSP\ContentSecurityPolicyManager;
|
||||||
use OCA\Deck\Db\Attachment;
|
use OCA\Deck\Db\Attachment;
|
||||||
|
use OCA\Deck\Db\AttachmentMapper;
|
||||||
use OCA\Deck\StatusException;
|
use OCA\Deck\StatusException;
|
||||||
|
use OCA\Deck\Exceptions\ConflictException;
|
||||||
use OCP\AppFramework\Http\ContentSecurityPolicy;
|
use OCP\AppFramework\Http\ContentSecurityPolicy;
|
||||||
use OCP\AppFramework\Http\EmptyContentSecurityPolicy;
|
use OCP\AppFramework\Http\EmptyContentSecurityPolicy;
|
||||||
use OCP\AppFramework\Http\FileDisplayResponse;
|
use OCP\AppFramework\Http\FileDisplayResponse;
|
||||||
@@ -43,6 +45,7 @@ use OCP\IL10N;
|
|||||||
use OCP\ILogger;
|
use OCP\ILogger;
|
||||||
use OCP\IRequest;
|
use OCP\IRequest;
|
||||||
|
|
||||||
|
|
||||||
class FileService implements IAttachmentService {
|
class FileService implements IAttachmentService {
|
||||||
|
|
||||||
private $l10n;
|
private $l10n;
|
||||||
@@ -51,6 +54,7 @@ class FileService implements IAttachmentService {
|
|||||||
private $logger;
|
private $logger;
|
||||||
private $rootFolder;
|
private $rootFolder;
|
||||||
private $config;
|
private $config;
|
||||||
|
private $attachmentMapper;
|
||||||
|
|
||||||
public function __construct(
|
public function __construct(
|
||||||
IL10N $l10n,
|
IL10N $l10n,
|
||||||
@@ -58,7 +62,8 @@ class FileService implements IAttachmentService {
|
|||||||
IRequest $request,
|
IRequest $request,
|
||||||
ILogger $logger,
|
ILogger $logger,
|
||||||
IRootFolder $rootFolder,
|
IRootFolder $rootFolder,
|
||||||
IConfig $config
|
IConfig $config,
|
||||||
|
AttachmentMapper $attachmentMapper
|
||||||
) {
|
) {
|
||||||
$this->l10n = $l10n;
|
$this->l10n = $l10n;
|
||||||
$this->appData = $appData;
|
$this->appData = $appData;
|
||||||
@@ -66,6 +71,7 @@ class FileService implements IAttachmentService {
|
|||||||
$this->logger = $logger;
|
$this->logger = $logger;
|
||||||
$this->rootFolder = $rootFolder;
|
$this->rootFolder = $rootFolder;
|
||||||
$this->config = $config;
|
$this->config = $config;
|
||||||
|
$this->attachmentMapper = $attachmentMapper;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -146,13 +152,15 @@ class FileService implements IAttachmentService {
|
|||||||
* @param Attachment $attachment
|
* @param Attachment $attachment
|
||||||
* @throws NotPermittedException
|
* @throws NotPermittedException
|
||||||
* @throws StatusException
|
* @throws StatusException
|
||||||
|
* @throws ConflictException
|
||||||
*/
|
*/
|
||||||
public function create(Attachment $attachment) {
|
public function create(Attachment $attachment) {
|
||||||
$file = $this->getUploadedFile();
|
$file = $this->getUploadedFile();
|
||||||
$folder = $this->getFolder($attachment);
|
$folder = $this->getFolder($attachment);
|
||||||
$fileName = $file['name'];
|
$fileName = $file['name'];
|
||||||
if ($folder->fileExists($fileName)) {
|
if ($folder->fileExists($fileName)) {
|
||||||
throw new StatusException('File already exists.');
|
$attachment = $this->attachmentMapper->findByData($attachment->getCardId(), $fileName);
|
||||||
|
throw new ConflictException('File already exists.', $attachment);
|
||||||
}
|
}
|
||||||
|
|
||||||
$target = $folder->newFile($fileName);
|
$target = $folder->newFile($fileName);
|
||||||
|
|||||||
106
package-lock.json
generated
106
package-lock.json
generated
@@ -3442,6 +3442,22 @@
|
|||||||
"resolved": "https://registry.npmjs.org/@nextcloud/browserslist-config/-/browserslist-config-1.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/@nextcloud/browserslist-config/-/browserslist-config-1.0.0.tgz",
|
||||||
"integrity": "sha512-f+sKpdLZXkODV+OY39K1M+Spmd4RgxmtEXmNn4Bviv4R7uBFHXuw+JX9ZdfDeOryfHjJ/TRQxQEp0GMpBwZFUw=="
|
"integrity": "sha512-f+sKpdLZXkODV+OY39K1M+Spmd4RgxmtEXmNn4Bviv4R7uBFHXuw+JX9ZdfDeOryfHjJ/TRQxQEp0GMpBwZFUw=="
|
||||||
},
|
},
|
||||||
|
"@nextcloud/dialogs": {
|
||||||
|
"version": "1.2.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/@nextcloud/dialogs/-/dialogs-1.2.1.tgz",
|
||||||
|
"integrity": "sha512-v+nnlqdOUpqumD51Fkjo1V9W/xImW7GcY29Iq1ErSDCmkhrS4pk9YDYrZO86teey+pT5nZ0gdGAtiU+LNFQgzw==",
|
||||||
|
"requires": {
|
||||||
|
"core-js": "3.6.4",
|
||||||
|
"toastify-js": "^1.6.2"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"core-js": {
|
||||||
|
"version": "3.6.4",
|
||||||
|
"resolved": "https://registry.npmjs.org/core-js/-/core-js-3.6.4.tgz",
|
||||||
|
"integrity": "sha512-4paDGScNgZP2IXXilaffL9X7968RuvwlkK3xWtZRVqgd8SYNiVKRJvkFd1aqqEuPfN7E68ZHEp9hDj6lHj4Hyw=="
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"@nextcloud/event-bus": {
|
"@nextcloud/event-bus": {
|
||||||
"version": "1.1.2",
|
"version": "1.1.2",
|
||||||
"resolved": "https://registry.npmjs.org/@nextcloud/event-bus/-/event-bus-1.1.2.tgz",
|
"resolved": "https://registry.npmjs.org/@nextcloud/event-bus/-/event-bus-1.1.2.tgz",
|
||||||
@@ -3469,6 +3485,21 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"@nextcloud/files": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/@nextcloud/files/-/files-1.0.0.tgz",
|
||||||
|
"integrity": "sha512-HJF+eavX8BymQ83jGkluNyQ8zrbFfuiQwunSe140sbQ042pjyljSUACf/WyvVAeqaCj7cIeYMPQBtvykom0+cg==",
|
||||||
|
"requires": {
|
||||||
|
"core-js": "3.5.0"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"core-js": {
|
||||||
|
"version": "3.5.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/core-js/-/core-js-3.5.0.tgz",
|
||||||
|
"integrity": "sha512-Ifh3kj78gzQ7NAoJXeTu+XwzDld0QRIwjBLRqAMhuLhP3d2Av5wmgE9ycfnvK6NAEjTkQ1sDPeoEZAWO3Hx1Uw=="
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"@nextcloud/l10n": {
|
"@nextcloud/l10n": {
|
||||||
"version": "1.1.0",
|
"version": "1.1.0",
|
||||||
"resolved": "https://registry.npmjs.org/@nextcloud/l10n/-/l10n-1.1.0.tgz",
|
"resolved": "https://registry.npmjs.org/@nextcloud/l10n/-/l10n-1.1.0.tgz",
|
||||||
@@ -4307,9 +4338,9 @@
|
|||||||
"integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8="
|
"integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8="
|
||||||
},
|
},
|
||||||
"kind-of": {
|
"kind-of": {
|
||||||
"version": "6.0.2",
|
"version": "6.0.3",
|
||||||
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz",
|
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
|
||||||
"integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA=="
|
"integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw=="
|
||||||
},
|
},
|
||||||
"micromatch": {
|
"micromatch": {
|
||||||
"version": "3.1.10",
|
"version": "3.1.10",
|
||||||
@@ -6979,9 +7010,9 @@
|
|||||||
"integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8="
|
"integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8="
|
||||||
},
|
},
|
||||||
"kind-of": {
|
"kind-of": {
|
||||||
"version": "6.0.2",
|
"version": "6.0.3",
|
||||||
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz",
|
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
|
||||||
"integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA=="
|
"integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw=="
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -7384,9 +7415,9 @@
|
|||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"acorn": {
|
"acorn": {
|
||||||
"version": "7.1.0",
|
"version": "7.1.1",
|
||||||
"resolved": "https://registry.npmjs.org/acorn/-/acorn-7.1.0.tgz",
|
"resolved": "https://registry.npmjs.org/acorn/-/acorn-7.1.1.tgz",
|
||||||
"integrity": "sha512-kL5CuoXA/dgxlBbVrflsflzQ3PAas7RYZB52NOm/6839iVYJgKMJ3cQJD+t2i5+qFa8h3MDpEOJiS64E8JLnSQ==",
|
"integrity": "sha512-add7dgA5ppRPxCFJoAGfMDi7PIBXq1RtGo7BhbLaxwrXPOmw8gq48Y9ozT01hUKy9byMjlR20EJhu5zlkErEkg==",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"acorn-jsx": {
|
"acorn-jsx": {
|
||||||
@@ -7985,9 +8016,9 @@
|
|||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"acorn": {
|
"acorn": {
|
||||||
"version": "7.1.0",
|
"version": "7.1.1",
|
||||||
"resolved": "https://registry.npmjs.org/acorn/-/acorn-7.1.0.tgz",
|
"resolved": "https://registry.npmjs.org/acorn/-/acorn-7.1.1.tgz",
|
||||||
"integrity": "sha512-kL5CuoXA/dgxlBbVrflsflzQ3PAas7RYZB52NOm/6839iVYJgKMJ3cQJD+t2i5+qFa8h3MDpEOJiS64E8JLnSQ==",
|
"integrity": "sha512-add7dgA5ppRPxCFJoAGfMDi7PIBXq1RtGo7BhbLaxwrXPOmw8gq48Y9ozT01hUKy9byMjlR20EJhu5zlkErEkg==",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"eslint-visitor-keys": {
|
"eslint-visitor-keys": {
|
||||||
@@ -12620,9 +12651,9 @@
|
|||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"acorn": {
|
"acorn": {
|
||||||
"version": "7.1.0",
|
"version": "7.1.1",
|
||||||
"resolved": "https://registry.npmjs.org/acorn/-/acorn-7.1.0.tgz",
|
"resolved": "https://registry.npmjs.org/acorn/-/acorn-7.1.1.tgz",
|
||||||
"integrity": "sha512-kL5CuoXA/dgxlBbVrflsflzQ3PAas7RYZB52NOm/6839iVYJgKMJ3cQJD+t2i5+qFa8h3MDpEOJiS64E8JLnSQ==",
|
"integrity": "sha512-add7dgA5ppRPxCFJoAGfMDi7PIBXq1RtGo7BhbLaxwrXPOmw8gq48Y9ozT01hUKy9byMjlR20EJhu5zlkErEkg==",
|
||||||
"dev": true
|
"dev": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -13321,7 +13352,7 @@
|
|||||||
},
|
},
|
||||||
"mkdirp": {
|
"mkdirp": {
|
||||||
"version": "0.5.1",
|
"version": "0.5.1",
|
||||||
"resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
|
"resolved": "http://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
|
||||||
"integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=",
|
"integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
@@ -13394,9 +13425,9 @@
|
|||||||
"integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg="
|
"integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg="
|
||||||
},
|
},
|
||||||
"kind-of": {
|
"kind-of": {
|
||||||
"version": "6.0.2",
|
"version": "6.0.3",
|
||||||
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz",
|
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
|
||||||
"integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA=="
|
"integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw=="
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -13930,7 +13961,7 @@
|
|||||||
},
|
},
|
||||||
"os-homedir": {
|
"os-homedir": {
|
||||||
"version": "1.0.2",
|
"version": "1.0.2",
|
||||||
"resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz",
|
"resolved": "http://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz",
|
||||||
"integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=",
|
"integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
@@ -13947,7 +13978,7 @@
|
|||||||
},
|
},
|
||||||
"os-tmpdir": {
|
"os-tmpdir": {
|
||||||
"version": "1.0.2",
|
"version": "1.0.2",
|
||||||
"resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz",
|
"resolved": "http://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz",
|
||||||
"integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=",
|
"integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
@@ -14128,7 +14159,7 @@
|
|||||||
},
|
},
|
||||||
"path-is-absolute": {
|
"path-is-absolute": {
|
||||||
"version": "1.0.1",
|
"version": "1.0.1",
|
||||||
"resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
|
"resolved": "http://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
|
||||||
"integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18="
|
"integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18="
|
||||||
},
|
},
|
||||||
"path-key": {
|
"path-key": {
|
||||||
@@ -14912,9 +14943,9 @@
|
|||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"kind-of": {
|
"kind-of": {
|
||||||
"version": "6.0.2",
|
"version": "6.0.3",
|
||||||
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz",
|
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
|
||||||
"integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==",
|
"integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
|
||||||
"dev": true
|
"dev": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -15299,9 +15330,9 @@
|
|||||||
"integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8="
|
"integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8="
|
||||||
},
|
},
|
||||||
"kind-of": {
|
"kind-of": {
|
||||||
"version": "6.0.2",
|
"version": "6.0.3",
|
||||||
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz",
|
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
|
||||||
"integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA=="
|
"integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw=="
|
||||||
},
|
},
|
||||||
"micromatch": {
|
"micromatch": {
|
||||||
"version": "3.1.10",
|
"version": "3.1.10",
|
||||||
@@ -16025,9 +16056,9 @@
|
|||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"kind-of": {
|
"kind-of": {
|
||||||
"version": "6.0.2",
|
"version": "6.0.3",
|
||||||
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz",
|
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
|
||||||
"integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==",
|
"integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"micromatch": {
|
"micromatch": {
|
||||||
@@ -16951,7 +16982,7 @@
|
|||||||
},
|
},
|
||||||
"string_decoder": {
|
"string_decoder": {
|
||||||
"version": "1.1.1",
|
"version": "1.1.1",
|
||||||
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
|
"resolved": "http://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
|
||||||
"integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
|
"integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
|
||||||
"requires": {
|
"requires": {
|
||||||
"safe-buffer": "~5.1.0"
|
"safe-buffer": "~5.1.0"
|
||||||
@@ -17520,9 +17551,9 @@
|
|||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"kind-of": {
|
"kind-of": {
|
||||||
"version": "6.0.2",
|
"version": "6.0.3",
|
||||||
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz",
|
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
|
||||||
"integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==",
|
"integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"micromatch": {
|
"micromatch": {
|
||||||
@@ -17828,6 +17859,11 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"toastify-js": {
|
||||||
|
"version": "1.7.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/toastify-js/-/toastify-js-1.7.0.tgz",
|
||||||
|
"integrity": "sha512-GmPy4zJ/ulCfmCHlfCtgcB+K2xhx2AXW3T/ZZOSjyjaIGevhz+uvR8HSCTay/wBq4tt2mUnBqlObP1sSWGlsnQ=="
|
||||||
|
},
|
||||||
"tough-cookie": {
|
"tough-cookie": {
|
||||||
"version": "3.0.1",
|
"version": "3.0.1",
|
||||||
"resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-3.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-3.0.1.tgz",
|
||||||
|
|||||||
@@ -32,6 +32,8 @@
|
|||||||
"@nextcloud/auth": "^1.2.1",
|
"@nextcloud/auth": "^1.2.1",
|
||||||
"@nextcloud/axios": "^1.3.1",
|
"@nextcloud/axios": "^1.3.1",
|
||||||
"@nextcloud/l10n": "^1.1.0",
|
"@nextcloud/l10n": "^1.1.0",
|
||||||
|
"@nextcloud/dialogs": "^1.2.1",
|
||||||
|
"@nextcloud/files": "^1.0.0",
|
||||||
"@nextcloud/moment": "^1.1.0",
|
"@nextcloud/moment": "^1.1.0",
|
||||||
"@nextcloud/router": "^1.0.0",
|
"@nextcloud/router": "^1.0.0",
|
||||||
"@nextcloud/vue": "^1.4.0",
|
"@nextcloud/vue": "^1.4.0",
|
||||||
|
|||||||
@@ -22,30 +22,263 @@
|
|||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
{{ card.attachments }}
|
|
||||||
<button class="icon-upload" @click="clickAddNewAttachmment()">
|
<button class="icon-upload" @click="clickAddNewAttachmment()">
|
||||||
{{ t('deck', 'Upload attachment') }}
|
{{ t('settings', 'Upload attachment') }}
|
||||||
</button>
|
</button>
|
||||||
|
<input ref="localAttachments"
|
||||||
|
type="file"
|
||||||
|
style="display: none;"
|
||||||
|
@change="onLocalAttachmentSelected">
|
||||||
|
<div class="attachment-list">
|
||||||
|
<ul>
|
||||||
|
<li v-for="attachment in attachments"
|
||||||
|
:key="attachment.id"
|
||||||
|
class="attachment"
|
||||||
|
style="display: flex;">
|
||||||
|
<a class="fileicon" :style="mimetypeForAttachment(attachment)" :href="attachmentUrl(attachment)" />
|
||||||
|
<div class="details">
|
||||||
|
<a :href="attachmentUrl(attachment)" target="_blank">
|
||||||
|
<div class="filename">
|
||||||
|
<span class="basename">{{ attachment.data }}</span>
|
||||||
|
</div>
|
||||||
|
<span class="filesize">{{ formattedFileSize(attachment.extendedData.filesize) }}</span>
|
||||||
|
<span class="filedate">{{ relativeDate(attachment.createdAt*1000) }}</span>
|
||||||
|
<span class="filedate">{{ attachment.createdBy }}</span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<Actions>
|
||||||
|
<ActionButton v-if="attachment.deletedAt === 0" icon="icon-delete" @click="deleteAttachment(attachment)">
|
||||||
|
{{ t('deck', 'Delete Attachment') }}
|
||||||
|
</ActionButton>
|
||||||
|
|
||||||
|
<ActionButton v-else icon="icon-history" @click="restoreAttachment(attachment)">
|
||||||
|
{{ t('deck', 'Restore Attachment') }}
|
||||||
|
</ActionButton>
|
||||||
|
</Actions>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<Modal v-if="modalShow" :title="t('deck', 'File already exists')" @close="modalShow=false">
|
||||||
|
<div class="modal__content">
|
||||||
|
<h2>{{ t('deck', 'File already exists') }}</h2>
|
||||||
|
<p>
|
||||||
|
{{ t('deck', 'A file with the name {filename} already exists.', {filename: file.name}) }}
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
{{ t('deck', 'Do you want to overwrite it?') }}
|
||||||
|
</p>
|
||||||
|
<button class="primary" @click="overrideAttachment">
|
||||||
|
{{ t('deck', 'Overwrite file') }}
|
||||||
|
</button>
|
||||||
|
<button @click="modalShow=false">
|
||||||
|
{{ t('deck', 'Keep existing file') }}
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</Modal>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import { Actions, ActionButton, Modal } from '@nextcloud/vue'
|
||||||
|
import { showError } from '@nextcloud/dialogs'
|
||||||
|
import { formatFileSize } from '@nextcloud/files'
|
||||||
|
import relativeDate from '../../mixins/relativeDate'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'CardSidebarTabAttachments',
|
name: 'CardSidebarTabAttachments',
|
||||||
|
components: {
|
||||||
|
Actions,
|
||||||
|
ActionButton,
|
||||||
|
Modal,
|
||||||
|
},
|
||||||
|
mixins: [ relativeDate ],
|
||||||
props: {
|
props: {
|
||||||
card: {
|
card: {
|
||||||
type: Object,
|
type: Object,
|
||||||
default: null,
|
default: null,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
modalShow: false,
|
||||||
|
file: '',
|
||||||
|
overwriteAttachment: null,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
attachments() {
|
||||||
|
return this.$store.getters.attachmentsByCard(this.card.id)
|
||||||
|
},
|
||||||
|
formattedFileSize() {
|
||||||
|
return (filesize) => formatFileSize(filesize)
|
||||||
|
},
|
||||||
|
mimetypeForAttachment() {
|
||||||
|
return (attachment) => {
|
||||||
|
const url = OC.MimeType.getIconUrl(attachment.extendedData.mimetype)
|
||||||
|
const styles = {
|
||||||
|
'background-image': `url("${url}")`,
|
||||||
|
}
|
||||||
|
return styles
|
||||||
|
}
|
||||||
|
},
|
||||||
|
attachmentUrl() {
|
||||||
|
return (attachment) => OC.generateUrl(`/apps/deck/cards/${attachment.cardId}/attachment/${attachment.id}`)
|
||||||
|
},
|
||||||
|
},
|
||||||
|
watch: {
|
||||||
|
'card': {
|
||||||
|
handler() {
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
created: function() {
|
||||||
|
this.$store.dispatch('fetchAttachments', this.card.id)
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
clickAddNewAttachmment() {
|
clickAddNewAttachmment() {
|
||||||
|
this.$refs.localAttachments.click()
|
||||||
|
},
|
||||||
|
async onLocalAttachmentSelected(event) {
|
||||||
|
const bodyFormData = new FormData()
|
||||||
|
bodyFormData.append('cardId', this.card.id)
|
||||||
|
bodyFormData.append('type', 'deck_file')
|
||||||
|
bodyFormData.append('file', event.target.files[0])
|
||||||
|
this.file = event.target.files[0]
|
||||||
|
try {
|
||||||
|
await this.$store.dispatch('createAttachment', { cardId: this.card.id, formData: bodyFormData })
|
||||||
|
} catch (err) {
|
||||||
|
if (err.response.data.status === 409) {
|
||||||
|
this.overwriteAttachment = err.response.data.data
|
||||||
|
this.modalShow = true
|
||||||
|
} else {
|
||||||
|
showError(err.response.data.message)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
event.target.value = ''
|
||||||
|
},
|
||||||
|
deleteAttachment(attachment) {
|
||||||
|
this.$store.dispatch('deleteAttachment', attachment)
|
||||||
|
},
|
||||||
|
restoreAttachment(attachment) {
|
||||||
|
this.$store.dispatch('restoreAttachment', attachment)
|
||||||
|
},
|
||||||
|
overrideAttachment() {
|
||||||
|
const bodyFormData = new FormData()
|
||||||
|
bodyFormData.append('cardId', this.card.id)
|
||||||
|
bodyFormData.append('type', 'deck_file')
|
||||||
|
bodyFormData.append('file', this.file)
|
||||||
|
this.$store.dispatch('updateAttachment', {
|
||||||
|
cardId: this.card.id,
|
||||||
|
attachmentId: this.overwriteAttachment.id,
|
||||||
|
formData: bodyFormData,
|
||||||
|
})
|
||||||
|
|
||||||
|
this.modalShow = false
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped lang="scss">
|
||||||
|
.icon-upload {
|
||||||
|
padding-left: 35px;
|
||||||
|
background-position: 10px center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal__content {
|
||||||
|
width: 25vw;
|
||||||
|
min-width: 250px;
|
||||||
|
height: 120px;
|
||||||
|
text-align: center;
|
||||||
|
margin: 20px 20px 60px 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal__content button {
|
||||||
|
float: right;
|
||||||
|
margin: 40px 3px 3px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.attachment-list {
|
||||||
|
&.selector {
|
||||||
|
padding: 10px;
|
||||||
|
position: absolute;
|
||||||
|
width: 30%;
|
||||||
|
max-width: 500px;
|
||||||
|
min-width: 200px;
|
||||||
|
max-height: 50%;
|
||||||
|
top: 50%;
|
||||||
|
left: 50%;
|
||||||
|
transform: translate(-50%, -50%);
|
||||||
|
background-color: #eee;
|
||||||
|
z-index: 2;
|
||||||
|
border-radius: 3px;
|
||||||
|
box-shadow: 0 0 3px darkgray;
|
||||||
|
overflow: scroll;
|
||||||
|
}
|
||||||
|
h3.attachment-selector {
|
||||||
|
margin: 0 0 10px;
|
||||||
|
padding: 0;
|
||||||
|
.icon-close {
|
||||||
|
display: inline-block;
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
li.attachment {
|
||||||
|
display: flex;
|
||||||
|
padding: 3px;
|
||||||
|
|
||||||
|
&.deleted {
|
||||||
|
opacity: .5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fileicon {
|
||||||
|
display: inline-block;
|
||||||
|
min-width: 32px;
|
||||||
|
width: 32px;
|
||||||
|
height: 32px;
|
||||||
|
background-size: contain;
|
||||||
|
}
|
||||||
|
.details {
|
||||||
|
flex-grow: 1;
|
||||||
|
flex-shrink: 1;
|
||||||
|
min-width: 0;
|
||||||
|
flex-basis: 50%;
|
||||||
|
line-height: 110%;
|
||||||
|
padding: 2px;
|
||||||
|
}
|
||||||
|
.filename {
|
||||||
|
width: 70%;
|
||||||
|
display: flex;
|
||||||
|
.basename {
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
padding-bottom: 2px;
|
||||||
|
}
|
||||||
|
.extension {
|
||||||
|
opacity: 0.7;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.filesize, .filedate {
|
||||||
|
font-size: 90%;
|
||||||
|
color: darkgray;
|
||||||
|
}
|
||||||
|
.app-popover-menu-utils {
|
||||||
|
position: relative;
|
||||||
|
right: -10px;
|
||||||
|
button {
|
||||||
|
height: 32px;
|
||||||
|
width: 42px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
button.icon-history {
|
||||||
|
width: 44px;
|
||||||
|
}
|
||||||
|
progress {
|
||||||
|
margin-top: 3px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -34,7 +34,9 @@
|
|||||||
<span>{{ checkListCheckedCount }}/{{ checkListCount }}</span>
|
<span>{{ checkListCheckedCount }}/{{ checkListCount }}</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div v-if="card.attachments" class="card-files icon icon-files-dark" />
|
<div v-if="card.attachmentCount > 0" class="icon-attach icon icon-attach-dark">
|
||||||
|
{{ card.attachmentCount }}
|
||||||
|
</div>
|
||||||
|
|
||||||
<AvatarList :users="card.assignedUsers" />
|
<AvatarList :users="card.assignedUsers" />
|
||||||
</div>
|
</div>
|
||||||
@@ -99,9 +101,10 @@ export default {
|
|||||||
|
|
||||||
.icon {
|
.icon {
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
padding: 12px 3px;
|
padding: 12px 14px;
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
background-position: left;
|
background-position: left;
|
||||||
|
background-size: 16px;
|
||||||
span {
|
span {
|
||||||
margin-left: 18px;
|
margin-left: 18px;
|
||||||
}
|
}
|
||||||
|
|||||||
81
src/services/AttachmentApi.js
Normal file
81
src/services/AttachmentApi.js
Normal file
@@ -0,0 +1,81 @@
|
|||||||
|
/*
|
||||||
|
* @copyright Copyright (c) 2020 Jakob Röhrl <jakob.roehrl@web.de>
|
||||||
|
*
|
||||||
|
* @author Jakob Röhrl <jakob.roehrl@web.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/>.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
import axios from '@nextcloud/axios'
|
||||||
|
import { generateUrl } from '@nextcloud/router'
|
||||||
|
|
||||||
|
export class AttachmentApi {
|
||||||
|
|
||||||
|
url(url) {
|
||||||
|
return generateUrl(`/apps/deck${url}`)
|
||||||
|
}
|
||||||
|
|
||||||
|
async fetchAttachments(cardId) {
|
||||||
|
const response = await axios({
|
||||||
|
method: 'GET',
|
||||||
|
url: this.url(`/cards/${cardId}/attachments`),
|
||||||
|
})
|
||||||
|
return response.data
|
||||||
|
}
|
||||||
|
|
||||||
|
async createAttachment({ cardId, formData }) {
|
||||||
|
const response = await axios({
|
||||||
|
method: 'POST',
|
||||||
|
url: this.url(`/cards/${cardId}/attachment`),
|
||||||
|
data: formData,
|
||||||
|
})
|
||||||
|
return response.data
|
||||||
|
}
|
||||||
|
|
||||||
|
async updateAttachment({ cardId, attachmentId, formData }) {
|
||||||
|
const response = await axios({
|
||||||
|
method: 'POST',
|
||||||
|
url: this.url(`/cards/${cardId}/attachment/${attachmentId}`),
|
||||||
|
data: formData,
|
||||||
|
})
|
||||||
|
return response.data
|
||||||
|
}
|
||||||
|
|
||||||
|
async deleteAttachment(attachment) {
|
||||||
|
await axios({
|
||||||
|
method: 'DELETE',
|
||||||
|
url: this.url(`/cards/${attachment.cardId}/attachment/${attachment.id}`),
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
async restoreAttachment(attachment) {
|
||||||
|
const response = await axios({
|
||||||
|
method: 'GET',
|
||||||
|
url: this.url(`/cards/${attachment.cardId}/attachment/${attachment.id}/restore`),
|
||||||
|
})
|
||||||
|
return response.data
|
||||||
|
}
|
||||||
|
|
||||||
|
async displayAttachment(attachment) {
|
||||||
|
const response = await axios({
|
||||||
|
method: 'GET',
|
||||||
|
url: this.url(`/cards/${attachment.cardId}/attachment/${attachment.id}`),
|
||||||
|
})
|
||||||
|
return response.data
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
110
src/store/attachment.js
Normal file
110
src/store/attachment.js
Normal file
@@ -0,0 +1,110 @@
|
|||||||
|
/*
|
||||||
|
* @copyright Copyright (c) 2020 Jakob Röhrl <jakob.roehrl@web.de>
|
||||||
|
*
|
||||||
|
* @author Jakob Röhrl <jakob.roehrl@web.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/>.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
import { AttachmentApi } from './../services/AttachmentApi'
|
||||||
|
import Vue from 'vue'
|
||||||
|
|
||||||
|
const apiClient = new AttachmentApi()
|
||||||
|
|
||||||
|
export default {
|
||||||
|
state: {
|
||||||
|
attachments: {},
|
||||||
|
},
|
||||||
|
getters: {
|
||||||
|
attachmentsByCard: state => (cardId) => {
|
||||||
|
if (typeof state.attachments[cardId] === 'undefined') {
|
||||||
|
return []
|
||||||
|
}
|
||||||
|
return state.attachments[cardId]
|
||||||
|
},
|
||||||
|
|
||||||
|
},
|
||||||
|
mutations: {
|
||||||
|
createAttachment(state, { cardId, attachment }) {
|
||||||
|
if (typeof state.attachments[cardId] === 'undefined') {
|
||||||
|
Vue.set(state.attachments, cardId, [attachment])
|
||||||
|
} else {
|
||||||
|
state.attachments[cardId].push(attachment)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
createAttachments(state, { cardId, attachments }) {
|
||||||
|
if (typeof state.attachments[cardId] === 'undefined') {
|
||||||
|
Vue.set(state.attachments, cardId, attachments)
|
||||||
|
} else {
|
||||||
|
state.attachments[cardId].push(attachments)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
updateAttachment(state, { cardId, attachment }) {
|
||||||
|
const existingIndex = state.attachments[attachment.cardId].findIndex(a => a.id === attachment.id)
|
||||||
|
if (existingIndex !== -1) {
|
||||||
|
Vue.set(state.attachments[cardId], existingIndex, attachment)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
deleteAttachment(state, deletedAttachment) {
|
||||||
|
const existingIndex = state.attachments[deletedAttachment.cardId].findIndex(a => a.id === deletedAttachment.id)
|
||||||
|
if (existingIndex !== -1) {
|
||||||
|
state.attachments[deletedAttachment.cardId][existingIndex].deletedAt = -1
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
restoreAttachment(state, restoredAttachment) {
|
||||||
|
const existingIndex = state.attachments[restoredAttachment.cardId].findIndex(a => a.id === restoredAttachment.id)
|
||||||
|
if (existingIndex !== -1) {
|
||||||
|
state.attachments[restoredAttachment.cardId][existingIndex].deletedAt = 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
},
|
||||||
|
actions: {
|
||||||
|
async fetchAttachments({ commit }, cardId) {
|
||||||
|
const attachments = await apiClient.fetchAttachments(cardId)
|
||||||
|
commit('createAttachments', { cardId, attachments })
|
||||||
|
},
|
||||||
|
|
||||||
|
async createAttachment({ commit }, { cardId, formData }) {
|
||||||
|
const attachment = await apiClient.createAttachment({ cardId, formData })
|
||||||
|
commit('createAttachment', { cardId, attachment })
|
||||||
|
commit('cardIncreaseAttachmentCount', cardId)
|
||||||
|
},
|
||||||
|
|
||||||
|
async updateAttachment({ commit }, { cardId, attachmentId, formData }) {
|
||||||
|
const attachment = await apiClient.updateAttachment({ cardId, attachmentId, formData })
|
||||||
|
commit('updateAttachment', { cardId, attachment })
|
||||||
|
},
|
||||||
|
|
||||||
|
async deleteAttachment({ commit }, attachment) {
|
||||||
|
await apiClient.deleteAttachment(attachment)
|
||||||
|
commit('deleteAttachment', attachment)
|
||||||
|
commit('cardDecreaseAttachmentCount', attachment.cardId)
|
||||||
|
},
|
||||||
|
|
||||||
|
async restoreAttachment({ commit }, attachment) {
|
||||||
|
const restoredAttachment = await apiClient.restoreAttachment(attachment)
|
||||||
|
commit('restoreAttachment', restoredAttachment)
|
||||||
|
commit('cardIncreaseAttachmentCount', attachment.cardId)
|
||||||
|
},
|
||||||
|
|
||||||
|
},
|
||||||
|
}
|
||||||
@@ -140,6 +140,20 @@ export default {
|
|||||||
Vue.set(state.cards[existingIndex], property, card[property])
|
Vue.set(state.cards[existingIndex], property, card[property])
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
cardIncreaseAttachmentCount(state, cardId) {
|
||||||
|
const existingIndex = state.cards.findIndex(_card => _card.id === cardId)
|
||||||
|
if (existingIndex !== -1) {
|
||||||
|
const existingCard = state.cards.find(_card => _card.id === cardId)
|
||||||
|
Vue.set(state.cards, existingCard.attachmentCount, existingCard.attachmentCount++)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
cardDecreaseAttachmentCount(state, cardId) {
|
||||||
|
const existingIndex = state.cards.findIndex(_card => _card.id === cardId)
|
||||||
|
if (existingIndex !== -1) {
|
||||||
|
const existingCard = state.cards.find(_card => _card.id === cardId)
|
||||||
|
Vue.set(state.cards, existingCard.attachmentCount, existingCard.attachmentCount--)
|
||||||
|
}
|
||||||
|
},
|
||||||
},
|
},
|
||||||
actions: {
|
actions: {
|
||||||
async addCard({ commit }, card) {
|
async addCard({ commit }, card) {
|
||||||
|
|||||||
@@ -30,6 +30,7 @@ import stack from './stack'
|
|||||||
import card from './card'
|
import card from './card'
|
||||||
import comment from './comment'
|
import comment from './comment'
|
||||||
import trashbin from './trashbin'
|
import trashbin from './trashbin'
|
||||||
|
import attachment from './attachment'
|
||||||
|
|
||||||
Vue.use(Vuex)
|
Vue.use(Vuex)
|
||||||
|
|
||||||
@@ -48,6 +49,7 @@ export default new Vuex.Store({
|
|||||||
card,
|
card,
|
||||||
comment,
|
comment,
|
||||||
trashbin,
|
trashbin,
|
||||||
|
attachment,
|
||||||
},
|
},
|
||||||
strict: debug,
|
strict: debug,
|
||||||
state: {
|
state: {
|
||||||
|
|||||||
@@ -24,28 +24,15 @@
|
|||||||
namespace OCA\Deck\Service;
|
namespace OCA\Deck\Service;
|
||||||
|
|
||||||
|
|
||||||
use OCA\Deck\AppInfo\Application;
|
|
||||||
use OCA\Deck\Db\AssignedUsers;
|
|
||||||
use OCA\Deck\Db\AssignedUsersMapper;
|
|
||||||
use OCA\Deck\Db\Attachment;
|
use OCA\Deck\Db\Attachment;
|
||||||
use OCA\Deck\Db\AttachmentMapper;
|
use OCA\Deck\Db\AttachmentMapper;
|
||||||
use OCA\Deck\Db\Card;
|
|
||||||
use OCA\Deck\Db\CardMapper;
|
|
||||||
use OCA\Deck\Db\StackMapper;
|
|
||||||
use OCA\Deck\InvalidAttachmentType;
|
|
||||||
use OCA\Deck\NotFoundException;
|
|
||||||
use OCA\Deck\StatusException;
|
|
||||||
use OCP\AppFramework\Http\ContentSecurityPolicy;
|
use OCP\AppFramework\Http\ContentSecurityPolicy;
|
||||||
use OCP\AppFramework\Http\FileDisplayResponse;
|
|
||||||
use OCP\AppFramework\Http\Response;
|
|
||||||
use OCP\AppFramework\Http\StreamResponse;
|
use OCP\AppFramework\Http\StreamResponse;
|
||||||
use OCP\AppFramework\IAppContainer;
|
|
||||||
use OCP\Files\Folder;
|
use OCP\Files\Folder;
|
||||||
use OCP\Files\IAppData;
|
use OCP\Files\IAppData;
|
||||||
use OCP\Files\IRootFolder;
|
use OCP\Files\IRootFolder;
|
||||||
use OCP\Files\SimpleFS\ISimpleFile;
|
use OCP\Files\SimpleFS\ISimpleFile;
|
||||||
use OCP\Files\SimpleFS\ISimpleFolder;
|
use OCP\Files\SimpleFS\ISimpleFolder;
|
||||||
use OCP\ICacheFactory;
|
|
||||||
use OCP\IConfig;
|
use OCP\IConfig;
|
||||||
use OCP\IL10N;
|
use OCP\IL10N;
|
||||||
use OCP\ILogger;
|
use OCP\ILogger;
|
||||||
@@ -69,6 +56,8 @@ class FileServiceTest extends TestCase {
|
|||||||
private $rootFolder;
|
private $rootFolder;
|
||||||
/** @var IConfig */
|
/** @var IConfig */
|
||||||
private $config;
|
private $config;
|
||||||
|
/** @var AttachmentMapper|MockObject */
|
||||||
|
private $attachmentMapper;
|
||||||
|
|
||||||
public function setUp(): void {
|
public function setUp(): void {
|
||||||
parent::setUp();
|
parent::setUp();
|
||||||
@@ -78,7 +67,8 @@ class FileServiceTest extends TestCase {
|
|||||||
$this->logger = $this->createMock(ILogger::class);
|
$this->logger = $this->createMock(ILogger::class);
|
||||||
$this->rootFolder = $this->createMock(IRootFolder::class);
|
$this->rootFolder = $this->createMock(IRootFolder::class);
|
||||||
$this->config = $this->createMock(IConfig::class);
|
$this->config = $this->createMock(IConfig::class);
|
||||||
$this->fileService = new FileService($this->l10n, $this->appData, $this->request, $this->logger, $this->rootFolder, $this->config);
|
$this->attachmentMapper = $this->createMock(AttachmentMapper::class);
|
||||||
|
$this->fileService = new FileService($this->l10n, $this->appData, $this->request, $this->logger, $this->rootFolder, $this->config, $this->attachmentMapper);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function mockGetFolder($cardId) {
|
public function mockGetFolder($cardId) {
|
||||||
|
|||||||
Reference in New Issue
Block a user