Page MenuHomePhabricator

Accept and route VCS HTTP requests
ClosedPublic

Authored by epriestley on Oct 26 2013, 3:03 PM.
Tags
None
Referenced Files
F14054794: D7417.diff
Sat, Nov 16, 4:57 AM
F14043182: D7417.diff
Tue, Nov 12, 8:04 AM
F14033199: D7417.id16747.diff
Sat, Nov 9, 5:04 PM
F14033197: D7417.id16709.diff
Sat, Nov 9, 5:03 PM
F14033196: D7417.id.diff
Sat, Nov 9, 5:03 PM
F14026139: D7417.diff
Thu, Nov 7, 11:48 PM
F14020415: D7417.diff
Wed, Nov 6, 12:31 AM
F13998821: D7417.id.diff
Thu, Oct 24, 11:20 AM
Subscribers

Details

Reviewers
hach-que
btrahan
Maniphest Tasks
Restricted Maniphest Task
Commits
Restricted Diffusion Commit
rPc7f23f522a79: Accept and route VCS HTTP requests
Summary

Mostly ripped from D7391, with some changes:

  • Serve repositories at /diffusion/X/, with no special /git/ or /serve/ URI component.
    • This requires a little bit of magic, but I got the magic working for Git, Mercurial and SVN, and it seems reasonable.
    • I think having one URI for everything will make it easier for users to understand.
    • One downside is that git will clone into X by default, but I think that's not a big deal, and we can work around that in the future easily enough.
  • Accept HTTP requests for Git, SVN and Mercurial repositories.
  • Auth logic is a little different in order to be more consistent with how other things work.
  • Instead of AphrontBasicAuthResponse, added "VCSResponse". Mercurial can print strings we send it on the CLI if we're careful, so support that. I did a fair amount of digging and didn't have any luck with git or svn.
  • Commands we don't know about are assumed to require "Push" capability by default.

No actual VCS data going over the wire yet.

Test Plan

Ran a bunch of stuff like this:

$ hg clone http://local.aphront.com:8080/diffusion/P/
abort: HTTP Error 403: This repository is not available over HTTP.

...and got pretty reasonable-seeming errors in all cases. All this can do is produce errors for now.

Diff Detail

Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

I could do git clone http://phabricator.local/diffusion/TEST/ and get Authentiation Failed. Setting the view policy to public gives me "not valid: is this a git repository?" which is expected given that there's no commands behind any of this.