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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
21bc41c6
Commit
21bc41c6
authored
Jan 16, 2014
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add support of base64 encoded content
Signed-off-by:
Dmitriy Zaporozhets
<
dmitriy.zaporozhets@gmail.com
>
parent
dba98240
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
4 deletions
+13
-4
lib/gitlab/satellite/files/edit_file_action.rb
lib/gitlab/satellite/files/edit_file_action.rb
+3
-2
lib/gitlab/satellite/files/file_action.rb
lib/gitlab/satellite/files/file_action.rb
+8
-0
lib/gitlab/satellite/files/new_file_action.rb
lib/gitlab/satellite/files/new_file_action.rb
+2
-2
No files found.
lib/gitlab/satellite/files/edit_file_action.rb
View file @
21bc41c6
...
...
@@ -10,7 +10,7 @@ module Gitlab
# Returns false if committing the change fails
# Returns false if pushing from the satellite to bare repo failed or was rejected
# Returns true otherwise
def
commit!
(
content
,
commit_message
)
def
commit!
(
content
,
commit_message
,
encoding
)
in_locked_and_timed_satellite
do
|
repo
|
prepare_satellite!
(
repo
)
...
...
@@ -26,7 +26,8 @@ module Gitlab
return
false
end
File
.
open
(
file_path_in_satellite
,
'w'
)
{
|
f
|
f
.
write
(
content
)
}
# Write file
write_file
(
file_path_in_satellite
,
content
,
encoding
)
# commit the changes
# will raise CommandFailed when commit fails
...
...
lib/gitlab/satellite/files/file_action.rb
View file @
21bc41c6
...
...
@@ -12,6 +12,14 @@ module Gitlab
def
safe_path?
(
path
)
File
.
absolute_path
(
path
)
==
path
end
def
write_file
(
abs_file_path
,
content
,
file_encoding
=
'text'
)
if
file_encoding
==
'base64'
File
.
open
(
abs_file_path
,
'wb'
)
{
|
f
|
f
.
write
(
Base64
.
decode64
(
content
))
}
else
File
.
open
(
abs_file_path
,
'w'
)
{
|
f
|
f
.
write
(
content
)
}
end
end
end
end
end
lib/gitlab/satellite/files/new_file_action.rb
View file @
21bc41c6
...
...
@@ -9,7 +9,7 @@ module Gitlab
# Returns false if committing the change fails
# Returns false if pushing from the satellite to bare repo failed or was rejected
# Returns true otherwise
def
commit!
(
content
,
commit_message
)
def
commit!
(
content
,
commit_message
,
encoding
)
in_locked_and_timed_satellite
do
|
repo
|
prepare_satellite!
(
repo
)
...
...
@@ -29,7 +29,7 @@ module Gitlab
FileUtils
.
mkdir_p
(
dir_name_in_satellite
)
# Write file
File
.
open
(
file_path_in_satellite
,
'w'
)
{
|
f
|
f
.
write
(
content
)
}
write_file
(
file_path_in_satellite
,
content
,
encoding
)
# add new file
repo
.
add
(
file_path_in_satellite
)
...
...
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