-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
148 lines (129 loc) · 3.34 KB
/
main.go
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
package main
import (
"bytes"
"flag"
"fmt"
"io/ioutil"
"os"
"path/filepath"
"strings"
"github.com/atotto/clipboard"
gitignore "github.com/sabhiram/go-gitignore"
)
func main() {
// Use patterns from .concopyuse if it exists, otherwise from command-line arguments
patterns, err := readConcopyUsePatterns(".")
if err != nil {
fmt.Println("Error reading .concopyuse:", err)
return
}
if len(patterns) == 0 {
flag.Parse()
patterns = flag.Args()
if len(patterns) == 0 {
patterns = append(patterns, ".") // Default to "."
}
}
if err := concopy(".", patterns); err != nil {
fmt.Println("Error:", err)
}
}
func concopy(rootDir string, patterns []string) error {
var buffer bytes.Buffer
err := filepath.Walk(rootDir, func(path string, info os.FileInfo, err error) error {
if err != nil {
return err
}
// Skip the .git directory
if info.IsDir() && (info.Name() == ".git" || strings.Contains(path, "/.git/")) {
return filepath.SkipDir
}
if info.IsDir() {
gitIgnore, err := loadGitIgnore(path)
if err != nil {
fmt.Println("Error loading .gitignore:", err)
return nil
}
if gitIgnore != nil && gitIgnore.MatchesPath(path) {
return filepath.SkipDir
}
} else if shouldInclude(path, patterns, rootDir) && !isIgnoredByGitignore(path, rootDir) {
data, err := ioutil.ReadFile(path)
if err != nil {
return err
}
fmt.Println(path)
buffer.WriteString(path + ":\n")
buffer.Write(data)
buffer.WriteString("\n\n")
}
return nil
})
if err != nil {
return err
}
return clipboard.WriteAll(buffer.String())
}
func loadGitIgnore(dir string) (*gitignore.GitIgnore, error) {
gitignorePath := filepath.Join(dir, ".gitignore")
if _, err := os.Stat(gitignorePath); os.IsNotExist(err) {
return nil, nil
}
return gitignore.CompileIgnoreFile(gitignorePath)
}
func isIgnoredByGitignore(filePath, rootDir string) bool {
for dir := filePath; dir != rootDir; dir = filepath.Dir(dir) {
gitIgnore, _ := loadGitIgnore(filepath.Dir(dir))
if gitIgnore != nil && gitIgnore.MatchesPath(filePath) {
return true
}
}
return false
}
func shouldInclude(filePath string, patterns []string, rootDir string) bool {
relPath, err := filepath.Rel(rootDir, filePath)
if err != nil {
return false
}
if len(patterns) == 0 {
return true // If no patterns specified, include all files
}
for _, pattern := range patterns {
if pattern == "." {
// Special case for '.', include all files
return true
}
// Check if the pattern is a directory
patternInfo, err := os.Stat(pattern)
if err == nil && patternInfo.IsDir() {
if strings.HasPrefix(relPath, pattern) {
return true
}
}
matched, err := filepath.Match(pattern, relPath)
if err != nil {
fmt.Println("Invalid pattern:", err)
continue
}
if matched {
return true
}
}
return false
}
// readConcopyUsePatterns reads the .concopyuse file and returns the patterns
func readConcopyUsePatterns(rootDir string) ([]string, error) {
concopyUsePath := filepath.Join(rootDir, ".concopyuse")
content, err := ioutil.ReadFile(concopyUsePath)
if err != nil {
if os.IsNotExist(err) {
return nil, nil // No .concopyuse file, not an error
}
return nil, err
}
patterns := strings.Split(strings.TrimSpace(string(content)), "\n")
for i, pattern := range patterns {
patterns[i] = strings.TrimSpace(pattern)
}
return patterns, nil
}