application_helper.rb 8.0 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 37
    project =
      if project_id.is_a?(Project)
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

J
Jan-Gerd Tenberge 已提交
71
  def avatar_icon(user_or_email = nil, size = nil, scale = 2)
D
Douwe Maan 已提交
72 73 74 75 76 77
    user =
      if user_or_email.is_a?(User)
        user_or_email
      else
        User.find_by_any_email(user_or_email.try(:downcase))
      end
78 79

    if user
80
      user.avatar_url(size: size) || default_avatar
S
Steven Thonus 已提交
81
    else
J
Jan-Gerd Tenberge 已提交
82
      gravatar_icon(user_or_email, size, scale)
S
Steven Thonus 已提交
83 84 85
    end
  end

86 87
  def gravatar_icon(user_email = '', size = nil, scale = 2)
    GravatarService.new.execute(user_email, size, scale) ||
88 89
      default_avatar
  end
90

91
  def default_avatar
92
    'no_avatar.png'
G
gitlabhq 已提交
93 94 95
  end

  def last_commit(project)
N
Nihad Abbasov 已提交
96
    if project.repo_exists?
D
Dmitriy Zaporozhets 已提交
97
      time_ago_with_tooltip(project.repository.commit.committed_date)
N
Nihad Abbasov 已提交
98
    else
99
      'Never'
G
gitlabhq 已提交
100
    end
N
Nihad Abbasov 已提交
101
  rescue
102
    'Never'
G
gitlabhq 已提交
103 104
  end

105 106
  # Define whenever show last push event
  # with suggestion to create MR
R
randx 已提交
107
  def show_last_push_widget?(event)
108 109 110 111 112 113
    # 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 已提交
114
    return false unless project && !project.empty_repo? && project.feature_available?(:merge_requests, current_user)
115 116 117 118

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

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

122
    true
R
randx 已提交
123
  end
D
Dmitriy Zaporozhets 已提交
124

125 126 127
  def hexdigest(string)
    Digest::SHA1.hexdigest string
  end
128

R
Robert Speicher 已提交
129
  def simple_sanitize(str)
130 131 132
    sanitize(str, tags: %w(a span))
  end

133
  def body_data_page
134 135 136
    path = controller.controller_path.split('/')
    namespace = path.first if path.second

137
    [namespace, controller.controller_name, controller.action_name].compact.join(':')
138
  end
139 140 141 142 143 144 145 146 147 148

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

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

150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
  # 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
166
  def time_ago_with_tooltip(time, placement: 'top', html_class: '', short_format: false)
167 168 169
    css_classes = short_format ? 'js-short-timeago' : 'js-timeago'
    css_classes << " #{html_class}" unless html_class.blank?

B
Bob Van Landuyt 已提交
170
    element = content_tag :time, l(time, format: "%b %d, %Y"),
171
      class: css_classes,
172
      title: l(time.to_time.in_time_zone, format: :timeago_tooltip),
173 174 175 176 177 178
      datetime: time.to_time.getutc.iso8601,
      data: {
        toggle: 'tooltip',
        placement: placement,
        container: 'body'
      }
179 180

    element
181
  end
182

B
blackst0ne 已提交
183
  def edited_time_ago_with_tooltip(object, placement: 'top', html_class: 'time_ago', exclude_author: false)
184
    return unless object.is_edited?
P
Phil Hughes 已提交
185

186 187 188
    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 已提交
189

B
blackst0ne 已提交
190
      if !exclude_author && object.last_edited_by
191 192
        output << content_tag(:span, ' by ')
        output << link_to_member(object.project, object.last_edited_by, avatar: false, author_class: nil)
P
Phil Hughes 已提交
193 194 195 196 197 198
      end

      output
    end
  end

199 200 201 202 203 204 205
  def promo_host
    'about.gitlab.com'
  end

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

R
Robin Bobbitt 已提交
207 208 209 210
  def support_url
    current_application_settings.help_page_support_url.presence || promo_url + '/getting-help/'
  end

211 212
  def page_filter_path(options = {})
    without = options.delete(:without)
A
Arinde Eniola 已提交
213
    add_label = options.delete(:label)
214

215 216 217
    exist_opts = {
      state: params[:state],
      scope: params[:scope],
218
      milestone_title: params[:milestone_title],
219
      assignee_id: params[:assignee_id],
C
Clement Ho 已提交
220
      assignee_username: params[:assignee_username],
221
      author_id: params[:author_id],
C
Clement Ho 已提交
222
      author_username: params[:author_username],
B
barthc 已提交
223
      search: params[:search],
P
Phil Hughes 已提交
224
      label_name: params[:label_name]
225 226 227 228
    }

    options = exist_opts.merge(options)

229 230 231 232 233 234
    if without.present?
      without.each do |key|
        options.delete(key)
      end
    end

P
Phil Hughes 已提交
235
    params = options.compact
P
Phil Hughes 已提交
236

P
Phil Hughes 已提交
237
    params.delete(:label_name) unless add_label
P
Phil Hughes 已提交
238

P
Phil Hughes 已提交
239
    "#{request.path}?#{params.to_param}"
240
  end
241 242 243 244

  def outdated_browser?
    browser.ie? && browser.version.to_i < 10
  end
245 246 247 248 249 250 251 252

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

254 255 256
  def truncate_first_line(message, length = 50)
    truncate(message.each_line.first.chomp, length: length) if message
  end
257 258 259 260 261 262 263 264 265 266 267

  # 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 已提交
268 269 270 271

  def page_class
    "issue-boards-page" if current_controller?(:boards)
  end
S
Semyon Pupkov 已提交
272 273 274 275 276 277 278 279 280

  # 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 已提交
281

282 283
  def show_callout?(name)
    cookies[name] != 'true'
P
Phil Hughes 已提交
284
  end
285 286 287

  def linkedin_url(user)
    name = user.linkedin
T
Tim Zallmann 已提交
288
    if name =~ %r{\Ahttps?:\/\/(www\.)?linkedin\.com\/in\/}
289 290 291 292 293 294
      name
    else
      "https://www.linkedin.com/in/#{name}"
    end
  end

295
  def twitter_url(user)
296
    name = user.twitter
T
Tim Zallmann 已提交
297
    if name =~ %r{\Ahttps?:\/\/(www\.)?twitter\.com\/}
298 299 300 301 302
      name
    else
      "https://www.twitter.com/#{name}"
    end
  end
G
gitlabhq 已提交
303
end