2020-01-03 14:07:05 +00:00
|
|
|
// Copyright 2017-2018 New Vector Ltd
|
|
|
|
// Copyright 2019-2020 The Matrix.org Foundation C.I.C.
|
2017-05-26 14:49:54 +00:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
2020-01-03 14:07:05 +00:00
|
|
|
package postgres
|
2017-05-26 14:49:54 +00:00
|
|
|
|
|
|
|
import (
|
2017-09-21 14:44:00 +00:00
|
|
|
"context"
|
2017-05-26 14:49:54 +00:00
|
|
|
"database/sql"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/matrix-org/dendrite/mediaapi/types"
|
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
|
|
)
|
|
|
|
|
|
|
|
const mediaSchema = `
|
|
|
|
-- The media_repository table holds metadata for each media file stored and accessible to the local server,
|
|
|
|
-- the actual file is stored separately.
|
2017-08-07 10:51:46 +00:00
|
|
|
CREATE TABLE IF NOT EXISTS mediaapi_media_repository (
|
2017-05-26 14:49:54 +00:00
|
|
|
-- The id used to refer to the media.
|
|
|
|
-- For uploads to this server this is a base64-encoded sha256 hash of the file data
|
|
|
|
-- For media from remote servers, this can be any unique identifier string
|
|
|
|
media_id TEXT NOT NULL,
|
|
|
|
-- The origin of the media as requested by the client. Should be a homeserver domain.
|
|
|
|
media_origin TEXT NOT NULL,
|
|
|
|
-- The MIME-type of the media file as specified when uploading.
|
|
|
|
content_type TEXT NOT NULL,
|
|
|
|
-- Size of the media file in bytes.
|
|
|
|
file_size_bytes BIGINT NOT NULL,
|
|
|
|
-- When the content was uploaded in UNIX epoch ms.
|
|
|
|
creation_ts BIGINT NOT NULL,
|
|
|
|
-- The file name with which the media was uploaded.
|
|
|
|
upload_name TEXT NOT NULL,
|
2017-05-31 05:11:00 +00:00
|
|
|
-- Alternate RFC 4648 unpadded base64 encoding string representation of a SHA-256 hash sum of the file data.
|
2017-05-26 14:49:54 +00:00
|
|
|
base64hash TEXT NOT NULL,
|
|
|
|
-- The user who uploaded the file. Should be a Matrix user ID.
|
|
|
|
user_id TEXT NOT NULL
|
|
|
|
);
|
2017-08-07 10:51:46 +00:00
|
|
|
CREATE UNIQUE INDEX IF NOT EXISTS mediaapi_media_repository_index ON mediaapi_media_repository (media_id, media_origin);
|
2017-05-26 14:49:54 +00:00
|
|
|
`
|
|
|
|
|
|
|
|
const insertMediaSQL = `
|
2017-08-07 10:51:46 +00:00
|
|
|
INSERT INTO mediaapi_media_repository (media_id, media_origin, content_type, file_size_bytes, creation_ts, upload_name, base64hash, user_id)
|
2017-05-26 15:24:13 +00:00
|
|
|
VALUES ($1, $2, $3, $4, $5, $6, $7, $8)
|
2017-05-26 14:49:54 +00:00
|
|
|
`
|
|
|
|
|
|
|
|
const selectMediaSQL = `
|
2017-08-07 10:51:46 +00:00
|
|
|
SELECT content_type, file_size_bytes, creation_ts, upload_name, base64hash, user_id FROM mediaapi_media_repository WHERE media_id = $1 AND media_origin = $2
|
2017-05-26 14:49:54 +00:00
|
|
|
`
|
|
|
|
|
2020-08-25 14:08:37 +00:00
|
|
|
const selectMediaByHashSQL = `
|
|
|
|
SELECT content_type, file_size_bytes, creation_ts, upload_name, media_id, user_id FROM mediaapi_media_repository WHERE base64hash = $1 AND media_origin = $2
|
|
|
|
`
|
|
|
|
|
2017-05-26 14:49:54 +00:00
|
|
|
type mediaStatements struct {
|
2020-08-25 14:08:37 +00:00
|
|
|
insertMediaStmt *sql.Stmt
|
|
|
|
selectMediaStmt *sql.Stmt
|
|
|
|
selectMediaByHashStmt *sql.Stmt
|
2017-05-26 14:49:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *mediaStatements) prepare(db *sql.DB) (err error) {
|
|
|
|
_, err = db.Exec(mediaSchema)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
return statementList{
|
|
|
|
{&s.insertMediaStmt, insertMediaSQL},
|
|
|
|
{&s.selectMediaStmt, selectMediaSQL},
|
2020-08-25 14:08:37 +00:00
|
|
|
{&s.selectMediaByHashStmt, selectMediaByHashSQL},
|
2017-05-26 14:49:54 +00:00
|
|
|
}.prepare(db)
|
|
|
|
}
|
|
|
|
|
2017-09-21 14:44:00 +00:00
|
|
|
func (s *mediaStatements) insertMedia(
|
|
|
|
ctx context.Context, mediaMetadata *types.MediaMetadata,
|
|
|
|
) error {
|
2017-05-26 14:49:54 +00:00
|
|
|
mediaMetadata.CreationTimestamp = types.UnixMs(time.Now().UnixNano() / 1000000)
|
2017-09-21 14:44:00 +00:00
|
|
|
_, err := s.insertMediaStmt.ExecContext(
|
|
|
|
ctx,
|
2017-05-26 14:49:54 +00:00
|
|
|
mediaMetadata.MediaID,
|
|
|
|
mediaMetadata.Origin,
|
|
|
|
mediaMetadata.ContentType,
|
|
|
|
mediaMetadata.FileSizeBytes,
|
|
|
|
mediaMetadata.CreationTimestamp,
|
|
|
|
mediaMetadata.UploadName,
|
|
|
|
mediaMetadata.Base64Hash,
|
|
|
|
mediaMetadata.UserID,
|
|
|
|
)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2017-09-21 14:44:00 +00:00
|
|
|
func (s *mediaStatements) selectMedia(
|
|
|
|
ctx context.Context, mediaID types.MediaID, mediaOrigin gomatrixserverlib.ServerName,
|
|
|
|
) (*types.MediaMetadata, error) {
|
2017-05-26 14:49:54 +00:00
|
|
|
mediaMetadata := types.MediaMetadata{
|
|
|
|
MediaID: mediaID,
|
|
|
|
Origin: mediaOrigin,
|
|
|
|
}
|
2017-09-21 14:44:00 +00:00
|
|
|
err := s.selectMediaStmt.QueryRowContext(
|
|
|
|
ctx, mediaMetadata.MediaID, mediaMetadata.Origin,
|
2017-05-26 14:49:54 +00:00
|
|
|
).Scan(
|
|
|
|
&mediaMetadata.ContentType,
|
|
|
|
&mediaMetadata.FileSizeBytes,
|
|
|
|
&mediaMetadata.CreationTimestamp,
|
|
|
|
&mediaMetadata.UploadName,
|
|
|
|
&mediaMetadata.Base64Hash,
|
|
|
|
&mediaMetadata.UserID,
|
|
|
|
)
|
|
|
|
return &mediaMetadata, err
|
|
|
|
}
|
2020-08-25 14:08:37 +00:00
|
|
|
|
|
|
|
func (s *mediaStatements) selectMediaByHash(
|
|
|
|
ctx context.Context, mediaHash types.Base64Hash, mediaOrigin gomatrixserverlib.ServerName,
|
|
|
|
) (*types.MediaMetadata, error) {
|
|
|
|
mediaMetadata := types.MediaMetadata{
|
|
|
|
Base64Hash: mediaHash,
|
|
|
|
Origin: mediaOrigin,
|
|
|
|
}
|
|
|
|
err := s.selectMediaStmt.QueryRowContext(
|
|
|
|
ctx, mediaMetadata.Base64Hash, mediaMetadata.Origin,
|
|
|
|
).Scan(
|
|
|
|
&mediaMetadata.ContentType,
|
|
|
|
&mediaMetadata.FileSizeBytes,
|
|
|
|
&mediaMetadata.CreationTimestamp,
|
|
|
|
&mediaMetadata.UploadName,
|
|
|
|
&mediaMetadata.MediaID,
|
|
|
|
&mediaMetadata.UserID,
|
|
|
|
)
|
|
|
|
return &mediaMetadata, err
|
|
|
|
}
|