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

API cleanup #120

Merged
merged 16 commits into from
Oct 26, 2024
Merged

API cleanup #120

merged 16 commits into from
Oct 26, 2024

Conversation

himdel
Copy link
Collaborator

@himdel himdel commented Oct 21, 2024

API refactor to

  • not rely on inheritance - having an explicit list of methods per api should make it clearer what is and isn't available, as well as find unused code
  • not rely on apiPath context - having the api paths spelled out in template strings makes it easier to search methods by url
  • slightly decrease logic in api code - ideally the first api layer is 1:1 with actual endpoints, with helpers above it, but not quite there yet

The interface remains largely unchanged outside of src/api,
auth is moved from BaseAPI to PulpAPI.

The available methods are

  • base.list(url, params?) - does a GET and translates params (sort and page/page_size)
  • base.http.get(url) - does a GET
  • base.http.post(url, data) - does a POST
  • base.http.delete(url) - does a DELETE
  • base.http.put(url, data) - does a PUT
  • base.http.patch(url, data) - does a PATCH

and cleanup more dead code related to is_anonymous, feature flags and hub settings.

(Follow-up with consolidating by plugin and replacing galaxy apis.)

@himdel himdel changed the title handle NotFound without redirecting, API cleanup API cleanup Oct 21, 2024
@himdel himdel marked this pull request as ready for review October 22, 2024 00:13
@gerrod3
Copy link
Contributor

gerrod3 commented Oct 22, 2024

Do we need to merge this first or the config.json change first? They conflict right?

@himdel himdel force-pushed the hub-api branch 2 times, most recently from 6085670 to edae582 Compare October 23, 2024 01:37
@himdel
Copy link
Collaborator Author

himdel commented Oct 23, 2024

Oh, the conflict was just about config., rebased :)

@ZitaNemeckova ZitaNemeckova self-requested a review October 24, 2024 13:13
@ZitaNemeckova ZitaNemeckova merged commit de631f0 into main Oct 26, 2024
2 checks passed
@ZitaNemeckova ZitaNemeckova deleted the hub-api branch October 26, 2024 15:41
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.

3 participants