Compare commits

..

3 Commits

Author SHA1 Message Date
1bc08c90bd flash call 2025-12-03 19:45:24 +03:00
Vladimir V Maksimov
85cbc3e940 sms completed 2025-12-03 18:34:25 +03:00
d7bd28b759 in progress 2025-12-02 18:54:48 +03:00
7 changed files with 242 additions and 43 deletions

6
common.go Normal file
View File

@@ -0,0 +1,6 @@
package sigmasms
type Payload struct {
Sender string `json:"sender"`
Text string `json:"text"`
}

View File

@@ -1,46 +1,105 @@
package sigmasms package sigmasms
import ( import (
"bytes" "crypto/rand"
"encoding/json" "fmt"
"net/http" "log"
"time"
"github.com/google/uuid"
) )
/*
{
"recipient": "+79999999999",
"type": "flashcall",
"payload": {
"sender": "Имя отправителя",
"text": "1234"
}
}
*/
type FlashCallRequest struct { type FlashCallRequest struct {
APIKey string `json:"api_key"` Recepient string `json:"recipient"`
Phone string `json:"phone"` Type string `json:"type"`
CodeLen int `json:"code_len"` // 4, 5, 6 Payload Payload `json:"payload"`
} }
type FlashCallResponse struct { type FlashCallResponse struct {
ID uuid.UUID `json:"id"`
Price float64 `json:"price"`
Recepient string `json:"recipient"`
Status string `json:"status"` Status string `json:"status"`
CallID string `json:"call_id"` Error string `json:"error"`
From string `json:"from"` // номер, с которого звонили
Code string `json:"code"` // обычно это последние digits из from
} }
func FlashCall(apiKey, phone string, codeLen int) (*FlashCallResponse, error) { // GenerateRandomDigits генерирует строку из четырёх случайных цифр.
body := FlashCallRequest{ func GenerateFreshcCallCode() (string, error) {
APIKey: apiKey, var b [2]byte
Phone: phone, _, err := rand.Read(b[:])
CodeLen: codeLen, if err != nil {
return "", err
} }
data, _ := json.Marshal(body) // Превращаем 2 байта в число
num := int(b[0])<<8 | int(b[1])
// Ограничиваем диапазон 09999
num = num % 10000
resp, err := http.Post( // Возвращаем строку с ведущими нулями
"https://voice.sigmasms.ru/flashcall", return fmt.Sprintf("%04d", num), nil
"application/json", }
bytes.NewReader(data),
) func FlashCall(apiKey, phone, sender string, code string) (*FlashCallResponse, error) {
req := FlashCallRequest{
Recepient: phone,
Type: "flashcall",
Payload: Payload{
Sender: sender,
Text: code,
},
}
var resp FlashCallResponse
err := requestPost("https://user.sigmasms.ru/api/sendings", apiKey, &req, &resp)
if err != nil { if err != nil {
return nil, err return nil, err
} }
defer resp.Body.Close()
var result FlashCallResponse return &resp, nil
if err := json.NewDecoder(resp.Body).Decode(&result); err != nil {
return nil, err
} }
return &result, nil
func FlashCallWait(apiKey, phone, sender string, code string) (transactionID uuid.UUID, err error) {
var resp *FlashCallResponse
if resp, err = FlashCall(apiKey, phone, sender, code); err != nil {
log.Println(err)
return
} else {
if resp.Status == "failed" {
err = fmt.Errorf("flashcall send error: %s", resp.Error)
return
}
transactionID = resp.ID
var sResp *StatusResponse
mainLoop:
for resp.Status == "pending" {
time.Sleep(time.Millisecond * 100)
sResp, err = RequestStatus(resp.ID, apiKey)
if err != nil {
return
}
resp.Status = sResp.State.Status
switch resp.Status {
case "pending", "sent":
continue mainLoop
case "seen", "delivered":
return
default:
err = fmt.Errorf("sms status: %s", sResp.State.Status)
}
}
}
return
} }

View File

@@ -4,6 +4,8 @@ import (
"log" "log"
"os" "os"
"testing" "testing"
"github.com/google/uuid"
) )
func loadToken(t *testing.T) string { func loadToken(t *testing.T) string {
@@ -16,7 +18,20 @@ func loadToken(t *testing.T) string {
func TestFlashCall(t *testing.T) { func TestFlashCall(t *testing.T) {
token := loadToken(t) token := loadToken(t)
log.Println(token) code, _ := GenerateFreshcCallCode()
log.Println(code)
FlashCall(token, "+79857770038", "NG.Market", code)
}
func TestFlashCallWait(t *testing.T) {
token := loadToken(t)
code, _ := GenerateFreshcCallCode()
log.Println(code)
trID, err := FlashCallWait(token, "+79857770038", "NG.Market", code)
if err != nil {
t.Fatal(err)
}
t.Log(trID)
} }
func TestSMS(t *testing.T) { func TestSMS(t *testing.T) {
@@ -28,3 +43,30 @@ func TestSMS(t *testing.T) {
"Привет", "Привет",
) )
} }
func TestSMSWait(t *testing.T) {
token := loadToken(t)
trID, err := SendSMSWait(token, "+79857770038", "NG.Market", "Привет из Москвы :)")
if err != nil {
t.Fatal(err)
}
t.Log(trID)
}
func TestStatus(t *testing.T) {
token := loadToken(t)
id, _ := uuid.Parse("518095e8-a62d-4af1-ad1f-2a56e955cf55")
status, err := RequestStatus(id, token)
if err != nil {
t.Fatal(err)
}
t.Log(status)
}
func TestFreshCallCode(t *testing.T) {
code, err := GenerateFreshcCallCode()
if err != nil {
t.Fatal(err)
}
t.Log(code)
}

View File

@@ -9,6 +9,12 @@ import (
"net/url" "net/url"
) )
type ErrorCode struct {
Error int `json:"error"`
Name string `json:"name"`
Message string `json:"message"`
}
func httpRequest(req *http.Request, resp any) error { func httpRequest(req *http.Request, resp any) error {
client := &http.Client{} client := &http.Client{}
@@ -23,7 +29,13 @@ func httpRequest(req *http.Request, resp any) error {
return fmt.Errorf("http response read error: %w", err) return fmt.Errorf("http response read error: %w", err)
} }
//log.Println(string(body))
if err = json.Unmarshal(body, resp); err != nil { if err = json.Unmarshal(body, resp); err != nil {
var rErr ErrorCode
if err = json.Unmarshal(body, &rErr); err == nil && rErr.Error != 0 {
return fmt.Errorf("error %d %s: %s", rErr.Error, rErr.Name, rErr.Message)
}
err = fmt.Errorf("http response unmarshal error: %w", err) err = fmt.Errorf("http response unmarshal error: %w", err)
} }
return err return err

46
sms.go
View File

@@ -1,7 +1,9 @@
package sigmasms package sigmasms
import ( import (
"fmt"
"log" "log"
"time"
"github.com/google/uuid" "github.com/google/uuid"
) )
@@ -21,11 +23,6 @@ var (
TypeSMS = "sms" TypeSMS = "sms"
) )
type Payload struct {
Sender string `json:"sender"`
Text string `json:"text"`
}
type SendSMSResponse struct { type SendSMSResponse struct {
Error string `json:"error"` Error string `json:"error"`
ID uuid.UUID `json:"id"` ID uuid.UUID `json:"id"`
@@ -50,7 +47,7 @@ func SendSMS(apiKey, phone, sender, text string) (*SendSMSResponse, error) {
}, },
} }
resp := make(map[string]any) var resp SendSMSResponse
err := requestPost( err := requestPost(
"https://user.sigmasms.ru/api/sendings", "https://user.sigmasms.ru/api/sendings",
@@ -63,7 +60,38 @@ func SendSMS(apiKey, phone, sender, text string) (*SendSMSResponse, error) {
return nil, err return nil, err
} }
log.Println(resp) return &resp, nil
}
return nil, nil
func SendSMSWait(apiKey, phone, sender, text string) (transactionID uuid.UUID, err error) {
var resp *SendSMSResponse
if resp, err = SendSMS(apiKey, phone, sender, text); err != nil {
log.Println(err)
return
} else {
if resp.Status == "failed" {
err = fmt.Errorf("sms send error: %s", resp.Error)
return
}
transactionID = resp.ID
var sResp *StatusResponse
mainLoop:
for resp.Status == "pending" {
time.Sleep(time.Millisecond * 100)
sResp, err = RequestStatus(resp.ID, apiKey)
if err != nil {
return
}
resp.Status = sResp.State.Status
switch resp.Status {
case "pending", "sent":
continue mainLoop
case "seen", "delivered":
return
default:
err = fmt.Errorf("sms status: %s", sResp.State.Status)
}
}
}
return
} }

View File

@@ -1,9 +1,62 @@
package sigmasms package sigmasms
import "github.com/google/uuid" import (
"github.com/google/uuid"
)
func RequestStatus(id uuid.UUID, apiKey string) error { type RecepientData struct {
url := "https://user.sigmasms.ru/api/sendings/" + id.String() MCC string `json:"mcc"`
resp := make(map[string]) MNC string `json:"mnc"`
requestGet(url, apiKey, nil, ) Code string `json:"code"`
Type string `json:"type"`
Group string `json:"group"`
Operator string `json:"operator"`
}
type Billing struct {
ID string `json:"id"`
Amount float64 `json:"amount"`
Refunded bool `json:"refunded"`
TariffID string `json:"TariffId"`
}
type Billings struct {
IDs []uuid.UUID `json:"ids"`
}
type Stats struct {
Segments int `json:"segments"`
Characters int `json:"characters"`
}
type Meta struct {
Billing Billing `json:"billing"`
Billings Billings `json:"billings"`
Stats Stats `json:"stats"`
PatternID bool `json:"patternId"`
RecepientData RecepientData `json:"_recipientData"`
}
type State struct {
Status string `json:"status"`
Error bool `json:"error"`
ExtendedStatus string `json:"extendedStatus"`
}
type StatusResponse struct {
ID uuid.UUID `json:"id"`
ChainID uuid.UUID `json:"chainId"`
Type string `json:"type"`
CreatedAt string `json:"createdAt"`
UpdatedAt string `json:"updatedAt"`
State State `json:"state"`
Meta *Meta `json:"meta"`
OwnerID uuid.UUID `json:"OwnerId"`
}
// 9987bf00-c082-4dec-b25f-875eb528cf34
func RequestStatus(id uuid.UUID, apiKey string) (resp *StatusResponse, err error) {
url := "https://user.sigmasms.ru/api/sendings/" + id.String()
err = requestGet(url, apiKey, nil, &resp)
return
} }

View File

@@ -1 +0,0 @@
b1eaeb6864933be52d8a203785c009fd6f33ccd557786836a8ca9ef3aa6b7aff