-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathgit_manager.go
More file actions
446 lines (367 loc) · 11.5 KB
/
git_manager.go
File metadata and controls
446 lines (367 loc) · 11.5 KB
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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
/*
Copyright 2024 Blnk Finance Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package watch
import (
"fmt"
"os"
"os/exec"
"path/filepath"
"strings"
"time"
"github.com/fsnotify/fsnotify"
zlog "github.com/rs/zerolog/log"
)
type GitManager struct {
RepoURL string
Branch string
LocalPath string
PollInterval time.Duration
watcher *fsnotify.Watcher
stopChan chan bool
}
// NewGitManager creates a new GitManager instance
func NewGitManager(repoURL, branch, localPath string) *GitManager {
if branch == "" {
branch = "main"
}
return &GitManager{
RepoURL: repoURL,
Branch: branch,
LocalPath: localPath,
PollInterval: 30 * time.Second, // Check for updates every 30 seconds
stopChan: make(chan bool),
}
}
// CloneOrUpdate clones the repository if it doesn't exist, or updates it if it does.
// This is the primary method to initialize or refresh the local repository.
// It handles edge cases like invalid repositories by removing and re-cloning them.
//
// Returns an error if the clone or update operation fails.
func (gm *GitManager) CloneOrUpdate() error {
if _, err := os.Stat(gm.LocalPath); os.IsNotExist(err) {
return gm.cloneRepository()
}
if !gm.isValidGitRepo() {
zlog.Warn().Str("path", gm.LocalPath).Msg("Directory exists but is not a valid Git repository, removing and re-cloning")
if err := os.RemoveAll(gm.LocalPath); err != nil {
return fmt.Errorf("failed to remove invalid repository directory: %w", err)
}
return gm.cloneRepository()
}
return gm.updateRepository()
}
func (gm *GitManager) cloneRepository() error {
zlog.Info().
Str("repo", gm.RepoURL).
Str("branch", gm.Branch).
Str("path", gm.LocalPath).
Msg("Cloning Git repository")
parentDir := filepath.Dir(gm.LocalPath)
if err := os.MkdirAll(parentDir, 0755); err != nil {
return fmt.Errorf("failed to create parent directory: %w", err)
}
cmd := exec.Command("git", "clone", "-b", gm.Branch, gm.RepoURL, gm.LocalPath)
output, err := cmd.CombinedOutput()
if err != nil {
return fmt.Errorf("failed to clone repository: %w\nOutput: %s", err, string(output))
}
zlog.Info().
Str("path", gm.LocalPath).
Msg("Successfully cloned Git repository")
return nil
}
func (gm *GitManager) isValidGitRepo() bool {
gitDir := filepath.Join(gm.LocalPath, ".git")
if _, err := os.Stat(gitDir); os.IsNotExist(err) {
return false
}
// Change to repository directory
originalDir, err := os.Getwd()
if err != nil {
return false
}
defer os.Chdir(originalDir)
if err := os.Chdir(gm.LocalPath); err != nil {
return false
}
cmd := exec.Command("git", "remote", "get-url", "origin")
output, err := cmd.CombinedOutput()
if err != nil {
return false
}
remoteURL := strings.TrimSpace(string(output))
return remoteURL == gm.RepoURL
}
func (gm *GitManager) ensureOriginRemote() error {
cmd := exec.Command("git", "remote", "get-url", "origin")
output, err := cmd.CombinedOutput()
if err != nil {
zlog.Info().Str("repo", gm.RepoURL).Msg("Adding origin remote")
cmd = exec.Command("git", "remote", "add", "origin", gm.RepoURL)
if output, err := cmd.CombinedOutput(); err != nil {
return fmt.Errorf("failed to add origin remote: %w\nOutput: %s", err, string(output))
}
return nil
}
currentURL := strings.TrimSpace(string(output))
if currentURL != gm.RepoURL {
zlog.Info().
Str("old_url", currentURL).
Str("new_url", gm.RepoURL).
Msg("Updating origin remote URL")
cmd = exec.Command("git", "remote", "set-url", "origin", gm.RepoURL)
if output, err := cmd.CombinedOutput(); err != nil {
return fmt.Errorf("failed to update origin remote: %w\nOutput: %s", err, string(output))
}
}
return nil
}
func (gm *GitManager) updateRepository() error {
originalDir, err := os.Getwd()
if err != nil {
return fmt.Errorf("failed to get current directory: %w", err)
}
defer os.Chdir(originalDir)
if err := os.Chdir(gm.LocalPath); err != nil {
return fmt.Errorf("failed to change to repository directory: %w", err)
}
if err := gm.ensureOriginRemote(); err != nil {
return fmt.Errorf("failed to ensure origin remote: %w", err)
}
cmd := exec.Command("git", "fetch", "origin")
output, err := cmd.CombinedOutput()
if err != nil {
return fmt.Errorf("failed to fetch from remote: %w\nOutput: %s", err, string(output))
}
cmd = exec.Command("git", "rev-parse", "HEAD")
localCommitOutput, err := cmd.CombinedOutput()
if err != nil {
return fmt.Errorf("failed to get local commit hash: %w", err)
}
localCommit := strings.TrimSpace(string(localCommitOutput))
cmd = exec.Command("git", "rev-parse", fmt.Sprintf("origin/%s", gm.Branch))
remoteCommitOutput, err := cmd.CombinedOutput()
if err != nil {
return fmt.Errorf("failed to get remote commit hash: %w", err)
}
remoteCommit := strings.TrimSpace(string(remoteCommitOutput))
if localCommit == remoteCommit {
return nil
}
if err := gm.handleLocalChanges(); err != nil {
zlog.Warn().Err(err).Msg("Failed to handle local changes, attempting to continue")
}
cmd = exec.Command("git", "pull", "origin", gm.Branch)
output, err = cmd.CombinedOutput()
if err != nil {
return fmt.Errorf("failed to pull changes: %w\nOutput: %s", err, string(output))
}
zlog.Info().
Str("from", localCommit[:7]).
Str("to", remoteCommit[:7]).
Msg("Successfully updated Git repository")
return nil
}
// handleLocalChanges deals with local modifications before pulling
func (gm *GitManager) handleLocalChanges() error {
// Check if there are any local changes
cmd := exec.Command("git", "status", "--porcelain")
output, err := cmd.CombinedOutput()
if err != nil {
return fmt.Errorf("failed to check git status: %w", err)
}
changes := strings.TrimSpace(string(output))
if changes == "" {
// No local changes
return nil
}
zlog.Info().Str("changes", changes).Msg("Detected local changes, resetting to match remote")
// Reset any uncommitted changes
cmd = exec.Command("git", "reset", "--hard", "HEAD")
if output, err := cmd.CombinedOutput(); err != nil {
return fmt.Errorf("failed to reset local changes: %w\nOutput: %s", err, string(output))
}
cmd = exec.Command("git", "clean", "-fd")
if output, err := cmd.CombinedOutput(); err != nil {
return fmt.Errorf("failed to clean untracked files: %w\nOutput: %s", err, string(output))
}
zlog.Info().Msg("Successfully reset local changes")
return nil
}
func (gm *GitManager) StartPeriodicSync() {
go func() {
ticker := time.NewTicker(gm.PollInterval)
defer ticker.Stop()
for {
select {
case <-ticker.C:
if err := gm.updateRepository(); err != nil {
zlog.Error().Err(err).Msg("Failed to update Git repository")
} else {
go processExistingScriptsInDir(gm.LocalPath)
}
case <-gm.stopChan:
zlog.Info().Msg("Stopping Git repository sync")
return
}
}
}()
}
func (gm *GitManager) StartWatching() error {
var err error
gm.watcher, err = fsnotify.NewWatcher()
if err != nil {
return fmt.Errorf("failed to create file watcher: %w", err)
}
err = gm.watcher.Add(gm.LocalPath)
if err != nil {
return fmt.Errorf("failed to watch repository directory: %w", err)
}
go func() {
defer gm.watcher.Close()
for {
select {
case event, ok := <-gm.watcher.Events:
if !ok {
return
}
if strings.HasSuffix(event.Name, ".ws") {
zlog.Info().
Str("file", event.Name).
Str("operation", event.Op.String()).
Msg("Watch script file changed")
if event.Op&fsnotify.Write == fsnotify.Write || event.Op&fsnotify.Create == fsnotify.Create {
go processScriptFile(event.Name)
}
}
case err, ok := <-gm.watcher.Errors:
if !ok {
return
}
zlog.Error().Err(err).Msg("File watcher error")
case <-gm.stopChan:
return
}
}
}()
return nil
}
func (gm *GitManager) Stop() {
close(gm.stopChan)
if gm.watcher != nil {
gm.watcher.Close()
}
}
func (gm *GitManager) GetCurrentCommit() (string, error) {
originalDir, err := os.Getwd()
if err != nil {
return "", fmt.Errorf("failed to get current directory: %w", err)
}
defer os.Chdir(originalDir)
if err := os.Chdir(gm.LocalPath); err != nil {
return "", fmt.Errorf("failed to change to repository directory: %w", err)
}
cmd := exec.Command("git", "rev-parse", "HEAD")
output, err := cmd.CombinedOutput()
if err != nil {
return "", fmt.Errorf("failed to get commit hash: %w", err)
}
return strings.TrimSpace(string(output)), nil
}
func (gm *GitManager) GetRemoteCommit() (string, error) {
originalDir, err := os.Getwd()
if err != nil {
return "", fmt.Errorf("failed to get current directory: %w", err)
}
defer os.Chdir(originalDir)
if err := os.Chdir(gm.LocalPath); err != nil {
return "", fmt.Errorf("failed to change to repository directory: %w", err)
}
// Fetch latest changes first
cmd := exec.Command("git", "fetch", "origin")
if _, err := cmd.CombinedOutput(); err != nil {
return "", fmt.Errorf("failed to fetch from remote: %w", err)
}
cmd = exec.Command("git", "rev-parse", fmt.Sprintf("origin/%s", gm.Branch))
output, err := cmd.CombinedOutput()
if err != nil {
return "", fmt.Errorf("failed to get remote commit hash: %w", err)
}
return strings.TrimSpace(string(output)), nil
}
func IsGitInstalled() bool {
_, err := exec.LookPath("git")
return err == nil
}
func ValidateGitRepo(repoURL string) error {
cmd := exec.Command("git", "ls-remote", "--heads", repoURL)
output, err := cmd.CombinedOutput()
if err != nil {
return fmt.Errorf("invalid Git repository URL: %w\nOutput: %s", err, string(output))
}
return nil
}
func (gm *GitManager) GetRepositoryInfo() map[string]interface{} {
info := map[string]interface{}{
"repo_url": gm.RepoURL,
"branch": gm.Branch,
"local_path": gm.LocalPath,
"exists": false,
"valid_git": false,
}
if _, err := os.Stat(gm.LocalPath); err == nil {
info["exists"] = true
info["valid_git"] = gm.isValidGitRepo()
if gm.isValidGitRepo() {
info["git_status"] = gm.getGitStatus()
}
}
// Get current commit if possible
if commit, err := gm.GetCurrentCommit(); err == nil {
info["current_commit"] = commit
}
if commit, err := gm.GetRemoteCommit(); err == nil {
info["remote_commit"] = commit
}
return info
}
// getGitStatus returns detailed Git status information
func (gm *GitManager) getGitStatus() map[string]interface{} {
status := map[string]interface{}{}
// Change to repository directory
originalDir, _ := os.Getwd()
defer os.Chdir(originalDir)
if err := os.Chdir(gm.LocalPath); err != nil {
status["error"] = "cannot access repository directory"
return status
}
if cmd := exec.Command("git", "status", "--porcelain"); cmd != nil {
if output, err := cmd.CombinedOutput(); err == nil {
changes := strings.TrimSpace(string(output))
status["has_changes"] = changes != ""
status["changes"] = changes
}
}
// Get remote info
if cmd := exec.Command("git", "remote", "-v"); cmd != nil {
if output, err := cmd.CombinedOutput(); err == nil {
status["remotes"] = strings.TrimSpace(string(output))
}
}
if cmd := exec.Command("git", "branch", "-vv"); cmd != nil {
if output, err := cmd.CombinedOutput(); err == nil {
status["branches"] = strings.TrimSpace(string(output))
}
}
return status
}