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

4
class ApplicationController < ActionController::Base
5
  include Gitlab::CurrentSettings
6 7
  include GitlabRoutingHelper
  include PageLayoutHelper
8

9 10
  PER_PAGE = 20

11 12 13 14 15 16 17 18 19
  before_action :authenticate_user_from_token!
  before_action :authenticate_user!
  before_action :reject_blocked!
  before_action :check_password_expiration
  before_action :ldap_security_check
  before_action :default_headers
  before_action :add_gon_variables
  before_action :configure_permitted_parameters, if: :devise_controller?
  before_action :require_email, unless: :devise_controller?
20

21
  protect_from_forgery with: :exception
22

23
  helper_method :abilities, :can?, :current_application_settings
J
Jared Szechy 已提交
24
  helper_method :import_sources_enabled?, :github_import_enabled?, :github_import_configured?, :gitlab_import_enabled?, :gitlab_import_configured?, :bitbucket_import_enabled?, :bitbucket_import_configured?, :gitorious_import_enabled?, :google_code_import_enabled?, :fogbugz_import_enabled?, :git_import_enabled?
G
gitlabhq 已提交
25

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

31
  rescue_from ActiveRecord::RecordNotFound do |exception|
R
Riyad Preukschas 已提交
32
    log_exception(exception)
C
Cyril 已提交
33
    render "errors/not_found", layout: "errors", status: 404
G
gitlabhq 已提交
34 35
  end

N
Nihad Abbasov 已提交
36
  protected
G
gitlabhq 已提交
37

38
  # From https://github.com/plataformatec/devise/wiki/How-To:-Simple-Token-Authentication-Example
39
  # https://gist.github.com/josevalim/fb706b1e933ef01e4fb6
40
  def authenticate_user_from_token!
41 42 43 44 45
    user_token = if params[:authenticity_token].presence
                   params[:authenticity_token].presence
                 elsif params[:private_token].presence
                   params[:private_token].presence
                 end
46 47 48 49 50 51 52 53 54 55 56
    user = user_token && User.find_by_authentication_token(user_token.to_s)

    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

57
  def authenticate_user!(*args)
S
Steven Burgart 已提交
58
    # If user is not signed-in and tries to access root_path - redirect him to landing page
59 60 61
    # Don't redirect to the default URL to prevent endless redirections
    if current_application_settings.home_page_url.present? &&
        current_application_settings.home_page_url.chomp('/') != Gitlab.config.gitlab['url'].chomp('/')
62
      if current_user.nil? && root_path == request.path
63 64 65 66
        redirect_to current_application_settings.home_page_url and return
      end
    end

67
    super(*args)
68 69
  end

R
Riyad Preukschas 已提交
70 71 72 73 74 75
  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

76
  def reject_blocked!
77
    if current_user && current_user.blocked?
78
      sign_out current_user
79
      flash[:alert] = "Your account is blocked. Retry when an admin has unblocked it."
80 81 82 83
      redirect_to new_user_session_path
    end
  end

84
  def after_sign_in_path_for(resource)
85
    if resource.is_a?(User) && resource.respond_to?(:blocked?) && resource.blocked?
R
randx 已提交
86
      sign_out resource
87
      flash[:alert] = "Your account is blocked. Retry when an admin has unblocked it."
R
randx 已提交
88 89
      new_user_session_path
    else
90
      stored_location_for(:redirect) || stored_location_for(resource) || root_path
R
randx 已提交
91 92 93
    end
  end

94
  def after_sign_out_path_for(resource)
95
    current_application_settings.after_sign_out_path || new_user_session_path
96 97
  end

G
gitlabhq 已提交
98
  def abilities
C
Ciro Santilli 已提交
99
    Ability.abilities
G
gitlabhq 已提交
100 101 102 103 104 105
  end

  def can?(object, action, subject)
    abilities.allowed?(object, action, subject)
  end

N
Nihad Abbasov 已提交
106
  def project
107
    unless @project
V
Vinnie Okada 已提交
108
      namespace = params[:namespace_id]
109 110 111 112 113 114 115 116 117 118 119
      id = params[:project_id] || params[:id]

      # Redirect from
      #   localhost/group/project.git
      # to
      #   localhost/group/project
      #
      if id =~ /\.git\Z/
        redirect_to request.original_url.gsub(/\.git\Z/, '') and return
      end

120 121 122
      project_path = "#{namespace}/#{id}"
      @project = Project.find_with_namespace(project_path)

123 124

      if @project and can?(current_user, :read_project, @project)
125 126 127
        if @project.path_with_namespace != project_path
          redirect_to request.original_url.gsub(project_path, @project.path_with_namespace) and return
        end
128 129 130 131 132 133 134 135
        @project
      elsif current_user.nil?
        @project = nil
        authenticate_user!
      else
        @project = nil
        render_404 and return
      end
136
    end
137
    @project
G
gitlabhq 已提交
138 139
  end

D
Dmitriy Zaporozhets 已提交
140 141 142 143
  def repository
    @repository ||= project.repository
  end

G
gitlabhq 已提交
144
  def authorize_project!(action)
145
    return access_denied! unless can?(current_user, action, project)
G
gitlabhq 已提交
146 147 148
  end

  def access_denied!
C
Cyril 已提交
149
    render "errors/access_denied", layout: "errors", status: 404
150 151 152
  end

  def not_found!
C
Cyril 已提交
153
    render "errors/not_found", layout: "errors", status: 404
154 155 156
  end

  def git_not_found!
C
Cyril 已提交
157
    render "errors/git_not_found", layout: "errors", status: 404
G
gitlabhq 已提交
158 159 160
  end

  def method_missing(method_sym, *arguments, &block)
161
    if method_sym.to_s =~ /\Aauthorize_(.*)!\z/
G
gitlabhq 已提交
162 163 164 165 166
      authorize_project!($1.to_sym)
    else
      super
    end
  end
G
gitlabhq 已提交
167

168 169
  def render_403
    head :forbidden
G
gitlabhq 已提交
170
  end
G
gitlabhq 已提交
171

172 173
  def render_404
    render file: Rails.root.join("public", "404"), layout: false, status: "404"
174 175
  end

G
gitlabhq 已提交
176
  def require_non_empty_project
177
    redirect_to @project if @project.empty_repo?
G
gitlabhq 已提交
178
  end
D
Dmitriy Zaporozhets 已提交
179

D
Dmitriy Zaporozhets 已提交
180 181 182 183 184
  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 已提交
185

186 187 188
  def default_headers
    headers['X-Frame-Options'] = 'DENY'
    headers['X-XSS-Protection'] = '1; mode=block'
X
xyb 已提交
189
    headers['X-UA-Compatible'] = 'IE=edge'
190
    headers['X-Content-Type-Options'] = 'nosniff'
191 192 193 194
    # Enabling HSTS for non-standard ports would send clients to the wrong port
    if Gitlab.config.gitlab.https and Gitlab.config.gitlab.port == 443
      headers['Strict-Transport-Security'] = 'max-age=31536000'
    end
195
  end
196 197

  def add_gon_variables
R
Robert Speicher 已提交
198 199
    gon.api_version            = API::API.version
    gon.default_avatar_url     = URI::join(Gitlab.config.gitlab.url, ActionController::Base.helpers.image_path('no_avatar.png')).to_s
200
    gon.default_issues_tracker = Project.new.default_issue_tracker.to_param
R
Robert Speicher 已提交
201 202 203
    gon.max_file_size          = current_application_settings.max_attachment_size
    gon.relative_url_root      = Gitlab.config.gitlab.relative_url_root
    gon.user_color_scheme      = Gitlab::ColorSchemes.for_user(current_user).css_class
204 205 206 207 208

    if current_user
      gon.current_user_id = current_user.id
      gon.api_token = current_user.private_token
    end
209
  end
210 211

  def check_password_expiration
212
    if current_user && current_user.password_expires_at && current_user.password_expires_at < Time.now  && !current_user.ldap_user?
213 214 215
      redirect_to new_profile_password_path and return
    end
  end
216

217
  def ldap_security_check
218
    if current_user && current_user.requires_ldap_check?
219 220 221 222
      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
223 224 225 226
      end
    end
  end

227 228 229 230
  def event_filter
    filters = cookies['event_filter'].split(',') if cookies['event_filter'].present?
    @event_filter ||= EventFilter.new(filters)
  end
231

232 233
  def gitlab_ldap_access(&block)
    Gitlab::LDAP::Access.open { |access| block.call(access) }
234 235
  end

236 237 238 239 240 241 242 243 244 245 246 247 248
  # JSON for infinite scroll via Pager object
  def pager_json(partial, count)
    html = render_to_string(
      partial,
      layout: false,
      formats: [:html]
    )

    render json: {
      html: html,
      count: count
    }
  end
D
Dmitriy Zaporozhets 已提交
249 250 251 252 253 254 255 256

  def view_to_html_string(partial)
    render_to_string(
      partial,
      layout: false,
      formats: [:html]
    )
  end
D
Dmitriy Zaporozhets 已提交
257 258

  def configure_permitted_parameters
259
    devise_parameter_sanitizer.for(:sign_in) { |u| u.permit(:username, :email, :password, :login, :remember_me, :otp_attempt) }
D
Dmitriy Zaporozhets 已提交
260
  end
261 262 263 264

  def hexdigest(string)
    Digest::SHA1.hexdigest string
  end
265 266 267 268 269 270

  def require_email
    if current_user && current_user.temp_oauth_email?
      redirect_to profile_path, notice: 'Please complete your profile with email address' and return
    end
  end
271

D
Dmitriy Zaporozhets 已提交
272
  def set_filters_params
273
    params[:sort] ||= 'created_desc'
274 275 276
    params[:scope] = 'all' if params[:scope].blank?
    params[:state] = 'opened' if params[:state].blank?

277
    @sort = params[:sort]
D
Dmitriy Zaporozhets 已提交
278
    @filter_params = params.dup
279 280

    if @project
D
Dmitriy Zaporozhets 已提交
281
      @filter_params[:project_id] = @project.id
282
    elsif @group
D
Dmitriy Zaporozhets 已提交
283
      @filter_params[:group_id] = @group.id
284
    else
285 286 287 288 289
      # TODO: this filter ignore issues/mr created in public or
      # internal repos where you are not a member. Enable this filter
      # or improve current implementation to filter only issues you
      # created or assigned or mentioned
      #@filter_params[:authorized_only] = true
290
    end
D
Dmitriy Zaporozhets 已提交
291 292

    @filter_params
293 294
  end

D
Dmitriy Zaporozhets 已提交
295 296
  def get_issues_collection
    set_filters_params
297 298
    @issuable_finder = IssuesFinder.new(current_user, @filter_params)
    @issuable_finder.execute
D
Dmitriy Zaporozhets 已提交
299 300 301 302
  end

  def get_merge_requests_collection
    set_filters_params
303 304
    @issuable_finder = MergeRequestsFinder.new(current_user, @filter_params)
    @issuable_finder.execute
D
Dmitriy Zaporozhets 已提交
305
  end
D
Douwe Maan 已提交
306

307 308 309 310
  def import_sources_enabled?
    !current_application_settings.import_sources.empty?
  end

D
Douwe Maan 已提交
311
  def github_import_enabled?
312 313 314 315
    current_application_settings.import_sources.include?('github')
  end

  def github_import_configured?
316
    Gitlab::OAuth::Provider.enabled?(:github)
D
Douwe Maan 已提交
317 318 319
  end

  def gitlab_import_enabled?
320 321 322 323
    request.host != 'gitlab.com' && current_application_settings.import_sources.include?('gitlab')
  end

  def gitlab_import_configured?
324
    Gitlab::OAuth::Provider.enabled?(:gitlab)
D
Douwe Maan 已提交
325 326 327
  end

  def bitbucket_import_enabled?
328 329 330 331
    current_application_settings.import_sources.include?('bitbucket')
  end

  def bitbucket_import_configured?
332
    Gitlab::OAuth::Provider.enabled?(:bitbucket) && Gitlab::BitbucketImport.public_key.present?
D
Douwe Maan 已提交
333
  end
334 335 336 337 338 339 340 341 342

  def gitorious_import_enabled?
    current_application_settings.import_sources.include?('gitorious')
  end

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

J
Jared Szechy 已提交
343 344 345 346
  def fogbugz_import_enabled?
    current_application_settings.import_sources.include?('fogbugz')
  end

347 348 349
  def git_import_enabled?
    current_application_settings.import_sources.include?('git')
  end
G
gitlabhq 已提交
350
end