Sindbad~EG File Manager

Current Path : /home/zada/www/app/Http/Controllers/
Upload File :
Current File : /home/zada/www/app/Http/Controllers/NoteController.php

<?php

namespace App\Http\Controllers;

use App\Enums\NoteType as EnumsNoteType;
use App\Models\Note;
use App\Models\NoteTranslation;
use Illuminate\Http\Request;
use Redirect;
use Validator;

class NoteController extends Controller
{

    public function __construct() {
        // Staff Permission Check
        $this->middleware(['permission:view_notes'])->only('index');
        $this->middleware(['permission:add_note'])->only('create');
        $this->middleware(['permission:edit_note'])->only('edit');
        $this->middleware(['permission:delete_note'])->only('destroy');

        $this->note_rules = [
            'description' => ['required','max:900'],
        ];

        $this->note_messages = [
            'description.required' => translate('Note description is required'),
            'description.max'  => translate('Max 900 character'),
        ];
    }

    /**
     * Display a listing of the resource.
     */
    public function index(Request $request)
    {
        $sort_search =null;
        $noteUserType = $request->note_user_type != null ? $request->note_user_type : 'all';
        $notes  = Note::whereHas('user');

        if($noteUserType != 'all'){
            $adminId = get_admin()->id;
            $notes = $noteUserType == 'in_house' ? $notes->where('user_id', $adminId) : $notes->where('user_id', '!=', $adminId); 
        }

        if ($request->has('search')){
            $sort_search = $request->search;
            $notes = $notes->where('description', 'like', '%'.$sort_search.'%');
        }
        $notes = $notes->orderBy('created_at','desc')->paginate(15);
        return view('backend.note.index', compact('notes', 'sort_search', 'noteUserType'));
    }

    /**
     * Show the form for creating a new resource.
     */
    public function create(Request $request)
    {
        $note_type=$request->type;
        $types = EnumsNoteType::cases();
        return view('backend.note.create', compact('types','note_type'));
    }

    /**
     * Store a newly created resource in storage.
     */
    public function store(Request $request)
    {
        $rules      = $this->note_rules;
        $messages   = $this->note_messages;
        $validator  = Validator::make($request->all(), $rules, $messages);

        if ($validator->fails()) {
            flash(translate('Sorry! Something went wrong'))->error();
            return Redirect::back()->withErrors($validator);
        }
        
        $note = new Note();
        $note->user_id = get_admin()->id;
        $note->note_type = $request->note_type;
        $note->description = $request->description;
        $note->save();

        $note_translation = NoteTranslation::firstOrNew(['lang' => env('DEFAULT_LANGUAGE'), 'note_id' => $note->id]);
        $note_translation->description = $request->description;
        $note_translation->save();

        flash(translate('Note has been created successfully!'))->success();
        return redirect()->route('note.index');
    }

    /**
     * Display the specified resource.
     */
    public function show(string $id)
    {
        //
    }

    /**
     * Show the form for editing the specified resource.
     */
    public function edit(Request $request, $id)
    {
        $lang   = $request->lang;
        $types = EnumsNoteType::cases();
        $note  = Note::findOrFail($id);
        return view('backend.note.edit', compact('note', 'types', 'lang'));
    }

    /**
     * Update the specified resource in storage.
     */
    public function update(Request $request, $id)
    {
        $rules      = $this->note_rules;
        $messages   = $this->note_messages;
        $validator  = Validator::make($request->all(), $rules, $messages);

        if ($validator->fails()) {
            flash(translate('Sorry! Something went wrong'))->error();
            return Redirect::back()->withErrors($validator);
        }

        $note = Note::findOrFail($id);
        $note->note_type = $request->note_type;
        if($request->lang == env("DEFAULT_LANGUAGE")){
            $note->description = $request->description;
        }
        $note->save();

        $note_translation = NoteTranslation::firstOrNew(['lang' => $request->lang, 'note_id' => $note->id]);
        $note_translation->description = $request->description;
        $note_translation->save();

        flash(translate('Note has been updated successfully!'))->success();
        return back();
    }

    /**
     * Remove the specified resource from storage.
     */
    public function destroy(Note $note)
    {   
        $note = Note::findOrFail($note->id);
        $note->note_translations()->delete();
        $note->delete();
        flash(translate('Note has been deleted successfully!'))->success();
        return back();
    }

    public function getNotes(Request $request)
    {
        $user = auth()->user();
        $noteType = $request->note_type;
        
        $notes = Note::where('note_type', $noteType);
        if($user->user_type == 'seller'){
            $notes->where(function ($query) {
                $query->where('user_id', auth()->user()->id)
                    ->orWhere(function($query) {
                        $query->where('user_id', get_admin()->id)
                                ->where('seller_access', 1);
                    });
            });
        }
        else{
            $notes->where('user_id', get_admin()->id);
        }

        $notes = $notes->get();
        return view('backend.note.get_notes', compact('notes', 'noteType'));
    }

    public function getSingleNote($id){
        $note = Note::findOrFail($id);
        $note = $note != null ? $note->getTranslation('description') : translate('Note not found');
        return $note;
    }


    public function updateSelelrAccess(Request $request) {
        $note = Note::findOrFail($request->id);
        $note->seller_access = $request->status;
        $note->save();
        return 1;
    }
}

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists (>^ω^<)看过哭02teddd(>^ω^<)看过哭02teddd