BigW Consortium Gitlab

projects_controller.rb 1.37 KB
Newer Older
1 2
module Ci
  class ProjectsController < Ci::ApplicationController
3
    before_action :project
Valery Sizov committed
4
    before_action :no_cache, only: [:badge]
5
    before_action :authorize_read_project!, except: [:badge, :index]
6
    skip_before_action :authenticate_user!, only: [:badge]
7
    protect_from_forgery
8

9 10 11 12
    def index
      redirect_to root_path
    end

13 14
    def show
      # Temporary compatibility with CI badges pointing to CI project page
15
      redirect_to namespace_project_path(project.namespace, project)
16 17
    end

18 19
    # Project status badge
    # Image with build status for sha or ref
20 21 22 23
    #
    # This action in DEPRECATED, this is here only for backwards compatibility
    # with projects migrated from GitLab CI.
    #
24
    def badge
25
      return render_404 unless @project
26

27 28 29 30 31 32 33
      image = Ci::ImageForBuildService.new.execute(@project, params)
      send_file image.path, filename: image.name, disposition: 'inline', type:"image/svg+xml"
    end

    protected

    def project
Kamil Trzcinski committed
34
      @project ||= Project.find_by(ci_id: params[:id].to_i)
35 36 37 38 39 40 41
    end

    def no_cache
      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
42 43 44 45

    def authorize_read_project!
      return access_denied! unless can?(current_user, :read_project, project)
    end
46 47
  end
end