2011-10-08 17:36:38 -04:00
|
|
|
require 'digest/md5'
|
2012-12-06 15:44:22 -05:00
|
|
|
require 'uri'
|
2012-09-26 15:06:07 -04:00
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
module ApplicationHelper
|
2012-09-25 19:22:44 -04:00
|
|
|
# Check if a particular controller is the current one
|
|
|
|
#
|
2012-09-25 21:18:00 -04:00
|
|
|
# args - One or more controller names to check
|
|
|
|
#
|
2012-09-25 19:22:44 -04:00
|
|
|
# Examples
|
|
|
|
#
|
|
|
|
# # On TreeController
|
2012-09-25 21:18:00 -04:00
|
|
|
# current_controller?(:tree) # => true
|
|
|
|
# current_controller?(:commits) # => false
|
|
|
|
# current_controller?(:commits, :tree) # => true
|
|
|
|
def current_controller?(*args)
|
2015-09-17 08:22:43 -04:00
|
|
|
args.any? do |v|
|
|
|
|
v.to_s.downcase == controller.controller_name || v.to_s.downcase == controller.controller_path
|
|
|
|
end
|
2012-09-25 19:22:44 -04:00
|
|
|
end
|
|
|
|
|
2013-07-29 06:46:00 -04:00
|
|
|
# Check if a particular action is the current one
|
2012-09-26 15:06:07 -04: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
|
|
|
|
|
2014-01-25 12:15:44 -05:00
|
|
|
def project_icon(project_id, options = {})
|
2015-02-18 03:16:42 -05:00
|
|
|
project =
|
|
|
|
if project_id.is_a?(Project)
|
2015-10-03 01:56:37 -04:00
|
|
|
project_id
|
2015-02-18 03:16:42 -05:00
|
|
|
else
|
|
|
|
Project.find_with_namespace(project_id)
|
|
|
|
end
|
|
|
|
|
2015-02-28 12:07:53 -05:00
|
|
|
if project.avatar_url
|
|
|
|
image_tag project.avatar_url, options
|
2014-01-25 12:15:44 -05:00
|
|
|
else # generated icon
|
|
|
|
project_identicon(project, options)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def project_identicon(project, options = {})
|
2015-01-25 01:03:30 -05:00
|
|
|
allowed_colors = {
|
|
|
|
red: 'FFEBEE',
|
|
|
|
purple: 'F3E5F5',
|
|
|
|
indigo: 'E8EAF6',
|
|
|
|
blue: 'E3F2FD',
|
|
|
|
teal: 'E0F2F1',
|
|
|
|
orange: 'FBE9E7',
|
|
|
|
gray: 'EEEEEE'
|
|
|
|
}
|
|
|
|
|
2014-01-25 12:15:44 -05:00
|
|
|
options[:class] ||= ''
|
|
|
|
options[:class] << ' identicon'
|
2015-01-25 01:03:30 -05:00
|
|
|
bg_key = project.id % 7
|
2015-12-14 21:53:52 -05:00
|
|
|
style = "background-color: ##{allowed_colors.values[bg_key]}; color: #555"
|
2015-01-25 01:03:30 -05:00
|
|
|
|
2015-02-03 00:15:44 -05:00
|
|
|
content_tag(:div, class: options[:class], style: style) do
|
2015-02-03 00:59:28 -05:00
|
|
|
project.name[0, 1].upcase
|
2014-01-25 12:15:44 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-10-22 21:00:08 -04:00
|
|
|
def avatar_icon(user_or_email = nil, size = nil, scale = 2)
|
2015-10-12 10:58:09 -04:00
|
|
|
if user_or_email.is_a?(User)
|
|
|
|
user = user_or_email
|
|
|
|
else
|
2016-03-12 07:12:40 -05:00
|
|
|
user = User.find_by_any_email(user_or_email.try(:downcase))
|
2015-10-12 10:58:09 -04:00
|
|
|
end
|
2014-06-13 10:46:48 -04:00
|
|
|
|
|
|
|
if user
|
|
|
|
user.avatar_url(size) || default_avatar
|
2013-10-06 14:13:56 -04:00
|
|
|
else
|
2015-10-31 21:42:36 -04:00
|
|
|
gravatar_icon(user_or_email, size, scale)
|
2013-10-06 14:13:56 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-09-26 15:25:04 -04:00
|
|
|
def gravatar_icon(user_email = '', size = nil, scale = 2)
|
|
|
|
GravatarService.new.execute(user_email, size, scale) ||
|
2014-06-13 10:46:48 -04:00
|
|
|
default_avatar
|
|
|
|
end
|
2012-11-18 17:36:50 -05:00
|
|
|
|
2014-06-13 10:46:48 -04:00
|
|
|
def default_avatar
|
2015-09-16 13:52:23 -04:00
|
|
|
'no_avatar.png'
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def last_commit(project)
|
2011-10-26 09:46:25 -04:00
|
|
|
if project.repo_exists?
|
2013-12-30 07:38:42 -05:00
|
|
|
time_ago_with_tooltip(project.repository.commit.committed_date)
|
2011-10-26 09:46:25 -04:00
|
|
|
else
|
2015-01-19 15:37:20 -05:00
|
|
|
'Never'
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
2011-11-15 03:34:30 -05:00
|
|
|
rescue
|
2015-01-19 15:37:20 -05:00
|
|
|
'Never'
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
2014-03-08 23:59:43 -05:00
|
|
|
def grouped_options_refs
|
2013-01-03 14:09:18 -05:00
|
|
|
repository = @project.repository
|
|
|
|
|
2011-11-03 12:28:33 -04:00
|
|
|
options = [
|
2015-01-19 15:37:20 -05:00
|
|
|
['Branches', repository.branch_names],
|
|
|
|
['Tags', VersionSorter.rsort(repository.tag_names)]
|
2011-11-03 12:28:33 -04:00
|
|
|
]
|
|
|
|
|
2014-03-09 00:00:43 -05:00
|
|
|
# If reference is commit id - we should add it to branch/tag selectbox
|
2016-05-23 14:16:35 -04:00
|
|
|
if @ref && !options.flatten.include?(@ref) && @ref =~ /\A[0-9a-zA-Z]{6,52}\z/
|
2015-01-19 15:37:20 -05:00
|
|
|
options << ['Commit', [@ref]]
|
2012-02-15 01:46:09 -05:00
|
|
|
end
|
|
|
|
|
2011-12-12 16:17:28 -05:00
|
|
|
grouped_options_for_select(options, @ref || @project.default_branch)
|
2011-11-03 12:28:33 -04:00
|
|
|
end
|
|
|
|
|
2013-04-19 14:19:16 -04:00
|
|
|
# Define whenever show last push event
|
|
|
|
# with suggestion to create MR
|
2012-06-21 11:41:22 -04:00
|
|
|
def show_last_push_widget?(event)
|
2013-04-19 14:19:16 -04:00
|
|
|
# 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?
|
|
|
|
|
2013-11-13 07:17:03 -05:00
|
|
|
# Skip if user removed branch right after that
|
|
|
|
return false unless project.repository.branch_names.include?(event.branch_name)
|
|
|
|
|
2013-04-19 14:19:16 -04:00
|
|
|
true
|
2012-06-21 11:41:22 -04:00
|
|
|
end
|
2012-07-03 13:52:48 -04:00
|
|
|
|
2012-07-10 16:12:38 -04:00
|
|
|
def hexdigest(string)
|
|
|
|
Digest::SHA1.hexdigest string
|
|
|
|
end
|
2012-08-30 01:13:36 -04:00
|
|
|
|
2013-10-19 23:57:34 -04:00
|
|
|
def simple_sanitize(str)
|
2013-02-18 02:28:18 -05:00
|
|
|
sanitize(str, tags: %w(a span))
|
|
|
|
end
|
|
|
|
|
2013-05-02 04:18:29 -04:00
|
|
|
def body_data_page
|
2013-05-02 04:46:45 -04:00
|
|
|
path = controller.controller_path.split('/')
|
|
|
|
namespace = path.first if path.second
|
|
|
|
|
2015-01-19 15:37:20 -05:00
|
|
|
[namespace, controller.controller_name, controller.action_name].compact.join(':')
|
2013-05-02 04:18:29 -04:00
|
|
|
end
|
2013-05-08 14:03:14 -04:00
|
|
|
|
|
|
|
# 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 07:02:29 -04:00
|
|
|
|
2015-06-17 14:04:14 -04:00
|
|
|
# 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,
|
2016-03-09 11:29:15 -05:00
|
|
|
class: "#{html_class} js-timeago #{"js-timeago-pending" unless skip_js}",
|
2016-01-12 13:13:16 -05:00
|
|
|
datetime: time.to_time.getutc.iso8601,
|
2016-04-07 01:00:58 -04:00
|
|
|
title: time.to_time.in_time_zone.to_s(:medium),
|
2015-09-14 09:45:16 -04:00
|
|
|
data: { toggle: 'tooltip', placement: placement, container: 'body' }
|
2015-06-17 14:04:14 -04:00
|
|
|
|
2015-12-11 13:57:49 -05:00
|
|
|
unless skip_js
|
|
|
|
element << javascript_tag(
|
|
|
|
"$('.js-timeago-pending').removeClass('js-timeago-pending').timeago()"
|
|
|
|
)
|
|
|
|
end
|
2015-06-17 14:04:14 -04:00
|
|
|
|
|
|
|
element
|
2013-12-13 16:31:23 -05:00
|
|
|
end
|
2014-01-08 09:32:03 -05:00
|
|
|
|
2016-03-03 10:07:45 -05:00
|
|
|
def edited_time_ago_with_tooltip(object, placement: 'top', html_class: 'time_ago', include_author: false)
|
|
|
|
return if object.updated_at == object.created_at
|
2016-03-02 06:33:55 -05:00
|
|
|
|
|
|
|
content_tag :small, class: "edited-text" do
|
2016-03-03 10:07:45 -05:00
|
|
|
output = content_tag(:span, "Edited ")
|
|
|
|
output << time_ago_with_tooltip(object.updated_at, placement: placement, html_class: html_class)
|
2016-03-02 06:33:55 -05:00
|
|
|
|
2016-03-03 12:04:32 -05:00
|
|
|
if include_author && object.updated_by && object.updated_by != object.author
|
|
|
|
output << content_tag(:span, " by ")
|
|
|
|
output << link_to_member(object.project, object.updated_by, avatar: false, author_class: nil)
|
2016-03-02 06:33:55 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
output
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-01-08 09:32:03 -05:00
|
|
|
def render_markup(file_name, file_content)
|
2015-05-12 19:54:13 -04:00
|
|
|
if gitlab_markdown?(file_name)
|
|
|
|
Haml::Helpers.preserve(markdown(file_content))
|
|
|
|
elsif asciidoc?(file_name)
|
2015-05-12 19:07:48 -04:00
|
|
|
asciidoc(file_content)
|
2015-07-09 05:36:09 -04:00
|
|
|
elsif plain?(file_name)
|
|
|
|
content_tag :pre, class: 'plain-readme' do
|
|
|
|
file_content
|
|
|
|
end
|
2015-05-12 19:07:48 -04:00
|
|
|
else
|
2016-02-01 11:07:59 -05:00
|
|
|
other_markup(file_name, file_content)
|
2015-05-12 19:07:48 -04:00
|
|
|
end
|
2014-08-10 07:25:35 -04:00
|
|
|
rescue RuntimeError
|
|
|
|
simple_format(file_content)
|
2014-01-08 09:32:03 -05:00
|
|
|
end
|
2014-02-05 13:30:57 -05:00
|
|
|
|
2015-07-09 05:36:09 -04:00
|
|
|
def plain?(filename)
|
|
|
|
Gitlab::MarkupHelper.plain?(filename)
|
|
|
|
end
|
|
|
|
|
2014-08-11 05:59:36 -04:00
|
|
|
def markup?(filename)
|
2015-05-12 19:40:11 -04:00
|
|
|
Gitlab::MarkupHelper.markup?(filename)
|
2014-08-11 05:59:36 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def gitlab_markdown?(filename)
|
2015-05-12 19:40:11 -04:00
|
|
|
Gitlab::MarkupHelper.gitlab_markdown?(filename)
|
2014-08-11 05:59:36 -04:00
|
|
|
end
|
|
|
|
|
2015-05-12 19:07:48 -04:00
|
|
|
def asciidoc?(filename)
|
2015-05-12 19:40:11 -04:00
|
|
|
Gitlab::MarkupHelper.asciidoc?(filename)
|
2015-05-12 19:07:48 -04:00
|
|
|
end
|
|
|
|
|
2014-10-07 07:16:19 -04:00
|
|
|
def promo_host
|
|
|
|
'about.gitlab.com'
|
|
|
|
end
|
|
|
|
|
|
|
|
def promo_url
|
|
|
|
'https://' + promo_host
|
|
|
|
end
|
2014-12-23 11:49:39 -05:00
|
|
|
|
2015-03-26 22:13:49 -04:00
|
|
|
def page_filter_path(options = {})
|
|
|
|
without = options.delete(:without)
|
2016-04-15 13:18:31 -04:00
|
|
|
add_label = options.delete(:label)
|
2015-03-26 22:13:49 -04:00
|
|
|
|
2014-12-23 11:49:39 -05:00
|
|
|
exist_opts = {
|
|
|
|
state: params[:state],
|
|
|
|
scope: params[:scope],
|
2015-12-29 14:50:32 -05:00
|
|
|
milestone_title: params[:milestone_title],
|
2014-12-23 11:49:39 -05:00
|
|
|
assignee_id: params[:assignee_id],
|
|
|
|
author_id: params[:author_id],
|
|
|
|
sort: params[:sort],
|
2016-05-23 04:49:13 -04:00
|
|
|
issue_search: params[:issue_search],
|
|
|
|
label_name: params[:label_name]
|
2014-12-23 11:49:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
options = exist_opts.merge(options)
|
|
|
|
|
2015-03-26 22:13:49 -04:00
|
|
|
if without.present?
|
|
|
|
without.each do |key|
|
|
|
|
options.delete(key)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-04-15 10:18:55 -04:00
|
|
|
params = options.compact
|
2016-04-13 08:11:44 -04:00
|
|
|
|
2016-05-23 04:49:13 -04:00
|
|
|
params.delete(:label_name) unless add_label
|
2016-04-13 08:11:44 -04:00
|
|
|
|
2016-05-23 04:49:13 -04:00
|
|
|
"#{request.path}?#{params.to_param}"
|
2014-12-23 11:49:39 -05:00
|
|
|
end
|
2014-12-15 05:11:38 -05:00
|
|
|
|
|
|
|
def outdated_browser?
|
|
|
|
browser.ie? && browser.version.to_i < 10
|
|
|
|
end
|
2014-12-30 05:01:30 -05:00
|
|
|
|
|
|
|
def path_to_key(key, admin = false)
|
|
|
|
if admin
|
|
|
|
admin_user_key_path(@user, key)
|
|
|
|
else
|
|
|
|
profile_key_path(key)
|
|
|
|
end
|
|
|
|
end
|
2016-02-04 11:10:11 -05:00
|
|
|
|
2015-03-31 20:53:04 -04:00
|
|
|
def state_filters_text_for(entity, project)
|
2015-05-25 11:01:27 -04:00
|
|
|
titles = {
|
2015-06-18 13:15:17 -04:00
|
|
|
opened: "Open"
|
2015-05-25 11:01:27 -04:00
|
|
|
}
|
2015-06-18 13:15:17 -04:00
|
|
|
|
2015-05-25 11:01:27 -04:00
|
|
|
entity_title = titles[entity] || entity.to_s.humanize
|
2015-03-31 20:53:04 -04:00
|
|
|
|
|
|
|
count =
|
2015-04-20 04:21:15 -04:00
|
|
|
if project.nil?
|
2015-05-14 11:30:23 -04:00
|
|
|
nil
|
2015-04-20 04:21:15 -04:00
|
|
|
elsif current_controller?(:issues)
|
2016-03-17 16:53:21 -04:00
|
|
|
project.issues.visible_to_user(current_user).send(entity).count
|
2015-03-31 20:53:04 -04:00
|
|
|
elsif current_controller?(:merge_requests)
|
2015-05-14 11:30:23 -04:00
|
|
|
project.merge_requests.send(entity).count
|
2015-03-31 20:53:04 -04:00
|
|
|
end
|
2015-05-14 11:30:23 -04:00
|
|
|
|
2015-05-14 11:34:06 -04:00
|
|
|
html = content_tag :span, entity_title
|
2015-05-14 11:30:23 -04:00
|
|
|
|
|
|
|
if count.present?
|
2015-05-14 11:34:06 -04:00
|
|
|
html += " "
|
2015-05-14 11:30:23 -04:00
|
|
|
html += content_tag :span, number_with_delimiter(count), class: 'badge'
|
|
|
|
end
|
|
|
|
|
|
|
|
html.html_safe
|
2015-03-31 20:53:04 -04:00
|
|
|
end
|
2015-10-06 14:15:06 -04:00
|
|
|
|
|
|
|
def truncate_first_line(message, length = 50)
|
|
|
|
truncate(message.each_line.first.chomp, length: length) if message
|
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|