firefly-iii/app/Models/LimitRepetition.php

71 lines
1.8 KiB
PHP
Raw Normal View History

2015-02-27 09:48:33 -06:00
<?php namespace FireflyIII\Models;
2016-01-09 09:09:26 -06:00
use Auth;
2016-01-01 14:49:27 -06:00
use Carbon\Carbon;
2015-02-27 09:48:33 -06:00
use Illuminate\Database\Eloquent\Model;
2016-01-09 09:09:26 -06:00
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
2015-02-27 09:48:33 -06:00
/**
2016-01-01 14:49:27 -06:00
* FireflyIII\Models\LimitRepetition
2015-02-27 09:48:33 -06:00
*
2016-01-01 14:49:27 -06:00
* @property integer $id
* @property Carbon $created_at
* @property Carbon $updated_at
* @property integer $budget_limit_id
* @property Carbon $startdate
* @property Carbon $enddate
* @property float $amount
* @property-read BudgetLimit $budgetLimit
2015-02-27 09:48:33 -06:00
*/
class LimitRepetition extends Model
{
2015-05-23 10:11:16 -05:00
protected $hidden = ['amount_encrypted'];
2015-02-27 09:48:33 -06:00
/**
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
*/
public function budgetLimit()
{
return $this->belongsTo('FireflyIII\Models\BudgetLimit');
}
2015-05-23 10:11:16 -05:00
/**
* @return array
*/
public function getDates()
{
return ['created_at', 'updated_at', 'startdate', 'enddate'];
}
2015-05-23 01:46:46 -05:00
/**
* @param $value
*/
public function setAmountAttribute($value)
{
2015-05-24 01:00:40 -05:00
$this->attributes['amount'] = strval(round($value, 2));
2015-05-23 01:46:46 -05:00
}
2016-01-09 09:09:26 -06:00
/**
* @param $value
*
* @return mixed
*/
2016-01-09 09:09:26 -06:00
public static function routeBinder($value)
{
if (Auth::check()) {
$object = LimitRepetition::where('limit_repetitions.id', $value)
->leftjoin('budget_limits', 'budget_limits.id', '=', 'limit_repetitions.budget_limit_id')
->leftJoin('budgets', 'budgets.id', '=', 'budget_limits.budget_id')
->where('budgets.user_id', Auth::user()->id)
->first(['limit_repetitions.*']);
if ($object) {
return $object;
}
}
throw new NotFoundHttpException;
}
2015-02-27 09:48:33 -06:00
}