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
6c5e9480
Commit
6c5e9480
authored
Aug 05, 2019
by
Gosia Ksionek
Committed by
Mayra Cabrera
Aug 05, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix error on project name
Add project path to sql query to build proper path
parent
1dfbb27f
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
43 additions
and
31 deletions
+43
-31
app/serializers/analytics_issue_entity.rb
app/serializers/analytics_issue_entity.rb
+1
-1
changelogs/unreleased/fix-name-vs-path-problem-for-cycle-analytics.yml
...released/fix-name-vs-path-problem-for-cycle-analytics.yml
+5
-0
lib/gitlab/cycle_analytics/base_query.rb
lib/gitlab/cycle_analytics/base_query.rb
+10
-3
lib/gitlab/cycle_analytics/code_event_fetcher.rb
lib/gitlab/cycle_analytics/code_event_fetcher.rb
+1
-3
lib/gitlab/cycle_analytics/issue_event_fetcher.rb
lib/gitlab/cycle_analytics/issue_event_fetcher.rb
+1
-3
lib/gitlab/cycle_analytics/issue_helper.rb
lib/gitlab/cycle_analytics/issue_helper.rb
+10
-3
lib/gitlab/cycle_analytics/plan_event_fetcher.rb
lib/gitlab/cycle_analytics/plan_event_fetcher.rb
+1
-3
lib/gitlab/cycle_analytics/plan_helper.rb
lib/gitlab/cycle_analytics/plan_helper.rb
+4
-2
lib/gitlab/cycle_analytics/production_event_fetcher.rb
lib/gitlab/cycle_analytics/production_event_fetcher.rb
+0
-1
lib/gitlab/cycle_analytics/review_event_fetcher.rb
lib/gitlab/cycle_analytics/review_event_fetcher.rb
+1
-3
spec/serializers/analytics_issue_entity_spec.rb
spec/serializers/analytics_issue_entity_spec.rb
+3
-3
spec/serializers/analytics_issue_serializer_spec.rb
spec/serializers/analytics_issue_serializer_spec.rb
+3
-3
spec/serializers/analytics_merge_request_serializer_spec.rb
spec/serializers/analytics_merge_request_serializer_spec.rb
+3
-3
No files found.
app/serializers/analytics_issue_entity.rb
View file @
6c5e9480
...
...
@@ -26,6 +26,6 @@ class AnalyticsIssueEntity < Grape::Entity
private
def
url_to
(
route
,
object
)
public_send
(
"
#{
route
}
_url"
,
object
[
:
path
],
object
[
:name
],
object
[
:iid
].
to_s
)
# rubocop:disable GitlabSecurity/PublicSend
public_send
(
"
#{
route
}
_url"
,
object
[
:
namespace_path
],
object
[
:project_path
],
object
[
:iid
].
to_s
)
# rubocop:disable GitlabSecurity/PublicSend
end
end
changelogs/unreleased/fix-name-vs-path-problem-for-cycle-analytics.yml
0 → 100644
View file @
6c5e9480
---
title
:
Fix broken issue links and possible 500 error on cycle analytics page when project name and path are different
merge_request
:
31471
author
:
type
:
fixed
lib/gitlab/cycle_analytics/base_query.rb
View file @
6c5e9480
...
...
@@ -19,9 +19,10 @@ module Gitlab
.
join
(
projects_table
).
on
(
issue_table
[
:project_id
].
eq
(
projects_table
[
:id
]))
.
join
(
routes_table
).
on
(
projects_table
[
:namespace_id
].
eq
(
routes_table
[
:source_id
]))
.
project
(
issue_table
[
:project_id
].
as
(
"project_id"
))
.
where
(
issue_table
[
:project_id
].
in
(
project_ids
))
.
where
(
routes_table
[
:source_type
].
eq
(
'Namespace'
))
.
where
(
issue_table
[
:created_at
].
gteq
(
options
[
:from
]))
.
project
(
projects_table
[
:path
].
as
(
"project_path"
))
.
project
(
routes_table
[
:path
].
as
(
"namespace_path"
))
query
=
limit_query
(
query
,
project_ids
)
# Load merge_requests
...
...
@@ -30,6 +31,12 @@ module Gitlab
query
end
def
limit_query
(
query
,
project_ids
)
query
.
where
(
issue_table
[
:project_id
].
in
(
project_ids
))
.
where
(
routes_table
[
:source_type
].
eq
(
'Namespace'
))
.
where
(
issue_table
[
:created_at
].
gteq
(
options
[
:from
]))
end
def
load_merge_requests
(
query
)
query
.
join
(
mr_table
,
Arel
::
Nodes
::
OuterJoin
)
.
on
(
mr_table
[
:id
].
eq
(
mr_closing_issues_table
[
:merge_request_id
]))
...
...
lib/gitlab/cycle_analytics/code_event_fetcher.rb
View file @
6c5e9480
...
...
@@ -11,9 +11,7 @@ module Gitlab
mr_table
[
:id
],
mr_table
[
:created_at
],
mr_table
[
:state
],
mr_table
[
:author_id
],
projects_table
[
:name
],
routes_table
[
:path
]]
mr_table
[
:author_id
]]
@order
=
mr_table
[
:created_at
]
super
(
*
args
)
...
...
lib/gitlab/cycle_analytics/issue_event_fetcher.rb
View file @
6c5e9480
...
...
@@ -10,9 +10,7 @@ module Gitlab
issue_table
[
:iid
],
issue_table
[
:id
],
issue_table
[
:created_at
],
issue_table
[
:author_id
],
projects_table
[
:name
],
routes_table
[
:path
]]
issue_table
[
:author_id
]]
super
(
*
args
)
end
...
...
lib/gitlab/cycle_analytics/issue_helper.rb
View file @
6c5e9480
...
...
@@ -8,12 +8,19 @@ module Gitlab
.
join
(
projects_table
).
on
(
issue_table
[
:project_id
].
eq
(
projects_table
[
:id
]))
.
join
(
routes_table
).
on
(
projects_table
[
:namespace_id
].
eq
(
routes_table
[
:source_id
]))
.
project
(
issue_table
[
:project_id
].
as
(
"project_id"
))
.
where
(
issue_table
[
:project_id
].
in
(
project_ids
))
.
project
(
projects_table
[
:path
].
as
(
"project_path"
))
.
project
(
routes_table
[
:path
].
as
(
"namespace_path"
))
query
=
limit_query
(
query
,
project_ids
)
query
end
def
limit_query
(
query
,
project_ids
)
query
.
where
(
issue_table
[
:project_id
].
in
(
project_ids
))
.
where
(
routes_table
[
:source_type
].
eq
(
'Namespace'
))
.
where
(
issue_table
[
:created_at
].
gteq
(
options
[
:from
]))
.
where
(
issue_metrics_table
[
:first_added_to_board_at
].
not_eq
(
nil
).
or
(
issue_metrics_table
[
:first_associated_with_milestone_at
].
not_eq
(
nil
)))
query
end
end
end
...
...
lib/gitlab/cycle_analytics/plan_event_fetcher.rb
View file @
6c5e9480
...
...
@@ -10,9 +10,7 @@ module Gitlab
issue_table
[
:iid
],
issue_table
[
:id
],
issue_table
[
:created_at
],
issue_table
[
:author_id
],
projects_table
[
:name
],
routes_table
[
:path
]]
issue_table
[
:author_id
]]
super
(
*
args
)
end
...
...
lib/gitlab/cycle_analytics/plan_helper.rb
View file @
6c5e9480
...
...
@@ -8,14 +8,16 @@ module Gitlab
.
join
(
projects_table
).
on
(
issue_table
[
:project_id
].
eq
(
projects_table
[
:id
]))
.
join
(
routes_table
).
on
(
projects_table
[
:namespace_id
].
eq
(
routes_table
[
:source_id
]))
.
project
(
issue_table
[
:project_id
].
as
(
"project_id"
))
.
project
(
projects_table
[
:path
].
as
(
"project_path"
))
.
project
(
routes_table
[
:path
].
as
(
"namespace_path"
))
.
where
(
issue_table
[
:project_id
].
in
(
project_ids
))
.
where
(
routes_table
[
:source_type
].
eq
(
'Namespace'
))
query
=
add_conditions_to
_query
(
query
)
query
=
limit
_query
(
query
)
query
end
def
add_conditions_to
_query
(
query
)
def
limit
_query
(
query
)
query
.
where
(
issue_table
[
:created_at
].
gteq
(
options
[
:from
]))
.
where
(
issue_metrics_table
[
:first_added_to_board_at
].
not_eq
(
nil
).
or
(
issue_metrics_table
[
:first_associated_with_milestone_at
].
not_eq
(
nil
)))
.
where
(
issue_metrics_table
[
:first_mentioned_in_commit_at
].
not_eq
(
nil
))
...
...
lib/gitlab/cycle_analytics/production_event_fetcher.rb
View file @
6c5e9480
...
...
@@ -11,7 +11,6 @@ module Gitlab
issue_table
[
:id
],
issue_table
[
:created_at
],
issue_table
[
:author_id
],
projects_table
[
:name
],
routes_table
[
:path
]]
super
(
*
args
)
...
...
lib/gitlab/cycle_analytics/review_event_fetcher.rb
View file @
6c5e9480
...
...
@@ -11,9 +11,7 @@ module Gitlab
mr_table
[
:id
],
mr_table
[
:created_at
],
mr_table
[
:state
],
mr_table
[
:author_id
],
projects_table
[
:name
],
routes_table
[
:path
]]
mr_table
[
:author_id
]]
super
(
*
args
)
end
...
...
spec/serializers/analytics_issue_entity_spec.rb
View file @
6c5e9480
...
...
@@ -10,12 +10,12 @@ describe AnalyticsIssueEntity do
id:
"1"
,
created_at:
"2016-11-12 15:04:02.948604"
,
author:
user
,
name:
project
.
name
,
path:
project
.
namespace
project_path:
project
.
path
,
namespace_path:
project
.
namespace
.
route
.
path
}
end
let
(
:project
)
{
create
(
:project
)
}
let
(
:project
)
{
create
(
:project
,
name:
'my project'
)
}
let
(
:request
)
{
EntityRequest
.
new
(
entity: :merge_request
)
}
let
(
:entity
)
do
...
...
spec/serializers/analytics_issue_serializer_spec.rb
View file @
6c5e9480
...
...
@@ -8,7 +8,7 @@ describe AnalyticsIssueSerializer do
end
let
(
:user
)
{
create
(
:user
)
}
let
(
:project
)
{
create
(
:project
)
}
let
(
:project
)
{
create
(
:project
,
name:
'my project'
)
}
let
(
:resource
)
do
{
total_time:
"172802.724419"
,
...
...
@@ -17,8 +17,8 @@ describe AnalyticsIssueSerializer do
id:
"1"
,
created_at:
"2016-11-12 15:04:02.948604"
,
author:
user
,
name:
project
.
name
,
path:
project
.
namespace
project_path:
project
.
path
,
namespace_path:
project
.
namespace
.
route
.
path
}
end
...
...
spec/serializers/analytics_merge_request_serializer_spec.rb
View file @
6c5e9480
...
...
@@ -8,7 +8,7 @@ describe AnalyticsMergeRequestSerializer do
end
let
(
:user
)
{
create
(
:user
)
}
let
(
:project
)
{
create
(
:project
)
}
let
(
:project
)
{
create
(
:project
,
name:
'my project'
)
}
let
(
:resource
)
do
{
total_time:
"172802.724419"
,
...
...
@@ -18,8 +18,8 @@ describe AnalyticsMergeRequestSerializer do
state:
'open'
,
created_at:
"2016-11-12 15:04:02.948604"
,
author:
user
,
name:
project
.
name
,
path:
project
.
namespace
project_path:
project
.
path
,
namespace_path:
project
.
namespace
.
route
.
path
}
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