phpvms/app/Repositories/PirepRepository.php

61 lines
1.3 KiB
PHP
Raw Normal View History

2017-06-29 08:56:10 +08:00
<?php
namespace App\Repositories;
use App\Models\Enums\PirepState;
2017-06-29 08:56:10 +08:00
use App\Models\Pirep;
2017-12-02 00:44:35 +08:00
use App\Models\User;
use App\Repositories\Traits\CacheableRepository;
use Prettus\Repository\Contracts\CacheableInterface;
2017-06-29 08:56:10 +08:00
class PirepRepository extends BaseRepository
2017-06-29 08:56:10 +08:00
{
protected $fieldSearchable = [
'user_id',
'flight_id',
'status',
'state',
2017-06-29 08:56:10 +08:00
];
public function model()
{
return Pirep::class;
}
2017-12-02 00:44:35 +08:00
/**
* Get all the pending reports in order. Returns the Pirep
* model but you still need to call ->all() or ->paginate()
* @param User|null $user
* @return Pirep
*/
public function getPending(User $user=null)
{
$where = [];
if($user !== null) {
$where['user_id'] = $user->id;
}
$pireps = $this->orderBy('created_at', 'desc')->findWhere($where)->all();
return $pireps;
}
2017-12-04 00:55:01 +08:00
/**
* Number of PIREPs that are pending
* @param User|null $user
* @return mixed
*/
public function getPendingCount(User $user = null)
{
$where = [
'state' => PirepState::PENDING,
];
2017-12-04 00:55:01 +08:00
if ($user !== null) {
$where['user_id'] = $user->id;
}
$pireps = $this->orderBy('created_at', 'desc')->findWhere($where)->count();
return $pireps;
}
2017-06-29 08:56:10 +08:00
}