mirror of
https://github.com/balzack/databag.git
synced 2025-02-12 11:39:17 +00:00
75 lines
1.8 KiB
Go
75 lines
1.8 KiB
Go
package databag
|
|
|
|
import (
|
|
"databag/internal/store"
|
|
"gorm.io/gorm"
|
|
"net/http"
|
|
)
|
|
|
|
//SetAccountNotification sets whether notifications should be received
|
|
func SetAccountNotification(w http.ResponseWriter, r *http.Request) {
|
|
|
|
session, code, err := GetSession(r)
|
|
if err != nil {
|
|
ErrResponse(w, code, err)
|
|
return
|
|
}
|
|
|
|
deviceToken := r.FormValue("deviceToken")
|
|
webEndpoint := r.FormValue("webEndpoint")
|
|
webPublicKey := r.FormValue("webPublicKey")
|
|
webAuth := r.FormValue("webAuth");
|
|
pushType := r.FormValue("pushType");
|
|
|
|
var flag bool
|
|
if err := ParseRequest(r, w, &flag); err != nil {
|
|
ErrResponse(w, http.StatusBadRequest, err)
|
|
return
|
|
}
|
|
|
|
err = store.DB.Transaction(func(tx *gorm.DB) error {
|
|
if res := tx.Model(session).Update("push_enabled", flag).Error; res != nil {
|
|
return res
|
|
}
|
|
|
|
if deviceToken != "" {
|
|
if res := tx.Model(session).Update("push_token", deviceToken).Error; res != nil {
|
|
return res
|
|
}
|
|
}
|
|
if webEndpoint != "" {
|
|
if res := tx.Model(session).Update("web_endpoint", webEndpoint).Error; res != nil {
|
|
return res
|
|
}
|
|
}
|
|
if webPublicKey != "" {
|
|
if res := tx.Model(session).Update("web_public_key", webPublicKey).Error; res != nil {
|
|
return res
|
|
}
|
|
}
|
|
if webAuth != "" {
|
|
if res := tx.Model(session).Update("web_auth", webAuth).Error; res != nil {
|
|
return res
|
|
}
|
|
}
|
|
if pushType != "" {
|
|
if res := tx.Model(session).Update("push_type", pushType).Error; res != nil {
|
|
return res
|
|
}
|
|
}
|
|
|
|
session.Account.AccountRevision += 1;
|
|
if res := tx.Model(session.Account).Update("account_revision", session.Account.AccountRevision).Error; res != nil {
|
|
return res
|
|
}
|
|
return nil
|
|
})
|
|
if err != nil {
|
|
ErrResponse(w, http.StatusInternalServerError, err)
|
|
return
|
|
}
|
|
|
|
SetStatus(&session.Account)
|
|
WriteResponse(w, nil)
|
|
}
|