gitlab-org--gitlab-foss/app/helpers/application_helper.rb

376 lines
9.5 KiB
Ruby
Raw Normal View History

2011-10-08 21:36:38 +00:00
require 'digest/md5'
2012-12-06 20:44:22 +00:00
require 'uri'
2012-09-26 19:06:07 +00:00
2011-10-08 21:36:38 +00:00
module ApplicationHelper
# Check if a particular controller is the current one
#
# args - One or more controller names to check
#
# Examples
#
# # On TreeController
# current_controller?(:tree) # => true
# current_controller?(:commits) # => false
# current_controller?(:commits, :tree) # => true
def current_controller?(*args)
args.any? do |v|
v.to_s.downcase == controller.controller_name || v.to_s.downcase == controller.controller_path
end
end
2013-07-29 10:46:00 +00:00
# Check if a particular action is the current one
2012-09-26 19:06:07 +00:00
#
# args - One or more action names to check
#
# Examples
#
# # On Projects#new
# current_action?(:new) # => true
# current_action?(:create) # => false
# current_action?(:new, :create) # => true
def current_action?(*args)
args.any? { |v| v.to_s.downcase == action_name }
end
def project_icon(project_id, options = {})
2015-02-18 08:16:42 +00:00
project =
if project_id.is_a?(Project)
2015-10-03 05:56:37 +00:00
project_id
2015-02-18 08:16:42 +00:00
else
Project.find_with_namespace(project_id)
end
if project.avatar_url
image_tag project.avatar_url, options
else # generated icon
project_identicon(project, options)
end
end
def project_identicon(project, options = {})
allowed_colors = {
red: 'FFEBEE',
purple: 'F3E5F5',
indigo: 'E8EAF6',
blue: 'E3F2FD',
teal: 'E0F2F1',
orange: 'FBE9E7',
gray: 'EEEEEE'
}
options[:class] ||= ''
options[:class] << ' identicon'
bg_key = project.id % 7
2015-12-15 02:53:52 +00:00
style = "background-color: ##{allowed_colors.values[bg_key]}; color: #555"
2015-02-03 05:15:44 +00:00
content_tag(:div, class: options[:class], style: style) do
2015-02-03 05:59:28 +00:00
project.name[0, 1].upcase
end
end
2015-10-23 01:00:08 +00:00
def avatar_icon(user_or_email = nil, size = nil, scale = 2)
if user_or_email.is_a?(User)
user = user_or_email
else
user = User.find_by(email: user_or_email.downcase)
end
if user
user.avatar_url(size) || default_avatar
2013-10-06 18:13:56 +00:00
else
2015-11-01 01:42:36 +00:00
gravatar_icon(user_or_email, size, scale)
2013-10-06 18:13:56 +00:00
end
end
2015-09-26 19:25:04 +00:00
def gravatar_icon(user_email = '', size = nil, scale = 2)
GravatarService.new.execute(user_email, size, scale) ||
default_avatar
end
def default_avatar
'no_avatar.png'
2011-10-08 21:36:38 +00:00
end
def last_commit(project)
if project.repo_exists?
time_ago_with_tooltip(project.repository.commit.committed_date)
else
'Never'
2011-10-08 21:36:38 +00:00
end
2011-11-15 08:34:30 +00:00
rescue
'Never'
2011-10-08 21:36:38 +00:00
end
def grouped_options_refs
2013-01-03 19:09:18 +00:00
repository = @project.repository
2011-11-03 16:28:33 +00:00
options = [
['Branches', repository.branch_names],
['Tags', VersionSorter.rsort(repository.tag_names)]
2011-11-03 16:28:33 +00:00
]
2014-03-09 05:00:43 +00:00
# If reference is commit id - we should add it to branch/tag selectbox
if(@ref && !options.flatten.include?(@ref) &&
@ref =~ /\A[0-9a-zA-Z]{6,52}\z/)
options << ['Commit', [@ref]]
end
2011-12-12 21:17:28 +00:00
grouped_options_for_select(options, @ref || @project.default_branch)
2011-11-03 16:28:33 +00:00
end
def emoji_autocomplete_source
# should be an array of strings
# so to_s can be called, because it is sufficient and to_json is too slow
2012-10-16 14:26:40 +00:00
Emoji.names.to_s
end
# Define whenever show last push event
# with suggestion to create MR
2012-06-21 15:41:22 +00:00
def show_last_push_widget?(event)
# Skip if event is not about added or modified non-master branch
return false unless event && event.last_push_to_non_root? && !event.rm_ref?
project = event.project
# Skip if project repo is empty or MR disabled
return false unless project && !project.empty_repo? && project.merge_requests_enabled
# Skip if user already created appropriate MR
return false if project.merge_requests.where(source_branch: event.branch_name).opened.any?
# Skip if user removed branch right after that
return false unless project.repository.branch_names.include?(event.branch_name)
true
2012-06-21 15:41:22 +00:00
end
2012-07-03 17:52:48 +00:00
def hexdigest(string)
Digest::SHA1.hexdigest string
end
2012-08-30 05:13:36 +00:00
2013-10-20 03:57:34 +00:00
def simple_sanitize(str)
sanitize(str, tags: %w(a span))
end
def body_data_page
path = controller.controller_path.split('/')
namespace = path.first if path.second
[namespace, controller.controller_name, controller.action_name].compact.join(':')
end
# shortcut for gitlab config
def gitlab_config
Gitlab.config.gitlab
end
# shortcut for gitlab extra config
def extra_config
Gitlab.config.extra
end
2013-06-06 11:02:29 +00:00
def search_placeholder
if @project && @project.persisted?
'Search'
elsif @snippet || @snippets || @show_snippets
'Search snippets'
elsif @group && @group.persisted?
'Search in this group'
else
'Search'
end
end
# Render a `time` element with Javascript-based relative date and tooltip
#
# time - Time object
# placement - Tooltip placement String (default: "top")
# html_class - Custom class for `time` element (default: "time_ago")
# skip_js - When true, exclude the `script` tag (default: false)
#
# By default also includes a `script` element with Javascript necessary to
# initialize the `timeago` jQuery extension. If this method is called many
# times, for example rendering hundreds of commits, it's advisable to disable
# this behavior using the `skip_js` argument and re-initializing `timeago`
# manually once all of the elements have been rendered.
#
# A `js-timeago` class is always added to the element, even when a custom
# `html_class` argument is provided.
#
# Returns an HTML-safe String
def time_ago_with_tooltip(time, placement: 'top', html_class: 'time_ago', skip_js: false)
element = content_tag :time, time.to_s,
class: "#{html_class} js-timeago js-timeago-pending",
datetime: time.to_time.getutc.iso8601,
title: time.in_time_zone.to_s(:medium),
2015-09-14 13:45:16 +00:00
data: { toggle: 'tooltip', placement: placement, container: 'body' }
unless skip_js
element << javascript_tag(
"$('.js-timeago-pending').removeClass('js-timeago-pending').timeago()"
)
end
element
end
def render_markup(file_name, file_content)
if gitlab_markdown?(file_name)
Haml::Helpers.preserve(markdown(file_content))
elsif asciidoc?(file_name)
asciidoc(file_content)
elsif plain?(file_name)
content_tag :pre, class: 'plain-readme' do
file_content
end
else
GitHub::Markup.render(file_name, file_content).
force_encoding(file_content.encoding).html_safe
end
2014-08-10 11:25:35 +00:00
rescue RuntimeError
simple_format(file_content)
end
def plain?(filename)
Gitlab::MarkupHelper.plain?(filename)
end
def markup?(filename)
2015-05-12 23:40:11 +00:00
Gitlab::MarkupHelper.markup?(filename)
end
def gitlab_markdown?(filename)
2015-05-12 23:40:11 +00:00
Gitlab::MarkupHelper.gitlab_markdown?(filename)
end
def asciidoc?(filename)
2015-05-12 23:40:11 +00:00
Gitlab::MarkupHelper.asciidoc?(filename)
end
def promo_host
'about.gitlab.com'
end
def promo_url
'https://' + promo_host
end
def page_filter_path(options = {})
without = options.delete(:without)
exist_opts = {
state: params[:state],
scope: params[:scope],
label_name: params[:label_name],
2015-12-29 19:50:32 +00:00
milestone_title: params[:milestone_title],
assignee_id: params[:assignee_id],
author_id: params[:author_id],
sort: params[:sort],
}
options = exist_opts.merge(options)
if without.present?
without.each do |key|
options.delete(key)
end
end
path = request.path
path << "?#{options.to_param}"
path
end
def outdated_browser?
browser.ie? && browser.version.to_i < 10
end
def path_to_key(key, admin = false)
if admin
admin_user_key_path(@user, key)
else
profile_key_path(key)
end
end
2016-01-27 22:38:19 +00:00
def issuable_count(entity, project)
if project.nil?
0
elsif current_controller?(:issues)
project.issues.send(entity).count
elsif current_controller?(:merge_requests)
project.merge_requests.send(entity).count
end
end
def next_issuable_for(project, id)
2016-01-27 22:38:19 +00:00
if project.nil?
nil
elsif current_controller?(:issues)
project.issues.where("id > ?", id).last
2016-01-27 22:38:19 +00:00
elsif current_controller?(:merge_requests)
project.merge_requests.where("id > ?", id).last
end
end
def has_next_issuable?(project, id)
if project.nil?
nil
elsif current_controller?(:issues)
project.issues.where("id > ?", id).last
elsif current_controller?(:merge_requests)
project.merge_requests.where("id > ?", id).last
2016-01-27 22:38:19 +00:00
end
end
def prev_issuable_for(project, id)
2016-01-27 22:38:19 +00:00
if project.nil?
nil
elsif current_controller?(:issues)
project.issues.where("id < ?", id).first
elsif current_controller?(:merge_requests)
project.merge_requests.where("id < ?", id).first
end
end
def has_prev_issuable?(project, id)
if project.nil?
nil
elsif current_controller?(:issues)
project.issues.where("id < ?", id).first
2016-01-27 22:38:19 +00:00
elsif current_controller?(:merge_requests)
project.merge_requests.where("id < ?", id).first
2016-01-27 22:38:19 +00:00
end
end
def state_filters_text_for(entity, project)
titles = {
opened: "Open"
}
entity_title = titles[entity] || entity.to_s.humanize
count =
if project.nil?
nil
elsif current_controller?(:issues)
project.issues.send(entity).count
elsif current_controller?(:merge_requests)
project.merge_requests.send(entity).count
end
html = content_tag :span, entity_title
if count.present?
html += " "
html += content_tag :span, number_with_delimiter(count), class: 'badge'
end
html.html_safe
end
def truncate_first_line(message, length = 50)
truncate(message.each_line.first.chomp, length: length) if message
end
2011-10-08 21:36:38 +00:00
end