application_helper.rb 8.8 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
  # Check if a particular controller is the current one
  #
7 8
  # args - One or more controller names to check
  #
9 10 11
  # Examples
  #
  #   # On TreeController
12 13 14 15
  #   current_controller?(:tree)           # => true
  #   current_controller?(:commits)        # => false
  #   current_controller?(:commits, :tree) # => true
  def current_controller?(*args)
16 17 18
    args.any? do |v|
      v.to_s.downcase == controller.controller_name || v.to_s.downcase == controller.controller_path
    end
19 20
  end

J
Johannes Schleifenbaum 已提交
21
  # Check if a particular action is the current one
R
Robert Speicher 已提交
22 23 24 25 26 27 28 29 30 31 32 33 34
  #
  # 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

35
  def project_icon(project_id, options = {})
36
    project =
37
      if project_id.respond_to?(:avatar_url)
G
Guilherme Garnier 已提交
38
        project_id
39
      else
40
        Project.find_by_full_path(project_id)
41 42
      end

S
sue445 已提交
43 44
    if project.avatar_url
      image_tag project.avatar_url, options
45 46 47 48 49 50
    else # generated icon
      project_identicon(project, options)
    end
  end

  def project_identicon(project, options = {})
51 52 53 54 55 56 57 58 59 60
    allowed_colors = {
      red: 'FFEBEE',
      purple: 'F3E5F5',
      indigo: 'E8EAF6',
      blue: 'E3F2FD',
      teal: 'E0F2F1',
      orange: 'FBE9E7',
      gray: 'EEEEEE'
    }

61 62
    options[:class] ||= ''
    options[:class] << ' identicon'
63
    bg_key = project.id % 7
G
Gabriel Mazetto 已提交
64
    style = "background-color: ##{allowed_colors.values[bg_key]}; color: #555"
65

66
    content_tag(:div, class: options[:class], style: style) do
67
      project.name[0, 1].upcase
68 69 70
    end
  end

71 72 73 74 75 76 77 78 79 80 81 82
  # 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

83 84 85 86 87 88 89 90
  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
91

92
  def avatar_icon_for_user(user = nil, size = nil, scale = 2, only_path: true)
93
    if user
94
      user.avatar_url(size: size, only_path: only_path) || default_avatar
S
Steven Thonus 已提交
95
    else
96
      gravatar_icon(nil, size, scale)
S
Steven Thonus 已提交
97 98 99
    end
  end

100 101
  def gravatar_icon(user_email = '', size = nil, scale = 2)
    GravatarService.new.execute(user_email, size, scale) ||
102 103
      default_avatar
  end
104

105
  def default_avatar
106
    asset_path('no_avatar.png')
G
gitlabhq 已提交
107 108 109
  end

  def last_commit(project)
N
Nihad Abbasov 已提交
110
    if project.repo_exists?
D
Dmitriy Zaporozhets 已提交
111
      time_ago_with_tooltip(project.repository.commit.committed_date)
N
Nihad Abbasov 已提交
112
    else
113
      'Never'
G
gitlabhq 已提交
114
    end
N
Nihad Abbasov 已提交
115
  rescue
116
    'Never'
G
gitlabhq 已提交
117 118
  end

119 120
  # Define whenever show last push event
  # with suggestion to create MR
R
randx 已提交
121
  def show_last_push_widget?(event)
122 123 124 125 126 127
    # 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
F
Felipe Artur 已提交
128
    return false unless project && !project.empty_repo? && project.feature_available?(:merge_requests, current_user)
129 130 131 132

    # Skip if user already created appropriate MR
    return false if project.merge_requests.where(source_branch: event.branch_name).opened.any?

133
    # Skip if user removed branch right after that
P
Paco Guzman 已提交
134
    return false unless project.repository.branch_exists?(event.branch_name)
135

136
    true
R
randx 已提交
137
  end
D
Dmitriy Zaporozhets 已提交
138

139 140 141
  def hexdigest(string)
    Digest::SHA1.hexdigest string
  end
142

R
Robert Speicher 已提交
143
  def simple_sanitize(str)
144 145 146
    sanitize(str, tags: %w(a span))
  end

147
  def body_data_page
D
Douwe Maan 已提交
148
    [*controller.controller_path.split('/'), controller.action_name].compact.join(':')
149
  end
150 151 152 153 154 155 156 157 158 159

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

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

161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
  # 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
177
  def time_ago_with_tooltip(time, placement: 'top', html_class: '', short_format: false)
178 179 180
    css_classes = short_format ? 'js-short-timeago' : 'js-timeago'
    css_classes << " #{html_class}" unless html_class.blank?

B
Bob Van Landuyt 已提交
181
    element = content_tag :time, l(time, format: "%b %d, %Y"),
182
      class: css_classes,
183
      title: l(time.to_time.in_time_zone, format: :timeago_tooltip),
184 185 186 187 188 189
      datetime: time.to_time.getutc.iso8601,
      data: {
        toggle: 'tooltip',
        placement: placement,
        container: 'body'
      }
190 191

    element
192
  end
193

B
blackst0ne 已提交
194
  def edited_time_ago_with_tooltip(object, placement: 'top', html_class: 'time_ago', exclude_author: false)
195
    return unless object.edited?
P
Phil Hughes 已提交
196

197 198 199
    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)
P
Phil Hughes 已提交
200

B
blackst0ne 已提交
201
      if !exclude_author && object.last_edited_by
202 203
        output << content_tag(:span, ' by ')
        output << link_to_member(object.project, object.last_edited_by, avatar: false, author_class: nil)
P
Phil Hughes 已提交
204 205 206 207 208 209
      end

      output
    end
  end

210 211 212 213 214 215 216
  def promo_host
    'about.gitlab.com'
  end

  def promo_url
    'https://' + promo_host
  end
217

R
Robin Bobbitt 已提交
218
  def support_url
219
    Gitlab::CurrentSettings.current_application_settings.help_page_support_url.presence || promo_url + '/getting-help/'
R
Robin Bobbitt 已提交
220 221
  end

222 223
  def page_filter_path(options = {})
    without = options.delete(:without)
A
Arinde Eniola 已提交
224
    add_label = options.delete(:label)
225

226 227 228
    exist_opts = {
      state: params[:state],
      scope: params[:scope],
229
      milestone_title: params[:milestone_title],
230
      assignee_id: params[:assignee_id],
C
Clement Ho 已提交
231
      assignee_username: params[:assignee_username],
232
      author_id: params[:author_id],
C
Clement Ho 已提交
233
      author_username: params[:author_username],
B
barthc 已提交
234
      search: params[:search],
P
Phil Hughes 已提交
235
      label_name: params[:label_name]
236 237 238 239
    }

    options = exist_opts.merge(options)

240 241 242 243 244 245
    if without.present?
      without.each do |key|
        options.delete(key)
      end
    end

P
Phil Hughes 已提交
246
    params = options.compact
P
Phil Hughes 已提交
247

P
Phil Hughes 已提交
248
    params.delete(:label_name) unless add_label
P
Phil Hughes 已提交
249

P
Phil Hughes 已提交
250
    "#{request.path}?#{params.to_param}"
251
  end
252 253 254 255

  def outdated_browser?
    browser.ie? && browser.version.to_i < 10
  end
256 257 258 259 260 261 262 263

  def path_to_key(key, admin = false)
    if admin
      admin_user_key_path(@user, key)
    else
      profile_key_path(key)
    end
  end
264

265 266 267
  def truncate_first_line(message, length = 50)
    truncate(message.each_line.first.chomp, length: length) if message
  end
268 269 270 271 272 273 274 275 276 277 278

  # 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
P
Phil Hughes 已提交
279 280

  def page_class
281 282 283 284 285
    class_names = []
    class_names << 'issue-boards-page' if current_controller?(:boards)
    class_names << 'with-performance-bar' if performance_bar_enabled?

    class_names
P
Phil Hughes 已提交
286
  end
S
Semyon Pupkov 已提交
287 288 289 290 291 292 293 294 295

  # 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
P
Phil Hughes 已提交
296

297 298
  def show_callout?(name)
    cookies[name] != 'true'
P
Phil Hughes 已提交
299
  end
300 301 302

  def linkedin_url(user)
    name = user.linkedin
T
Tim Zallmann 已提交
303
    if name =~ %r{\Ahttps?:\/\/(www\.)?linkedin\.com\/in\/}
304 305 306 307 308 309
      name
    else
      "https://www.linkedin.com/in/#{name}"
    end
  end

310
  def twitter_url(user)
311
    name = user.twitter
T
Tim Zallmann 已提交
312
    if name =~ %r{\Ahttps?:\/\/(www\.)?twitter\.com\/}
313 314 315 316 317
      name
    else
      "https://www.twitter.com/#{name}"
    end
  end
P
Phil Hughes 已提交
318

319 320 321
  def collapsed_sidebar?
    cookies["sidebar_collapsed"] == "true"
  end
M
Mike Greiling 已提交
322

323
  def show_new_ide?
324
    cookies["new_repo"] == "true" && body_data_page != 'projects:show'
325
  end
326 327 328 329

  def locale_path
    asset_path("locale/#{Gitlab::I18n.locale}/app.js")
  end
G
gitlabhq 已提交
330
end