so = new System; if (is_numeric($request->name)) { $this->so = System::findOrNew($request->name); // Cannot claim this site if ($this->so->id === Setup::findOrFail(config('app.id'))->system_id) return FALSE; } return Gate::allows(is_numeric($request->name) && $this->so->users->count() ? 'update' : 'register',$this->so); } public function messages(): array { return [ 'hold' => 'Must be Yes or No', 'pollmode' => 'Must be Hold, Normal or Crash', ]; } /** * Get the validation rules that apply to the request. * * If the system exists (POST & action="register" & system_id=), then no validation required * If the system doesnt exist (POST & action="register" & system_id undefined) then we need just a name to start the process (action="create") * Then, full validation * @return array */ public function rules(Request $request) { if ((! $request->isMethod('post')) || ($request->action === 'register')) return []; if ((! $this->so->exists) && ($request->action === 'create')) return [ 'name' => 'required|min:3', ]; return array_filter(array_merge( [ 'name' => 'required|min:3', ], ($this->so->exists || ($request->action !== 'create')) ? [ 'location' => 'required|min:3', 'sysop' => 'required|min:3', 'phone' => 'nullable|regex:/^([0-9-]+)$/', 'address' => 'nullable|regex:/^(?!:\/\/)(?=.{1,255}$)((.{1,63}\.){1,127}(?![0-9]*$)[a-z0-9-]+\.?)$/i', 'port' => 'nullable|digits_between:2,5', 'method' => 'nullable|numeric', 'mailer_details.*' => 'nullable|array', 'mailer_details.*.port' => 'nullable|digits_between:2,5', 'zt_id' => 'nullable|size:10|regex:/^([A-Fa-f0-9]){10}$/|unique:systems,zt_id,'.($this->so->exists ? $this->so->id : 0), 'pkt_type' => ['required',Rule::in(array_keys(Packet::PACKET_TYPES))], ] : [], $this->so->exists ? [ 'active' => 'required|boolean', 'hold' => 'required|boolean', 'pollmode' => 'required|integer|min:0|max:2', ] : [], )); } }