Skip to content
GitLab
菜单
为什么选择 GitLab
定价
联系销售
探索
为什么选择 GitLab
定价
联系销售
探索
登录
获取免费试用
主导航
搜索或转到…
项目
GitLab
管理
动态
成员
标记
计划
议题
议题看板
里程碑
迭代
需求
代码
合并请求
仓库
分支
提交
标签
仓库图
比较修订版本
代码片段
锁定的文件
构建
流水线
作业
流水线计划
测试用例
产物
部署
发布
Package registry
Container registry
模型注册表
运维
环境
Terraform 模块
监控
事件
服务台
分析
价值流分析
贡献者分析
CI/CD 分析
仓库分析
代码评审分析
议题分析
洞察
模型实验
效能分析
帮助
帮助
支持
GitLab 文档
比较 GitLab 各版本
社区论坛
为极狐GitLab 提交贡献
提交反馈
隐私声明
快捷键
?
新增功能
4
代码片段
群组
项目
显示更多面包屑
gitlab-cn
GitLab
提交
d67a2497
未验证
提交
d67a2497
编辑于
6 years ago
作者:
Ash McKenzie
浏览文件
操作
下载
补丁
差异文件
New geo/proxy_git_push_ssh routes
上级
9decb78c
No related branches found
No related tags found
无相关合并请求
变更
3
隐藏空白变更内容
行内
左右并排
显示
3 个更改的文件
ee/lib/api/geo.rb
+47
-0
47 个添加, 0 个删除
ee/lib/api/geo.rb
ee/lib/ee/gitlab/middleware/read_only/controller.rb
+9
-1
9 个添加, 1 个删除
ee/lib/ee/gitlab/middleware/read_only/controller.rb
ee/spec/requests/api/geo_spec.rb
+116
-1
116 个添加, 1 个删除
ee/spec/requests/api/geo_spec.rb
有
172 个添加
和
2 个删除
ee/lib/api/geo.rb
+
47
−
0
浏览文件 @
d67a2497
require
'base64'
module
API
module
API
class
Geo
<
Grape
::
API
class
Geo
<
Grape
::
API
resource
:geo
do
resource
:geo
do
...
@@ -40,6 +42,51 @@ class Geo < Grape::API
...
@@ -40,6 +42,51 @@ class Geo < Grape::API
render_validation_error!
(
db_status
)
render_validation_error!
(
db_status
)
end
end
end
end
# git push over SSH secondary -> primary related proxying logic
#
resource
'proxy_git_push_ssh'
do
format
:json
# Responsible for making HTTP GET /repo.git/info/refs?service=git-receive-pack
# request *from* secondary gitlab-shell to primary
#
params
do
requires
:secret_token
,
type:
String
requires
:data
,
type:
Hash
do
requires
:gl_id
,
type:
String
requires
:primary_repo
,
type:
String
end
end
post
'info_refs'
do
authenticate_by_gitlab_shell_token!
params
.
delete
(
:secret_token
)
resp
=
Gitlab
::
Geo
::
GitPushSSHProxy
.
new
(
params
[
'data'
]).
info_refs
status
(
resp
.
code
.
to_i
)
{
status:
true
,
message:
nil
,
result:
Base64
.
encode64
(
resp
.
body
.
to_s
)
}
end
# Responsible for making HTTP POST /repo.git/git-receive-pack
# request *from* secondary gitlab-shell to primary
#
params
do
requires
:secret_token
,
type:
String
requires
:data
,
type:
Hash
do
requires
:gl_id
,
type:
String
requires
:primary_repo
,
type:
String
end
requires
:output
,
type:
String
,
desc:
'Output from git-receive-pack'
end
post
'push'
do
authenticate_by_gitlab_shell_token!
params
.
delete
(
:secret_token
)
resp
=
Gitlab
::
Geo
::
GitPushSSHProxy
.
new
(
params
[
'data'
]).
push
(
Base64
.
decode64
(
params
[
'output'
]))
status
(
resp
.
code
.
to_i
)
{
status:
true
,
message:
nil
,
result:
Base64
.
encode64
(
resp
.
body
.
to_s
)
}
end
end
end
end
end
end
end
end
此差异已折叠。
点击以展开。
ee/lib/ee/gitlab/middleware/read_only/controller.rb
+
9
−
1
浏览文件 @
d67a2497
...
@@ -17,7 +17,7 @@ module Controller
...
@@ -17,7 +17,7 @@ module Controller
override
:whitelisted_routes
override
:whitelisted_routes
def
whitelisted_routes
def
whitelisted_routes
super
||
geo_node_update_route
super
||
geo_node_update_route
||
geo_proxy_git_push_ssh_route
end
end
def
geo_node_update_route
def
geo_node_update_route
...
@@ -33,6 +33,14 @@ def geo_node_update_route
...
@@ -33,6 +33,14 @@ def geo_node_update_route
WHITELISTED_GEO_ROUTES_TRACKING_DB
[
controller
]
&
.
include?
(
action
)
WHITELISTED_GEO_ROUTES_TRACKING_DB
[
controller
]
&
.
include?
(
action
)
end
end
end
end
def
geo_proxy_git_push_ssh_route
routes
=
::
Gitlab
::
Middleware
::
ReadOnly
::
API_VERSIONS
.
map
do
|
version
|
[
"/api/v
#{
version
}
/geo/proxy_git_push_ssh/info_refs"
,
"/api/v
#{
version
}
/geo/proxy_git_push_ssh/push"
]
end
routes
.
flatten
.
include?
(
request
.
path
)
end
end
end
end
end
end
end
...
...
此差异已折叠。
点击以展开。
ee/spec/requests/api/geo_spec.rb
+
116
−
1
浏览文件 @
d67a2497
...
@@ -25,7 +25,7 @@
...
@@ -25,7 +25,7 @@
end
end
end
end
describe
'/geo/transfers'
do
describe
'
GET
/geo/transfers'
do
before
do
before
do
stub_current_geo_node
(
secondary_node
)
stub_current_geo_node
(
secondary_node
)
end
end
...
@@ -287,4 +287,119 @@
...
@@ -287,4 +287,119 @@
it_behaves_like
'with terms enforced'
it_behaves_like
'with terms enforced'
end
end
end
end
describe
'/geo/proxy_git_push_ssh'
do
let
(
:secret_token
)
{
Gitlab
::
Shell
.
secret_token
}
let
(
:data
)
{
{
primary_repo:
'http://localhost:3001/testuser/repo.git'
,
gl_id:
'key-1'
,
gl_username:
'testuser'
}
}
before
do
stub_current_geo_node
(
secondary_node
)
end
describe
'POST /geo/proxy_git_push_ssh/info_refs'
do
context
'with all required params missing'
do
it
'responds with 400'
do
post
api
(
'/geo/proxy_git_push_ssh/info_refs'
),
nil
expect
(
response
).
to
have_gitlab_http_status
(
400
)
expect
(
json_response
[
'error'
]).
to
eql
(
'secret_token is missing, data is missing, data[gl_id] is missing, data[primary_repo] is missing'
)
end
end
context
'with all required params'
do
let
(
:git_push_ssh_proxy
)
{
double
(
Gitlab
::
Geo
::
GitPushSSHProxy
)
}
before
do
allow
(
Gitlab
::
Geo
::
GitPushSSHProxy
).
to
receive
(
:new
).
with
(
data
).
and_return
(
git_push_ssh_proxy
)
end
context
'with an invalid secret_token'
do
it
'responds with 401'
do
post
(
api
(
'/geo/proxy_git_push_ssh/info_refs'
),
{
secret_token:
'invalid'
,
data:
data
})
expect
(
response
).
to
have_gitlab_http_status
(
401
)
expect
(
json_response
[
'error'
]).
to
be_nil
end
end
context
'where an exception occurs'
do
it
'responds with 500'
do
expect
(
git_push_ssh_proxy
).
to
receive
(
:info_refs
).
and_raise
(
'deliberate exception raised'
)
post
api
(
'/geo/proxy_git_push_ssh/info_refs'
),
{
secret_token:
secret_token
,
data:
data
}
expect
(
response
).
to
have_gitlab_http_status
(
500
)
expect
(
json_response
[
'message'
]).
to
include
(
'RuntimeError (deliberate exception raised)'
)
expect
(
json_response
[
'result'
]).
to
be_nil
end
end
context
'with a valid secret token'
do
let
(
:http_response
)
{
double
(
Net
::
HTTPResponse
,
code:
200
,
body:
'something here'
)
}
it
'responds with 200'
do
expect
(
git_push_ssh_proxy
).
to
receive
(
:info_refs
).
and_return
(
http_response
)
post
api
(
'/geo/proxy_git_push_ssh/info_refs'
),
{
secret_token:
secret_token
,
data:
data
}
expect
(
response
).
to
have_gitlab_http_status
(
200
)
expect
(
json_response
[
'result'
]).
to
eql
(
'something+here'
)
end
end
end
end
describe
'POST /geo/proxy_git_push_ssh/push'
do
context
'with all required params missing'
do
it
'responds with 400'
do
post
api
(
'/geo/proxy_git_push_ssh/push'
),
nil
expect
(
response
).
to
have_gitlab_http_status
(
400
)
expect
(
json_response
[
'error'
]).
to
eql
(
'secret_token is missing, data is missing, data[gl_id] is missing, data[primary_repo] is missing, output is missing'
)
end
end
context
'with all required params'
do
let
(
:output
)
{
'output text'
}
let
(
:git_push_ssh_proxy
)
{
double
(
Gitlab
::
Geo
::
GitPushSSHProxy
)
}
before
do
allow
(
Gitlab
::
Geo
::
GitPushSSHProxy
).
to
receive
(
:new
).
with
(
data
).
and_return
(
git_push_ssh_proxy
)
end
context
'with an invalid secret_token'
do
it
'responds with 401'
do
post
(
api
(
'/geo/proxy_git_push_ssh/push'
),
{
secret_token:
'invalid'
,
data:
data
,
output:
output
})
expect
(
response
).
to
have_gitlab_http_status
(
401
)
expect
(
json_response
[
'error'
]).
to
be_nil
end
end
context
'where an exception occurs'
do
it
'responds with 500'
do
expect
(
git_push_ssh_proxy
).
to
receive
(
:push
).
and_raise
(
'deliberate exception raised'
)
post
api
(
'/geo/proxy_git_push_ssh/push'
),
{
secret_token:
secret_token
,
data:
data
,
output:
output
}
expect
(
response
).
to
have_gitlab_http_status
(
500
)
expect
(
json_response
[
'message'
]).
to
include
(
'RuntimeError (deliberate exception raised)'
)
expect
(
json_response
[
'result'
]).
to
be_nil
end
end
context
'with a valid secret token'
do
let
(
:http_response
)
{
double
(
Net
::
HTTPResponse
,
code:
201
,
body:
'something here'
)
}
it
'responds with 201'
do
expect
(
git_push_ssh_proxy
).
to
receive
(
:push
).
with
(
output
).
and_return
(
http_response
)
post
api
(
'/geo/proxy_git_push_ssh/push'
),
{
secret_token:
secret_token
,
data:
data
,
output:
output
}
expect
(
response
).
to
have_gitlab_http_status
(
201
)
expect
(
json_response
[
'result'
]).
to
eql
(
'something+here'
)
end
end
end
end
end
end
end
此差异已折叠。
点击以展开。
预览
0%
加载中
请重试
或
添加新附件
.
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
保存评论
取消
想要评论请
注册
或
登录