Sha256: 39428d1eca6543576bf63a0f49de63fe4bdf6c8134c93940c217b4f2f09ad6ca

Contents?: true

Size: 1.65 KB

Versions: 6

Compression:

Stored size: 1.65 KB

Contents

require 'git-utils/command'

class PullRequest < Command

  def parser
    OptionParser.new do |opts|
      opts.banner = "Usage: git pull-request"
      opts.on_tail("-h", "--help", "this usage guide") do
        puts opts.to_s; exit 0
      end
    end
  end

  # Returns the URL for a new pull request.
  def new_pr_url
    if service == 'stash' && protocol == 'ssh'
      pattern = /(.*)@([^:]*):?([^\/]*)\/([^\/]*)\/(.*)\.git/
      replacement = 'https://\2/projects/\4/repos/\5/pull-requests?create&sourceBranch=' +
                    current_branch
    elsif service == 'stash' && protocol == 'http'
      pattern = /(.*)@([^:\/]*)(:?[^\/]*)\/(.*)scm\/([^\/]*)\/(.*)\.git/
      replacement = 'https://\2\3/\4projects/\5/repos/\6/pull-requests?create&sourceBranch=' +
                    current_branch
    elsif service == 'github' && protocol == 'ssh'
      pattern = /(.*)@(.*):(.*)\.git/
      replacement = 'https://\2/\3/pull/new/' + current_branch
    elsif service == 'github' && protocol == 'http'
      pattern = /https?\:\/\/(([^@]*)@)?(.*)\.git/
      replacement = 'https://\3/pull/new/' + current_branch
    elsif service == 'bitbucket' && protocol == 'ssh'
      pattern = /(.*)@(.*):(.*)\.git/
      replacement = 'https://\2/\3/pull-request/new/'
    elsif service == 'bitbucket' && protocol == 'http'
      pattern = /https?\:\/\/(([^@]*)@)?(.*)\.git/
      replacement = 'https://\3/pull-request/new/'
    end
    origin_url.sub(pattern, replacement)
  end

  # Returns a command appropriate for executing at the command line
  def cmd
    c = ["open #{new_pr_url}"]
    c << argument_string(unknown_options) unless unknown_options.empty?
    c.join("\n")
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
git-utils-0.5.2 lib/git-utils/pull_request.rb
git-utils-0.5.1 lib/git-utils/pull_request.rb
git-utils-0.5.0 lib/git-utils/pull_request.rb
git-utils-0.1.2 lib/git-utils/pull_request.rb
git-utils-0.1.1 lib/git-utils/pull_request.rb
git-utils-0.1.0 lib/git-utils/pull_request.rb