Class: Gitcycle

Inherits:
Object
  • Object
show all
Defined in:
lib/gitcycle.rb

Constant Summary collapse

API =
if ENV['ENV'] == 'development'
  "http://127.0.0.1:8080/api"
else
  "http://gitcycle.bleacherreport.com/api"
end

Instance Method Summary collapse

Constructor Details

#initialize(args = nil) ⇒ Gitcycle

Returns a new instance of Gitcycle.



28
29
30
31
32
33
34
35
36
37
38
39
40
41
# File 'lib/gitcycle.rb', line 28

def initialize(args=nil)
  $remotes = {}

  if ENV['CONFIG']
    @config_path = File.expand_path(ENV['CONFIG'])
  else
    @config_path = File.expand_path("~/.gitcycle.yml")
  end

  load_config
  load_git

  start(args) if args
end

Instance Method Details

#branch(*args) ⇒ Object



43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# File 'lib/gitcycle.rb', line 43

def branch(*args)
  url = args.detect { |arg| arg =~ /^https?:\/\// }
  title = args.detect { |arg| arg =~ /\s/ }

  exec_git(:branch, args) unless url || title

  require_git && require_config

  params = {
    'branch[source]' => branches(:current => true)
  }

  if url && url.include?('lighthouseapp.com/')
    params.merge!('branch[lighthouse_url]' => url)
  elsif url && url.include?('github.com/')
    params.merge!('branch[issue_url]' => url)
  elsif url
    puts "Gitcycle only supports Lighthouse or Github Issue URLs.".red
    exit
  elsif title
    params.merge!(
      'branch[name]' => title,
      'branch[title]' => title
    )
  else
    exec_git(:branch, args)
  end

  unless yes?("\nYour work will eventually merge into '#{params['branch[source]']}'. Is this correct?")
    params['branch[source]'] = q("What branch would you like to eventually merge into?")
  end

  source = params['branch[source]']

  puts "\nRetrieving branch information from gitcycle.\n".green
  branch = get('branch', params)
  name = branch['name']

  begin
    owner, repo = branch['repo'].split(':')
    branch['home'] ||= @git_login

    unless yes?("Would you like to name your branch '#{name}'?")
      name = q("\nWhat would you like to name your branch?")
      name = name.gsub(/[\s\W]/, '-')
    end

    checkout_remote_branch(
      :owner => owner,
      :repo => repo,
      :branch => branch['source'],
      :target => name
    )

    puts "Sending branch information to gitcycle.".green
    get('branch',
        'branch[home]' => branch['home'],
        'branch[name]' => branch['name'],
        'branch[rename]' => name != branch['name'] ? name : nil,
        'branch[source]' => branch['source']
    )
  rescue SystemExit, Interrupt
    puts "\nDeleting branch from gitcycle.\n".green
    get('branch',
      'branch[name]' => branch['name'],
      'create' => 0,
      'reset' => 1
    )
  end

  puts "\n"
end

#checkout(*args) ⇒ Object Also known as: co



116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
# File 'lib/gitcycle.rb', line 116

def checkout(*args)
  if args.length != 1 || options?(args)
    exec_git(:checkout, args)
  end

  require_git && require_config

  if args[0] =~ /^https?:\/\//
    puts "\nRetrieving branch information from gitcycle.\n".green
    branch = get('branch', 'branch[lighthouse_url]' => args[0], 'create' => 0)
    if branch
      checkout_or_track(:name => branch['name'], :remote => 'origin')
    else
      puts "\nBranch not found!\n".red
      puts "\nDid you mean: gitc branch #{args[0]}\n".yellow
    end
  elsif args[0] =~ /^\d*$/
    puts "\nLooking for a branch for LH ticket ##{args[0]}.\n".green
    results = branches(:array => true).select {|b| b.include?("-#{args[0]}-") }
    if results.size == 0
      puts "\nNo matches for ticket ##{args[0]} found.\n".red
    elsif results.size == 1
      branch = results.first
      if branch.strip == branches(:current => true).strip
        puts "Already on Github branch for LH ticket ##{args[0]} (#{branch})".yellow
      else
        puts "\nSwitching to branch '#{branch}'\n".green
        run("git checkout #{branch}")
      end
    else
      puts "\nFound #{results.size} matches with that LH ticket number:\n".yellow
      puts results
      puts "\nDid not switch branches. Please check your ticket number.\n".red
    end
  else
    remote, branch = args[0].split('/')
    remote, branch = nil, remote if branch.nil?
    collab = branch && remote

    unless branches(:match => branch)
      og_remote = nil

      puts "\nRetrieving repo information from gitcycle.\n".green
      repo = get('repo')
      remote = repo['owner'] unless collab
      
      output = add_remote_and_fetch(
        :catch => false,
        :owner => remote,
        :repo => @git_repo
      )

      if errored?(output)
        og_remote = remote
        remote = repo["owner"]

        add_remote_and_fetch(
          :owner => remote,
          :repo => @git_repo
        )
      end
      
      puts "Creating branch '#{branch}' from '#{remote}/#{branch}'.\n".green
      output = run("git branch --no-track #{branch} #{remote}/#{branch}", :catch => false)

      if errored?(output)
        puts "Could not find branch #{"'#{og_remote}/#{branch}' or " if og_remote}'#{remote}/#{branch}'.\n".red
        exit
      end
    end

    if collab
      puts "Sending branch information to gitcycle.".green
      get('branch',
        'branch[home]' => remote,
        'branch[name]' => branch,
        'branch[source]' => branch,
        'branch[collab]' => 1,
        'create' => 1
      )
    end

    puts "Checking out '#{branch}'.\n".green
    run("git checkout -q #{branch}")
  end
end

#commit(*args) ⇒ Object Also known as: ci



204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
# File 'lib/gitcycle.rb', line 204

def commit(*args)
  msg = nil
  no_add = args.delete("--no-add")

  if args.empty?
    require_git && require_config

    puts "\nRetrieving branch information from gitcycle.\n".green
    branch = get('branch',
      'branch[name]' => branches(:current => true),
      'create' => 0
    )

    id = branch["lighthouse_url"].match(/tickets\/(\d+)/)[1] rescue nil

    if branch && id
      msg = "[##{id}]"
      msg += " #{branch["title"]}" if branch["title"]
    end
  end

  if no_add
    cmd = "git commit"
  else
    cmd = "git add . && git add . -u && git commit -a"
  end

  if File.exists?("#{Dir.pwd}/.git/MERGE_HEAD")
    Kernel.exec(cmd)
  elsif msg
    run(cmd + " -m #{msg.dump.gsub('`', "'")}")
    Kernel.exec("git commit --amend")
  elsif args.empty?
    Kernel.exec(cmd)
  else
    exec_git(:commit, args)
  end
end

#discuss(*issues) ⇒ Object



244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
# File 'lib/gitcycle.rb', line 244

def discuss(*issues)
  require_git && require_config

  if issues.empty?
    branch = create_pull_request

    if branch == false
      puts "Branch not found.\n".red
    elsif branch['issue_url']
      puts "\nLabeling issue as 'Discuss'.\n".green
      get('label',
        'branch[name]' => branch['name'],
        'labels' => [ 'Discuss' ]
      )

      puts "Opening issue: #{branch['issue_url']}\n".green
      Launchy.open(branch['issue_url'])
    else
      puts "You must push code before opening a pull request.\n".red
    end
  else
    puts "\nRetrieving branch information from gitcycle.\n".green

    get('branch', 'issues' => issues, 'scope' => 'repo').each do |branch|
      if branch['issue_url']
        puts "Opening issue: #{branch['issue_url']}\n".green
        Launchy.open(branch['issue_url'])
      end
    end
  end
end

#open(*issues) ⇒ Object



526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
# File 'lib/gitcycle.rb', line 526

def open(*issues)
  require_git && require_config

  if issues.empty?
    branch = create_pull_request

    if branch == false
      puts "Branch not found.\n".red
    elsif branch['issue_url']
      puts "\nOpening the pull request in GitHub\n".green

      puts "Opening issue: #{branch['issue_url']}\n".green
      Launchy.open(branch['issue_url'])
    else
      puts "You must push code before opening a pull request.\n".red
    end
  else
    puts "\nRetrieving branch information from gitcycle.\n".green

    get('branch', 'issues' => issues, 'scope' => 'repo').each do |branch|
      if branch['issue_url']
        puts "Opening issue: #{branch['issue_url']}\n".green
        Launchy.open(branch['issue_url'])
      end
    end
  end
end

#pull(*args) ⇒ Object



276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
# File 'lib/gitcycle.rb', line 276

def pull(*args)
  exec_git(:pull, args) if args.length > 0

  require_git && require_config

  current_branch = branches(:current => true)

  puts "\nRetrieving branch information from gitcycle.\n".green
  branch = get('branch',
    'branch[name]' => current_branch,
    'include' => [ 'repo' ],
    'create' => 0
  )

  if branch && branch['collab']
    # Merge from collab
    merge_remote_branch(
      :owner => owner = branch['home'],
      :repo => branch['repo']['name'],
      :branch => branch['source']
    )
  elsif branch
    # Merge from upstream source branch
    merge_remote_branch(
      :owner => owner = branch['repo']['owner'],
      :repo => branch['repo']['name'],
      :branch => branch['source']
    )
  else
    puts "\nRetrieving repo information from gitcycle.\n".green
    repo = get('repo')

    # Merge from upstream branch with same name
    merge_remote_branch(
      :owner => owner = repo['owner'],
      :repo => repo['name'],
      :branch => current_branch
    )
  end

  unless branch && branch['collab'] || owner == @git_login
    # Merge from origin
    merge_remote_branch(
      :owner => @git_login,
      :repo => @git_repo,
      :branch => current_branch
    )
  end

  branch
end

#push(*args) ⇒ Object



328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
# File 'lib/gitcycle.rb', line 328

def push(*args)
  exec_git(:push, args) if args.length > 0

  require_git && require_config

  branch = pull

  if branch && branch['collab']
    puts "\nPushing branch '#{branch['home']}/#{branch['name']}'.\n".green
    run("git push #{branch['home']} #{branch['name']} -q")
  elsif branch
    puts "\nPushing branch 'origin/#{branch['name']}'.\n".green
    run("git push origin #{branch['name']} -q")
  else
    current_branch = branches(:current => true)
    puts "\nPushing branch 'origin/#{current_branch}'.\n".green
    run("git push origin #{current_branch} -q")
  end
end

#qa(*issues) ⇒ Object



348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
# File 'lib/gitcycle.rb', line 348

def qa(*issues)
  require_git && require_config

  if issues.empty?
    puts "\n"
    get('qa_branch').each do |branches|
      puts "qa_#{branches['source']}_#{branches['user']}".green
      branches['branches'].each do |branch|
        puts "  #{"issue ##{branch['issue']}".yellow}\t#{branch['user']}/#{branch['branch']}"
      end
      puts "\n"
    end
  elsif issues.first == 'fail' || issues.first == 'pass'
    branch = branches(:current => true)
    pass_fail = issues.first
    label = pass_fail.capitalize
    issues = issues[1..-1]

    if pass_fail == 'pass' && !issues.empty?
      puts "\nWARNING: #{
        issues.length == 1 ? "This issue" : "These issues"
      } will merge straight into '#{branch}' without testing.\n".red
      
      if yes?("Continue?")
        qa_branch = create_qa_branch(
          :instructions => false,
          :issues => issues,
          :source => branch
        )
        `git checkout qa_#{qa_branch['source']}_#{qa_branch['user']} -q`
        $remotes = {}
        qa('pass')
      else
        exit
      end
    elsif branch =~ /^qa_/
      puts "\nRetrieving branch information from gitcycle.\n".green
      qa_branch = get('qa_branch', :source => branch.gsub(/^qa_/, ''))

      if pass_fail == 'pass'
        checkout_or_track(:name => qa_branch['source'], :remote => 'origin')
      end

      if issues.empty? 
        branches = qa_branch['branches']
      else
        branches = qa_branch['branches'].select do |b|
          issues.include?(b['issue'])
        end
      end

      if pass_fail == 'pass' && issues.empty?
        owner, repo = qa_branch['repo'].split(':')
        merge_remote_branch(
          :owner => owner,
          :repo => repo,
          :branch => "qa_#{qa_branch['source']}_#{qa_branch['user']}",
          :type => :from_qa
        )
      end

      unless issues.empty?
        branches.each do |branch|
          puts "\nLabeling issue #{branch['issue']} as '#{label}'.\n".green
          get('label',
            'qa_branch[source]' => qa_branch['source'],
            'issue' => branch['issue'],
            'labels' => [ label ]
          )
        end
      end

      if issues.empty?
        puts "\nLabeling all issues as '#{label}'.\n".green
        get('label',
          'qa_branch[source]' => qa_branch['source'],
          'labels' => [ label ]
        )
      end
    else
      puts "\nYou are not in a QA branch.\n".red
    end
  elsif issues.first == 'resolved'
    branch = branches(:current => true)

    if branch =~ /^qa_/
      puts "\nRetrieving branch information from gitcycle.\n".green
      qa_branch = get('qa_branch', :source => branch.gsub(/^qa_/, ''))
      
      branches = qa_branch['branches']
      conflict = branches.detect { |branch| branch['conflict'] }

      if qa_branch && conflict
        puts "Committing merge resolution of #{conflict['branch']} (issue ##{conflict['issue']}).\n".green
        run("git add . && git add . -u && git commit -a -F .git/MERGE_MSG")

        puts "Pushing merge resolution of #{conflict['branch']} (issue ##{conflict['issue']}).\n".green
        run("git push origin qa_#{qa_branch['source']}_#{qa_branch['user']} -q")

        puts "\nDe-conflicting on gitcycle.\n".green
        get('qa_branch',
          'issues' => branches.collect { |branch| branch['issue'] }
        )

        create_qa_branch(
          :preserve => true,
          :range => (branches.index(conflict)+1..-1),
          :qa_branch => qa_branch
        )
      else
        puts "Couldn't find record of a conflicted merge.\n".red
      end
    else
      puts "\nYou aren't on a QA branch.\n".red
    end
  else
    create_qa_branch(:issues => issues)
  end
end

#ready(*issues) ⇒ Object



468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
# File 'lib/gitcycle.rb', line 468

def ready(*issues)
  require_git && require_config

  branch = pull

  if branch && !branch['collab']
    # Recreate pull request if force == true
    force   = branch['labels'] && branch['labels'].include?('Pass')
    force ||= branch['state']  && branch['state'] == 'closed'

    branch  = create_pull_request(branch, force)
  end

  if branch == false
    puts "Branch not found.\n".red
  elsif branch['collab']
    remote, branch = branch['home'], branch['source']
    puts "\nPushing branch '#{remote}/#{branch}'.\n".green
    run("git push #{remote} #{branch} -q")
  elsif branch['issue_url']
    puts "\nLabeling issue as 'Pending Review'.\n".green
    get('label',
      'branch[name]' => branch['name'],
      'labels' => [ 'Pending Review' ]
    )

    puts "Opening issue: #{branch['issue_url']}\n".green
    Launchy.open(branch['issue_url'])
  else
    puts "You have not pushed any commits to '#{branch['name']}'.\n".red
  end
end

#review(pass_fail, *issues) ⇒ Object



501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
# File 'lib/gitcycle.rb', line 501

def review(pass_fail, *issues)
  require_git && require_config

  if pass_fail == 'fail'
    label = 'Fail'
  else
    label = 'Pending QA'
  end

  if issues.empty?
    puts "\nLabeling issue as '#{label}'.\n".green
    get('label',
      'branch[name]' => branches(:current => true),
      'labels' => [ label ]
    )
  else
    puts "\nLabeling issues as '#{label}'.\n".green
    get('label',
      'issues' => issues,
      'labels' => [ label ],
      'scope' => 'repo'
    )
  end
end

#setup(login, repo, token) ⇒ Object



554
555
556
557
558
559
# File 'lib/gitcycle.rb', line 554

def setup(, repo, token)
  repo = "#{}/#{repo}" unless repo.include?('/')
  @config[repo] = [ , token ]
  save_config
  puts "\nConfiguration saved.\n".green
end

#start(args = []) ⇒ Object



561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
# File 'lib/gitcycle.rb', line 561

def start(args=[])
  command = args.shift

  `git --help`.scan(/\s{3}(\w+)\s{3}/).flatten.each do |cmd|
    if command == cmd && !self.respond_to?(command)
      exec_git(cmd, args)
    end
  end

  if command.nil?
    puts "\nNo command specified\n".red
  elsif command =~ /^-/
    command_not_recognized
  elsif self.respond_to?(command)
    send(command, *args)
  else
    command_not_recognized
  end
end