Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

App registration for the existing user fails due to non-nillable RegistrationRequest.User field #48

Open
vkorn opened this issue Jan 28, 2021 · 7 comments

Comments

@vkorn
Copy link

vkorn commented Jan 28, 2021

When trying to create a new registration it's not possible set user to nil, resulting in default user's data being sent to /api/user/registration causing Fusion to treat this request as Create user+Register

{
	"generateAuthenticationToken": false,
	"registration": {
		"applicationId": "f252fdca-5cc6-42b9-b3d2-660008c08887",
		"roles": ["owner"],
		"verified": true
	},
	"sendSetPasswordEmail": false,
	"skipRegistrationVerification": false,
	"skipVerification": false,
	"user": {
		"passwordChangeRequired": false,
		"twoFactorEnabled": false,
		"verified": false,
		"active": false
	}
}

Since it's possible to access all rc client methods from outside the package, workaround is simple: just redefine structure with User *fusionauth.User json:"user,omitempty"`` and copy-paste Register call. But it would be nice to have this fixed in the package.

Thanks for the awesome product, btw.

@mooreds
Copy link
Contributor

mooreds commented Jan 28, 2021

Hmmm. Based on my limited understanding of golang, it looks like we'd want to set the type of the User field in the RegistrationRequest to *User so it could be nillable and thus omitted when optionall. I think that would happen here: https://github.com/FusionAuth/fusionauth-client-builder/blob/master/src/main/client/_macros.ftl#L36 but would need to test it more (because I think we'd need to dereference the pointer elsewhere).

I would imagine this would be an issue for other request structs which have optional objects nested, such as ApplicationRequest.

@Tintwo
Copy link

Tintwo commented Feb 9, 2021

I have exactly the same problem as vkorn.
Method "Register" has 2 modes : user+registration or registration-only. But impossible to use the 2nd one, the client try to create an user (which is nil because we don't want to create an user but use an existing user id)

When I look here :

User User `json:"user,omitempty"`

we can see this field shouldn't appear in the generated JSON body if not provided when we create the RegistrationObject (but apparently it does).

@mooreds
Copy link
Contributor

mooreds commented Feb 11, 2021

Does the workaround mentioned above work for you @Tintwo ?

@Tintwo
Copy link

Tintwo commented Feb 12, 2021

For now I dupplicate the Register method and change the RegistrationRequest by a custom one (without the user). It's a pretty similar workaround (dupplicate code :/)

@benkloester
Copy link

@mooreds we have run into this issue as well. We are pursuing the workaround for now but would be really keen to see the root cause addressed.

Also keen to understand whether we will run into the issue raised in #1576 or if the workaround avoids that problem.

Should we lodge a support ticket re this issue?

@robotdan
Copy link
Member

@mooreds or @benkloester is this a simple change to how we are building the domain objects in go so that the User reference in RegistrationRequest is *User ?

User User `json:"user,omitempty"`

@benkloester
Copy link

That go-client is generated code, produced by fusionauth-client-builder, so the fix would really need to be in the builder or it will get clobbered.

From the answer he gave above it seems like @mooreds had an idea of where one of the necessary changes would be, but there was a bit more to be figured out and there was also a need to test any such change.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants