Fix for system registration, new systems couldnt be added.
This commit is contained in:
@@ -580,7 +580,7 @@ class SystemController extends Controller
|
||||
}
|
||||
|
||||
/**
|
||||
* register system
|
||||
* Register a system, or link to an existing system
|
||||
*/
|
||||
public function system_register(SystemRegister $request)
|
||||
{
|
||||
@@ -588,14 +588,14 @@ class SystemController extends Controller
|
||||
if ($request->isMethod('GET'))
|
||||
return view('user.system.register');
|
||||
|
||||
if ($request->action != 'create')
|
||||
if ($request->action === 'register' && $request->system_id)
|
||||
return view('user.system.widget.register_confirm')
|
||||
->with('o',System::findOrFail($request->system_id));
|
||||
|
||||
$o = System::findOrNew($request->system_id);
|
||||
|
||||
// If the system exists, and we are 'register', we'll start the address claim process
|
||||
if ($o->exists && $request->action == 'register') {
|
||||
if ($o->exists && $request->action === 'Link') {
|
||||
$validate = Setup::findOrFail(config('app.id'))->system->inMyZones($o->addresses);
|
||||
|
||||
// If we have addresses, we'll trigger the routed netmail
|
||||
|
@@ -12,39 +12,41 @@ class SystemRegister extends FormRequest
|
||||
{
|
||||
private System $so;
|
||||
|
||||
/**
|
||||
* Determine if the user is authorized to make this request.
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function authorize(Request $request)
|
||||
{
|
||||
/**
|
||||
* Determine if the user is authorized to make this request.
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function authorize(Request $request)
|
||||
{
|
||||
$this->so = System::findOrNew($request->system_id);
|
||||
|
||||
return Gate::allows($this->so->users->count() ? 'update' : 'register',$this->so);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the validation rules that apply to the request.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function rules(Request $request)
|
||||
{
|
||||
if ((! $request->isMethod('post')) || ($request->action == 'register'))
|
||||
/**
|
||||
* Get the validation rules that apply to the request.
|
||||
*
|
||||
* If the system exists (POST & action="register" & system_id=<value>), 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')) {
|
||||
if ((! $this->so->exists) && ($request->action === 'create'))
|
||||
return [
|
||||
'name' => 'required|min:3',
|
||||
];
|
||||
}
|
||||
|
||||
return array_filter(array_merge(
|
||||
return array_filter(array_merge(
|
||||
[
|
||||
'name' => 'required|min:3',
|
||||
],
|
||||
($this->so->exists || ($request->action != 'create')) ? [
|
||||
($this->so->exists || ($request->action !== 'create')) ? [
|
||||
'location' => 'required|min:3',
|
||||
|
||||
'sysop' => 'required|min:3',
|
||||
@@ -62,5 +64,5 @@ class SystemRegister extends FormRequest
|
||||
'hold' => 'required|boolean',
|
||||
] : [],
|
||||
));
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user