BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
c84786c5
Commit
c84786c5
authored
Jul 06, 2016
by
tiagonbotelho
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refactors to pass values as arguments through options
parent
5d32a960
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
29 deletions
+16
-29
repository.rb
app/models/repository.rb
+13
-28
update_service.rb
app/services/files/update_service.rb
+3
-1
No files found.
app/models/repository.rb
View file @
c84786c5
...
...
@@ -731,45 +731,30 @@ class Repository
end
end
def
update_file
(
user
,
path
,
previous_path
,
content
,
message
,
branch
,
update
)
# previous_path, message, update
def
update_file
(
user
,
path
,
content
,
branch
,
options
=
{})
commit_with_hooks
(
user
,
branch
)
do
|
ref
|
committer
=
user_to_committer
(
user
)
options
=
{}
options
[
:committer
]
=
committer
options
[
:author
]
=
committer
options
[
:commit
]
=
{
message:
message
,
<<<<<<<
3824
e8e1c4315bb3d1b2c1389f442d3b5e94f945
commit_options
=
{}
commit_options
[
:committer
]
=
committer
commit_options
[
:author
]
=
committer
commit_options
[
:commit
]
=
{
message:
options
[
:message
],
branch:
ref
}
=======
branch:
ref
,
}
if
previous_path
options
[
:file
]
=
{
path:
previous_path
}
Gitlab
::
Git
::
Blob
.
remove
(
raw_repository
,
options
)
end
>>>>>>>
creates
the
update_file
method
in
repository
.
rb
and
applies
changes
accordingly
options
[
:file
]
=
{
commit_options
[
:file
]
=
{
content:
content
,
path:
path
,
update:
update
update:
options
[
:update
]
}
<<<<<<<
3824
e8e1c4315bb3d1b2c1389f442d3b5e94f945
if
previous_path
options
[
:file
].
merge!
(
previous_path:
previous_path
)
if
options
[
:previous_path
]
commit_options
[
:file
].
merge!
(
previous_path:
options
[
:previous_path
])
Gitlab
::
Git
::
Blob
.
rename
(
raw_repository
,
options
)
Gitlab
::
Git
::
Blob
.
rename
(
raw_repository
,
commit_
options
)
else
Gitlab
::
Git
::
Blob
.
commit
(
raw_repository
,
options
)
Gitlab
::
Git
::
Blob
.
commit
(
raw_repository
,
commit_
options
)
end
end
end
...
...
app/services/files/update_service.rb
View file @
c84786c5
...
...
@@ -3,7 +3,9 @@ require_relative "base_service"
module
Files
class
UpdateService
<
Files
::
BaseService
def
commit
repository
.
update_file
(
current_user
,
@file_path
,
@previous_path
,
@file_content
,
@commit_message
,
@target_branch
,
true
)
repository
.
update_file
(
current_user
,
@file_path
,
@file_content
,
@target_branch
,
previous_path:
@previous_path
,
message:
@commit_message
,
update:
true
)
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