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

Fix #2265: Refactor SubjectAccessReview API #2400

Merged
merged 2 commits into from Aug 24, 2020

Conversation

rohanKanojia
Copy link
Member

Fixes #2265

  • Added new entrypoint authorization() into DSL which only allows create() operations
  • Removed old subjectAccessReviewAuth() API

This should also fix #2191

Description

Type of change

  • Bug fix (non-breaking change which fixes an issue)
  • Feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to change
  • Chore (non-breaking change which doesn't affect codebase;
    test, version modification, documentation, etc.)

Checklist

  • Code contributed by me aligns with current project license: Apache 2.0
  • I Added CHANGELOG entry regarding this change
  • I have implemented unit tests to cover my changes
  • I have added/updated the javadocs and other documentation accordingly
  • No new bugs, code smells, etc. in SonarCloud report
  • I tested my code in Kubernetes
  • I tested my code in OpenShift

@rohanKanojia rohanKanojia force-pushed the pr/issue2265 branch 3 times, most recently from a8d52a9 to f59bbb8 Compare August 19, 2020 06:32
Comment on lines 39 to 41
this.subjectAccessApiGroupName = apiGroupName;
this.subjectAccessApiGroupVersion = apiGroupVersion;
this.plural = plural;
Copy link
Member

Choose a reason for hiding this comment

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

This is redundant, previous statement already takes care of this. I think you can also declare the fields final.


public CreateOnlyResourceOperationsImpl(OkHttpClient client, Config config, String apiGroupName, String apiGroupVersion, String plural, Class<T> subjectAccessRequestClass) {
this(new OperationContext().withOkhttpClient(client).withConfig(config), apiGroupName, apiGroupVersion, plural, subjectAccessRequestClass);
this.subjectAccessRequestClass = subjectAccessRequestClass;
Copy link
Member

Choose a reason for hiding this comment

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

+ Added new entrypoint authorization() into DSL which only allows create() operations
+ Removed old subjectAccessReviewAuth() API

This should also fix fabric8io#2191
TokenReview also are create only resources like SubjectAccess* operations in
which same object is returned in response with status object modified. It's
support can be added easily with current support added for SubjectAccessReview.
@sonarcloud
Copy link

sonarcloud bot commented Aug 24, 2020

SonarCloud Quality Gate failed.

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities (and Security Hotspot 0 Security Hotspots to review)
Code Smell A 2 Code Smells

3.5% 3.5% Coverage
5.0% 5.0% Duplication

@manusa
Copy link
Member

manusa commented Aug 24, 2020

[merge]

@fusesource-ci fusesource-ci merged commit 5eebe59 into fabric8io:master Aug 24, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
4 participants