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
80613993
Commit
80613993
authored
Feb 03, 2016
by
Rubén Dávila
Committed by
Robert Speicher
Feb 19, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add RevertService class with basic logic to revert commit
parent
34e26b82
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
100 additions
and
12 deletions
+100
-12
app/controllers/projects/commit_controller.rb
app/controllers/projects/commit_controller.rb
+13
-0
app/models/commit.rb
app/models/commit.rb
+8
-0
app/models/repository.rb
app/models/repository.rb
+31
-12
app/services/commits/revert_service.rb
app/services/commits/revert_service.rb
+48
-0
No files found.
app/controllers/projects/commit_controller.rb
View file @
80613993
...
...
@@ -11,6 +11,7 @@ class Projects::CommitController < Projects::ApplicationController
before_action
:authorize_read_commit_status!
,
only:
[
:builds
]
before_action
:commit
before_action
:define_show_vars
,
only:
[
:show
,
:builds
]
before_action
:assign_revert_commit_vars
,
only:
[
:revert
]
before_action
:authorize_edit_tree!
,
only:
[
:revert
]
def
show
...
...
@@ -59,7 +60,11 @@ class Projects::CommitController < Projects::ApplicationController
end
def
revert
# return render_404 unless @commit_params.values.all?
create_commit
(
Commits
::
RevertService
,
success_notice:
"The commit has been successfully reverted."
,
success_path:
namespace_project_commits_path
(
@project
.
namespace
,
@project
,
@target_branch
),
failure_path:
namespace_project_commit_path
(
@project
.
namespace
,
@project
,
params
[
:id
]))
end
private
...
...
@@ -86,4 +91,12 @@ class Projects::CommitController < Projects::ApplicationController
@statuses
=
ci_commit
.
statuses
if
ci_commit
end
def
assign_revert_commit_vars
@target_branch
=
params
[
:target_branch
]
@commit_params
=
{
revert_commit_id:
params
[
:id
],
}
end
end
app/models/commit.rb
View file @
80613993
...
...
@@ -215,6 +215,14 @@ class Commit
ci_commit
.
try
(
:status
)
||
:not_found
end
def
revert_branch_name
"revert-
#{
project
.
id
}
-
#{
short_id
}
"
end
def
revert_message
"Revert
\"
#{
safe_message
.
lines
.
first
}
\"
"
.
truncate
(
80
)
+
"
\n\n
Reverts
#{
to_reference
}
"
end
private
def
repo_changes
...
...
app/models/repository.rb
View file @
80613993
...
...
@@ -622,27 +622,46 @@ class Repository
merge_commit_sha
end
def
revert
_merge
(
user
,
merge_commit_id
,
new_branch_name
,
target
_branch
,
commit_message
)
# branch exists and it's highly probable that it has the revert commi
t
return
if
find_branch
(
new_branch_name
)
def
revert
(
user
,
commit_id
,
target_branch
,
base
_branch
,
commit_message
)
source_sha
=
find_branch
(
base_branch
).
targe
t
target_sha
=
find_branch
(
target_branch
).
try
(
:target
)
target_sha
=
find_branch
(
target_branch
).
target
# First make revert in temp branch
unless
target_sha
revert_commit
(
user
,
commit_id
,
target_branch
,
base_branch
,
commit_message
)
end
commit_with_hooks
(
user
,
new_branch_name
)
do
|
ref
|
new_index
=
rugged
.
revert_commit
(
merge_commit_id
,
target_sha
,
mainline:
1
)
committer
=
user_to_committer
(
user
)
# Make the revert happen in the target branch
source_sha
=
find_branch
(
target_branch
).
target
target_sha
=
find_branch
(
base_branch
).
target
options
=
{
if
is_there_something_to_merge?
(
source_sha
,
target_sha
)
revert_commit
(
user
,
commit_id
,
base_branch
,
base_branch
,
commit_message
)
end
end
def
revert_commit
(
user
,
commit_id
,
target_branch
,
base_branch
,
commit_message
)
base_sha
=
find_branch
(
base_branch
).
target
commit_with_hooks
(
user
,
target_branch
)
do
|
ref
|
new_index
=
rugged
.
revert_commit
(
commit_id
,
base_sha
)
#, mainline: 1)
return
false
if
new_index
.
conflicts?
committer
=
user_to_committer
(
user
)
source_sha
=
Rugged
::
Commit
.
create
(
rugged
,
{
message:
commit_message
,
author:
committer
,
committer:
committer
,
tree:
new_index
.
write_tree
(
rugged
),
parents:
[
rugged
.
lookup
(
target
_sha
)],
parents:
[
rugged
.
lookup
(
base
_sha
)],
update_ref:
ref
}
Rugged
::
Commit
.
create
(
rugged
,
options
)
})
end
end
def
is_there_something_to_merge?
(
source_branch_sha
,
target_branch_sha
)
CompareService
.
new
.
execute
(
project
,
source_branch_sha
,
project
,
target_branch_sha
).
diffs
.
present?
end
def
merged_to_root_ref?
(
branch_name
)
...
...
app/services/commits/revert_service.rb
0 → 100644
View file @
80613993
module
Commits
class
RevertService
<
::
BaseService
class
ValidationError
<
StandardError
;
end
def
execute
@source_project
=
params
[
:source_project
]
||
@project
@target_branch
=
params
[
:target_branch
]
@commit_to_revert
=
@source_project
.
commit
(
params
[
:revert_commit_id
])
# Check push permissions to branch
validate
if
commit
success
else
error
(
"Something went wrong. Your changes were not committed"
)
end
rescue
Repository
::
CommitError
,
Gitlab
::
Git
::
Repository
::
InvalidBlobName
,
GitHooksService
::
PreReceiveError
,
ValidationError
=>
ex
error
(
ex
.
message
)
end
def
commit
raw_repo
=
repository
.
rugged
# Create branch with revert commit
reverted
=
repository
.
revert
(
current_user
,
@commit_to_revert
.
id
,
@commit_to_revert
.
revert_branch_name
,
@target_branch
,
@commit_to_revert
.
revert_message
)
repository
.
rm_branch
(
current_user
,
@commit_to_revert
.
revert_branch_name
)
reverted
end
private
def
raise_error
(
message
)
raise
ValidationError
.
new
(
message
)
end
def
validate
allowed
=
::
Gitlab
::
GitAccess
.
new
(
current_user
,
project
).
can_push_to_branch?
(
@target_branch
)
unless
allowed
raise_error
(
"You are not allowed to push into this branch"
)
end
end
end
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