Page MenuHomePhabricator

Support SVN pre-commit hoooks
ClosedPublic

Authored by epriestley on Dec 2 2013, 10:32 PM.
Tags
None
Referenced Files
Unknown Object (File)
Feb 4 2024, 2:38 AM
Unknown Object (File)
Jan 28 2024, 1:07 AM
Unknown Object (File)
Jan 16 2024, 7:21 PM
Unknown Object (File)
Dec 23 2023, 8:19 AM
Unknown Object (File)
Dec 18 2023, 2:40 PM
Unknown Object (File)
Nov 28 2023, 7:01 PM
Unknown Object (File)
Nov 25 2023, 3:10 PM
Unknown Object (File)
Nov 23 2023, 12:59 PM
Subscribers

Details

Summary

Ref T4189. This adds SVN support, which was a little more messy than I though. Principally, we can not use PHABRICATOR_USER for Subversion, because it strips away the entire environment for "security reasons".

Instead, use --tunnel-user plus svnlook author to figure out the author.

Also fix "ssh://" clone URIs, which needs to be "svn+ssh://".

Test Plan
  • Made SVN commits through the hook.
  • Made Git commits, too, to make sure I didn't break anything.

Diff Detail

Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

epriestley updated this revision to Unknown Object (????).Dec 2 2013, 10:33 PM
  • Fix argument order in an exception message.

cool, just an inline about how it works

scripts/repository/commit_hook.php
27โ€“32

so when does this check get done now?

scripts/repository/commit_hook.php
27โ€“32

We'll never get here if the user doesn't have PUSH -- they'll be rejected as early as possible, before they send any data (in the case of SVN, before they send more than a few frames of data).

(I'll probably put this check back into the HookEngine just to be extra safe, though.)