2014-09-02 18:07:02 +05:30
module BlobHelper
2016-08-24 12:49:21 +05:30
def highlight ( blob_name , blob_content , repository : nil , plain : false )
highlighted = Gitlab :: Highlight . highlight ( blob_name , blob_content , plain : plain , repository : repository )
raw %( <pre class="code highlight"><code> #{ highlighted } </code></pre> )
2014-09-02 18:07:02 +05:30
end
def no_highlight_files
2015-04-26 12:48:37 +05:30
%w( credits changelog news copying copyright license authors )
end
2016-01-14 18:37:52 +05:30
def edit_blob_link ( project = @project , ref = @ref , path = @path , options = { } )
return unless current_user
2016-09-13 17:45:13 +05:30
blob = options . delete ( :blob )
blob || = project . repository . blob_at ( ref , path ) rescue nil
2016-01-14 18:37:52 +05:30
2016-09-13 17:45:13 +05:30
return unless blob
2016-01-14 18:37:52 +05:30
edit_path = namespace_project_edit_blob_path ( project . namespace , project ,
tree_join ( ref , path ) ,
2016-09-13 17:45:13 +05:30
options [ :link_opts ] )
2016-01-14 18:37:52 +05:30
2016-01-29 22:53:50 +05:30
if ! on_top_of_branch? ( project , ref )
2016-06-02 11:05:42 +05:30
button_tag " Edit " , class : " btn disabled has-tooltip btn-file-option " , title : " You can only edit files when you are on a branch " , data : { container : 'body' }
2016-01-29 22:53:50 +05:30
elsif can_edit_blob? ( blob , project , ref )
2016-08-24 12:49:21 +05:30
link_to " Edit " , edit_path , class : 'btn btn-sm'
2016-01-14 18:37:52 +05:30
elsif can? ( current_user , :fork_project , project )
continue_params = {
to : edit_path ,
notice : edit_in_new_fork_notice ,
notice_now : edit_in_new_fork_notice_now
}
2016-04-02 18:10:28 +05:30
fork_path = namespace_project_forks_path ( project . namespace , project , namespace_key : current_user . namespace . id , continue : continue_params )
2016-01-14 18:37:52 +05:30
2016-06-02 11:05:42 +05:30
link_to " Edit " , fork_path , class : 'btn btn-file-option' , method : :post
2016-01-14 18:37:52 +05:30
end
end
def modify_file_link ( project = @project , ref = @ref , path = @path , label : , action : , btn_class : , modal_type : )
return unless current_user
blob = project . repository . blob_at ( ref , path ) rescue nil
return unless blob
2016-01-29 22:53:50 +05:30
if ! on_top_of_branch? ( project , ref )
2016-06-02 11:05:42 +05:30
button_tag label , class : " btn btn- #{ btn_class } disabled has-tooltip " , title : " You can only #{ action } files when you are on a branch " , data : { container : 'body' }
2016-01-14 18:37:52 +05:30
elsif blob . lfs_pointer?
2016-06-02 11:05:42 +05:30
button_tag label , class : " btn btn- #{ btn_class } disabled has-tooltip " , title : " It is not possible to #{ action } files that are stored in LFS using the web interface " , data : { container : 'body' }
2016-01-29 22:53:50 +05:30
elsif can_edit_blob? ( blob , project , ref )
2016-01-14 18:37:52 +05:30
button_tag label , class : " btn btn- #{ btn_class } " , 'data-target' = > " # modal- #{ modal_type } -blob " , 'data-toggle' = > 'modal'
elsif can? ( current_user , :fork_project , project )
continue_params = {
to : request . fullpath ,
notice : edit_in_new_fork_notice + " Try to #{ action } this file again. " ,
notice_now : edit_in_new_fork_notice_now
}
2016-04-02 18:10:28 +05:30
fork_path = namespace_project_forks_path ( project . namespace , project , namespace_key : current_user . namespace . id , continue : continue_params )
2016-01-14 18:37:52 +05:30
link_to label , fork_path , class : " btn btn- #{ btn_class } " , method : :post
end
end
def replace_blob_link ( project = @project , ref = @ref , path = @path )
modify_file_link (
project ,
ref ,
path ,
label : " Replace " ,
action : " replace " ,
btn_class : " default " ,
modal_type : " upload "
)
end
def delete_blob_link ( project = @project , ref = @ref , path = @path )
modify_file_link (
project ,
ref ,
path ,
label : " Delete " ,
action : " delete " ,
btn_class : " remove " ,
modal_type : " remove "
)
2015-12-23 02:04:40 +05:30
end
2016-01-14 18:37:52 +05:30
def can_edit_blob? ( blob , project = @project , ref = @ref )
! blob . lfs_pointer? && can_edit_tree? ( project , ref )
2015-04-26 12:48:37 +05:30
end
def leave_edit_message
" Leave edit mode? \n All unsaved changes will be lost. "
end
def editing_preview_title ( filename )
2015-09-11 14:41:01 +05:30
if Gitlab :: MarkupHelper . previewable? ( filename )
2015-04-26 12:48:37 +05:30
'Preview'
else
2015-12-23 02:04:40 +05:30
'Preview Changes'
2015-04-26 12:48:37 +05:30
end
end
# Return an image icon depending on the file mode and extension
#
# mode - File unix mode
# mode - File name
def blob_icon ( mode , name )
icon ( " #{ file_type_icon_class ( 'file' , mode , name ) } fw " )
2014-09-02 18:07:02 +05:30
end
2015-12-23 02:04:40 +05:30
2016-01-14 18:37:52 +05:30
def blob_text_viewable? ( blob )
2016-06-16 23:09:34 +05:30
blob && blob . text? && ! blob . lfs_pointer? && ! blob . only_display_raw?
2015-12-23 02:04:40 +05:30
end
def blob_size ( blob )
if blob . lfs_pointer?
blob . lfs_size
else
blob . size
end
end
2016-04-02 18:10:28 +05:30
# SVGs can contain malicious JavaScript; only include whitelisted
# elements and attributes. Note that this whitelist is by no means complete
# and may omit some elements.
def sanitize_svg ( blob )
2016-06-02 11:05:42 +05:30
blob . data = Gitlab :: Sanitizers :: SVG . clean ( blob . data )
2016-04-02 18:10:28 +05:30
blob
end
2016-06-02 11:05:42 +05:30
# If we blindly set the 'real' content type when serving a Git blob we
# are enabling XSS attacks. An attacker could upload e.g. a Javascript
# file to a Git repository, trick the browser of a victim into
# downloading the blob, and then the 'application/javascript' content
# type would tell the browser to execute the attacker's Javascript. By
# overriding the content type and setting it to 'text/plain' (in the
# example of Javascript) we tell the browser of the victim not to
# execute untrusted data.
def safe_content_type ( blob )
if blob . text?
'text/plain; charset=utf-8'
elsif blob . image?
blob . content_type
else
'application/octet-stream'
end
end
def cached_blob?
stale = stale? ( etag : @blob . id ) # The #stale? method sets cache headers.
# Because we are opionated we set the cache headers ourselves.
response . cache_control [ :public ] = @project . public?
if @ref && @commit && @ref == @commit . id
# This is a link to a commit by its commit SHA. That means that the blob
# is immutable. The only reason to invalidate the cache is if the commit
# was deleted or if the user lost access to the repository.
response . cache_control [ :max_age ] = Blob :: CACHE_TIME_IMMUTABLE
else
# A branch or tag points at this blob. That means that the expected blob
# value may change over time.
response . cache_control [ :max_age ] = Blob :: CACHE_TIME
end
response . etag = @blob . id
! stale
end
def licenses_for_select
return @licenses_for_select if defined? ( @licenses_for_select )
licenses = Licensee :: License . all
@licenses_for_select = {
2016-06-22 15:30:34 +05:30
Popular : licenses . select ( & :featured ) . map { | license | { name : license . name , id : license . key } } ,
Other : licenses . reject ( & :featured ) . map { | license | { name : license . name , id : license . key } }
2016-06-02 11:05:42 +05:30
}
end
2016-09-13 17:45:13 +05:30
def selected_template ( issuable )
templates = issuable_templates ( issuable )
params [ :issuable_template ] if templates . include? ( params [ :issuable_template ] )
end
def can_add_template? ( issuable )
names = issuable_templates ( issuable )
names . empty? && can? ( current_user , :push_code , @project ) && ! @project . private?
end
def merge_request_template_names
@merge_request_templates || = Gitlab :: Template :: MergeRequestTemplate . dropdown_names ( ref_project )
end
def issue_template_names
@issue_templates || = Gitlab :: Template :: IssueTemplate . dropdown_names ( ref_project )
end
def issuable_templates ( issuable )
@issuable_templates || =
if issuable . is_a? ( Issue )
issue_template_names
elsif issuable . is_a? ( MergeRequest )
merge_request_template_names
end
end
def ref_project
@ref_project || = @target_project || @project
end
2016-06-02 11:05:42 +05:30
def gitignore_names
2016-09-13 17:45:13 +05:30
@gitignore_names || = Gitlab :: Template :: GitignoreTemplate . dropdown_names
2016-06-22 15:30:34 +05:30
end
2016-06-02 11:05:42 +05:30
2016-06-22 15:30:34 +05:30
def gitlab_ci_ymls
2016-09-13 17:45:13 +05:30
@gitlab_ci_ymls || = Gitlab :: Template :: GitlabCiYmlTemplate . dropdown_names
end
def blob_editor_paths
{
'relative-url-root' = > Rails . application . config . relative_url_root ,
'assets-prefix' = > Gitlab :: Application . config . assets . prefix ,
'blob-language' = > @blob && @blob . language . try ( :ace_mode )
}
2016-06-02 11:05:42 +05:30
end
2014-09-02 18:07:02 +05:30
end