2020-07-06 16:49:15 +00:00
|
|
|
// Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package sqlite3
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"database/sql"
|
|
|
|
|
|
|
|
"github.com/matrix-org/dendrite/internal/sqlutil"
|
|
|
|
"github.com/matrix-org/dendrite/roomserver/storage/shared"
|
|
|
|
"github.com/matrix-org/dendrite/roomserver/storage/tables"
|
|
|
|
)
|
|
|
|
|
|
|
|
const redactionsSchema = `
|
|
|
|
-- Stores information about the redacted state of events.
|
|
|
|
-- We need to track redactions rather than blindly updating the event JSON table on receipt of a redaction
|
|
|
|
-- because we might receive the redaction BEFORE we receive the event which it redacts (think backfill).
|
|
|
|
CREATE TABLE IF NOT EXISTS roomserver_redactions (
|
|
|
|
redaction_event_id TEXT PRIMARY KEY,
|
|
|
|
redacts_event_id TEXT NOT NULL,
|
|
|
|
-- Initially FALSE, set to TRUE when the redaction has been validated according to rooms v3+ spec
|
|
|
|
-- https://matrix.org/docs/spec/rooms/v3#authorization-rules-for-events
|
|
|
|
validated BOOLEAN NOT NULL
|
|
|
|
);
|
|
|
|
`
|
|
|
|
|
|
|
|
const insertRedactionSQL = "" +
|
2020-10-14 14:24:43 +00:00
|
|
|
"INSERT OR IGNORE INTO roomserver_redactions (redaction_event_id, redacts_event_id, validated)" +
|
2020-07-06 16:49:15 +00:00
|
|
|
" VALUES ($1, $2, $3)"
|
|
|
|
|
2020-07-07 11:51:55 +00:00
|
|
|
const selectRedactionInfoByRedactionEventIDSQL = "" +
|
2020-07-06 16:49:15 +00:00
|
|
|
"SELECT redaction_event_id, redacts_event_id, validated FROM roomserver_redactions" +
|
|
|
|
" WHERE redaction_event_id = $1"
|
|
|
|
|
2020-07-07 11:51:55 +00:00
|
|
|
const selectRedactionInfoByEventBeingRedactedSQL = "" +
|
2020-07-06 16:49:15 +00:00
|
|
|
"SELECT redaction_event_id, redacts_event_id, validated FROM roomserver_redactions" +
|
|
|
|
" WHERE redacts_event_id = $1"
|
|
|
|
|
|
|
|
const markRedactionValidatedSQL = "" +
|
|
|
|
" UPDATE roomserver_redactions SET validated = $2 WHERE redaction_event_id = $1"
|
|
|
|
|
|
|
|
type redactionStatements struct {
|
2020-07-21 09:48:49 +00:00
|
|
|
db *sql.DB
|
2020-07-07 11:51:55 +00:00
|
|
|
insertRedactionStmt *sql.Stmt
|
|
|
|
selectRedactionInfoByRedactionEventIDStmt *sql.Stmt
|
|
|
|
selectRedactionInfoByEventBeingRedactedStmt *sql.Stmt
|
|
|
|
markRedactionValidatedStmt *sql.Stmt
|
2020-07-06 16:49:15 +00:00
|
|
|
}
|
|
|
|
|
2020-08-19 14:38:27 +00:00
|
|
|
func NewSqliteRedactionsTable(db *sql.DB) (tables.Redactions, error) {
|
2020-07-21 09:48:49 +00:00
|
|
|
s := &redactionStatements{
|
2020-08-19 14:38:27 +00:00
|
|
|
db: db,
|
2020-07-21 09:48:49 +00:00
|
|
|
}
|
2020-07-06 16:49:15 +00:00
|
|
|
_, err := db.Exec(redactionsSchema)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return s, shared.StatementList{
|
|
|
|
{&s.insertRedactionStmt, insertRedactionSQL},
|
2020-07-07 11:51:55 +00:00
|
|
|
{&s.selectRedactionInfoByRedactionEventIDStmt, selectRedactionInfoByRedactionEventIDSQL},
|
|
|
|
{&s.selectRedactionInfoByEventBeingRedactedStmt, selectRedactionInfoByEventBeingRedactedSQL},
|
2020-07-06 16:49:15 +00:00
|
|
|
{&s.markRedactionValidatedStmt, markRedactionValidatedSQL},
|
|
|
|
}.Prepare(db)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *redactionStatements) InsertRedaction(
|
|
|
|
ctx context.Context, txn *sql.Tx, info tables.RedactionInfo,
|
|
|
|
) error {
|
2020-08-19 14:38:27 +00:00
|
|
|
stmt := sqlutil.TxStmt(txn, s.insertRedactionStmt)
|
|
|
|
_, err := stmt.ExecContext(ctx, info.RedactionEventID, info.RedactsEventID, info.Validated)
|
|
|
|
return err
|
2020-07-06 16:49:15 +00:00
|
|
|
}
|
|
|
|
|
2020-07-07 11:51:55 +00:00
|
|
|
func (s *redactionStatements) SelectRedactionInfoByRedactionEventID(
|
2020-07-06 16:49:15 +00:00
|
|
|
ctx context.Context, txn *sql.Tx, redactionEventID string,
|
|
|
|
) (info *tables.RedactionInfo, err error) {
|
|
|
|
info = &tables.RedactionInfo{}
|
2020-07-07 11:51:55 +00:00
|
|
|
stmt := sqlutil.TxStmt(txn, s.selectRedactionInfoByRedactionEventIDStmt)
|
2020-07-06 16:49:15 +00:00
|
|
|
err = stmt.QueryRowContext(ctx, redactionEventID).Scan(
|
|
|
|
&info.RedactionEventID, &info.RedactsEventID, &info.Validated,
|
|
|
|
)
|
|
|
|
if err == sql.ErrNoRows {
|
|
|
|
info = nil
|
|
|
|
err = nil
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-07-07 11:51:55 +00:00
|
|
|
func (s *redactionStatements) SelectRedactionInfoByEventBeingRedacted(
|
|
|
|
ctx context.Context, txn *sql.Tx, eventID string,
|
2020-07-06 16:49:15 +00:00
|
|
|
) (info *tables.RedactionInfo, err error) {
|
|
|
|
info = &tables.RedactionInfo{}
|
2020-07-07 11:51:55 +00:00
|
|
|
stmt := sqlutil.TxStmt(txn, s.selectRedactionInfoByEventBeingRedactedStmt)
|
|
|
|
err = stmt.QueryRowContext(ctx, eventID).Scan(
|
2020-07-06 16:49:15 +00:00
|
|
|
&info.RedactionEventID, &info.RedactsEventID, &info.Validated,
|
|
|
|
)
|
|
|
|
if err == sql.ErrNoRows {
|
|
|
|
info = nil
|
|
|
|
err = nil
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *redactionStatements) MarkRedactionValidated(
|
|
|
|
ctx context.Context, txn *sql.Tx, redactionEventID string, validated bool,
|
|
|
|
) error {
|
2020-08-19 14:38:27 +00:00
|
|
|
stmt := sqlutil.TxStmt(txn, s.markRedactionValidatedStmt)
|
|
|
|
_, err := stmt.ExecContext(ctx, redactionEventID, validated)
|
|
|
|
return err
|
2020-07-06 16:49:15 +00:00
|
|
|
}
|