forked from jeessy2/ddns-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
389 lines (346 loc) · 9.18 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
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
package main
import (
"embed"
"errors"
"flag"
"fmt"
"log"
"net"
"net/http"
"os"
"os/exec"
"path/filepath"
"strconv"
"strings"
"time"
"github.com/jeessy2/ddns-go/v6/config"
"github.com/jeessy2/ddns-go/v6/dns"
"github.com/jeessy2/ddns-go/v6/util"
"github.com/jeessy2/ddns-go/v6/util/update"
"github.com/jeessy2/ddns-go/v6/web"
"github.com/kardianos/service"
)
// ddns-go 版本
// ddns-go version
var versionFlag = flag.Bool("v", false, "ddns-go version")
// 更新 ddns-go
var updateFlag = flag.Bool("u", false, "Upgrade ddns-go to the latest version")
// 监听地址
var listen = flag.String("l", ":9876", "Listen address")
// 更新频率(秒)
var every = flag.Int("f", 300, "Sync frequency(seconds)")
// 缓存次数
var ipCacheTimes = flag.Int("cacheTimes", 5, "Interval N times compared with service providers")
// 服务管理
var serviceType = flag.String("s", "", "Service management (install|uninstall|restart)")
// 配置文件路径
var configFilePath = flag.String("c", util.GetConfigFilePathDefault(), "config file path")
// Web 服务
var noWebService = flag.Bool("noweb", false, "No web service")
// 跳过验证证书
var skipVerify = flag.Bool("skipVerify", false, "Skip certificate verification")
// 自定义 DNS 服务器
var customDNSServer = flag.String("dns", "", "Custom DNS server, example: 8.8.8.8")
//go:embed static
var staticEmbeddedFiles embed.FS
//go:embed favicon.ico
var faviconEmbeddedFile embed.FS
// version
var version = "DEV"
func main() {
flag.Parse()
if *versionFlag {
fmt.Println(version)
return
}
if *updateFlag {
update.Self(version)
return
}
if _, err := net.ResolveTCPAddr("tcp", *listen); err != nil {
log.Fatalf("Parse listen address failed! Exception: %s", err)
}
os.Setenv(web.VersionEnv, version)
if *configFilePath != "" {
absPath, _ := filepath.Abs(*configFilePath)
os.Setenv(util.ConfigFilePathENV, absPath)
}
if *skipVerify {
util.SetInsecureSkipVerify()
}
if *customDNSServer != "" {
if !strings.Contains(*customDNSServer, ":") {
util.NewDialerResolver(*customDNSServer + ":53")
} else {
util.NewDialerResolver(*customDNSServer)
}
}
os.Setenv(util.IPCacheTimesENV, strconv.Itoa(*ipCacheTimes))
switch *serviceType {
case "install":
installService()
case "uninstall":
uninstallService()
case "restart":
restartService()
default:
if util.IsRunInDocker() {
run()
} else {
s := getService()
status, _ := s.Status()
if status != service.StatusUnknown {
// 以服务方式运行
s.Run()
} else {
// 非服务方式运行
switch s.Platform() {
case "windows-service":
util.Log("可使用 .\\ddns-go.exe -s install 安装服务运行")
default:
util.Log("可使用 sudo ./ddns-go -s install 安装服务运行")
}
run()
}
}
}
}
func run() {
// 兼容v5.0.0之前的配置文件
conf, _ := config.GetConfigCached()
conf.CompatibleConfig()
// 初始化语言
util.InitLogLang(conf.Lang)
if !*noWebService {
go func() {
// 启动web服务
err := runWebServer()
if err != nil {
log.Println(err)
time.Sleep(time.Minute)
os.Exit(1)
}
}()
}
// 定时运行
dns.RunTimer(time.Duration(*every) * time.Second)
}
func staticFsFunc(writer http.ResponseWriter, request *http.Request) {
http.FileServer(http.FS(staticEmbeddedFiles)).ServeHTTP(writer, request)
}
func faviconFsFunc(writer http.ResponseWriter, request *http.Request) {
http.FileServer(http.FS(faviconEmbeddedFile)).ServeHTTP(writer, request)
}
func runWebServer() error {
// 启动静态文件服务
http.HandleFunc("/static/", web.BasicAuth(staticFsFunc))
http.HandleFunc("/favicon.ico", web.BasicAuth(faviconFsFunc))
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("/webhookTest", web.BasicAuth(web.WebhookTest))
util.Log("监听 %s", *listen)
l, err := net.Listen("tcp", *listen)
if err != nil {
return errors.New(util.LogStr("监听端口发生异常, 请检查端口是否被占用! %s", err))
}
// 没有配置, 自动打开浏览器
autoOpenExplorer()
return http.Serve(l, nil)
}
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() {
run()
}
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)
var depends []string
// 确保服务等待网络就绪后再启动
switch service.ChosenSystem().String() {
case "unix-systemv":
options["SysvScript"] = sysvScript
case "windows-service":
// 将 Windows 服务的启动类型设为自动(延迟启动)
options["DelayedAutoStart"] = true
default:
// 向 Systemd 添加网络依赖
depends = append(depends, "Requires=network.target",
"After=network-online.target")
}
svcConfig := &service.Config{
Name: "ddns-go",
DisplayName: "ddns-go",
Description: "Simple and easy to use DDNS. Automatically update domain name resolution to public IP (Support Aliyun, Tencent Cloud, Dnspod, Cloudflare, Callback, Huawei Cloud, Baidu Cloud, Porkbun, GoDaddy...)",
Arguments: []string{"-l", *listen, "-f", strconv.Itoa(*every), "-cacheTimes", strconv.Itoa(*ipCacheTimes), "-c", *configFilePath},
Dependencies: depends,
Option: options,
}
if *noWebService {
svcConfig.Arguments = append(svcConfig.Arguments, "-noweb")
}
if *skipVerify {
svcConfig.Arguments = append(svcConfig.Arguments, "-skipVerify")
}
if *customDNSServer != "" {
svcConfig.Arguments = append(svcConfig.Arguments, "-dns", *customDNSServer)
}
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 {
util.Log("ddns-go 服务卸载成功")
} else {
util.Log("ddns-go 服务卸载失败, 异常信息: %s", err)
}
}
// 安装服务
func installService() {
s := getService()
status, err := s.Status()
if err != nil && status == service.StatusUnknown {
// 服务未知,创建服务
if err = s.Install(); err == nil {
s.Start()
util.Log("安装 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
}
util.Log("安装 ddns-go 服务失败, 异常信息: %s", err)
}
if status != service.StatusUnknown {
util.Log("ddns-go 服务已安装, 无需再次安装")
}
}
// 重启服务
func restartService() {
s := getService()
status, err := s.Status()
if err == nil {
if status == service.StatusRunning {
if err = s.Restart(); err == nil {
util.Log("重启 ddns-go 服务成功")
}
} else if status == service.StatusStopped {
if err = s.Start(); err == nil {
util.Log("启动 ddns-go 服务成功")
}
}
} else {
util.Log("ddns-go 服务未安装, 请先安装服务")
}
}
// 打开浏览器
func autoOpenExplorer() {
_, err := config.GetConfigCached()
// 未找到配置文件
if err != nil {
if util.IsRunInDocker() {
// docker中运行, 提示
util.Log("Docker中运行, 请在浏览器中打开 http://docker主机IP:9876 进行配置")
} 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
}
`