BigW Consortium Gitlab

application_controller.rb 8.51 KB
Newer Older
1
require 'gon'
Jared Szechy committed
2
require 'fogbugz'
3

4
class ApplicationController < ActionController::Base
5
  include Gitlab::CurrentSettings
6
  include Gitlab::GonHelper
7 8
  include GitlabRoutingHelper
  include PageLayoutHelper
9
  include SentryHelper
10
  include WorkhorseHelper
11
  include EnforcesTwoFactorAuthentication
12
  include WithPerformanceBar
13

14
  before_action :authenticate_user_from_private_token!
15
  before_action :authenticate_user_from_rss_token!
16
  before_action :authenticate_user!
17
  before_action :validate_user_service_ticket!
18 19
  before_action :check_password_expiration
  before_action :ldap_security_check
20
  before_action :sentry_context
21
  before_action :default_headers
22
  before_action :add_gon_variables, unless: -> { request.path.start_with?('/-/peek') }
23 24
  before_action :configure_permitted_parameters, if: :devise_controller?
  before_action :require_email, unless: :devise_controller?
25

26 27
  around_action :set_locale

28
  protect_from_forgery with: :exception
29

30
  helper_method :can?, :current_application_settings
31
  helper_method :import_sources_enabled?, :github_import_enabled?, :gitea_import_enabled?, :github_import_configured?, :gitlab_import_enabled?, :gitlab_import_configured?, :bitbucket_import_enabled?, :bitbucket_import_configured?, :google_code_import_enabled?, :fogbugz_import_enabled?, :git_import_enabled?, :gitlab_project_import_enabled?
gitlabhq committed
32

33
  rescue_from Encoding::CompatibilityError do |exception|
Riyad Preukschas committed
34
    log_exception(exception)
35
    render "errors/encoding", layout: "errors", status: 500
36 37
  end

38
  rescue_from ActiveRecord::RecordNotFound do |exception|
Riyad Preukschas committed
39
    log_exception(exception)
40
    render_404
gitlabhq committed
41 42
  end

43 44 45 46
  rescue_from(ActionController::UnknownFormat) do
    render_404
  end

47 48 49 50
  rescue_from Gitlab::Access::AccessDeniedError do |exception|
    render_403
  end

51
  rescue_from Gitlab::Auth::TooManyIps do |e|
52
    head :forbidden, retry_after: Gitlab::Auth::UniqueIpsLimiter.config.unique_ips_limit_time_window
53 54
  end

55 56 57 58
  def redirect_back_or_default(default: root_path, options: {})
    redirect_to request.referer.present? ? :back : default, options
  end

59 60 61 62
  def not_found
    render_404
  end

63 64 65 66
  def route_not_found
    if current_user
      not_found
    else
67
      authenticate_user!
68 69 70
    end
  end

Nihad Abbasov committed
71
  protected
gitlabhq committed
72

73 74
  # This filter handles both private tokens and personal access tokens
  def authenticate_user_from_private_token!
75 76 77 78 79
    token = params[:private_token].presence || request.headers['PRIVATE-TOKEN'].presence

    return unless token.present?

    user = User.find_by_authentication_token(token) || User.find_by_personal_access_token(token)
80

81 82 83 84 85 86 87 88 89 90 91 92 93 94
    sessionless_sign_in(user)
  end

  # This filter handles authentication for atom request with an rss_token
  def authenticate_user_from_rss_token!
    return unless request.format.atom?

    token = params[:rss_token].presence

    return unless token.present?

    user = User.find_by_rss_token(token)

    sessionless_sign_in(user)
95 96
  end

Riyad Preukschas committed
97
  def log_exception(exception)
98 99
    Raven.capture_exception(exception) if sentry_enabled?

Riyad Preukschas committed
100 101 102 103 104
    application_trace = ActionDispatch::ExceptionWrapper.new(env, exception).application_trace
    application_trace.map!{ |t| "  #{t}\n" }
    logger.error "\n#{exception.class.name} (#{exception.message}):\n#{application_trace.join}"
  end

105
  def after_sign_in_path_for(resource)
106
    stored_location_for(:redirect) || stored_location_for(resource) || root_path
randx committed
107 108
  end

109
  def after_sign_out_path_for(resource)
110
    current_application_settings.after_sign_out_path.presence || new_user_session_path
111 112
  end

113
  def can?(object, action, subject = :global)
114
    Ability.allowed?(object, action, subject)
gitlabhq committed
115 116
  end

gitlabhq committed
117
  def access_denied!
118 119 120 121
    respond_to do |format|
      format.json { head :not_found }
      format.any { render "errors/access_denied", layout: "errors", status: 404 }
    end
122 123 124
  end

  def git_not_found!
125
    render "errors/git_not_found.html", layout: "errors", status: 404
gitlabhq committed
126 127
  end

128 129
  def render_403
    head :forbidden
gitlabhq committed
130
  end
gitlabhq committed
131

132
  def render_404
133
    respond_to do |format|
Sean McGivern committed
134
      format.html do
135 136
        render file: Rails.root.join("public", "404"), layout: false, status: "404"
      end
Sean McGivern committed
137
      format.any { head :not_found }
138
    end
139 140
  end

141 142 143 144
  def respond_422
    head :unprocessable_entity
  end

145 146 147 148 149
  def no_cache_headers
    response.headers["Cache-Control"] = "no-cache, no-store, max-age=0, must-revalidate"
    response.headers["Pragma"] = "no-cache"
    response.headers["Expires"] = "Fri, 01 Jan 1990 00:00:00 GMT"
  end
150

151 152 153
  def default_headers
    headers['X-Frame-Options'] = 'DENY'
    headers['X-XSS-Protection'] = '1; mode=block'
154
    headers['X-UA-Compatible'] = 'IE=edge'
155
    headers['X-Content-Type-Options'] = 'nosniff'
156
  end
157

158 159 160 161 162 163 164 165 166 167 168 169 170 171
  def validate_user_service_ticket!
    return unless signed_in? && session[:service_tickets]

    valid = session[:service_tickets].all? do |provider, ticket|
      Gitlab::OAuth::Session.valid?(provider, ticket)
    end

    unless valid
      session[:service_tickets] = nil
      sign_out current_user
      redirect_to new_user_session_path
    end
  end

172
  def check_password_expiration
173
    if current_user && current_user.password_expires_at && current_user.password_expires_at < Time.now && current_user.allow_password_authentication?
Douwe Maan committed
174
      return redirect_to new_profile_password_path
175 176
    end
  end
177

178
  def ldap_security_check
179
    if current_user && current_user.requires_ldap_check?
Jacob Vosmaer committed
180
      return unless current_user.try_obtain_ldap_lease
181

182 183 184 185
      unless Gitlab::LDAP::Access.allowed?(current_user)
        sign_out current_user
        flash[:alert] = "Access denied for your LDAP account."
        redirect_to new_user_session_path
186 187 188 189
      end
    end
  end

190
  def event_filter
191 192
    # Split using comma to maintain backward compatibility Ex/ "filter1,filter2"
    filters = cookies['event_filter'].split(',')[0] if cookies['event_filter'].present?
193 194
    @event_filter ||= EventFilter.new(filters)
  end
195

196
  def gitlab_ldap_access(&block)
197
    Gitlab::LDAP::Access.open { |access| yield(access) }
198 199
  end

200
  # JSON for infinite scroll via Pager object
201
  def pager_json(partial, count, locals = {})
202 203
    html = render_to_string(
      partial,
204
      locals: locals,
205 206 207 208 209 210 211 212 213
      layout: false,
      formats: [:html]
    )

    render json: {
      html: html,
      count: count
    }
  end
214

Josh Frye committed
215
  def view_to_html_string(partial, locals = {})
216
    render_to_string(
Josh Frye committed
217
      partial,
218
      locals: locals,
219 220 221 222
      layout: false,
      formats: [:html]
    )
  end
223 224

  def configure_permitted_parameters
225
    devise_parameter_sanitizer.permit(:sign_in, keys: [:username, :email, :password, :login, :remember_me, :otp_attempt])
226
  end
227 228 229 230

  def hexdigest(string)
    Digest::SHA1.hexdigest string
  end
231 232

  def require_email
233
    if current_user && current_user.temp_oauth_email? && session[:impersonator_id].nil?
Douwe Maan committed
234
      return redirect_to profile_path, notice: 'Please complete your profile with email address'
235 236
    end
  end
237

238 239 240 241
  def import_sources_enabled?
    !current_application_settings.import_sources.empty?
  end

242
  def github_import_enabled?
243 244 245
    current_application_settings.import_sources.include?('github')
  end

246 247
  def gitea_import_enabled?
    current_application_settings.import_sources.include?('gitea')
Kim "BKC" Carlbäcker committed
248 249
  end

250
  def github_import_configured?
251
    Gitlab::OAuth::Provider.enabled?(:github)
252 253 254
  end

  def gitlab_import_enabled?
255 256 257 258
    request.host != 'gitlab.com' && current_application_settings.import_sources.include?('gitlab')
  end

  def gitlab_import_configured?
259
    Gitlab::OAuth::Provider.enabled?(:gitlab)
260 261 262
  end

  def bitbucket_import_enabled?
263 264 265 266
    current_application_settings.import_sources.include?('bitbucket')
  end

  def bitbucket_import_configured?
267
    Gitlab::OAuth::Provider.enabled?(:bitbucket)
268
  end
269 270 271 272 273

  def google_code_import_enabled?
    current_application_settings.import_sources.include?('google_code')
  end

Jared Szechy committed
274 275 276 277
  def fogbugz_import_enabled?
    current_application_settings.import_sources.include?('fogbugz')
  end

278 279 280
  def git_import_enabled?
    current_application_settings.import_sources.include?('git')
  end
281

282 283 284 285
  def gitlab_project_import_enabled?
    current_application_settings.import_sources.include?('gitlab_project')
  end

286 287 288 289 290 291
  # U2F (universal 2nd factor) devices need a unique identifier for the application
  # to perform authentication.
  # https://developers.yubico.com/U2F/App_ID.html
  def u2f_app_id
    request.base_url
  end
292

293 294
  def set_locale(&block)
    Gitlab::I18n.with_user_locale(current_user, &block)
295
  end
296 297 298 299 300 301 302 303 304 305

  def sessionless_sign_in(user)
    if user && can?(user, :log_in)
      # Notice we are passing store false, so the user is not
      # actually stored in the session and a token is needed
      # for every request. If you want the token to work as a
      # sign in token, you can simply remove store: false.
      sign_in user, store: false
    end
  end
gitlabhq committed
306
end