Documentation
¶
Overview ¶
Package storage contains storage interfaces and implementations.
Index ¶
- Constants
- Variables
- func ContextWithRelationshipTupleReader(parent context.Context, reader RelationshipTupleReader) context.Context
- func GetChangelogCacheKey(storeID string) string
- func GetCheckCacheKey(params *CheckCacheKeyParams) (string, error)
- func GetInvalidIteratorByObjectRelationCacheKeys(storeID, object, relation string) []string
- func GetInvalidIteratorByUserObjectTypeCacheKeys(storeID string, users []string, objectType string) []string
- func GetInvalidIteratorCacheKey(storeID string) string
- func GetReadCacheKey(store, tuple string) string
- func GetReadStartingWithUserCacheKeyPrefix(store, objectType, relation string) string
- func GetReadUsersetTuplesCacheKeyPrefix(store, object, relation string) string
- func InvalidWriteInputError(tk tuple.TupleWithoutCondition, operation openfgav1.TupleOperation) error
- func IterIsDoneOrCancelled(err error) bool
- type AssertionsBackend
- type AuthorizationModelBackend
- type AuthorizationModelReadBackend
- type ChangelogBackend
- type ChangelogCacheEntry
- type CheckCacheKeyParams
- type ConditionsFilteredTupleKeyIterator
- type ConsistencyOptions
- type Deletes
- type InMemoryCache
- type InMemoryLRUCache
- type InMemoryLRUCacheOpt
- type InvalidEntityCacheEntry
- type Iterator
- type ListStoresOptions
- type OpenFGADatastore
- type PaginationOptions
- type ReadAuthorizationModelsOptions
- type ReadChangesFilter
- type ReadChangesOptions
- type ReadOptions
- type ReadPageOptions
- type ReadStartingWithUserFilter
- type ReadStartingWithUserOptions
- type ReadUserTupleOptions
- type ReadUsersetTuplesFilter
- type ReadUsersetTuplesOptions
- type ReadinessStatus
- type RedBlackTreeSet
- type RelationshipTupleReader
- type RelationshipTupleWriter
- type SortedSet
- type StaticIterator
- type StoresBackend
- type TupleBackend
- type TupleIterator
- type TupleIteratorCacheEntry
- type TupleKeyConditionFilterFunc
- type TupleKeyFilterFunc
- type TupleKeyIterator
- func NewConditionsFilteredTupleKeyIterator(iter TupleKeyIterator, filter TupleKeyConditionFilterFunc) TupleKeyIterator
- func NewFilteredTupleKeyIterator(iter TupleKeyIterator, filter TupleKeyFilterFunc) TupleKeyIterator
- func NewStaticTupleKeyIterator(tupleKeys []*openfgav1.TupleKey) TupleKeyIterator
- func NewTupleKeyIteratorFromTupleIterator(iter TupleIterator) TupleKeyIterator
- type TupleRecord
- type TypeDefinitionWriteBackend
- type Writes
Constants ¶
const ( // DefaultMaxTuplesPerWrite specifies the default maximum number of tuples that can be written // in a single write operation. This constant is used to limit the batch size in write operations // to maintain performance and avoid overloading the system. The value is set to 100 tuples, // which is a balance between efficiency and resource usage. DefaultMaxTuplesPerWrite = 100 // DefaultMaxTypesPerAuthorizationModel defines the default upper limit on the number of distinct // types that can be included in a single authorization model. This constraint helps in managing // the complexity and ensuring the maintainability of the authorization models. The limit is // set to 100 types, providing ample flexibility while keeping the model manageable. DefaultMaxTypesPerAuthorizationModel = 100 // DefaultPageSize sets the default number of items to be returned in a single page when paginating // through a set of results. This constant is used to standardize the pagination size across various // parts of the system, ensuring a consistent and manageable volume of data per page. The default // value is set to 50, balancing detail per page with the overall number of pages. DefaultPageSize = 50 )
const (
SubproblemCachePrefix = "sp."
)
Variables ¶
var ( // ErrCollision is returned when an item already exists within the store. ErrCollision = errors.New("item already exists") // ErrInvalidContinuationToken is returned when the continuation token is invalid. ErrInvalidContinuationToken = errors.New("invalid continuation token") // ErrInvalidStartTime is returned when start time param for ReadChanges API is invalid. ErrInvalidStartTime = errors.New("invalid start time") // ErrInvalidWriteInput is returned when the tuple to be written // already existed or the tuple to be deleted did not exist. ErrInvalidWriteInput = errors.New("tuple to be written already existed or the tuple to be deleted did not exist") // ErrTransactionalWriteFailed is returned when two writes attempt to write the same tuple at the same time. ErrTransactionalWriteFailed = errors.New("transactional write failed due to conflict") // ErrNotFound is returned when the object does not exist. ErrNotFound = errors.New("not found") )
var ErrIteratorDone = errors.New("iterator done")
ErrIteratorDone is returned when the iterator has finished iterating through all the items.
Functions ¶
func ContextWithRelationshipTupleReader ¶ added in v1.5.0
func ContextWithRelationshipTupleReader( parent context.Context, reader RelationshipTupleReader, ) context.Context
ContextWithRelationshipTupleReader sets the provided [RelationshipTupleReader] in the context. The context returned is a new context derived from the parent context provided.
func GetChangelogCacheKey ¶ added in v1.7.0
func GetCheckCacheKey ¶ added in v1.8.1
func GetCheckCacheKey(params *CheckCacheKeyParams) (string, error)
GetCheckCacheKey converts the elements of a Check into a canonical cache key that can be used for Check resolution cache key lookups in a stable way.
For one store and model ID, the same tuple provided with the same contextual tuples and context should produce the same cache key. Contextual tuple order and context parameter order is ignored, only the contents are compared.
func GetInvalidIteratorByObjectRelationCacheKeys ¶ added in v1.7.0
func GetInvalidIteratorByUserObjectTypeCacheKeys ¶ added in v1.7.0
func GetInvalidIteratorCacheKey ¶ added in v1.7.0
func GetReadCacheKey ¶ added in v1.7.0
func GetReadStartingWithUserCacheKeyPrefix ¶ added in v1.7.0
func GetReadUsersetTuplesCacheKeyPrefix ¶ added in v1.7.0
func InvalidWriteInputError ¶
func InvalidWriteInputError(tk tuple.TupleWithoutCondition, operation openfgav1.TupleOperation) error
InvalidWriteInputError generates an error for invalid operations in a tuple store. This function is invoked when an attempt is made to write or delete a tuple with invalid conditions. Specifically, it addresses two scenarios: 1. Attempting to delete a non-existent tuple. 2. Attempting to write a tuple that already exists.
func IterIsDoneOrCancelled ¶ added in v1.6.1
IterIsDoneOrCancelled is true if the error is due to done or cancelled or deadline exceeded.
Types ¶
type AssertionsBackend ¶
type AssertionsBackend interface {
// WriteAssertions overwrites the assertions for a store and modelID.
WriteAssertions(ctx context.Context, store, modelID string, assertions []*openfgav1.Assertion) error
// ReadAssertions returns the assertions for a store and modelID.
// If no assertions were ever written, it must return an empty list.
ReadAssertions(ctx context.Context, store, modelID string) ([]*openfgav1.Assertion, error)
}
AssertionsBackend is an interface that defines the set of methods for reading and writing assertions.
type AuthorizationModelBackend ¶
type AuthorizationModelBackend interface {
AuthorizationModelReadBackend
TypeDefinitionWriteBackend
}
AuthorizationModelBackend provides an read/write interface for managing models and their type definitions.
type AuthorizationModelReadBackend ¶
type AuthorizationModelReadBackend interface {
// ReadAuthorizationModel reads the model corresponding to store and model ID.
// If it's not found, or if the model has zero types, it must return ErrNotFound.
ReadAuthorizationModel(ctx context.Context, store string, id string) (*openfgav1.AuthorizationModel, error)
// ReadAuthorizationModels reads all models for the supplied store and returns them in descending order of ULID (from newest to oldest).
// In addition to the models, it returns a continuation token that can be used to fetch the next page of results.
ReadAuthorizationModels(ctx context.Context, store string, options ReadAuthorizationModelsOptions) ([]*openfgav1.AuthorizationModel, string, error)
// FindLatestAuthorizationModel returns the last model for the store.
// If none were ever written, it must return ErrNotFound.
FindLatestAuthorizationModel(ctx context.Context, store string) (*openfgav1.AuthorizationModel, error)
}
AuthorizationModelReadBackend provides a read interface for managing type definitions.
type ChangelogBackend ¶
type ChangelogBackend interface {
// ReadChanges returns the writes and deletes that have occurred for tuples within a store,
// in the order that they occurred.
// You can optionally provide a filter to filter out changes for objects of a specific type.
// The horizonOffset should be specified using a unit no more granular than a millisecond.
// It should always return a ULID as a continuation token so readers can continue reading later, except the case where
// if no changes are found, it should return storage.ErrNotFound and an empty continuation token.
// It's important that the continuation token is a ULID, so it could be generated from timestamp.
ReadChanges(ctx context.Context, store string, filter ReadChangesFilter, options ReadChangesOptions) ([]*openfgav1.TupleChange, string, error)
}
ChangelogBackend is an interface for interacting with and managing changelogs.
type ChangelogCacheEntry ¶ added in v1.7.0
type CheckCacheKeyParams ¶ added in v1.8.1
type CheckCacheKeyParams struct {
StoreID string
AuthorizationModelID string
TupleKey *openfgav1.TupleKey
ContextualTuples []*openfgav1.TupleKey
Context *structpb.Struct
}
CheckCacheKeyParams is all the necessary pieces to create a unique-per-check cache key.
type ConditionsFilteredTupleKeyIterator ¶ added in v1.5.6
type ConditionsFilteredTupleKeyIterator struct {
// contains filtered or unexported fields
}
func (*ConditionsFilteredTupleKeyIterator) Head ¶ added in v1.5.9
Head returns the next most tuple in the underlying iterator that meets the filter function this iterator was constructed with. The underlying iterator may advance but calling consecutive Head will yield consistent result. Further, calling Head following by Next will also yield consistent result. This function is not thread-safe.
func (*ConditionsFilteredTupleKeyIterator) Next ¶ added in v1.5.6
Next returns the next most tuple in the underlying iterator that meets the filter function this iterator was constructed with. This function is not thread-safe.
func (*ConditionsFilteredTupleKeyIterator) Stop ¶ added in v1.5.6
func (f *ConditionsFilteredTupleKeyIterator) Stop()
Stop see [Iterator.Stop].
type ConsistencyOptions ¶ added in v1.5.7
type ConsistencyOptions struct {
Preference openfgav1.ConsistencyPreference
}
ConsistencyOptions represents the options that can be used for methods that accept a consistency preference.
type Deletes ¶
type Deletes = []*openfgav1.TupleKeyWithoutCondition
Deletes is a typesafe alias for Delete arguments.
type InMemoryCache ¶ added in v1.5.7
type InMemoryCache[T any] interface { // Get If the key exists, returns the value. If the key didn't exist, returns nil. Get(key string) T Set(key string, value T, ttl time.Duration) Delete(prefix string) // Stop cleans resources. Stop() }
InMemoryCache is a general purpose cache to store things in memory.
type InMemoryLRUCache ¶ added in v1.5.7
type InMemoryLRUCache[T any] struct { // contains filtered or unexported fields }
func NewInMemoryLRUCache ¶ added in v1.5.7
func NewInMemoryLRUCache[T any](opts ...InMemoryLRUCacheOpt[T]) (*InMemoryLRUCache[T], error)
func (InMemoryLRUCache[T]) Delete ¶ added in v1.7.0
func (i InMemoryLRUCache[T]) Delete(key string)
func (InMemoryLRUCache[T]) Get ¶ added in v1.5.7
func (i InMemoryLRUCache[T]) Get(key string) T
func (InMemoryLRUCache[T]) Set ¶ added in v1.5.7
func (i InMemoryLRUCache[T]) Set(key string, value T, ttl time.Duration)
func (InMemoryLRUCache[T]) Stop ¶ added in v1.5.7
func (i InMemoryLRUCache[T]) Stop()
type InMemoryLRUCacheOpt ¶ added in v1.5.7
type InMemoryLRUCacheOpt[T any] func(i *InMemoryLRUCache[T])
func WithMaxCacheSize ¶ added in v1.5.7
func WithMaxCacheSize[T any](maxElements int64) InMemoryLRUCacheOpt[T]
type InvalidEntityCacheEntry ¶ added in v1.7.0
type Iterator ¶
type Iterator[T any] interface { // Next will return the next available // item or ErrIteratorDone if no more // items are available. Next(ctx context.Context) (T, error) // Stop terminates iteration over // the underlying iterator. Stop() // Head will return the first item or ErrIteratorDone if the iterator // is empty. // It's possible for this method to advance the iterator internally, but a subsequent call to Next will not miss any results. // Calling Head() continuously without calling Next() will yield the same result (the first one) over and over. Head(ctx context.Context) (T, error) }
Iterator is a generic interface defining methods for iterating over a collection of items of type T.
func NewCombinedIterator ¶
NewCombinedIterator takes generic iterators of a given type T and combines them into a single iterator that yields all the values from all iterators. Duplicates can be returned.
func NewStaticIterator ¶ added in v1.8.1
type ListStoresOptions ¶ added in v1.5.7
type ListStoresOptions struct {
// IDs is a list of store IDs to filter the results.
IDs []string
Pagination PaginationOptions
}
ListStoresOptions represents the options that can be used with the ListStores method.
type OpenFGADatastore ¶
type OpenFGADatastore interface {
TupleBackend
AuthorizationModelBackend
StoresBackend
AssertionsBackend
ChangelogBackend
// IsReady reports whether the datastore is ready to accept traffic.
IsReady(ctx context.Context) (ReadinessStatus, error)
// Close closes the datastore and cleans up any residual resources.
Close()
}
OpenFGADatastore is an interface that defines a set of methods for interacting with and managing data in an OpenFGA (Fine-Grained Authorization) system.
type PaginationOptions ¶
type PaginationOptions struct {
PageSize int
// From is a continuation token that can be used to retrieve the next page of results. Its contents will depend on the API.
From string
}
PaginationOptions should not be instantiated directly. Use NewPaginationOptions.
func NewPaginationOptions ¶
func NewPaginationOptions(ps int32, contToken string) PaginationOptions
NewPaginationOptions creates a new PaginationOptions instance with a specified page size and continuation token. If the input page size is empty, it uses DefaultPageSize. The continuation token is used to retrieve the next page of results, OR the first page based on start time.
type ReadAuthorizationModelsOptions ¶ added in v1.5.7
type ReadAuthorizationModelsOptions struct {
Pagination PaginationOptions
}
ReadAuthorizationModelOptions represents the options that can be used with the ReadAuthorizationModels method.
type ReadChangesFilter ¶ added in v1.6.2
type ReadChangesOptions ¶ added in v1.5.7
type ReadChangesOptions struct {
Pagination PaginationOptions
SortDesc bool
}
ReadChangesOptions represents the options that can be used with the ReadChanges method.
type ReadOptions ¶ added in v1.5.7
type ReadOptions struct {
Consistency ConsistencyOptions
}
ReadOptions represents the options that can be used with the Read method.
type ReadPageOptions ¶ added in v1.5.7
type ReadPageOptions struct {
Pagination PaginationOptions
Consistency ConsistencyOptions
}
ReadPageOptions represents the options that can be used with the ReadPage method.
type ReadStartingWithUserFilter ¶
type ReadStartingWithUserFilter struct {
// Mandatory.
ObjectType string
// Mandatory.
Relation string
// Mandatory.
UserFilter []*openfgav1.ObjectRelation
// Optional. It can be nil. If present, it will be sorted in ascending order.
// The datastore should return the intersection between this filter and what is in the database.
ObjectIDs SortedSet
}
ReadStartingWithUserFilter specifies the filter options that will be used to constrain the [RelationshipTupleReader.ReadStartingWithUser] query.
type ReadStartingWithUserOptions ¶ added in v1.5.7
type ReadStartingWithUserOptions struct {
Consistency ConsistencyOptions
}
ReadStartingWithUserOptions represents the options that can be used with the ReadStartingWithUser method.
type ReadUserTupleOptions ¶ added in v1.5.7
type ReadUserTupleOptions struct {
Consistency ConsistencyOptions
}
ReadUserTupleOptions represents the options that can be used with the ReadUserTuple method.
type ReadUsersetTuplesFilter ¶ added in v0.4.0
type ReadUsersetTuplesFilter struct {
Object string // Required.
Relation string // Required.
AllowedUserTypeRestrictions []*openfgav1.RelationReference // Optional.
}
ReadUsersetTuplesFilter specifies the filter options that will be used to constrain the ReadUsersetTuples query.
type ReadUsersetTuplesOptions ¶ added in v1.5.7
type ReadUsersetTuplesOptions struct {
Consistency ConsistencyOptions
}
ReadUsersetTuplesOptions represents the options that can be used with the ReadUsersetTuples method.
type ReadinessStatus ¶ added in v1.3.8
type ReadinessStatus struct {
// Message is a human-friendly status message for the current datastore status.
Message string
IsReady bool
}
ReadinessStatus represents the readiness status of the datastore.
type RedBlackTreeSet ¶ added in v1.5.6
type RedBlackTreeSet struct {
// contains filtered or unexported fields
}
func NewSortedSet ¶ added in v1.5.6
func NewSortedSet(vals ...string) *RedBlackTreeSet
func (*RedBlackTreeSet) Add ¶ added in v1.5.6
func (r *RedBlackTreeSet) Add(value string)
func (*RedBlackTreeSet) Exists ¶ added in v1.5.6
func (r *RedBlackTreeSet) Exists(value string) bool
func (*RedBlackTreeSet) Max ¶ added in v1.5.6
func (r *RedBlackTreeSet) Max() string
func (*RedBlackTreeSet) Min ¶ added in v1.5.6
func (r *RedBlackTreeSet) Min() string
func (*RedBlackTreeSet) Size ¶ added in v1.5.6
func (r *RedBlackTreeSet) Size() int
func (*RedBlackTreeSet) Values ¶ added in v1.5.6
func (r *RedBlackTreeSet) Values() []string
type RelationshipTupleReader ¶
type RelationshipTupleReader interface {
// Read the set of tuples associated with `store` and `tupleKey`, which may be nil or partially filled. If nil,
// Read will return an iterator over all the tuples in the given `store`. If the `tupleKey` is partially filled,
// it will return an iterator over those tuples which match the `tupleKey`. Note that at least one of `Object`
// or `User` (or both), must be specified in this case.
//
// The caller must be careful to close the [TupleIterator], either by consuming the entire iterator or by closing it.
// There is NO guarantee on the order of the tuples returned on the iterator.
Read(ctx context.Context, store string, tupleKey *openfgav1.TupleKey, options ReadOptions) (TupleIterator, error)
// ReadPage functions similarly to Read but includes support for pagination. It takes
// mandatory ReadPageOptions options. PageSize will always be greater than zero.
// It returns a slice of tuples along with a continuation token. This token can be used for retrieving subsequent pages of data.
// There is NO guarantee on the order of the tuples in one page.
ReadPage(ctx context.Context, store string, tupleKey *openfgav1.TupleKey, options ReadPageOptions) ([]*openfgav1.Tuple, string, error)
// ReadUserTuple tries to return one tuple that matches the provided key exactly.
// If none is found, it must return [ErrNotFound].
ReadUserTuple(
ctx context.Context,
store string,
tupleKey *openfgav1.TupleKey,
options ReadUserTupleOptions,
) (*openfgav1.Tuple, error)
// ReadUsersetTuples returns all userset tuples for a specified object and relation.
// For example, given the following relationship tuples:
// document:doc1, viewer, user:*
// document:doc1, viewer, group:eng#member
// and the filter
// object=document:1, relation=viewer, allowedTypesForUser=[group#member]
// this method would return the tuple (document:doc1, viewer, group:eng#member)
// If allowedTypesForUser is empty, both tuples would be returned.
// There is NO guarantee on the order returned on the iterator.
ReadUsersetTuples(
ctx context.Context,
store string,
filter ReadUsersetTuplesFilter,
options ReadUsersetTuplesOptions,
) (TupleIterator, error)
// ReadStartingWithUser performs a reverse read of relationship tuples starting at one or
// more user(s) or userset(s) and filtered by object type and relation and possibly a list of object IDs.
//
// For example, given the following relationship tuples:
// document:doc1, viewer, user:jon
// document:doc2, viewer, group:eng#member
// document:doc3, editor, user:jon
// document:doc4, viewer, group:eng#member
//
// ReadStartingWithUser for ['user:jon', 'group:eng#member'] filtered by 'document#viewer'
// and 'document:doc1, document:doc2' would
// return ['document:doc1#viewer@user:jon', 'document:doc2#viewer@group:eng#member'].
// The result is sorted by object ID.
ReadStartingWithUser(
ctx context.Context,
store string,
filter ReadStartingWithUserFilter,
options ReadStartingWithUserOptions,
) (TupleIterator, error)
}
RelationshipTupleReader is an interface that defines the set of methods required to read relationship tuples from a data store.
func RelationshipTupleReaderFromContext ¶ added in v1.5.0
func RelationshipTupleReaderFromContext(ctx context.Context) (RelationshipTupleReader, bool)
RelationshipTupleReaderFromContext extracts a [RelationshipTupleReader] from the provided context (if any). If no such value is in the context a boolean false is returned, otherwise the RelationshipTupleReader is returned.
type RelationshipTupleWriter ¶
type RelationshipTupleWriter interface {
// Write updates data in the tuple backend, performing all delete operations in
// `deletes` before adding new values in `writes`.
// It must also write to the changelog.
// If two concurrent requests attempt to write the same tuple at the same time, it must return ErrTransactionalWriteFailed. TODO write test
// If the tuple to be written already existed or the tuple to be deleted didn't exist, it must return InvalidWriteInputError. TODO write test
Write(ctx context.Context, store string, d Deletes, w Writes) error
// MaxTuplesPerWrite returns the maximum number of items (writes and deletes combined)
// allowed in a single write transaction.
MaxTuplesPerWrite() int
}
RelationshipTupleWriter is an interface that defines the set of methods required for writing relationship tuples in a data store.
type SortedSet ¶ added in v1.5.6
type SortedSet interface {
Size() int
// Min returns an empty string if the set is empty.
Min() string
// Max returns an empty string if the set is empty.
Max() string
Add(value string)
Exists(value string) bool
// Values returns the elements in the set in sorted order (ascending).
Values() []string
}
SortedSet stores a set (no duplicates allowed) of string IDs in memory in a way that also provides fast sorted access.
type StaticIterator ¶ added in v1.8.1
type StaticIterator[T any] struct { // contains filtered or unexported fields }
func (*StaticIterator[T]) Head ¶ added in v1.8.1
func (s *StaticIterator[T]) Head(ctx context.Context) (T, error)
Head see [Iterator.Head].
func (*StaticIterator[T]) Next ¶ added in v1.8.1
func (s *StaticIterator[T]) Next(ctx context.Context) (T, error)
Next see [Iterator.Next].
func (*StaticIterator[T]) Stop ¶ added in v1.8.1
func (s *StaticIterator[T]) Stop()
Stop see [Iterator.Stop].
type StoresBackend ¶
type StoresBackend interface {
// CreateStore must return an error if the store ID or the name aren't set. TODO write test.
// If the store ID already existed it must return ErrCollision.
CreateStore(ctx context.Context, store *openfgav1.Store) (*openfgav1.Store, error)
// DeleteStore must delete the store by either setting its DeletedAt field or removing the entry.
DeleteStore(ctx context.Context, id string) error
// GetStore must return ErrNotFound if the store is not found or its DeletedAt is set.
GetStore(ctx context.Context, id string) (*openfgav1.Store, error)
// ListStores returns a list of non-deleted stores that match the provided options.
// In addition to the stores, it returns a continuation token that can be used to fetch the next page of results.
// If no stores are found, it is expected to return an empty list and an empty continuation token.
ListStores(ctx context.Context, options ListStoresOptions) ([]*openfgav1.Store, string, error)
}
type TupleBackend ¶
type TupleBackend interface {
RelationshipTupleReader
RelationshipTupleWriter
}
A TupleBackend provides a read/write interface for managing tuples.
type TupleIterator ¶
TupleIterator is an iterator for *openfgav1.Tuple(s). It is closed by explicitly calling [Iterator.Stop] or by calling [Iterator.Next] until it returns an ErrIteratorDone error.
func NewStaticTupleIterator ¶
func NewStaticTupleIterator(tuples []*openfgav1.Tuple) TupleIterator
NewStaticTupleIterator returns a TupleIterator that iterates over the provided slice.
type TupleIteratorCacheEntry ¶ added in v1.7.0
type TupleIteratorCacheEntry struct {
Tuples []*TupleRecord
LastModified time.Time
}
type TupleKeyConditionFilterFunc ¶ added in v1.5.6
TupleKeyConditionFilterFunc is a filter function that is used to filter out tuples from a TupleKeyIterator that don't meet the tuple the conditions provided by the request. Implementations should return true if the tuple should be returned and false if it should be filtered out. Errors will be treated as false. If none of the tuples are valid AND there are errors, Next() will return the last error.
type TupleKeyFilterFunc ¶
TupleKeyFilterFunc is a filter function that is used to filter out tuples from a TupleKeyIterator that don't meet certain criteria. Implementations should return true if the tuple should be returned and false if it should be filtered out.
type TupleKeyIterator ¶
TupleKeyIterator is an iterator for *openfgav1.TupleKey(s). It is closed by explicitly calling [Iterator.Stop] or by calling [Iterator.Next] until it returns an ErrIteratorDone error.
func NewConditionsFilteredTupleKeyIterator ¶ added in v1.5.6
func NewConditionsFilteredTupleKeyIterator(iter TupleKeyIterator, filter TupleKeyConditionFilterFunc) TupleKeyIterator
NewConditionsFilteredTupleKeyIterator returns a TupleKeyIterator that filters out all *openfgav1.Tuple(s) that don't meet the conditions of the provided TupleKeyFilterFunc.
func NewFilteredTupleKeyIterator ¶
func NewFilteredTupleKeyIterator(iter TupleKeyIterator, filter TupleKeyFilterFunc) TupleKeyIterator
NewFilteredTupleKeyIterator returns a TupleKeyIterator that filters out all *openfgav1.Tuple(s) that don't meet the conditions of the provided TupleKeyFilterFunc.
func NewStaticTupleKeyIterator ¶
func NewStaticTupleKeyIterator(tupleKeys []*openfgav1.TupleKey) TupleKeyIterator
NewStaticTupleKeyIterator returns a TupleKeyIterator that iterates over the provided slice.
func NewTupleKeyIteratorFromTupleIterator ¶
func NewTupleKeyIteratorFromTupleIterator(iter TupleIterator) TupleKeyIterator
NewTupleKeyIteratorFromTupleIterator takes a TupleIterator and yields all the *openfgav1.TupleKey(s) from it as a TupleKeyIterator.
type TupleRecord ¶ added in v1.3.8
type TupleRecord struct {
Store string
ObjectType string
ObjectID string
Relation string
User string // Deprecated: Use UserObjectType, UserObjectID & UserRelation instead.
UserObjectType string
UserObjectID string
UserRelation string
ConditionName string
ConditionContext *structpb.Struct
Ulid string
InsertedAt time.Time
}
TupleRecord represents a record structure used to store information about a specific tuple.
func (*TupleRecord) AsTuple ¶ added in v1.3.8
func (t *TupleRecord) AsTuple() *openfgav1.Tuple
AsTuple converts a TupleRecord into a *openfgav1.Tuple.
type TypeDefinitionWriteBackend ¶
type TypeDefinitionWriteBackend interface {
// MaxTypesPerAuthorizationModel returns the maximum number of type definition rows/items per model.
MaxTypesPerAuthorizationModel() int
// WriteAuthorizationModel writes an authorization model for the given store.
// If the model has zero types, the datastore may choose to do nothing and return no error.
WriteAuthorizationModel(ctx context.Context, store string, model *openfgav1.AuthorizationModel) error
}
TypeDefinitionWriteBackend provides a write interface for managing typed definition.
Source Files
¶
Directories
¶
| Path | Synopsis |
|---|---|
|
Package memory contains an implementation of the storage interface that lives in memory.
|
Package memory contains an implementation of the storage interface that lives in memory. |
|
Package mysql contains an implementation of the storage interface that works with MySQL.
|
Package mysql contains an implementation of the storage interface that works with MySQL. |
|
Package postgres contains an implementation of the storage interface that works with Postgres.
|
Package postgres contains an implementation of the storage interface that works with Postgres. |
|
Package sqlcommon contains utility functions shared among all SQL data stores.
|
Package sqlcommon contains utility functions shared among all SQL data stores. |
|
Package sqlite contains an implementation of the storage interface that works with SQLite.
|
Package sqlite contains an implementation of the storage interface that works with SQLite. |
|
Package storagewrappers contains decorators for storage implementations.
|
Package storagewrappers contains decorators for storage implementations. |