summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-11-09 09:42:29 +0000
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-11-09 09:42:29 +0000
commitca196453f000c81d2f476827d718d010a128cf10 (patch)
tree08430bc1bc4262513eeeee50ed3dd3504979ae74
parentea3680ad80e7623e03341a2568e775527bd47fd3 (diff)
parentf64dd1b492952083449dc7f0e226cf7b20e1a1fb (diff)
downloadgitlab-ce-ca196453f000c81d2f476827d718d010a128cf10.tar.gz
Merge branch 'feature/api_create_file' of /home/git/repositories/gitlab/gitlabhq
-rw-r--r--doc/api/repositories.md17
-rw-r--r--lib/api/api.rb1
-rw-r--r--lib/api/files.rb41
-rw-r--r--lib/gitlab/satellite/files/new_file_action.rb2
-rw-r--r--spec/requests/api/files_spec.rb46
-rw-r--r--spec/support/test_env.rb1
6 files changed, 106 insertions, 2 deletions
diff --git a/doc/api/repositories.md b/doc/api/repositories.md
index 2769c22d6aa..b9fb8cc26a8 100644
--- a/doc/api/repositories.md
+++ b/doc/api/repositories.md
@@ -368,4 +368,19 @@ GET /projects/:id/repository/archive
Parameters:
+ `id` (required) - The ID of a project
-+ `sha` (optional) - The commit sha to download defaults to the tip of the default branch \ No newline at end of file
++ `sha` (optional) - The commit sha to download defaults to the tip of the default branch
+
+
+## Create new file in repository
+
+```
+POST /projects/:id/repository/files
+```
+
+Parameters:
+
++ `file_name` (required) - The name of new file. Ex. class.rb
++ `file_path` (optiona) - The path to new file. Ex. lib/
++ `branch_name` (required) - The name of branch
++ `content` (required) - File content
++ `commit_message` (required) - Commit message
diff --git a/lib/api/api.rb b/lib/api/api.rb
index 4db81f42b4c..45efcc8cd47 100644
--- a/lib/api/api.rb
+++ b/lib/api/api.rb
@@ -39,5 +39,6 @@ module API
mount DeployKeys
mount ProjectHooks
mount Services
+ mount Files
end
end
diff --git a/lib/api/files.rb b/lib/api/files.rb
new file mode 100644
index 00000000000..5918b6e5ca0
--- /dev/null
+++ b/lib/api/files.rb
@@ -0,0 +1,41 @@
+module API
+ # Projects API
+ class Files < Grape::API
+ before { authenticate! }
+ before { authorize! :push_code, user_project }
+
+ resource :projects do
+ # Create new file in repository
+ #
+ # Parameters:
+ # file_name (required) - The name of new file. Ex. class.rb
+ # file_path (optiona) - The path to new file. Ex. lib/
+ # branch_name (required) - The name of branch
+ # content (required) - File content
+ # commit_message (required) - Commit message
+ #
+ # Example Request:
+ # POST /projects/:id/repository/files
+ post ":id/repository/files" do
+ required_attributes! [:file_name, :branch_name, :content]
+ attrs = attributes_for_keys [:file_name, :file_path, :branch_name, :content]
+ branch_name = attrs.delete(:branch_name)
+ file_path = attrs.delete(:file_path)
+ result = ::Files::CreateContext.new(user_project, current_user, attrs, branch_name, file_path).execute
+
+ if result[:status] == :success
+ status(201)
+
+ {
+ file_name: attrs[:file_name],
+ file_path: file_path,
+ branch_name: branch_name
+ }
+ else
+ render_api_error!(result[:error], 400)
+ end
+ end
+ end
+ end
+end
+
diff --git a/lib/gitlab/satellite/files/new_file_action.rb b/lib/gitlab/satellite/files/new_file_action.rb
index 9fe5a38eb80..70a5ea219de 100644
--- a/lib/gitlab/satellite/files/new_file_action.rb
+++ b/lib/gitlab/satellite/files/new_file_action.rb
@@ -17,7 +17,7 @@ module Gitlab
repo.git.checkout({raise: true, timeout: true, b: true}, ref, "origin/#{ref}")
# update the file in the satellite's working dir
- file_path_in_satellite = File.join(repo.working_dir, file_path, file_name)
+ file_path_in_satellite = File.join(repo.working_dir, file_path || '', file_name)
File.open(file_path_in_satellite, 'w') { |f| f.write(content) }
# add new file
diff --git a/spec/requests/api/files_spec.rb b/spec/requests/api/files_spec.rb
new file mode 100644
index 00000000000..637680672da
--- /dev/null
+++ b/spec/requests/api/files_spec.rb
@@ -0,0 +1,46 @@
+require 'spec_helper'
+
+describe API::API do
+ include ApiHelpers
+ before(:each) { ActiveRecord::Base.observers.enable(:user_observer) }
+ after(:each) { ActiveRecord::Base.observers.disable(:user_observer) }
+
+ let(:user) { create(:user) }
+ let!(:project) { create(:project_with_code, namespace: user.namespace ) }
+ before { project.team << [user, :developer] }
+
+ describe "POST /projects/:id/repository/files" do
+ it "should create a new file in project repo" do
+ Gitlab::Satellite::NewFileAction.any_instance.stub(
+ commit!: true,
+ )
+
+ post api("/projects/#{project.id}/repository/files", user), valid_params
+ response.status.should == 201
+ json_response['file_name'].should == 'newfile.rb'
+ end
+
+ it "should return a 400 bad request if no params given" do
+ post api("/projects/#{project.id}/repository/files", user)
+ response.status.should == 400
+ end
+
+ it "should return a 400 if satellite fails to create file" do
+ Gitlab::Satellite::NewFileAction.any_instance.stub(
+ commit!: false,
+ )
+
+ post api("/projects/#{project.id}/repository/files", user), valid_params
+ response.status.should == 400
+ end
+ end
+
+ def valid_params
+ {
+ file_name: 'newfile.rb',
+ branch_name: 'master',
+ content: 'puts 8',
+ commit_message: 'Added newfile'
+ }
+ end
+end
diff --git a/spec/support/test_env.rb b/spec/support/test_env.rb
index 16e10b1a62b..5dbdffe4102 100644
--- a/spec/support/test_env.rb
+++ b/spec/support/test_env.rb
@@ -45,6 +45,7 @@ module TestEnv
def disable_mailer
NotificationService.any_instance.stub(mailer: double.as_null_object)
end
+
def enable_mailer
NotificationService.any_instance.unstub(:mailer)
end