public function update(array $data, $id)
 {
     try {
         $this->validator->with($data)->passesOrFail();
         return $this->repository->update($data, $id);
     } catch (ValidatorException $e) {
         return ['error' => true, 'message' => $e->getMessageBag()];
     }
 }
 public function update(array $data, $id)
 {
     try {
         $this->validator->with($data)->passesOrFail();
         return $this->repository->update($data, $id);
     } catch (ValidatorException $e) {
         return response()->json(['error' => true, 'message' => $e->getMessageBag()]);
     } catch (ModelNotFoundException $e) {
         return response()->json(['error' => true, 'message' => "Project id {$id} not found"]);
     }
 }
예제 #3
0
 /**
  * @param array $data
  * @param $id
  * @return mixed
  */
 public function update(array $data, $id)
 {
     try {
         $this->validator->with($data)->passesOrFail();
         return $this->repository->update($data, $id);
     } catch (ValidatorException $e) {
         return ['error' => true, 'message' => $e->getMessageBag()];
     } catch (ModelNotFoundException $e) {
         return ['error' => true, 'message' => 'No data found'];
     } catch (\Exception $e) {
         return ['error' => true, 'message' => 'An error occurred when trying to update the data. Try again later.'];
     }
 }
예제 #4
0
 /**
  * @param array $data
  * @param $id
  * @return \Illuminate\Http\JsonResponse
  */
 public function update(array $data, $id)
 {
     try {
         $this->validator->with($data)->setId($id)->passesOrFail(ValidatorInterface::RULE_UPDATE);
         $update = $this->repository->update($data, $id);
         $msg = "Projeto {$id} atualizado com sucesso.";
         Log::info($msg);
         return response()->json(["message" => $msg, "data" => $update->toArray()], 200);
     } catch (ValidatorException $e) {
         return response()->json([$e->getMessageBag()], 400);
     } catch (ModelNotFoundException $e) {
         return response()->json([$e->getMessage()], 404);
     }
     //QueryException tratado em Exceptions/Handler.php
 }
예제 #5
0
 public function update(array $data, $id)
 {
     $project = Project::find($id);
     if (is_null($project)) {
         return Errors::invalidId($id);
     }
     try {
         $this->validator->with($data)->passesOrFail();
         if ($data['owner_id'] != $project->owner_id) {
             return Errors::basic('O dono do projeto nao pode ser alterado!');
         }
         return $this->repository->update($data, $id);
     } catch (ValidatorException $e) {
         return Errors::basic($e->getMessageBag());
     }
 }
예제 #6
0
 public function update(array $data, $id)
 {
     try {
         $this->validator->with($data)->passesOrFail();
         return $this->repository->update($data, $id);
     } catch (ValidatorException $e) {
         return ['error' => true, 'message' => $e->getMessageBag()];
     } catch (ModelNotFoundException $e) {
         return ['error' => true, 'message' => 'O Projeto que está tentando atualizar não existe'];
     }
 }
 /**
  * Update the specified resource in storage.
  *
  * @param  \Illuminate\Http\Request $request
  * @param  int $id
  * @return \Illuminate\Http\Response
  */
 public function update(Request $request, $id)
 {
     try {
         return $this->repository->update($request->all(), $id);
     } catch (ModelNotFoundException $e) {
         return $this->erroMsgm('Projeto não encontrado.');
     } catch (ValidatorException $e) {
         $error = $e->getMessageBag();
         return ['error' => true, 'message' => "Erro ao atualizar o projeto, alguns campos são obrigatórios!", 'messages' => $error->getMessages()];
     } catch (\Exception $e) {
         return $this->erroMsgm('Ocorreu um erro ao atualizar o projeto.');
     }
 }
예제 #8
0
 /**
  * Update the specified resource in storage.
  *
  * @param  \Illuminate\Http\Request  $request
  * @param  int  $id
  * @return \Illuminate\Http\Response
  */
 public function update(Request $request, $id)
 {
     return $this->repository->update($request->all(), $id);
 }