This commit is contained in:
191
application/helpers/http_helper.php
Normal file
191
application/helpers/http_helper.php
Normal file
@@ -0,0 +1,191 @@
|
||||
<?php defined('BASEPATH') or exit('No direct script access allowed');
|
||||
|
||||
/* ----------------------------------------------------------------------------
|
||||
* Easy!Appointments - Online Appointment Scheduler
|
||||
*
|
||||
* @package EasyAppointments
|
||||
* @author A.Tselegidis <alextselegidis@gmail.com>
|
||||
* @copyright Copyright (c) Alex Tselegidis
|
||||
* @license https://opensource.org/licenses/GPL-3.0 - GPLv3
|
||||
* @link https://easyappointments.org
|
||||
* @since v1.5.0
|
||||
* ---------------------------------------------------------------------------- */
|
||||
|
||||
if (!function_exists('request')) {
|
||||
/**
|
||||
* Gets the value of a request variable.
|
||||
*
|
||||
* Example:
|
||||
*
|
||||
* $first_name = request('first_name', 'John');
|
||||
*
|
||||
* @param string|null $key Request variable key.
|
||||
* @param mixed|null $default Default value in case the requested variable has no value.
|
||||
*
|
||||
* @return mixed
|
||||
*
|
||||
* @throws InvalidArgumentException
|
||||
*/
|
||||
function request(?string $key = null, $default = null): mixed
|
||||
{
|
||||
/** @var EA_Controller $CI */
|
||||
$CI = &get_instance();
|
||||
|
||||
if (empty($key)) {
|
||||
$payload = $CI->input->post_get($key);
|
||||
|
||||
if (empty($payload)) {
|
||||
$payload = $CI->input->json($key);
|
||||
}
|
||||
|
||||
return $payload;
|
||||
}
|
||||
|
||||
return $CI->input->post_get($key) ?? ($CI->input->json($key) ?? $default);
|
||||
}
|
||||
}
|
||||
|
||||
if (!function_exists('response')) {
|
||||
/**
|
||||
* Return a new response from the application.
|
||||
*
|
||||
* Example:
|
||||
*
|
||||
* response('This is the response content', 200, []);
|
||||
*
|
||||
* @param string $content
|
||||
* @param int $status
|
||||
* @param array $headers
|
||||
*/
|
||||
function response(string $content = '', int $status = 200, array $headers = []): void
|
||||
{
|
||||
/** @var EA_Controller $CI */
|
||||
$CI = &get_instance();
|
||||
|
||||
foreach ($headers as $header) {
|
||||
$CI->output->set_header($header);
|
||||
}
|
||||
|
||||
$CI->output->set_status_header($status)->set_output($content);
|
||||
}
|
||||
}
|
||||
|
||||
if (!function_exists('response')) {
|
||||
/**
|
||||
* Return a new response from the application.
|
||||
*
|
||||
* @param string $content
|
||||
* @param int $status
|
||||
* @param array $headers
|
||||
*/
|
||||
function response(string $content = '', int $status = 200, array $headers = []): void
|
||||
{
|
||||
/** @var EA_Controller $CI */
|
||||
$CI = &get_instance();
|
||||
|
||||
foreach ($headers as $header) {
|
||||
$CI->output->set_header($header);
|
||||
}
|
||||
|
||||
$CI->output->set_status_header($status)->set_output($content);
|
||||
}
|
||||
}
|
||||
|
||||
if (!function_exists('json_response')) {
|
||||
/**
|
||||
* Return a new response from the application.
|
||||
*
|
||||
* Example:
|
||||
*
|
||||
* json_response([
|
||||
* 'message' => 'This is a JSON property.'
|
||||
* ]);
|
||||
*
|
||||
* @param array $content
|
||||
* @param int $status
|
||||
* @param array $headers
|
||||
*/
|
||||
function json_response(array $content = [], int $status = 200, array $headers = []): void
|
||||
{
|
||||
/** @var EA_Controller $CI */
|
||||
$CI = &get_instance();
|
||||
|
||||
foreach ($headers as $header) {
|
||||
$CI->output->set_header($header);
|
||||
}
|
||||
|
||||
$CI->output
|
||||
->set_status_header($status)
|
||||
->set_content_type('application/json')
|
||||
->set_output(json_encode($content));
|
||||
}
|
||||
}
|
||||
|
||||
if (!function_exists('json_exception')) {
|
||||
/**
|
||||
* Return a new json exception from the application.
|
||||
*
|
||||
* Example:
|
||||
*
|
||||
* json_exception($exception); // Add this in a catch block to return the exception information.
|
||||
*
|
||||
* @param Throwable $e
|
||||
*/
|
||||
function json_exception(Throwable $e): void
|
||||
{
|
||||
$response = [
|
||||
'success' => false,
|
||||
'message' => $e->getMessage(),
|
||||
'trace' => trace($e),
|
||||
];
|
||||
|
||||
log_message('error', 'JSON exception: ' . json_encode($response));
|
||||
|
||||
unset($response['trace']); // Do not send the trace to the browser as it might contain sensitive info
|
||||
|
||||
json_response($response, 500);
|
||||
}
|
||||
}
|
||||
|
||||
if (!function_exists('abort')) {
|
||||
/**
|
||||
* Throw an HttpException with the given data.
|
||||
*
|
||||
* Example:
|
||||
*
|
||||
* if ($error) abort(500);
|
||||
*
|
||||
* @param int $code
|
||||
* @param string $message
|
||||
* @param array $headers
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function abort(int $code, string $message = '', array $headers = []): void
|
||||
{
|
||||
/** @var EA_Controller $CI */
|
||||
$CI = &get_instance();
|
||||
|
||||
foreach ($headers as $header) {
|
||||
$CI->output->set_header($header);
|
||||
}
|
||||
|
||||
show_error($message, $code);
|
||||
}
|
||||
}
|
||||
|
||||
if (!function_exists('trace')) {
|
||||
/**
|
||||
* Prepare a well formatted string for an exception
|
||||
*
|
||||
* @param Throwable $e
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
function trace(Throwable $e): string
|
||||
{
|
||||
return get_class($e) .
|
||||
" '{$e->getMessage()}' in {$e->getFile()}({$e->getLine()})\n" .
|
||||
"{$e->getTraceAsString()}";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user