2018-01-05 09:33:23 +08:00
|
|
|
<?php
|
|
|
|
|
2018-03-20 09:50:40 +08:00
|
|
|
namespace App\Interfaces;
|
2018-01-05 09:33:23 +08:00
|
|
|
|
2018-03-20 09:50:40 +08:00
|
|
|
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
|
|
|
|
use Illuminate\Foundation\Bus\DispatchesJobs;
|
|
|
|
use Illuminate\Foundation\Validation\ValidatesRequests;
|
2018-01-05 09:33:23 +08:00
|
|
|
use Illuminate\Http\Request;
|
|
|
|
use Illuminate\Support\Facades\Validator;
|
|
|
|
use Symfony\Component\HttpKernel\Exception\BadRequestHttpException;
|
|
|
|
|
2018-03-20 09:50:40 +08:00
|
|
|
/**
|
|
|
|
* Class Controller
|
|
|
|
* @package App\Http\Controllers
|
|
|
|
*/
|
|
|
|
abstract class Controller extends \Illuminate\Routing\Controller
|
2018-01-05 09:33:23 +08:00
|
|
|
{
|
2018-03-20 09:50:40 +08:00
|
|
|
use AuthorizesRequests, DispatchesJobs, ValidatesRequests;
|
|
|
|
|
2018-01-05 09:33:23 +08:00
|
|
|
/**
|
|
|
|
* Shortcut function to get the attributes from a request while running the validations
|
|
|
|
* @param Request $request
|
2018-03-20 09:50:40 +08:00
|
|
|
* @param array $attrs_or_validations
|
|
|
|
* @param array $addtl_fields
|
2018-01-05 09:33:23 +08:00
|
|
|
* @return array
|
|
|
|
* @throws \Symfony\Component\HttpKernel\Exception\BadRequestHttpException
|
|
|
|
*/
|
2018-03-20 09:50:40 +08:00
|
|
|
public function getFromReq($request, $attrs_or_validations, $addtl_fields = null)
|
2018-01-05 09:33:23 +08:00
|
|
|
{
|
|
|
|
# See if a list of values is passed in, or if a validation list is passed in
|
|
|
|
$is_validation = false;
|
2018-03-20 09:50:40 +08:00
|
|
|
if (\count(array_filter(array_keys($attrs_or_validations), '\is_string')) > 0) {
|
2018-01-05 09:33:23 +08:00
|
|
|
$is_validation = true;
|
|
|
|
}
|
|
|
|
|
2018-03-20 09:50:40 +08:00
|
|
|
if ($is_validation) {
|
2018-01-05 09:33:23 +08:00
|
|
|
$this->validate($request, $attrs_or_validations);
|
|
|
|
}
|
|
|
|
|
|
|
|
$fields = [];
|
2018-03-20 09:50:40 +08:00
|
|
|
foreach ($attrs_or_validations as $idx => $field) {
|
|
|
|
if ($is_validation) {
|
2018-01-05 09:33:23 +08:00
|
|
|
$field = $idx;
|
|
|
|
}
|
|
|
|
|
2018-03-20 09:50:40 +08:00
|
|
|
if ($request instanceof Request) {
|
2018-01-05 09:33:23 +08:00
|
|
|
if ($request->filled($field)) {
|
2018-01-05 11:05:26 +08:00
|
|
|
$fields[$field] = $request->input($field);
|
2018-01-05 09:33:23 +08:00
|
|
|
}
|
|
|
|
} else {
|
2018-03-20 09:50:40 +08:00
|
|
|
if (array_key_exists($field, $request)) {
|
2018-01-05 09:33:23 +08:00
|
|
|
$fields[$field] = $request[$field];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-20 09:50:40 +08:00
|
|
|
if (!empty($addtl_fields) && \is_array($addtl_fields)) {
|
2018-01-05 09:33:23 +08:00
|
|
|
$fields = array_merge($fields, $addtl_fields);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $fields;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Run a validation
|
|
|
|
* @param $request
|
|
|
|
* @param $rules
|
|
|
|
* @return bool
|
|
|
|
* @throws \Symfony\Component\HttpKernel\Exception\BadRequestHttpException
|
|
|
|
*/
|
2018-03-20 09:50:40 +08:00
|
|
|
/*public function validate($request, $rules)
|
2018-01-05 09:33:23 +08:00
|
|
|
{
|
2018-03-20 09:50:40 +08:00
|
|
|
if ($request instanceof Request) {
|
2018-01-05 10:08:22 +08:00
|
|
|
$validator = Validator::make($request->all(), $rules);
|
|
|
|
} else {
|
|
|
|
$validator = Validator::make($request, $rules);
|
|
|
|
}
|
|
|
|
|
2018-01-05 09:33:23 +08:00
|
|
|
if (!$validator->passes()) {
|
|
|
|
throw new BadRequestHttpException($validator->errors(), null, 400);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2018-03-20 09:50:40 +08:00
|
|
|
}*/
|
2018-01-05 09:33:23 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Simple normalized method for forming the JSON responses
|
|
|
|
* @param $message
|
|
|
|
* @return \Illuminate\Http\JsonResponse
|
|
|
|
*/
|
2018-03-20 09:50:40 +08:00
|
|
|
public function message($message, $count = null)
|
2018-01-05 09:33:23 +08:00
|
|
|
{
|
2018-01-05 10:08:22 +08:00
|
|
|
$attrs = [
|
2018-01-05 09:33:23 +08:00
|
|
|
'message' => $message
|
2018-01-05 10:08:22 +08:00
|
|
|
];
|
|
|
|
|
2018-03-20 09:50:40 +08:00
|
|
|
if ($count !== null) {
|
2018-01-05 10:08:22 +08:00
|
|
|
$attrs['count'] = $count;
|
|
|
|
}
|
|
|
|
|
|
|
|
return response()->json($attrs);
|
2018-01-05 09:33:23 +08:00
|
|
|
}
|
|
|
|
}
|