application_helper.rb 6.6 KB
Newer Older
G
gitlabhq 已提交
1
require 'digest/md5'
S
Sergey Linnik 已提交
2
require 'uri'
R
Robert Speicher 已提交
3

G
gitlabhq 已提交
4
module ApplicationHelper
5 6
  COLOR_SCHEMES = {
    1 => 'white',
7
    2 => 'dark',
8 9 10 11
    3 => 'solarized-dark',
    4 => 'monokai',
  }
  COLOR_SCHEMES.default = 'white'
12

13 14 15 16 17 18 19 20 21 22 23
  # Helper method to access the COLOR_SCHEMES
  #
  # The keys are the `color_scheme_ids`
  # The values are the `name` of the scheme.
  #
  # The preview images are `name-scheme-preview.png`
  # The stylesheets should use the css class `.name`
  def color_schemes
    COLOR_SCHEMES.freeze
  end

24 25
  # Check if a particular controller is the current one
  #
26 27
  # args - One or more controller names to check
  #
28 29 30
  # Examples
  #
  #   # On TreeController
31 32 33 34 35
  #   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 }
36 37
  end

J
Johannes Schleifenbaum 已提交
38
  # Check if a particular action is the current one
R
Robert Speicher 已提交
39 40 41 42 43 44 45 46 47 48 49 50 51
  #
  # 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

S
Steven Thonus 已提交
52 53 54 55 56
  def group_icon(group_path)
    group = Group.find_by(path: group_path)
    if group && group.avatar.present?
      group.avatar.url
    else
57
      image_path('no_group_avatar.png')
S
Steven Thonus 已提交
58 59 60
    end
  end

S
Steven Thonus 已提交
61
  def avatar_icon(user_email = '', size = nil)
S
skv 已提交
62
    user = User.find_by(email: user_email)
63 64 65

    if user
      user.avatar_url(size) || default_avatar
S
Steven Thonus 已提交
66 67 68 69 70
    else
      gravatar_icon(user_email, size)
    end
  end

71
  def gravatar_icon(user_email = '', size = nil)
72 73 74
    GravatarService.new.execute(user_email, size) ||
      default_avatar
  end
75

76 77
  def default_avatar
    image_path('no_avatar.png')
G
gitlabhq 已提交
78 79 80
  end

  def last_commit(project)
N
Nihad Abbasov 已提交
81
    if project.repo_exists?
D
Dmitriy Zaporozhets 已提交
82
      time_ago_with_tooltip(project.repository.commit.committed_date)
N
Nihad Abbasov 已提交
83
    else
G
gitlabhq 已提交
84 85
      "Never"
    end
N
Nihad Abbasov 已提交
86
  rescue
G
gitlabhq 已提交
87
    "Never"
G
gitlabhq 已提交
88 89
  end

90
  def grouped_options_refs
D
Dmitriy Zaporozhets 已提交
91 92
    repository = @project.repository

G
gitlabhq 已提交
93
    options = [
D
Dmitriy Zaporozhets 已提交
94
      ["Branches", repository.branch_names],
R
Robert Speicher 已提交
95
      ["Tags", VersionSorter.rsort(repository.tag_names)]
G
gitlabhq 已提交
96 97
    ]

98
    # If reference is commit id - we should add it to branch/tag selectbox
99
    if(@ref && !options.flatten.include?(@ref) &&
100 101 102 103
       @ref =~ /^[0-9a-zA-Z]{6,52}$/)
      options << ["Commit", [@ref]]
    end

D
Dmitriy Zaporozhets 已提交
104
    grouped_options_for_select(options, @ref || @project.default_branch)
G
gitlabhq 已提交
105 106
  end

107 108 109
  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
R
Riyad Preukschas 已提交
110
    Emoji.names.to_s
111 112
  end

113
  def app_theme
114
    Gitlab::Theme.css_class_by_id(current_user.try(:theme_id))
115
  end
R
randx 已提交
116

117
  def user_color_scheme_class
118
    COLOR_SCHEMES[current_user.try(:color_scheme_id)] if defined?(current_user)
119 120
  end

121 122
  # Define whenever show last push event
  # with suggestion to create MR
R
randx 已提交
123
  def show_last_push_widget?(event)
124 125 126 127 128 129 130 131 132 133 134
    # 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?

135 136 137
    # Skip if user removed branch right after that
    return false unless project.repository.branch_names.include?(event.branch_name)

138
    true
R
randx 已提交
139
  end
D
Dmitriy Zaporozhets 已提交
140

141 142 143
  def hexdigest(string)
    Digest::SHA1.hexdigest string
  end
144

F
Florian Unglaub 已提交
145
  def authbutton(provider, size = 64)
D
Dmitriy Zaporozhets 已提交
146
    file_name = "#{provider.to_s.split('_').first}_#{size}.png"
147
    image_tag(image_path("authbuttons/#{file_name}"), alt: "Sign in with #{provider.to_s.titleize}")
F
Florian Unglaub 已提交
148
  end
149

R
Robert Speicher 已提交
150
  def simple_sanitize(str)
151 152 153
    sanitize(str, tags: %w(a span))
  end

154

155
  def body_data_page
156 157 158 159
    path = controller.controller_path.split('/')
    namespace = path.first if path.second

    [namespace, controller.controller_name, controller.action_name].compact.join(":")
160
  end
161 162 163 164 165 166 167 168 169 170

  # shortcut for gitlab config
  def gitlab_config
    Gitlab.config.gitlab
  end

  # shortcut for gitlab extra config
  def extra_config
    Gitlab.config.extra
  end
171

172 173 174
  def search_placeholder
    if @project && @project.persisted?
      "Search in this project"
175
    elsif @snippet || @snippets || @show_snippets
176
      'Search snippets'
177 178 179 180 181
    elsif @group && @group.persisted?
      "Search in this group"
    else
      "Search"
    end
182
  end
183 184 185 186

  def broadcast_message
    BroadcastMessage.current
  end
187 188 189 190

  def highlight_js(&block)
    string = capture(&block)

191 192 193 194 195 196 197 198
    content_tag :div, class: "highlighted-data #{user_color_scheme_class}" do
      content_tag :div, class: 'highlight' do
        content_tag :pre do
          content_tag :code do
            string.html_safe
          end
        end
      end
199 200
    end
  end
201 202 203

  def time_ago_with_tooltip(date, placement = 'top', html_class = 'time_ago')
    capture_haml do
D
Dmitriy Zaporozhets 已提交
204 205
      haml_tag :time, date.to_s,
        class: html_class, datetime: date.getutc.iso8601, title: date.stamp("Aug 21, 2011 9:23pm"),
206 207
        data: { toggle: 'tooltip', placement: placement }

D
Dmitriy Zaporozhets 已提交
208
      haml_tag :script, "$('." + html_class + "').timeago().tooltip()"
209 210
    end.html_safe
  end
211 212

  def render_markup(file_name, file_content)
213 214
    GitHub::Markup.render(file_name, file_content).
      force_encoding(file_content.encoding).html_safe
215 216
  rescue RuntimeError
    simple_format(file_content)
217
  end
218

219 220 221 222 223 224 225 226
  def markup?(filename)
    Gitlab::MarkdownHelper.markup?(filename)
  end

  def gitlab_markdown?(filename)
    Gitlab::MarkdownHelper.gitlab_markdown?(filename)
  end

227 228 229 230 231
  def spinner(text = nil, visible = false)
    css_class = "loading"
    css_class << " hide" unless visible

    content_tag :div, class: css_class do
S
Sullivan SENECHAL 已提交
232
      content_tag(:i, nil, class: 'fa fa-spinner fa-spin') + text
233 234
    end
  end
235 236

  def link_to(name = nil, options = nil, html_options = nil, &block)
237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
    begin
      uri = URI(options)
      host = uri.host
      absolute_uri = uri.absolute?
    rescue URI::InvalidURIError, ArgumentError
      host = nil
      absolute_uri = nil
    end

    # Add "nofollow" only to external links
    if host && host != Gitlab.config.gitlab.host && absolute_uri
      if html_options
        if html_options[:rel]
          html_options[:rel] << " nofollow"
        else
          html_options.merge!(rel: "nofollow")
        end
254
      else
255 256
        html_options = Hash.new
        html_options[:rel] = "nofollow"
257 258
      end
    end
259

260 261
    super
  end
D
Dmitriy Zaporozhets 已提交
262 263 264 265

  def escaped_autolink(text)
    auto_link ERB::Util.html_escape(text), link: :urls
  end
G
gitlabhq 已提交
266
end