2023-05-24 21:36:01 +02:00
|
|
|
package server
|
|
|
|
|
|
|
|
import (
|
|
|
|
"database/sql"
|
2023-06-10 05:17:48 +02:00
|
|
|
"heckel.io/ntfy/util"
|
2023-06-02 14:45:05 +02:00
|
|
|
"time"
|
2023-05-24 21:36:01 +02:00
|
|
|
|
|
|
|
_ "github.com/mattn/go-sqlite3" // SQLite driver
|
|
|
|
)
|
|
|
|
|
2023-06-10 05:17:48 +02:00
|
|
|
const (
|
|
|
|
subscriptionIDPrefix = "wps_"
|
|
|
|
subscriptionIDLength = 10
|
|
|
|
)
|
|
|
|
|
2023-05-24 21:36:01 +02:00
|
|
|
const (
|
|
|
|
createWebPushSubscriptionsTableQuery = `
|
|
|
|
BEGIN;
|
2023-06-10 05:17:48 +02:00
|
|
|
CREATE TABLE IF NOT EXISTS subscription (
|
|
|
|
id TEXT PRIMARY KEY,
|
2023-05-24 21:36:01 +02:00
|
|
|
endpoint TEXT NOT NULL,
|
|
|
|
key_auth TEXT NOT NULL,
|
|
|
|
key_p256dh TEXT NOT NULL,
|
2023-06-10 05:17:48 +02:00
|
|
|
user_id TEXT NOT NULL,
|
|
|
|
updated_at INT NOT NULL,
|
|
|
|
warned_at INT NOT NULL DEFAULT 0
|
2023-05-24 21:36:01 +02:00
|
|
|
);
|
2023-06-10 05:17:48 +02:00
|
|
|
CREATE UNIQUE INDEX IF NOT EXISTS idx_endpoint ON subscription (endpoint);
|
|
|
|
CREATE TABLE IF NOT EXISTS subscription_topic (
|
|
|
|
subscription_id TEXT NOT NULL,
|
|
|
|
topic TEXT NOT NULL,
|
|
|
|
PRIMARY KEY (subscription_id, topic),
|
|
|
|
FOREIGN KEY (subscription_id) REFERENCES subscription (id) ON DELETE CASCADE
|
|
|
|
);
|
|
|
|
CREATE INDEX IF NOT EXISTS idx_topic ON subscription_topic (topic);
|
2023-06-09 03:45:52 +02:00
|
|
|
CREATE TABLE IF NOT EXISTS schemaVersion (
|
|
|
|
id INT PRIMARY KEY,
|
|
|
|
version INT NOT NULL
|
2023-06-10 05:17:48 +02:00
|
|
|
);
|
2023-05-24 21:36:01 +02:00
|
|
|
COMMIT;
|
|
|
|
`
|
2023-06-10 05:17:48 +02:00
|
|
|
builtinStartupQueries = `
|
|
|
|
PRAGMA foreign_keys = ON;
|
2023-05-24 21:36:01 +02:00
|
|
|
`
|
|
|
|
|
2023-06-10 05:17:48 +02:00
|
|
|
selectWebPushSubscriptionIDByEndpoint = `SELECT id FROM subscription WHERE endpoint = ?`
|
|
|
|
selectWebPushSubscriptionsForTopicQuery = `
|
|
|
|
SELECT id, endpoint, key_auth, key_p256dh, user_id
|
|
|
|
FROM subscription_topic st
|
|
|
|
JOIN subscription s ON s.id = st.subscription_id
|
|
|
|
WHERE st.topic = ?
|
|
|
|
`
|
|
|
|
selectWebPushSubscriptionsExpiringSoonQuery = `SELECT id, endpoint, key_auth, key_p256dh, user_id FROM subscription WHERE warned_at = 0 AND updated_at <= ?`
|
|
|
|
insertWebPushSubscriptionQuery = `
|
|
|
|
INSERT INTO subscription (id, endpoint, key_auth, key_p256dh, user_id, updated_at, warned_at)
|
|
|
|
VALUES (?, ?, ?, ?, ?, ?, ?)
|
|
|
|
ON CONFLICT (endpoint)
|
|
|
|
DO UPDATE SET key_auth = excluded.key_auth, key_p256dh = excluded.key_p256dh, user_id = excluded.user_id, updated_at = excluded.updated_at, warned_at = excluded.warned_at
|
|
|
|
`
|
|
|
|
updateWebPushSubscriptionWarningSentQuery = `UPDATE subscription SET warned_at = ? WHERE id = ?`
|
|
|
|
deleteWebPushSubscriptionByEndpointQuery = `DELETE FROM subscription WHERE endpoint = ?`
|
|
|
|
deleteWebPushSubscriptionByUserIDQuery = `DELETE FROM subscription WHERE user_id = ?`
|
|
|
|
deleteWebPushSubscriptionByAgeQuery = `DELETE FROM subscription WHERE updated_at <= ?` // Full table scan!
|
2023-06-02 14:45:05 +02:00
|
|
|
|
2023-06-10 05:17:48 +02:00
|
|
|
insertWebPushSubscriptionTopicQuery = `INSERT INTO subscription_topic (subscription_id, topic) VALUES (?, ?)`
|
|
|
|
deleteWebPushSubscriptionTopicAllQuery = `DELETE FROM subscription_topic WHERE subscription_id = ?`
|
2023-06-09 03:45:52 +02:00
|
|
|
)
|
2023-05-24 21:36:01 +02:00
|
|
|
|
2023-06-09 03:45:52 +02:00
|
|
|
// Schema management queries
|
|
|
|
const (
|
|
|
|
currentWebPushSchemaVersion = 1
|
|
|
|
insertWebPushSchemaVersion = `INSERT INTO schemaVersion VALUES (1, ?)`
|
|
|
|
selectWebPushSchemaVersionQuery = `SELECT version FROM schemaVersion WHERE id = 1`
|
2023-05-24 21:36:01 +02:00
|
|
|
)
|
|
|
|
|
2023-05-30 19:50:24 +02:00
|
|
|
type webPushStore struct {
|
2023-05-24 21:36:01 +02:00
|
|
|
db *sql.DB
|
|
|
|
}
|
|
|
|
|
2023-05-30 19:50:24 +02:00
|
|
|
func newWebPushStore(filename string) (*webPushStore, error) {
|
2023-05-24 21:36:01 +02:00
|
|
|
db, err := sql.Open("sqlite3", filename)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2023-06-09 03:45:52 +02:00
|
|
|
if err := setupWebPushDB(db); err != nil {
|
2023-05-24 21:36:01 +02:00
|
|
|
return nil, err
|
|
|
|
}
|
2023-06-10 05:17:48 +02:00
|
|
|
if err := runWebPushStartupQueries(db); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2023-05-30 19:50:24 +02:00
|
|
|
return &webPushStore{
|
2023-05-24 21:36:01 +02:00
|
|
|
db: db,
|
2023-05-30 19:50:24 +02:00
|
|
|
}, nil
|
2023-05-24 21:36:01 +02:00
|
|
|
}
|
|
|
|
|
2023-06-09 03:45:52 +02:00
|
|
|
func setupWebPushDB(db *sql.DB) error {
|
|
|
|
// If 'schemaVersion' table does not exist, this must be a new database
|
|
|
|
rows, err := db.Query(selectWebPushSchemaVersionQuery)
|
2023-05-24 21:36:01 +02:00
|
|
|
if err != nil {
|
2023-06-09 03:45:52 +02:00
|
|
|
return setupNewWebPushDB(db)
|
2023-05-24 21:36:01 +02:00
|
|
|
}
|
2023-06-08 18:20:12 +02:00
|
|
|
return rows.Close()
|
2023-05-24 21:36:01 +02:00
|
|
|
}
|
|
|
|
|
2023-06-09 03:45:52 +02:00
|
|
|
func setupNewWebPushDB(db *sql.DB) error {
|
2023-05-24 21:36:01 +02:00
|
|
|
if _, err := db.Exec(createWebPushSubscriptionsTableQuery); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-06-09 03:45:52 +02:00
|
|
|
if _, err := db.Exec(insertWebPushSchemaVersion, currentWebPushSchemaVersion); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-05-24 21:36:01 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2023-06-10 05:17:48 +02:00
|
|
|
func runWebPushStartupQueries(db *sql.DB) error {
|
|
|
|
_, err := db.Exec(builtinStartupQueries)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2023-06-09 05:09:38 +02:00
|
|
|
// UpsertSubscription adds or updates Web Push subscriptions for the given topics and user ID. It always first deletes all
|
2023-06-09 03:45:52 +02:00
|
|
|
// existing entries for a given endpoint.
|
2023-06-10 05:17:48 +02:00
|
|
|
func (c *webPushStore) UpsertSubscription(endpoint string, auth, p256dh, userID string, topics []string) error {
|
2023-06-02 13:22:54 +02:00
|
|
|
tx, err := c.db.Begin()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer tx.Rollback()
|
2023-06-10 05:17:48 +02:00
|
|
|
// Read existing subscription ID for endpoint (or create new ID)
|
|
|
|
rows, err := tx.Query(selectWebPushSubscriptionIDByEndpoint, endpoint)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer rows.Close()
|
|
|
|
var subscriptionID string
|
|
|
|
if rows.Next() {
|
|
|
|
if err := rows.Scan(&subscriptionID); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
subscriptionID = util.RandomStringPrefix(subscriptionIDPrefix, subscriptionIDLength)
|
|
|
|
}
|
|
|
|
if err := rows.Close(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
// Insert or update subscription
|
|
|
|
updatedAt, warnedAt := time.Now().Unix(), 0
|
|
|
|
if _, err = tx.Exec(insertWebPushSubscriptionQuery, subscriptionID, endpoint, auth, p256dh, userID, updatedAt, warnedAt); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
// Replace all subscription topics
|
|
|
|
if _, err := tx.Exec(deleteWebPushSubscriptionTopicAllQuery, subscriptionID); err != nil {
|
2023-06-02 13:22:54 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
for _, topic := range topics {
|
2023-06-10 05:17:48 +02:00
|
|
|
if _, err = tx.Exec(insertWebPushSubscriptionTopicQuery, subscriptionID, topic); err != nil {
|
2023-06-02 13:22:54 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return tx.Commit()
|
2023-05-24 21:36:01 +02:00
|
|
|
}
|
|
|
|
|
2023-06-09 05:09:38 +02:00
|
|
|
func (c *webPushStore) SubscriptionsForTopic(topic string) ([]*webPushSubscription, error) {
|
2023-05-24 21:36:01 +02:00
|
|
|
rows, err := c.db.Query(selectWebPushSubscriptionsForTopicQuery, topic)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer rows.Close()
|
2023-06-10 05:17:48 +02:00
|
|
|
return c.subscriptionsFromRows(rows)
|
2023-05-24 21:36:01 +02:00
|
|
|
}
|
|
|
|
|
2023-06-10 05:17:48 +02:00
|
|
|
func (c *webPushStore) SubscriptionsExpiring(warnAfter time.Duration) ([]*webPushSubscription, error) {
|
|
|
|
rows, err := c.db.Query(selectWebPushSubscriptionsExpiringSoonQuery, time.Now().Add(-warnAfter).Unix())
|
2023-06-02 14:45:05 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2023-06-10 05:17:48 +02:00
|
|
|
defer rows.Close()
|
|
|
|
return c.subscriptionsFromRows(rows)
|
|
|
|
}
|
2023-06-02 14:45:05 +02:00
|
|
|
|
2023-06-10 05:17:48 +02:00
|
|
|
func (c *webPushStore) MarkExpiryWarningSent(subscriptions []*webPushSubscription) error {
|
|
|
|
tx, err := c.db.Begin()
|
2023-06-02 14:45:05 +02:00
|
|
|
if err != nil {
|
2023-06-10 05:17:48 +02:00
|
|
|
return err
|
2023-06-02 14:45:05 +02:00
|
|
|
}
|
2023-06-10 05:17:48 +02:00
|
|
|
defer tx.Rollback()
|
|
|
|
for _, subscription := range subscriptions {
|
|
|
|
if _, err := tx.Exec(updateWebPushSubscriptionWarningSentQuery, time.Now().Unix(), subscription.ID); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-06-02 14:45:05 +02:00
|
|
|
}
|
2023-06-10 05:17:48 +02:00
|
|
|
return tx.Commit()
|
|
|
|
}
|
2023-06-02 14:45:05 +02:00
|
|
|
|
2023-06-10 05:17:48 +02:00
|
|
|
func (c *webPushStore) subscriptionsFromRows(rows *sql.Rows) ([]*webPushSubscription, error) {
|
2023-06-09 05:09:38 +02:00
|
|
|
subscriptions := make([]*webPushSubscription, 0)
|
2023-06-02 14:45:05 +02:00
|
|
|
for rows.Next() {
|
2023-06-10 05:17:48 +02:00
|
|
|
var id, endpoint, auth, p256dh, userID string
|
|
|
|
if err := rows.Scan(&id, &endpoint, &auth, &p256dh, &userID); err != nil {
|
2023-06-02 14:45:05 +02:00
|
|
|
return nil, err
|
|
|
|
}
|
2023-06-09 05:09:38 +02:00
|
|
|
subscriptions = append(subscriptions, &webPushSubscription{
|
2023-06-10 05:17:48 +02:00
|
|
|
ID: id,
|
2023-06-09 05:09:38 +02:00
|
|
|
Endpoint: endpoint,
|
|
|
|
Auth: auth,
|
|
|
|
P256dh: p256dh,
|
|
|
|
UserID: userID,
|
|
|
|
})
|
2023-06-02 14:45:05 +02:00
|
|
|
}
|
2023-06-09 05:09:38 +02:00
|
|
|
return subscriptions, nil
|
2023-06-02 14:45:05 +02:00
|
|
|
}
|
|
|
|
|
2023-06-09 05:09:38 +02:00
|
|
|
func (c *webPushStore) RemoveSubscriptionsByEndpoint(endpoint string) error {
|
|
|
|
_, err := c.db.Exec(deleteWebPushSubscriptionByEndpointQuery, endpoint)
|
2023-05-24 21:36:01 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2023-06-09 05:09:38 +02:00
|
|
|
func (c *webPushStore) RemoveSubscriptionsByUserID(userID string) error {
|
|
|
|
_, err := c.db.Exec(deleteWebPushSubscriptionByUserIDQuery, userID)
|
2023-05-24 21:36:01 +02:00
|
|
|
return err
|
|
|
|
}
|
2023-06-02 14:45:05 +02:00
|
|
|
|
2023-06-10 05:17:48 +02:00
|
|
|
func (c *webPushStore) RemoveExpiredSubscriptions(expireAfter time.Duration) error {
|
|
|
|
_, err := c.db.Exec(deleteWebPushSubscriptionByAgeQuery, time.Now().Add(-expireAfter).Unix())
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2023-05-30 19:50:24 +02:00
|
|
|
func (c *webPushStore) Close() error {
|
2023-05-24 21:36:01 +02:00
|
|
|
return c.db.Close()
|
|
|
|
}
|