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
0
Merge Requests
0
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
Boxiang Sun
gitlab-ce
Commits
e9d94451
Commit
e9d94451
authored
Feb 21, 2017
by
Shinya Maeda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Add new parameters for Pipeline API
- Expand PipelinesFinder functions
parent
9fd1a35f
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
104 additions
and
26 deletions
+104
-26
app/controllers/projects/pipelines_controller.rb
app/controllers/projects/pipelines_controller.rb
+5
-5
app/finders/pipelines_finder.rb
app/finders/pipelines_finder.rb
+88
-20
lib/api/pipelines.rb
lib/api/pipelines.rb
+11
-1
No files found.
app/controllers/projects/pipelines_controller.rb
View file @
e9d94451
...
...
@@ -9,19 +9,19 @@ class Projects::PipelinesController < Projects::ApplicationController
def
index
@scope
=
params
[
:scope
]
@pipelines
=
PipelinesFinder
.
new
(
project
)
.
execute
(
scope:
@scope
)
.
new
(
project
,
scope:
@scope
)
.
execute
.
page
(
params
[
:page
])
.
per
(
30
)
@running_count
=
PipelinesFinder
.
new
(
project
).
execute
(
scope:
'running'
)
.
count
.
new
(
project
,
scope:
'running'
).
execute
.
count
@pending_count
=
PipelinesFinder
.
new
(
project
).
execute
(
scope:
'pending'
)
.
count
.
new
(
project
,
scope:
'pending'
).
execute
.
count
@finished_count
=
PipelinesFinder
.
new
(
project
).
execute
(
scope:
'finished'
)
.
count
.
new
(
project
,
scope:
'finished'
).
execute
.
count
@pipelines_count
=
PipelinesFinder
.
new
(
project
).
execute
.
count
...
...
app/finders/pipelines_finder.rb
View file @
e9d94451
class
PipelinesFinder
attr_reader
:project
,
:pipelines
attr_reader
:project
,
:pipelines
,
:params
def
initialize
(
project
)
def
initialize
(
project
,
params
=
{}
)
@project
=
project
@pipelines
=
project
.
pipelines
@params
=
params
end
def
execute
(
scope:
nil
)
scoped_pipelines
=
case
scope
def
execute
items
=
pipelines
items
=
by_scope
(
items
)
items
=
by_status
(
items
)
items
=
by_ref
(
items
)
items
=
by_user
(
items
)
items
=
by_duration
(
items
)
items
=
by_yaml_error
(
items
)
order_and_sort
(
items
)
end
private
def
ids_for_ref
(
refs
)
pipelines
.
where
(
ref:
refs
).
group
(
:ref
).
select
(
'max(id)'
)
end
def
from_ids
(
ids
)
pipelines
.
unscoped
.
where
(
id:
ids
)
end
def
branches
project
.
repository
.
branch_names
end
def
tags
project
.
repository
.
tag_names
end
def
by_scope
(
items
)
case
params
[
:scope
]
when
'running'
pipeline
s
.
running
item
s
.
running
when
'pending'
pipeline
s
.
pending
item
s
.
pending
when
'finished'
pipeline
s
.
finished
item
s
.
finished
when
'branches'
from_ids
(
ids_for_ref
(
branches
))
when
'tags'
from_ids
(
ids_for_ref
(
tags
))
else
pipelines
items
end
end
scoped_pipelines
.
order
(
id: :desc
)
def
by_status
(
items
)
case
params
[
:status
]
when
'running'
items
.
running
when
'pending'
items
.
pending
when
'success'
items
.
success
when
'failed'
items
.
failed
when
'canceled'
items
.
canceled
when
'skipped'
items
.
skipped
else
items
end
end
private
def
by_ref
(
items
)
if
params
[
:ref
].
present?
items
.
where
(
ref:
params
[
:ref
])
else
items
end
end
def
ids_for_ref
(
refs
)
pipelines
.
where
(
ref:
refs
).
group
(
:ref
).
select
(
'max(id)'
)
def
by_user
(
items
)
if
params
[
:user_id
].
present?
items
.
where
(
user_id:
params
[
:user_id
])
else
items
end
end
def
from_ids
(
ids
)
pipelines
.
unscoped
.
where
(
id:
ids
)
def
by_duration
(
items
)
if
params
[
:duration
].
present?
items
.
where
(
"duration > ?"
,
params
[
:duration
])
else
items
end
end
def
branches
project
.
repository
.
branch_names
def
by_yaml_error
(
items
)
if
params
[
:yaml_error
].
present?
&&
params
[
:yaml_error
]
items
.
where
(
"yaml_errors IS NOT NULL"
)
else
items
end
end
def
tags
project
.
repository
.
tag_names
def
order_and_sort
(
items
)
if
params
[
:order_by
].
present?
&&
params
[
:sort
].
present?
items
.
order
(
"
#{
params
[
:order_by
]
}
#{
params
[
:sort
]
}
"
)
else
items
.
order
(
id: :desc
)
end
end
end
lib/api/pipelines.rb
View file @
e9d94451
...
...
@@ -16,11 +16,21 @@ module API
use
:pagination
optional
:scope
,
type:
String
,
values:
%w(running branches tags)
,
desc:
'Either running, branches, or tags'
optional
:status
,
type:
String
,
values:
[
'running'
,
'pending'
,
'success'
,
'failed'
,
'canceled'
,
'skipped'
],
desc:
'Pipeline Status'
optional
:ref
,
type:
String
,
desc:
'Pipeline Ref'
optional
:duration
,
type:
Integer
,
desc:
'Greater than the specified duration'
optional
:yaml_error
,
type:
Boolean
,
desc:
'If true, returns only yaml error pipelines.'
optional
:user_id
,
type:
String
,
desc:
'User who executed pipelines'
optional
:order_by
,
type:
String
,
values:
[
'id'
,
'status'
,
'ref'
,
'user_id'
,
'started_at'
,
'finished_at'
,
'created_at'
,
'updated_at'
],
default:
'id'
,
desc:
'Return issues ordered by `created_at` or `updated_at` fields.'
optional
:sort
,
type:
String
,
values:
[
'asc'
,
'desc'
],
default:
'desc'
,
desc:
'Return pipelines sorted in `asc` or `desc` order.'
end
get
':id/pipelines'
do
authorize!
:read_pipeline
,
user_project
pipelines
=
PipelinesFinder
.
new
(
user_project
).
execute
(
scope:
params
[
:scope
])
pipelines
=
PipelinesFinder
.
new
(
user_project
,
params
).
execute
(
scope:
params
[
:scope
])
present
paginate
(
pipelines
),
with:
Entities
::
PipelineBasic
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