Format code
This commit is contained in:
4
.gitignore
vendored
4
.gitignore
vendored
@@ -1,2 +1,2 @@
|
|||||||
|
|
||||||
main.exe
|
main.exe
|
||||||
|
480
main.go
480
main.go
@@ -1,240 +1,240 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bufio"
|
"bufio"
|
||||||
"flag"
|
"flag"
|
||||||
"fmt"
|
"fmt"
|
||||||
"log"
|
"log"
|
||||||
"os"
|
"os"
|
||||||
"regexp"
|
"regexp"
|
||||||
"strings"
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
const deliminer = ","
|
const deliminer = ","
|
||||||
const (
|
const (
|
||||||
Black = "\033[30m"
|
Black = "\033[30m"
|
||||||
Red = "\033[31m"
|
Red = "\033[31m"
|
||||||
Green = "\033[32m"
|
Green = "\033[32m"
|
||||||
Yellow = "\033[33m"
|
Yellow = "\033[33m"
|
||||||
Blue = "\033[34m"
|
Blue = "\033[34m"
|
||||||
Magenta = "\033[35m"
|
Magenta = "\033[35m"
|
||||||
Cyan = "\033[36m"
|
Cyan = "\033[36m"
|
||||||
White = "\033[37m"
|
White = "\033[37m"
|
||||||
)
|
)
|
||||||
const SourceColor = Magenta
|
const SourceColor = Magenta
|
||||||
const TargetColor = Yellow
|
const TargetColor = Yellow
|
||||||
const ErrorColor = Red
|
const ErrorColor = Red
|
||||||
const DefaultColor = White
|
const DefaultColor = White
|
||||||
const PathColor = Green
|
const PathColor = Green
|
||||||
|
|
||||||
var DirRegex, _ = regexp.Compile(`^(.+?)[/\\]sync$`)
|
var DirRegex, _ = regexp.Compile(`^(.+?)[/\\]sync$`)
|
||||||
var programName = os.Args[0]
|
var programName = os.Args[0]
|
||||||
|
|
||||||
type LinkInstruction struct {
|
type LinkInstruction struct {
|
||||||
Source string
|
Source string
|
||||||
Target string
|
Target string
|
||||||
Force bool
|
Force bool
|
||||||
}
|
}
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
// Format:
|
// Format:
|
||||||
// source,target,force?
|
// source,target,force?
|
||||||
log.SetFlags(log.Lmicroseconds)
|
log.SetFlags(log.Lmicroseconds)
|
||||||
|
|
||||||
recurse := flag.String("r", "", "recurse into directories")
|
recurse := flag.String("r", "", "recurse into directories")
|
||||||
file := flag.String("f", "", "file to read instructions from")
|
file := flag.String("f", "", "file to read instructions from")
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
|
|
||||||
log.Printf("Recurse: %s", *recurse)
|
log.Printf("Recurse: %s", *recurse)
|
||||||
log.Printf("File: %s", *file)
|
log.Printf("File: %s", *file)
|
||||||
|
|
||||||
var instructions []LinkInstruction
|
var instructions []LinkInstruction
|
||||||
if *recurse != "" {
|
if *recurse != "" {
|
||||||
instructions, _ = ReadFromFilesRecursively(*recurse)
|
instructions, _ = ReadFromFilesRecursively(*recurse)
|
||||||
} else if *file != "" {
|
} else if *file != "" {
|
||||||
instructions, _ = ReadFromFile(*file)
|
instructions, _ = ReadFromFile(*file)
|
||||||
} else if len(os.Args) > 1 {
|
} else if len(os.Args) > 1 {
|
||||||
instructions, _ = ReadFromArgs()
|
instructions, _ = ReadFromArgs()
|
||||||
} else {
|
} else {
|
||||||
instructions, _ = ReadFromStdin()
|
instructions, _ = ReadFromStdin()
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(instructions) == 0 {
|
if len(instructions) == 0 {
|
||||||
log.Printf("No input provided")
|
log.Printf("No input provided")
|
||||||
log.Printf("Provide input as: ")
|
log.Printf("Provide input as: ")
|
||||||
log.Printf("Arguments - %s <source>,<target>,<force?>", programName)
|
log.Printf("Arguments - %s <source>,<target>,<force?>", programName)
|
||||||
log.Printf("File - %s -f <file>", programName)
|
log.Printf("File - %s -f <file>", programName)
|
||||||
log.Printf("Folder (finding sync files in folder recursively) - %s -r <folder>", programName)
|
log.Printf("Folder (finding sync files in folder recursively) - %s -r <folder>", programName)
|
||||||
log.Printf("stdin - (cat <file> | %s)", programName)
|
log.Printf("stdin - (cat <file> | %s)", programName)
|
||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
}
|
}
|
||||||
for _, instruction := range instructions {
|
for _, instruction := range instructions {
|
||||||
log.Printf("Processing: %s", InstructionToString(instruction))
|
log.Printf("Processing: %s", InstructionToString(instruction))
|
||||||
err := RunInstruction(instruction)
|
err := RunInstruction(instruction)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Printf("Failed parsing instruction %s%s%s due to %s%+v%s", SourceColor, InstructionToString(instruction), DefaultColor, ErrorColor, err, DefaultColor)
|
log.Printf("Failed parsing instruction %s%s%s due to %s%+v%s", SourceColor, InstructionToString(instruction), DefaultColor, ErrorColor, err, DefaultColor)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func ReadFromFilesRecursively(input string) ([]LinkInstruction, error) {
|
func ReadFromFilesRecursively(input string) ([]LinkInstruction, error) {
|
||||||
input = NormalizePath(input)
|
input = NormalizePath(input)
|
||||||
log.Printf("Reading input from files recursively starting in %s%s%s", PathColor, input, DefaultColor)
|
log.Printf("Reading input from files recursively starting in %s%s%s", PathColor, input, DefaultColor)
|
||||||
var instructions []LinkInstruction
|
var instructions []LinkInstruction
|
||||||
|
|
||||||
files, err := GetSyncFilesRecursively(input)
|
files, err := GetSyncFilesRecursively(input)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalf("Failed to get sync files recursively: %s%+v%s", ErrorColor, err, DefaultColor)
|
log.Fatalf("Failed to get sync files recursively: %s%+v%s", ErrorColor, err, DefaultColor)
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, file := range files {
|
for _, file := range files {
|
||||||
file = NormalizePath(file)
|
file = NormalizePath(file)
|
||||||
|
|
||||||
// This "has" to be done because instructions are resolved in relation to cwd
|
// This "has" to be done because instructions are resolved in relation to cwd
|
||||||
fileDir := DirRegex.FindStringSubmatch(file)
|
fileDir := DirRegex.FindStringSubmatch(file)
|
||||||
if fileDir == nil {
|
if fileDir == nil {
|
||||||
log.Printf("Failed to extract directory from %s%s%s", SourceColor, file, DefaultColor)
|
log.Printf("Failed to extract directory from %s%s%s", SourceColor, file, DefaultColor)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
log.Printf("Changing directory to %s%s%s (for %s%s%s)", PathColor, fileDir[1], DefaultColor, PathColor, file, DefaultColor)
|
log.Printf("Changing directory to %s%s%s (for %s%s%s)", PathColor, fileDir[1], DefaultColor, PathColor, file, DefaultColor)
|
||||||
err := os.Chdir(fileDir[1])
|
err := os.Chdir(fileDir[1])
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Printf("Failed to change directory to %s%s%s: %s%+v%s", SourceColor, fileDir[1], DefaultColor, ErrorColor, err, DefaultColor)
|
log.Printf("Failed to change directory to %s%s%s: %s%+v%s", SourceColor, fileDir[1], DefaultColor, ErrorColor, err, DefaultColor)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
fileInstructions, _ := ReadFromFile(file)
|
fileInstructions, _ := ReadFromFile(file)
|
||||||
instructions = append(instructions, fileInstructions...)
|
instructions = append(instructions, fileInstructions...)
|
||||||
}
|
}
|
||||||
return instructions, nil
|
return instructions, nil
|
||||||
}
|
}
|
||||||
func ReadFromFile(input string) ([]LinkInstruction, error) {
|
func ReadFromFile(input string) ([]LinkInstruction, error) {
|
||||||
input = NormalizePath(input)
|
input = NormalizePath(input)
|
||||||
log.Printf("Reading input from file: %s%s%s", PathColor, input, DefaultColor)
|
log.Printf("Reading input from file: %s%s%s", PathColor, input, DefaultColor)
|
||||||
var instructions []LinkInstruction
|
var instructions []LinkInstruction
|
||||||
file, err := os.Open(input)
|
file, err := os.Open(input)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalf("Failed to open file %s%s%s: %s%+v%s", SourceColor, input, DefaultColor, ErrorColor, err, DefaultColor)
|
log.Fatalf("Failed to open file %s%s%s: %s%+v%s", SourceColor, input, DefaultColor, ErrorColor, err, DefaultColor)
|
||||||
}
|
}
|
||||||
defer file.Close()
|
defer file.Close()
|
||||||
|
|
||||||
scanner := bufio.NewScanner(file)
|
scanner := bufio.NewScanner(file)
|
||||||
for scanner.Scan() {
|
for scanner.Scan() {
|
||||||
line := scanner.Text()
|
line := scanner.Text()
|
||||||
instruction, err := ParseInstruction(line)
|
instruction, err := ParseInstruction(line)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Printf("Error parsing line: %s'%s'%s, error: %s%+v%s", SourceColor, line, DefaultColor, ErrorColor, err, DefaultColor)
|
log.Printf("Error parsing line: %s'%s'%s, error: %s%+v%s", SourceColor, line, DefaultColor, ErrorColor, err, DefaultColor)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
instructions = append(instructions, instruction)
|
instructions = append(instructions, instruction)
|
||||||
}
|
}
|
||||||
log.Printf("Read %d instructions from file", len(instructions))
|
log.Printf("Read %d instructions from file", len(instructions))
|
||||||
return instructions, nil
|
return instructions, nil
|
||||||
}
|
}
|
||||||
func ReadFromArgs() ([]LinkInstruction, error) {
|
func ReadFromArgs() ([]LinkInstruction, error) {
|
||||||
log.Printf("Reading input from args")
|
log.Printf("Reading input from args")
|
||||||
var instructions []LinkInstruction
|
var instructions []LinkInstruction
|
||||||
for _, arg := range os.Args[1:] {
|
for _, arg := range os.Args[1:] {
|
||||||
instruction, err := ParseInstruction(arg)
|
instruction, err := ParseInstruction(arg)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Printf("Error parsing arg: %s'%s'%s, error: %s%+v%s", SourceColor, arg, DefaultColor, ErrorColor, err, DefaultColor)
|
log.Printf("Error parsing arg: %s'%s'%s, error: %s%+v%s", SourceColor, arg, DefaultColor, ErrorColor, err, DefaultColor)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
instructions = append(instructions, instruction)
|
instructions = append(instructions, instruction)
|
||||||
}
|
}
|
||||||
log.Printf("Read %d instructions from args", len(instructions))
|
log.Printf("Read %d instructions from args", len(instructions))
|
||||||
return instructions, nil
|
return instructions, nil
|
||||||
}
|
}
|
||||||
func ReadFromStdin() ([]LinkInstruction, error) {
|
func ReadFromStdin() ([]LinkInstruction, error) {
|
||||||
log.Printf("Reading input from stdin")
|
log.Printf("Reading input from stdin")
|
||||||
var instructions []LinkInstruction
|
var instructions []LinkInstruction
|
||||||
|
|
||||||
info, err := os.Stdin.Stat()
|
info, err := os.Stdin.Stat()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalf("Failed to stat stdin: %s%+v%s", ErrorColor, err, DefaultColor)
|
log.Fatalf("Failed to stat stdin: %s%+v%s", ErrorColor, err, DefaultColor)
|
||||||
}
|
}
|
||||||
if info.Mode()&os.ModeNamedPipe != 0 {
|
if info.Mode()&os.ModeNamedPipe != 0 {
|
||||||
scanner := bufio.NewScanner(os.Stdin)
|
scanner := bufio.NewScanner(os.Stdin)
|
||||||
for scanner.Scan() {
|
for scanner.Scan() {
|
||||||
line := scanner.Text()
|
line := scanner.Text()
|
||||||
instruction, err := ParseInstruction(line)
|
instruction, err := ParseInstruction(line)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Printf("Error parsing line: %s'%s'%s, error: %s%+v%s", SourceColor, line, DefaultColor, ErrorColor, err, DefaultColor)
|
log.Printf("Error parsing line: %s'%s'%s, error: %s%+v%s", SourceColor, line, DefaultColor, ErrorColor, err, DefaultColor)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
instructions = append(instructions, instruction)
|
instructions = append(instructions, instruction)
|
||||||
}
|
}
|
||||||
if err := scanner.Err(); err != nil {
|
if err := scanner.Err(); err != nil {
|
||||||
log.Fatalf("Error reading from stdin: %s%+v%s", ErrorColor, err, DefaultColor)
|
log.Fatalf("Error reading from stdin: %s%+v%s", ErrorColor, err, DefaultColor)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
log.Printf("Read %d instructions from stdin", len(instructions))
|
log.Printf("Read %d instructions from stdin", len(instructions))
|
||||||
return instructions, nil
|
return instructions, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func ParseInstruction(line string) (LinkInstruction, error) {
|
func ParseInstruction(line string) (LinkInstruction, error) {
|
||||||
parts := strings.Split(line, deliminer)
|
parts := strings.Split(line, deliminer)
|
||||||
instruction := LinkInstruction{}
|
instruction := LinkInstruction{}
|
||||||
|
|
||||||
if len(parts) < 2 {
|
if len(parts) < 2 {
|
||||||
return instruction, fmt.Errorf("invalid format - not enough parameters (must have at least source and target)")
|
return instruction, fmt.Errorf("invalid format - not enough parameters (must have at least source and target)")
|
||||||
}
|
}
|
||||||
|
|
||||||
instruction.Source = parts[0]
|
instruction.Source = parts[0]
|
||||||
instruction.Target = parts[1]
|
instruction.Target = parts[1]
|
||||||
instruction.Force = false
|
instruction.Force = false
|
||||||
if len(parts) > 2 {
|
if len(parts) > 2 {
|
||||||
res, _ := regexp.MatchString("^(?i)T|TRUE$", parts[2])
|
res, _ := regexp.MatchString("^(?i)T|TRUE$", parts[2])
|
||||||
instruction.Force = res
|
instruction.Force = res
|
||||||
}
|
}
|
||||||
|
|
||||||
instruction.Source, _ = ConvertHome(instruction.Source)
|
instruction.Source, _ = ConvertHome(instruction.Source)
|
||||||
instruction.Target, _ = ConvertHome(instruction.Target)
|
instruction.Target, _ = ConvertHome(instruction.Target)
|
||||||
|
|
||||||
instruction.Source = NormalizePath(instruction.Source)
|
instruction.Source = NormalizePath(instruction.Source)
|
||||||
instruction.Target = NormalizePath(instruction.Target)
|
instruction.Target = NormalizePath(instruction.Target)
|
||||||
|
|
||||||
return instruction, nil
|
return instruction, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func RunInstruction(instruction LinkInstruction) error {
|
func RunInstruction(instruction LinkInstruction) error {
|
||||||
if !FileExists(instruction.Source) {
|
if !FileExists(instruction.Source) {
|
||||||
return fmt.Errorf("instruction source %s%s%s does not exist", SourceColor, instruction.Source, DefaultColor)
|
return fmt.Errorf("instruction source %s%s%s does not exist", SourceColor, instruction.Source, DefaultColor)
|
||||||
}
|
}
|
||||||
|
|
||||||
if AreSame(instruction.Source, instruction.Target) {
|
if AreSame(instruction.Source, instruction.Target) {
|
||||||
log.Printf("Source %s%s%s and target %s%s%s are the same, %snothing to do...%s", SourceColor, instruction.Source, DefaultColor, TargetColor, instruction.Target, DefaultColor, PathColor, DefaultColor)
|
log.Printf("Source %s%s%s and target %s%s%s are the same, %snothing to do...%s", SourceColor, instruction.Source, DefaultColor, TargetColor, instruction.Target, DefaultColor, PathColor, DefaultColor)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
if FileExists(instruction.Target) {
|
if FileExists(instruction.Target) {
|
||||||
if instruction.Force {
|
if instruction.Force {
|
||||||
isSymlink, err := IsSymlink(instruction.Target)
|
isSymlink, err := IsSymlink(instruction.Target)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("could not determine whether %s%s%s is a sym link or not, stopping; err: %s%+v%s", TargetColor, instruction.Target, DefaultColor, ErrorColor, err, DefaultColor)
|
return fmt.Errorf("could not determine whether %s%s%s is a sym link or not, stopping; err: %s%+v%s", TargetColor, instruction.Target, DefaultColor, ErrorColor, err, DefaultColor)
|
||||||
}
|
}
|
||||||
|
|
||||||
if isSymlink {
|
if isSymlink {
|
||||||
log.Printf("Removing symlink at %s%s%s", TargetColor, instruction.Target, DefaultColor)
|
log.Printf("Removing symlink at %s%s%s", TargetColor, instruction.Target, DefaultColor)
|
||||||
err = os.Remove(instruction.Target)
|
err = os.Remove(instruction.Target)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("failed deleting %s%s%s due to %s%+v%s", TargetColor, instruction.Target, DefaultColor, ErrorColor, err, DefaultColor)
|
return fmt.Errorf("failed deleting %s%s%s due to %s%+v%s", TargetColor, instruction.Target, DefaultColor, ErrorColor, err, DefaultColor)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
return fmt.Errorf("refusing to delte actual (non symlink) file %s%s%s", TargetColor, instruction.Target, DefaultColor)
|
return fmt.Errorf("refusing to delte actual (non symlink) file %s%s%s", TargetColor, instruction.Target, DefaultColor)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
return fmt.Errorf("target %s%s%s exists - handle manually or set the 'forced' flag (3rd field)", TargetColor, instruction.Target, DefaultColor)
|
return fmt.Errorf("target %s%s%s exists - handle manually or set the 'forced' flag (3rd field)", TargetColor, instruction.Target, DefaultColor)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
err := os.Symlink(instruction.Source, instruction.Target)
|
err := os.Symlink(instruction.Source, instruction.Target)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("failed creating symlink between %s%s%s and %s%s%s with error %s%+v%s", SourceColor, instruction.Source, DefaultColor, TargetColor, instruction.Target, DefaultColor, ErrorColor, err, DefaultColor)
|
return fmt.Errorf("failed creating symlink between %s%s%s and %s%s%s with error %s%+v%s", SourceColor, instruction.Source, DefaultColor, TargetColor, instruction.Target, DefaultColor, ErrorColor, err, DefaultColor)
|
||||||
}
|
}
|
||||||
log.Printf("Created symlink between %s%s%s and %s%s%s", SourceColor, instruction.Source, DefaultColor, TargetColor, instruction.Target, DefaultColor)
|
log.Printf("Created symlink between %s%s%s and %s%s%s", SourceColor, instruction.Source, DefaultColor, TargetColor, instruction.Target, DefaultColor)
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
176
util.go
176
util.go
@@ -1,88 +1,88 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"io/fs"
|
"io/fs"
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
func IsSymlink(path string) (bool, error) {
|
func IsSymlink(path string) (bool, error) {
|
||||||
fileInfo, err := os.Lstat(path)
|
fileInfo, err := os.Lstat(path)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return false, err
|
return false, err
|
||||||
}
|
}
|
||||||
|
|
||||||
// os.ModeSymlink is a bitmask that identifies the symlink mode.
|
// os.ModeSymlink is a bitmask that identifies the symlink mode.
|
||||||
// If the file mode & os.ModeSymlink is non-zero, the file is a symlink.
|
// If the file mode & os.ModeSymlink is non-zero, the file is a symlink.
|
||||||
return fileInfo.Mode()&os.ModeSymlink != 0, nil
|
return fileInfo.Mode()&os.ModeSymlink != 0, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func FileExists(path string) bool {
|
func FileExists(path string) bool {
|
||||||
_, err := os.Lstat(path)
|
_, err := os.Lstat(path)
|
||||||
return err == nil
|
return err == nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func NormalizePath(input string) string {
|
func NormalizePath(input string) string {
|
||||||
workingdirectory, _ := os.Getwd()
|
workingdirectory, _ := os.Getwd()
|
||||||
input = strings.ReplaceAll(input, "\\", "/")
|
input = strings.ReplaceAll(input, "\\", "/")
|
||||||
input = strings.ReplaceAll(input, "\"", "")
|
input = strings.ReplaceAll(input, "\"", "")
|
||||||
|
|
||||||
if !filepath.IsAbs(input) {
|
if !filepath.IsAbs(input) {
|
||||||
input = workingdirectory + "/" + input
|
input = workingdirectory + "/" + input
|
||||||
}
|
}
|
||||||
|
|
||||||
return filepath.Clean(input)
|
return filepath.Clean(input)
|
||||||
}
|
}
|
||||||
|
|
||||||
func AreSame(lhs string, rhs string) bool {
|
func AreSame(lhs string, rhs string) bool {
|
||||||
lhsinfo, err := os.Stat(lhs)
|
lhsinfo, err := os.Stat(lhs)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
rhsinfo, err := os.Stat(rhs)
|
rhsinfo, err := os.Stat(rhs)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
return os.SameFile(lhsinfo, rhsinfo)
|
return os.SameFile(lhsinfo, rhsinfo)
|
||||||
}
|
}
|
||||||
|
|
||||||
func ConvertHome(input string) (string, error) {
|
func ConvertHome(input string) (string, error) {
|
||||||
if strings.Contains(input, "~") {
|
if strings.Contains(input, "~") {
|
||||||
homedir, err := os.UserHomeDir()
|
homedir, err := os.UserHomeDir()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return input, fmt.Errorf("unable to convert ~ to user directory with error %+v", err)
|
return input, fmt.Errorf("unable to convert ~ to user directory with error %+v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
return strings.Replace(input, "~", homedir, 1), nil
|
return strings.Replace(input, "~", homedir, 1), nil
|
||||||
}
|
}
|
||||||
return input, nil
|
return input, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func InstructionToString(instruction LinkInstruction) string {
|
func InstructionToString(instruction LinkInstruction) string {
|
||||||
return fmt.Sprintf("%s%s%s%s%s%s%s%s%s", SourceColor, instruction.Source, DefaultColor, deliminer, TargetColor, instruction.Target, DefaultColor, deliminer, strconv.FormatBool(instruction.Force))
|
return fmt.Sprintf("%s%s%s%s%s%s%s%s%s", SourceColor, instruction.Source, DefaultColor, deliminer, TargetColor, instruction.Target, DefaultColor, deliminer, strconv.FormatBool(instruction.Force))
|
||||||
}
|
}
|
||||||
|
|
||||||
func GetSyncFilesRecursively(input string) ([]string, error) {
|
func GetSyncFilesRecursively(input string) ([]string, error) {
|
||||||
var files []string
|
var files []string
|
||||||
err := filepath.WalkDir(input, func(path string, file fs.DirEntry, err error) error {
|
err := filepath.WalkDir(input, func(path string, file fs.DirEntry, err error) error {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
// Effectively only find files named "sync" (with no extension!!)
|
// Effectively only find files named "sync" (with no extension!!)
|
||||||
if !file.IsDir() && DirRegex.MatchString(path) {
|
if !file.IsDir() && DirRegex.MatchString(path) {
|
||||||
files = append(files, path)
|
files = append(files, path)
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
return files, nil
|
return files, nil
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user