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
|
2014-05-26 09:08:22 -04:00
|
|
|
|
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
|
2015-01-18 16:17:10 -05:00
|
|
|
get ':id/repository/tree' do
|
2013-06-06 11:01:03 -04:00
|
|
|
ref = params[:ref_name] || user_project.try(:default_branch) || 'master'
|
|
|
|
path = params[:path] || nil
|
|
|
|
|
2015-04-21 09:13:40 -04:00
|
|
|
commit = user_project.commit(ref)
|
2015-01-18 16:17:10 -05:00
|
|
|
not_found!('Tree') unless commit
|
|
|
|
|
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'
|
2016-02-01 05:33:22 -05:00
|
|
|
header *Gitlab::Workhorse.send_git_blob(repo, blob)
|
2013-12-23 04:37:38 -05:00
|
|
|
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
|
2015-01-18 16:17:10 -05:00
|
|
|
get ':id/repository/raw_blobs/:sha' do
|
2013-12-23 04:37:38 -05:00
|
|
|
ref = params[:sha]
|
|
|
|
|
|
|
|
repo = user_project.repository
|
|
|
|
|
2015-01-18 16:17:10 -05:00
|
|
|
begin
|
|
|
|
blob = Gitlab::Git::Blob.raw(repo, ref)
|
|
|
|
rescue
|
|
|
|
not_found! 'Blob'
|
|
|
|
end
|
2013-12-23 04:37:38 -05:00
|
|
|
|
2015-01-18 16:17:10 -05:00
|
|
|
not_found! 'Blob' unless blob
|
2013-12-23 04:37:38 -05:00
|
|
|
|
|
|
|
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
|
2016-02-01 05:33:22 -05:00
|
|
|
header *Gitlab::Workhorse.send_git_blob(repo, blob)
|
2013-05-23 05:23:47 -04:00
|
|
|
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
|
2015-01-18 16:17:10 -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
|
2015-01-18 16:17:10 -05:00
|
|
|
|
|
|
|
begin
|
2015-10-08 11:12:00 -04:00
|
|
|
ArchiveRepositoryService.new(
|
2015-03-24 08:15:59 -04:00
|
|
|
user_project,
|
|
|
|
params[:sha],
|
|
|
|
params[:format]
|
|
|
|
).execute
|
2015-01-18 16:17:10 -05:00
|
|
|
rescue
|
|
|
|
not_found!('File')
|
|
|
|
end
|
2013-09-26 16:42:49 -04:00
|
|
|
end
|
2014-05-26 09:08:22 -04:00
|
|
|
|
|
|
|
# Compare two branches, tags or commits
|
|
|
|
#
|
|
|
|
# Parameters:
|
|
|
|
# id (required) - The ID of a project
|
|
|
|
# from (required) - the commit sha or branch name
|
|
|
|
# to (required) - the commit sha or branch name
|
|
|
|
# Example Request:
|
|
|
|
# GET /projects/:id/repository/compare?from=master&to=feature
|
|
|
|
get ':id/repository/compare' do
|
|
|
|
authorize! :download_code, user_project
|
2014-05-27 04:16:50 -04:00
|
|
|
required_attributes! [:from, :to]
|
2014-07-29 07:29:59 -04:00
|
|
|
compare = Gitlab::Git::Compare.new(user_project.repository.raw_repository, params[:from], params[:to])
|
2014-05-26 09:08:22 -04:00
|
|
|
present compare, with: Entities::Compare
|
|
|
|
end
|
2014-07-02 02:49:10 -04:00
|
|
|
|
|
|
|
# Get repository contributors
|
|
|
|
#
|
|
|
|
# Parameters:
|
|
|
|
# id (required) - The ID of a project
|
|
|
|
# Example Request:
|
|
|
|
# GET /projects/:id/repository/contributors
|
|
|
|
get ':id/repository/contributors' do
|
|
|
|
authorize! :download_code, user_project
|
|
|
|
|
2015-01-18 16:17:10 -05:00
|
|
|
begin
|
|
|
|
present user_project.repository.contributors,
|
|
|
|
with: Entities::Contributor
|
|
|
|
rescue
|
|
|
|
not_found!
|
|
|
|
end
|
2014-07-02 02:49:10 -04:00
|
|
|
end
|
2013-05-23 05:23:47 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|