!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/gateway.picotech.app/public_html/app/Http/Controllers/Customer/   drwxr-xr-x
Free 28.62 GB of 117.98 GB (24.26%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     ContactController.php (13.63 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace App\Http\Controllers\Customer;

use 
App\Http\Controllers\Controller;
use 
App\Imports\ContactsImport;
use 
App\Models\Contact;
use 
App\Models\CustomerPlan;
use 
App\Models\Group;
use 
App\Models\Label;
use 
App\Models\Plan;
use 
Carbon\Carbon;
use 
Illuminate\Http\Request;
use 
Illuminate\Support\Facades\DB;
use 
Illuminate\Support\Facades\Log;
use 
Maatwebsite\Excel\Concerns\ToCollection;
use 
Maatwebsite\Excel\Concerns\WithCustomCsvSettings;
use 
Maatwebsite\Excel\Facades\Excel;

class 
ContactController extends Controller
{
    public function 
create()
    {
        return 
view('customer.contacts.create');
    }

    public function 
index()
    {
        return 
view('customer.contacts.index');
    }

    public function 
import_contacts()
    {
        return 
view('customer.contacts.import_create');
    }

    public function 
getAll(Request $request)
    {
        
$customer auth('customer')->user();
        if(
$customer->type=='staff'){
            
$customer=$customer->staff;
        }

        
$contacts $customer->contacts()->where('block_contact','unblock')->with('contact_groups','contact_groups.group')->select(DB::raw("CONCAT(first_name,' ',last_name) as full_name"),'first_name','last_name','id''number''email''company''address''zip_code''city''state''note');


        return 
datatables()->of($contacts)
        ->
addColumn('full_name', function ($q) {
            return 
$q->full_name;
        })
            ->
addColumn('group', function ($q) {
                
$group_name='NA';
                
$contact_group=$q->contact_groups;
                if(isset(
$contact_group[0]) && $contact_group[0]->group){
                    
$group_name=$contact_group[0]->group->name;
                }
            return 
$group_name;
        })
         ->
addColumn('action', function ($q) {
                return 
"<a class='btn btn-sm btn-info' data-toggle='tooltip' data-placement='top' title='Edit' href='" route('customer.contacts.edit', [$q->id]) . "'>"."<i class='fas fa-edit'></i>"."</a> &nbsp; &nbsp;" .
                    
'<button class="btn btn-sm btn-secondary mr-2" data-message="Are you sure you want to  Block this number?"
                                        data-action=' 
route('customer.block.number', [$q,'type'=>'block']) . '
                                        data-input={"_method":"get"}
                                        data-toggle="modal" data-target="#modal-confirm" data-toggle="tooltip" data-placement="top" title="Block"><i class="fa fa-ban"></i></button>'
.
                    
'<button class="btn btn-sm btn-danger" data-message="Are you sure you want to delete this number?"
                                        data-action=' 
route('customer.contacts.destroy', [$q]) . '
                                        data-input={"_method":"delete"}
                                        data-toggle="modal" data-target="#modal-confirm" data-toggle="tooltip" data-placement="top" title="Delete"><i class="fas fa-trash"></i></button>'
;
            })
         ->
filterColumn('full_name', function($query$keyword) {
                
$sql "CONCAT(first_name,' ',last_name)  like ?";
                    
$query->whereRaw($sql, ["%{$keyword}%"])->orWhereRaw('first_name like ?', ["%{$keyword}%"])->orWhereRaw('last_name like ?', ["%{$keyword}%"]);
            })
            ->
filterColumn('group', function ($query$keyword) {
                
$query->whereHas('contact_groups.group', function ($q) use ($keyword) {
                    
$q->where('name''like'"%" $keyword "%");
                });
            })

            ->
rawColumns(['action','group'])
            ->
toJson();
    }

    public function 
store(Request $request)
    {
        
$request->validate([
            
'number' => 'required|unique:contacts|regex:/^[0-9\-\+]{9,15}$/',
            
'contact_dial_code' => 'required'
        
]);
        
$customer auth('customer')->user();
        if(
$customer->type=='staff'){
            
$customer=$customer->staff;
        }

        
$contact $customer->contacts()->count();
        
$plan $customer->currentPlan();
        
$currentPlan $customer->currentPlan();
        if (isset(
$currentPlan->renew_date) && $currentPlan->renew_date Carbon::now()){
            return 
back()->with('fail''Your Plan has expired');
        }
        if(
$contact >= $plan->contact_limit){
            return 
back()->withErrors(['message'=>'You have extended your contact limit']);
        }
        
$notification $customer->settings()->where('name''email_notification')->first();
        
$request['email_notification'] = $notification->value ?? '';
        
$label $customer->labels()->where('title''new')->first();
        if (!
$label) {
            
$label = new Label();
            
$label->title 'new';
            
$label->status 'active';
            
$label->customer_id $customer->id;
            
$label->color 'red';
            
$label->save();
        }
        
$request['label_id'] = $label->id;
        
$customer->contacts()->create($request->all());

        return 
back()->with('success''Contact successfully added');
    }

    public function 
edit(Contact $contact)
    {
        
$data['contact'] = $contact;
        return 
view('customer.contacts.edit'$data);
    }

    public function 
update(Contact $contactRequest $request)
    {
        
$request->validate([
            
'first_name' => 'required',
        ]);
        
$customer auth('customer')->user();
        if(
$customer->type=='staff'){
            
$customer=$customer->staff;
        }

        
$contacts $customer->contacts()->count();
        
$plan $customer->plans()->latest('id')->first();
        
$contact_limit Plan::where('id'$plan->id)->first();

        
$renewDate CustomerPlan::where('customer_id',$customer->id)->where('is_current','yes')->where('renew_date','<',Carbon::now())->first();
        if (
$renewDate){
            return 
back()->withErrors(['message'=>'Your Plan has expired']);
        }

        if(
$plan && $contacts >= $plan->contact_limit){
            return 
back()->withErrors(['message'=>'Your contact added limit is over']);
        }
        
$notification $customer->settings()->where('name''email_notification')->first();

        
$valid_data $request->only('first_name''last_name''email''company''forward_to''forward_to_dial_code''address''zip_code''city''state''note');
        
$valid_data['email_notification'] = $notification->value;

        
//update the model
        
$contact->update($valid_data);

        return 
back()->with('success''Contact successfully updated');
    }

    public function 
destroy(Contact $contact)
    {
        
$contact->delete();
        return 
back()->with('success''Contact successfully deleted');
    }

    public function 
import_contacts_show(Request $request)
    {
        
$request->validate([
            
'import_contact_csv' => 'required|mimes:csv,txt'
        
]);

        
$import_contact_data Excel::toArray(new class implements ToCollection,WithCustomCsvSettings {
            public function 
collection(\Illuminate\Support\Collection $rows)
            {
                return 
$rows;
            }
            public function 
getCsvSettings(): array
            {
                return [
                    
'input_encoding' => 'ISO-8859-1'
                
];
            }
        }, 
$request->file('import_contact_csv')
        );
        
$import_contact_contact_array = [];
        unset(
$import_contact_data[0][0]);
        foreach (
array_slice($import_contact_data[0],0,10) as $data) {
            
$import_contact_contact_array[] = [
                
'number' => "+".str_replace('+','',$data[0]),
                
'first_name' => $data[1],
                
'last_name' => $data[2],
                
'email' => $data[3],
                
'address' => $data[4],
                
'city' => $data[5],
                
'state' => $data[6],
                
'zip_code' => $data[7],
                
'company' => $data[8],
                
'note' => $data[9],
                
'full_name' => $data[1] . '&nbsp;' $data[2],
            ];
        }

        return 
response()->json(['status' => 'success''data' => $import_contact_contact_array]);

    }

    public function 
import_contacts_store(Request $request)
    {
        
$request->validate([
            
'import_name' => 'required',
            
'import_contact_csv' => 'required|mimes:csv,txt'
        
]);
        
$customer auth('customer')->user();
        if(
$customer->type=='staff'){
            
$customer=$customer->staff;
        }
        
$currentPlan $customer->currentPlan();
        if (isset(
$currentPlan->renew_date) && $currentPlan->renew_date Carbon::now()){
            return 
back()->with('fail''Your Plan has expired');
        }
        
DB::beginTransaction();
        try {
            
$preGroup $customer->groups()->where('name'$request->import_name)->first();
            if (
$preGroup) return back()->withErrors(['msg' => "Import name already exists"]);

            
// $importContact = new Group();
            // $importContact->customer_id = auth('customer')->id();
            // $importContact->name = $request->import_name;
            // $importContact->save();
             
            
$group_name$request->import_name ;

            if (
$request->hasFile('import_contact_csv')) {
                
$data $request->file('import_contact_csv');
                
$fileName $customer->id '.' $data->getClientOriginalExtension();
                
$data->move(public_path() . '/uploads'$fileName);
                
$file_url public_path() . '/uploads/' $fileName;
                
$fp file($file_url);
                
$contacts $customer->contacts()->count();
                
$importedContact = (count($fp) - 1) + $contacts;
                
$current_plan $customer->currentPlan();

                if (!
$current_plan)
                    throw new 
\ErrorException('Doesn\'t have any plan right now');
                
$planContactLimit $current_plan->contact_limit;
                if (
$importedContact >= $planContactLimit) {
                    return 
redirect()->route('customer.contacts.index')->with('fail''You have extended your contact limit');
                }
                try {
                    
Excel::import(new ContactsImport($group_name $customer), $file_url);
                    
DB::commit();
                } catch (
\Exception $ex) {
                    if (isset(
$ex->validator)) {
                        return 
redirect()->back()->withErrors($ex->validator->errors());
                    } else {
                        return 
redirect()->back()->withErrors(['msg' => $ex->getMessage()]);
                    }

                }
            }

        } catch (
\Exception $ex) {
            
Log::error($ex);
            
DB::rollBack();
            return 
back()->with('fail'$ex->getMessage());
        }

        return 
back()->with('success''Import Contact Successfully Created');
    }

    public function 
search(Request $request)
    {
        
$customer auth('customer')->user();
        if(
$customer->type=='staff'){
            
$customer=$customer->staff;
        }

        
$contacts $customer->contacts();
        
$contactsForCount=$customer->contacts();
        if (
$request->ajax())
        {
            
$page $request->page;
            
$resultCount 25;

            
$offset = ($page 1) * $resultCount;

            if (
$request->search) {
                
$contacts->where('number''like'"%" $request->search "%")
                    ->
orWhere('first_name''like'"%" $request->search "%")
                    ->
orWhere('zip_code''like'"%" $request->search "%")
                    ->
orWhere('address''like'"%" $request->search "%")
                    ->
orWhere('last_name''like'"%" $request->search "%");

                
$contactsForCount->where('number''like'"%" $request->search "%")
                    ->
orWhere('first_name''like'"%" $request->search "%")
                    ->
orWhere('zip_code''like'"%" $request->search "%")
                    ->
orWhere('address''like'"%" $request->search "%")
                    ->
orWhere('last_name''like'"%" $request->search "%");
            }

            
$results=$contacts->skip($offset)->take($resultCount)->get();
            
$count $contactsForCount->count();
            
$endCount $offset $resultCount;
            
$morePages $count $endCount;
            
$finalResults = [];
            foreach (
$results as $contact) {
                
$finalResults[] = [
                    
'id' => $contact->id,
                    
'text' => $contact->number.' '.($contact->first_name?'('.$contact->first_name.' '.$contact->last_name.')':'')
                ];
            }
            
$results = array(
                
"results" => $finalResults,
                
"pagination" => array(
                    
"more" => $morePages
                
)
            );

            return 
response()->json($results);
        }
    }
    public function 
searchBlockcontact(Request $request){
        
$customer auth('customer')->user();
        if(
$customer->type=='staff'){
            
$customer=$customer->staff;
        }
        
$contacts $customer->contacts();
        
$search $contacts->select('id','number')->where('number''like'"%" .str_replace('+','',$request->number) . "%")->where('block_contact','block')->first();
        return 
response()->json(['status' => 'success''data' => $search]);
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0047 ]--