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
d5b673da
Commit
d5b673da
authored
Nov 17, 2016
by
James Lopez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
more refactoring and added some auth checks
parent
9c995725
Changes
14
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
670 additions
and
813 deletions
+670
-813
app/controllers/projects/cycle_analytics/events_controller.rb
...controllers/projects/cycle_analytics/events_controller.rb
+1
-1
db/schema.rb
db/schema.rb
+507
-687
lib/gitlab/cycle_analytics/base_event.rb
lib/gitlab/cycle_analytics/base_event.rb
+23
-13
lib/gitlab/cycle_analytics/code_event.rb
lib/gitlab/cycle_analytics/code_event.rb
+20
-13
lib/gitlab/cycle_analytics/event_config.rb
lib/gitlab/cycle_analytics/event_config.rb
+0
-16
lib/gitlab/cycle_analytics/events.rb
lib/gitlab/cycle_analytics/events.rb
+8
-8
lib/gitlab/cycle_analytics/events_query.rb
lib/gitlab/cycle_analytics/events_query.rb
+1
-1
lib/gitlab/cycle_analytics/issue_event.rb
lib/gitlab/cycle_analytics/issue_event.rb
+19
-11
lib/gitlab/cycle_analytics/plan_event.rb
lib/gitlab/cycle_analytics/plan_event.rb
+27
-27
lib/gitlab/cycle_analytics/production_event.rb
lib/gitlab/cycle_analytics/production_event.rb
+18
-10
lib/gitlab/cycle_analytics/review_event.rb
lib/gitlab/cycle_analytics/review_event.rb
+19
-11
lib/gitlab/cycle_analytics/staging_event.rb
lib/gitlab/cycle_analytics/staging_event.rb
+13
-7
lib/gitlab/cycle_analytics/test_event.rb
lib/gitlab/cycle_analytics/test_event.rb
+13
-7
spec/lib/gitlab/cycle_analytics/events_spec.rb
spec/lib/gitlab/cycle_analytics/events_spec.rb
+1
-1
No files found.
app/controllers/projects/cycle_analytics/events_controller.rb
View file @
d5b673da
...
...
@@ -50,7 +50,7 @@ module Projects
end
def
options
@options
||=
{
from:
start_date
(
events_params
)
}
@options
||=
{
from:
start_date
(
events_params
)
,
current_user:
current_user
}
end
def
events_params
...
...
db/schema.rb
View file @
d5b673da
This diff is collapsed.
Click to expand it.
lib/gitlab/cycle_analytics/base_event.rb
View file @
d5b673da
module
Gitlab
module
CycleAnalytics
class
BaseEvent
extend
MetricsTables
include
MetricsTables
class
<<
self
attr_reader
:stage
,
:start_time_attrs
,
:end_time_attrs
,
:projections
attr_reader
:stage
,
:start_time_attrs
,
:end_time_attrs
,
:projections
,
:query
def
order
@order
||
@start_time_attrs
def
initialize
(
project
:,
options
:)
@query
=
EventsQuery
.
new
(
project:
project
,
options:
options
)
@project
=
project
@options
=
options
end
def
fetch
@query
.
execute
(
self
).
map
do
|
event
|
serialize
(
event
)
if
has_permission?
(
event
[
'id'
])
end
end
def
query
(
_base_query
);
end
def
custom_
query
(
_base_query
);
end
def
fetch
(
query
)
query
.
execute
(
self
).
map
{
|
event
|
serialize
(
event
,
query
)
}
def
order
@order
||
@start_time_attrs
end
private
def
serialize
(
_event
,
_query
)
raise
NotImplementedError
.
new
(
"Expected
#{
self
.
name
}
to implement serialize(event, query
)"
)
def
serialize
(
_event
)
raise
NotImplementedError
.
new
(
"Expected
#{
self
.
name
}
to implement serialize(event
)"
)
end
def
has_permission?
(
_id
)
true
end
end
end
...
...
lib/gitlab/cycle_analytics/code_event.rb
View file @
d5b673da
module
Gitlab
module
CycleAnalytics
class
CodeEvent
<
BaseEvent
def
initialize
(
*
args
)
@stage
=
:code
@start_time_attrs
=
issue_metrics_table
[
:first_mentioned_in_commit_at
]
@end_time_attrs
=
mr_table
[
:created_at
]
@projections
=
[
mr_table
[
:title
],
mr_table
[
:iid
],
mr_table
[
:id
],
mr_table
[
:created_at
],
mr_table
[
:state
],
mr_table
[
:author_id
]]
@order
=
mr_table
[
:created_at
]
def
self
.
serialize
(
event
,
query
)
super
(
*
args
)
end
private
def
serialize
(
event
)
event
[
'author'
]
=
User
.
find
(
event
.
delete
(
'author_id'
))
AnalyticsMergeRequestSerializer
.
new
(
project:
query
.
project
).
represent
(
event
).
as_json
AnalyticsMergeRequestSerializer
.
new
(
project:
@project
).
represent
(
event
).
as_json
end
def
has_permission?
(
id
)
@options
[
:current_user
].
can?
(
:read_merge_request
,
MergeRequest
.
find
(
id
))
end
end
end
...
...
lib/gitlab/cycle_analytics/event_config.rb
deleted
100644 → 0
View file @
9c995725
module
Gitlab
module
CycleAnalytics
class
TestEvent
<
BaseEvent
@start_time_attrs
=
mr_table
[
:created_at
]
@end_time_attrs
=
mr_metrics_table
[
:merged_at
]
@projections
=
[
mr_table
[
:title
],
mr_table
[
:iid
],
mr_table
[
:id
],
mr_table
[
:created_at
],
mr_table
[
:state
],
mr_table
[
:author_id
]]
end
end
end
lib/gitlab/cycle_analytics/events.rb
View file @
d5b673da
...
...
@@ -3,35 +3,35 @@ module Gitlab
class
Events
def
initialize
(
project
:,
options
:)
@project
=
project
@
query
=
EventsQuery
.
new
(
project:
project
,
options:
options
)
@
options
=
options
end
def
issue_events
IssueEvent
.
fetch
(
@query
)
IssueEvent
.
new
(
project:
@project
,
options:
@options
).
fetch
end
def
plan_events
PlanEvent
.
fetch
(
@query
)
PlanEvent
.
new
(
project:
@project
,
options:
@options
).
fetch
end
def
code_events
CodeEvent
.
fetch
(
@query
)
CodeEvent
.
new
(
project:
@project
,
options:
@options
).
fetch
end
def
test_events
TestEvent
.
fetch
(
@query
)
TestEvent
.
new
(
project:
@project
,
options:
@options
).
fetch
end
def
review_events
ReviewEvent
.
fetch
(
@query
)
ReviewEvent
.
new
(
project:
@project
,
options:
@options
).
fetch
end
def
staging_events
StagingEvent
.
fetch
(
@query
)
StagingEvent
.
new
(
project:
@project
,
options:
@options
).
fetch
end
def
production_events
ProductionEvent
.
fetch
(
@query
)
ProductionEvent
.
new
(
project:
@project
,
options:
@options
).
fetch
end
end
end
...
...
lib/gitlab/cycle_analytics/events_query.rb
View file @
d5b673da
...
...
@@ -22,7 +22,7 @@ module Gitlab
base_query
=
@fetcher
.
base_query_for
(
@stage_class
.
stage
)
diff_fn
=
@fetcher
.
subtract_datetimes_diff
(
base_query
,
@stage_class
.
start_time_attrs
,
@stage_class
.
end_time_attrs
)
@stage_class
.
query
(
base_query
)
@stage_class
.
custom_
query
(
base_query
)
base_query
.
project
(
extract_epoch
(
diff_fn
).
as
(
'total_time'
),
*
@stage_class
.
projections
).
order
(
@stage_class
.
order
.
desc
)
end
...
...
lib/gitlab/cycle_analytics/issue_event.rb
View file @
d5b673da
module
Gitlab
module
CycleAnalytics
class
IssueEvent
<
BaseEvent
def
initialize
(
*
args
)
@stage
=
:issue
@start_time_attrs
=
issue_table
[
:created_at
]
@end_time_attrs
=
[
issue_metrics_table
[
:first_associated_with_milestone_at
],
issue_metrics_table
[
:first_added_to_board_at
]]
@projections
=
[
issue_table
[
:title
],
issue_table
[
:iid
],
issue_table
[
:id
],
issue_table
[
:created_at
],
issue_table
[
:author_id
]]
def
self
.
serialize
(
event
,
query
)
super
(
*
args
)
end
private
def
serialize
(
event
)
event
[
'author'
]
=
User
.
find
(
event
.
delete
(
'author_id'
))
AnalyticsIssueSerializer
.
new
(
project:
query
.
project
).
represent
(
event
).
as_json
AnalyticsIssueSerializer
.
new
(
project:
@project
).
represent
(
event
).
as_json
end
def
has_permission?
(
id
)
@options
[
:current_user
].
can?
(
:read_issue
,
Issue
.
find
(
id
))
end
end
end
...
...
lib/gitlab/cycle_analytics/plan_event.rb
View file @
d5b673da
module
Gitlab
module
CycleAnalytics
class
PlanEvent
<
BaseEvent
def
initialize
(
*
args
)
@stage
=
:plan
@start_time_attrs
=
issue_metrics_table
[
:first_associated_with_milestone_at
]
@end_time_attrs
=
[
issue_metrics_table
[
:first_added_to_board_at
],
issue_metrics_table
[
:first_mentioned_in_commit_at
]]
@projections
=
[
mr_diff_table
[
:st_commits
].
as
(
'commits'
),
issue_metrics_table
[
:first_mentioned_in_commit_at
]]
class
<<
self
def
query
(
base_query
)
super
(
*
args
)
end
def
custom_query
(
base_query
)
base_query
.
join
(
mr_diff_table
).
on
(
mr_diff_table
[
:merge_request_id
].
eq
(
mr_table
[
:id
]))
end
private
def
serialize
(
event
,
query
)
def
serialize
(
event
)
st_commit
=
first_time_reference_commit
(
event
.
delete
(
'commits'
),
event
)
return
unless
st_commit
...
...
@@ -36,8 +37,7 @@ module Gitlab
def
serialize_commit
(
event
,
st_commit
,
query
)
commit
=
Commit
.
new
(
Gitlab
::
Git
::
Commit
.
new
(
st_commit
),
@project
)
AnalyticsCommitSerializer
.
new
(
project:
query
.
project
,
total_time:
event
[
'total_time'
]).
represent
(
commit
).
as_json
end
AnalyticsCommitSerializer
.
new
(
project:
@project
,
total_time:
event
[
'total_time'
]).
represent
(
commit
).
as_json
end
end
end
...
...
lib/gitlab/cycle_analytics/production_event.rb
View file @
d5b673da
module
Gitlab
module
CycleAnalytics
class
ProductionEvent
<
BaseEvent
def
initialize
(
*
args
)
@stage
=
:production
@start_time_attrs
=
issue_table
[
:created_at
]
@end_time_attrs
=
mr_metrics_table
[
:first_deployed_to_production_at
]
@projections
=
[
issue_table
[
:title
],
issue_table
[
:iid
],
issue_table
[
:id
],
issue_table
[
:created_at
],
issue_table
[
:author_id
]]
def
self
.
serialize
(
event
,
query
)
super
(
*
args
)
end
private
def
serialize
(
event
)
event
[
'author'
]
=
User
.
find
(
event
.
delete
(
'author_id'
))
AnalyticsIssueSerializer
.
new
(
project:
query
.
project
).
represent
(
event
).
as_json
AnalyticsIssueSerializer
.
new
(
project:
@project
).
represent
(
event
).
as_json
end
def
has_permission?
(
id
)
@options
[
:current_user
].
can?
(
:read_issue
,
Issue
.
find
(
id
))
end
end
end
...
...
lib/gitlab/cycle_analytics/review_event.rb
View file @
d5b673da
module
Gitlab
module
CycleAnalytics
class
ReviewEvent
<
BaseEvent
def
initialize
(
*
args
)
@stage
=
:review
@start_time_attrs
=
mr_table
[
:created_at
]
@end_time_attrs
=
mr_metrics_table
[
:merged_at
]
...
...
@@ -11,10 +12,17 @@ module Gitlab
mr_table
[
:state
],
mr_table
[
:author_id
]]
def
self
.
serialize
(
event
,
query
)
super
(
*
args
)
end
def
serialize
(
event
)
event
[
'author'
]
=
User
.
find
(
event
.
delete
(
'author_id'
))
AnalyticsMergeRequestSerializer
.
new
(
project:
query
.
project
).
represent
(
event
).
as_json
AnalyticsMergeRequestSerializer
.
new
(
project:
@project
).
represent
(
event
).
as_json
end
def
has_permission?
(
id
)
@options
[
:current_user
].
can?
(
:read_merge_request
,
MergeRequest
.
find
(
id
))
end
end
end
...
...
lib/gitlab/cycle_analytics/staging_event.rb
View file @
d5b673da
module
Gitlab
module
CycleAnalytics
class
StagingEvent
<
BaseEvent
def
initialize
(
*
args
)
@stage
=
:staging
@start_time_attrs
=
mr_metrics_table
[
:merged_at
]
@end_time_attrs
=
mr_metrics_table
[
:first_deployed_to_production_at
]
@projections
=
[
build_table
[
:id
]]
@order
=
build_table
[
:created_at
]
def
self
.
query
(
base_query
)
super
(
*
args
)
end
def
custom_query
(
base_query
)
base_query
.
join
(
build_table
).
on
(
mr_metrics_table
[
:pipeline_id
].
eq
(
build_table
[
:commit_id
]))
end
def
self
.
serialize
(
event
,
_query
)
private
def
serialize
(
event
)
build
=
::
Ci
::
Build
.
find
(
event
[
'id'
])
AnalyticsBuildSerializer
.
new
.
represent
(
build
).
as_json
...
...
lib/gitlab/cycle_analytics/test_event.rb
View file @
d5b673da
module
Gitlab
module
CycleAnalytics
class
TestEvent
<
BaseEvent
def
initialize
(
*
args
)
@stage
=
:test
@start_time_attrs
=
mr_metrics_table
[
:latest_build_started_at
]
@end_time_attrs
=
mr_metrics_table
[
:latest_build_finished_at
]
@projections
=
[
build_table
[
:id
]]
@order
=
build_table
[
:created_at
]
def
self
.
query
(
base_query
)
super
(
*
args
)
end
def
custom_query
(
base_query
)
base_query
.
join
(
build_table
).
on
(
mr_metrics_table
[
:pipeline_id
].
eq
(
build_table
[
:commit_id
]))
end
def
self
.
serialize
(
event
,
_query
)
private
def
serialize
(
event
)
build
=
::
Ci
::
Build
.
find
(
event
[
'id'
])
AnalyticsBuildSerializer
.
new
.
represent
(
build
).
as_json
...
...
spec/lib/gitlab/cycle_analytics/events_spec.rb
View file @
d5b673da
...
...
@@ -6,7 +6,7 @@ describe Gitlab::CycleAnalytics::Events do
let
(
:user
)
{
create
(
:user
,
:admin
)
}
let!
(
:context
)
{
create
(
:issue
,
project:
project
,
created_at:
2
.
days
.
ago
)
}
subject
{
described_class
.
new
(
project:
project
,
options:
{
from:
from_date
})
}
subject
{
described_class
.
new
(
project:
project
,
options:
{
from:
from_date
,
current_user:
user
})
}
before
do
allow_any_instance_of
(
Gitlab
::
ReferenceExtractor
).
to
receive
(
:issues
).
and_return
([
context
])
...
...
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