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($data = [], $id, $taskId) { try { $this->validator->with($data)->setId($id)->passesOrFail(); return $this->repository->update($data, $taskId); } catch (ValidatorException $e) { return response()->json(['error' => true, 'message' => $e->getMessageBag()]); } catch (ModelNotFoundException $e) { return response()->json(['error' => true, 'message1' => $e->getMessage(), 'message2' => 'Project Task ID ' . $taskId . ' nao encontrado.']); } }
public function update(array $data, $id) { try { $this->validator->with($data)->passesOrFail(ValidatorInterface::RULE_UPDATE); return $this->repository->setPresenter($this->presenter)->update($data, $id); } catch (ValidatorException $e) { return ['error' => true, 'message' => $e->getMessageBag(), "messageDev" => 'ValidatorException']; } catch (ModelNotFoundException $e) { return ['error' => true, 'message' => 'Registro não encontrado.', "messageDev" => $e->getMessage()]; } catch (\Exception $e) { return ["error" => true, "message" => 'Falha ao atualizar dados.', "messageDev" => $e->getMessage()]; } }
public function update(array $data, $noteId) { try { $this->validator->with($data)->passesOrFail(); $this->setPresenter(); $result = $this->repository->update($data, $noteId); event(new TaskWasIncluded($result)); return $result; } catch (ValidatorException $e) { return ['error' => true, 'message' => $e->getMessageBag()]; } catch (\Exception $e) { return ['error' => true, 'message' => $e->getMessage()]; } }
public function update(array $data, $id) { try { $this->validator->with($data)->passesOrFail(); //return $this->repository->update($data, $id); if ($this->repository->update($data, $id)) { return ['success' => true, 'message' => 'Tarefa atualizada com sucesso!']; } } catch (ValidatorException $e) { return ['error' => true, 'message' => $e->getMessageBag()]; } catch (ModelNotFoundException $e) { return ['error' => true, 'message' => 'Não foi possível atualizar a tarefa! Projeto ou tarefa não encontrado!']; } }
/** * @param array $data * @param $id * @return mixed */ public function update(array $data, $id, $taskId) { try { $data['project_id'] = $id; $this->validator->with($data)->passesOrFail(); return $this->repository->update($data, $taskId); } 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.']; } }
/** * @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 = "Tarefa {$id} atualizada 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 }
public function update(array $data, $task_id) { $task = ProjectTask::find($task_id); if (is_null($task)) { return Errors::invalidId($task_id); } try { $this->validator->with($data)->passesOrFail(); if ($data['project_id'] != $task->project_id) { return Errors::basic('Você não pode alterar o projeto da tarefa.'); } $user_id = \Authorizer::getResourceOwnerId(); if (!$this->projectRepository->isMember($task->project_id, $user_id)) { return Errors::basic('Acesso negado. Você não é membro do projeto selecionado.'); } return $this->repository->update($data, $task_id); } catch (ValidatorException $e) { return Errors::basic($e->getMessageBag()); } }