mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-26 10:51:12 -06:00
59 lines
1.4 KiB
PHP
59 lines
1.4 KiB
PHP
<?php namespace FireflyIII\Models;
|
|
|
|
use Crypt;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* FireflyIII\Models\Preference
|
|
*
|
|
* @property integer $id
|
|
* @property \Carbon\Carbon $created_at
|
|
* @property \Carbon\Carbon $updated_at
|
|
* @property integer $user_id
|
|
* @property string $name
|
|
* @property string $name_encrypted
|
|
* @property string $data
|
|
* @property string $data_encrypted
|
|
* @property-read \FireflyIII\User $user
|
|
*/
|
|
class Preference extends Model
|
|
{
|
|
|
|
protected $dates = ['created_at', 'updated_at'];
|
|
protected $fillable = ['user_id', 'data', 'name'];
|
|
protected $hidden = ['data_encrypted', 'name_encrypted'];
|
|
|
|
/**
|
|
* @param $value
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function getDataAttribute($value)
|
|
{
|
|
if (is_null($this->data_encrypted)) {
|
|
return json_decode($value);
|
|
}
|
|
$data = Crypt::decrypt($this->data_encrypted);
|
|
|
|
return json_decode($data);
|
|
}
|
|
|
|
/**
|
|
* @param $value
|
|
*/
|
|
public function setDataAttribute($value)
|
|
{
|
|
$this->attributes['data'] = '';
|
|
$this->attributes['data_encrypted'] = Crypt::encrypt(json_encode($value));
|
|
}
|
|
|
|
/**
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
*/
|
|
public function user()
|
|
{
|
|
return $this->belongsTo('FireflyIII\User');
|
|
}
|
|
|
|
}
|