debian-mirror-gitlab/app/helpers/application_helper.rb

327 lines
8.7 KiB
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
require 'digest/md5'
require 'uri'
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)
2015-09-25 12:07:36 +05:30
args.any? do |v|
v.to_s.downcase == controller.controller_name || v.to_s.downcase == controller.controller_path
end
2014-09-02 18:07:02 +05:30
end
# Check if a particular action is the current one
#
# 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
2015-04-26 12:48:37 +05:30
def project_icon(project_id, options = {})
project =
2018-03-27 19:54:05 +05:30
if project_id.respond_to?(:avatar_url)
2015-10-24 18:46:33 +05:30
project_id
2015-04-26 12:48:37 +05:30
else
2017-08-17 22:00:37 +05:30
Project.find_by_full_path(project_id)
2015-04-26 12:48:37 +05:30
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-23 02:04:40 +05:30
style = "background-color: ##{allowed_colors.values[bg_key]}; color: #555"
2015-04-26 12:48:37 +05:30
content_tag(:div, class: options[:class], style: style) do
project.name[0, 1].upcase
2014-09-02 18:07:02 +05:30
end
end
2018-03-27 19:54:05 +05:30
# Takes both user and email and returns the avatar_icon by
# user (preferred) or email.
def avatar_icon_for(user = nil, email = nil, size = nil, scale = 2, only_path: true)
if user
avatar_icon_for_user(user, size, scale, only_path: only_path)
elsif email
avatar_icon_for_email(email, size, scale, only_path: only_path)
else
default_avatar
end
end
2014-09-02 18:07:02 +05:30
2018-03-27 19:54:05 +05:30
def avatar_icon_for_email(email = nil, size = nil, scale = 2, only_path: true)
user = User.find_by_any_email(email.try(:downcase))
if user
avatar_icon_for_user(user, size, scale, only_path: only_path)
else
gravatar_icon(email, size, scale)
end
end
def avatar_icon_for_user(user = nil, size = nil, scale = 2, only_path: true)
2014-09-02 18:07:02 +05:30
if user
2017-09-10 17:25:29 +05:30
user.avatar_url(size: size, only_path: only_path) || default_avatar
2014-09-02 18:07:02 +05:30
else
2018-03-27 19:54:05 +05:30
gravatar_icon(nil, size, scale)
2014-09-02 18:07:02 +05:30
end
end
2015-12-23 02:04:40 +05:30
def gravatar_icon(user_email = '', size = nil, scale = 2)
GravatarService.new.execute(user_email, size, scale) ||
2014-09-02 18:07:02 +05:30
default_avatar
end
def default_avatar
2018-03-17 18:26:18 +05:30
asset_path('no_avatar.png')
2014-09-02 18:07:02 +05:30
end
def last_commit(project)
if project.repo_exists?
time_ago_with_tooltip(project.repository.commit.committed_date)
else
2015-04-26 12:48:37 +05:30
'Never'
2014-09-02 18:07:02 +05:30
end
rescue
2015-04-26 12:48:37 +05:30
'Never'
2014-09-02 18:07:02 +05:30
end
# Define whenever show last push event
# with suggestion to create MR
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
2016-09-29 09:46:39 +05:30
return false unless project && !project.empty_repo? && project.feature_available?(:merge_requests, current_user)
2014-09-02 18:07:02 +05:30
# 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
2016-06-22 15:30:34 +05:30
return false unless project.repository.branch_exists?(event.branch_name)
2014-09-02 18:07:02 +05:30
true
end
def hexdigest(string)
Digest::SHA1.hexdigest string
end
def simple_sanitize(str)
sanitize(str, tags: %w(a span))
end
def body_data_page
2017-09-10 17:25:29 +05:30
[*controller.controller_path.split('/'), controller.action_name].compact.join(':')
2014-09-02 18:07:02 +05:30
end
# shortcut for gitlab config
def gitlab_config
Gitlab.config.gitlab
end
# shortcut for gitlab extra config
def extra_config
Gitlab.config.extra
end
2015-09-11 14:41:01 +05:30
# 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")
#
# 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
2017-08-17 22:00:37 +05:30
def time_ago_with_tooltip(time, placement: 'top', html_class: '', short_format: false)
2016-09-13 17:45:13 +05:30
css_classes = short_format ? 'js-short-timeago' : 'js-timeago'
css_classes << " #{html_class}" unless html_class.blank?
2017-09-10 17:25:29 +05:30
element = content_tag :time, l(time, format: "%b %d, %Y"),
2016-09-13 17:45:13 +05:30
class: css_classes,
2017-09-10 17:25:29 +05:30
title: l(time.to_time.in_time_zone, format: :timeago_tooltip),
2017-08-17 22:00:37 +05:30
datetime: time.to_time.getutc.iso8601,
data: {
toggle: 'tooltip',
placement: placement,
container: 'body'
}
2014-09-02 18:07:02 +05:30
2015-09-11 14:41:01 +05:30
element
2014-09-02 18:07:02 +05:30
end
2017-08-17 22:00:37 +05:30
def edited_time_ago_with_tooltip(object, placement: 'top', html_class: 'time_ago', exclude_author: false)
2018-03-17 18:26:18 +05:30
return unless object.edited?
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
content_tag :small, class: 'edited-text' do
output = content_tag(:span, 'Edited ')
output << time_ago_with_tooltip(object.last_edited_at, placement: placement, html_class: html_class)
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
if !exclude_author && object.last_edited_by
output << content_tag(:span, ' by ')
output << link_to_member(object.project, object.last_edited_by, avatar: false, author_class: nil)
2016-06-02 11:05:42 +05:30
end
output
end
end
2015-04-26 12:48:37 +05:30
def promo_host
'about.gitlab.com'
end
def promo_url
'https://' + promo_host
end
2017-09-10 17:25:29 +05:30
def support_url
2018-03-17 18:26:18 +05:30
Gitlab::CurrentSettings.current_application_settings.help_page_support_url.presence || promo_url + '/getting-help/'
2017-09-10 17:25:29 +05:30
end
2015-04-26 12:48:37 +05:30
def page_filter_path(options = {})
without = options.delete(:without)
2016-06-02 11:05:42 +05:30
add_label = options.delete(:label)
2015-04-26 12:48:37 +05:30
exist_opts = {
state: params[:state],
scope: params[:scope],
milestone_title: params[:milestone_title],
2015-04-26 12:48:37 +05:30
assignee_id: params[:assignee_id],
2017-08-17 22:00:37 +05:30
assignee_username: params[:assignee_username],
2015-04-26 12:48:37 +05:30
author_id: params[:author_id],
2017-08-17 22:00:37 +05:30
author_username: params[:author_username],
2016-09-29 09:46:39 +05:30
search: params[:search],
label_name: params[:label_name]
2015-04-26 12:48:37 +05:30
}
options = exist_opts.merge(options)
if without.present?
without.each do |key|
options.delete(key)
2014-09-02 18:07:02 +05:30
end
end
params = options.compact
params.delete(:label_name) unless add_label
"#{request.path}?#{params.to_param}"
2015-04-26 12:48:37 +05:30
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
2015-10-24 18:46:33 +05:30
def truncate_first_line(message, length = 50)
truncate(message.each_line.first.chomp, length: length) if message
end
2016-08-24 12:49:21 +05:30
# While similarly named to Rails's `link_to_if`, this method behaves quite differently.
# If `condition` is truthy, a link will be returned with the result of the block
# as its body. If `condition` is falsy, only the result of the block will be returned.
def conditional_link_to(condition, options, html_options = {}, &block)
if condition
link_to options, html_options, &block
else
capture(&block)
end
end
2016-09-13 17:45:13 +05:30
def page_class
2017-09-10 17:25:29 +05:30
class_names = []
class_names << 'issue-boards-page' if current_controller?(:boards)
class_names << 'with-performance-bar' if performance_bar_enabled?
class_names
2016-09-13 17:45:13 +05:30
end
2017-08-17 22:00:37 +05:30
# Returns active css class when condition returns true
# otherwise returns nil.
#
# Example:
# %li{ class: active_when(params[:filter] == '1') }
def active_when(condition)
'active' if condition
end
2017-09-10 17:25:29 +05:30
def show_callout?(name)
cookies[name] != 'true'
end
def linkedin_url(user)
name = user.linkedin
if name =~ %r{\Ahttps?:\/\/(www\.)?linkedin\.com\/in\/}
name
else
"https://www.linkedin.com/in/#{name}"
end
end
def twitter_url(user)
name = user.twitter
if name =~ %r{\Ahttps?:\/\/(www\.)?twitter\.com\/}
name
else
"https://www.twitter.com/#{name}"
end
end
def collapsed_sidebar?
cookies["sidebar_collapsed"] == "true"
end
2018-03-17 18:26:18 +05:30
def locale_path
asset_path("locale/#{Gitlab::I18n.locale}/app.js")
end
2014-09-02 18:07:02 +05:30
end