prompt/prompt.go (view raw)
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 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 |
package main import ( "fmt" "os" "path/filepath" "strings" "github.com/go-git/go-git/v5" "github.com/go-git/go-git/v5/plumbing" "github.com/go-git/go-git/v5/plumbing/revlist" ) func main() { if len(os.Args) < 3 { return } command := os.Args[1] target := os.Args[2] switch command { case "cwd": fmt.Print(cwd(target)) case "vcs": if status := vcs(target); status != "" { fmt.Print(status) } } } func cwd(target string) string { home, _ := os.UserHomeDir() absTarget, _ := filepath.Abs(target) absHome, _ := filepath.Abs(home) // Replace home directory with ~ if strings.HasPrefix(absTarget, absHome) { if absTarget == absHome { return "~" } absTarget = "~" + strings.TrimPrefix(absTarget, absHome) } // Truncate path components parts := strings.Split(filepath.ToSlash(absTarget), "/") for i := 0; i < len(parts)-1; i++ { if parts[i] != "" && parts[i] != "~" { parts[i] = parts[i][:1] } } return strings.Join(parts, "/") } func vcs(target string) string { repo := findRepo(target) if repo == nil { return "" } status := &strings.Builder{} // Get branch information if branch, ok := getBranch(repo); ok { status.WriteString(fmt.Sprintf("#[fg=colour8]%s ", branch)) } // Get ahead/behind information if dist := getDistance(repo); dist != "" { status.WriteString(fmt.Sprintf("#[fg=colour8]%s", dist)) } // Get repository status statusSymbol, statusColor := getRepoStatus(repo) status.WriteString(fmt.Sprintf("%s%s#[fg=colour7]", statusColor, statusSymbol)) return status.String() } func findRepo(target string) *git.Repository { dir := filepath.Clean(target) for { repo, err := git.PlainOpen(dir) if err == nil { return repo } parent := filepath.Dir(dir) if parent == dir { return nil } dir = parent } } func getBranch(repo *git.Repository) (string, bool) { head, err := repo.Head() if err != nil { return "", false } if head.Name().IsBranch() { return head.Name().Short(), true } // Check for detached HEAD if commit, err := repo.CommitObject(head.Hash()); err == nil { return commit.Hash.String()[:7], true } return "", false } func getDistance(repo *git.Repository) string { head, err := repo.Head() if err != nil || !head.Name().IsBranch() { return "" } local := head.Hash() branch, err := repo.Branch(head.Name().Short()) if err != nil { return "" } remoteName := "origin" remote, err := repo.Remote(remoteName) if err != nil { return "" } err = remote.Fetch(&git.FetchOptions{RemoteName: remoteName}) if err != nil { return "" } refName := plumbing.Re ahead, _ := revlist.Objects(repo.Storer, []plumbing.Hash{local}, []plumbing.Hash{remote}) behind, _ := revlist.Objects(repo.Storer, []plumbing.Hash{remote}, []plumbing.Hash{local}) switch { case len(ahead) > 0 && len(behind) > 0: return "↑↓ " case len(ahead) > 0: return "↑ " case len(behind) > 0: return "↓ " default: return "" } } func getRepoStatus(repo *git.Repository) (string, string) { wt, _ := repo.Worktree() stat, _ := wt.Status() hasStaged := false hasUnstaged := false for _, s := range stat { if s.Staging != git.Unmodified { hasStaged = true } if s.Worktree != git.Unmodified { hasUnstaged = true } } switch { case hasUnstaged: return "×", "#[fg=colour1]" case hasStaged: return "±", "#[fg=colour3]" default: return "·", "#[fg=colour2]" } } |