forked from jeessy2/ddns-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
executable file
·293 lines (263 loc) · 6.88 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
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
package main
import (
"ddns-go/config"
"ddns-go/dns"
"ddns-go/util"
"ddns-go/web"
"embed"
"flag"
"fmt"
"log"
"net"
"net/http"
"os"
"os/exec"
"path/filepath"
"strconv"
"time"
"github.com/kardianos/service"
)
// 监听地址
var listen = flag.String("l", ":9876", "监听地址")
// 更新频率(秒)
var every = flag.Int("f", 300, "同步间隔时间(秒)")
// 服务管理
var serviceType = flag.String("s", "", "服务管理, 支持install, uninstall")
// 配置文件路径
var configFilePath = flag.String("c", util.GetConfigFilePathDefault(), "自定义配置文件路径")
// 生成混淆字符串
var obscure = flag.String("o", "", "生成混淆字符串,目前仅支持为 DNS.ID 与 DNS.Secret 字段设置混淆后的字符串")
// 还原已混淆的字符串
var reveal = flag.String("r", "", "将混淆字符串还原")
//go:embed static
var staticEmbededFiles embed.FS
//go:embed favicon.ico
var faviconEmbededFile embed.FS
// version
var version = "DEV"
func main() {
flag.Parse()
if *obscure != "" {
fmt.Println(util.MustObscure(*obscure))
return
}
if *reveal != "" {
fmt.Println(util.MustReveal(*reveal))
return
}
if _, err := net.ResolveTCPAddr("tcp", *listen); err != nil {
log.Fatalf("解析监听地址异常,%s", err)
}
os.Setenv(web.VersionEnv, version)
if *configFilePath != "" {
absPath, _ := filepath.Abs(*configFilePath)
os.Setenv(util.ConfigFilePathENV, absPath)
}
switch *serviceType {
case "install":
installService()
case "uninstall":
uninstallService()
default:
if util.IsRunInDocker() {
run(10 * time.Second)
} else {
s := getService()
status, _ := s.Status()
if status != service.StatusUnknown {
// 以服务方式运行
s.Run()
} else {
// 非服务方式运行
switch s.Platform() {
case "windows-service":
log.Println("可使用 .\\ddns-go.exe -s install 安装服务运行")
default:
log.Println("可使用 sudo ./ddns-go -s install 安装服务运行")
}
run(20 * time.Second)
}
}
}
}
func run(firstDelay time.Duration) {
// 启动静态文件服务
http.Handle("/static/", http.FileServer(http.FS(staticEmbededFiles)))
http.Handle("/favicon.ico", http.FileServer(http.FS(faviconEmbededFile)))
http.HandleFunc("/", web.BasicAuth(web.Writing))
http.HandleFunc("/save", web.BasicAuth(web.Save))
http.HandleFunc("/logs", web.BasicAuth(web.Logs))
http.HandleFunc("/clearLog", web.BasicAuth(web.ClearLog))
http.HandleFunc("/ipv4NetInterface", web.BasicAuth(web.Ipv4NetInterfaces))
http.HandleFunc("/ipv6NetInterface", web.BasicAuth(web.Ipv6NetInterfaces))
http.HandleFunc("/webhookTest", web.BasicAuth(web.WebhookTest))
log.Println("监听", *listen, "...")
// 没有配置, 自动打开浏览器
autoOpenExplorer()
// 定时运行
go dns.RunTimer(firstDelay, time.Duration(*every)*time.Second)
err := http.ListenAndServe(*listen, nil)
if err != nil {
log.Println("启动端口发生异常, 请检查端口是否被占用", err)
time.Sleep(time.Minute)
os.Exit(1)
}
}
type program struct{}
func (p *program) Start(s service.Service) error {
// Start should not block. Do the actual work async.
go p.run()
return nil
}
func (p *program) run() {
// 服务运行,延时20秒运行,等待网络
run(20 * time.Second)
}
func (p *program) Stop(s service.Service) error {
// Stop should not block. Return with a few seconds.
return nil
}
func getService() service.Service {
options := make(service.KeyValue)
if service.ChosenSystem().String() == "unix-systemv" {
options["SysvScript"] = sysvScript
}
svcConfig := &service.Config{
Name: "ddns-go",
DisplayName: "ddns-go",
Description: "简单好用的DDNS。自动更新域名解析到公网IP(支持阿里云、腾讯云dnspod、Cloudflare、华为云)",
Arguments: []string{"-l", *listen, "-f", strconv.Itoa(*every), "-c", *configFilePath},
Option: options,
}
prg := &program{}
s, err := service.New(prg, svcConfig)
if err != nil {
log.Fatalln(err)
}
return s
}
// 卸载服务
func uninstallService() {
s := getService()
s.Stop()
if service.ChosenSystem().String() == "unix-systemv" {
if _, err := exec.Command("/etc/init.d/ddns-go", "stop").Output(); err != nil {
log.Println(err)
}
}
if err := s.Uninstall(); err == nil {
log.Println("ddns-go 服务卸载成功!")
} else {
log.Printf("ddns-go 服务卸载失败, ERR: %s\n", err)
}
}
// 安装服务
func installService() {
s := getService()
status, err := s.Status()
if err != nil && status == service.StatusUnknown {
// 服务未知,创建服务
if err = s.Install(); err == nil {
s.Start()
log.Println("安装 ddns-go 服务成功! 请打开浏览器并进行配置。")
if service.ChosenSystem().String() == "unix-systemv" {
if _, err := exec.Command("/etc/init.d/ddns-go", "enable").Output(); err != nil {
log.Println(err)
}
if _, err := exec.Command("/etc/init.d/ddns-go", "start").Output(); err != nil {
log.Println(err)
}
}
return
}
log.Printf("安装 ddns-go 服务失败, ERR: %s\n", err)
}
if status != service.StatusUnknown {
log.Println("ddns-go 服务已安装, 无需再次安装")
}
}
// 打开浏览器
func autoOpenExplorer() {
_, err := config.GetConfigCache()
// 未找到配置文件
if err != nil {
if util.IsRunInDocker() {
// docker中运行, 提示
fmt.Println("Docker中运行, 请在浏览器中打开 http://docker主机IP:端口 进行配置")
} else {
// 主机运行, 打开浏览器
addr, err := net.ResolveTCPAddr("tcp", *listen)
if err != nil {
return
}
url := fmt.Sprintf("http://127.0.0.1:%d", addr.Port)
if addr.IP.IsGlobalUnicast() {
url = fmt.Sprintf("http://%s", addr.String())
}
go util.OpenExplorer(url)
}
}
}
const sysvScript = `#!/bin/sh /etc/rc.common
DESCRIPTION="{{.Description}}"
cmd="{{.Path}}{{range .Arguments}} {{.|cmd}}{{end}}"
name="ddns-go"
pid_file="/var/run/$name.pid"
stdout_log="/var/log/$name.log"
stderr_log="/var/log/$name.err"
START=99
get_pid() {
cat "$pid_file"
}
is_running() {
[ -f "$pid_file" ] && cat /proc/$(get_pid)/stat > /dev/null 2>&1
}
start() {
if is_running; then
echo "Already started"
else
echo "Starting $name"
{{if .WorkingDirectory}}cd '{{.WorkingDirectory}}'{{end}}
$cmd >> "$stdout_log" 2>> "$stderr_log" &
echo $! > "$pid_file"
if ! is_running; then
echo "Unable to start, see $stdout_log and $stderr_log"
exit 1
fi
fi
}
stop() {
if is_running; then
echo -n "Stopping $name.."
kill $(get_pid)
for i in $(seq 1 10)
do
if ! is_running; then
break
fi
echo -n "."
sleep 1
done
echo
if is_running; then
echo "Not stopped; may still be shutting down or shutdown may have failed"
exit 1
else
echo "Stopped"
if [ -f "$pid_file" ]; then
rm "$pid_file"
fi
fi
else
echo "Not running"
fi
}
restart() {
stop
if is_running; then
echo "Unable to stop, will not attempt to start"
exit 1
fi
start
}
`