Files
sonr/api/did/v1/state.cosmos_orm.go
T

915 lines
32 KiB
Go
Raw Normal View History

2024-07-05 22:20:13 -04:00
// Code generated by protoc-gen-go-cosmos-orm. DO NOT EDIT.
package didv1
import (
context "context"
ormlist "cosmossdk.io/orm/model/ormlist"
ormtable "cosmossdk.io/orm/model/ormtable"
ormerrors "cosmossdk.io/orm/types/ormerrors"
)
type AssertionTable interface {
Insert(ctx context.Context, assertion *Assertion) error
Update(ctx context.Context, assertion *Assertion) error
Save(ctx context.Context, assertion *Assertion) error
Delete(ctx context.Context, assertion *Assertion) error
Has(ctx context.Context, did string) (found bool, err error)
// Get returns nil and an error which responds true to ormerrors.IsNotFound() if the record was not found.
Get(ctx context.Context, did string) (*Assertion, error)
HasByControllerSubject(ctx context.Context, controller string, subject string) (found bool, err error)
// GetByControllerSubject returns nil and an error which responds true to ormerrors.IsNotFound() if the record was not found.
GetByControllerSubject(ctx context.Context, controller string, subject string) (*Assertion, error)
List(ctx context.Context, prefixKey AssertionIndexKey, opts ...ormlist.Option) (AssertionIterator, error)
ListRange(ctx context.Context, from, to AssertionIndexKey, opts ...ormlist.Option) (AssertionIterator, error)
DeleteBy(ctx context.Context, prefixKey AssertionIndexKey) error
DeleteRange(ctx context.Context, from, to AssertionIndexKey) error
doNotImplement()
}
type AssertionIterator struct {
ormtable.Iterator
}
func (i AssertionIterator) Value() (*Assertion, error) {
var assertion Assertion
err := i.UnmarshalMessage(&assertion)
return &assertion, err
}
type AssertionIndexKey interface {
id() uint32
values() []interface{}
assertionIndexKey()
}
// primary key starting index..
type AssertionPrimaryKey = AssertionDidIndexKey
type AssertionDidIndexKey struct {
vs []interface{}
}
func (x AssertionDidIndexKey) id() uint32 { return 0 }
func (x AssertionDidIndexKey) values() []interface{} { return x.vs }
func (x AssertionDidIndexKey) assertionIndexKey() {}
func (this AssertionDidIndexKey) WithDid(did string) AssertionDidIndexKey {
this.vs = []interface{}{did}
return this
}
type AssertionControllerSubjectIndexKey struct {
vs []interface{}
}
func (x AssertionControllerSubjectIndexKey) id() uint32 { return 1 }
func (x AssertionControllerSubjectIndexKey) values() []interface{} { return x.vs }
func (x AssertionControllerSubjectIndexKey) assertionIndexKey() {}
func (this AssertionControllerSubjectIndexKey) WithController(controller string) AssertionControllerSubjectIndexKey {
this.vs = []interface{}{controller}
return this
}
func (this AssertionControllerSubjectIndexKey) WithControllerSubject(controller string, subject string) AssertionControllerSubjectIndexKey {
this.vs = []interface{}{controller, subject}
return this
}
type assertionTable struct {
table ormtable.Table
}
func (this assertionTable) Insert(ctx context.Context, assertion *Assertion) error {
return this.table.Insert(ctx, assertion)
}
func (this assertionTable) Update(ctx context.Context, assertion *Assertion) error {
return this.table.Update(ctx, assertion)
}
func (this assertionTable) Save(ctx context.Context, assertion *Assertion) error {
return this.table.Save(ctx, assertion)
}
func (this assertionTable) Delete(ctx context.Context, assertion *Assertion) error {
return this.table.Delete(ctx, assertion)
}
func (this assertionTable) Has(ctx context.Context, did string) (found bool, err error) {
return this.table.PrimaryKey().Has(ctx, did)
}
func (this assertionTable) Get(ctx context.Context, did string) (*Assertion, error) {
var assertion Assertion
found, err := this.table.PrimaryKey().Get(ctx, &assertion, did)
if err != nil {
return nil, err
}
if !found {
return nil, ormerrors.NotFound
}
return &assertion, nil
}
func (this assertionTable) HasByControllerSubject(ctx context.Context, controller string, subject string) (found bool, err error) {
return this.table.GetIndexByID(1).(ormtable.UniqueIndex).Has(ctx,
controller,
subject,
)
}
func (this assertionTable) GetByControllerSubject(ctx context.Context, controller string, subject string) (*Assertion, error) {
var assertion Assertion
found, err := this.table.GetIndexByID(1).(ormtable.UniqueIndex).Get(ctx, &assertion,
controller,
subject,
)
if err != nil {
return nil, err
}
if !found {
return nil, ormerrors.NotFound
}
return &assertion, nil
}
func (this assertionTable) List(ctx context.Context, prefixKey AssertionIndexKey, opts ...ormlist.Option) (AssertionIterator, error) {
it, err := this.table.GetIndexByID(prefixKey.id()).List(ctx, prefixKey.values(), opts...)
return AssertionIterator{it}, err
}
func (this assertionTable) ListRange(ctx context.Context, from, to AssertionIndexKey, opts ...ormlist.Option) (AssertionIterator, error) {
it, err := this.table.GetIndexByID(from.id()).ListRange(ctx, from.values(), to.values(), opts...)
return AssertionIterator{it}, err
}
func (this assertionTable) DeleteBy(ctx context.Context, prefixKey AssertionIndexKey) error {
return this.table.GetIndexByID(prefixKey.id()).DeleteBy(ctx, prefixKey.values()...)
}
func (this assertionTable) DeleteRange(ctx context.Context, from, to AssertionIndexKey) error {
return this.table.GetIndexByID(from.id()).DeleteRange(ctx, from.values(), to.values())
}
func (this assertionTable) doNotImplement() {}
var _ AssertionTable = assertionTable{}
func NewAssertionTable(db ormtable.Schema) (AssertionTable, error) {
table := db.GetTable(&Assertion{})
if table == nil {
return nil, ormerrors.TableNotFound.Wrap(string((&Assertion{}).ProtoReflect().Descriptor().FullName()))
}
return assertionTable{table}, nil
}
type AuthenticationTable interface {
Insert(ctx context.Context, authentication *Authentication) error
Update(ctx context.Context, authentication *Authentication) error
Save(ctx context.Context, authentication *Authentication) error
Delete(ctx context.Context, authentication *Authentication) error
Has(ctx context.Context, did string) (found bool, err error)
2024-07-06 03:02:45 -04:00
// Get returns nil and an error which responds true to ormerrors.IsNotFound() if the record was not found.
Get(ctx context.Context, did string) (*Authentication, error)
HasByControllerSubject(ctx context.Context, controller string, subject string) (found bool, err error)
// GetByControllerSubject returns nil and an error which responds true to ormerrors.IsNotFound() if the record was not found.
GetByControllerSubject(ctx context.Context, controller string, subject string) (*Authentication, error)
List(ctx context.Context, prefixKey AuthenticationIndexKey, opts ...ormlist.Option) (AuthenticationIterator, error)
ListRange(ctx context.Context, from, to AuthenticationIndexKey, opts ...ormlist.Option) (AuthenticationIterator, error)
DeleteBy(ctx context.Context, prefixKey AuthenticationIndexKey) error
DeleteRange(ctx context.Context, from, to AuthenticationIndexKey) error
2024-07-06 03:02:45 -04:00
doNotImplement()
}
type AuthenticationIterator struct {
2024-07-06 03:02:45 -04:00
ormtable.Iterator
}
func (i AuthenticationIterator) Value() (*Authentication, error) {
var authentication Authentication
err := i.UnmarshalMessage(&authentication)
return &authentication, err
2024-07-06 03:02:45 -04:00
}
type AuthenticationIndexKey interface {
2024-07-06 03:02:45 -04:00
id() uint32
values() []interface{}
authenticationIndexKey()
2024-07-06 03:02:45 -04:00
}
// primary key starting index..
type AuthenticationPrimaryKey = AuthenticationDidIndexKey
2024-07-06 03:02:45 -04:00
type AuthenticationDidIndexKey struct {
2024-07-06 03:02:45 -04:00
vs []interface{}
}
func (x AuthenticationDidIndexKey) id() uint32 { return 0 }
func (x AuthenticationDidIndexKey) values() []interface{} { return x.vs }
func (x AuthenticationDidIndexKey) authenticationIndexKey() {}
2024-07-06 03:02:45 -04:00
func (this AuthenticationDidIndexKey) WithDid(did string) AuthenticationDidIndexKey {
this.vs = []interface{}{did}
2024-07-06 03:02:45 -04:00
return this
}
type AuthenticationControllerSubjectIndexKey struct {
2024-09-05 01:24:57 -04:00
vs []interface{}
}
func (x AuthenticationControllerSubjectIndexKey) id() uint32 { return 1 }
func (x AuthenticationControllerSubjectIndexKey) values() []interface{} { return x.vs }
func (x AuthenticationControllerSubjectIndexKey) authenticationIndexKey() {}
2024-09-05 01:24:57 -04:00
func (this AuthenticationControllerSubjectIndexKey) WithController(controller string) AuthenticationControllerSubjectIndexKey {
this.vs = []interface{}{controller}
2024-09-05 01:24:57 -04:00
return this
}
func (this AuthenticationControllerSubjectIndexKey) WithControllerSubject(controller string, subject string) AuthenticationControllerSubjectIndexKey {
this.vs = []interface{}{controller, subject}
2024-09-05 01:24:57 -04:00
return this
}
type authenticationTable struct {
2024-07-06 03:02:45 -04:00
table ormtable.Table
}
func (this authenticationTable) Insert(ctx context.Context, authentication *Authentication) error {
return this.table.Insert(ctx, authentication)
2024-07-06 03:02:45 -04:00
}
func (this authenticationTable) Update(ctx context.Context, authentication *Authentication) error {
return this.table.Update(ctx, authentication)
2024-07-06 03:02:45 -04:00
}
func (this authenticationTable) Save(ctx context.Context, authentication *Authentication) error {
return this.table.Save(ctx, authentication)
2024-07-06 03:02:45 -04:00
}
func (this authenticationTable) Delete(ctx context.Context, authentication *Authentication) error {
return this.table.Delete(ctx, authentication)
2024-07-06 03:02:45 -04:00
}
func (this authenticationTable) Has(ctx context.Context, did string) (found bool, err error) {
return this.table.PrimaryKey().Has(ctx, did)
2024-07-06 03:02:45 -04:00
}
func (this authenticationTable) Get(ctx context.Context, did string) (*Authentication, error) {
var authentication Authentication
found, err := this.table.PrimaryKey().Get(ctx, &authentication, did)
2024-07-06 03:02:45 -04:00
if err != nil {
return nil, err
}
if !found {
return nil, ormerrors.NotFound
}
return &authentication, nil
2024-07-06 03:02:45 -04:00
}
func (this authenticationTable) HasByControllerSubject(ctx context.Context, controller string, subject string) (found bool, err error) {
2024-09-05 01:24:57 -04:00
return this.table.GetIndexByID(1).(ormtable.UniqueIndex).Has(ctx,
controller,
2024-09-19 02:04:22 -04:00
subject,
2024-09-05 01:24:57 -04:00
)
}
func (this authenticationTable) GetByControllerSubject(ctx context.Context, controller string, subject string) (*Authentication, error) {
var authentication Authentication
found, err := this.table.GetIndexByID(1).(ormtable.UniqueIndex).Get(ctx, &authentication,
controller,
2024-09-19 02:04:22 -04:00
subject,
2024-09-05 01:24:57 -04:00
)
if err != nil {
return nil, err
}
if !found {
return nil, ormerrors.NotFound
}
return &authentication, nil
2024-09-05 01:24:57 -04:00
}
func (this authenticationTable) List(ctx context.Context, prefixKey AuthenticationIndexKey, opts ...ormlist.Option) (AuthenticationIterator, error) {
2024-07-05 22:20:13 -04:00
it, err := this.table.GetIndexByID(prefixKey.id()).List(ctx, prefixKey.values(), opts...)
return AuthenticationIterator{it}, err
2024-07-05 22:20:13 -04:00
}
func (this authenticationTable) ListRange(ctx context.Context, from, to AuthenticationIndexKey, opts ...ormlist.Option) (AuthenticationIterator, error) {
2024-07-05 22:20:13 -04:00
it, err := this.table.GetIndexByID(from.id()).ListRange(ctx, from.values(), to.values(), opts...)
return AuthenticationIterator{it}, err
2024-07-05 22:20:13 -04:00
}
func (this authenticationTable) DeleteBy(ctx context.Context, prefixKey AuthenticationIndexKey) error {
2024-07-05 22:20:13 -04:00
return this.table.GetIndexByID(prefixKey.id()).DeleteBy(ctx, prefixKey.values()...)
}
func (this authenticationTable) DeleteRange(ctx context.Context, from, to AuthenticationIndexKey) error {
2024-07-05 22:20:13 -04:00
return this.table.GetIndexByID(from.id()).DeleteRange(ctx, from.values(), to.values())
}
func (this authenticationTable) doNotImplement() {}
2024-07-05 22:20:13 -04:00
var _ AuthenticationTable = authenticationTable{}
2024-07-05 22:20:13 -04:00
func NewAuthenticationTable(db ormtable.Schema) (AuthenticationTable, error) {
table := db.GetTable(&Authentication{})
2024-07-05 22:20:13 -04:00
if table == nil {
return nil, ormerrors.TableNotFound.Wrap(string((&Authentication{}).ProtoReflect().Descriptor().FullName()))
2024-07-05 22:20:13 -04:00
}
return authenticationTable{table}, nil
2024-07-05 22:20:13 -04:00
}
type ControllerTable interface {
Insert(ctx context.Context, controller *Controller) error
2024-09-25 19:45:28 -04:00
InsertReturningNumber(ctx context.Context, controller *Controller) (uint64, error)
LastInsertedSequence(ctx context.Context) (uint64, error)
2024-07-05 22:20:13 -04:00
Update(ctx context.Context, controller *Controller) error
Save(ctx context.Context, controller *Controller) error
Delete(ctx context.Context, controller *Controller) error
2024-09-25 19:45:28 -04:00
Has(ctx context.Context, number uint64) (found bool, err error)
2024-07-05 22:20:13 -04:00
// Get returns nil and an error which responds true to ormerrors.IsNotFound() if the record was not found.
2024-09-25 19:45:28 -04:00
Get(ctx context.Context, number uint64) (*Controller, error)
2024-09-19 02:04:22 -04:00
HasBySonrAddress(ctx context.Context, sonr_address string) (found bool, err error)
// GetBySonrAddress returns nil and an error which responds true to ormerrors.IsNotFound() if the record was not found.
GetBySonrAddress(ctx context.Context, sonr_address string) (*Controller, error)
HasByEthAddress(ctx context.Context, eth_address string) (found bool, err error)
// GetByEthAddress returns nil and an error which responds true to ormerrors.IsNotFound() if the record was not found.
GetByEthAddress(ctx context.Context, eth_address string) (*Controller, error)
HasByBtcAddress(ctx context.Context, btc_address string) (found bool, err error)
// GetByBtcAddress returns nil and an error which responds true to ormerrors.IsNotFound() if the record was not found.
GetByBtcAddress(ctx context.Context, btc_address string) (*Controller, error)
2024-09-25 19:45:28 -04:00
HasByDid(ctx context.Context, did string) (found bool, err error)
// GetByDid returns nil and an error which responds true to ormerrors.IsNotFound() if the record was not found.
GetByDid(ctx context.Context, did string) (*Controller, error)
2024-07-05 22:20:13 -04:00
List(ctx context.Context, prefixKey ControllerIndexKey, opts ...ormlist.Option) (ControllerIterator, error)
ListRange(ctx context.Context, from, to ControllerIndexKey, opts ...ormlist.Option) (ControllerIterator, error)
DeleteBy(ctx context.Context, prefixKey ControllerIndexKey) error
DeleteRange(ctx context.Context, from, to ControllerIndexKey) error
doNotImplement()
}
type ControllerIterator struct {
ormtable.Iterator
}
func (i ControllerIterator) Value() (*Controller, error) {
var controller Controller
err := i.UnmarshalMessage(&controller)
return &controller, err
}
type ControllerIndexKey interface {
id() uint32
values() []interface{}
controllerIndexKey()
}
// primary key starting index..
2024-09-25 19:45:28 -04:00
type ControllerPrimaryKey = ControllerNumberIndexKey
2024-07-05 22:20:13 -04:00
2024-09-25 19:45:28 -04:00
type ControllerNumberIndexKey struct {
2024-07-05 22:20:13 -04:00
vs []interface{}
}
2024-09-25 19:45:28 -04:00
func (x ControllerNumberIndexKey) id() uint32 { return 0 }
func (x ControllerNumberIndexKey) values() []interface{} { return x.vs }
func (x ControllerNumberIndexKey) controllerIndexKey() {}
2024-07-05 22:20:13 -04:00
2024-09-25 19:45:28 -04:00
func (this ControllerNumberIndexKey) WithNumber(number uint64) ControllerNumberIndexKey {
this.vs = []interface{}{number}
2024-07-05 22:20:13 -04:00
return this
}
2024-09-19 02:04:22 -04:00
type ControllerSonrAddressIndexKey struct {
vs []interface{}
}
func (x ControllerSonrAddressIndexKey) id() uint32 { return 1 }
func (x ControllerSonrAddressIndexKey) values() []interface{} { return x.vs }
func (x ControllerSonrAddressIndexKey) controllerIndexKey() {}
func (this ControllerSonrAddressIndexKey) WithSonrAddress(sonr_address string) ControllerSonrAddressIndexKey {
this.vs = []interface{}{sonr_address}
return this
}
type ControllerEthAddressIndexKey struct {
vs []interface{}
}
func (x ControllerEthAddressIndexKey) id() uint32 { return 2 }
func (x ControllerEthAddressIndexKey) values() []interface{} { return x.vs }
func (x ControllerEthAddressIndexKey) controllerIndexKey() {}
func (this ControllerEthAddressIndexKey) WithEthAddress(eth_address string) ControllerEthAddressIndexKey {
this.vs = []interface{}{eth_address}
return this
}
type ControllerBtcAddressIndexKey struct {
2024-09-05 01:24:57 -04:00
vs []interface{}
}
2024-09-19 02:04:22 -04:00
func (x ControllerBtcAddressIndexKey) id() uint32 { return 3 }
func (x ControllerBtcAddressIndexKey) values() []interface{} { return x.vs }
func (x ControllerBtcAddressIndexKey) controllerIndexKey() {}
2024-09-05 01:24:57 -04:00
2024-09-19 02:04:22 -04:00
func (this ControllerBtcAddressIndexKey) WithBtcAddress(btc_address string) ControllerBtcAddressIndexKey {
this.vs = []interface{}{btc_address}
2024-09-05 01:24:57 -04:00
return this
}
2024-09-25 19:45:28 -04:00
type ControllerDidIndexKey struct {
2024-09-18 17:27:30 -04:00
vs []interface{}
}
2024-09-25 19:45:28 -04:00
func (x ControllerDidIndexKey) id() uint32 { return 4 }
func (x ControllerDidIndexKey) values() []interface{} { return x.vs }
func (x ControllerDidIndexKey) controllerIndexKey() {}
2024-09-18 17:27:30 -04:00
2024-09-25 19:45:28 -04:00
func (this ControllerDidIndexKey) WithDid(did string) ControllerDidIndexKey {
this.vs = []interface{}{did}
2024-09-19 02:04:22 -04:00
return this
}
2024-07-05 22:20:13 -04:00
type controllerTable struct {
2024-09-25 19:45:28 -04:00
table ormtable.AutoIncrementTable
2024-07-05 22:20:13 -04:00
}
func (this controllerTable) Insert(ctx context.Context, controller *Controller) error {
return this.table.Insert(ctx, controller)
}
func (this controllerTable) Update(ctx context.Context, controller *Controller) error {
return this.table.Update(ctx, controller)
}
func (this controllerTable) Save(ctx context.Context, controller *Controller) error {
return this.table.Save(ctx, controller)
}
func (this controllerTable) Delete(ctx context.Context, controller *Controller) error {
return this.table.Delete(ctx, controller)
}
2024-09-25 19:45:28 -04:00
func (this controllerTable) InsertReturningNumber(ctx context.Context, controller *Controller) (uint64, error) {
return this.table.InsertReturningPKey(ctx, controller)
}
func (this controllerTable) LastInsertedSequence(ctx context.Context) (uint64, error) {
return this.table.LastInsertedSequence(ctx)
}
func (this controllerTable) Has(ctx context.Context, number uint64) (found bool, err error) {
return this.table.PrimaryKey().Has(ctx, number)
2024-07-05 22:20:13 -04:00
}
2024-09-25 19:45:28 -04:00
func (this controllerTable) Get(ctx context.Context, number uint64) (*Controller, error) {
2024-07-05 22:20:13 -04:00
var controller Controller
2024-09-25 19:45:28 -04:00
found, err := this.table.PrimaryKey().Get(ctx, &controller, number)
2024-07-05 22:20:13 -04:00
if err != nil {
return nil, err
}
if !found {
return nil, ormerrors.NotFound
}
return &controller, nil
}
2024-09-19 02:04:22 -04:00
func (this controllerTable) HasBySonrAddress(ctx context.Context, sonr_address string) (found bool, err error) {
2024-09-05 01:24:57 -04:00
return this.table.GetIndexByID(1).(ormtable.UniqueIndex).Has(ctx,
2024-09-19 02:04:22 -04:00
sonr_address,
2024-09-05 01:24:57 -04:00
)
}
2024-09-19 02:04:22 -04:00
func (this controllerTable) GetBySonrAddress(ctx context.Context, sonr_address string) (*Controller, error) {
2024-09-05 01:24:57 -04:00
var controller Controller
found, err := this.table.GetIndexByID(1).(ormtable.UniqueIndex).Get(ctx, &controller,
2024-09-19 02:04:22 -04:00
sonr_address,
2024-09-05 01:24:57 -04:00
)
if err != nil {
return nil, err
}
if !found {
return nil, ormerrors.NotFound
}
return &controller, nil
}
2024-09-19 02:04:22 -04:00
func (this controllerTable) HasByEthAddress(ctx context.Context, eth_address string) (found bool, err error) {
2024-09-05 01:24:57 -04:00
return this.table.GetIndexByID(2).(ormtable.UniqueIndex).Has(ctx,
2024-09-19 02:04:22 -04:00
eth_address,
)
}
func (this controllerTable) GetByEthAddress(ctx context.Context, eth_address string) (*Controller, error) {
var controller Controller
found, err := this.table.GetIndexByID(2).(ormtable.UniqueIndex).Get(ctx, &controller,
eth_address,
)
if err != nil {
return nil, err
}
if !found {
return nil, ormerrors.NotFound
}
return &controller, nil
}
func (this controllerTable) HasByBtcAddress(ctx context.Context, btc_address string) (found bool, err error) {
return this.table.GetIndexByID(3).(ormtable.UniqueIndex).Has(ctx,
btc_address,
)
}
func (this controllerTable) GetByBtcAddress(ctx context.Context, btc_address string) (*Controller, error) {
var controller Controller
found, err := this.table.GetIndexByID(3).(ormtable.UniqueIndex).Get(ctx, &controller,
btc_address,
)
if err != nil {
return nil, err
}
if !found {
return nil, ormerrors.NotFound
}
return &controller, nil
}
2024-09-25 19:45:28 -04:00
func (this controllerTable) HasByDid(ctx context.Context, did string) (found bool, err error) {
2024-09-19 02:04:22 -04:00
return this.table.GetIndexByID(4).(ormtable.UniqueIndex).Has(ctx,
2024-09-25 19:45:28 -04:00
did,
2024-09-05 01:24:57 -04:00
)
}
2024-09-25 19:45:28 -04:00
func (this controllerTable) GetByDid(ctx context.Context, did string) (*Controller, error) {
2024-09-05 01:24:57 -04:00
var controller Controller
2024-09-19 02:04:22 -04:00
found, err := this.table.GetIndexByID(4).(ormtable.UniqueIndex).Get(ctx, &controller,
2024-09-25 19:45:28 -04:00
did,
2024-09-05 01:24:57 -04:00
)
if err != nil {
return nil, err
}
if !found {
return nil, ormerrors.NotFound
}
return &controller, nil
}
2024-07-05 22:20:13 -04:00
func (this controllerTable) List(ctx context.Context, prefixKey ControllerIndexKey, opts ...ormlist.Option) (ControllerIterator, error) {
it, err := this.table.GetIndexByID(prefixKey.id()).List(ctx, prefixKey.values(), opts...)
return ControllerIterator{it}, err
}
func (this controllerTable) ListRange(ctx context.Context, from, to ControllerIndexKey, opts ...ormlist.Option) (ControllerIterator, error) {
it, err := this.table.GetIndexByID(from.id()).ListRange(ctx, from.values(), to.values(), opts...)
return ControllerIterator{it}, err
}
func (this controllerTable) DeleteBy(ctx context.Context, prefixKey ControllerIndexKey) error {
return this.table.GetIndexByID(prefixKey.id()).DeleteBy(ctx, prefixKey.values()...)
}
func (this controllerTable) DeleteRange(ctx context.Context, from, to ControllerIndexKey) error {
return this.table.GetIndexByID(from.id()).DeleteRange(ctx, from.values(), to.values())
}
func (this controllerTable) doNotImplement() {}
var _ ControllerTable = controllerTable{}
func NewControllerTable(db ormtable.Schema) (ControllerTable, error) {
table := db.GetTable(&Controller{})
if table == nil {
return nil, ormerrors.TableNotFound.Wrap(string((&Controller{}).ProtoReflect().Descriptor().FullName()))
}
2024-09-25 19:45:28 -04:00
return controllerTable{table.(ormtable.AutoIncrementTable)}, nil
2024-07-05 22:20:13 -04:00
}
2024-09-18 17:27:30 -04:00
type VerificationTable interface {
Insert(ctx context.Context, verification *Verification) error
Update(ctx context.Context, verification *Verification) error
Save(ctx context.Context, verification *Verification) error
Delete(ctx context.Context, verification *Verification) error
2024-09-25 19:45:28 -04:00
Has(ctx context.Context, did string) (found bool, err error)
2024-07-05 22:20:13 -04:00
// Get returns nil and an error which responds true to ormerrors.IsNotFound() if the record was not found.
2024-09-25 19:45:28 -04:00
Get(ctx context.Context, did string) (*Verification, error)
2024-09-19 02:04:22 -04:00
HasByIssuerSubject(ctx context.Context, issuer string, subject string) (found bool, err error)
// GetByIssuerSubject returns nil and an error which responds true to ormerrors.IsNotFound() if the record was not found.
GetByIssuerSubject(ctx context.Context, issuer string, subject string) (*Verification, error)
HasByControllerDidMethodIssuer(ctx context.Context, controller string, did_method string, issuer string) (found bool, err error)
// GetByControllerDidMethodIssuer returns nil and an error which responds true to ormerrors.IsNotFound() if the record was not found.
GetByControllerDidMethodIssuer(ctx context.Context, controller string, did_method string, issuer string) (*Verification, error)
HasByVerificationTypeSubjectIssuer(ctx context.Context, verification_type string, subject string, issuer string) (found bool, err error)
// GetByVerificationTypeSubjectIssuer returns nil and an error which responds true to ormerrors.IsNotFound() if the record was not found.
GetByVerificationTypeSubjectIssuer(ctx context.Context, verification_type string, subject string, issuer string) (*Verification, error)
2024-09-18 17:27:30 -04:00
List(ctx context.Context, prefixKey VerificationIndexKey, opts ...ormlist.Option) (VerificationIterator, error)
ListRange(ctx context.Context, from, to VerificationIndexKey, opts ...ormlist.Option) (VerificationIterator, error)
DeleteBy(ctx context.Context, prefixKey VerificationIndexKey) error
DeleteRange(ctx context.Context, from, to VerificationIndexKey) error
2024-09-11 15:10:54 -04:00
doNotImplement()
}
2024-09-18 17:27:30 -04:00
type VerificationIterator struct {
2024-09-11 15:10:54 -04:00
ormtable.Iterator
}
2024-09-18 17:27:30 -04:00
func (i VerificationIterator) Value() (*Verification, error) {
var verification Verification
err := i.UnmarshalMessage(&verification)
return &verification, err
2024-09-11 15:10:54 -04:00
}
2024-09-18 17:27:30 -04:00
type VerificationIndexKey interface {
2024-09-11 15:10:54 -04:00
id() uint32
values() []interface{}
2024-09-18 17:27:30 -04:00
verificationIndexKey()
2024-09-11 15:10:54 -04:00
}
// primary key starting index..
2024-09-25 19:45:28 -04:00
type VerificationPrimaryKey = VerificationDidIndexKey
2024-09-11 15:10:54 -04:00
2024-09-25 19:45:28 -04:00
type VerificationDidIndexKey struct {
2024-09-11 15:10:54 -04:00
vs []interface{}
}
2024-09-25 19:45:28 -04:00
func (x VerificationDidIndexKey) id() uint32 { return 0 }
func (x VerificationDidIndexKey) values() []interface{} { return x.vs }
func (x VerificationDidIndexKey) verificationIndexKey() {}
2024-09-11 15:10:54 -04:00
2024-09-25 19:45:28 -04:00
func (this VerificationDidIndexKey) WithDid(did string) VerificationDidIndexKey {
this.vs = []interface{}{did}
2024-09-11 15:10:54 -04:00
return this
}
2024-09-19 02:04:22 -04:00
type VerificationIssuerSubjectIndexKey struct {
vs []interface{}
}
func (x VerificationIssuerSubjectIndexKey) id() uint32 { return 1 }
func (x VerificationIssuerSubjectIndexKey) values() []interface{} { return x.vs }
func (x VerificationIssuerSubjectIndexKey) verificationIndexKey() {}
func (this VerificationIssuerSubjectIndexKey) WithIssuer(issuer string) VerificationIssuerSubjectIndexKey {
this.vs = []interface{}{issuer}
return this
}
func (this VerificationIssuerSubjectIndexKey) WithIssuerSubject(issuer string, subject string) VerificationIssuerSubjectIndexKey {
this.vs = []interface{}{issuer, subject}
return this
}
type VerificationControllerDidMethodIssuerIndexKey struct {
2024-09-11 15:10:54 -04:00
vs []interface{}
}
2024-09-19 02:04:22 -04:00
func (x VerificationControllerDidMethodIssuerIndexKey) id() uint32 { return 2 }
func (x VerificationControllerDidMethodIssuerIndexKey) values() []interface{} { return x.vs }
func (x VerificationControllerDidMethodIssuerIndexKey) verificationIndexKey() {}
2024-09-11 15:10:54 -04:00
2024-09-19 02:04:22 -04:00
func (this VerificationControllerDidMethodIssuerIndexKey) WithController(controller string) VerificationControllerDidMethodIssuerIndexKey {
2024-09-11 15:10:54 -04:00
this.vs = []interface{}{controller}
return this
}
2024-09-19 02:04:22 -04:00
func (this VerificationControllerDidMethodIssuerIndexKey) WithControllerDidMethod(controller string, did_method string) VerificationControllerDidMethodIssuerIndexKey {
this.vs = []interface{}{controller, did_method}
2024-09-11 15:10:54 -04:00
return this
}
2024-09-19 02:04:22 -04:00
func (this VerificationControllerDidMethodIssuerIndexKey) WithControllerDidMethodIssuer(controller string, did_method string, issuer string) VerificationControllerDidMethodIssuerIndexKey {
this.vs = []interface{}{controller, did_method, issuer}
2024-09-11 15:10:54 -04:00
return this
}
2024-09-19 02:04:22 -04:00
type VerificationVerificationTypeSubjectIssuerIndexKey struct {
vs []interface{}
}
func (x VerificationVerificationTypeSubjectIssuerIndexKey) id() uint32 { return 3 }
func (x VerificationVerificationTypeSubjectIssuerIndexKey) values() []interface{} { return x.vs }
func (x VerificationVerificationTypeSubjectIssuerIndexKey) verificationIndexKey() {}
func (this VerificationVerificationTypeSubjectIssuerIndexKey) WithVerificationType(verification_type string) VerificationVerificationTypeSubjectIssuerIndexKey {
this.vs = []interface{}{verification_type}
return this
}
func (this VerificationVerificationTypeSubjectIssuerIndexKey) WithVerificationTypeSubject(verification_type string, subject string) VerificationVerificationTypeSubjectIssuerIndexKey {
this.vs = []interface{}{verification_type, subject}
return this
}
func (this VerificationVerificationTypeSubjectIssuerIndexKey) WithVerificationTypeSubjectIssuer(verification_type string, subject string, issuer string) VerificationVerificationTypeSubjectIssuerIndexKey {
this.vs = []interface{}{verification_type, subject, issuer}
2024-09-11 15:10:54 -04:00
return this
}
2024-09-18 17:27:30 -04:00
type verificationTable struct {
2024-09-11 15:10:54 -04:00
table ormtable.Table
}
2024-09-18 17:27:30 -04:00
func (this verificationTable) Insert(ctx context.Context, verification *Verification) error {
return this.table.Insert(ctx, verification)
2024-09-11 15:10:54 -04:00
}
2024-09-18 17:27:30 -04:00
func (this verificationTable) Update(ctx context.Context, verification *Verification) error {
return this.table.Update(ctx, verification)
2024-09-11 15:10:54 -04:00
}
2024-09-18 17:27:30 -04:00
func (this verificationTable) Save(ctx context.Context, verification *Verification) error {
return this.table.Save(ctx, verification)
2024-09-11 15:10:54 -04:00
}
2024-09-18 17:27:30 -04:00
func (this verificationTable) Delete(ctx context.Context, verification *Verification) error {
return this.table.Delete(ctx, verification)
2024-09-11 15:10:54 -04:00
}
2024-09-25 19:45:28 -04:00
func (this verificationTable) Has(ctx context.Context, did string) (found bool, err error) {
return this.table.PrimaryKey().Has(ctx, did)
2024-09-11 15:10:54 -04:00
}
2024-09-25 19:45:28 -04:00
func (this verificationTable) Get(ctx context.Context, did string) (*Verification, error) {
2024-09-18 17:27:30 -04:00
var verification Verification
2024-09-25 19:45:28 -04:00
found, err := this.table.PrimaryKey().Get(ctx, &verification, did)
2024-09-11 15:10:54 -04:00
if err != nil {
return nil, err
}
if !found {
return nil, ormerrors.NotFound
}
2024-09-18 17:27:30 -04:00
return &verification, nil
2024-09-11 15:10:54 -04:00
}
2024-09-19 02:04:22 -04:00
func (this verificationTable) HasByIssuerSubject(ctx context.Context, issuer string, subject string) (found bool, err error) {
2024-09-11 15:10:54 -04:00
return this.table.GetIndexByID(1).(ormtable.UniqueIndex).Has(ctx,
issuer,
subject,
)
}
2024-09-19 02:04:22 -04:00
func (this verificationTable) GetByIssuerSubject(ctx context.Context, issuer string, subject string) (*Verification, error) {
2024-09-18 17:27:30 -04:00
var verification Verification
found, err := this.table.GetIndexByID(1).(ormtable.UniqueIndex).Get(ctx, &verification,
2024-09-19 02:04:22 -04:00
issuer,
subject,
)
if err != nil {
return nil, err
}
if !found {
return nil, ormerrors.NotFound
}
return &verification, nil
}
func (this verificationTable) HasByControllerDidMethodIssuer(ctx context.Context, controller string, did_method string, issuer string) (found bool, err error) {
return this.table.GetIndexByID(2).(ormtable.UniqueIndex).Has(ctx,
2024-09-11 15:10:54 -04:00
controller,
2024-09-19 02:04:22 -04:00
did_method,
2024-09-11 15:10:54 -04:00
issuer,
2024-09-19 02:04:22 -04:00
)
}
func (this verificationTable) GetByControllerDidMethodIssuer(ctx context.Context, controller string, did_method string, issuer string) (*Verification, error) {
var verification Verification
found, err := this.table.GetIndexByID(2).(ormtable.UniqueIndex).Get(ctx, &verification,
controller,
did_method,
issuer,
)
if err != nil {
return nil, err
}
if !found {
return nil, ormerrors.NotFound
}
return &verification, nil
}
func (this verificationTable) HasByVerificationTypeSubjectIssuer(ctx context.Context, verification_type string, subject string, issuer string) (found bool, err error) {
return this.table.GetIndexByID(3).(ormtable.UniqueIndex).Has(ctx,
verification_type,
2024-09-11 15:10:54 -04:00
subject,
2024-09-19 02:04:22 -04:00
issuer,
)
}
func (this verificationTable) GetByVerificationTypeSubjectIssuer(ctx context.Context, verification_type string, subject string, issuer string) (*Verification, error) {
var verification Verification
found, err := this.table.GetIndexByID(3).(ormtable.UniqueIndex).Get(ctx, &verification,
verification_type,
subject,
issuer,
2024-09-11 15:10:54 -04:00
)
if err != nil {
return nil, err
}
if !found {
return nil, ormerrors.NotFound
}
2024-09-18 17:27:30 -04:00
return &verification, nil
2024-09-11 15:10:54 -04:00
}
2024-09-18 17:27:30 -04:00
func (this verificationTable) List(ctx context.Context, prefixKey VerificationIndexKey, opts ...ormlist.Option) (VerificationIterator, error) {
2024-09-11 15:10:54 -04:00
it, err := this.table.GetIndexByID(prefixKey.id()).List(ctx, prefixKey.values(), opts...)
2024-09-18 17:27:30 -04:00
return VerificationIterator{it}, err
2024-09-11 15:10:54 -04:00
}
2024-09-18 17:27:30 -04:00
func (this verificationTable) ListRange(ctx context.Context, from, to VerificationIndexKey, opts ...ormlist.Option) (VerificationIterator, error) {
2024-09-11 15:10:54 -04:00
it, err := this.table.GetIndexByID(from.id()).ListRange(ctx, from.values(), to.values(), opts...)
2024-09-18 17:27:30 -04:00
return VerificationIterator{it}, err
2024-09-11 15:10:54 -04:00
}
2024-09-18 17:27:30 -04:00
func (this verificationTable) DeleteBy(ctx context.Context, prefixKey VerificationIndexKey) error {
2024-09-11 15:10:54 -04:00
return this.table.GetIndexByID(prefixKey.id()).DeleteBy(ctx, prefixKey.values()...)
}
2024-09-18 17:27:30 -04:00
func (this verificationTable) DeleteRange(ctx context.Context, from, to VerificationIndexKey) error {
2024-09-11 15:10:54 -04:00
return this.table.GetIndexByID(from.id()).DeleteRange(ctx, from.values(), to.values())
}
2024-09-18 17:27:30 -04:00
func (this verificationTable) doNotImplement() {}
2024-09-11 15:10:54 -04:00
2024-09-18 17:27:30 -04:00
var _ VerificationTable = verificationTable{}
2024-09-11 15:10:54 -04:00
2024-09-18 17:27:30 -04:00
func NewVerificationTable(db ormtable.Schema) (VerificationTable, error) {
table := db.GetTable(&Verification{})
2024-09-11 15:10:54 -04:00
if table == nil {
2024-09-18 17:27:30 -04:00
return nil, ormerrors.TableNotFound.Wrap(string((&Verification{}).ProtoReflect().Descriptor().FullName()))
2024-09-11 15:10:54 -04:00
}
2024-09-18 17:27:30 -04:00
return verificationTable{table}, nil
2024-09-11 15:10:54 -04:00
}
2024-07-05 22:20:13 -04:00
type StateStore interface {
AssertionTable() AssertionTable
AuthenticationTable() AuthenticationTable
2024-07-05 22:20:13 -04:00
ControllerTable() ControllerTable
2024-09-18 17:27:30 -04:00
VerificationTable() VerificationTable
2024-07-05 22:20:13 -04:00
doNotImplement()
}
type stateStore struct {
assertion AssertionTable
authentication AuthenticationTable
controller ControllerTable
verification VerificationTable
2024-07-05 22:20:13 -04:00
}
func (x stateStore) AssertionTable() AssertionTable {
return x.assertion
}
func (x stateStore) AuthenticationTable() AuthenticationTable {
return x.authentication
2024-07-05 22:20:13 -04:00
}
func (x stateStore) ControllerTable() ControllerTable {
return x.controller
}
2024-09-18 17:27:30 -04:00
func (x stateStore) VerificationTable() VerificationTable {
return x.verification
2024-09-11 15:10:54 -04:00
}
2024-07-05 22:20:13 -04:00
func (stateStore) doNotImplement() {}
var _ StateStore = stateStore{}
func NewStateStore(db ormtable.Schema) (StateStore, error) {
assertionTable, err := NewAssertionTable(db)
if err != nil {
return nil, err
}
authenticationTable, err := NewAuthenticationTable(db)
2024-07-06 03:02:45 -04:00
if err != nil {
return nil, err
}
2024-09-11 15:10:54 -04:00
controllerTable, err := NewControllerTable(db)
2024-07-05 22:20:13 -04:00
if err != nil {
return nil, err
}
2024-09-18 17:27:30 -04:00
verificationTable, err := NewVerificationTable(db)
2024-07-05 22:20:13 -04:00
if err != nil {
return nil, err
}
return stateStore{
assertionTable,
authenticationTable,
2024-07-05 22:20:13 -04:00
controllerTable,
2024-09-18 17:27:30 -04:00
verificationTable,
2024-07-05 22:20:13 -04:00
}, nil
}