2021-02-07 22:05:09 +01:00
|
|
|
// Vikunja is a to-do list application to facilitate your life.
|
|
|
|
// Copyright 2018-2021 Vikunja and contributors. All rights reserved.
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public Licensee as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public Licensee for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public Licensee
|
|
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
package notifications
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
|
|
|
|
"code.vikunja.io/api/pkg/db"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Notification is a notification which can be sent via mail or db.
|
|
|
|
type Notification interface {
|
|
|
|
ToMail() *Mail
|
|
|
|
ToDB() interface{}
|
2021-02-21 15:50:34 +01:00
|
|
|
Name() string
|
2021-02-07 22:05:09 +01:00
|
|
|
}
|
|
|
|
|
2021-07-29 17:42:49 +02:00
|
|
|
type SubjectID interface {
|
|
|
|
SubjectID() int64
|
|
|
|
}
|
|
|
|
|
|
|
|
type NotificationWithSubject interface {
|
|
|
|
Notification
|
|
|
|
SubjectID
|
|
|
|
}
|
|
|
|
|
2021-02-07 22:05:09 +01:00
|
|
|
// Notifiable is an entity which can be notified. Usually a user.
|
|
|
|
type Notifiable interface {
|
|
|
|
// Should return the email address this notifiable has.
|
2021-02-14 22:44:01 +01:00
|
|
|
RouteForMail() (string, error)
|
2021-02-07 22:05:09 +01:00
|
|
|
// Should return the id of the notifiable entity
|
|
|
|
RouteForDB() int64
|
|
|
|
}
|
|
|
|
|
|
|
|
// Notify notifies a notifiable of a notification
|
|
|
|
func Notify(notifiable Notifiable, notification Notification) (err error) {
|
2021-08-11 21:08:10 +02:00
|
|
|
if isUnderTest {
|
|
|
|
sentTestNotifications = append(sentTestNotifications, notification)
|
|
|
|
return nil
|
|
|
|
}
|
2021-02-07 22:05:09 +01:00
|
|
|
|
|
|
|
err = notifyMail(notifiable, notification)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
return notifyDB(notifiable, notification)
|
|
|
|
}
|
|
|
|
|
|
|
|
func notifyMail(notifiable Notifiable, notification Notification) error {
|
|
|
|
mail := notification.ToMail()
|
|
|
|
if mail == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-02-14 22:44:01 +01:00
|
|
|
to, err := notifiable.RouteForMail()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
mail.To(to)
|
2021-02-07 22:05:09 +01:00
|
|
|
|
|
|
|
return SendMail(mail)
|
|
|
|
}
|
|
|
|
|
|
|
|
func notifyDB(notifiable Notifiable, notification Notification) (err error) {
|
|
|
|
|
|
|
|
dbContent := notification.ToDB()
|
|
|
|
if dbContent == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
content, err := json.Marshal(dbContent)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
s := db.NewSession()
|
|
|
|
dbNotification := &DatabaseNotification{
|
|
|
|
NotifiableID: notifiable.RouteForDB(),
|
|
|
|
Notification: content,
|
2021-02-21 15:50:34 +01:00
|
|
|
Name: notification.Name(),
|
2021-02-07 22:05:09 +01:00
|
|
|
}
|
|
|
|
|
2021-07-29 17:42:49 +02:00
|
|
|
if subject, is := notification.(SubjectID); is {
|
|
|
|
dbNotification.SubjectID = subject.SubjectID()
|
|
|
|
}
|
|
|
|
|
2021-02-07 22:05:09 +01:00
|
|
|
_, err = s.Insert(dbNotification)
|
|
|
|
if err != nil {
|
|
|
|
_ = s.Rollback()
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return s.Commit()
|
|
|
|
}
|