firefly-iii/app/Models/RuleGroup.php

83 lines
3.3 KiB
PHP
Raw Normal View History

2016-01-11 14:28:29 -06:00
<?php
/**
* RuleGroup.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
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
2016-01-11 14:28:29 -06:00
*/
declare(strict_types = 1);
2016-01-11 14:28:29 -06:00
namespace FireflyIII\Models;
use Illuminate\Database\Eloquent\Model;
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-03-12 00:36:23 -06:00
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\RuleGroup whereId($value)
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\RuleGroup whereCreatedAt($value)
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\RuleGroup whereUpdatedAt($value)
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\RuleGroup whereDeletedAt($value)
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\RuleGroup whereUserId($value)
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\RuleGroup whereOrder($value)
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\RuleGroup whereTitle($value)
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\RuleGroup whereDescription($value)
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\RuleGroup whereActive($value)
* @mixin \Eloquent
2016-01-11 14:28:29 -06:00
*/
class RuleGroup extends Model
{
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
/**
2016-08-25 23:44:24 -05:00
* @param RuleGroup $value
*
* @return RuleGroup
2016-01-11 14:28:29 -06:00
*/
2016-08-25 23:44:24 -05:00
public static function routeBinder(RuleGroup $value)
2016-01-11 14:28:29 -06:00
{
2016-09-16 05:07:45 -05:00
if (auth()->check()) {
2016-09-16 05:15:58 -05:00
if ($value->user_id == auth()->user()->id) {
2016-08-25 23:44:24 -05:00
return $value;
}
}
throw new NotFoundHttpException;
2016-01-11 14:28:29 -06:00
}
/**
* @return \Illuminate\Database\Eloquent\Relations\HasMany
*/
public function rules()
{
return $this->hasMany('FireflyIII\Models\Rule');
}
2016-01-13 09:08:05 -06:00
/**
2016-08-25 23:44:24 -05:00
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
2016-01-13 09:08:05 -06:00
*/
2016-08-25 23:44:24 -05:00
public function user()
2016-01-13 09:08:05 -06:00
{
2016-08-25 23:44:24 -05:00
return $this->belongsTo('FireflyIII\User');
2016-01-13 09:08:05 -06:00
}
2016-01-11 14:28:29 -06:00
}