apollo-backend/internal/api/devices.go

116 lines
2.6 KiB
Go
Raw Normal View History

package api
2021-05-10 00:51:15 +00:00
import (
"encoding/json"
2021-08-08 18:19:47 +00:00
"fmt"
2021-05-10 00:51:15 +00:00
"net/http"
2021-08-08 18:19:47 +00:00
"strings"
2021-08-14 15:51:27 +00:00
"time"
2021-05-10 00:51:15 +00:00
2021-08-08 18:19:47 +00:00
"github.com/dustin/go-humanize/english"
"github.com/gorilla/mux"
"github.com/sideshow/apns2"
"github.com/sideshow/apns2/payload"
2022-05-23 18:17:25 +00:00
"go.uber.org/zap"
2021-08-14 17:56:03 +00:00
"github.com/christianselig/apollo-backend/internal/domain"
2021-05-10 00:51:15 +00:00
)
2021-08-08 18:19:47 +00:00
const notificationTitle = "📣 Hello, is this thing on?"
func (a *api) upsertDeviceHandler(w http.ResponseWriter, r *http.Request) {
2022-05-07 19:04:35 +00:00
ctx := r.Context()
2021-08-08 18:19:47 +00:00
d := &domain.Device{}
2021-05-10 00:51:15 +00:00
if err := json.NewDecoder(r.Body).Decode(d); err != nil {
2022-05-21 14:00:21 +00:00
a.errorResponse(w, r, 500, err)
2021-05-10 00:51:15 +00:00
return
}
2022-03-28 21:05:01 +00:00
d.ExpiresAt = time.Now().Add(domain.DeviceReceiptCheckPeriodDuration)
d.GracePeriodExpiresAt = d.ExpiresAt.Add(domain.DeviceGracePeriodAfterReceiptExpiry)
2021-08-14 15:51:27 +00:00
2021-08-08 18:19:47 +00:00
if err := a.deviceRepo.CreateOrUpdate(ctx, d); err != nil {
2022-05-21 14:00:21 +00:00
a.errorResponse(w, r, 500, err)
2021-08-08 18:19:47 +00:00
return
}
w.WriteHeader(http.StatusOK)
}
func (a *api) testDeviceHandler(w http.ResponseWriter, r *http.Request) {
2022-05-07 19:04:35 +00:00
ctx := r.Context()
2021-08-08 18:19:47 +00:00
2022-05-07 19:04:35 +00:00
vars := mux.Vars(r)
2021-08-08 18:19:47 +00:00
tok := vars["apns"]
d, err := a.deviceRepo.GetByAPNSToken(ctx, tok)
if err != nil {
2022-05-23 18:17:25 +00:00
a.logger.Error("failed fetching device from database", zap.Error(err))
2022-05-21 14:00:21 +00:00
a.errorResponse(w, r, 500, err)
2021-08-08 18:19:47 +00:00
return
}
accs, err := a.accountRepo.GetByAPNSToken(ctx, tok)
if err != nil {
2022-05-21 14:00:21 +00:00
a.errorResponse(w, r, 500, err)
2021-08-08 18:19:47 +00:00
return
}
users := make([]string, len(accs))
for i := range accs {
users[i] = accs[i].Username
}
body := fmt.Sprintf("Active usernames are: %s. Tap me for more info!", english.OxfordWordSeries(users, "and"))
notification := &apns2.Notification{}
notification.Topic = "com.christianselig.Apollo"
notification.DeviceToken = d.APNSToken
notification.Payload = payload.
NewPayload().
Category("test-notification").
Custom("test_accounts", strings.Join(users, ",")).
AlertTitle(notificationTitle).
2022-05-21 13:46:12 +00:00
AlertBody(body).
MutableContent().
Sound("traloop.wav")
2021-08-08 18:19:47 +00:00
client := apns2.NewTokenClient(a.apns)
if !d.Sandbox {
client = client.Production()
}
if _, err := client.Push(notification); err != nil {
2022-05-23 18:17:25 +00:00
a.logger.Info("failed to send test notification", zap.Error(err))
2022-05-21 14:00:21 +00:00
a.errorResponse(w, r, 500, err)
2021-05-10 00:51:15 +00:00
return
}
2021-08-08 18:19:47 +00:00
w.WriteHeader(http.StatusOK)
}
func (a *api) deleteDeviceHandler(w http.ResponseWriter, r *http.Request) {
2022-05-07 19:04:35 +00:00
ctx := r.Context()
2021-08-08 18:19:47 +00:00
vars := mux.Vars(r)
dev, err := a.deviceRepo.GetByAPNSToken(ctx, vars["apns"])
if err != nil {
2022-05-21 14:00:21 +00:00
a.errorResponse(w, r, 500, err)
2021-08-08 18:19:47 +00:00
return
}
accs, err := a.accountRepo.GetByAPNSToken(ctx, vars["apns"])
if err != nil {
2022-05-21 14:00:21 +00:00
a.errorResponse(w, r, 500, err)
2021-08-08 18:19:47 +00:00
return
}
for _, acc := range accs {
2021-09-25 13:19:42 +00:00
_ = a.accountRepo.Disassociate(ctx, &acc, &dev)
2021-08-08 18:19:47 +00:00
}
2021-05-10 00:51:15 +00:00
2021-09-25 13:19:42 +00:00
_ = a.deviceRepo.Delete(ctx, vars["apns"])
2021-09-11 14:53:19 +00:00
2021-05-10 00:51:15 +00:00
w.WriteHeader(http.StatusOK)
}