This repository was archived by the owner on Feb 25, 2023. It is now read-only.
forked from fastgh/fgit
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.go
More file actions
139 lines (115 loc) · 2.67 KB
/
Copy pathmain.go
File metadata and controls
139 lines (115 loc) · 2.67 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
package main
import (
"errors"
"fmt"
"log"
"os"
"os/signal"
"runtime/debug"
"strings"
"syscall"
"github.com/gookit/color"
)
func oldGit(cmdline CommandLine, fgitHelpFirst bool, errorMode bool) {
if cmdline == nil {
fgitHelpFirst = false
}
if fgitHelpFirst {
PrintHelp(errorMode)
fmt.Println()
if cmdline == nil {
ExecGit(true, "", os.Args[1:])
} else {
ExecGit(true, "", cmdline.Args)
}
} else {
if cmdline == nil {
ExecGit(true, "", os.Args[1:])
} else {
ExecGit(true, "", cmdline.Args)
}
fmt.Println()
PrintHelp(errorMode)
}
}
func main() {
//TODO: recover
cmdline := ParseCommandLine()
if Debug {
log.Printf("[fgit] 命令行1: %s\n", JSONPretty(cmdline))
}
if cmdline.PerhapsNeedInstrument == false {
if Debug {
log.Println("[fgit] 无需设置代理")
}
oldGit(cmdline, false, false)
return
}
defer func() {
if p := recover(); p != nil {
if Debug {
color.Red.Printf("[fgit] 程序崩溃, 错误原因: %s\n堆栈:\n%s", p, string(debug.Stack()))
} else {
color.Red.Printf("[fgit] 程序崩溃, 错误原因: %s\n", p)
}
ResetGithubRemote()
return
}
}()
gitURL := ResolveGitURL(cmdline.GitURLText)
if Debug {
log.Printf("[fgit] GitURLText: %s, gitURL=%s\n", cmdline.GitURLText, JSONMarshal(gitURL))
}
if strings.ToLower(gitURL.Host) != "github.com" {
panic(errors.New("fgit不支持非github.com库"))
}
if strings.ToLower(gitURL.Scheme) != "https" {
panic(fmt.Errorf("fgit不支持%s,仅支持https", gitURL.Scheme))
}
if cmdline.UseProxy == false && len(gitURL.User.Username()) > 0 {
cmdline.UseProxy = true
if Debug {
log.Println("[fgit] 发现URL中嵌入有用户名,因此改为使用代理服务器")
}
}
cfg := LoadConfig()
if Debug {
log.Printf("[fgit] 配置:\n%s\n", JSONPretty(cfg))
}
if Debug {
log.Printf("[fgit] 命令行2: \n%s\n", JSONPretty(cmdline))
}
HookInterruptSignal()
GithubInstrument(cmdline, cfg)
}
// HookInterruptSignal ...
func HookInterruptSignal() {
signalChan := make(chan os.Signal, 1)
signal.Notify(signalChan,
os.Interrupt,
syscall.SIGHUP,
syscall.SIGINT,
syscall.SIGTERM,
syscall.SIGQUIT)
go func() {
defer func() {
if p := recover(); p != nil {
if Debug {
color.Red.Printf("[fgit] 程序崩溃, 错误原因: %s\n堆栈:\n%s", p, string(debug.Stack()))
} else {
color.Red.Printf("[fgit] 程序崩溃, 错误原因: %s\n", p)
}
}
}()
for range signalChan {
if Debug {
log.Println("[fgit] 收到中断信号,退出前恢复原先的GITHUB设置...")
}
ResetGithubRemote()
if Debug {
log.Println("[fgit] 完成恢复原先的GITHUB设置")
}
os.Exit(0)
}
}()
}