/** * Loads the audit log item from the id passed in, locate the relevant user, then overwrite all current attributes * of the user with the values from the audit log data field. Once the user saved, redirect to the edit page, * where the operator can inspect and further edit if needed. * * @param $id * * @return \Illuminate\View\View */ public function replayEdit($id) { // Loading the audit in question. $audit = $this->audit->find($id); // Getting the attributes from the data fields. $att = json_decode($audit->data, true); // Finding the user to operate on from the id field that was populated in the // edit action that created this audit record. $user = $this->user->find($att['id']); if (null == $user) { Flash::warning(trans('admin/users/general.error.user_not_found', ['id' => $att['id']])); return \Redirect::route('admin.audit.index'); } Audit::log(Auth::user()->id, trans('admin/users/general.audit-log.category'), trans('admin/users/general.audit-log.msg-replay-edit', ['username' => $user->username])); $page_title = trans('admin/users/general.page.edit.title'); // "Admin | User | Edit"; $page_description = trans('admin/users/general.page.edit.description', ['full_name' => $user->full_name]); // "Editing user"; if (!$user->isEditable()) { abort(403); } // Setting user attributes with values from audit log to replay the requested action. // Password is not replayed. $user->first_name = $att['first_name']; $user->last_name = $att['last_name']; $user->username = $att['username']; $user->email = $att['email']; $user->enabled = $att['enabled']; if (array_key_exists('selected_roles', $att)) { $aRoleIDs = explode(",", $att['selected_roles']); $user->roles()->sync($aRoleIDs); } if (array_key_exists('perms', $att)) { $user->permissions()->sync($att['perms']); } $user->save(); $roles = $this->role->all(); $perms = $this->perm->all(); return view('admin.users.edit', compact('user', 'roles', 'perms', 'page_title', 'page_description')); }
/** * @param Request $request * @return mixed */ public function getInfo(Request $request) { $id = $request->input('id'); $role = $this->role->find($id); return $role; }