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

GH-6 Mapping the Registration Adobe I/O Events API #8

Merged
merged 6 commits into from
Jun 9, 2021

Conversation

francoisledroff
Copy link
Collaborator

@francoisledroff francoisledroff commented Jun 4, 2021

Issues :

Description :

  • in core
    • added a credentialId in the Workspace
    • added a aio_ prefix for the expected env.vars/properties to avoid any conflicts with other system variables
    • added unit tests
  • in events_mgmt
    • added the RegistrationService (mapped the POST, GET, DELETE Registration API endpoints)

Assert.assertEquals(TEST_VALUE, workspace.getConsumerOrgId());
Assert.assertEquals(TEST_VALUE, workspace.getImsOrgId());
Assert.assertEquals(TEST_VALUE, workspace.getTechnicalAccountId());
Assert.assertEquals(TEST_VALUE, workspace.getMetascopes().iterator().next());
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: It will be better to use a different value for each field. This will make sure that the workspace POJO is managing/returning the correct value for each field.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done

# api_key = your credential API Key (Client ID) as shown in in your Adobe Developer Console workspace
api_key=changeMe
# credential_id = your credential id as shown in your Adobe Developer Console workspace
credential_id=changeMe
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since Console uses "client_id", we should also use that only.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

unfortunately, it's not the clientId, it is yet another id, the (jwt) credential.id associated with your workspace (formerly known as the integrationId)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

got it, thanks!

}
if (StringUtils.isEmpty(workspace.getApiKey())) {
throw new IllegalArgumentException("Workspace is missing an apiKey context");
}
Copy link
Member

@sgera sgera Jun 8, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  1. This validation code is common and can be moved to the Workspace constructor for re-use. wdyt?
  2. Are we following some paradigm on where to place the validation code? Is it inside the Builder class or the constructor of the corresponding model class? Currently, I see validation-related code at both places. We can consider moving all validations inside constructors of model classes only.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  1. No it's not common. Elsewhere the api-key is only needed and set by the IMS auth interceptor. The Registration API is special, it expects it in the header of the registration input model
  2. The expected workspace entries vary from one service to the next, but to follow your advise, for one common validation paradigm, I moved the validation at the service constructor level, wdyt ?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good 👍

*
* @param imsOrgId your Ims Org Id
* @param consumerOrgId Your consumer organization Id
* @param credentialId The integration Id associated with your project/workspace
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this clientId only, right? Lets use the same terminology everywhere.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

no unfortunately, it's not the clientId, it is yet another id, the (jwt) credential.id associated with your workspace (formerly known as the integrationId)

"eventCode='" + eventCode + '\'' +
", label='" + label + '\'' +
", description='" + description + '\'' +
'}';
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Lets add sampleEventTemplate also in this method.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

well it's base64 encoded, so it won't help much in a toString() method

The expected `workspace` entries vary from one service to the next, but to follow your advise, for one common validation paradigm, I moved the validation at the service constructor level, wdyt ?
…void any conflicts with other system variables
@francoisledroff francoisledroff changed the title GH-6 Adding the first RegistrationService methods GH-6 Mapping the Registration Adobe I/O Events API Jun 9, 2021
Copy link
Member

@sgera sgera left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@francoisledroff francoisledroff merged commit 309ed85 into adobe:main Jun 9, 2021
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

Successfully merging this pull request may close these issues.

2 participants