improve: 使用标准项目结构
This commit is contained in:
40
cmd/bitsrun/bitsrun.go
Normal file
40
cmd/bitsrun/bitsrun.go
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
controllers2 "github.com/Mmx233/BitSrunLoginGo/internal/controllers"
|
||||||
|
global2 "github.com/Mmx233/BitSrunLoginGo/internal/global"
|
||||||
|
"github.com/Mmx233/BitSrunLoginGo/tools"
|
||||||
|
log "github.com/sirupsen/logrus"
|
||||||
|
)
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
if global2.Flags.RunningDaemon {
|
||||||
|
//后台挂起模式中
|
||||||
|
controllers2.Guardian()
|
||||||
|
} else if global2.Config.Settings.Guardian.Enable {
|
||||||
|
//进入守护模式流程
|
||||||
|
controllers2.EnterGuardian()
|
||||||
|
} else {
|
||||||
|
//登录流程
|
||||||
|
var err error
|
||||||
|
if global2.Config.Settings.Basic.Interfaces == "" { //单网卡
|
||||||
|
if err = controllers2.Login(nil, false); err != nil {
|
||||||
|
log.Errorln("登录出错: ", err)
|
||||||
|
if !global2.Config.Settings.Log.DebugLevel {
|
||||||
|
fmt.Printf("开启调试日志(debug_level)获取详细信息")
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
} else { //多网卡
|
||||||
|
log.Infoln("多网卡模式")
|
||||||
|
interfaces, _ := tools.GetInterfaceAddr()
|
||||||
|
for _, eth := range interfaces {
|
||||||
|
log.Infoln("使用网卡: ", eth.Name)
|
||||||
|
if err = controllers2.Login(eth.Addr, false); err != nil {
|
||||||
|
log.Errorf("网卡 %s 登录出错: %v", eth.Name, err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,89 +0,0 @@
|
|||||||
package controllers
|
|
||||||
|
|
||||||
import (
|
|
||||||
"github.com/Mmx233/BitSrunLoginGo/dns"
|
|
||||||
"github.com/Mmx233/BitSrunLoginGo/global"
|
|
||||||
"github.com/Mmx233/BitSrunLoginGo/util"
|
|
||||||
BitSrun "github.com/Mmx233/BitSrunLoginGo/v1"
|
|
||||||
log "github.com/sirupsen/logrus"
|
|
||||||
"net"
|
|
||||||
"net/http"
|
|
||||||
)
|
|
||||||
|
|
||||||
// Login 登录逻辑
|
|
||||||
func Login(localAddr net.Addr, debugOutput bool) error {
|
|
||||||
// 登录状态检查
|
|
||||||
|
|
||||||
httpClient := util.HttpPackSelect(localAddr).Client
|
|
||||||
conf := &BitSrun.Conf{
|
|
||||||
Https: global.Config.Settings.Basic.Https,
|
|
||||||
LoginInfo: BitSrun.LoginInfo{
|
|
||||||
Form: &global.Config.Form,
|
|
||||||
Meta: &global.Config.Meta,
|
|
||||||
},
|
|
||||||
Client: httpClient,
|
|
||||||
}
|
|
||||||
|
|
||||||
var output func(args ...interface{})
|
|
||||||
if debugOutput {
|
|
||||||
output = log.Debugln
|
|
||||||
} else {
|
|
||||||
output = log.Infoln
|
|
||||||
}
|
|
||||||
|
|
||||||
output("正在获取登录状态")
|
|
||||||
|
|
||||||
online, ip, e := BitSrun.LoginStatus(conf)
|
|
||||||
if e != nil {
|
|
||||||
return e
|
|
||||||
}
|
|
||||||
|
|
||||||
if localAddr != nil && global.Config.Settings.Basic.UseDhcpIP {
|
|
||||||
ip = localAddr.(*net.TCPAddr).IP.String()
|
|
||||||
} else if global.Flags.ClientIP != "" {
|
|
||||||
ip = global.Flags.ClientIP
|
|
||||||
}
|
|
||||||
|
|
||||||
log.Debugln("认证客户端 ip: ", ip)
|
|
||||||
|
|
||||||
// 登录执行
|
|
||||||
|
|
||||||
if online {
|
|
||||||
output("已登录~")
|
|
||||||
|
|
||||||
if global.Config.Settings.DDNS.Enable && global.Config.Settings.Guardian.Enable && ipLast != ip {
|
|
||||||
if ddns(ip, httpClient) == nil {
|
|
||||||
ipLast = ip
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
} else {
|
|
||||||
log.Infoln("检测到用户未登录,开始尝试登录...")
|
|
||||||
|
|
||||||
if e = BitSrun.DoLogin(ip, conf); e != nil {
|
|
||||||
return e
|
|
||||||
}
|
|
||||||
|
|
||||||
log.Infoln("登录成功~")
|
|
||||||
|
|
||||||
if global.Config.Settings.DDNS.Enable {
|
|
||||||
_ = ddns(ip, httpClient)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
var ipLast string
|
|
||||||
|
|
||||||
func ddns(ip string, httpClient *http.Client) error {
|
|
||||||
return dns.Run(&dns.Config{
|
|
||||||
Provider: global.Config.Settings.DDNS.Provider,
|
|
||||||
IP: ip,
|
|
||||||
Domain: global.Config.Settings.DDNS.Domain,
|
|
||||||
TTL: global.Config.Settings.DDNS.TTL,
|
|
||||||
Conf: global.Config.Settings.DDNS.Config,
|
|
||||||
Http: httpClient,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
@@ -2,7 +2,7 @@ package controllers
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/Mmx233/BitSrunLoginGo/global"
|
"github.com/Mmx233/BitSrunLoginGo/internal/global"
|
||||||
"github.com/Mmx233/tool"
|
"github.com/Mmx233/tool"
|
||||||
"github.com/howeyc/fsnotify"
|
"github.com/howeyc/fsnotify"
|
||||||
"os"
|
"os"
|
||||||
@@ -1,12 +1,12 @@
|
|||||||
package controllers
|
package controllers
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"github.com/Mmx233/BitSrunLoginGo/internal/global"
|
||||||
"os"
|
"os"
|
||||||
"os/exec"
|
"os/exec"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/Mmx233/BitSrunLoginGo/global"
|
"github.com/Mmx233/BitSrunLoginGo/tools"
|
||||||
"github.com/Mmx233/BitSrunLoginGo/util"
|
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -34,7 +34,7 @@ func Guardian() {
|
|||||||
log.Errorln("登录出错: ", e)
|
log.Errorln("登录出错: ", e)
|
||||||
}
|
}
|
||||||
} else { //多网卡
|
} else { //多网卡
|
||||||
interfaces, e := util.GetInterfaceAddr()
|
interfaces, e := tools.GetInterfaceAddr()
|
||||||
if e == nil {
|
if e == nil {
|
||||||
for _, eth := range interfaces {
|
for _, eth := range interfaces {
|
||||||
log.Debugf("使用 %s 网口登录 ", eth.Name)
|
log.Debugf("使用 %s 网口登录 ", eth.Name)
|
||||||
89
internal/controllers/login.go
Normal file
89
internal/controllers/login.go
Normal file
@@ -0,0 +1,89 @@
|
|||||||
|
package controllers
|
||||||
|
|
||||||
|
import (
|
||||||
|
global2 "github.com/Mmx233/BitSrunLoginGo/internal/global"
|
||||||
|
dns2 "github.com/Mmx233/BitSrunLoginGo/internal/pkg/dns"
|
||||||
|
"github.com/Mmx233/BitSrunLoginGo/pkg/srun"
|
||||||
|
"github.com/Mmx233/BitSrunLoginGo/tools"
|
||||||
|
log "github.com/sirupsen/logrus"
|
||||||
|
"net"
|
||||||
|
"net/http"
|
||||||
|
)
|
||||||
|
|
||||||
|
// Login 登录逻辑
|
||||||
|
func Login(localAddr net.Addr, debugOutput bool) error {
|
||||||
|
// 登录状态检查
|
||||||
|
|
||||||
|
httpClient := tools.HttpPackSelect(localAddr).Client
|
||||||
|
conf := &srun.Conf{
|
||||||
|
Https: global2.Config.Settings.Basic.Https,
|
||||||
|
LoginInfo: srun.LoginInfo{
|
||||||
|
Form: &global2.Config.Form,
|
||||||
|
Meta: &global2.Config.Meta,
|
||||||
|
},
|
||||||
|
Client: httpClient,
|
||||||
|
}
|
||||||
|
|
||||||
|
var output func(args ...interface{})
|
||||||
|
if debugOutput {
|
||||||
|
output = log.Debugln
|
||||||
|
} else {
|
||||||
|
output = log.Infoln
|
||||||
|
}
|
||||||
|
|
||||||
|
output("正在获取登录状态")
|
||||||
|
|
||||||
|
online, ip, e := srun.LoginStatus(conf)
|
||||||
|
if e != nil {
|
||||||
|
return e
|
||||||
|
}
|
||||||
|
|
||||||
|
if localAddr != nil && global2.Config.Settings.Basic.UseDhcpIP {
|
||||||
|
ip = localAddr.(*net.TCPAddr).IP.String()
|
||||||
|
} else if global2.Flags.ClientIP != "" {
|
||||||
|
ip = global2.Flags.ClientIP
|
||||||
|
}
|
||||||
|
|
||||||
|
log.Debugln("认证客户端 ip: ", ip)
|
||||||
|
|
||||||
|
// 登录执行
|
||||||
|
|
||||||
|
if online {
|
||||||
|
output("已登录~")
|
||||||
|
|
||||||
|
if global2.Config.Settings.DDNS.Enable && global2.Config.Settings.Guardian.Enable && ipLast != ip {
|
||||||
|
if ddns(ip, httpClient) == nil {
|
||||||
|
ipLast = ip
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
} else {
|
||||||
|
log.Infoln("检测到用户未登录,开始尝试登录...")
|
||||||
|
|
||||||
|
if e = srun.DoLogin(ip, conf); e != nil {
|
||||||
|
return e
|
||||||
|
}
|
||||||
|
|
||||||
|
log.Infoln("登录成功~")
|
||||||
|
|
||||||
|
if global2.Config.Settings.DDNS.Enable {
|
||||||
|
_ = ddns(ip, httpClient)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
var ipLast string
|
||||||
|
|
||||||
|
func ddns(ip string, httpClient *http.Client) error {
|
||||||
|
return dns2.Run(&dns2.Config{
|
||||||
|
Provider: global2.Config.Settings.DDNS.Provider,
|
||||||
|
IP: ip,
|
||||||
|
Domain: global2.Config.Settings.DDNS.Domain,
|
||||||
|
TTL: global2.Config.Settings.DDNS.TTL,
|
||||||
|
Conf: global2.Config.Settings.DDNS.Config,
|
||||||
|
Http: httpClient,
|
||||||
|
})
|
||||||
|
}
|
||||||
@@ -1,8 +1,8 @@
|
|||||||
package global
|
package global
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/Mmx233/BitSrunLoginGo/models"
|
"github.com/Mmx233/BitSrunLoginGo/internal/global/models"
|
||||||
"github.com/Mmx233/BitSrunLoginGo/v1"
|
"github.com/Mmx233/BitSrunLoginGo/pkg/srun"
|
||||||
"github.com/Mmx233/tool"
|
"github.com/Mmx233/tool"
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
"github.com/spf13/viper"
|
"github.com/spf13/viper"
|
||||||
@@ -10,36 +10,36 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
var Config srunModels.Config
|
var Config models.Config
|
||||||
|
|
||||||
var Timeout time.Duration
|
var Timeout time.Duration
|
||||||
|
|
||||||
func readConfig() {
|
func readConfig() {
|
||||||
//配置文件默认值
|
//配置文件默认值
|
||||||
viper.SetDefault("form", BitSrun.LoginForm{
|
viper.SetDefault("form", srun.LoginForm{
|
||||||
Domain: "www.msftconnecttest.com",
|
Domain: "www.msftconnecttest.com",
|
||||||
UserType: "cmcc",
|
UserType: "cmcc",
|
||||||
})
|
})
|
||||||
viper.SetDefault("meta", BitSrun.LoginMeta{
|
viper.SetDefault("meta", srun.LoginMeta{
|
||||||
N: "200",
|
N: "200",
|
||||||
Type: "1",
|
Type: "1",
|
||||||
Acid: "5",
|
Acid: "5",
|
||||||
Enc: "srun_bx1",
|
Enc: "srun_bx1",
|
||||||
})
|
})
|
||||||
viper.SetDefault("settings", srunModels.Settings{
|
viper.SetDefault("settings", models.Settings{
|
||||||
Basic: srunModels.Basic{
|
Basic: models.Basic{
|
||||||
Timeout: 5,
|
Timeout: 5,
|
||||||
},
|
},
|
||||||
Daemon: srunModels.Daemon{
|
Daemon: models.Daemon{
|
||||||
Path: ".BitSrun",
|
Path: ".BitSrun",
|
||||||
},
|
},
|
||||||
Guardian: srunModels.Guardian{
|
Guardian: models.Guardian{
|
||||||
Duration: 300,
|
Duration: 300,
|
||||||
},
|
},
|
||||||
Log: srunModels.Log{
|
Log: models.Log{
|
||||||
FilePath: "./",
|
FilePath: "./",
|
||||||
},
|
},
|
||||||
DDNS: srunModels.DDNS{
|
DDNS: models.DDNS{
|
||||||
Enable: false,
|
Enable: false,
|
||||||
TTL: 600,
|
TTL: 600,
|
||||||
Domain: "www.example.com",
|
Domain: "www.example.com",
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
package srunModels
|
package models
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/Mmx233/BitSrunLoginGo/v1"
|
"github.com/Mmx233/BitSrunLoginGo/pkg/srun"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Daemon struct {
|
type Daemon struct {
|
||||||
@@ -46,7 +46,7 @@ type Settings struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type Config struct {
|
type Config struct {
|
||||||
Form BitSrun.LoginForm `json:"form" yaml:"form" mapstructure:"form"`
|
Form srun.LoginForm `json:"form" yaml:"form" mapstructure:"form"`
|
||||||
Meta BitSrun.LoginMeta `json:"meta" yaml:"meta" mapstructure:"meta"`
|
Meta srun.LoginMeta `json:"meta" yaml:"meta" mapstructure:"meta"`
|
||||||
Settings Settings `json:"settings" yaml:"settings" mapstructure:"settings"`
|
Settings Settings `json:"settings" yaml:"settings" mapstructure:"settings"`
|
||||||
}
|
}
|
||||||
@@ -7,7 +7,7 @@ import (
|
|||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
dnsUtil "github.com/Mmx233/BitSrunLoginGo/dns/util"
|
dnsUtil2 "github.com/Mmx233/BitSrunLoginGo/internal/pkg/dns/util"
|
||||||
"github.com/Mmx233/tool"
|
"github.com/Mmx233/tool"
|
||||||
"math/rand"
|
"math/rand"
|
||||||
"net/http"
|
"net/http"
|
||||||
@@ -28,7 +28,7 @@ func New(ttl uint, conf map[string]interface{}, Http *http.Client) (*DnsProvider
|
|||||||
TTL: ttl,
|
TTL: ttl,
|
||||||
Http: tool.NewHttpTool(Http),
|
Http: tool.NewHttpTool(Http),
|
||||||
}
|
}
|
||||||
e := dnsUtil.DecodeConfig(conf, &p)
|
e := dnsUtil2.DecodeConfig(conf, &p)
|
||||||
if e != nil {
|
if e != nil {
|
||||||
return nil, e
|
return nil, e
|
||||||
}
|
}
|
||||||
@@ -161,7 +161,7 @@ func (a DnsProvider) NewRecord(subDomain, rootDomain, ip string) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (a DnsProvider) SetDomainRecord(domain, ip string) error {
|
func (a DnsProvider) SetDomainRecord(domain, ip string) error {
|
||||||
subDomain, rootDomain, e := dnsUtil.DecodeDomain(domain)
|
subDomain, rootDomain, e := dnsUtil2.DecodeDomain(domain)
|
||||||
if e != nil {
|
if e != nil {
|
||||||
return e
|
return e
|
||||||
}
|
}
|
||||||
@@ -3,7 +3,7 @@ package cloudflare
|
|||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"errors"
|
"errors"
|
||||||
dnsUtil "github.com/Mmx233/BitSrunLoginGo/dns/util"
|
"github.com/Mmx233/BitSrunLoginGo/internal/pkg/dns/util"
|
||||||
"github.com/cloudflare/cloudflare-go"
|
"github.com/cloudflare/cloudflare-go"
|
||||||
"net/http"
|
"net/http"
|
||||||
)
|
)
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
package dnspod
|
package dnspod
|
||||||
|
|
||||||
import (
|
import (
|
||||||
dnsUtil "github.com/Mmx233/BitSrunLoginGo/dns/util"
|
dnsUtil2 "github.com/Mmx233/BitSrunLoginGo/internal/pkg/dns/util"
|
||||||
"github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common"
|
"github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common"
|
||||||
"github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common/profile"
|
"github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common/profile"
|
||||||
"github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common/regions"
|
"github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common/regions"
|
||||||
@@ -19,7 +19,7 @@ type DnsProvider struct {
|
|||||||
|
|
||||||
func New(ttl uint64, conf map[string]interface{}, Http http.RoundTripper) (*DnsProvider, error) {
|
func New(ttl uint64, conf map[string]interface{}, Http http.RoundTripper) (*DnsProvider, error) {
|
||||||
var p = DnsProvider{TTL: ttl}
|
var p = DnsProvider{TTL: ttl}
|
||||||
e := dnsUtil.DecodeConfig(conf, &p)
|
e := dnsUtil2.DecodeConfig(conf, &p)
|
||||||
if e != nil {
|
if e != nil {
|
||||||
return nil, e
|
return nil, e
|
||||||
}
|
}
|
||||||
@@ -29,7 +29,7 @@ func New(ttl uint64, conf map[string]interface{}, Http http.RoundTripper) (*DnsP
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (a DnsProvider) SetDomainRecord(domain, ip string) error {
|
func (a DnsProvider) SetDomainRecord(domain, ip string) error {
|
||||||
subDomain, rootDomain, e := dnsUtil.DecodeDomain(domain)
|
subDomain, rootDomain, e := dnsUtil2.DecodeDomain(domain)
|
||||||
if e != nil {
|
if e != nil {
|
||||||
return e
|
return e
|
||||||
}
|
}
|
||||||
@@ -3,9 +3,9 @@ package dns
|
|||||||
import (
|
import (
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/Mmx233/BitSrunLoginGo/dns/aliyun"
|
"github.com/Mmx233/BitSrunLoginGo/internal/pkg/dns/aliyun"
|
||||||
"github.com/Mmx233/BitSrunLoginGo/dns/cloudflare"
|
"github.com/Mmx233/BitSrunLoginGo/internal/pkg/dns/cloudflare"
|
||||||
"github.com/Mmx233/BitSrunLoginGo/dns/dnspod"
|
"github.com/Mmx233/BitSrunLoginGo/internal/pkg/dns/dnspod"
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
)
|
)
|
||||||
|
|
||||||
40
main.go
40
main.go
@@ -1,40 +0,0 @@
|
|||||||
package main
|
|
||||||
|
|
||||||
import (
|
|
||||||
"fmt"
|
|
||||||
"github.com/Mmx233/BitSrunLoginGo/controllers"
|
|
||||||
"github.com/Mmx233/BitSrunLoginGo/global"
|
|
||||||
"github.com/Mmx233/BitSrunLoginGo/util"
|
|
||||||
log "github.com/sirupsen/logrus"
|
|
||||||
)
|
|
||||||
|
|
||||||
func main() {
|
|
||||||
if global.Flags.RunningDaemon {
|
|
||||||
//后台挂起模式中
|
|
||||||
controllers.Guardian()
|
|
||||||
} else if global.Config.Settings.Guardian.Enable {
|
|
||||||
//进入守护模式流程
|
|
||||||
controllers.EnterGuardian()
|
|
||||||
} else {
|
|
||||||
//登录流程
|
|
||||||
var err error
|
|
||||||
if global.Config.Settings.Basic.Interfaces == "" { //单网卡
|
|
||||||
if err = controllers.Login(nil, false); err != nil {
|
|
||||||
log.Errorln("登录出错: ", err)
|
|
||||||
if !global.Config.Settings.Log.DebugLevel {
|
|
||||||
fmt.Printf("开启调试日志(debug_level)获取详细信息")
|
|
||||||
}
|
|
||||||
return
|
|
||||||
}
|
|
||||||
} else { //多网卡
|
|
||||||
log.Infoln("多网卡模式")
|
|
||||||
interfaces, _ := util.GetInterfaceAddr()
|
|
||||||
for _, eth := range interfaces {
|
|
||||||
log.Infoln("使用网卡: ", eth.Name)
|
|
||||||
if err = controllers.Login(eth.Addr, false); err != nil {
|
|
||||||
log.Errorf("网卡 %s 登录出错: %v", eth.Name, err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
package srunModels
|
|
||||||
|
|
||||||
import "net"
|
|
||||||
|
|
||||||
type Eth struct {
|
|
||||||
Name string
|
|
||||||
Addr net.Addr
|
|
||||||
}
|
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package BitSrun
|
package srun
|
||||||
|
|
||||||
import log "github.com/sirupsen/logrus"
|
import log "github.com/sirupsen/logrus"
|
||||||
|
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package BitSrun
|
package srun
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"math"
|
"math"
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package BitSrun
|
package srun
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"crypto/md5"
|
"crypto/md5"
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package BitSrun
|
package srun
|
||||||
|
|
||||||
import "errors"
|
import "errors"
|
||||||
|
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package BitSrun
|
package srun
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
@@ -1,7 +1,6 @@
|
|||||||
package BitSrun
|
package srun
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/Mmx233/BitSrunLoginGo/v1/srun"
|
|
||||||
"net/http"
|
"net/http"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -33,7 +32,7 @@ type Conf struct {
|
|||||||
Client *http.Client
|
Client *http.Client
|
||||||
Header http.Header
|
Header http.Header
|
||||||
|
|
||||||
api srun.Api
|
api Api
|
||||||
}
|
}
|
||||||
|
|
||||||
func (a *Conf) initApi() {
|
func (a *Conf) initApi() {
|
||||||
@@ -1,16 +1,20 @@
|
|||||||
package util
|
package tools
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/Mmx233/BitSrunLoginGo/global"
|
"github.com/Mmx233/BitSrunLoginGo/internal/global"
|
||||||
srunModels "github.com/Mmx233/BitSrunLoginGo/models"
|
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
"net"
|
"net"
|
||||||
"regexp"
|
"regexp"
|
||||||
"strings"
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
func GetInterfaceAddr() ([]srunModels.Eth, error) {
|
type Eth struct {
|
||||||
var result []srunModels.Eth
|
Name string
|
||||||
|
Addr net.Addr
|
||||||
|
}
|
||||||
|
|
||||||
|
func GetInterfaceAddr() ([]Eth, error) {
|
||||||
|
var result []Eth
|
||||||
|
|
||||||
interfaces, e := net.Interfaces()
|
interfaces, e := net.Interfaces()
|
||||||
if e != nil {
|
if e != nil {
|
||||||
@@ -35,7 +39,7 @@ func GetInterfaceAddr() ([]srunModels.Eth, error) {
|
|||||||
log.Warnln(eth.Name+" ip解析失败:", e)
|
log.Warnln(eth.Name+" ip解析失败:", e)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
result = append(result, srunModels.Eth{
|
result = append(result, Eth{
|
||||||
Name: eth.Name,
|
Name: eth.Name,
|
||||||
Addr: ip,
|
Addr: ip,
|
||||||
})
|
})
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
package util
|
package tools
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/Mmx233/BitSrunLoginGo/global"
|
"github.com/Mmx233/BitSrunLoginGo/internal/global"
|
||||||
"github.com/Mmx233/tool"
|
"github.com/Mmx233/tool"
|
||||||
"net"
|
"net"
|
||||||
"net/http"
|
"net/http"
|
||||||
Reference in New Issue
Block a user