Sha256: 583cd51e53dc3b8ed671f0646dd3b8c1fadec0b8daccd753b519e079df3a222c

Contents?: true

Size: 1.47 KB

Versions: 15

Compression:

Stored size: 1.47 KB

Contents

module Shipit
  module GithubUrlHelper
    private

    def github_avatar(user, options = {})
      uri = user.avatar_uri
      attributes = options.slice(:class).merge(alt: user.try!(:name))
      if options[:size]
        uri.query ||= ''
        uri.query += "&s=#{options[:size]}"
        attributes[:width] = options[:size]
        attributes[:height] = options[:size]
      end

      image_tag(uri.to_s, attributes)
    end

    def github_commit_range_url(stack, since_commit, until_commit)
      github_repo_url(stack.repo_owner, stack.repo_name, 'compare', "#{since_commit.sha}...#{until_commit.sha}")
    end

    def github_user_url(user, *args)
      [Shipit.github_url, user, *args].join('/')
    end

    def render_github_user(user)
      link_to(github_user_url(user.login), class: 'user main-user') do
        github_avatar(user, size: 20) + user.name
      end
    end

    def github_repo_url(owner, repo, *args)
      github_user_url(owner, repo, *args)
    end

    def github_commit_url(commit)
      github_repo_url(commit.stack.repo_owner, commit.stack.repo_name, 'commit', commit.sha)
    end

    def github_pull_request_url(commit)
      github_repo_url(commit.stack.repo_owner, commit.stack.repo_name, 'pull', commit.pull_request_number)
    end

    def link_to_github_deploy(deploy)
      url = github_commit_range_url(deploy.stack, *deploy.commit_range)
      text = deploy.commit_range.map(&:short_sha).join('...')
      link_to(text, url, class: 'number')
    end
  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
shipit-engine-0.12.1 app/helpers/shipit/github_url_helper.rb
shipit-engine-0.12.0 app/helpers/shipit/github_url_helper.rb
shipit-engine-0.11.0 app/helpers/shipit/github_url_helper.rb
shipit-engine-0.10.0 app/helpers/shipit/github_url_helper.rb
shipit-engine-0.9.0 app/helpers/shipit/github_url_helper.rb
shipit-engine-0.8.9 app/helpers/shipit/github_url_helper.rb
shipit-engine-0.8.8 app/helpers/shipit/github_url_helper.rb
shipit-engine-0.8.7 app/helpers/shipit/github_url_helper.rb
shipit-engine-0.8.6 app/helpers/shipit/github_url_helper.rb
shipit-engine-0.8.5 app/helpers/shipit/github_url_helper.rb
shipit-engine-0.8.4 app/helpers/shipit/github_url_helper.rb
shipit-engine-0.8.3 app/helpers/shipit/github_url_helper.rb
shipit-engine-0.8.2 app/helpers/shipit/github_url_helper.rb
shipit-engine-0.8.1 app/helpers/shipit/github_url_helper.rb
shipit-engine-0.8.0 app/helpers/shipit/github_url_helper.rb