2013-12-20 14:12:44 -05:00
|
|
|
require 'mime/types'
|
|
|
|
|
2013-05-23 05:23:47 -04:00
|
|
|
module API
|
|
|
|
# Projects API
|
|
|
|
class Repositories < Grape::API
|
|
|
|
before { authenticate! }
|
2013-09-29 09:04:57 -04:00
|
|
|
before { authorize! :download_code, user_project }
|
2013-05-23 05:23:47 -04:00
|
|
|
|
|
|
|
resource :projects do
|
|
|
|
helpers do
|
|
|
|
def handle_project_member_errors(errors)
|
|
|
|
if errors[:project_access].any?
|
|
|
|
error!(errors[:project_access], 422)
|
|
|
|
end
|
|
|
|
not_found!
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Get a project repository branches
|
|
|
|
#
|
|
|
|
# Parameters:
|
|
|
|
# id (required) - The ID of a project
|
|
|
|
# Example Request:
|
|
|
|
# GET /projects/:id/repository/branches
|
|
|
|
get ":id/repository/branches" do
|
|
|
|
present user_project.repo.heads.sort_by(&:name), with: Entities::RepoObject, project: user_project
|
|
|
|
end
|
|
|
|
|
|
|
|
# Get a single branch
|
|
|
|
#
|
|
|
|
# Parameters:
|
|
|
|
# id (required) - The ID of a project
|
|
|
|
# branch (required) - The name of the branch
|
|
|
|
# Example Request:
|
|
|
|
# GET /projects/:id/repository/branches/:branch
|
|
|
|
get ":id/repository/branches/:branch" do
|
|
|
|
@branch = user_project.repo.heads.find { |item| item.name == params[:branch] }
|
|
|
|
not_found!("Branch does not exist") if @branch.nil?
|
|
|
|
present @branch, with: Entities::RepoObject, project: user_project
|
|
|
|
end
|
|
|
|
|
|
|
|
# Protect a single branch
|
|
|
|
#
|
|
|
|
# Parameters:
|
|
|
|
# id (required) - The ID of a project
|
|
|
|
# branch (required) - The name of the branch
|
|
|
|
# Example Request:
|
|
|
|
# PUT /projects/:id/repository/branches/:branch/protect
|
|
|
|
put ":id/repository/branches/:branch/protect" do
|
2013-09-29 09:04:57 -04:00
|
|
|
authorize_admin_project
|
2013-05-23 05:23:47 -04:00
|
|
|
|
2013-09-29 09:04:57 -04:00
|
|
|
@branch = user_project.repository.find_branch(params[:branch])
|
|
|
|
not_found! unless @branch
|
2014-01-19 13:55:59 -05:00
|
|
|
protected_branch = user_project.protected_branches.find_by(name: @branch.name)
|
2013-09-29 09:04:57 -04:00
|
|
|
user_project.protected_branches.create(name: @branch.name) unless protected_branch
|
2013-05-23 05:23:47 -04:00
|
|
|
|
|
|
|
present @branch, with: Entities::RepoObject, project: user_project
|
|
|
|
end
|
|
|
|
|
|
|
|
# Unprotect a single branch
|
|
|
|
#
|
|
|
|
# Parameters:
|
|
|
|
# id (required) - The ID of a project
|
|
|
|
# branch (required) - The name of the branch
|
|
|
|
# Example Request:
|
|
|
|
# PUT /projects/:id/repository/branches/:branch/unprotect
|
|
|
|
put ":id/repository/branches/:branch/unprotect" do
|
2013-09-29 09:04:57 -04:00
|
|
|
authorize_admin_project
|
2013-05-23 05:23:47 -04:00
|
|
|
|
2013-09-29 09:04:57 -04:00
|
|
|
@branch = user_project.repository.find_branch(params[:branch])
|
|
|
|
not_found! unless @branch
|
2014-01-19 13:55:59 -05:00
|
|
|
protected_branch = user_project.protected_branches.find_by(name: @branch.name)
|
2013-09-29 09:04:57 -04:00
|
|
|
protected_branch.destroy if protected_branch
|
2013-05-23 05:23:47 -04:00
|
|
|
|
|
|
|
present @branch, with: Entities::RepoObject, project: user_project
|
|
|
|
end
|
|
|
|
|
|
|
|
# Get a project repository tags
|
|
|
|
#
|
|
|
|
# Parameters:
|
|
|
|
# id (required) - The ID of a project
|
|
|
|
# Example Request:
|
|
|
|
# GET /projects/:id/repository/tags
|
|
|
|
get ":id/repository/tags" do
|
2014-02-04 07:46:15 -05:00
|
|
|
present user_project.repo.tags.sort_by(&:name).reverse, with: Entities::RepoObject, project: user_project
|
2013-05-23 05:23:47 -04:00
|
|
|
end
|
|
|
|
|
2013-06-06 11:01:03 -04:00
|
|
|
# Get a project repository tree
|
|
|
|
#
|
|
|
|
# Parameters:
|
|
|
|
# id (required) - The ID of a project
|
|
|
|
# ref_name (optional) - The name of a repository branch or tag, if not given the default branch is used
|
|
|
|
# Example Request:
|
|
|
|
# GET /projects/:id/repository/tree
|
|
|
|
get ":id/repository/tree" do
|
|
|
|
ref = params[:ref_name] || user_project.try(:default_branch) || 'master'
|
|
|
|
path = params[:path] || nil
|
|
|
|
|
|
|
|
commit = user_project.repository.commit(ref)
|
2014-02-04 07:46:15 -05:00
|
|
|
tree = user_project.repository.tree(commit.id, path)
|
2013-06-06 11:01:03 -04:00
|
|
|
|
2014-02-04 07:46:15 -05:00
|
|
|
present tree.sorted_entries, with: Entities::RepoTreeObject
|
2013-06-06 11:01:03 -04:00
|
|
|
end
|
|
|
|
|
2013-05-23 05:23:47 -04:00
|
|
|
# Get a raw file contents
|
|
|
|
#
|
|
|
|
# Parameters:
|
|
|
|
# id (required) - The ID of a project
|
|
|
|
# sha (required) - The commit or branch name
|
|
|
|
# filepath (required) - The path to the file to display
|
|
|
|
# Example Request:
|
2013-08-27 21:22:42 -04:00
|
|
|
# GET /projects/:id/repository/blobs/:sha
|
|
|
|
get [ ":id/repository/blobs/:sha", ":id/repository/commits/:sha/blob" ] do
|
2013-05-23 05:23:47 -04:00
|
|
|
required_attributes! [:filepath]
|
|
|
|
|
|
|
|
ref = params[:sha]
|
|
|
|
|
|
|
|
repo = user_project.repository
|
|
|
|
|
|
|
|
commit = repo.commit(ref)
|
|
|
|
not_found! "Commit" unless commit
|
|
|
|
|
2013-10-01 11:26:55 -04:00
|
|
|
blob = Gitlab::Git::Blob.find(repo, commit.id, params[:filepath])
|
|
|
|
not_found! "File" unless blob
|
2013-05-23 05:23:47 -04:00
|
|
|
|
2014-02-18 04:40:45 -05:00
|
|
|
content_type 'text/plain'
|
2013-12-23 04:37:38 -05:00
|
|
|
present blob.data
|
|
|
|
end
|
|
|
|
|
|
|
|
# Get a raw blob contents by blob sha
|
|
|
|
#
|
|
|
|
# Parameters:
|
|
|
|
# id (required) - The ID of a project
|
|
|
|
# sha (required) - The blob's sha
|
|
|
|
# Example Request:
|
|
|
|
# GET /projects/:id/repository/raw_blobs/:sha
|
|
|
|
get ":id/repository/raw_blobs/:sha" do
|
|
|
|
ref = params[:sha]
|
|
|
|
|
|
|
|
repo = user_project.repository
|
|
|
|
|
|
|
|
blob = Gitlab::Git::Blob.raw(repo, ref)
|
|
|
|
|
|
|
|
not_found! "Blob" unless blob
|
|
|
|
|
|
|
|
env['api.format'] = :txt
|
2013-05-27 10:14:47 -04:00
|
|
|
|
2013-05-23 05:23:47 -04:00
|
|
|
content_type blob.mime_type
|
|
|
|
present blob.data
|
|
|
|
end
|
2013-09-26 16:42:49 -04:00
|
|
|
|
|
|
|
# Get a an archive of the repository
|
|
|
|
#
|
|
|
|
# Parameters:
|
|
|
|
# id (required) - The ID of a project
|
2013-10-02 10:47:23 -04:00
|
|
|
# sha (optional) - the commit sha to download defaults to the tip of the default branch
|
2013-09-26 16:42:49 -04:00
|
|
|
# Example Request:
|
|
|
|
# GET /projects/:id/repository/archive
|
2013-12-20 14:12:44 -05:00
|
|
|
get ":id/repository/archive", requirements: { format: Gitlab::Regex.archive_formats_regex } do
|
2013-09-26 16:42:49 -04:00
|
|
|
authorize! :download_code, user_project
|
|
|
|
repo = user_project.repository
|
|
|
|
ref = params[:sha]
|
2013-12-20 14:12:44 -05:00
|
|
|
format = params[:format]
|
2013-09-26 16:42:49 -04:00
|
|
|
storage_path = Rails.root.join("tmp", "repositories")
|
|
|
|
|
2013-12-20 14:12:44 -05:00
|
|
|
file_path = repo.archive_repo(ref, storage_path, format)
|
2013-10-02 10:47:23 -04:00
|
|
|
if file_path && File.exists?(file_path)
|
|
|
|
data = File.open(file_path, 'rb').read
|
|
|
|
|
2013-12-20 14:12:44 -05:00
|
|
|
header["Content-Disposition"] = "attachment; filename=\"#{File.basename(file_path)}\""
|
|
|
|
|
|
|
|
content_type MIME::Types.type_for(file_path).first.content_type
|
2013-10-02 10:47:23 -04:00
|
|
|
|
|
|
|
env['api.format'] = :binary
|
|
|
|
|
2013-09-26 16:42:49 -04:00
|
|
|
present data
|
|
|
|
else
|
|
|
|
not_found!
|
|
|
|
end
|
|
|
|
end
|
2013-05-23 05:23:47 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|