zitadel/internal/eventstore/handler/statement.go
Fabi 5132ebe07c
feat: add tenant column to eventstore (#3314)
* feat: add tenant column to eventstore

* feat: read tenant from context on push and filter

* Update 07_events_table.sql

* pass tenant to queryFactory

* fix some query tests

* init in tests

* add missing sql files

Co-authored-by: Livio Amstutz <livio.a@gmail.com>
2022-03-15 07:19:02 +01:00

72 lines
1.5 KiB
Go

package handler
import (
"database/sql"
"encoding/json"
"errors"
"github.com/caos/logging"
"github.com/caos/zitadel/internal/eventstore"
)
var (
ErrNoProjection = errors.New("no projection")
ErrNoValues = errors.New("no values")
ErrNoCondition = errors.New("no condition")
ErrSomeStmtsFailed = errors.New("some statements failed")
)
type Statements []Statement
func (stmts Statements) Len() int { return len(stmts) }
func (stmts Statements) Swap(i, j int) { stmts[i], stmts[j] = stmts[j], stmts[i] }
func (stmts Statements) Less(i, j int) bool { return stmts[i].Sequence < stmts[j].Sequence }
type Statement struct {
AggregateType eventstore.AggregateType
Sequence uint64
PreviousSequence uint64
Execute func(ex Executer, projectionName string) error
}
func (s *Statement) IsNoop() bool {
return s.Execute == nil
}
type Executer interface {
Exec(string, ...interface{}) (sql.Result, error)
}
type Column struct {
Name string
Value interface{}
ParameterOpt func(string) string
}
func NewCol(name string, value interface{}) Column {
return Column{
Name: name,
Value: value,
}
}
func NewJSONCol(name string, value interface{}) Column {
marshalled, err := json.Marshal(value)
if err != nil {
logging.WithFields("column", name).WithError(err).Panic("unable to marshal column")
}
return NewCol(name, marshalled)
}
type Condition Column
func NewCond(name string, value interface{}) Condition {
return Condition{
Name: name,
Value: value,
}
}