Add list account commands
This commit is contained in:
parent
3f4f87f039
commit
f707d01376
19
README.md
19
README.md
@ -37,3 +37,22 @@ you only need `.env`, `config.json` and build binary to run the bot
|
|||||||
```
|
```
|
||||||
|
|
||||||
bot will automatically register Monobank webhook url and start listening for incoming transactions
|
bot will automatically register Monobank webhook url and start listening for incoming transactions
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
to get monobank account ids use `--monobank-list-accounts` command
|
||||||
|
```sh
|
||||||
|
./monobank-firefly3-bot --monobank-list-accounts
|
||||||
|
0xzGO4sgEGXXXXXXqqSTJQ 537541******3946
|
||||||
|
wp6M2Ln7nkXXXXXXVYCCpA 444111******7344
|
||||||
|
4723djMLsLXXXXXXYjxqRw 444111******3747
|
||||||
|
```
|
||||||
|
|
||||||
|
to get firefly3 account ids use `--firefly3-list-accounts` command
|
||||||
|
```sh
|
||||||
|
./monobank-firefly3-bot --firefly3-list-accounts
|
||||||
|
1 Mono black
|
||||||
|
2 Wallet cash (UAH)
|
||||||
|
3 Mono white
|
||||||
|
4 PrivatBank virtual
|
||||||
|
```
|
53
main.go
53
main.go
@ -1,9 +1,12 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"context"
|
||||||
"flag"
|
"flag"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"gitea.stuzer.link/stuzer05/go-firefly3"
|
||||||
"gitea.stuzer.link/stuzer05/go-monobank"
|
"gitea.stuzer.link/stuzer05/go-monobank"
|
||||||
|
"github.com/antihax/optional"
|
||||||
"github.com/joho/godotenv"
|
"github.com/joho/godotenv"
|
||||||
"io"
|
"io"
|
||||||
"log"
|
"log"
|
||||||
@ -34,18 +37,59 @@ func main() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// flags
|
// flags
|
||||||
flagDoTransaction := flag.String("monobank-transaction", "", "run monobank transaction JSON manually")
|
flagMonobankDoTransaction := flag.String("monobank-transaction", "", "run monobank transaction JSON manually")
|
||||||
|
flagMonobankListAccounts := flag.Bool("monobank-list-accounts", false, "list monobank accounts")
|
||||||
|
flagFirefly3ListAccounts := flag.Bool("firefly3-list-accounts", false, "list firefly3 accounts")
|
||||||
|
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
|
|
||||||
|
// init monobank client
|
||||||
|
monobankClientConf := monobank.NewConfiguration()
|
||||||
|
monobankClient := monobank.NewAPIClient(monobankClientConf)
|
||||||
|
|
||||||
|
// init firefly3 client
|
||||||
|
clientConf := firefly3.NewConfiguration()
|
||||||
|
clientConf.BasePath = os.Getenv("FIREFLY3_API_URL")
|
||||||
|
clientConf.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("FIREFLY3_TOKEN"))
|
||||||
|
firefly3Client := firefly3.NewAPIClient(clientConf)
|
||||||
|
|
||||||
// manual transaction
|
// manual transaction
|
||||||
if len(*flagDoTransaction) > 0 {
|
if *flagMonobankListAccounts {
|
||||||
|
// get monobank accounts
|
||||||
|
req := monobank.ApiPersonalClientInfoGetRequest{}
|
||||||
|
req = req.XToken(os.Getenv("MONOBANK_TOKEN"))
|
||||||
|
res, _, err := monobankClient.DefaultApi.PersonalClientInfoGetExecute(req)
|
||||||
|
if err != nil {
|
||||||
|
log.Fatalln(err.Error())
|
||||||
|
}
|
||||||
|
|
||||||
|
// list accounts
|
||||||
|
for _, row := range res.Accounts {
|
||||||
|
fmt.Printf("%v\t%v\n", *row.Id, (*row.MaskedPan)[0])
|
||||||
|
}
|
||||||
|
} else if *flagFirefly3ListAccounts {
|
||||||
|
// get firefly3 accounts
|
||||||
|
req := firefly3.AccountsApiListAccountOpts{
|
||||||
|
Limit: optional.NewInt32(9999),
|
||||||
|
}
|
||||||
|
res, _, err := firefly3Client.AccountsApi.ListAccount(context.Background(), &req)
|
||||||
|
if err != nil {
|
||||||
|
log.Fatalln(err.Error())
|
||||||
|
}
|
||||||
|
|
||||||
|
// list accounts
|
||||||
|
for _, row := range res.Data {
|
||||||
|
if row.Attributes.Active && (*row.Attributes.Type_ == firefly3.ASSET_ShortAccountTypeProperty) {
|
||||||
|
fmt.Printf("%v\t%v\n", row.Id, row.Attributes.Name)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else if len(*flagMonobankDoTransaction) > 0 {
|
||||||
w := httptest.NewRecorder()
|
w := httptest.NewRecorder()
|
||||||
|
|
||||||
r := &http.Request{
|
r := &http.Request{
|
||||||
Method: http.MethodPost,
|
Method: http.MethodPost,
|
||||||
Header: make(http.Header),
|
Header: make(http.Header),
|
||||||
Body: io.NopCloser(strings.NewReader(*flagDoTransaction)),
|
Body: io.NopCloser(strings.NewReader(*flagMonobankDoTransaction)),
|
||||||
}
|
}
|
||||||
r.Header.Set("Content-Type", "application/json")
|
r.Header.Set("Content-Type", "application/json")
|
||||||
|
|
||||||
@ -61,9 +105,6 @@ func main() {
|
|||||||
webhookUrl := fmt.Sprintf("https://%s/webhook/%s", os.Getenv("MONOBANK_WEBHOOK_DOMAIN"), os.Getenv("MONOBANK_WEBHOOK_SECRET"))
|
webhookUrl := fmt.Sprintf("https://%s/webhook/%s", os.Getenv("MONOBANK_WEBHOOK_DOMAIN"), os.Getenv("MONOBANK_WEBHOOK_SECRET"))
|
||||||
|
|
||||||
// register monobank webhook
|
// register monobank webhook
|
||||||
monobankClientConf := monobank.NewConfiguration()
|
|
||||||
monobankClient := monobank.NewAPIClient(monobankClientConf)
|
|
||||||
|
|
||||||
req := monobank.ApiPersonalWebhookPostRequest{}
|
req := monobank.ApiPersonalWebhookPostRequest{}
|
||||||
req = req.XToken(os.Getenv("MONOBANK_TOKEN"))
|
req = req.XToken(os.Getenv("MONOBANK_TOKEN"))
|
||||||
req = req.SetWebHook(monobank.SetWebHook{WebHookUrl: &webhookUrl})
|
req = req.SetWebHook(monobank.SetWebHook{WebHookUrl: &webhookUrl})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user