forked from alliswell2day/v2ray-sspanel-v3-mod_Uim-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.go
77 lines (66 loc) · 1.78 KB
/
plugin.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
package v2ray_sspanel_v3_mod_Uim_plugin
import (
"fmt"
"github.com/rico93/v2ray-sspanel-v3-mod_Uim-plugin/client"
"github.com/rico93/v2ray-sspanel-v3-mod_Uim-plugin/config"
"github.com/rico93/v2ray-sspanel-v3-mod_Uim-plugin/webapi"
"google.golang.org/grpc/status"
"os"
"runtime"
"time"
"v2ray.com/core/common/errors"
)
func init() {
go func() {
err := run()
if err != nil {
fatal(err)
}
}()
}
func run() error {
err := config.CommandLine.Parse(os.Args[1:])
cfg, err := config.GetConfig()
if err != nil || *config.Test || cfg == nil {
return err
}
// wait v2ray
time.Sleep(3 * time.Second)
db := &webapi.Webapi{
WebToken: cfg.PanelKey,
WebBaseURl: cfg.PanelUrl,
}
go func() {
apiInbound := config.GetInboundConfigByTag(cfg.V2rayConfig.Api.Tag, cfg.V2rayConfig.InboundConfigs)
gRPCAddr := fmt.Sprintf("%s:%d", apiInbound.ListenOn.String(), apiInbound.PortRange.From)
gRPCConn, err := client.ConnectGRPC(gRPCAddr, 10*time.Second)
if err != nil {
if s, ok := status.FromError(err); ok {
err = errors.New(s.Message())
}
fatal(fmt.Sprintf("connect to gRPC server \"%s\" err: ", gRPCAddr), err)
}
newErrorf("Connected gRPC server \"%s\" ", gRPCAddr).AtWarning().WriteToLog()
p, err := NewPanel(gRPCConn, db, cfg)
if err != nil {
fatal("new panel error", err)
}
p.Start()
}()
// Explicitly triggering GC to remove garbage
runtime.GC()
return nil
}
func newErrorf(format string, a ...interface{}) *errors.Error {
return newError(fmt.Sprintf(format, a...))
}
func newError(values ...interface{}) *errors.Error {
values = append([]interface{}{"SSPanelPlugin: "}, values...)
return errors.New(values...)
}
func fatal(values ...interface{}) {
newError(values...).AtError().WriteToLog()
// Wait log
time.Sleep(1 * time.Second)
os.Exit(-2)
}