store

package
v0.48.0-dev2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 24, 2025 License: BSD-3-Clause Imports: 21 Imported by: 2

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func GenerateKey

func GenerateKey() (string, error)

Types

type FieldEncrypt

type FieldEncrypt struct {
	// contains filtered or unexported fields
}

func NewFieldEncrypt

func NewFieldEncrypt(key string) (*FieldEncrypt, error)

func (*FieldEncrypt) Decrypt

func (ec *FieldEncrypt) Decrypt(data string) (string, error)

Decrypt decrypts ciphertext using AES-GCM

func (*FieldEncrypt) Encrypt

func (ec *FieldEncrypt) Encrypt(payload string) (string, error)

Encrypt encrypts plaintext using AES-GCM

func (*FieldEncrypt) LegacyDecrypt

func (ec *FieldEncrypt) LegacyDecrypt(data string) (string, error)

func (*FieldEncrypt) LegacyEncrypt

func (ec *FieldEncrypt) LegacyEncrypt(payload string) string

type Store

type Store struct {
	// contains filtered or unexported fields
}

Store is the implementation of the activity.Store interface backed by SQLite

func NewSqlStore

func NewSqlStore(ctx context.Context, dataDir string, encryptionKey string) (*Store, error)

NewSqlStore creates a new Store with an event table if not exists.

func (*Store) Close

func (store *Store) Close(_ context.Context) error

Close the Store

func (*Store) Get

func (store *Store) Get(ctx context.Context, accountID string, offset, limit int, descending bool) ([]*activity.Event, error)

Get returns "limit" number of events from index ordered descending or ascending by a timestamp

func (*Store) Save

func (store *Store) Save(_ context.Context, event *activity.Event) (*activity.Event, error)

Save an event in the SQLite events table end encrypt the "email" element in meta map

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL