Your IP : 216.73.217.77


Current Path : /home/users/unlimited/www/whatsjet-saas/Source/app/Yantrana/__Laraware/Core/
Upload File :
Current File : /home/users/unlimited/www/whatsjet-saas/Source/app/Yantrana/__Laraware/Core/CoreEngine.php

<?php

namespace App\Yantrana\__Laraware\Core;

/**
 * Core Engine - 1.5.2 - 28 SEP 2023
 *
 * core engine for Angulara (Laraware) applications
 *
 * @since 0.1.174 - 24 JUN 2016
 *--------------------------------------------------------------------------- */

use Exception;
use Request;

abstract class CoreEngine
{
    /**
     * Send reaction from Engine mostly to Controllers.
     *
     * @param  array  $reactionCode  - Reaction from Repo
     * @param  array  $data  - Array of data if needed
     * @param  string  $message  - Message if any
     * @param  int  $httpCode  - @since 0.2.1 - 22 APR 2021
     *
     * @internal Use engineResponse instead - 14 DEC 2021
     *
     * @return array
     *-------------------------------------------------------------------------- */
    public function engineReaction($reactionCode, $data = null, $message = null, $httpCode = null)
    {
        if (is_array($reactionCode) === true) {
            $message = $reactionCode[2];
            $data = (is_array($data) and is_array($reactionCode[1]))
                ? array_merge($reactionCode[1], $data)
                : (empty($reactionCode[1])
                    ? (empty($data) ? null : $data)
                    : $reactionCode[1]);

            $reactionCode = $reactionCode[0];
        }

        if (__isValidReactionCode($reactionCode) === true) {
            return [
                'reaction_code' => (int) $reactionCode,
                'data' => $data,
                'message' => $message,
                'http_code' => $httpCode,
            ];
        }

        throw new Exception('__engineReaction:: Invalid Reaction Code!!');
    }

    /**
     * Load DataTable Helper 0.2.1 - 03 JUN 2015
     *
     * helper function to load datatable.
     *
     * @param  array  $data  - for request response
     * @return void.
     *-------------------------------------------------------- */
    public function dataTableResponse($sourceData, $dataFormat = [], $options = [])
    {
        $data = [];
        $rawData = $sourceData['data'];
        $enhancedData = [];

        foreach ($rawData as $key) {
            $newDataFormat = [];

            if (! empty($dataFormat)) {
                foreach ($dataFormat as $dataItemKey => $dataItemValue) {
                    if (is_numeric($dataItemKey)) {
                        $newDataFormat[$dataItemValue] = $key[$dataItemValue];
                    } elseif (! is_string($dataItemValue) and is_callable($dataItemValue)) {
                        $newDataFormat[$dataItemKey] = call_user_func($dataItemValue, $key);
                    } else {
                        $newDataFormat[$dataItemKey] = $key[$dataItemValue];
                    }
                }
            } else {
                $newDataFormat = $key;
            }

            $primaryKey = array_key_exists('_id', $key) ? '_id' : 'id';

            $newDataFormat['DT_RowId'] = 'rowid_'.$key[$primaryKey];

            $enhancedData[] = $newDataFormat;
        }

        $dataTablesData = [
            'recordsTotal' => $sourceData['total'],
            'data' => $enhancedData,
            'recordsFiltered' => $sourceData['total'],
            'draw' => (int) Request::get('draw'),
        ];

        $data['response_token'] = (int) Request::get('fresh');

        $data = array_merge($data, $dataTablesData);

        if (! empty($options)) {
            $data['_options'] = $options;
        }

        unset($enhancedData, $rawData, $sourceData, $dataFormat, $dataTablesData);

        $data['dataTableResponse'] = true;

        return __apiResponse($data);
    }

    /**
     * Extract engine data for internal use
     *
     * @param  array  $engineReaction  - Engine Reaction
     * @param  array  $key  - dot based key
     * @param  mixed  $default  - Message if any
     *
     * @modified - 1.2.2 - 07 OCT 2021
     *
     * @return mixed
     *-------------------------------------------------------------------------- */
    public function engineData($engineReaction, $key = null, $default = null)
    {
        // Engine Reaction Validation
        if (
            is_array($engineReaction)
            and array_key_exists('reaction_code', $engineReaction)
            and array_key_exists('data', $engineReaction)
            and array_key_exists('message', $engineReaction)
        ) {
            if ($key) {
                return array_get($engineReaction['data'], $key, $default);
            }

            // Get the Data out of it
            return $engineReaction['data'];
        }

        throw new Exception('ENGINE:: Invalid Engine Reaction???');
    }

    /**
     * Send reaction from Engine mostly to Controllers using EngineResponse.
     *
     * @param  array  $reactionCode  - Reaction from Repo
     * @param  array  $data  - Array of data if needed
     * @param  string  $message  - Message if any
     * @param  int  $httpCode
     *
     * @since 1.3.0 - 14 DEC 2021
     *
     * @updated 1.3.2 - 28 APR 2022
     *
     * @return EngineResponse
     *-------------------------------------------------------------------------- */
    public function engineResponse($reactionCode, $data = [], $message = null, $httpCode = null)
    {
        return new EngineResponse($this->engineReaction($reactionCode, (! $data) ? [] : $data, $message, $httpCode));
    }

    /**
     * Send reaction1 from Engine mostly to Controllers using EngineResponse.
     *
     * @param  array  $data  - Array of data if needed
     * @param  string  $message  - Message if any
     *
     * @since 1.5.2 - 28 SEP 2023
     *
     * @return EngineResponse
     *-------------------------------------------------------------------------- */
    public function engineSuccessResponse(array $data = [], ?string $message = null, ?int $httpCode = null)
    {
        return $this->engineResponse(1, $data, $message, $httpCode);
    }

    /**
     * Send reaction 2 from Engine mostly to Controllers using EngineResponse.
     *
     * @param  array  $data  - Array of data if needed
     * @param  string  $message  - Message if any
     *
     * @since 1.5.2 - 28 SEP 2023
     *
     * @return EngineResponse
     *-------------------------------------------------------------------------- */
    public function engineFailedResponse(array $data = [], ?string $message = null, ?int $httpCode = null)
    {
        return $this->engineResponse(2, $data, $message, $httpCode);
    }
}