Add list account commands

This commit is contained in:
Illya Marchenko 2024-04-11 14:13:20 +03:00
parent 3f4f87f039
commit f707d01376
Signed by: stuzer05
GPG Key ID: A6ABAAA9268F9F4F
2 changed files with 67 additions and 7 deletions

@ -36,4 +36,23 @@ you only need `.env`, `config.json` and build binary to run the bot
./monobank-firefly3-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

@ -1,9 +1,12 @@
package main
import (
"context"
"flag"
"fmt"
"gitea.stuzer.link/stuzer05/go-firefly3"
"gitea.stuzer.link/stuzer05/go-monobank"
"github.com/antihax/optional"
"github.com/joho/godotenv"
"io"
"log"
@ -34,18 +37,59 @@ func main() {
}
// 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()
// 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
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()
r := &http.Request{
Method: http.MethodPost,
Header: make(http.Header),
Body: io.NopCloser(strings.NewReader(*flagDoTransaction)),
Body: io.NopCloser(strings.NewReader(*flagMonobankDoTransaction)),
}
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"))
// register monobank webhook
monobankClientConf := monobank.NewConfiguration()
monobankClient := monobank.NewAPIClient(monobankClientConf)
req := monobank.ApiPersonalWebhookPostRequest{}
req = req.XToken(os.Getenv("MONOBANK_TOKEN"))
req = req.SetWebHook(monobank.SetWebHook{WebHookUrl: &webhookUrl})