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
Kazuhiko Shiozaki
gitlab-ce
Commits
3c97cbc7
Commit
3c97cbc7
authored
Dec 07, 2015
by
Valery Sizov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixes after review
parent
5df2c441
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
18 deletions
+11
-18
app/models/commit.rb
app/models/commit.rb
+9
-16
lib/gitlab/push_data_builder.rb
lib/gitlab/push_data_builder.rb
+1
-1
spec/models/commit_spec.rb
spec/models/commit_spec.rb
+1
-1
No files found.
app/models/commit.rb
View file @
3c97cbc7
...
@@ -135,7 +135,7 @@ class Commit
...
@@ -135,7 +135,7 @@ class Commit
description
.
present?
description
.
present?
end
end
def
hook_attrs
(
with_changed_files
=
false
)
def
hook_attrs
(
with_changed_files
:
false
)
path_with_namespace
=
project
.
path_with_namespace
path_with_namespace
=
project
.
path_with_namespace
data
=
{
data
=
{
...
@@ -150,11 +150,7 @@ class Commit
...
@@ -150,11 +150,7 @@ class Commit
}
}
if
with_changed_files
if
with_changed_files
data
.
merge!
({
data
.
merge!
(
repo_changes
)
added:
repo_changes
[
:added
],
modified:
repo_changes
[
:modified
],
removed:
repo_changes
[
:removed
]
})
end
end
data
data
...
@@ -212,16 +208,13 @@ class Commit
...
@@ -212,16 +208,13 @@ class Commit
def
repo_changes
def
repo_changes
changes
=
{
added:
[],
modified:
[],
removed:
[]
}
changes
=
{
added:
[],
modified:
[],
removed:
[]
}
if
diffs
.
any?
diffs
.
each
do
|
diff
|
diffs
.
each
do
|
diff
|
if
diff
.
deleted_file
case
true
changes
[
:removed
]
<<
diff
.
old_path
when
diff
.
deleted_file
elsif
diff
.
renamed_file
||
diff
.
new_file
changes
[
:removed
]
<<
diff
.
old_path
changes
[
:added
]
<<
diff
.
new_path
when
diff
.
renamed_file
,
diff
.
new_file
else
changes
[
:added
]
<<
diff
.
new_path
changes
[
:modified
]
<<
diff
.
new_path
else
changes
[
:modified
]
<<
diff
.
new_path
end
end
end
end
end
...
...
lib/gitlab/push_data_builder.rb
View file @
3c97cbc7
...
@@ -31,7 +31,7 @@ module Gitlab
...
@@ -31,7 +31,7 @@ module Gitlab
# For performance purposes maximum 20 latest commits
# For performance purposes maximum 20 latest commits
# will be passed as post receive hook data.
# will be passed as post receive hook data.
commit_attrs
=
commits_limited
.
map
do
|
commit
|
commit_attrs
=
commits_limited
.
map
do
|
commit
|
commit
.
hook_attrs
(
true
)
commit
.
hook_attrs
(
with_changed_files:
true
)
end
end
type
=
Gitlab
::
Git
.
tag_ref?
(
ref
)
?
"tag_push"
:
"push"
type
=
Gitlab
::
Git
.
tag_ref?
(
ref
)
?
"tag_push"
:
"push"
...
...
spec/models/commit_spec.rb
View file @
3c97cbc7
...
@@ -102,7 +102,7 @@ eos
...
@@ -102,7 +102,7 @@ eos
end
end
describe
'#hook_attrs'
do
describe
'#hook_attrs'
do
let
(
:data
)
{
commit
.
hook_attrs
(
true
)
}
let
(
:data
)
{
commit
.
hook_attrs
(
with_changed_files:
true
)
}
it
{
expect
(
data
).
to
be_a
(
Hash
)
}
it
{
expect
(
data
).
to
be_a
(
Hash
)
}
it
{
expect
(
data
[
:message
]).
to
include
(
'Add submodule from gitlab.com'
)
}
it
{
expect
(
data
[
:message
]).
to
include
(
'Add submodule from gitlab.com'
)
}
...
...
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