This commit is contained in:
Leufolium 2024-07-28 18:34:43 +08:00
parent 6a71858448
commit 76db68e203
1 changed files with 35 additions and 33 deletions

View File

@ -25,7 +25,7 @@ func main() {
} }
ctx := context.Background() ctx := context.Background()
mids := []int64{ mids1 := []int64{
3, 3,
4, 4,
5, 5,
@ -343,6 +343,9 @@ func main() {
195763, 195763,
197811, 197811,
199188, 199188,
}
mids2 := []int64{
202826, 202826,
204372, 204372,
205940, 205940,
@ -641,16 +644,6 @@ func main() {
460716, 460716,
} }
accounts, err := client.GetAccountListByMids(ctx, mids)
if err != nil {
fmt.Printf("GetAccountListByMids fail, err :%v\n", err)
}
zones, err := client.GetZoneListByMids(ctx, mids)
if err != nil {
fmt.Printf("GetZoneListByMids fail, err :%v\n", err)
}
outfilePath := "/app/dataprep/outfile.txt" outfilePath := "/app/dataprep/outfile.txt"
outfile, err := os.OpenFile(outfilePath, os.O_WRONLY|os.O_CREATE, 0666) outfile, err := os.OpenFile(outfilePath, os.O_WRONLY|os.O_CREATE, 0666)
if err != nil { if err != nil {
@ -659,33 +652,42 @@ func main() {
defer outfile.Close() defer outfile.Close()
writer := bufio.NewWriter(outfile) writer := bufio.NewWriter(outfile)
zoneMp := make(map[int64]*dbstruct.Zone, 0) midss := [][]int64{mids1, mids2}
for _, zone := range zones { for _, mids := range midss {
zoneMp[zone.GetMid()] = zone accounts, err := client.GetAccountListByMids(ctx, mids)
} if err != nil {
fmt.Printf("GetAccountListByMids fail, err :%v\n", err)
}
for _, account := range accounts { zones, err := client.GetZoneListByMids(ctx, mids)
base64DecryptedBytes, err := base64.StdEncoding.DecodeString(*account.MobilePhone)
if err != nil { if err != nil {
fmt.Printf("DecodeString err :%v\n", err) fmt.Printf("GetZoneListByMids fail, err :%v\n", err)
} }
fmt.Printf("base64DecryptedBytes: %v\n", base64DecryptedBytes)
phone, err := cryptoService.DecryptByAES(base64DecryptedBytes) zoneMp := make(map[int64]*dbstruct.Zone, 0)
if err != nil { for _, zone := range zones {
fmt.Printf("DecryptByAES err :%v\n", err) zoneMp[zone.GetMid()] = zone
} }
fmt.Printf("phone: %v\n", phone)
phoneStr := string(phone) for _, account := range accounts {
mid := account.GetMid() base64DecryptedBytes, _ := base64.StdEncoding.DecodeString(*account.MobilePhone)
name := account.GetName() phone, err := cryptoService.DecryptByAES(base64DecryptedBytes)
userId := account.GetUserId() if err != nil {
count := int64(0) fmt.Printf("DecryptByAES err :%v\n", err)
zone, ok := zoneMp[mid] }
if ok { fmt.Printf("phone: %v\n", string(phone))
count = zone.GetZoneMomentCount() phoneStr := string(phone)
mid := account.GetMid()
name := account.GetName()
userId := account.GetUserId()
count := int64(0)
zone, ok := zoneMp[mid]
if ok {
count = zone.GetZoneMomentCount()
}
str := fmt.Sprintf("%v %v %v %v %v\n", mid, name, userId, phoneStr, count)
writer.WriteString(str)
} }
str := fmt.Sprintf("%v %v %v %v %v\n", mid, name, userId, phoneStr, count)
writer.WriteString(str)
} }
fmt.Println("End importing...") fmt.Println("End importing...")