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
|
|
|
/**
|
|
|
|
* RuleGroup.php
|
|
|
|
* Copyright (C) 2016 Sander Dorigo
|
|
|
|
*
|
|
|
|
* 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:08:05 -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:08:05 -06:00
|
|
|
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
|
2016-01-11 14:28:29 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class RuleGroup
|
|
|
|
*
|
|
|
|
* @package FireflyIII\Models
|
2016-01-13 09:08:05 -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 $order
|
|
|
|
* @property string $title
|
|
|
|
* @property string $description
|
|
|
|
* @property boolean $active
|
|
|
|
* @property-read \FireflyIII\User $user
|
2016-01-11 14:42:51 -06:00
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection|\FireflyIII\Models\Rule[] $rules
|
2016-01-11 14:28:29 -06:00
|
|
|
*/
|
|
|
|
class RuleGroup extends Model
|
|
|
|
{
|
2016-01-13 14:44:26 -06:00
|
|
|
use SoftDeletes;
|
2016-01-13 11:34:56 -06:00
|
|
|
|
|
|
|
protected $fillable = ['user_id', 'order', 'title', 'description', 'active'];
|
|
|
|
|
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\HasMany
|
|
|
|
*/
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
return $this->hasMany('FireflyIII\Models\Rule');
|
|
|
|
}
|
2016-01-13 09:08:05 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param RuleGroup $value
|
|
|
|
*
|
|
|
|
* @return Rule
|
|
|
|
*/
|
|
|
|
public static function routeBinder(RuleGroup $value)
|
|
|
|
{
|
|
|
|
if (Auth::check()) {
|
|
|
|
if ($value->user_id == Auth::user()->id) {
|
|
|
|
return $value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
throw new NotFoundHttpException;
|
|
|
|
}
|
2016-01-11 14:28:29 -06:00
|
|
|
}
|