Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
1cc92dae
Commit
1cc92dae
authored
Oct 22, 2017
by
Guilherme Vieira
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Returns a ssh url for go-get=1
parent
e1122c9f
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
103 additions
and
55 deletions
+103
-55
changelogs/unreleased/go-get-ssh.yml
changelogs/unreleased/go-get-ssh.yml
+5
-0
lib/gitlab/middleware/go.rb
lib/gitlab/middleware/go.rb
+13
-2
spec/lib/gitlab/middleware/go_spec.rb
spec/lib/gitlab/middleware/go_spec.rb
+85
-53
No files found.
changelogs/unreleased/go-get-ssh.yml
0 → 100644
View file @
1cc92dae
---
title
:
Returns a ssh url for go-get=1
merge_request
:
14990
author
:
gvieira37
type
:
fixed
lib/gitlab/middleware/go.rb
View file @
1cc92dae
...
@@ -4,6 +4,7 @@ module Gitlab
...
@@ -4,6 +4,7 @@ module Gitlab
module
Middleware
module
Middleware
class
Go
class
Go
include
ActionView
::
Helpers
::
TagHelper
include
ActionView
::
Helpers
::
TagHelper
include
Gitlab
::
CurrentSettings
PROJECT_PATH_REGEX
=
%r{
\A
(
#{
Gitlab
::
PathRegex
.
full_namespace_route_regex
}
/
#{
Gitlab
::
PathRegex
.
project_route_regex
}
)/}
.
freeze
PROJECT_PATH_REGEX
=
%r{
\A
(
#{
Gitlab
::
PathRegex
.
full_namespace_route_regex
}
/
#{
Gitlab
::
PathRegex
.
project_route_regex
}
)/}
.
freeze
...
@@ -37,10 +38,20 @@ module Gitlab
...
@@ -37,10 +38,20 @@ module Gitlab
end
end
def
go_body
(
path
)
def
go_body
(
path
)
project_url
=
URI
.
join
(
Gitlab
.
config
.
gitlab
.
url
,
path
)
config
=
Gitlab
.
config
project_url
=
URI
.
join
(
config
.
gitlab
.
url
,
path
)
import_prefix
=
strip_url
(
project_url
.
to_s
)
import_prefix
=
strip_url
(
project_url
.
to_s
)
meta_tag
=
tag
:meta
,
name:
'go-import'
,
content:
"
#{
import_prefix
}
git
#{
project_url
}
.git"
repository_url
=
case
current_application_settings
.
enabled_git_access_protocol
when
'ssh'
shell
=
config
.
gitlab_shell
port
=
":
#{
shell
.
ssh_port
}
"
unless
shell
.
ssh_port
==
22
"ssh://
#{
shell
.
ssh_user
}
@
#{
shell
.
ssh_host
}#{
port
}
/
#{
path
}
.git"
when
'http'
,
nil
"
#{
project_url
}
.git"
end
meta_tag
=
tag
:meta
,
name:
'go-import'
,
content:
"
#{
import_prefix
}
git
#{
repository_url
}
"
head_tag
=
content_tag
:head
,
meta_tag
head_tag
=
content_tag
:head
,
meta_tag
content_tag
:html
,
head_tag
content_tag
:html
,
head_tag
end
end
...
...
spec/lib/gitlab/middleware/go_spec.rb
View file @
1cc92dae
...
@@ -17,6 +17,7 @@ describe Gitlab::Middleware::Go do
...
@@ -17,6 +17,7 @@ describe Gitlab::Middleware::Go do
describe
'when go-get=1'
do
describe
'when go-get=1'
do
let
(
:current_user
)
{
nil
}
let
(
:current_user
)
{
nil
}
shared_examples
'go-get=1'
do
|
enabled_protocol
:|
context
'with simple 2-segment project path'
do
context
'with simple 2-segment project path'
do
let!
(
:project
)
{
create
(
:project
,
:private
)
}
let!
(
:project
)
{
create
(
:project
,
:private
)
}
...
@@ -24,7 +25,7 @@ describe Gitlab::Middleware::Go do
...
@@ -24,7 +25,7 @@ describe Gitlab::Middleware::Go do
let
(
:path
)
{
"
#{
project
.
full_path
}
/subpackage"
}
let
(
:path
)
{
"
#{
project
.
full_path
}
/subpackage"
}
it
'returns the full project path'
do
it
'returns the full project path'
do
expect_response_with_path
(
go
,
project
.
full_path
)
expect_response_with_path
(
go
,
enabled_protocol
,
project
.
full_path
)
end
end
end
end
...
@@ -32,7 +33,7 @@ describe Gitlab::Middleware::Go do
...
@@ -32,7 +33,7 @@ describe Gitlab::Middleware::Go do
let
(
:path
)
{
project
.
full_path
}
let
(
:path
)
{
project
.
full_path
}
it
'returns the full project path'
do
it
'returns the full project path'
do
expect_response_with_path
(
go
,
project
.
full_path
)
expect_response_with_path
(
go
,
enabled_protocol
,
project
.
full_path
)
end
end
end
end
end
end
...
@@ -44,7 +45,7 @@ describe Gitlab::Middleware::Go do
...
@@ -44,7 +45,7 @@ describe Gitlab::Middleware::Go do
shared_examples
'a nested project'
do
shared_examples
'a nested project'
do
context
'when the project is public'
do
context
'when the project is public'
do
it
'returns the full project path'
do
it
'returns the full project path'
do
expect_response_with_path
(
go
,
project
.
full_path
)
expect_response_with_path
(
go
,
enabled_protocol
,
project
.
full_path
)
end
end
end
end
...
@@ -61,13 +62,13 @@ describe Gitlab::Middleware::Go do
...
@@ -61,13 +62,13 @@ describe Gitlab::Middleware::Go do
end
end
it
'returns the full project path'
do
it
'returns the full project path'
do
expect_response_with_path
(
go
,
project
.
full_path
)
expect_response_with_path
(
go
,
enabled_protocol
,
project
.
full_path
)
end
end
end
end
context
'without access to the project'
do
context
'without access to the project'
do
it
'returns the 2-segment group path'
do
it
'returns the 2-segment group path'
do
expect_response_with_path
(
go
,
group
.
full_path
)
expect_response_with_path
(
go
,
enabled_protocol
,
group
.
full_path
)
end
end
end
end
end
end
...
@@ -103,6 +104,31 @@ describe Gitlab::Middleware::Go do
...
@@ -103,6 +104,31 @@ describe Gitlab::Middleware::Go do
end
end
end
end
context
'with SSH disabled'
do
before
do
stub_application_setting
(
enabled_git_access_protocol:
'http'
)
end
include_examples
'go-get=1'
,
enabled_protocol: :http
end
context
'with HTTP disabled'
do
before
do
stub_application_setting
(
enabled_git_access_protocol:
'ssh'
)
end
include_examples
'go-get=1'
,
enabled_protocol: :ssh
end
context
'with nothing disabled'
do
before
do
stub_application_setting
(
enabled_git_access_protocol:
nil
)
end
include_examples
'go-get=1'
,
enabled_protocol:
nil
end
end
def
go
def
go
env
=
{
env
=
{
'rack.input'
=>
''
,
'rack.input'
=>
''
,
...
@@ -113,10 +139,16 @@ describe Gitlab::Middleware::Go do
...
@@ -113,10 +139,16 @@ describe Gitlab::Middleware::Go do
middleware
.
call
(
env
)
middleware
.
call
(
env
)
end
end
def
expect_response_with_path
(
response
,
path
)
def
expect_response_with_path
(
response
,
protocol
,
path
)
repository_url
=
case
protocol
when
:ssh
"ssh://git@
#{
Gitlab
.
config
.
gitlab
.
host
}
/
#{
path
}
.git"
when
:http
,
nil
"http://
#{
Gitlab
.
config
.
gitlab
.
host
}
/
#{
path
}
.git"
end
expect
(
response
[
0
]).
to
eq
(
200
)
expect
(
response
[
0
]).
to
eq
(
200
)
expect
(
response
[
1
][
'Content-Type'
]).
to
eq
(
'text/html'
)
expect
(
response
[
1
][
'Content-Type'
]).
to
eq
(
'text/html'
)
expected_body
=
%{<html><head><meta name="go-import" content="#{Gitlab.config.gitlab.host}/#{path} git
http://#{Gitlab.config.gitlab.host}/#{path}.git
" /></head></html>}
expected_body
=
%{<html><head><meta name="go-import" content="#{Gitlab.config.gitlab.host}/#{path} git
#{repository_url}
" /></head></html>}
expect
(
response
[
2
].
body
).
to
eq
([
expected_body
])
expect
(
response
[
2
].
body
).
to
eq
([
expected_body
])
end
end
end
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment