firefly-iii/app/Repositories/Attachment/AttachmentRepositoryInterface.php

108 lines
2.6 KiB
PHP
Raw Normal View History

2015-07-19 02:37:28 -05:00
<?php
/**
* AttachmentRepositoryInterface.php
2017-10-21 01:40:00 -05:00
* Copyright (c) 2017 thegrumpydictator@gmail.com
*
2017-10-21 01:40:00 -05:00
* This file is part of Firefly III.
*
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
2017-12-17 07:44:05 -06:00
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
*/
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;
2018-06-23 23:51:22 -05:00
use FireflyIII\Exceptions\FireflyException;
2015-07-19 02:37:28 -05:00
use FireflyIII\Models\Attachment;
use FireflyIII\User;
use Illuminate\Support\Collection;
2015-07-19 02:37:28 -05:00
/**
2017-11-15 05:25:49 -06:00
* Interface AttachmentRepositoryInterface.
2015-07-19 02:37:28 -05:00
*/
interface AttachmentRepositoryInterface
{
2015-07-19 02:37:28 -05:00
/**
* @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
/**
2018-07-23 14:49:15 -05:00
* @param int $attachmentId
* @deprecated
2017-07-30 01:22:39 -05:00
* @return Attachment
*/
2018-07-23 14:49:15 -05:00
public function findWithoutUser(int $attachmentId): 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;
/**
* Get attachment note text or empty string.
*
* @param Attachment $attachment
*
* @return string
*/
2018-03-25 02:01:43 -05:00
public function getNoteText(Attachment $attachment): ?string;
2017-01-30 09:46:30 -06:00
/**
* @param User $user
*/
public function setUser(User $user);
2018-06-23 23:51:22 -05:00
/**
* @param array $data
*
* @return Attachment
* @throws FireflyException
*/
public function store(array $data): Attachment;
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
}