2024-03-25 11:55:01 +02:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"github.com/joho/godotenv"
|
|
|
|
"log"
|
|
|
|
"net/http"
|
|
|
|
"os"
|
|
|
|
)
|
|
|
|
|
|
|
|
// https://api.monobank.ua/docs/index.html#tag/Kliyentski-personalni-dani/paths/~1personal~1statement~1{account}~1{from}~1{to}/get
|
|
|
|
// https://api-docs.firefly-iii.org/#/accounts/listAccount
|
|
|
|
|
2024-03-26 19:06:31 +02:00
|
|
|
// curl -X POST https://api.monobank.ua/personal/webhook -H 'Content-TransactionType: application/json' -H 'X-Token: ' -d '{"webHookUrl":"https://monobank-firefly3.stuzer.link/webhook"}'
|
2024-03-25 11:55:01 +02:00
|
|
|
|
2024-03-26 19:06:31 +02:00
|
|
|
// curl -X POST https://monobank-firefly3.stuzer.link/webhook -H 'Content-TransactionType: application/json' -d '{"test":123}'
|
2024-03-25 11:55:01 +02:00
|
|
|
|
|
|
|
func main() {
|
2024-03-27 20:12:24 +02:00
|
|
|
// load .env
|
2024-03-25 11:55:01 +02:00
|
|
|
err := godotenv.Load(".env")
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalf("Error loading .env file")
|
|
|
|
}
|
|
|
|
|
2024-03-27 21:22:51 +02:00
|
|
|
// test config read
|
|
|
|
_, err = ReadConfig(os.Getenv("CONFIG_PATH"))
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println("cannot read config - " + err.Error())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2024-03-27 20:12:24 +02:00
|
|
|
// set webhook
|
2024-03-25 11:55:01 +02:00
|
|
|
http.HandleFunc("/webhook", handleWebhook)
|
2024-03-26 19:06:31 +02:00
|
|
|
|
2024-03-27 20:12:24 +02:00
|
|
|
// listen server
|
2024-03-27 22:36:10 +02:00
|
|
|
fmt.Println("Webhook server listening on " + os.Getenv("LISTEN"))
|
|
|
|
err = http.ListenAndServe(os.Getenv("LISTEN"), nil)
|
2024-03-26 19:06:31 +02:00
|
|
|
if err != nil {
|
|
|
|
panic(err.Error())
|
|
|
|
}
|
2024-03-25 11:55:01 +02:00
|
|
|
}
|