1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-11-26 09:00:57 +02:00
lazygit/gitcommands.go
Jesse Duffield 10fd353a50 More stuff
2018-05-26 15:44:44 +10:00

280 lines
7.0 KiB
Go

// Go has various value types including strings,
// integers, floats, booleans, etc. Here are a few
// basic examples.
package main
import (
// "log"
"fmt"
"os"
"os/exec"
"strings"
)
// GitFile : A staged/unstaged file
type GitFile struct {
Name string
DisplayString string
HasStagedChanges bool
HasUnstagedChanges bool
Tracked bool
Deleted bool
}
// Branch : A git branch
type Branch struct {
Name string
DisplayString string
Type string
BaseBranch string
}
func devLog(objects ...interface{}) {
localLog("/Users/jesseduffieldduffield/go/src/github.com/jesseduffield/gitgot/development.log", objects...)
}
func commandLog(objects ...interface{}) {
localLog("/Users/jesseduffieldduffield/go/src/github.com/jesseduffield/gitgot/commands.log", objects...)
localLog("/Users/jesseduffieldduffield/go/src/github.com/jesseduffield/gitgot/development.log", objects...)
}
func localLog(path string, objects ...interface{}) {
f, _ := os.OpenFile(path, os.O_APPEND|os.O_WRONLY, 0644)
defer f.Close()
for _, object := range objects {
f.WriteString(fmt.Sprint(object) + "\n")
}
}
// Map (from https://gobyexample.com/collection-functions)
func Map(vs []string, f func(string) string) []string {
vsm := make([]string, len(vs))
for i, v := range vs {
vsm[i] = f(v)
}
return vsm
}
func includes(list []string, a string) bool {
for _, b := range list {
if b == a {
return true
}
}
return false
}
func mergeGitStatusFiles(oldGitFiles, newGitFiles []GitFile) []GitFile {
if len(oldGitFiles) == 0 {
return newGitFiles
}
result := make([]GitFile, 0)
for _, oldGitFile := range oldGitFiles {
for _, newGitFile := range newGitFiles {
if oldGitFile.Name == newGitFile.Name {
result = append(result, newGitFile)
break
}
}
}
return result
}
func runDirectCommand(command string) (string, error) {
commandLog(command)
cmdOut, err := exec.Command("bash", "-c", command).Output()
devLog(string(cmdOut))
devLog(err)
return string(cmdOut), err
}
func branchNameFromString(branchString string) string {
// because this has the recency at the beginning,
// we need to split and take the second part
splitBranchName := strings.Split(branchString, "\t")
return splitBranchName[len(splitBranchName)-1]
}
func getGitBranches() []Branch {
branches := make([]Branch, 0)
rawString, _ := runDirectCommand(getBranchesCommand)
branchLines := splitLines(rawString)
for i, line := range branchLines {
name := branchNameFromString(line)
var branchType string
var baseBranch string
if strings.Contains(line, "feature/") {
branchType = "feature"
baseBranch = "develop"
} else if strings.Contains(line, "bugfix/") {
branchType = "bugfix"
baseBranch = "develop"
} else if strings.Contains(line, "hotfix/") {
branchType = "hotfix"
baseBranch = "master"
} else {
branchType = "other"
baseBranch = name
}
if i == 0 {
line = line[:2] + "\t*" + line[2:]
}
branches = append(branches, Branch{name, line, branchType, baseBranch})
}
devLog(branches)
return branches
}
func getGitStatusFiles() []GitFile {
statusOutput, _ := getGitStatus()
statusStrings := splitLines(statusOutput)
devLog(statusStrings)
// a file can have both staged and unstaged changes
// I'll probably end up ignoring the unstaged flag for now but might revisit
// tracked, staged, unstaged
gitFiles := make([]GitFile, 0)
for _, statusString := range statusStrings {
stagedChange := statusString[0:1]
unstagedChange := statusString[1:2]
filename := statusString[3:]
tracked := statusString[0:2] != "??"
gitFile := GitFile{
Name: filename,
DisplayString: statusString,
HasStagedChanges: tracked && stagedChange != " ",
HasUnstagedChanges: !tracked || unstagedChange != " ",
Tracked: tracked,
Deleted: unstagedChange == "D" || stagedChange == "D",
}
gitFiles = append(gitFiles, gitFile)
}
return gitFiles
}
func gitCheckout(branch string, force bool) error {
forceArg := ""
if force {
forceArg = "--force "
}
_, err := runCommand("git checkout " + forceArg + branch)
return err
}
func runCommand(cmd string) (string, error) {
commandLog(cmd)
splitCmd := strings.Split(cmd, " ")
cmdOut, err := exec.Command(splitCmd[0], splitCmd[1:]...).Output()
devLog(string(cmdOut[:]))
return string(cmdOut), err
}
func openFile(filename string) (string, error) {
return runCommand("open " + filename)
}
func sublimeOpenFile(filename string) (string, error) {
return runCommand("subl " + filename)
}
func getBranchDiff(branch string, baseBranch string) (string, error) {
return runCommand("git diff --color " + baseBranch + "..." + branch)
}
func getLog() string {
result, err := runDirectCommand("git log --color --oneline")
if err != nil {
panic(err)
}
return result
}
func getDiff(file GitFile) string {
cachedArg := ""
if file.HasStagedChanges {
cachedArg = "--cached "
}
deletedArg := ""
if file.Deleted {
deletedArg = "-- "
}
trackedArg := ""
if !file.Tracked {
trackedArg = "--no-index /dev/null "
}
command := "git diff --color " + cachedArg + deletedArg + trackedArg + file.Name
s, err := runCommand(command)
if err != nil {
// for now we assume an error means the file was deleted
return s
}
return s
}
func stageFile(file string) error {
_, err := runCommand("git add " + file)
return err
}
func unStageFile(file string) error {
_, err := runCommand("git reset HEAD " + file)
return err
}
func getGitStatus() (string, error) {
return runCommand("git status --untracked-files=all --short")
}
func removeFile(file GitFile) error {
// if the file isn't tracked, we assume you want to delete it
if !file.Tracked {
_, err := runCommand("rm -rf ./" + file.Name)
return err
}
// if the file is tracked, we assume you want to just check it out
_, err := runCommand("git checkout " + file.Name)
return err
}
func gitCommit(message string) error {
_, err := runDirectCommand("git commit -m \"" + message + "\"")
return err
}
func gitPull() error {
_, err := runDirectCommand("git pull --no-edit")
return err
}
const getBranchesCommand = `set -e
git reflog -n100 --pretty='%cr|%gs' --grep-reflog='checkout: moving' HEAD | {
seen=":"
git_dir="$(git rev-parse --git-dir)"
while read line; do
date="${line%%|*}"
branch="${line##* }"
if ! [[ $seen == *:"${branch}":* ]]; then
seen="${seen}${branch}:"
if [ -f "${git_dir}/refs/heads/${branch}" ]; then
printf "%s\t%s\n" "$date" "$branch"
fi
fi
done | sed 's/ days /d /g' | sed 's/ weeks /w /g' | sed 's/ hours /h /g' | sed 's/ minutes /m /g' | sed 's/ago//g' | tr -d ' '
}
`
// func main() {
// getGitStatusFiles()
// }
// func devLog(s string) {
// f, _ := os.OpenFile("development.log", os.O_APPEND|os.O_WRONLY, 0644)
// defer f.Close()
// f.WriteString(s + "\n")
// }