phpvms/app/Repositories/UserRepository.php

70 lines
1.5 KiB
PHP
Raw Normal View History

2017-11-30 08:01:07 +08:00
<?php
namespace App\Repositories;
2017-12-23 05:11:27 +08:00
use Illuminate\Http\Request;
2017-11-30 08:01:07 +08:00
use App\Models\User;
2017-12-31 10:40:32 +08:00
use App\Models\Enums\UserState;
2017-12-23 05:11:27 +08:00
use App\Repositories\Criteria\WhereCriteria;
2017-11-30 08:01:07 +08:00
class UserRepository extends BaseRepository
2017-11-30 08:01:07 +08:00
{
protected $fieldSearchable = [
'name' => 'like',
'email' => 'like',
'home_airport_id',
'curr_airport_id',
'state'
2017-11-30 08:01:07 +08:00
];
public function model()
{
return User::class;
}
/**
* Number of PIREPs that are pending
* @return mixed
*/
public function getPendingCount()
{
$where = [
2017-12-31 10:40:32 +08:00
'state' => UserState::PENDING,
];
$users = $this->orderBy('created_at', 'desc')->findWhere($where)->count();
return $users;
}
2017-12-23 05:11:27 +08:00
/**
* Create the search criteria and return this with the stuff pushed
* @param Request $request
* @param bool $only_active
* @return $this
* @throws \Prettus\Repository\Exceptions\RepositoryException
*/
public function searchCriteria(Request $request, bool $only_active = true)
{
$where = [];
if($only_active) {
2017-12-31 10:40:32 +08:00
$where['state'] = UserState::ACTIVE;
2017-12-23 05:11:27 +08:00
}
if ($request->filled('name')) {
$where['name'] = $request->name;
}
if ($request->filled('email')) {
$where['email'] = $request->email;
}
2018-01-04 22:14:39 +08:00
if ($request->filled('state')) {
$where['state'] = $request->state;
}
2017-12-23 05:11:27 +08:00
$this->pushCriteria(new WhereCriteria($request, $where));
return $this;
}
2017-11-30 08:01:07 +08:00
}