summaryrefslogtreecommitdiff
path: root/common.go
blob: 64e58862682550fc3ec6cc0594463921ebb7ab7f (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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
package repolist

import (
	"go.wit.com/lib/gui/repostatus"
)

// deprecate this
func (r *Repo) String() string {
	return r.status.String()
}

// full path "/home/username/go/src/go.wit.com/apps/autotypist"
func (r *Repo) Path() string {
	return r.status.Path()
}

// go path "go.wit.com/apps/autotypist"
func (r *Repo) GoPath() string {
	return r.status.GoName()
}

func (r *RepoList) Hidden() bool {
	return r.reposbox.Hidden()
}

func (r *RepoList) Show() {
	r.reposbox.Show()
}

func (r *RepoList) Hide() {
	r.reposbox.Hide()
}

func (r *RepoList) AllRepos() []*Repo {
	var all []*Repo
	for _, repo := range me.allrepos {
		all = append(all, repo)
	}
	return all
}

// deprecate this
func AllRepos() []*Repo {
	var all []*Repo
	for _, repo := range me.allrepos {
		all = append(all, repo)
	}
	return all
}

func (r *Repo) Build() bool {
	return r.status.Build()
}

func (r *Repo) Xterm(s string) {
	r.status.Xterm(s)
}

func (r *Repo) RepoType() string {
	return r.status.RepoType()
}

func (r *Repo) Status() string {
	return r.dirtyLabel.String()
}

func (r *Repo) MergeDevelToMaster() bool {
	return r.status.MergeDevelToMaster()
}

func (r *Repo) MergeUserToDevel() bool {
	return r.status.MergeUserToDevel()
}

func (r *Repo) Scan() bool {
	return r.NewScan()
}

func (r *Repo) Exists(s string) bool {
	return false
}

func (r *Repo) MakeRedomod() {
}

func (r *Repo) CheckoutBranch(b string) bool {
	return r.status.CheckoutBranch(b)
}

func (r *Repo) CheckDirty() bool {
	return r.status.CheckDirty()
}

func (r *Repo) IsDirty() bool {
	return r.status.IsDirty()
}

func (r *Repo) ReadOnly() bool {
	return r.status.ReadOnly()
}

func (r *Repo) IsPerfect() bool {
	if r.dirtyLabel.String() == "PERFECT" {
		return true
	}
	if r.dirtyLabel.String() == "unchanged" {
		return true
	}
	return false
}

func (r *Repo) RunCmd(cmd []string) (error, string) {
	return r.status.RunCmd(cmd)
}

func (r *Repo) GetDevelBranchName() string {
	return r.status.GetDevelBranchName()
}

func (r *Repo) GetUserBranchName() string {
	return r.status.GetUserBranchName()
}

func (r *Repo) AllTags() []*repostatus.Tag {
	return r.status.Tags.ListAll()
}

func (r *Repo) TagsBox() *repostatus.GitTagBox {
	return r.status.Tags
}

// todo, fix bool return for deletetag()
func (r *Repo) DeleteTag(t *repostatus.Tag) bool {
	r.status.DeleteTag(t)
	return true
}