2012-09-07 12:57:13 -04:00
|
|
|
module ProjectsHelper
|
2015-04-10 09:14:14 -04:00
|
|
|
def remove_from_project_team_message(project, member)
|
|
|
|
if member.user
|
|
|
|
"You are going to remove #{member.user.name} from #{project.name} project team. Are you sure?"
|
|
|
|
else
|
|
|
|
"You are going to cancel invitation for #{member.invite_email} to join #{project.name} project team. Are you sure?"
|
|
|
|
end
|
2012-09-10 02:13:45 -04:00
|
|
|
end
|
2012-10-01 09:39:19 -04:00
|
|
|
|
2014-09-25 18:07:40 -04:00
|
|
|
def link_to_project(project)
|
2015-01-24 13:02:58 -05:00
|
|
|
link_to [project.namespace.becomes(Namespace), project] do
|
2014-04-11 18:00:58 -04:00
|
|
|
title = content_tag(:span, project.name, class: 'project-name')
|
2012-12-09 03:56:15 -05:00
|
|
|
|
|
|
|
if project.namespace
|
2013-10-10 03:53:49 -04:00
|
|
|
namespace = content_tag(:span, "#{project.namespace.human_name} / ", class: 'namespace-name')
|
2012-12-09 03:56:15 -05:00
|
|
|
title = namespace + title
|
|
|
|
end
|
|
|
|
|
|
|
|
title
|
|
|
|
end
|
2012-10-01 09:39:19 -04:00
|
|
|
end
|
2012-10-29 17:45:11 -04:00
|
|
|
|
2013-01-17 15:35:45 -05:00
|
|
|
def link_to_member(project, author, opts = {})
|
2013-05-09 19:37:47 -04:00
|
|
|
default_opts = { avatar: true, name: true, size: 16 }
|
2013-01-17 15:35:45 -05:00
|
|
|
opts = default_opts.merge(opts)
|
|
|
|
|
2012-12-12 22:14:05 -05:00
|
|
|
return "(deleted)" unless author
|
|
|
|
|
2013-01-17 15:35:45 -05:00
|
|
|
author_html = ""
|
|
|
|
|
2012-12-12 22:14:05 -05:00
|
|
|
# Build avatar image tag
|
2013-10-06 14:13:56 -04:00
|
|
|
author_html << image_tag(avatar_icon(author.try(:email), opts[:size]), width: opts[:size], class: "avatar avatar-inline #{"s#{opts[:size]}" if opts[:size]}", alt:'') if opts[:avatar]
|
2012-12-12 22:14:05 -05:00
|
|
|
|
2013-01-11 14:16:37 -05:00
|
|
|
# Build name span tag
|
2013-05-09 19:37:47 -04:00
|
|
|
author_html << content_tag(:span, sanitize(author.name), class: 'author') if opts[:name]
|
2012-12-12 22:14:05 -05:00
|
|
|
|
2013-01-17 15:35:45 -05:00
|
|
|
author_html = author_html.html_safe
|
2012-12-12 22:14:05 -05:00
|
|
|
|
2013-07-24 17:09:56 -04:00
|
|
|
if opts[:name]
|
|
|
|
link_to(author_html, user_path(author), class: "author_link").html_safe
|
|
|
|
else
|
|
|
|
link_to(author_html, user_path(author), class: "author_link has_tooltip", data: { :'original-title' => sanitize(author.name) } ).html_safe
|
|
|
|
end
|
2012-10-29 17:45:11 -04:00
|
|
|
end
|
2012-12-12 05:02:29 -05:00
|
|
|
|
2014-09-25 18:07:40 -04:00
|
|
|
def project_title(project)
|
2012-12-12 05:02:29 -05:00
|
|
|
if project.group
|
2013-01-27 06:12:30 -05:00
|
|
|
content_tag :span do
|
2015-01-24 13:02:58 -05:00
|
|
|
link_to(
|
|
|
|
simple_sanitize(project.group.name), group_path(project.group)
|
|
|
|
) + ' / ' +
|
|
|
|
link_to(simple_sanitize(project.name),
|
2015-02-25 22:34:16 -05:00
|
|
|
project_path(project))
|
2013-01-27 06:12:30 -05:00
|
|
|
end
|
2012-12-12 05:02:29 -05:00
|
|
|
else
|
2013-11-04 08:18:55 -05:00
|
|
|
owner = project.namespace.owner
|
|
|
|
content_tag :span do
|
2015-01-24 13:02:58 -05:00
|
|
|
link_to(
|
|
|
|
simple_sanitize(owner.name), user_path(owner)
|
|
|
|
) + ' / ' +
|
|
|
|
link_to(simple_sanitize(project.name),
|
2015-02-25 22:34:16 -05:00
|
|
|
project_path(project))
|
2013-11-04 08:18:55 -05:00
|
|
|
end
|
2012-12-12 05:02:29 -05:00
|
|
|
end
|
|
|
|
end
|
2013-05-20 07:22:18 -04:00
|
|
|
|
|
|
|
def remove_project_message(project)
|
|
|
|
"You are going to remove #{project.name_with_namespace}.\n Removed project CANNOT be restored!\n Are you ABSOLUTELY sure?"
|
|
|
|
end
|
2013-06-13 15:58:27 -04:00
|
|
|
|
2014-10-08 06:57:54 -04:00
|
|
|
def transfer_project_message(project)
|
|
|
|
"You are going to transfer #{project.name_with_namespace} to another owner. Are you ABSOLUTELY sure?"
|
|
|
|
end
|
|
|
|
|
2013-06-13 15:58:27 -04:00
|
|
|
def project_nav_tabs
|
|
|
|
@nav_tabs ||= get_project_nav_tabs(@project, current_user)
|
|
|
|
end
|
|
|
|
|
|
|
|
def project_nav_tab?(name)
|
|
|
|
project_nav_tabs.include? name
|
|
|
|
end
|
|
|
|
|
2013-08-10 13:25:53 -04:00
|
|
|
def project_active_milestones
|
2013-12-10 05:08:40 -05:00
|
|
|
@project.milestones.active.order("due_date, title ASC")
|
2013-08-10 13:25:53 -04:00
|
|
|
end
|
|
|
|
|
2015-03-29 21:50:45 -04:00
|
|
|
def link_to_toggle_star(title, starred)
|
2015-03-29 07:56:45 -04:00
|
|
|
cls = 'star-btn btn btn-sm btn-default'
|
2014-07-24 15:14:12 -04:00
|
|
|
|
2015-03-29 21:50:45 -04:00
|
|
|
toggle_text =
|
|
|
|
if starred
|
|
|
|
' Unstar'
|
|
|
|
else
|
|
|
|
' Star'
|
|
|
|
end
|
2014-07-24 15:14:12 -04:00
|
|
|
|
2015-03-29 21:50:45 -04:00
|
|
|
toggle_html = content_tag('span', class: 'toggle') do
|
2015-01-28 03:32:48 -05:00
|
|
|
icon('star') + toggle_text
|
2014-07-24 15:14:12 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
count_html = content_tag('span', class: 'count') do
|
|
|
|
@project.star_count.to_s
|
|
|
|
end
|
|
|
|
|
|
|
|
link_opts = {
|
|
|
|
title: title,
|
|
|
|
class: cls,
|
|
|
|
method: :post,
|
|
|
|
remote: true,
|
2015-02-02 23:36:54 -05:00
|
|
|
data: { type: 'json' }
|
2014-07-24 15:14:12 -04:00
|
|
|
}
|
|
|
|
|
2015-03-29 21:50:45 -04:00
|
|
|
path = toggle_star_namespace_project_path(@project.namespace, @project)
|
2014-07-24 15:14:12 -04:00
|
|
|
|
2014-07-17 16:45:16 -04:00
|
|
|
content_tag 'span', class: starred ? 'turn-on' : 'turn-off' do
|
2015-03-29 21:50:45 -04:00
|
|
|
link_to(path, link_opts) do
|
2014-08-28 07:19:11 -04:00
|
|
|
toggle_html + ' ' + count_html
|
2014-07-17 16:45:16 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-09-21 17:26:18 -04:00
|
|
|
def link_to_toggle_fork
|
2015-03-29 21:15:54 -04:00
|
|
|
html = content_tag('span') do
|
|
|
|
icon('code-fork') + ' Fork'
|
|
|
|
end
|
|
|
|
|
|
|
|
count_html = content_tag(:span, class: 'count') do
|
2014-09-21 17:26:18 -04:00
|
|
|
@project.forks_count.to_s
|
|
|
|
end
|
2015-03-29 21:15:54 -04:00
|
|
|
|
|
|
|
html + count_html
|
2014-09-21 17:26:18 -04:00
|
|
|
end
|
|
|
|
|
2015-04-03 06:22:44 -04:00
|
|
|
def project_for_deploy_key(deploy_key)
|
|
|
|
if deploy_key.projects.include?(@project)
|
|
|
|
@project
|
|
|
|
else
|
|
|
|
deploy_key.projects.find { |project| can?(current_user, :read_project, project) }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-06-13 15:58:27 -04:00
|
|
|
private
|
|
|
|
|
|
|
|
def get_project_nav_tabs(project, current_user)
|
|
|
|
nav_tabs = [:home]
|
|
|
|
|
2013-06-23 14:39:46 -04:00
|
|
|
if !project.empty_repo? && can?(current_user, :download_code, project)
|
2013-06-13 15:58:27 -04:00
|
|
|
nav_tabs << [:files, :commits, :network, :graphs]
|
|
|
|
end
|
|
|
|
|
|
|
|
if project.repo_exists? && project.merge_requests_enabled
|
|
|
|
nav_tabs << :merge_requests
|
|
|
|
end
|
|
|
|
|
|
|
|
if can?(current_user, :admin_project, project)
|
|
|
|
nav_tabs << :settings
|
|
|
|
end
|
|
|
|
|
2014-06-13 07:24:54 -04:00
|
|
|
[:issues, :wiki, :snippets].each do |feature|
|
2013-06-13 15:58:27 -04:00
|
|
|
nav_tabs << feature if project.send :"#{feature}_enabled"
|
|
|
|
end
|
|
|
|
|
2015-03-24 18:18:27 -04:00
|
|
|
if project.issues_enabled || project.merge_requests_enabled
|
2015-03-23 11:48:50 -04:00
|
|
|
nav_tabs << [:milestones, :labels]
|
|
|
|
end
|
|
|
|
|
2013-06-13 15:58:27 -04:00
|
|
|
nav_tabs.flatten
|
|
|
|
end
|
2013-09-24 15:14:28 -04:00
|
|
|
|
|
|
|
def git_user_name
|
|
|
|
if current_user
|
|
|
|
current_user.name
|
|
|
|
else
|
|
|
|
"Your name"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def git_user_email
|
|
|
|
if current_user
|
|
|
|
current_user.email
|
|
|
|
else
|
|
|
|
"your@email.com"
|
|
|
|
end
|
|
|
|
end
|
2013-10-10 04:05:49 -04:00
|
|
|
|
2013-11-29 07:16:17 -05:00
|
|
|
def repository_size(project = nil)
|
2014-05-02 09:05:08 -04:00
|
|
|
"#{(project || @project).repository_size} MB"
|
2013-10-10 04:05:49 -04:00
|
|
|
rescue
|
|
|
|
# In order to prevent 500 error
|
|
|
|
# when application cannot allocate memory
|
|
|
|
# to calculate repo size - just show 'Unknown'
|
|
|
|
'unknown'
|
|
|
|
end
|
2013-11-13 03:28:15 -05:00
|
|
|
|
|
|
|
def project_head_title
|
|
|
|
title = @project.name_with_namespace
|
|
|
|
|
|
|
|
title = if current_controller?(:tree)
|
|
|
|
"#{@project.path}\/#{@path} at #{@ref} - " + title
|
|
|
|
elsif current_controller?(:issues)
|
|
|
|
if current_action?(:show)
|
2014-01-10 14:31:44 -05:00
|
|
|
"Issue ##{@issue.iid} - #{@issue.title} - " + title
|
2013-11-13 03:28:15 -05:00
|
|
|
else
|
|
|
|
"Issues - " + title
|
|
|
|
end
|
|
|
|
elsif current_controller?(:blob)
|
2015-01-26 18:03:14 -05:00
|
|
|
if current_action?(:new) || current_action?(:create)
|
|
|
|
"New file at #{@ref}"
|
2015-01-26 22:28:11 -05:00
|
|
|
elsif current_action?(:show)
|
|
|
|
"#{@blob.path} at #{@ref}"
|
2015-01-26 18:03:14 -05:00
|
|
|
elsif @blob
|
|
|
|
"Edit file #{@blob.path} at #{@ref}"
|
|
|
|
end
|
2013-11-13 03:28:15 -05:00
|
|
|
elsif current_controller?(:commits)
|
2013-11-13 03:35:10 -05:00
|
|
|
"Commits at #{@ref} - " + title
|
2013-11-13 03:28:15 -05:00
|
|
|
elsif current_controller?(:merge_requests)
|
|
|
|
if current_action?(:show)
|
|
|
|
"Merge request ##{@merge_request.iid} - " + title
|
|
|
|
else
|
|
|
|
"Merge requests - " + title
|
|
|
|
end
|
|
|
|
elsif current_controller?(:wikis)
|
|
|
|
"Wiki - " + title
|
|
|
|
elsif current_controller?(:network)
|
|
|
|
"Network graph - " + title
|
|
|
|
elsif current_controller?(:graphs)
|
|
|
|
"Graphs - " + title
|
|
|
|
else
|
|
|
|
title
|
|
|
|
end
|
|
|
|
|
|
|
|
title
|
|
|
|
end
|
2013-12-27 05:13:30 -05:00
|
|
|
|
2014-01-07 22:03:27 -05:00
|
|
|
def default_url_to_repo(project = nil)
|
|
|
|
project = project || @project
|
|
|
|
current_user ? project.url_to_repo : project.http_url_to_repo
|
2013-12-03 21:13:19 -05:00
|
|
|
end
|
2013-12-27 05:13:30 -05:00
|
|
|
|
2013-12-03 21:13:19 -05:00
|
|
|
def default_clone_protocol
|
|
|
|
current_user ? "ssh" : "http"
|
|
|
|
end
|
2013-12-29 06:55:45 -05:00
|
|
|
|
|
|
|
def project_last_activity(project)
|
|
|
|
if project.last_activity_at
|
2013-12-30 07:49:22 -05:00
|
|
|
time_ago_with_tooltip(project.last_activity_at, 'bottom', 'last_activity_time_ago')
|
2013-12-29 06:55:45 -05:00
|
|
|
else
|
|
|
|
"Never"
|
|
|
|
end
|
|
|
|
end
|
2014-07-15 08:34:06 -04:00
|
|
|
|
|
|
|
def contribution_guide_url(project)
|
2015-03-17 13:37:50 -04:00
|
|
|
if project && contribution_guide = project.repository.contribution_guide
|
2015-01-24 13:02:58 -05:00
|
|
|
namespace_project_blob_path(
|
|
|
|
project.namespace,
|
|
|
|
project,
|
|
|
|
tree_join(project.default_branch,
|
2015-03-17 13:37:50 -04:00
|
|
|
contribution_guide.name)
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def changelog_url(project)
|
|
|
|
if project && changelog = project.repository.changelog
|
|
|
|
namespace_project_blob_path(
|
|
|
|
project.namespace,
|
|
|
|
project,
|
|
|
|
tree_join(project.default_branch,
|
|
|
|
changelog.name)
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def license_url(project)
|
|
|
|
if project && license = project.repository.license
|
|
|
|
namespace_project_blob_path(
|
|
|
|
project.namespace,
|
|
|
|
project,
|
|
|
|
tree_join(project.default_branch,
|
|
|
|
license.name)
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def version_url(project)
|
|
|
|
if project && version = project.repository.version
|
|
|
|
namespace_project_blob_path(
|
|
|
|
project.namespace,
|
|
|
|
project,
|
|
|
|
tree_join(project.default_branch,
|
|
|
|
version.name)
|
2015-01-24 13:02:58 -05:00
|
|
|
)
|
2014-07-15 08:34:06 -04:00
|
|
|
end
|
|
|
|
end
|
2014-08-26 03:11:11 -04:00
|
|
|
|
|
|
|
def hidden_pass_url(original_url)
|
|
|
|
result = URI(original_url)
|
2014-08-28 12:57:39 -04:00
|
|
|
result.password = '*****' unless result.password.nil?
|
2014-08-26 03:11:11 -04:00
|
|
|
result
|
2014-08-28 12:57:39 -04:00
|
|
|
rescue
|
|
|
|
original_url
|
2014-08-26 03:11:11 -04:00
|
|
|
end
|
2015-01-06 03:50:37 -05:00
|
|
|
|
|
|
|
def project_wiki_path_with_version(proj, page, version, is_newest)
|
|
|
|
url_params = is_newest ? {} : { version_id: version }
|
2015-01-24 13:02:58 -05:00
|
|
|
namespace_project_wiki_path(proj.namespace, proj, page, url_params)
|
2015-01-06 03:50:37 -05:00
|
|
|
end
|
2015-01-13 13:35:16 -05:00
|
|
|
|
2014-12-31 08:07:48 -05:00
|
|
|
def project_status_css_class(status)
|
|
|
|
case status
|
|
|
|
when "started"
|
|
|
|
"active"
|
|
|
|
when "failed"
|
|
|
|
"danger"
|
|
|
|
when "finished"
|
|
|
|
"success"
|
|
|
|
end
|
|
|
|
end
|
2015-03-12 13:10:19 -04:00
|
|
|
|
|
|
|
def service_field_value(type, value)
|
|
|
|
return value unless type == 'password'
|
|
|
|
|
|
|
|
if value.present?
|
|
|
|
"***********"
|
|
|
|
else
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
end
|
2012-09-07 12:57:13 -04:00
|
|
|
end
|