BigW Consortium Gitlab

build.rb 1.01 KB
Newer Older
1 2 3 4 5 6
module Gitlab
  module Badge
    ##
    # Build badge
    #
    class Build
7 8 9 10
      include Gitlab::Application.routes.url_helpers
      include ActionView::Helpers::AssetTagHelper
      include ActionView::Helpers::UrlHelper

11
      def initialize(project, ref)
12
        @project, @ref = project, ref
13 14 15 16 17 18 19 20 21 22
        @image = ::Ci::ImageForBuildService.new.execute(project, ref: ref)
      end

      def type
        'image/svg+xml'
      end

      def data
        File.read(@image[:path])
      end
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43

      def to_s
        @image[:name].sub(/\.svg$/, '')
      end

      def to_html
        link_to(image_tag(image_url, alt: 'build status'), link_url)
      end

      def to_markdown
        "[![build status](#{image_url})](#{link_url})"
      end

      def image_url
        build_namespace_project_badges_url(@project.namespace,
                                           @project, @ref, format: :svg)
      end

      def link_url
        namespace_project_commits_url(@project.namespace, @project, id: @ref)
      end
44 45 46
    end
  end
end