application_controller.rb 8.1 KB
Newer Older
1
require 'gon'
J
Jared Szechy 已提交
2
require 'fogbugz'
3

4
class ApplicationController < ActionController::Base
5
  include Gitlab::CurrentSettings
6
  include Gitlab::GonHelper
7 8
  include GitlabRoutingHelper
  include PageLayoutHelper
S
Stan Hu 已提交
9
  include SentryHelper
10
  include WorkhorseHelper
11

T
Timothy Andrew 已提交
12
  before_action :authenticate_user_from_private_token!
13
  before_action :authenticate_user!
T
tduehr 已提交
14
  before_action :validate_user_service_ticket!
15
  before_action :check_password_expiration
16
  before_action :check_2fa_requirement
17
  before_action :ldap_security_check
18
  before_action :sentry_context
19 20 21 22
  before_action :default_headers
  before_action :add_gon_variables
  before_action :configure_permitted_parameters, if: :devise_controller?
  before_action :require_email, unless: :devise_controller?
23

24
  protect_from_forgery with: :exception
25

H
http://jneen.net/ 已提交
26
  helper_method :can?, :current_application_settings
27
  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?
G
gitlabhq 已提交
28

29
  rescue_from Encoding::CompatibilityError do |exception|
R
Riyad Preukschas 已提交
30
    log_exception(exception)
C
Cyril 已提交
31
    render "errors/encoding", layout: "errors", status: 500
32 33
  end

34
  rescue_from ActiveRecord::RecordNotFound do |exception|
R
Riyad Preukschas 已提交
35
    log_exception(exception)
V
Valery Sizov 已提交
36
    render_404
G
gitlabhq 已提交
37 38
  end

39 40 41 42
  rescue_from Gitlab::Access::AccessDeniedError do |exception|
    render_403
  end

43 44 45 46
  def redirect_back_or_default(default: root_path, options: {})
    redirect_to request.referer.present? ? :back : default, options
  end

47 48 49 50
  def not_found
    render_404
  end

51 52 53 54 55 56 57 58
  def route_not_found
    if current_user
      not_found
    else
      redirect_to new_user_session_path
    end
  end

N
Nihad Abbasov 已提交
59
  protected
G
gitlabhq 已提交
60

T
Timothy Andrew 已提交
61 62 63 64 65
  # This filter handles both private tokens and personal access tokens
  def authenticate_user_from_private_token!
    token_string = params[:private_token].presence || request.headers['PRIVATE-TOKEN'].presence
    user = User.find_by_authentication_token(token_string) || User.find_by_personal_access_token(token_string)

66 67 68 69 70 71 72 73 74
    if user
      # 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

R
Riyad Preukschas 已提交
75 76 77 78 79 80
  def log_exception(exception)
    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

81
  def after_sign_in_path_for(resource)
82
    stored_location_for(:redirect) || stored_location_for(resource) || root_path
R
randx 已提交
83 84
  end

85
  def after_sign_out_path_for(resource)
86
    current_application_settings.after_sign_out_path.presence || new_user_session_path
87 88
  end

G
gitlabhq 已提交
89
  def can?(object, action, subject)
H
http://jneen.net/ 已提交
90
    Ability.allowed?(object, action, subject)
G
gitlabhq 已提交
91 92
  end

G
gitlabhq 已提交
93
  def access_denied!
C
Cyril 已提交
94
    render "errors/access_denied", layout: "errors", status: 404
95 96 97
  end

  def git_not_found!
98
    render "errors/git_not_found.html", layout: "errors", status: 404
G
gitlabhq 已提交
99 100
  end

101 102
  def render_403
    head :forbidden
G
gitlabhq 已提交
103
  end
G
gitlabhq 已提交
104

105
  def render_404
106
    respond_to do |format|
S
Sean McGivern 已提交
107
      format.html do
108 109
        render file: Rails.root.join("public", "404"), layout: false, status: "404"
      end
S
Sean McGivern 已提交
110
      format.any { head :not_found }
111
    end
112 113
  end

D
Dmitriy Zaporozhets 已提交
114 115 116 117 118
  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
D
Dmitriy Zaporozhets 已提交
119

120 121 122
  def default_headers
    headers['X-Frame-Options'] = 'DENY'
    headers['X-XSS-Protection'] = '1; mode=block'
X
xyb 已提交
123
    headers['X-UA-Compatible'] = 'IE=edge'
124
    headers['X-Content-Type-Options'] = 'nosniff'
125
  end
126

T
tduehr 已提交
127 128 129 130 131 132 133 134 135 136 137 138 139 140
  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

141
  def check_password_expiration
142
    if current_user && current_user.password_expires_at && current_user.password_expires_at < Time.now && !current_user.ldap_user?
D
Douwe Maan 已提交
143
      return redirect_to new_profile_password_path
144 145
    end
  end
146

147
  def check_2fa_requirement
148 149
    if two_factor_authentication_required? && current_user && !current_user.two_factor_enabled? && !skip_two_factor?
      redirect_to profile_two_factor_auth_path
150 151 152
    end
  end

153
  def ldap_security_check
154
    if current_user && current_user.requires_ldap_check?
J
Jacob Vosmaer 已提交
155
      return unless current_user.try_obtain_ldap_lease
J
Jacob Vosmaer 已提交
156

157 158 159 160
      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
161 162 163 164
      end
    end
  end

165
  def event_filter
166 167
    # Split using comma to maintain backward compatibility Ex/ "filter1,filter2"
    filters = cookies['event_filter'].split(',')[0] if cookies['event_filter'].present?
168 169
    @event_filter ||= EventFilter.new(filters)
  end
170

171
  def gitlab_ldap_access(&block)
172
    Gitlab::LDAP::Access.open { |access| yield(access) }
173 174
  end

175
  # JSON for infinite scroll via Pager object
176
  def pager_json(partial, count, locals = {})
177 178
    html = render_to_string(
      partial,
179
      locals: locals,
180 181 182 183 184 185 186 187 188
      layout: false,
      formats: [:html]
    )

    render json: {
      html: html,
      count: count
    }
  end
D
Dmitriy Zaporozhets 已提交
189

J
Josh Frye 已提交
190
  def view_to_html_string(partial, locals = {})
D
Dmitriy Zaporozhets 已提交
191
    render_to_string(
J
Josh Frye 已提交
192
      partial,
193
      locals: locals,
D
Dmitriy Zaporozhets 已提交
194 195 196 197
      layout: false,
      formats: [:html]
    )
  end
D
Dmitriy Zaporozhets 已提交
198 199

  def configure_permitted_parameters
200
    devise_parameter_sanitizer.permit(:sign_in, keys: [:username, :email, :password, :login, :remember_me, :otp_attempt])
D
Dmitriy Zaporozhets 已提交
201
  end
202 203 204 205

  def hexdigest(string)
    Digest::SHA1.hexdigest string
  end
206 207

  def require_email
208
    if current_user && current_user.temp_oauth_email? && session[:impersonator_id].nil?
D
Douwe Maan 已提交
209
      return redirect_to profile_path, notice: 'Please complete your profile with email address'
210 211
    end
  end
212

213 214 215 216
  def import_sources_enabled?
    !current_application_settings.import_sources.empty?
  end

D
Douwe Maan 已提交
217
  def github_import_enabled?
218 219 220
    current_application_settings.import_sources.include?('github')
  end

221 222
  def gitea_import_enabled?
    current_application_settings.import_sources.include?('gitea')
K
Kim "BKC" Carlbäcker 已提交
223 224
  end

225
  def github_import_configured?
226
    Gitlab::OAuth::Provider.enabled?(:github)
D
Douwe Maan 已提交
227 228 229
  end

  def gitlab_import_enabled?
230 231 232 233
    request.host != 'gitlab.com' && current_application_settings.import_sources.include?('gitlab')
  end

  def gitlab_import_configured?
234
    Gitlab::OAuth::Provider.enabled?(:gitlab)
D
Douwe Maan 已提交
235 236 237
  end

  def bitbucket_import_enabled?
238 239 240 241
    current_application_settings.import_sources.include?('bitbucket')
  end

  def bitbucket_import_configured?
242
    Gitlab::OAuth::Provider.enabled?(:bitbucket)
D
Douwe Maan 已提交
243
  end
244 245 246 247 248

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

J
Jared Szechy 已提交
249 250 251 252
  def fogbugz_import_enabled?
    current_application_settings.import_sources.include?('fogbugz')
  end

253 254 255
  def git_import_enabled?
    current_application_settings.import_sources.include?('git')
  end
256

257 258 259 260
  def gitlab_project_import_enabled?
    current_application_settings.import_sources.include?('gitlab_project')
  end

261 262 263 264
  def two_factor_authentication_required?
    current_application_settings.require_two_factor_authentication
  end

G
Gabriel Mazetto 已提交
265 266 267 268
  def two_factor_grace_period
    current_application_settings.two_factor_grace_period
  end

269 270
  def two_factor_grace_period_expired?
    date = current_user.otp_grace_period_started_at
G
Gabriel Mazetto 已提交
271 272 273 274 275 276 277
    date && (date + two_factor_grace_period.hours) < Time.current
  end

  def skip_two_factor?
    session[:skip_tfa] && session[:skip_tfa] > Time.current
  end

T
Timothy Andrew 已提交
278 279 280 281 282 283
  # 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
G
gitlabhq 已提交
284
end