Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
danger / lib / danger / ci_source / gitlab_ci.rb
Size: Mime:
# http://docs.gitlab.com/ce/ci/variables/README.html
require "uri"
require "danger/request_sources/github/github"
require "danger/request_sources/gitlab"

module Danger
  # ### CI Setup
  #
  # Install dependencies and add a danger step to your .gitlab-ci.yml:
  #
  # ```yml
  # before_script:
  #  - bundle install
  # danger:
  #   script:
  #    - bundle exec danger
  # ```
  #
  # ### Token Setup
  #
  # Add the `DANGER_GITLAB_API_TOKEN` to your pipeline env variables if you
  # are hosting your code on GitLab. If you are using GitLab as a mirror
  # for the purpose of CI/CD, while hosting your repo on GitHub, set the
  # `DANGER_GITHUB_API_TOKEN` as well as the project repo URL to
  # `DANGER_PROJECT_REPO_URL`.

  class GitLabCI < CI
    def self.validates_as_ci?(env)
      env.key? "GITLAB_CI"
    end

    def self.validates_as_pr?(env)
      exists = [
        "GITLAB_CI", "CI_PROJECT_PATH"
      ].all? { |x| env[x] }

      exists && determine_pull_or_merge_request_id(env).to_i > 0
    end

    def self.determine_pull_or_merge_request_id(env)
      return env["CI_MERGE_REQUEST_IID"] if env["CI_MERGE_REQUEST_IID"]
      return env["CI_EXTERNAL_PULL_REQUEST_IID"] if env["CI_EXTERNAL_PULL_REQUEST_IID"]
      return 0 unless env["CI_COMMIT_SHA"]

      project_path = env["CI_MERGE_REQUEST_PROJECT_PATH"] || env["CI_PROJECT_PATH"]
      base_commit = env["CI_COMMIT_SHA"]
      client = RequestSources::GitLab.new(nil, env).client

      client_version = Gem::Version.new(client.version.version)
      if (client_version >= Gem::Version.new("10.7"))
        #Use the 'list merge requests associated with a commit' API, for speeed
        # (GET /projects/:id/repository/commits/:sha/merge_requests) available for GitLab >= 10.7
        merge_request = client.commit_merge_requests(project_path, base_commit, state: :opened).first
        if (client_version >= Gem::Version.new("13.8"))
          # Gitlab 13.8.0 started returning merge requests for merge commits and squashed commits
          # By checking for merge_request.state, we can ensure danger only comments on MRs which are open
          return 0 if merge_request.nil?
          return 0 unless merge_request.state == "opened"
        end
      else
        merge_requests = client.merge_requests(project_path, state: :opened)
        merge_request = merge_requests.auto_paginate.find do |mr|
          mr.sha == base_commit
        end
      end
      merge_request.nil? ? 0 : merge_request.iid
    end

    def self.slug_from(env)
      if env["DANGER_PROJECT_REPO_URL"]
        env["DANGER_PROJECT_REPO_URL"].split('/').last(2).join('/')
      else
        env["CI_MERGE_REQUEST_PROJECT_PATH"] || env["CI_PROJECT_PATH"]
      end
    end

    def initialize(env)
      self.repo_slug = self.class.slug_from(env)
      self.pull_request_id = self.class.determine_pull_or_merge_request_id(env)
    end

    def supported_request_sources
      @supported_request_sources ||= [
        Danger::RequestSources::GitHub,
        Danger::RequestSources::GitLab
      ]
    end
  end
end