2018-12-05 23:21:45 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-09-02 18:07:02 +05:30
|
|
|
module TreeHelper
|
2021-01-03 14:25:43 +05:30
|
|
|
include BlobHelper
|
|
|
|
include WebIdeButtonHelper
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
# Return an image icon depending on the file type and mode
|
2014-09-02 18:07:02 +05:30
|
|
|
#
|
|
|
|
# type - String type of the tree item; either 'folder' or 'file'
|
2015-04-26 12:48:37 +05:30
|
|
|
# mode - File unix mode
|
|
|
|
# name - File name
|
|
|
|
def tree_icon(type, mode, name)
|
2021-01-03 14:25:43 +05:30
|
|
|
sprite_icon(file_type_icon_class(type, mode, name))
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
# Simple shortcut to File.join
|
|
|
|
def tree_join(*args)
|
|
|
|
File.join(*args)
|
|
|
|
end
|
|
|
|
|
2015-12-23 02:04:40 +05:30
|
|
|
def on_top_of_branch?(project = @project, ref = @ref)
|
2017-08-17 22:00:37 +05:30
|
|
|
project.repository.branch_exists?(ref)
|
2015-12-23 02:04:40 +05:30
|
|
|
end
|
|
|
|
|
2016-01-14 18:37:52 +05:30
|
|
|
def can_edit_tree?(project = nil, ref = nil)
|
2015-04-26 12:48:37 +05:30
|
|
|
project ||= @project
|
|
|
|
ref ||= @ref
|
2016-01-14 18:37:52 +05:30
|
|
|
|
2015-12-23 02:04:40 +05:30
|
|
|
return false unless on_top_of_branch?(project, ref)
|
|
|
|
|
2018-03-27 19:54:05 +05:30
|
|
|
can_collaborate_with_project?(project, ref: ref)
|
2015-12-23 02:04:40 +05:30
|
|
|
end
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2015-12-23 02:04:40 +05:30
|
|
|
def tree_edit_branch(project = @project, ref = @ref)
|
2016-01-14 18:37:52 +05:30
|
|
|
return unless can_edit_tree?(project, ref)
|
|
|
|
|
2018-03-27 19:54:05 +05:30
|
|
|
if user_access(project).can_push_to_branch?(ref)
|
2016-01-14 18:37:52 +05:30
|
|
|
ref
|
|
|
|
else
|
2021-01-29 00:20:46 +05:30
|
|
|
patch_branch_name(ref)
|
2016-01-14 18:37:52 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-01-29 00:20:46 +05:30
|
|
|
# Generate a patch branch name that should look like:
|
|
|
|
# `username-branchname-patch-epoch`
|
|
|
|
# where `epoch` is the last 5 digits of the time since epoch (in
|
|
|
|
# milliseconds)
|
|
|
|
#
|
|
|
|
# Note: this correlates with how the WebIDE formats the branch name
|
|
|
|
# and if this implementation changes, so should the `placeholderBranchName`
|
|
|
|
# definition in app/assets/javascripts/ide/stores/modules/commit/getters.js
|
|
|
|
def patch_branch_name(ref)
|
|
|
|
return unless current_user
|
|
|
|
|
|
|
|
username = current_user.username
|
|
|
|
epoch = time_in_milliseconds.to_s.last(5)
|
|
|
|
|
|
|
|
"#{username}-#{ref}-patch-#{epoch}"
|
|
|
|
end
|
|
|
|
|
2016-01-14 18:37:52 +05:30
|
|
|
def edit_in_new_fork_notice_now
|
2019-07-07 11:18:12 +05:30
|
|
|
_("You're not allowed to make changes to this project directly. "\
|
|
|
|
"A fork of this project is being created that you can make changes in, so you can submit a merge request.")
|
2016-01-14 18:37:52 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def edit_in_new_fork_notice
|
2019-07-07 11:18:12 +05:30
|
|
|
_("You're not allowed to make changes to this project directly. "\
|
|
|
|
"A fork of this project has been created that you can make changes in, so you can submit a merge request.")
|
2016-01-14 18:37:52 +05:30
|
|
|
end
|
|
|
|
|
2018-03-27 19:54:05 +05:30
|
|
|
def edit_in_new_fork_notice_action(action)
|
2019-07-07 11:18:12 +05:30
|
|
|
edit_in_new_fork_notice + _(" Try to %{action} this file again.") % { action: action }
|
2018-03-27 19:54:05 +05:30
|
|
|
end
|
|
|
|
|
2016-01-14 18:37:52 +05:30
|
|
|
def commit_in_fork_help
|
2022-01-26 12:08:38 +05:30
|
|
|
_("GitLab will create a branch in your fork and start a merge request.")
|
2018-03-27 19:54:05 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def commit_in_single_accessible_branch
|
2018-10-15 14:42:47 +05:30
|
|
|
branch_name = ERB::Util.html_escape(selected_branch)
|
2018-03-27 19:54:05 +05:30
|
|
|
|
|
|
|
message = _("Your changes can be committed to %{branch_name} because a merge "\
|
|
|
|
"request is open.") % { branch_name: "<strong>#{branch_name}</strong>" }
|
|
|
|
|
|
|
|
message.html_safe
|
2016-01-14 18:37:52 +05:30
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def path_breadcrumbs(max_links = 6)
|
2014-09-02 18:07:02 +05:30
|
|
|
if @path.present?
|
|
|
|
part_path = ""
|
2015-04-26 12:48:37 +05:30
|
|
|
parts = @path.split('/')
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
yield('..', File.join(*parts.first(parts.count - 2))) if parts.count > max_links
|
2014-09-02 18:07:02 +05:30
|
|
|
|
|
|
|
parts.each do |part|
|
|
|
|
part_path = File.join(part_path, part) unless part_path.empty?
|
|
|
|
part_path = part if part_path.empty?
|
|
|
|
|
2015-12-23 02:04:40 +05:30
|
|
|
next if parts.count > max_links && !parts.last(2).include?(part)
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
yield(part, part_path)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-03-27 19:54:05 +05:30
|
|
|
def selected_branch
|
|
|
|
@branch_name || tree_edit_branch
|
|
|
|
end
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
|
|
def relative_url_root
|
|
|
|
Gitlab.config.gitlab.relative_url_root.presence || '/'
|
|
|
|
end
|
2019-09-30 21:07:59 +05:30
|
|
|
|
|
|
|
def breadcrumb_data_attributes
|
|
|
|
attrs = {
|
2021-04-29 21:17:54 +05:30
|
|
|
selected_branch: selected_branch,
|
|
|
|
can_push_code: can?(current_user, :push_code, @project).to_s,
|
2019-09-30 21:07:59 +05:30
|
|
|
can_collaborate: can_collaborate_with_project?(@project).to_s,
|
2020-01-01 13:55:28 +05:30
|
|
|
new_blob_path: project_new_blob_path(@project, @ref),
|
|
|
|
upload_path: project_create_blob_path(@project, @ref),
|
|
|
|
new_dir_path: project_create_dir_path(@project, @ref),
|
2019-09-30 21:07:59 +05:30
|
|
|
new_branch_path: new_project_branch_path(@project),
|
|
|
|
new_tag_path: new_project_tag_path(@project),
|
|
|
|
can_edit_tree: can_edit_tree?.to_s
|
|
|
|
}
|
|
|
|
|
|
|
|
if can?(current_user, :fork_project, @project) && can?(current_user, :create_merge_request_in, @project)
|
|
|
|
continue_param = {
|
|
|
|
to: project_new_blob_path(@project, @id),
|
|
|
|
notice: edit_in_new_fork_notice,
|
|
|
|
notice_now: edit_in_new_fork_notice_now
|
|
|
|
}
|
|
|
|
|
|
|
|
attrs.merge!(
|
|
|
|
fork_new_blob_path: project_forks_path(@project, namespace_key: current_user.namespace.id, continue: continue_param),
|
|
|
|
fork_new_directory_path: project_forks_path(@project, namespace_key: current_user.namespace.id, continue: continue_param.merge({
|
|
|
|
to: request.fullpath,
|
|
|
|
notice: _("%{edit_in_new_fork_notice} Try to create a new directory again.") % { edit_in_new_fork_notice: edit_in_new_fork_notice }
|
|
|
|
})),
|
|
|
|
fork_upload_blob_path: project_forks_path(@project, namespace_key: current_user.namespace.id, continue: continue_param.merge({
|
|
|
|
to: request.fullpath,
|
|
|
|
notice: _("%{edit_in_new_fork_notice} Try to upload a file again.") % { edit_in_new_fork_notice: edit_in_new_fork_notice }
|
|
|
|
}))
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
attrs
|
|
|
|
end
|
2019-12-26 22:10:19 +05:30
|
|
|
|
|
|
|
def vue_file_list_data(project, ref)
|
|
|
|
{
|
|
|
|
project_path: project.full_path,
|
|
|
|
project_short_path: project.path,
|
|
|
|
ref: ref,
|
2020-05-05 14:28:15 +05:30
|
|
|
escaped_ref: ActionDispatch::Journey::Router::Utils.escape_path(ref),
|
2019-12-26 22:10:19 +05:30
|
|
|
full_name: project.name_with_namespace
|
|
|
|
}
|
|
|
|
end
|
2022-04-04 11:22:00 +05:30
|
|
|
|
|
|
|
def fork_modal_options(project, ref, path, blob)
|
|
|
|
if show_edit_button?({ blob: blob })
|
|
|
|
fork_path = fork_and_edit_path(project, ref, path)
|
|
|
|
fork_modal_id = "modal-confirm-fork-edit"
|
|
|
|
elsif show_web_ide_button?
|
|
|
|
fork_path = ide_fork_and_edit_path(project, ref, path)
|
|
|
|
fork_modal_id = "modal-confirm-fork-webide"
|
|
|
|
end
|
|
|
|
|
|
|
|
{
|
|
|
|
fork_path: fork_path,
|
|
|
|
fork_modal_id: fork_modal_id
|
|
|
|
}
|
|
|
|
end
|
2019-12-26 22:10:19 +05:30
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
def web_ide_button_data(options = {})
|
|
|
|
{
|
|
|
|
project_path: project_to_use.full_path,
|
2021-10-27 15:23:28 +05:30
|
|
|
ref: @ref,
|
2020-11-24 15:15:51 +05:30
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
is_fork: fork?,
|
|
|
|
needs_to_fork: needs_to_fork?,
|
|
|
|
gitpod_enabled: !current_user.nil? && current_user.gitpod_enabled,
|
|
|
|
is_blob: !options[:blob].nil?,
|
2020-11-24 15:15:51 +05:30
|
|
|
|
2021-02-22 17:27:13 +05:30
|
|
|
show_edit_button: show_edit_button?(options),
|
2021-01-03 14:25:43 +05:30
|
|
|
show_web_ide_button: show_web_ide_button?,
|
|
|
|
show_gitpod_button: show_gitpod_button?,
|
2022-05-07 20:08:51 +05:30
|
|
|
show_pipeline_editor_button: show_pipeline_editor_button?(@project, @path),
|
2020-11-24 15:15:51 +05:30
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
web_ide_url: web_ide_url,
|
2021-02-22 17:27:13 +05:30
|
|
|
edit_url: edit_url(options),
|
2022-05-07 20:08:51 +05:30
|
|
|
pipeline_editor_url: project_ci_pipeline_editor_path(@project, branch_name: @ref),
|
2022-03-02 08:16:31 +05:30
|
|
|
|
|
|
|
gitpod_url: gitpod_url,
|
|
|
|
user_preferences_gitpod_path: profile_preferences_path(anchor: 'user_gitpod_enabled'),
|
|
|
|
user_profile_enable_gitpod_path: profile_path(user: { gitpod_enabled: true })
|
2020-11-24 15:15:51 +05:30
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2019-12-26 22:10:19 +05:30
|
|
|
def directory_download_links(project, ref, archive_prefix)
|
|
|
|
Gitlab::Workhorse::ARCHIVE_FORMATS.map do |fmt|
|
|
|
|
{
|
|
|
|
text: fmt,
|
|
|
|
path: project_archive_path(project, id: tree_join(ref, archive_prefix), format: fmt)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
2019-12-04 20:38:33 +05:30
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
TreeHelper.prepend_mod_with('TreeHelper')
|