2015-02-06 04:52:16 +01:00
|
|
|
<?php namespace FireflyIII\Models;
|
|
|
|
|
2015-04-07 18:26:14 +02:00
|
|
|
use Crypt;
|
2015-02-06 04:52:16 +01:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2015-02-07 23:19:28 +01:00
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
2015-04-07 18:26:14 +02:00
|
|
|
|
2015-02-11 07:35:10 +01:00
|
|
|
/**
|
|
|
|
* Class PiggyBank
|
|
|
|
*
|
|
|
|
* @package FireflyIII\Models
|
|
|
|
*/
|
2015-02-06 05:04:06 +01:00
|
|
|
class PiggyBank extends Model
|
|
|
|
{
|
2015-02-07 23:19:28 +01:00
|
|
|
use SoftDeletes;
|
2015-02-06 04:52:16 +01:00
|
|
|
|
2015-03-21 21:33:52 +01:00
|
|
|
protected $fillable
|
2015-05-03 12:58:55 +02:00
|
|
|
= ['name', 'account_id', 'order', 'reminder_skip', 'targetamount', 'startdate', 'targetdate', 'reminder', 'remind_me'];
|
2015-02-25 19:32:33 +01:00
|
|
|
|
2015-02-11 07:35:10 +01:00
|
|
|
/**
|
2015-05-10 13:22:00 +02:00
|
|
|
* @codeCoverageIgnore
|
2015-02-11 07:35:10 +01:00
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
|
|
*/
|
2015-02-06 05:14:27 +01:00
|
|
|
public function account()
|
|
|
|
{
|
2015-02-06 05:35:00 +01:00
|
|
|
return $this->belongsTo('FireflyIII\Models\Account');
|
2015-02-06 05:14:27 +01:00
|
|
|
}
|
2015-02-06 04:52:16 +01:00
|
|
|
|
2015-02-24 21:10:25 +01:00
|
|
|
/**
|
|
|
|
* Grabs the PiggyBankRepetition that's currently relevant / active
|
|
|
|
*
|
|
|
|
* @returns PiggyBankRepetition
|
|
|
|
*/
|
|
|
|
public function currentRelevantRep()
|
|
|
|
{
|
2015-03-21 21:33:52 +01:00
|
|
|
if (!is_null($this->currentRep)) {
|
2015-02-24 21:10:25 +01:00
|
|
|
return $this->currentRep;
|
|
|
|
}
|
2015-03-27 18:17:15 +01:00
|
|
|
// repeating piggy banks are no longer supported.
|
2015-03-30 20:08:27 +02:00
|
|
|
$rep = $this->piggyBankRepetitions()->first(['piggy_bank_repetitions.*']);
|
|
|
|
$this->currentRep = $rep;
|
2015-02-24 21:10:25 +01:00
|
|
|
|
2015-03-30 20:08:27 +02:00
|
|
|
return $rep;
|
2015-02-24 21:10:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
}
|
2015-02-25 19:32:33 +01:00
|
|
|
|
|
|
|
/**
|
2015-05-10 13:22:00 +02:00
|
|
|
* @codeCoverageIgnore
|
2015-02-25 19:32:33 +01:00
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
|
|
*/
|
|
|
|
public function piggyBankRepetitions()
|
|
|
|
{
|
|
|
|
return $this->hasMany('FireflyIII\Models\PiggyBankRepetition');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-05-10 13:22:00 +02:00
|
|
|
* @codeCoverageIgnore
|
2015-02-25 19:32:33 +01:00
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getDates()
|
|
|
|
{
|
|
|
|
return ['created_at', 'updated_at', 'deleted_at', 'startdate', 'targetdate'];
|
|
|
|
}
|
|
|
|
|
2015-05-23 08:46:46 +02:00
|
|
|
/**
|
|
|
|
* @codeCoverageIgnore
|
|
|
|
*
|
|
|
|
* @param $value
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getNameAttribute($value)
|
|
|
|
{
|
|
|
|
|
|
|
|
if (intval($this->encrypted) == 1) {
|
|
|
|
return Crypt::decrypt($value);
|
|
|
|
}
|
|
|
|
|
|
|
|
// @codeCoverageIgnoreStart
|
|
|
|
return $value;
|
|
|
|
// @codeCoverageIgnoreEnd
|
|
|
|
}
|
|
|
|
|
2015-03-21 21:33:52 +01:00
|
|
|
/**
|
2015-05-10 13:22:00 +02:00
|
|
|
* @codeCoverageIgnore
|
2015-05-14 09:51:54 +02:00
|
|
|
*
|
2015-03-21 21:33:52 +01:00
|
|
|
* @param $value
|
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getRemindMeAttribute($value)
|
|
|
|
{
|
|
|
|
return intval($value) == 1;
|
|
|
|
}
|
|
|
|
|
2015-05-23 08:46:46 +02:00
|
|
|
/**
|
|
|
|
* @param $value
|
|
|
|
*
|
|
|
|
* @return float|int
|
|
|
|
*/
|
|
|
|
public function getTargetamountAttribute($value)
|
|
|
|
{
|
|
|
|
if (is_null($this->targetamount_encrypted)) {
|
|
|
|
return $value;
|
|
|
|
}
|
|
|
|
$value = intval(Crypt::decrypt($this->targetamount_encrypted));
|
|
|
|
$value = $value / 100;
|
|
|
|
|
|
|
|
return $value;
|
|
|
|
}
|
|
|
|
|
2015-02-25 19:32:33 +01:00
|
|
|
/**
|
2015-05-10 13:22:00 +02:00
|
|
|
* @codeCoverageIgnore
|
2015-02-25 19:32:33 +01:00
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
|
|
*/
|
|
|
|
public function piggyBankEvents()
|
|
|
|
{
|
|
|
|
return $this->hasMany('FireflyIII\Models\PiggyBankEvent');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-05-10 13:22:00 +02:00
|
|
|
* @codeCoverageIgnore
|
2015-02-25 19:32:33 +01:00
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\MorphMany
|
|
|
|
*/
|
|
|
|
public function reminders()
|
|
|
|
{
|
|
|
|
return $this->morphMany('FireflyIII\Models\Reminder', 'remindersable');
|
|
|
|
}
|
2015-03-30 20:08:27 +02:00
|
|
|
|
|
|
|
/**
|
2015-05-10 13:22:00 +02:00
|
|
|
* @codeCoverageIgnore
|
2015-05-14 09:51:54 +02:00
|
|
|
*
|
2015-03-30 20:08:27 +02:00
|
|
|
* @param $value
|
|
|
|
*/
|
|
|
|
public function setNameAttribute($value)
|
|
|
|
{
|
|
|
|
$this->attributes['name'] = Crypt::encrypt($value);
|
|
|
|
$this->attributes['encrypted'] = true;
|
|
|
|
}
|
2015-04-07 18:26:14 +02:00
|
|
|
|
2015-03-30 20:08:27 +02:00
|
|
|
/**
|
|
|
|
* @param $value
|
|
|
|
*/
|
2015-05-23 08:46:46 +02:00
|
|
|
public function setTargetamountAttribute($value)
|
2015-03-30 20:08:27 +02:00
|
|
|
{
|
2015-05-23 08:46:46 +02:00
|
|
|
// save in cents:
|
|
|
|
$value = intval($value * 100);
|
|
|
|
$this->attributes['targetamount_encrypted'] = Crypt::encrypt($value);
|
|
|
|
$this->attributes['targetamount'] = ($value / 100);
|
2015-03-30 20:08:27 +02:00
|
|
|
}
|
2015-02-06 04:52:16 +01:00
|
|
|
}
|