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

180 lines
4.4 KiB
PHP
Raw Normal View History

2015-07-19 02:37:28 -05:00
<?php
/**
* AttachmentRepository.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;
2017-01-30 09:46:30 -06:00
use Crypt;
2016-05-02 13:49:19 -05:00
use FireflyIII\Helpers\Attachments\AttachmentHelperInterface;
2015-07-19 02:37:28 -05:00
use FireflyIII\Models\Attachment;
2016-03-03 01:38:24 -06:00
use FireflyIII\User;
use Illuminate\Support\Collection;
2017-06-12 10:07:29 -05:00
use Log;
2016-12-25 05:23:36 -06:00
use Storage;
2015-07-19 02:37:28 -05:00
/**
2017-11-15 05:25:49 -06:00
* Class AttachmentRepository.
2015-07-19 02:37:28 -05:00
*/
class AttachmentRepository implements AttachmentRepositoryInterface
{
2016-03-03 01:38:24 -06:00
/** @var User */
private $user;
2015-07-19 02:37:28 -05:00
2015-07-26 08:51:07 -05:00
/**
* @param Attachment $attachment
*
* @return bool
2017-12-22 11:32:43 -06:00
*
2017-12-17 07:30:53 -06:00
* @throws \Exception
2015-07-26 08:51:07 -05:00
*/
2016-02-06 11:59:48 -06:00
public function destroy(Attachment $attachment): bool
2015-07-26 08:51:07 -05:00
{
2016-05-02 13:49:19 -05:00
/** @var AttachmentHelperInterface $helper */
$helper = app(AttachmentHelperInterface::class);
2015-07-26 08:51:07 -05:00
$file = $helper->getAttachmentLocation($attachment);
unlink($file);
$attachment->delete();
2016-02-06 11:59:48 -06:00
return true;
2015-07-26 08:51:07 -05:00
}
2016-12-25 05:23:36 -06:00
/**
* @param Attachment $attachment
*
* @return bool
*/
public function exists(Attachment $attachment): bool
{
/** @var Storage $disk */
$disk = Storage::disk('upload');
return $disk->exists($attachment->fileName());
}
2017-07-30 01:22:39 -05:00
/**
* @param int $id
*
* @return Attachment
*/
public function find(int $id): Attachment
{
$attachment = $this->user->attachments()->find($id);
2017-11-15 05:25:49 -06:00
if (null === $attachment) {
2017-07-30 01:22:39 -05:00
return new Attachment;
}
return $attachment;
}
/**
* @param int $id
*
* @return Attachment
*/
public function findWithoutUser(int $id): Attachment
{
$attachment = Attachment::find($id);
2017-11-15 05:25:49 -06:00
if (null === $attachment) {
2017-07-30 01:22:39 -05:00
return new Attachment;
}
return $attachment;
}
/**
* @return Collection
*/
public function get(): Collection
{
2016-03-03 01:38:24 -06:00
return $this->user->attachments()->get();
}
2016-10-23 02:44:14 -05:00
/**
* @param Carbon $start
* @param Carbon $end
*
* @return Collection
*/
public function getBetween(Carbon $start, Carbon $end): Collection
{
$query = $this->user
->attachments()
->leftJoin('transaction_journals', 'attachments.attachable_id', '=', 'transaction_journals.id')
->where('transaction_journals.date', '>=', $start->format('Y-m-d'))
->where('transaction_journals.date', '<=', $end->format('Y-m-d'))
->get(['attachments.*']);
return $query;
}
2016-12-25 05:23:36 -06:00
/**
* @param Attachment $attachment
*
* @return string
2017-12-22 11:32:43 -06:00
*
2017-12-17 07:30:53 -06:00
* @throws \Illuminate\Contracts\Filesystem\FileNotFoundException
2016-12-25 05:23:36 -06:00
*/
public function getContent(Attachment $attachment): string
{
// create a disk.
2017-06-12 10:07:29 -05:00
$disk = Storage::disk('upload');
$file = $attachment->fileName();
$content = '';
2016-12-25 05:23:36 -06:00
if ($disk->exists($file)) {
$content = Crypt::decrypt($disk->get($file));
2017-06-12 10:07:29 -05:00
}
if (is_bool($content)) {
Log::error(sprintf('Attachment #%d may be corrupted: the content could not be decrypted.', $attachment->id));
2016-12-25 05:23:36 -06:00
2017-06-12 10:07:29 -05:00
return '';
2016-12-25 05:23:36 -06:00
}
2017-06-12 10:07:29 -05:00
return $content;
2016-12-25 05:23:36 -06:00
}
2017-01-30 09:46:30 -06:00
/**
* @param User $user
*/
public function setUser(User $user)
{
$this->user = $user;
}
2015-07-19 02:37:28 -05:00
/**
* @param Attachment $attachment
* @param array $data
*
* @return Attachment
*/
2016-02-06 11:59:48 -06:00
public function update(Attachment $attachment, array $data): Attachment
2015-07-19 02:37:28 -05:00
{
$attachment->title = $data['title'];
$attachment->description = $data['description'];
$attachment->notes = $data['notes'];
$attachment->save();
return $attachment;
}
2015-07-19 02:38:44 -05:00
}