mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 10:47:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			178 lines
		
	
	
		
			4.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			178 lines
		
	
	
		
			4.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * AttachmentRepository.php
 | |
|  * Copyright (c) 2017 thegrumpydictator@gmail.com
 | |
|  *
 | |
|  * This file is part of Firefly III.
 | |
|  *
 | |
|  * 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/>.
 | |
|  */
 | |
| declare(strict_types=1);
 | |
| 
 | |
| namespace FireflyIII\Repositories\Attachment;
 | |
| 
 | |
| use Carbon\Carbon;
 | |
| use Crypt;
 | |
| use FireflyIII\Helpers\Attachments\AttachmentHelperInterface;
 | |
| use FireflyIII\Models\Attachment;
 | |
| use FireflyIII\User;
 | |
| use Illuminate\Support\Collection;
 | |
| use Log;
 | |
| use Storage;
 | |
| 
 | |
| /**
 | |
|  * Class AttachmentRepository.
 | |
|  */
 | |
| class AttachmentRepository implements AttachmentRepositoryInterface
 | |
| {
 | |
|     /** @var User */
 | |
|     private $user;
 | |
| 
 | |
|     /**
 | |
|      * @param Attachment $attachment
 | |
|      *
 | |
|      * @return bool
 | |
|      * @throws \Exception
 | |
|      */
 | |
|     public function destroy(Attachment $attachment): bool
 | |
|     {
 | |
|         /** @var AttachmentHelperInterface $helper */
 | |
|         $helper = app(AttachmentHelperInterface::class);
 | |
| 
 | |
|         $file = $helper->getAttachmentLocation($attachment);
 | |
|         unlink($file);
 | |
|         $attachment->delete();
 | |
| 
 | |
|         return true;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @param Attachment $attachment
 | |
|      *
 | |
|      * @return bool
 | |
|      */
 | |
|     public function exists(Attachment $attachment): bool
 | |
|     {
 | |
|         /** @var Storage $disk */
 | |
|         $disk = Storage::disk('upload');
 | |
| 
 | |
|         return $disk->exists($attachment->fileName());
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @param int $id
 | |
|      *
 | |
|      * @return Attachment
 | |
|      */
 | |
|     public function find(int $id): Attachment
 | |
|     {
 | |
|         $attachment = $this->user->attachments()->find($id);
 | |
|         if (null === $attachment) {
 | |
|             return new Attachment;
 | |
|         }
 | |
| 
 | |
|         return $attachment;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @param int $id
 | |
|      *
 | |
|      * @return Attachment
 | |
|      */
 | |
|     public function findWithoutUser(int $id): Attachment
 | |
|     {
 | |
|         $attachment = Attachment::find($id);
 | |
|         if (null === $attachment) {
 | |
|             return new Attachment;
 | |
|         }
 | |
| 
 | |
|         return $attachment;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @return Collection
 | |
|      */
 | |
|     public function get(): Collection
 | |
|     {
 | |
|         return $this->user->attachments()->get();
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @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;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @param Attachment $attachment
 | |
|      *
 | |
|      * @return string
 | |
|      * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException
 | |
|      */
 | |
|     public function getContent(Attachment $attachment): string
 | |
|     {
 | |
|         // create a disk.
 | |
|         $disk    = Storage::disk('upload');
 | |
|         $file    = $attachment->fileName();
 | |
|         $content = '';
 | |
| 
 | |
|         if ($disk->exists($file)) {
 | |
|             $content = Crypt::decrypt($disk->get($file));
 | |
|         }
 | |
|         if (is_bool($content)) {
 | |
|             Log::error(sprintf('Attachment #%d may be corrupted: the content could not be decrypted.', $attachment->id));
 | |
| 
 | |
|             return '';
 | |
|         }
 | |
| 
 | |
|         return $content;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @param User $user
 | |
|      */
 | |
|     public function setUser(User $user)
 | |
|     {
 | |
|         $this->user = $user;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @param Attachment $attachment
 | |
|      * @param array      $data
 | |
|      *
 | |
|      * @return Attachment
 | |
|      */
 | |
|     public function update(Attachment $attachment, array $data): Attachment
 | |
|     {
 | |
|         $attachment->title       = $data['title'];
 | |
|         $attachment->description = $data['description'];
 | |
|         $attachment->notes       = $data['notes'];
 | |
|         $attachment->save();
 | |
| 
 | |
|         return $attachment;
 | |
|     }
 | |
| }
 |