123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394 |
- package server
- import (
- "encoding/json"
- "errors"
- "heckel.io/ntfy/log"
- "heckel.io/ntfy/user"
- "heckel.io/ntfy/util"
- "net/http"
- )
- const (
- subscriptionIDLength = 16
- createdByAPI = "api"
- syncTopicAccountSyncEvent = "sync"
- )
- func (s *Server) handleAccountCreate(w http.ResponseWriter, r *http.Request, v *visitor) error {
- admin := v.user != nil && v.user.Role == user.RoleAdmin
- if !admin {
- if !s.config.EnableSignup {
- return errHTTPBadRequestSignupNotEnabled
- } else if v.user != nil {
- return errHTTPUnauthorized // Cannot create account from user context
- }
- }
- newAccount, err := readJSONWithLimit[apiAccountCreateRequest](r.Body, jsonBodyBytesLimit)
- if err != nil {
- return err
- }
- if existingUser, _ := s.userManager.User(newAccount.Username); existingUser != nil {
- return errHTTPConflictUserExists
- }
- if v.accountLimiter != nil && !v.accountLimiter.Allow() {
- return errHTTPTooManyRequestsLimitAccountCreation
- }
- if err := s.userManager.AddUser(newAccount.Username, newAccount.Password, user.RoleUser, createdByAPI); err != nil { // TODO this should return a User
- return err
- }
- return s.writeJSON(w, newSuccessResponse())
- }
- func (s *Server) handleAccountGet(w http.ResponseWriter, _ *http.Request, v *visitor) error {
- info, err := v.Info()
- if err != nil {
- return err
- }
- limits, stats := info.Limits, info.Stats
- response := &apiAccountResponse{
- Limits: &apiAccountLimits{
- Basis: string(limits.Basis),
- Messages: limits.MessagesLimit,
- MessagesExpiryDuration: int64(limits.MessagesExpiryDuration.Seconds()),
- Emails: limits.EmailsLimit,
- Reservations: limits.ReservationsLimit,
- AttachmentTotalSize: limits.AttachmentTotalSizeLimit,
- AttachmentFileSize: limits.AttachmentFileSizeLimit,
- AttachmentExpiryDuration: int64(limits.AttachmentExpiryDuration.Seconds()),
- },
- Stats: &apiAccountStats{
- Messages: stats.Messages,
- MessagesRemaining: stats.MessagesRemaining,
- Emails: stats.Emails,
- EmailsRemaining: stats.EmailsRemaining,
- Reservations: stats.Reservations,
- ReservationsRemaining: stats.ReservationsRemaining,
- AttachmentTotalSize: stats.AttachmentTotalSize,
- AttachmentTotalSizeRemaining: stats.AttachmentTotalSizeRemaining,
- },
- }
- if v.user != nil {
- response.Username = v.user.Name
- response.Role = string(v.user.Role)
- response.SyncTopic = v.user.SyncTopic
- if v.user.Prefs != nil {
- if v.user.Prefs.Language != "" {
- response.Language = v.user.Prefs.Language
- }
- if v.user.Prefs.Notification != nil {
- response.Notification = v.user.Prefs.Notification
- }
- if v.user.Prefs.Subscriptions != nil {
- response.Subscriptions = v.user.Prefs.Subscriptions
- }
- }
- if v.user.Tier != nil {
- response.Tier = &apiAccountTier{
- Code: v.user.Tier.Code,
- Name: v.user.Tier.Name,
- }
- }
- if v.user.Billing.StripeCustomerID != "" {
- response.Billing = &apiAccountBilling{
- Customer: true,
- Subscription: v.user.Billing.StripeSubscriptionID != "",
- Status: string(v.user.Billing.StripeSubscriptionStatus),
- PaidUntil: v.user.Billing.StripeSubscriptionPaidUntil.Unix(),
- CancelAt: v.user.Billing.StripeSubscriptionCancelAt.Unix(),
- }
- }
- reservations, err := s.userManager.Reservations(v.user.Name)
- if err != nil {
- return err
- }
- if len(reservations) > 0 {
- response.Reservations = make([]*apiAccountReservation, 0)
- for _, r := range reservations {
- response.Reservations = append(response.Reservations, &apiAccountReservation{
- Topic: r.Topic,
- Everyone: r.Everyone.String(),
- })
- }
- }
- } else {
- response.Username = user.Everyone
- response.Role = string(user.RoleAnonymous)
- }
- return s.writeJSON(w, response)
- }
- func (s *Server) handleAccountDelete(w http.ResponseWriter, _ *http.Request, v *visitor) error {
- if v.user.Billing.StripeSubscriptionID != "" {
- log.Info("Deleting user %s (billing customer: %s, billing subscription: %s)", v.user.Name, v.user.Billing.StripeCustomerID, v.user.Billing.StripeSubscriptionID)
- if v.user.Billing.StripeSubscriptionID != "" {
- if _, err := s.stripe.CancelSubscription(v.user.Billing.StripeSubscriptionID); err != nil {
- return err
- }
- }
- } else {
- log.Info("Deleting user %s", v.user.Name)
- }
- if err := s.userManager.RemoveUser(v.user.Name); err != nil {
- return err
- }
- return s.writeJSON(w, newSuccessResponse())
- }
- func (s *Server) handleAccountPasswordChange(w http.ResponseWriter, r *http.Request, v *visitor) error {
- newPassword, err := readJSONWithLimit[apiAccountPasswordChangeRequest](r.Body, jsonBodyBytesLimit)
- if err != nil {
- return err
- }
- if err := s.userManager.ChangePassword(v.user.Name, newPassword.Password); err != nil {
- return err
- }
- return s.writeJSON(w, newSuccessResponse())
- }
- func (s *Server) handleAccountTokenIssue(w http.ResponseWriter, _ *http.Request, v *visitor) error {
- // TODO rate limit
- token, err := s.userManager.CreateToken(v.user)
- if err != nil {
- return err
- }
- response := &apiAccountTokenResponse{
- Token: token.Value,
- Expires: token.Expires.Unix(),
- }
- return s.writeJSON(w, response)
- }
- func (s *Server) handleAccountTokenExtend(w http.ResponseWriter, _ *http.Request, v *visitor) error {
- // TODO rate limit
- if v.user == nil {
- return errHTTPUnauthorized
- } else if v.user.Token == "" {
- return errHTTPBadRequestNoTokenProvided
- }
- token, err := s.userManager.ExtendToken(v.user)
- if err != nil {
- return err
- }
- response := &apiAccountTokenResponse{
- Token: token.Value,
- Expires: token.Expires.Unix(),
- }
- return s.writeJSON(w, response)
- }
- func (s *Server) handleAccountTokenDelete(w http.ResponseWriter, _ *http.Request, v *visitor) error {
- // TODO rate limit
- if v.user.Token == "" {
- return errHTTPBadRequestNoTokenProvided
- }
- if err := s.userManager.RemoveToken(v.user); err != nil {
- return err
- }
- return s.writeJSON(w, newSuccessResponse())
- }
- func (s *Server) handleAccountSettingsChange(w http.ResponseWriter, r *http.Request, v *visitor) error {
- newPrefs, err := readJSONWithLimit[user.Prefs](r.Body, jsonBodyBytesLimit)
- if err != nil {
- return err
- }
- if v.user.Prefs == nil {
- v.user.Prefs = &user.Prefs{}
- }
- prefs := v.user.Prefs
- if newPrefs.Language != "" {
- prefs.Language = newPrefs.Language
- }
- if newPrefs.Notification != nil {
- if prefs.Notification == nil {
- prefs.Notification = &user.NotificationPrefs{}
- }
- if newPrefs.Notification.DeleteAfter > 0 {
- prefs.Notification.DeleteAfter = newPrefs.Notification.DeleteAfter
- }
- if newPrefs.Notification.Sound != "" {
- prefs.Notification.Sound = newPrefs.Notification.Sound
- }
- if newPrefs.Notification.MinPriority > 0 {
- prefs.Notification.MinPriority = newPrefs.Notification.MinPriority
- }
- }
- if err := s.userManager.ChangeSettings(v.user); err != nil {
- return err
- }
- return s.writeJSON(w, newSuccessResponse())
- }
- func (s *Server) handleAccountSubscriptionAdd(w http.ResponseWriter, r *http.Request, v *visitor) error {
- newSubscription, err := readJSONWithLimit[user.Subscription](r.Body, jsonBodyBytesLimit)
- if err != nil {
- return err
- }
- if v.user.Prefs == nil {
- v.user.Prefs = &user.Prefs{}
- }
- newSubscription.ID = "" // Client cannot set ID
- for _, subscription := range v.user.Prefs.Subscriptions {
- if newSubscription.BaseURL == subscription.BaseURL && newSubscription.Topic == subscription.Topic {
- newSubscription = subscription
- break
- }
- }
- if newSubscription.ID == "" {
- newSubscription.ID = util.RandomString(subscriptionIDLength)
- v.user.Prefs.Subscriptions = append(v.user.Prefs.Subscriptions, newSubscription)
- if err := s.userManager.ChangeSettings(v.user); err != nil {
- return err
- }
- }
- return s.writeJSON(w, newSubscription)
- }
- func (s *Server) handleAccountSubscriptionChange(w http.ResponseWriter, r *http.Request, v *visitor) error {
- matches := apiAccountSubscriptionSingleRegex.FindStringSubmatch(r.URL.Path)
- if len(matches) != 2 {
- return errHTTPInternalErrorInvalidPath
- }
- subscriptionID := matches[1]
- updatedSubscription, err := readJSONWithLimit[user.Subscription](r.Body, jsonBodyBytesLimit)
- if err != nil {
- return err
- }
- if v.user.Prefs == nil || v.user.Prefs.Subscriptions == nil {
- return errHTTPNotFound
- }
- var subscription *user.Subscription
- for _, sub := range v.user.Prefs.Subscriptions {
- if sub.ID == subscriptionID {
- sub.DisplayName = updatedSubscription.DisplayName
- subscription = sub
- break
- }
- }
- if subscription == nil {
- return errHTTPNotFound
- }
- if err := s.userManager.ChangeSettings(v.user); err != nil {
- return err
- }
- return s.writeJSON(w, subscription)
- }
- func (s *Server) handleAccountSubscriptionDelete(w http.ResponseWriter, r *http.Request, v *visitor) error {
- matches := apiAccountSubscriptionSingleRegex.FindStringSubmatch(r.URL.Path)
- if len(matches) != 2 {
- return errHTTPInternalErrorInvalidPath
- }
- subscriptionID := matches[1]
- if v.user.Prefs == nil || v.user.Prefs.Subscriptions == nil {
- return nil
- }
- newSubscriptions := make([]*user.Subscription, 0)
- for _, subscription := range v.user.Prefs.Subscriptions {
- if subscription.ID != subscriptionID {
- newSubscriptions = append(newSubscriptions, subscription)
- }
- }
- if len(newSubscriptions) < len(v.user.Prefs.Subscriptions) {
- v.user.Prefs.Subscriptions = newSubscriptions
- if err := s.userManager.ChangeSettings(v.user); err != nil {
- return err
- }
- }
- return s.writeJSON(w, newSuccessResponse())
- }
- func (s *Server) handleAccountReservationAdd(w http.ResponseWriter, r *http.Request, v *visitor) error {
- if v.user != nil && v.user.Role == user.RoleAdmin {
- return errHTTPBadRequestMakesNoSenseForAdmin
- }
- req, err := readJSONWithLimit[apiAccountReservationRequest](r.Body, jsonBodyBytesLimit)
- if err != nil {
- return err
- }
- if !topicRegex.MatchString(req.Topic) {
- return errHTTPBadRequestTopicInvalid
- }
- everyone, err := user.ParsePermission(req.Everyone)
- if err != nil {
- return errHTTPBadRequestPermissionInvalid
- }
- if v.user.Tier == nil {
- return errHTTPUnauthorized
- }
- if err := s.userManager.CheckAllowAccess(v.user.Name, req.Topic); err != nil {
- return errHTTPConflictTopicReserved
- }
- hasReservation, err := s.userManager.HasReservation(v.user.Name, req.Topic)
- if err != nil {
- return err
- }
- if !hasReservation {
- reservations, err := s.userManager.ReservationsCount(v.user.Name)
- if err != nil {
- return err
- } else if reservations >= v.user.Tier.ReservationsLimit {
- return errHTTPTooManyRequestsLimitReservations
- }
- }
- if err := s.userManager.ReserveAccess(v.user.Name, req.Topic, everyone); err != nil {
- return err
- }
- return s.writeJSON(w, newSuccessResponse())
- }
- func (s *Server) handleAccountReservationDelete(w http.ResponseWriter, r *http.Request, v *visitor) error {
- matches := apiAccountReservationSingleRegex.FindStringSubmatch(r.URL.Path)
- if len(matches) != 2 {
- return errHTTPInternalErrorInvalidPath
- }
- topic := matches[1]
- if !topicRegex.MatchString(topic) {
- return errHTTPBadRequestTopicInvalid
- }
- authorized, err := s.userManager.HasReservation(v.user.Name, topic)
- if err != nil {
- return err
- } else if !authorized {
- return errHTTPUnauthorized
- }
- if err := s.userManager.RemoveReservations(v.user.Name, topic); err != nil {
- return err
- }
- return s.writeJSON(w, newSuccessResponse())
- }
- func (s *Server) publishSyncEvent(v *visitor) error {
- if v.user == nil || v.user.SyncTopic == "" {
- return nil
- }
- log.Trace("Publishing sync event to user %s's sync topic %s", v.user.Name, v.user.SyncTopic)
- topics, err := s.topicsFromIDs(v.user.SyncTopic)
- if err != nil {
- return err
- } else if len(topics) == 0 {
- return errors.New("cannot retrieve sync topic")
- }
- syncTopic := topics[0]
- messageBytes, err := json.Marshal(&apiAccountSyncTopicResponse{Event: syncTopicAccountSyncEvent})
- if err != nil {
- return err
- }
- m := newDefaultMessage(syncTopic.ID, string(messageBytes))
- if err := syncTopic.Publish(v, m); err != nil {
- return err
- }
- return nil
- }
- func (s *Server) publishSyncEventAsync(v *visitor) {
- go func() {
- if v.user == nil || v.user.SyncTopic == "" {
- return
- }
- if err := s.publishSyncEvent(v); err != nil {
- log.Trace("Error publishing to user %s's sync topic %s: %s", v.user.Name, v.user.SyncTopic, err.Error())
- }
- }()
- }
|