| 
									
										
										
										
											2016-05-20 08:57:45 +02:00
										 |  |  | <?php | 
					
						
							| 
									
										
										
										
											2016-05-20 12:41:23 +02:00
										 |  |  | /** | 
					
						
							|  |  |  |  * PiggyBank.php | 
					
						
							|  |  |  |  * Copyright (C) 2016 thegrumpydictator@gmail.com | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2016-10-05 06:52:15 +02:00
										 |  |  |  * 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-05-20 12:41:23 +02:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-20 08:57:45 +02:00
										 |  |  | declare(strict_types = 1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace FireflyIII\Models; | 
					
						
							| 
									
										
										
										
											2015-02-06 04:52:16 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-10 06:47:42 +02:00
										 |  |  | use Carbon\Carbon; | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							| 
									
										
										
										
											2016-10-10 06:47:42 +02:00
										 |  |  | use Steam; | 
					
						
							| 
									
										
										
										
											2016-01-09 16:09:26 +01:00
										 |  |  | use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; | 
					
						
							| 
									
										
										
										
											2015-04-07 18:26:14 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-11 07:35:10 +01:00
										 |  |  | /** | 
					
						
							| 
									
										
										
										
											2016-01-01 21:49:27 +01:00
										 |  |  |  * FireflyIII\Models\PiggyBank | 
					
						
							| 
									
										
										
										
											2015-02-11 07:35:10 +01:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2016-11-05 11:47:21 +01:00
										 |  |  |  * @property integer                                                                 $id | 
					
						
							|  |  |  |  * @property \Carbon\Carbon                                                          $created_at | 
					
						
							|  |  |  |  * @property \Carbon\Carbon                                                          $updated_at | 
					
						
							|  |  |  |  * @property \Carbon\Carbon                                                          $deleted_at | 
					
						
							|  |  |  |  * @property integer                                                                 $account_id | 
					
						
							|  |  |  |  * @property string                                                                  $name | 
					
						
							|  |  |  |  * @property float                                                                   $targetamount | 
					
						
							|  |  |  |  * @property \Carbon\Carbon                                                          $startdate | 
					
						
							|  |  |  |  * @property \Carbon\Carbon                                                          $targetdate | 
					
						
							|  |  |  |  * @property integer                                                                 $order | 
					
						
							|  |  |  |  * @property boolean                                                                 $encrypted | 
					
						
							|  |  |  |  * @property-read Account                                                            $account | 
					
						
							|  |  |  |  * @property-read \Illuminate\Database\Eloquent\Collection|PiggyBankRepetition[]     $piggyBankRepetitions | 
					
						
							|  |  |  |  * @property-read \Illuminate\Database\Eloquent\Collection|PiggyBankEvent[]          $piggyBankEvents | 
					
						
							|  |  |  |  * @property string                                                                  $reminder | 
					
						
							|  |  |  |  * @property PiggyBankRepetition                                                     $currentRep | 
					
						
							| 
									
										
										
										
											2016-03-12 07:36:23 +01:00
										 |  |  |  * @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\PiggyBank whereId($value) | 
					
						
							|  |  |  |  * @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\PiggyBank whereCreatedAt($value) | 
					
						
							|  |  |  |  * @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\PiggyBank whereUpdatedAt($value) | 
					
						
							|  |  |  |  * @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\PiggyBank whereAccountId($value) | 
					
						
							|  |  |  |  * @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\PiggyBank whereName($value) | 
					
						
							|  |  |  |  * @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\PiggyBank whereTargetamount($value) | 
					
						
							|  |  |  |  * @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\PiggyBank whereStartdate($value) | 
					
						
							|  |  |  |  * @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\PiggyBank whereTargetdate($value) | 
					
						
							|  |  |  |  * @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\PiggyBank whereReminder($value) | 
					
						
							|  |  |  |  * @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\PiggyBank whereReminderSkip($value) | 
					
						
							|  |  |  |  * @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\PiggyBank whereRemindMe($value) | 
					
						
							|  |  |  |  * @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\PiggyBank whereOrder($value) | 
					
						
							|  |  |  |  * @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\PiggyBank whereDeletedAt($value) | 
					
						
							|  |  |  |  * @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\PiggyBank whereEncrypted($value) | 
					
						
							|  |  |  |  * @mixin \Eloquent | 
					
						
							| 
									
										
										
										
											2016-11-05 11:47:21 +01:00
										 |  |  |  * @property boolean                                                                 $active | 
					
						
							| 
									
										
										
										
											2016-06-24 14:24:34 +02:00
										 |  |  |  * @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\PiggyBank whereActive($value) | 
					
						
							| 
									
										
										
										
											2016-10-22 10:13:49 +02:00
										 |  |  |  * @property-read \Illuminate\Database\Eloquent\Collection|\FireflyIII\Models\Note[] $notes | 
					
						
							| 
									
										
										
										
											2015-02-11 07:35:10 +01:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-24 20:06:45 +02:00
										 |  |  |     protected $dates  = ['created_at', 'updated_at', 'deleted_at', 'startdate', 'targetdate']; | 
					
						
							| 
									
										
										
										
											2015-03-21 21:33:52 +01:00
										 |  |  |     protected $fillable | 
					
						
							| 
									
										
										
										
											2016-06-18 07:36:15 +02:00
										 |  |  |                       = ['name', 'account_id', 'order', 'targetamount', 'startdate', 'targetdate']; | 
					
						
							| 
									
										
										
										
											2015-05-23 17:11:16 +02:00
										 |  |  |     protected $hidden = ['targetamount_encrypted', 'encrypted']; | 
					
						
							| 
									
										
										
										
											2016-08-24 20:06:45 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * @param PiggyBank $value | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return PiggyBank | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public static function routeBinder(PiggyBank $value) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2016-09-16 12:07:45 +02:00
										 |  |  |         if (auth()->check()) { | 
					
						
							| 
									
										
										
										
											2016-09-16 12:15:58 +02:00
										 |  |  |             if ($value->account->user_id == auth()->user()->id) { | 
					
						
							| 
									
										
										
										
											2016-08-24 20:06:45 +02:00
										 |  |  |                 return $value; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         throw new NotFoundHttpException; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-02-25 19:32:33 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2016-08-24 20:06:45 +02:00
										 |  |  |     public function currentRelevantRep(): PiggyBankRepetition | 
					
						
							| 
									
										
										
										
											2015-02-24 21:10:25 +01:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											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.
 | 
					
						
							| 
									
										
										
										
											2016-08-24 20:06:45 +02:00
										 |  |  |         $rep = $this->piggyBankRepetitions()->first(['piggy_bank_repetitions.*']); | 
					
						
							|  |  |  |         if (is_null($rep)) { | 
					
						
							|  |  |  |             return new PiggyBankRepetition(); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-03-30 20:08:27 +02:00
										 |  |  |         $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-23 08:46:46 +02:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param $value | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return string | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function getNameAttribute($value) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (intval($this->encrypted) == 1) { | 
					
						
							|  |  |  |             return Crypt::decrypt($value); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $value; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-10 06:47:42 +02:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param Carbon $date | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return string | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function leftOnAccount(Carbon $date): string | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $balance = Steam::balanceIgnoreVirtual($this->account, $date); | 
					
						
							|  |  |  |         /** @var PiggyBank $p */ | 
					
						
							|  |  |  |         foreach ($this->account->piggyBanks as $piggyBank) { | 
					
						
							|  |  |  |             $currentAmount = $piggyBank->currentRelevantRep()->currentamount ?? '0'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             $balance = bcsub($balance, $currentAmount); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $balance; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-22 10:13:49 +02:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Get all of the piggy bank's notes. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function notes() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return $this->morphMany('FireflyIII\Models\Note', 'noteable'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-25 19:32:33 +01:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * @return \Illuminate\Database\Eloquent\Relations\HasMany | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function piggyBankEvents() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return $this->hasMany('FireflyIII\Models\PiggyBankEvent'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-24 20:06:45 +02:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * @return \Illuminate\Database\Eloquent\Relations\HasMany | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function piggyBankRepetitions() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return $this->hasMany('FireflyIII\Models\PiggyBankRepetition'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-30 20:08:27 +02:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											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-24 08:00:40 +02:00
										 |  |  |         $this->attributes['targetamount'] = strval(round($value, 2)); | 
					
						
							| 
									
										
										
										
											2015-03-30 20:08:27 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-02-06 04:52:16 +01:00
										 |  |  | } |