firefly-iii/app/Models/Attachment.php

186 lines
3.8 KiB
PHP
Raw Normal View History

2015-07-18 02:49:19 -05:00
<?php
/**
* Attachment.php
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/
2016-02-05 05:08:25 -06:00
declare(strict_types = 1);
2015-07-18 02:49:19 -05:00
namespace FireflyIII\Models;
2015-07-19 02:37:28 -05:00
use Crypt;
2015-07-18 02:49:19 -05:00
use Illuminate\Database\Eloquent\Model;
2016-04-06 02:27:45 -05:00
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\MorphTo;
2015-07-18 02:49:19 -05:00
use Illuminate\Database\Eloquent\SoftDeletes;
2016-01-09 08:53:11 -06:00
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
2015-07-18 02:49:19 -05:00
class Attachment extends Model
{
use SoftDeletes;
2015-07-19 02:37:28 -05:00
protected $fillable = ['attachable_id', 'attachable_type', 'user_id', 'md5', 'filename', 'mime', 'title', 'notes', 'description', 'size', 'uploaded'];
2015-07-18 02:49:19 -05:00
2016-02-22 23:54:51 -06:00
/**
* @param Attachment $value
*
* @return Attachment
*/
public static function routeBinder(Attachment $value)
{
2016-09-16 05:07:45 -05:00
if (auth()->check()) {
2016-02-22 23:54:51 -06:00
2016-09-16 05:15:58 -05:00
if ($value->user_id == auth()->user()->id) {
2016-02-22 23:54:51 -06:00
return $value;
}
}
throw new NotFoundHttpException;
}
2015-07-18 02:49:19 -05:00
/**
* Get all of the owning imageable models.
2016-04-06 02:27:45 -05:00
*
* @return MorphTo
2015-07-18 02:49:19 -05:00
*/
2016-04-06 02:27:45 -05:00
public function attachable(): MorphTo
2015-07-18 02:49:19 -05:00
{
return $this->morphTo();
}
/**
2016-02-22 23:54:51 -06:00
* Returns the expected filename for this attachment.
*
* @return string
2015-07-18 02:49:19 -05:00
*/
2016-02-22 23:54:51 -06:00
public function fileName(): string
2015-07-18 02:49:19 -05:00
{
2016-02-22 23:54:51 -06:00
return sprintf('at-%s.data', strval($this->id));
2015-07-18 02:49:19 -05:00
}
2015-07-19 02:37:28 -05:00
/**
* @param $value
*
* @return null|string
*/
2016-02-22 23:54:51 -06:00
public function getDescriptionAttribute($value)
2015-07-19 02:37:28 -05:00
{
2016-09-20 10:23:12 -05:00
if (is_null($value) || strlen($value) === 0) {
2015-07-19 02:37:28 -05:00
return null;
}
return Crypt::decrypt($value);
}
/**
2016-02-22 23:54:51 -06:00
* @param $value
*
* @return null|string
2015-07-19 02:37:28 -05:00
*/
2016-02-22 23:54:51 -06:00
public function getFilenameAttribute($value)
2015-07-19 02:37:28 -05:00
{
2016-09-20 10:23:12 -05:00
if (is_null($value) || strlen($value) === 0) {
2016-02-22 23:54:51 -06:00
return null;
}
return Crypt::decrypt($value);
2015-07-19 02:37:28 -05:00
}
/**
* @param $value
*
* @return null|string
*/
public function getMimeAttribute($value)
{
2016-09-20 10:23:12 -05:00
if (is_null($value) || strlen($value) === 0) {
2015-07-19 02:37:28 -05:00
return null;
}
return Crypt::decrypt($value);
}
/**
*
* @param $value
*
* @return null|string
*/
2016-02-22 23:54:51 -06:00
public function getNotesAttribute($value)
2015-07-19 02:37:28 -05:00
{
2016-09-20 10:23:12 -05:00
if (is_null($value) || strlen($value) === 0) {
2015-07-19 02:37:28 -05:00
return null;
}
return Crypt::decrypt($value);
}
/**
*
* @param $value
*
* @return null|string
*/
2016-02-22 23:54:51 -06:00
public function getTitleAttribute($value)
2015-07-19 02:37:28 -05:00
{
2016-09-20 10:23:12 -05:00
if (is_null($value) || strlen($value) === 0) {
2015-07-19 02:37:28 -05:00
return null;
}
return Crypt::decrypt($value);
}
/**
* @param string $value
*/
2016-04-06 02:27:45 -05:00
public function setDescriptionAttribute(string $value)
2015-07-19 02:37:28 -05:00
{
$this->attributes['description'] = Crypt::encrypt($value);
}
/**
2016-02-22 23:54:51 -06:00
* @param string $value
2015-07-19 02:37:28 -05:00
*/
2016-04-06 02:27:45 -05:00
public function setFilenameAttribute(string $value)
2015-07-19 02:37:28 -05:00
{
2016-02-22 23:54:51 -06:00
$this->attributes['filename'] = Crypt::encrypt($value);
}
2015-07-19 02:37:28 -05:00
2016-02-22 23:54:51 -06:00
/**
* @param string $value
*/
2016-04-06 02:27:45 -05:00
public function setMimeAttribute(string $value)
2016-02-22 23:54:51 -06:00
{
$this->attributes['mime'] = Crypt::encrypt($value);
2015-07-19 02:37:28 -05:00
}
/**
* @param string $value
*/
2016-04-06 02:27:45 -05:00
public function setNotesAttribute(string $value)
2015-07-19 02:37:28 -05:00
{
$this->attributes['notes'] = Crypt::encrypt($value);
}
/**
2016-02-22 23:54:51 -06:00
* @param string $value
*/
2016-04-06 02:27:45 -05:00
public function setTitleAttribute(string $value)
2016-01-09 08:53:11 -06:00
{
2016-02-22 23:54:51 -06:00
$this->attributes['title'] = Crypt::encrypt($value);
}
2016-01-09 08:53:11 -06:00
2016-02-22 23:54:51 -06:00
/**
2016-04-06 02:27:45 -05:00
* @return BelongsTo
2016-02-22 23:54:51 -06:00
*/
2016-04-06 02:27:45 -05:00
public function user(): BelongsTo
2016-02-22 23:54:51 -06:00
{
return $this->belongsTo('FireflyIII\User');
2016-01-09 08:53:11 -06:00
}
2015-07-19 02:38:44 -05:00
}