diff options
author | Runxi Yu <me@runxiyu.org> | 2025-02-19 20:22:05 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-02-19 20:22:05 +0800 |
commit | f72cbf6e565d2db2367333afc66acb95f4fdc2bc (patch) | |
tree | 2b1027fe3c3c7f58e178b4cd3a6cca947049d7f1 /ssh_handle_receive_pack.go | |
parent | ssh/recv, schema: Add repos.contrib_requirements (diff) | |
download | forge-f72cbf6e565d2db2367333afc66acb95f4fdc2bc.tar.gz forge-f72cbf6e565d2db2367333afc66acb95f4fdc2bc.tar.zst forge-f72cbf6e565d2db2367333afc66acb95f4fdc2bc.zip |
ssh/recv: Rename access -> direct_access
Diffstat (limited to 'ssh_handle_receive_pack.go')
-rw-r--r-- | ssh_handle_receive_pack.go | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/ssh_handle_receive_pack.go b/ssh_handle_receive_pack.go index 8bc296e..ba83397 100644 --- a/ssh_handle_receive_pack.go +++ b/ssh_handle_receive_pack.go @@ -21,19 +21,15 @@ var pack_to_hook_by_cookie = cmap.Map[string, pack_to_hook_t]{} // ssh_handle_receive_pack handles attempts to push to repos. func ssh_handle_receive_pack(session glider_ssh.Session, pubkey string, repo_identifier string) (err error) { - // Here "access" means direct maintainer access. access=false doesn't - // necessarily mean the push is declined. This decision is delegated to - // the pre-receive hook, which is then handled by git_hooks_handle.go - // while being aware of the refs to be updated. - repo_path, access, contrib_requirements, is_registered_user, err := get_repo_path_perms_from_ssh_path_pubkey(session.Context(), repo_identifier, pubkey) + repo_path, direct_access, contrib_requirements, is_registered_user, err := get_repo_path_perms_from_ssh_path_pubkey(session.Context(), repo_identifier, pubkey) if err != nil { return err } - if !access { + if !direct_access { switch contrib_requirements { case "closed": - if !access { + if !direct_access { return errors.New("You need direct access to push to this repo.") } case "registered_user": @@ -58,7 +54,7 @@ func ssh_handle_receive_pack(session glider_ssh.Session, pubkey string, repo_ide pack_to_hook_by_cookie.Store(cookie, pack_to_hook_t{ session: session, pubkey: pubkey, - direct_access: access, + direct_access: direct_access, repo_path: repo_path, }) defer pack_to_hook_by_cookie.Delete(cookie) |