|
@@ -4,6 +4,7 @@ import (
|
|
|
"be-vpn/internal/dto"
|
|
|
"bytes"
|
|
|
"encoding/json"
|
|
|
+ "flag"
|
|
|
"github.com/tidwall/gjson"
|
|
|
"io"
|
|
|
"log"
|
|
@@ -13,6 +14,9 @@ import (
|
|
|
)
|
|
|
|
|
|
func main() {
|
|
|
+ vip := flag.Bool("vip", false, "vip if or not")
|
|
|
+ flag.Parse()
|
|
|
+
|
|
|
file, err := os.Open("/home/ubuntu/client.ovpn")
|
|
|
if err != nil {
|
|
|
log.Fatalf("can not open file, err: %+v", err)
|
|
@@ -35,7 +39,7 @@ func main() {
|
|
|
city := gjson.Get(string(bs), "city").String()
|
|
|
log.Printf("ipinfo: %s", string(bs))
|
|
|
|
|
|
- request := dto.RegisterRequest{Ip: ip, CountryCode: countryCode, CountryName: city, Secret: buf.String(), City: city}
|
|
|
+ request := dto.RegisterRequest{Ip: ip, CountryCode: countryCode, CountryName: city, Secret: buf.String(), City: city, Vip: *vip}
|
|
|
body, err := json.Marshal(request)
|
|
|
if err != nil {
|
|
|
log.Printf("err: %+v", err)
|