68 lines
1.4 KiB
Go
68 lines
1.4 KiB
Go
package main
|
|
|
|
import (
|
|
"encoding/json"
|
|
"myapp/internal/cards"
|
|
"net/http"
|
|
"strconv"
|
|
)
|
|
|
|
type stripePayload struct {
|
|
Currency string `json:"currency"`
|
|
Amount string `json:"amount"`
|
|
}
|
|
|
|
type jsonResponse struct {
|
|
OK bool `json:"ok"`
|
|
Message string `json:"message,omitempty"`
|
|
Content string `json:"content,omitempty"`
|
|
ID int `json:"id,omitempty"`
|
|
}
|
|
|
|
func (app *application) GetPaymentIntent(w http.ResponseWriter, r *http.Request) {
|
|
var payload stripePayload
|
|
|
|
err := json.NewDecoder(r.Body).Decode(&payload)
|
|
if err != nil {
|
|
app.errorLog.Println(err)
|
|
return // TODO: return a valid json
|
|
}
|
|
|
|
amount, err := strconv.Atoi(payload.Amount)
|
|
if err != nil {
|
|
app.errorLog.Println(err)
|
|
return // TODO: return a valid json
|
|
}
|
|
|
|
card := cards.Card{
|
|
Secret: app.config.stripe.secret,
|
|
Key: app.config.stripe.key,
|
|
Currency: payload.Currency,
|
|
}
|
|
|
|
pi, msg, err := card.Charge(payload.Currency, amount)
|
|
if err != nil {
|
|
j := jsonResponse{
|
|
OK: false,
|
|
Message: msg,
|
|
Content: "",
|
|
}
|
|
|
|
out, err := json.MarshalIndent(j, "", " ")
|
|
if err != nil {
|
|
app.errorLog.Println(err)
|
|
}
|
|
w.Header().Set("Content-Type", "application/json")
|
|
w.Write(out)
|
|
return
|
|
}
|
|
|
|
out, err := json.MarshalIndent(pi, "", " ")
|
|
if err != nil {
|
|
app.errorLog.Println(err)
|
|
return // TODO: return a valid json
|
|
}
|
|
w.Header().Set("Content-Type", "application/json")
|
|
w.Write(out)
|
|
}
|