2016-01-11 14:28:29 -06:00
|
|
|
<?php
|
2016-02-05 05:08:25 -06:00
|
|
|
declare(strict_types = 1);
|
2016-01-11 14:28:29 -06:00
|
|
|
/**
|
|
|
|
* Rule.php
|
2016-04-01 09:44:46 -05:00
|
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
2016-01-11 14:28:29 -06:00
|
|
|
*
|
|
|
|
* This software may be modified and distributed under the terms
|
|
|
|
* of the MIT license. See the LICENSE file for details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace FireflyIII\Models;
|
|
|
|
|
2016-01-13 09:05:39 -06:00
|
|
|
use Auth;
|
2016-01-11 14:28:29 -06:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2016-01-13 14:44:26 -06:00
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
2016-01-13 09:05:39 -06:00
|
|
|
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
|
2016-01-11 14:28:29 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class Rule
|
|
|
|
*
|
|
|
|
* @package FireflyIII\Models
|
2016-01-12 13:36:47 -06:00
|
|
|
* @property integer $id
|
|
|
|
* @property \Carbon\Carbon $created_at
|
|
|
|
* @property \Carbon\Carbon $updated_at
|
|
|
|
* @property string $deleted_at
|
|
|
|
* @property integer $user_id
|
|
|
|
* @property integer $rule_group_id
|
|
|
|
* @property integer $order
|
|
|
|
* @property string $title
|
|
|
|
* @property string $description
|
|
|
|
* @property boolean $active
|
|
|
|
* @property boolean $stop_processing
|
|
|
|
* @property-read \FireflyIII\User $user
|
|
|
|
* @property-read \FireflyIII\Models\RuleGroup $ruleGroup
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection|\FireflyIII\Models\RuleAction[] $ruleActions
|
2016-01-11 14:42:51 -06:00
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection|\FireflyIII\Models\RuleTrigger[] $ruleTriggers
|
2016-03-12 00:36:23 -06:00
|
|
|
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\Rule whereId($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\Rule whereCreatedAt($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\Rule whereUpdatedAt($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\Rule whereDeletedAt($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\Rule whereUserId($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\Rule whereRuleGroupId($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\Rule whereOrder($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\Rule whereActive($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\Rule whereStopProcessing($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\Rule whereTitle($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\Rule whereDescription($value)
|
|
|
|
* @mixin \Eloquent
|
2016-01-11 14:28:29 -06:00
|
|
|
*/
|
|
|
|
class Rule extends Model
|
|
|
|
{
|
2016-01-13 14:44:26 -06:00
|
|
|
use SoftDeletes;
|
2016-01-15 16:12:52 -06:00
|
|
|
|
2016-01-11 14:28:29 -06:00
|
|
|
/**
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
|
|
*/
|
|
|
|
public function user()
|
|
|
|
{
|
|
|
|
return $this->belongsTo('FireflyIII\User');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
|
|
*/
|
|
|
|
public function ruleGroup()
|
|
|
|
{
|
|
|
|
return $this->belongsTo('FireflyIII\Models\RuleGroup');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
|
|
*/
|
|
|
|
public function ruleActions()
|
|
|
|
{
|
|
|
|
return $this->hasMany('FireflyIII\Models\RuleAction');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
|
|
*/
|
|
|
|
public function ruleTriggers()
|
|
|
|
{
|
|
|
|
return $this->hasMany('FireflyIII\Models\RuleTrigger');
|
|
|
|
}
|
|
|
|
|
2016-01-13 09:05:39 -06:00
|
|
|
/**
|
|
|
|
* @param Rule $value
|
|
|
|
*
|
|
|
|
* @return Rule
|
|
|
|
*/
|
|
|
|
public static function routeBinder(Rule $value)
|
|
|
|
{
|
|
|
|
if (Auth::check()) {
|
|
|
|
if ($value->user_id == Auth::user()->id) {
|
|
|
|
return $value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
throw new NotFoundHttpException;
|
|
|
|
}
|
|
|
|
|
2016-01-11 14:28:29 -06:00
|
|
|
}
|