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
|
2011-11-09 09:15:21 -05:00
|
|
|
|
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)
|
|
|
|
args.any? { |v| v.to_s.downcase == controller.controller_name }
|
2012-09-25 19:22:44 -04:00
|
|
|
end
|
|
|
|
|
2012-09-26 15:06:07 -04:00
|
|
|
# Check if a partcular 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
|
|
|
|
|
2012-11-18 17:36:50 -05:00
|
|
|
def gravatar_icon(user_email = '', size = nil)
|
|
|
|
size = 40 if size.nil? || size <= 0
|
|
|
|
|
2012-08-15 21:06:08 -04:00
|
|
|
if Gitlab.config.disable_gravatar? || user_email.blank?
|
|
|
|
'no_avatar.png'
|
|
|
|
else
|
2012-12-06 15:44:22 -05:00
|
|
|
gravatar_url = request.ssl? ? Gitlab.config.gravatar_ssl_url : Gitlab.config.gravatar_url
|
2012-08-15 21:06:08 -04:00
|
|
|
user_email.strip!
|
2012-12-06 15:44:22 -05:00
|
|
|
sprintf(gravatar_url, {:hash => Digest::MD5.hexdigest(user_email.downcase), :email => URI.escape(user_email), :size => size})
|
2012-08-15 21:06:08 -04:00
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
2012-03-22 14:02:38 -04:00
|
|
|
def request_protocol
|
|
|
|
request.ssl? ? "https" : "http"
|
|
|
|
end
|
|
|
|
|
|
|
|
def web_app_url
|
2012-07-02 14:51:48 -04:00
|
|
|
"#{request_protocol}://#{Gitlab.config.web_host}/"
|
2012-03-22 14:02:38 -04:00
|
|
|
end
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
def last_commit(project)
|
2011-10-26 09:46:25 -04:00
|
|
|
if project.repo_exists?
|
2011-10-08 17:36:38 -04:00
|
|
|
time_ago_in_words(project.commit.committed_date) + " ago"
|
2011-10-26 09:46:25 -04:00
|
|
|
else
|
2011-10-08 17:36:38 -04:00
|
|
|
"Never"
|
|
|
|
end
|
2011-11-15 03:34:30 -05:00
|
|
|
rescue
|
2011-11-02 11:21:17 -04:00
|
|
|
"Never"
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
2011-11-16 12:19:18 -05:00
|
|
|
def grouped_options_refs(destination = :tree)
|
2011-11-03 12:28:33 -04:00
|
|
|
options = [
|
2012-09-27 02:53:42 -04:00
|
|
|
["Branch", @project.branch_names ],
|
|
|
|
[ "Tag", @project.tag_names ]
|
2011-11-03 12:28:33 -04:00
|
|
|
]
|
|
|
|
|
2012-06-03 15:27:34 -04:00
|
|
|
# If reference is commit id -
|
2012-02-15 01:46:09 -05:00
|
|
|
# we should add it to branch/tag selectbox
|
2012-02-20 03:38:03 -05:00
|
|
|
if(@ref && !options.flatten.include?(@ref) &&
|
2012-02-15 01:46:09 -05:00
|
|
|
@ref =~ /^[0-9a-zA-Z]{6,52}$/)
|
|
|
|
options << ["Commit", [@ref]]
|
|
|
|
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
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
def search_autocomplete_source
|
2012-11-26 23:29:11 -05:00
|
|
|
projects = current_user.projects.map{ |p| { label: p.name_with_namespace, url: project_path(p) } }
|
2012-10-11 19:02:28 -04:00
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
default_nav = [
|
2012-10-11 19:02:28 -04:00
|
|
|
{ label: "My Profile", url: profile_path },
|
|
|
|
{ label: "My SSH Keys", url: keys_path },
|
|
|
|
{ label: "My Dashboard", url: root_path },
|
|
|
|
{ label: "Admin Section", url: admin_root_path },
|
2011-10-08 17:36:38 -04:00
|
|
|
]
|
|
|
|
|
2012-10-11 19:02:28 -04:00
|
|
|
help_nav = [
|
|
|
|
{ label: "Workflow Help", url: help_workflow_path },
|
|
|
|
{ label: "Permissions Help", url: help_permissions_path },
|
|
|
|
{ label: "Web Hooks Help", url: help_web_hooks_path },
|
|
|
|
{ label: "System Hooks Help", url: help_system_hooks_path },
|
|
|
|
{ label: "API Help", url: help_api_path },
|
|
|
|
{ label: "Markdown Help", url: help_markdown_path },
|
|
|
|
{ label: "SSH Keys Help", url: help_ssh_path },
|
2012-12-08 11:34:24 -05:00
|
|
|
{ label: "Gitlab Rake Tasks Help", url: help_raketasks_path },
|
2012-10-11 19:02:28 -04:00
|
|
|
]
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2012-10-11 19:02:28 -04:00
|
|
|
project_nav = []
|
2011-10-08 17:36:38 -04:00
|
|
|
if @project && !@project.new_record?
|
|
|
|
project_nav = [
|
2012-10-11 19:02:28 -04:00
|
|
|
{ label: "#{@project.name} Issues", url: project_issues_path(@project) },
|
|
|
|
{ label: "#{@project.name} Commits", url: project_commits_path(@project, @ref || @project.root_ref) },
|
|
|
|
{ label: "#{@project.name} Merge Requests", url: project_merge_requests_path(@project) },
|
|
|
|
{ label: "#{@project.name} Milestones", url: project_milestones_path(@project) },
|
|
|
|
{ label: "#{@project.name} Snippets", url: project_snippets_path(@project) },
|
|
|
|
{ label: "#{@project.name} Team", url: project_team_index_path(@project) },
|
|
|
|
{ label: "#{@project.name} Tree", url: project_tree_path(@project, @ref || @project.root_ref) },
|
|
|
|
{ label: "#{@project.name} Wall", url: wall_project_path(@project) },
|
|
|
|
{ label: "#{@project.name} Wiki", url: project_wikis_path(@project) },
|
2011-10-08 17:36:38 -04:00
|
|
|
]
|
|
|
|
end
|
|
|
|
|
2012-10-11 19:02:28 -04:00
|
|
|
[projects, default_nav, project_nav, help_nav].flatten.to_json
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
2012-10-09 18:53:42 -04:00
|
|
|
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 10:26:40 -04:00
|
|
|
Emoji.names.to_s
|
2012-10-09 18:53:42 -04:00
|
|
|
end
|
|
|
|
|
2012-01-28 08:23:17 -05:00
|
|
|
def ldap_enable?
|
|
|
|
Devise.omniauth_providers.include?(:ldap)
|
|
|
|
end
|
2012-02-09 02:59:14 -05:00
|
|
|
|
2012-03-01 14:23:50 -05:00
|
|
|
def app_theme
|
2012-06-11 13:52:32 -04:00
|
|
|
Gitlab::Theme.css_class_by_id(current_user.try(:theme_id))
|
2012-03-01 14:23:50 -05:00
|
|
|
end
|
2012-06-21 11:41:22 -04:00
|
|
|
|
2012-11-27 16:49:22 -05:00
|
|
|
def user_color_scheme_class
|
|
|
|
current_user.dark_scheme ? :black : :white
|
|
|
|
end
|
|
|
|
|
2012-06-21 11:41:22 -04:00
|
|
|
def show_last_push_widget?(event)
|
2012-08-30 01:13:36 -04:00
|
|
|
event &&
|
2012-06-27 17:54:53 -04:00
|
|
|
event.last_push_to_non_root? &&
|
|
|
|
!event.rm_ref? &&
|
2012-08-30 01:13:36 -04:00
|
|
|
event.project &&
|
2012-06-27 17:54:53 -04:00
|
|
|
event.project.merge_requests_enabled
|
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
|
|
|
|
|
|
|
def project_last_activity project
|
|
|
|
activity = project.last_activity
|
|
|
|
if activity && activity.created_at
|
|
|
|
time_ago_in_words(activity.created_at) + " ago"
|
|
|
|
else
|
|
|
|
"Never"
|
|
|
|
end
|
|
|
|
end
|
2012-09-11 23:49:52 -04:00
|
|
|
|
2012-08-03 11:27:39 -04:00
|
|
|
def authbutton(provider, size = 64)
|
2012-09-12 01:23:20 -04:00
|
|
|
file_name = "#{provider.to_s.split('_').first}_#{size}.png"
|
|
|
|
image_tag("authbuttons/#{file_name}",
|
|
|
|
alt: "Sign in with #{provider.to_s.titleize}")
|
2012-08-03 11:27:39 -04:00
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|