mirror of
https://github.com/usememos/memos.git
synced 2024-11-16 03:34:33 +08:00
134 lines
3.7 KiB
Go
134 lines
3.7 KiB
Go
package postgres
|
|
|
|
import (
|
|
"context"
|
|
"strings"
|
|
|
|
"github.com/pkg/errors"
|
|
"google.golang.org/protobuf/encoding/protojson"
|
|
|
|
storepb "github.com/usememos/memos/proto/gen/store"
|
|
"github.com/usememos/memos/store"
|
|
)
|
|
|
|
func (d *DB) CreateInbox(ctx context.Context, create *store.Inbox) (*store.Inbox, error) {
|
|
messageString := "{}"
|
|
if create.Message != nil {
|
|
bytes, err := protojson.Marshal(create.Message)
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "failed to marshal inbox message")
|
|
}
|
|
messageString = string(bytes)
|
|
}
|
|
|
|
fields := []string{"sender_id", "receiver_id", "status", "message"}
|
|
args := []any{create.SenderID, create.ReceiverID, create.Status, messageString}
|
|
stmt := "INSERT INTO inbox (" + strings.Join(fields, ", ") + ") VALUES (" + placeholders(len(args)) + ") RETURNING id, created_ts"
|
|
if err := d.db.QueryRowContext(ctx, stmt, args...).Scan(
|
|
&create.ID,
|
|
&create.CreatedTs,
|
|
); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return create, nil
|
|
}
|
|
|
|
func (d *DB) ListInboxes(ctx context.Context, find *store.FindInbox) ([]*store.Inbox, error) {
|
|
where, args := []string{"1 = 1"}, []any{}
|
|
|
|
if find.ID != nil {
|
|
where, args = append(where, "id = "+placeholder(len(args)+1)), append(args, *find.ID)
|
|
}
|
|
if find.SenderID != nil {
|
|
where, args = append(where, "sender_id = "+placeholder(len(args)+1)), append(args, *find.SenderID)
|
|
}
|
|
if find.ReceiverID != nil {
|
|
where, args = append(where, "receiver_id = "+placeholder(len(args)+1)), append(args, *find.ReceiverID)
|
|
}
|
|
if find.Status != nil {
|
|
where, args = append(where, "status = "+placeholder(len(args)+1)), append(args, *find.Status)
|
|
}
|
|
|
|
query := "SELECT id, created_ts, sender_id, receiver_id, status, message FROM inbox WHERE " + strings.Join(where, " AND ") + " ORDER BY created_ts DESC"
|
|
rows, err := d.db.QueryContext(ctx, query, args...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer rows.Close()
|
|
|
|
list := []*store.Inbox{}
|
|
for rows.Next() {
|
|
inbox := &store.Inbox{}
|
|
var messageBytes []byte
|
|
if err := rows.Scan(
|
|
&inbox.ID,
|
|
&inbox.CreatedTs,
|
|
&inbox.SenderID,
|
|
&inbox.ReceiverID,
|
|
&inbox.Status,
|
|
&messageBytes,
|
|
); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
message := &storepb.InboxMessage{}
|
|
if err := protojsonUnmarshaler.Unmarshal(messageBytes, message); err != nil {
|
|
return nil, err
|
|
}
|
|
inbox.Message = message
|
|
list = append(list, inbox)
|
|
}
|
|
|
|
if err := rows.Err(); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return list, nil
|
|
}
|
|
|
|
func (d *DB) GetInbox(ctx context.Context, find *store.FindInbox) (*store.Inbox, error) {
|
|
list, err := d.ListInboxes(ctx, find)
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "failed to get inbox")
|
|
}
|
|
if len(list) != 1 {
|
|
return nil, errors.Wrapf(nil, "unexpected inbox count: %d", len(list))
|
|
}
|
|
return list[0], nil
|
|
}
|
|
|
|
func (d *DB) UpdateInbox(ctx context.Context, update *store.UpdateInbox) (*store.Inbox, error) {
|
|
set, args := []string{"status = $1"}, []any{update.Status.String()}
|
|
args = append(args, update.ID)
|
|
query := "UPDATE inbox SET " + strings.Join(set, ", ") + " WHERE id = $2 RETURNING id, created_ts, sender_id, receiver_id, status, message"
|
|
inbox := &store.Inbox{}
|
|
var messageBytes []byte
|
|
if err := d.db.QueryRowContext(ctx, query, args...).Scan(
|
|
&inbox.ID,
|
|
&inbox.CreatedTs,
|
|
&inbox.SenderID,
|
|
&inbox.ReceiverID,
|
|
&inbox.Status,
|
|
&messageBytes,
|
|
); err != nil {
|
|
return nil, err
|
|
}
|
|
message := &storepb.InboxMessage{}
|
|
if err := protojsonUnmarshaler.Unmarshal(messageBytes, message); err != nil {
|
|
return nil, err
|
|
}
|
|
inbox.Message = message
|
|
return inbox, nil
|
|
}
|
|
|
|
func (d *DB) DeleteInbox(ctx context.Context, delete *store.DeleteInbox) error {
|
|
result, err := d.db.ExecContext(ctx, "DELETE FROM inbox WHERE id = $1", delete.ID)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if _, err := result.RowsAffected(); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|