Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Jenkins 中文社区
jenkins-cli
提交
ffcdf334
J
jenkins-cli
项目概览
Jenkins 中文社区
/
jenkins-cli
通知
49
Star
8
Fork
1
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
J
jenkins-cli
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
ffcdf334
编写于
6月 28, 2019
作者:
LinuxSuRen
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add filter for plugin list
上级
51e0e599
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
30 addition
and
1 deletion
+30
-1
app/cmd/plugin.go
app/cmd/plugin.go
+30
-1
未找到文件。
app/cmd/plugin.go
浏览文件 @
ffcdf334
...
...
@@ -28,6 +28,8 @@ type PluginOptions struct {
Install
[]
string
Uninstall
string
Filter
[]
string
}
func
init
()
{
...
...
@@ -38,6 +40,7 @@ func init() {
pluginCmd
.
PersistentFlags
()
.
BoolVarP
(
&
pluginOpt
.
List
,
"list"
,
"l"
,
false
,
"Print all the plugins which are installed"
)
pluginCmd
.
PersistentFlags
()
.
StringArrayVarP
(
&
pluginOpt
.
Install
,
"install"
,
""
,
[]
string
{},
"Install a plugin by shortName"
)
pluginCmd
.
PersistentFlags
()
.
StringVarP
(
&
pluginOpt
.
Uninstall
,
"uninstall"
,
""
,
""
,
"Uninstall a plugin by shortName"
)
pluginCmd
.
PersistentFlags
()
.
StringArrayVarP
(
&
pluginOpt
.
Filter
,
"filter"
,
""
,
[]
string
{},
"Filter for the list, like: hasUpdate, downgradable"
)
viper
.
BindPFlag
(
"upload"
,
pluginCmd
.
PersistentFlags
()
.
Lookup
(
"upload"
))
}
...
...
@@ -100,7 +103,7 @@ var pluginCmd = &cobra.Command{
fmt
.
Println
(
"update site updated."
)
}
else
{
contentData
,
_
:=
ioutil
.
ReadAll
(
response
.
Body
)
log
.
Fatal
(
fmt
.
Sprintf
(
"response code is %d, content: "
,
log
.
Fatal
(
fmt
.
Sprintf
(
"response code is %d, content:
%s
"
,
code
,
string
(
contentData
)))
}
})
...
...
@@ -115,8 +118,34 @@ var pluginCmd = &cobra.Command{
}
if
pluginOpt
.
List
{
var
(
filter
bool
hasUpdate
bool
downgradable
bool
)
if
pluginOpt
.
Filter
!=
nil
{
filter
=
true
for
_
,
f
:=
range
pluginOpt
.
Filter
{
switch
f
{
case
"hasUpdate"
:
hasUpdate
=
true
case
"downgradable"
:
downgradable
=
true
}
}
}
if
plugins
,
err
:=
jclient
.
GetPlugins
();
err
==
nil
{
for
i
,
plugin
:=
range
plugins
.
Plugins
{
if
filter
{
if
hasUpdate
&&
!
plugin
.
HasUpdate
{
continue
}
if
downgradable
&&
!
plugin
.
Downgradable
{
continue
}
}
fmt
.
Println
(
"num:"
,
i
,
"name:"
,
plugin
.
ShortName
,
"version:"
,
plugin
.
Version
)
}
}
else
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录