summaryrefslogtreecommitdiff
path: root/doShow.go
blob: 3d2a1b3bacfafb5b538bd71fa6f1126202bc99f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// Copyright 2017-2025 WIT.COM Inc. All rights reserved.
// Use of this source code is governed by the GPL 3.0

package main

import "go.wit.com/log"

// An app to submit patches for the 30 GO GUI repos

func doShow() (string, error) {
	if argv.Show.Dirty != nil {
		// s, err := doDirty()
		_, s, err := getDirty()
		me.forge.Repos.Save()
		return s, err
	}

	if argv.Show.Porcelain != nil {
		s, err := getPorcelain()
		for repo := range me.forge.Repos.IterByFullPath() {
			curbranch := repo.GetCurrentBranchName()
			if repo.IsLocalBranch(curbranch) {
				continue
			}
			if repo.IsRemoteBranch(curbranch) {
				continue
			}
			log.Info("curbranch is doesn't exist. this'll cause all sorts of problems", curbranch, repo.FullPath)
		}
		me.forge.Repos.Save()
		return s, err
	}

	if argv.Show.Tag != nil {
		doTag()
		return "tags shown", nil
	}

	found := findRepos()
	if showUrls() {
		found.SortNamespace()
		footer := me.forge.PrintForgedTable(found)
		return "repos with patches or unsaved changes: " + footer, nil
	}
	var footer string
	// print out the repos
	if argv.All {
		footer = me.forge.PrintHumanTableFull(found)
	} else {
		footer = me.forge.PrintDefaultTB(found)
	}
	return footer, nil
}