Module: BlobHelper
- Included in:
- BlobPresenter, DiffFileBaseEntity, MergeRequestCurrentUserEntity, ProjectPresenter, TreeHelper
- Defined in:
- app/helpers/blob_helper.rb
Instance Method Summary collapse
- #blob_editor_paths(project, method) ⇒ Object
-
#blob_icon(mode, name) ⇒ Object
Return an image icon depending on the file mode and extension.
- #blob_raw_path(**kwargs) ⇒ Object
- #blob_raw_url(**kwargs) ⇒ Object
- #blob_render_error_options(viewer) ⇒ Object
- #blob_render_error_reason(viewer) ⇒ Object
-
#can_modify_blob?(blob, project = @project, ref = @ref) ⇒ Boolean
Used for single file Web Editor, Delete and Replace UI actions.
-
#can_modify_blob_with_web_ide?(blob, project = @project) ⇒ Boolean
Used for WebIDE editor where editing is possible even if ref is not on top of the branch.
- #contribution_options(project) ⇒ Object
- #copy_blob_source_button(blob) ⇒ Object
- #copy_file_path_button(file_path) ⇒ Object
- #dockerfile_names(project) ⇒ Object
- #download_blob_button(blob) ⇒ Object
- #edit_blob_button(project = @project, ref = @ref, path = @path, options = {}) ⇒ Object
- #edit_blob_fork_params(path, with_notice: true) ⇒ Object
- #edit_blob_path(project = @project, ref = @ref, path = @path, options = {}) ⇒ Object
- #edit_button_tag(blob, common_classes, text, edit_path, project, ref) ⇒ Object
- #edit_disabled_button_tag(button_text, common_classes) ⇒ Object
- #edit_fork_button_tag(common_classes, project, label, params, action = 'edit') ⇒ Object
- #edit_link_tag(link_text, edit_path, common_classes) ⇒ Object
- #editing_preview_title(filename) ⇒ Object
- #encode_ide_path(path) ⇒ Object
- #fork_and_edit_path(project = @project, ref = @ref, path = @path, options = {}) ⇒ Object
- #fork_path_for_current_user(project, path, with_notice: true) ⇒ Object
- #gitignore_names(project) ⇒ Object
- #gitlab_ci_ymls(project) ⇒ Object
- #ide_edit_path(project = @project, ref = @ref, path = @path) ⇒ Object
- #ide_fork_and_edit_path(project = @project, ref = @ref, path = @path, with_notice: true) ⇒ Object
- #ide_merge_request_path(merge_request, path = '') ⇒ Object
- #leave_edit_message ⇒ Object
- #licenses_for_select(project) ⇒ Object
- #open_raw_blob_button(blob) ⇒ Object
- #parent_dir_raw_path ⇒ Object
- #readable_blob(options, path, project, ref) ⇒ Object
- #ref_project ⇒ Object
-
#sanitize_svg_data(data) ⇒ Object
SVGs can contain malicious JavaScript; only include allowlisted elements and attributes.
- #vue_blob_app_data(project, blob, ref) ⇒ Object
- #vue_blob_header_app_data(project, blob, ref) ⇒ Object
Instance Method Details
#blob_editor_paths(project, method) ⇒ Object
153 154 155 156 157 158 159 160 161 162 163 164 |
# File 'app/helpers/blob_helper.rb', line 153 def blob_editor_paths(project, method) { 'relative-url-root' => Rails.application.config.relative_url_root, 'assets-prefix' => Gitlab::Application.config.assets.prefix, 'blob-filename' => @blob && @blob.path, 'project-id' => project.id, 'project-path': project.full_path, 'is-markdown' => @blob && @blob.path && Gitlab::MarkupHelper.gitlab_markdown?(@blob.path), 'preview-markdown-path' => preview_markdown_path(project), 'form-method' => method } end |
#blob_icon(mode, name) ⇒ Object
Return an image icon depending on the file mode and extension
mode - File unix mode mode - File name
104 105 106 |
# File 'app/helpers/blob_helper.rb', line 104 def blob_icon(mode, name) sprite_icon(file_type_icon_class('file', mode, name)) end |
#blob_raw_path(**kwargs) ⇒ Object
118 119 120 |
# File 'app/helpers/blob_helper.rb', line 118 def blob_raw_path(**kwargs) blob_raw_url(**kwargs, only_path: true) end |
#blob_raw_url(**kwargs) ⇒ Object
108 109 110 111 112 113 114 115 116 |
# File 'app/helpers/blob_helper.rb', line 108 def blob_raw_url(**kwargs) if @build && @entry raw_project_job_artifacts_url(@project, @build, path: @entry.path, **kwargs) elsif @snippet gitlab_raw_snippet_url(@snippet) elsif @blob project_raw_url(@project, @id, **kwargs) end end |
#blob_render_error_options(viewer) ⇒ Object
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 |
# File 'app/helpers/blob_helper.rb', line 211 def (viewer) error = viewer.render_error = [] if error == :collapsed << link_to('load it anyway', url_for(safe_params.merge(viewer: viewer.type, expanded: true, format: nil))) end # If the error is `:server_side_but_stored_externally`, the simple viewer will show the same error, # so don't bother switching. if viewer.rich? && viewer.blob.rendered_as_text? && error != :server_side_but_stored_externally << link_to('view the source', '#', class: 'js-blob-viewer-switch-btn', data: { viewer: 'simple' }) end << link_to('download it', blob_raw_path, target: '_blank', rel: 'noopener noreferrer') end |
#blob_render_error_reason(viewer) ⇒ Object
193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
# File 'app/helpers/blob_helper.rb', line 193 def blob_render_error_reason(viewer) case viewer.render_error when :collapsed "it is larger than #{number_to_human_size(viewer.collapse_limit)}" when :too_large "it is larger than #{number_to_human_size(viewer.size_limit)}" when :server_side_but_stored_externally case viewer.blob.external_storage when :lfs 'it is stored in LFS' when :build_artifact 'it is stored as a job artifact' else 'it is stored externally' end end end |
#can_modify_blob?(blob, project = @project, ref = @ref) ⇒ Boolean
Used for single file Web Editor, Delete and Replace UI actions. can_edit_tree checks if ref is on top of the branch.
79 80 81 |
# File 'app/helpers/blob_helper.rb', line 79 def can_modify_blob?(blob, project = @project, ref = @ref) !blob.stored_externally? && can_edit_tree?(project, ref) end |
#can_modify_blob_with_web_ide?(blob, project = @project) ⇒ Boolean
Used for WebIDE editor where editing is possible even if ref is not on top of the branch.
84 85 86 |
# File 'app/helpers/blob_helper.rb', line 84 def can_modify_blob_with_web_ide?(blob, project = @project) !blob.stored_externally? && can_collaborate_with_project?(project) end |
#contribution_options(project) ⇒ Object
230 231 232 233 234 235 236 237 238 239 |
# File 'app/helpers/blob_helper.rb', line 230 def (project) = [] << link_to("submit an issue", new_project_issue_path(project)) if can?(current_user, :create_issue, project) merge_project = merge_request_source_project_for_project(@project) << link_to("create a merge request", project_new_merge_request_path(project)) if merge_project end |
#copy_blob_source_button(blob) ⇒ Object
170 171 172 173 174 175 176 |
# File 'app/helpers/blob_helper.rb', line 170 def (blob) return unless blob.rendered_as_text?(ignore_errors: false) content_tag(:span, class: 'btn-group has-tooltip js-copy-blob-source-btn-tooltip') do (target: ".blob-content[data-blob-id='#{blob.id}'] > pre", class: "js-copy-blob-source-btn", size: :medium) end end |
#copy_file_path_button(file_path) ⇒ Object
166 167 168 |
# File 'app/helpers/blob_helper.rb', line 166 def (file_path) (text: file_path, gfm: "`#{file_path}`", title: _('Copy file path')) end |
#dockerfile_names(project) ⇒ Object
149 150 151 |
# File 'app/helpers/blob_helper.rb', line 149 def dockerfile_names(project) @dockerfile_names ||= TemplateFinder.all_template_names(project, :dockerfiles) end |
#download_blob_button(blob) ⇒ Object
186 187 188 189 190 191 |
# File 'app/helpers/blob_helper.rb', line 186 def (blob) return if blob.empty? title = _('Download') render Pajamas::ButtonComponent.new(href: external_storage_url_or_path(blob_raw_path(inline: false)), target: '_blank', icon: 'download', button_options: { download: @path, title: title, class: 'has-tooltip', rel: 'noopener noreferrer', data: { container: 'body' } }) end |
#edit_blob_button(project = @project, ref = @ref, path = @path, options = {}) ⇒ Object
62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
# File 'app/helpers/blob_helper.rb', line 62 def (project = @project, ref = @ref, path = @path, = {}) return unless blob = readable_blob(, path, project, ref) common_classes = "js-edit-blob gl-ml-3 #{[:extra_class]}" ( blob, common_classes, _('Edit'), edit_blob_path(project, ref, path, ), project, ref ) end |
#edit_blob_fork_params(path, with_notice: true) ⇒ Object
251 252 253 254 255 256 257 |
# File 'app/helpers/blob_helper.rb', line 251 def edit_blob_fork_params(path, with_notice: true) { to: path, notice: (edit_in_new_fork_notice if with_notice), notice_now: (edit_in_new_fork_notice_now if with_notice) }.compact end |
#edit_blob_path(project = @project, ref = @ref, path = @path, options = {}) ⇒ Object
4 5 6 |
# File 'app/helpers/blob_helper.rb', line 4 def edit_blob_path(project = @project, ref = @ref, path = @path, = {}) project_edit_blob_path(project, tree_join(ref, path), [:link_opts]) end |
#edit_button_tag(blob, common_classes, text, edit_path, project, ref) ⇒ Object
283 284 285 286 287 288 289 290 291 292 |
# File 'app/helpers/blob_helper.rb', line 283 def (blob, common_classes, text, edit_path, project, ref) if !on_top_of_branch?(project, ref) (text, common_classes) # This condition only applies to users who are logged in elsif !current_user || (current_user && can_modify_blob?(blob, project, ref)) edit_link_tag(text, edit_path, common_classes) elsif can?(current_user, :fork_project, project) && can?(current_user, :create_merge_request_in, project) (common_classes, project, text, edit_blob_fork_params(edit_path)) end end |
#edit_disabled_button_tag(button_text, common_classes) ⇒ Object
267 268 269 270 271 272 273 274 275 |
# File 'app/helpers/blob_helper.rb', line 267 def (, common_classes) = render Pajamas::ButtonComponent.new(disabled: true, variant: :confirm, button_options: { class: common_classes }) do end # Disabled buttons with tooltips should have the tooltip attached # to a wrapper element https://bootstrap-vue.org/docs/components/tooltip#disabled-elements content_tag(:span, , class: 'has-tooltip', title: _('You can only edit files when you are on a branch'), data: { container: 'body' }) end |
#edit_fork_button_tag(common_classes, project, label, params, action = 'edit') ⇒ Object
259 260 261 262 263 264 265 |
# File 'app/helpers/blob_helper.rb', line 259 def (common_classes, project, label, params, action = 'edit') fork_path = project_forks_path(project, namespace_key: current_user.namespace.id, continue: params) render Pajamas::ButtonComponent.new(variant: :confirm, button_options: { class: "#{common_classes} js-edit-blob-link-fork-toggler", data: { action: action, fork_path: fork_path } }) do label end end |
#edit_link_tag(link_text, edit_path, common_classes) ⇒ Object
277 278 279 280 281 |
# File 'app/helpers/blob_helper.rb', line 277 def edit_link_tag(link_text, edit_path, common_classes) render Pajamas::ButtonComponent.new(variant: :confirm, href: edit_path, button_options: { class: common_classes }) do link_text end end |
#editing_preview_title(filename) ⇒ Object
92 93 94 95 96 97 98 |
# File 'app/helpers/blob_helper.rb', line 92 def editing_preview_title(filename) if Gitlab::MarkupHelper.previewable?(filename) _('Preview') else _('Preview changes') end end |
#encode_ide_path(path) ⇒ Object
58 59 60 |
# File 'app/helpers/blob_helper.rb', line 58 def encode_ide_path(path) ERB::Util.url_encode(path).gsub('%2F', '/') end |
#fork_and_edit_path(project = @project, ref = @ref, path = @path, options = {}) ⇒ Object
44 45 46 |
# File 'app/helpers/blob_helper.rb', line 44 def fork_and_edit_path(project = @project, ref = @ref, path = @path, = {}) fork_path_for_current_user(project, edit_blob_path(project, ref, path, )) end |
#fork_path_for_current_user(project, path, with_notice: true) ⇒ Object
48 49 50 51 52 53 54 55 56 |
# File 'app/helpers/blob_helper.rb', line 48 def fork_path_for_current_user(project, path, with_notice: true) return unless current_user project_forks_path( project, namespace_key: current_user.namespace&.id, continue: edit_blob_fork_params(path, with_notice: with_notice) ) end |
#gitignore_names(project) ⇒ Object
141 142 143 |
# File 'app/helpers/blob_helper.rb', line 141 def gitignore_names(project) @gitignore_names ||= TemplateFinder.all_template_names(project, :gitignores) end |
#gitlab_ci_ymls(project) ⇒ Object
145 146 147 |
# File 'app/helpers/blob_helper.rb', line 145 def gitlab_ci_ymls(project) @gitlab_ci_ymls ||= TemplateFinder.all_template_names(project, :gitlab_ci_ymls) end |
#ide_edit_path(project = @project, ref = @ref, path = @path) ⇒ Object
8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# File 'app/helpers/blob_helper.rb', line 8 def ide_edit_path(project = @project, ref = @ref, path = @path) project_path = if !current_user || can?(current_user, :push_code, project) project.full_path else # We currently always fork to the user's namespace # in edit_fork_button_tag "#{current_user.namespace.full_path}/#{project.path}" end segments = [ide_path, 'project', project_path, 'edit', encode_ide_path(ref)] segments.concat(['-', encode_ide_path(path)]) if path.present? File.join(segments) end |
#ide_fork_and_edit_path(project = @project, ref = @ref, path = @path, with_notice: true) ⇒ Object
40 41 42 |
# File 'app/helpers/blob_helper.rb', line 40 def ide_fork_and_edit_path(project = @project, ref = @ref, path = @path, with_notice: true) fork_path_for_current_user(project, ide_edit_path(project, ref, path), with_notice: with_notice) end |
#ide_merge_request_path(merge_request, path = '') ⇒ Object
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
# File 'app/helpers/blob_helper.rb', line 23 def ide_merge_request_path(merge_request, path = '') target_project = merge_request.target_project source_project = merge_request.source_project if merge_request.merged? branch = merge_request.target_branch_exists? ? merge_request.target_branch : target_project.default_branch return ide_edit_path(target_project, branch, path) end params = { target_project: target_project.full_path } if target_project != source_project result = File.join(ide_path, 'project', source_project.full_path, 'merge_requests', merge_request.to_param) result += "?#{params.to_query}" unless params.nil? result end |
#leave_edit_message ⇒ Object
88 89 90 |
# File 'app/helpers/blob_helper.rb', line 88 def _("Leave edit mode? All unsaved changes will be lost.") end |
#licenses_for_select(project) ⇒ Object
137 138 139 |
# File 'app/helpers/blob_helper.rb', line 137 def licenses_for_select(project) @licenses_for_select ||= TemplateFinder.all_template_names(project, :licenses) end |
#open_raw_blob_button(blob) ⇒ Object
178 179 180 181 182 183 184 |
# File 'app/helpers/blob_helper.rb', line 178 def (blob) return if blob.empty? return if blob.binary? || blob.stored_externally? title = _('Open raw') render Pajamas::ButtonComponent.new(href: external_storage_url_or_path(blob_raw_path), target: '_blank', icon: 'doc-code', button_options: { title: title, class: 'has-tooltip', rel: 'noopener noreferrer', data: { container: 'body' } }) end |
#parent_dir_raw_path ⇒ Object
122 123 124 |
# File 'app/helpers/blob_helper.rb', line 122 def parent_dir_raw_path "#{blob_raw_path.rpartition('/').first}/" end |
#readable_blob(options, path, project, ref) ⇒ Object
241 242 243 244 245 246 247 248 249 |
# File 'app/helpers/blob_helper.rb', line 241 def readable_blob(, path, project, ref) blob = .fetch(:blob) do project.repository.blob_at(ref, path) rescue StandardError nil end blob if blob&.readable_text? end |
#ref_project ⇒ Object
133 134 135 |
# File 'app/helpers/blob_helper.rb', line 133 def ref_project @ref_project ||= @target_project || @project end |
#sanitize_svg_data(data) ⇒ Object
SVGs can contain malicious JavaScript; only include allowlisted elements and attributes. Note that this allowlist is by no means complete and may omit some elements.
129 130 131 |
# File 'app/helpers/blob_helper.rb', line 129 def sanitize_svg_data(data) Gitlab::Sanitizers::SVG.clean(data) end |
#vue_blob_app_data(project, blob, ref) ⇒ Object
294 295 296 297 298 299 300 301 302 303 304 |
# File 'app/helpers/blob_helper.rb', line 294 def vue_blob_app_data(project, blob, ref) { blob_path: blob.path, project_path: project.full_path, resource_id: project.to_global_id, user_id: current_user.present? ? current_user.to_global_id : '', target_branch: selected_branch, original_branch: ref, can_download_code: can?(current_user, :download_code, project).to_s } end |
#vue_blob_header_app_data(project, blob, ref) ⇒ Object
306 307 308 309 310 311 312 313 314 315 316 317 318 319 |
# File 'app/helpers/blob_helper.rb', line 306 def vue_blob_header_app_data(project, blob, ref) { blob_path: blob.path, breadcrumbs: , escaped_ref: ActionDispatch::Journey::Router::Utils.escape_path(ref), history_link: project_commits_path(project, ref), project_id: project.id, project_root_path: project_path(project), project_path: project.full_path, project_short_path: project.path, ref_type: @ref_type.to_s, ref: ref } end |