Skip to content

Cannot update/patch protected branch allowed_to_push/push_access_levels state #2850

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

Closed
nickbroon opened this issue May 1, 2024 · 9 comments

Comments

@nickbroon
Copy link
Contributor

nickbroon commented May 1, 2024

Description of the problem, including code/CLI snippet

Breaking out discussion from this Pull Request thread into its own issue.

The Save and Update mixins for protectedbranch doesn't really work for most of it's attributes, as the PATCH/POST api use different values from those return by the API.

The PATCH api requires to send allowed_to_push attribute, but the returned attribute is push_access_levels, as documented in the API and examples: https://docs.gitlab.com/ee/api/protected_branches.html#example-update-a-push_access_level-record

Expected Behavior

To be able to update the `allowed_to_push' GitLab protected branch state.

Actual Behavior

Using the python-gitlab library to modify the push_access_levels attribute that the object has and then calling .save() appears to do nothing, and the python object has no allowed_to_push attribute to modify.

It does work for the basic .allow_force_push protectedbranch attribute, as added and tested in the original Pull Request.

Specifications

  • python-gitlab version: unreleased (a867c48)
  • API version you are using (v3/v4): v4
  • Gitlab server version (or gitlab.com): gitlab.com
@JohnVillalovos
Copy link
Member

I think historically we have left issues like this up to the user to handle. As I think the idea of python-gitlab is to be a thin wrapper over the GitLab API. The positive to doing this is it makes things easier for the users. The negative is that it adds more work for the volunteer developers of python-gitlab to add this and there are other inconsistencies in the upstream API that would thus wanted to be added. And then the maintenance of this if GitLab changes the API.

This might be a good thing to raise upstream and ask GitLab to resolve this inconsistency.

Interested to get @nejch opinion about this.

@nickbroon Off topic, I was in Edinburgh just two days ago 😄 But now back in the Portland, Oregon area.

Copy link

This issue was marked stale because it has been open 60 days with no activity. Please remove the stale label or comment on this issue. Otherwise, it will be closed in 15 days.

@github-actions github-actions bot added the stale label Oct 12, 2024
@nickbroon
Copy link
Contributor Author

The only work around I can think to allow modifying branch permissions is for the user to GET protectedBranch, implement their own translation code from push_access_levels structure to the allowed_to_push and then POST that.

@github-actions github-actions bot removed the stale label Oct 13, 2024
@nejch
Copy link
Member

nejch commented Oct 14, 2024

The only work around I can think to allow modifying branch permissions is for the user to GET protectedBranch, implement their own translation code from push_access_levels structure to the allowed_to_push and then POST that.

@nickbroon this is what I do, yes, I call an update() on the manager itself, when encountering this.

I'm honestly just afraid we'd deviate from upstream parameters if we were making aliases/mappings between GET and PUT/POST/PATCH endpoints, and then confuse users even more. You wouldn't really be updating push_access_levels if we added a mapping, for example.

I'm assuming we'd be doing this in a generic way and not for every possible endpoint, similar to how we have _create_attrs, _update_attrs etc, but as a dict for the mapping.

Copy link

This issue was marked stale because it has been open 60 days with no activity. Please remove the stale label or comment on this issue. Otherwise, it will be closed in 15 days.

@github-actions github-actions bot added the stale label Dec 14, 2024
@nickbroon
Copy link
Contributor Author

I don't have permissions to remove the 'stale' label. But feel free to add the 'wont-fix' label and close this; I understand the libraries design decision to not translate between non-symmetric GET and PUSH/PATCH rest API in save/update mixins.

@github-actions github-actions bot removed the stale label Dec 15, 2024
Copy link

This issue was marked stale because it has been open 60 days with no activity. Please remove the stale label or comment on this issue. Otherwise, it will be closed in 15 days.

@github-actions github-actions bot added the stale label Feb 14, 2025
@nickbroon
Copy link
Contributor Author

I don't have permissions to remove the 'stale' label. But feel free to add the 'wont-fix' label and close this; I understand the libraries design decision to not translate between non-symmetric GET and PUSH/PATCH rest API in save/update mixins.

@JohnVillalovos
Copy link
Member

I don't have permissions to remove the 'stale' label. But feel free to add the 'wont-fix' label and close this; I understand the libraries design decision to not translate between non-symmetric GET and PUSH/PATCH rest API in save/update mixins.

Thank you. Will do.

@JohnVillalovos JohnVillalovos closed this as not planned Won't fix, can't repro, duplicate, stale Feb 14, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants