2018-09-29 18:34:47 -04:00
# frozen_string_literal: true
2013-12-20 14:12:44 -05:00
require 'mime/types'
2013-05-23 05:23:47 -04:00
module API
2020-10-14 20:08:42 -04:00
class Repositories < :: API :: Base
2017-01-16 23:45:07 -05:00
include PaginationParams
2020-10-23 05:08:41 -04:00
content_type :txt , 'text/plain'
2020-05-27 17:08:05 -04:00
helpers :: API :: Helpers :: HeadersHelpers
2013-09-29 09:04:57 -04:00
before { authorize! :download_code , user_project }
2013-05-23 05:23:47 -04:00
2020-10-30 14:08:56 -04:00
feature_category :source_code_management
2016-11-17 10:05:57 -05:00
params do
requires :id , type : String , desc : 'The ID of a project'
end
2018-11-08 07:18:17 -05:00
resource :projects , requirements : API :: NAMESPACE_OR_PROJECT_REQUIREMENTS do
2013-05-23 05:23:47 -04:00
helpers do
2020-02-22 07:08:58 -05:00
include :: Gitlab :: RateLimitHelpers
2013-05-23 05:23:47 -04:00
def handle_project_member_errors ( errors )
if errors [ :project_access ] . any?
error! ( errors [ :project_access ] , 422 )
end
2018-01-11 11:34:01 -05:00
2013-05-23 05:23:47 -04:00
not_found!
end
2017-03-01 15:22:29 -05:00
def assign_blob_vars!
2017-03-07 19:14:33 -05:00
authorize! :download_code , user_project
2017-03-01 15:22:29 -05:00
@repo = user_project . repository
begin
@blob = Gitlab :: Git :: Blob . raw ( @repo , params [ :sha ] )
2017-03-07 19:14:33 -05:00
@blob . load_all_data! ( @repo )
2017-03-01 15:22:29 -05:00
rescue
not_found! 'Blob'
end
not_found! 'Blob' unless @blob
end
2013-05-23 05:23:47 -04:00
end
2014-05-26 09:08:22 -04:00
2016-11-17 10:05:57 -05:00
desc 'Get a project repository tree' do
2017-10-05 04:48:05 -04:00
success Entities :: TreeObject
2016-11-17 10:05:57 -05:00
end
params do
2017-03-07 19:14:33 -05:00
optional :ref , type : String , desc : 'The name of a repository branch or tag, if not given the default branch is used'
2016-11-17 10:05:57 -05:00
optional :path , type : String , desc : 'The path of the tree'
optional :recursive , type : Boolean , default : false , desc : 'Used to get a recursive tree'
2017-01-16 23:45:07 -05:00
use :pagination
2016-11-17 10:05:57 -05:00
end
2015-01-18 16:17:10 -05:00
get ':id/repository/tree' do
2017-03-07 19:14:33 -05:00
ref = params [ :ref ] || user_project . try ( :default_branch ) || 'master'
2013-06-06 11:01:03 -04:00
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
2016-11-17 10:05:57 -05:00
tree = user_project . repository . tree ( commit . id , path , recursive : params [ :recursive ] )
2017-01-16 23:45:07 -05:00
entries = :: Kaminari . paginate_array ( tree . sorted_entries )
2017-10-05 04:48:05 -04:00
present paginate ( entries ) , with : Entities :: TreeObject
2013-06-06 11:01:03 -04:00
end
2017-03-07 19:14:33 -05:00
desc 'Get raw blob contents from the repository'
2016-11-17 10:05:57 -05:00
params do
2017-09-23 09:21:32 -04:00
requires :sha , type : String , desc : 'The commit hash'
2013-12-23 04:37:38 -05:00
end
2017-03-07 19:14:33 -05:00
get ':id/repository/blobs/:sha/raw' do
2017-03-01 15:22:29 -05:00
assign_blob_vars!
2013-12-23 04:37:38 -05:00
2020-05-27 17:08:05 -04:00
no_cache_headers
2017-03-01 15:22:29 -05:00
send_git_blob @repo , @blob
end
2013-12-23 04:37:38 -05:00
2017-03-07 19:14:33 -05:00
desc 'Get a blob from the repository'
2017-03-01 15:22:29 -05:00
params do
2017-09-23 09:21:32 -04:00
requires :sha , type : String , desc : 'The commit hash'
2017-03-01 15:22:29 -05:00
end
get ':id/repository/blobs/:sha' do
assign_blob_vars!
{
size : @blob . size ,
encoding : " base64 " ,
content : Base64 . strict_encode64 ( @blob . data ) ,
sha : @blob . id
}
2013-05-23 05:23:47 -04:00
end
2013-09-26 16:42:49 -04:00
2016-11-17 10:05:57 -05:00
desc 'Get an archive of the repository'
params do
optional :sha , type : String , desc : 'The commit sha of the archive to be downloaded'
optional :format , type : String , desc : 'The archive format'
end
2017-05-24 16:59:26 -04:00
get ':id/repository/archive' , requirements : { format : Gitlab :: PathRegex . archive_formats_regex } do
2020-02-22 07:08:58 -05:00
if archive_rate_limit_reached? ( current_user , user_project )
render_api_error! ( { error : :: Gitlab :: RateLimitHelpers :: ARCHIVE_RATE_LIMIT_REACHED_MESSAGE } , 429 )
end
2020-03-26 14:08:03 -04:00
not_acceptable! if Gitlab :: HotlinkingDetector . intercept_hotlinking? ( request )
2019-03-13 09:42:43 -04:00
send_git_archive user_project . repository , ref : params [ :sha ] , format : params [ :format ] , append_sha : true
rescue
not_found! ( 'File' )
2013-09-26 16:42:49 -04:00
end
2014-05-26 09:08:22 -04:00
2016-11-17 10:05:57 -05:00
desc 'Compare two branches, tags, or commits' do
success Entities :: Compare
end
params do
requires :from , type : String , desc : 'The commit, branch name, or tag name to start comparison'
requires :to , type : String , desc : 'The commit, branch name, or tag name to stop comparison'
2018-06-23 15:39:11 -04:00
optional :straight , type : Boolean , desc : 'Comparison method, `true` for direct comparison between `from` and `to` (`from`..`to`), `false` to compare using merge base (`from`...`to`)' , default : false
2016-11-17 10:05:57 -05:00
end
2014-05-26 09:08:22 -04:00
get ':id/repository/compare' do
2020-01-22 13:08:47 -05:00
compare = CompareService . new ( user_project , params [ :to ] ) . execute ( user_project , params [ :from ] , straight : params [ :straight ] )
if compare
present compare , with : Entities :: Compare
else
not_found! ( " Ref " )
end
2014-05-26 09:08:22 -04:00
end
2014-07-02 02:49:10 -04:00
2016-11-17 10:05:57 -05:00
desc 'Get repository contributors' do
success Entities :: Contributor
end
2017-01-16 23:45:07 -05:00
params do
use :pagination
2018-04-16 06:30:40 -04:00
optional :order_by , type : String , values : %w[ email name commits ] , default : 'commits' , desc : 'Return contributors ordered by `name` or `email` or `commits`'
optional :sort , type : String , values : %w[ asc desc ] , default : 'asc' , desc : 'Sort by asc (ascending) or desc (descending)'
2017-01-16 23:45:07 -05:00
end
2014-07-02 02:49:10 -04:00
get ':id/repository/contributors' do
2019-03-13 09:42:43 -04:00
contributors = :: Kaminari . paginate_array ( user_project . repository . contributors ( order_by : params [ :order_by ] , sort : params [ :sort ] ) )
present paginate ( contributors ) , with : Entities :: Contributor
rescue
not_found!
2014-07-02 02:49:10 -04:00
end
2018-07-31 10:38:03 -04:00
desc 'Get the common ancestor between commits' do
success Entities :: Commit
end
params do
2020-06-29 17:09:07 -04:00
requires :refs , type : Array [ String ] , coerce_with : :: API :: Validations :: Types :: CommaSeparatedToArray . coerce
2018-07-31 10:38:03 -04:00
end
get ':id/repository/merge_base' do
refs = params [ :refs ]
2018-10-11 10:27:04 -04:00
if refs . size < 2
render_api_error! ( 'Provide at least 2 refs' , 400 )
2018-07-31 10:38:03 -04:00
end
merge_base = Gitlab :: Git :: MergeBase . new ( user_project . repository , refs )
if merge_base . unknown_refs . any?
ref_noun = 'ref' . pluralize ( merge_base . unknown_refs . size )
message = " Could not find #{ ref_noun } : #{ merge_base . unknown_refs . join ( ', ' ) } "
render_api_error! ( message , 400 )
end
if merge_base . commit
present merge_base . commit , with : Entities :: Commit
else
not_found! ( " Merge Base " )
end
end
2013-05-23 05:23:47 -04:00
end
end
end