2015-07-19 02:37:28 -05:00
|
|
|
<?php
|
2016-05-20 05:41:23 -05:00
|
|
|
/**
|
|
|
|
* AttachmentRepositoryInterface.php
|
2017-10-21 01:40:00 -05:00
|
|
|
* Copyright (c) 2017 thegrumpydictator@gmail.com
|
2016-05-20 05:41:23 -05:00
|
|
|
*
|
2017-10-21 01:40:00 -05:00
|
|
|
* This file is part of Firefly III.
|
2016-10-04 23:52:15 -05:00
|
|
|
*
|
2017-10-21 01:40:00 -05:00
|
|
|
* Firefly III is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Firefly III 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
|
2016-05-20 05:41:23 -05:00
|
|
|
*/
|
|
|
|
|
2017-04-09 00:44:22 -05:00
|
|
|
declare(strict_types=1);
|
2015-07-19 02:37:28 -05:00
|
|
|
|
|
|
|
namespace FireflyIII\Repositories\Attachment;
|
|
|
|
|
2016-10-23 02:44:14 -05:00
|
|
|
use Carbon\Carbon;
|
2015-07-19 02:37:28 -05:00
|
|
|
use FireflyIII\Models\Attachment;
|
2017-01-30 09:40:49 -06:00
|
|
|
use FireflyIII\User;
|
2016-02-22 23:39:01 -06:00
|
|
|
use Illuminate\Support\Collection;
|
2015-07-19 02:37:28 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Interface AttachmentRepositoryInterface
|
|
|
|
*
|
|
|
|
* @package FireflyIII\Repositories\Attachment
|
|
|
|
*/
|
|
|
|
interface AttachmentRepositoryInterface
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param Attachment $attachment
|
|
|
|
*
|
2015-07-26 08:51:07 -05:00
|
|
|
* @return bool
|
2015-07-19 02:37:28 -05:00
|
|
|
*/
|
2016-02-06 11:59:48 -06:00
|
|
|
public function destroy(Attachment $attachment): bool;
|
2015-07-19 02:53:58 -05:00
|
|
|
|
2016-12-25 05:23:36 -06:00
|
|
|
/**
|
|
|
|
* @param Attachment $attachment
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function exists(Attachment $attachment): bool;
|
|
|
|
|
2017-07-30 01:22:39 -05:00
|
|
|
/**
|
|
|
|
* @param int $id
|
|
|
|
*
|
|
|
|
* @return Attachment
|
|
|
|
*/
|
|
|
|
public function find(int $id): Attachment;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param int $id
|
|
|
|
*
|
|
|
|
* @return Attachment
|
|
|
|
*/
|
2017-08-12 00:47:42 -05:00
|
|
|
public function findWithoutUser(int $id): Attachment;
|
2017-07-30 01:22:39 -05:00
|
|
|
|
2016-12-25 05:23:36 -06:00
|
|
|
/**
|
2016-12-30 06:47:23 -06:00
|
|
|
* @return Collection
|
2016-12-25 05:23:36 -06:00
|
|
|
*/
|
2016-12-30 06:47:23 -06:00
|
|
|
public function get(): Collection;
|
2016-12-25 05:23:36 -06:00
|
|
|
|
2016-10-23 02:44:14 -05:00
|
|
|
/**
|
|
|
|
* @param Carbon $start
|
|
|
|
* @param Carbon $end
|
|
|
|
*
|
|
|
|
* @return Collection
|
|
|
|
*/
|
|
|
|
public function getBetween(Carbon $start, Carbon $end): Collection;
|
|
|
|
|
2016-12-30 06:47:23 -06:00
|
|
|
/**
|
|
|
|
* @param Attachment $attachment
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getContent(Attachment $attachment): string;
|
|
|
|
|
2017-01-30 09:46:30 -06:00
|
|
|
/**
|
|
|
|
* @param User $user
|
|
|
|
*/
|
|
|
|
public function setUser(User $user);
|
|
|
|
|
2015-07-19 02:53:58 -05:00
|
|
|
/**
|
|
|
|
* @param Attachment $attachment
|
2015-07-26 08:51:07 -05:00
|
|
|
* @param array $attachmentData
|
2015-07-19 02:53:58 -05:00
|
|
|
*
|
2015-07-26 08:51:07 -05:00
|
|
|
* @return Attachment
|
2015-07-19 02:53:58 -05:00
|
|
|
*/
|
2016-02-06 11:59:48 -06:00
|
|
|
public function update(Attachment $attachment, array $attachmentData): Attachment;
|
2015-07-19 02:38:44 -05:00
|
|
|
}
|