mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
77b4fc5487
* beginning with postgres statements * try pgx * use pgx * database * init works for postgres * arrays working * init for cockroach * init * start tests * tests * TESTS * ch * ch * chore: use go 1.18 * read stmts * fix typo * tests * connection string * add missing error handler * cleanup * start all apis * go mod tidy * old update * switch back to minute * on conflict * replace string slice with `database.StringArray` in db models * fix tests and start * update go version in dockerfile * setup go * clean up * remove notification migration * update * docs: add deploy guide for postgres * fix: revert sonyflake * use `database.StringArray` for daos * use `database.StringArray` every where * new tables * index naming, metadata primary key, project grant role key type * docs(postgres): change to beta * chore: correct compose * fix(defaults): add empty postgres config * refactor: remove unused code * docs: add postgres to self hosted * fix broken link * so? * change title * add mdx to link * fix stmt * update goreleaser in test-code * docs: improve postgres example * update more projections * fix: add beta log for postgres * revert index name change * prerelease * fix: add sequence to v1 "reduce paniced" * log if nil * add logging * fix: log output * fix(import): check if org exists and user * refactor: imports * fix(user): ignore malformed events * refactor: method naming * fix: test * refactor: correct errors.Is call * ci: don't build dev binaries on main * fix(go releaser): update version to 1.11.0 * fix(user): projection should not break * fix(user): handle error properly * docs: correct config example * Update .releaserc.js * Update .releaserc.js Co-authored-by: Livio Amstutz <livio.a@gmail.com> Co-authored-by: Elio Bischof <eliobischof@gmail.com>
137 lines
4.3 KiB
Go
137 lines
4.3 KiB
Go
package repository
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/jinzhu/gorm"
|
|
|
|
"github.com/zitadel/zitadel/internal/database"
|
|
"github.com/zitadel/zitadel/internal/domain"
|
|
caos_errs "github.com/zitadel/zitadel/internal/errors"
|
|
)
|
|
|
|
type SearchRequest interface {
|
|
GetLimit() uint64
|
|
GetOffset() uint64
|
|
GetSortingColumn() ColumnKey
|
|
GetAsc() bool
|
|
GetQueries() []SearchQuery
|
|
}
|
|
|
|
type SearchQuery interface {
|
|
GetKey() ColumnKey
|
|
GetMethod() domain.SearchMethod
|
|
GetValue() interface{}
|
|
}
|
|
|
|
type ColumnKey interface {
|
|
ToColumnName() string
|
|
}
|
|
|
|
func PrepareSearchQuery(table string, request SearchRequest) func(db *gorm.DB, res interface{}) (uint64, error) {
|
|
return func(db *gorm.DB, res interface{}) (uint64, error) {
|
|
var count uint64 = 0
|
|
query := db.Table(table)
|
|
if column := request.GetSortingColumn(); column != nil {
|
|
order := "DESC"
|
|
if request.GetAsc() {
|
|
order = "ASC"
|
|
}
|
|
query = query.Order(fmt.Sprintf("%s %s", column.ToColumnName(), order))
|
|
}
|
|
|
|
for _, q := range request.GetQueries() {
|
|
var err error
|
|
query, err = SetQuery(query, q.GetKey(), q.GetValue(), q.GetMethod())
|
|
if err != nil {
|
|
return count, caos_errs.ThrowInvalidArgument(err, "VIEW-KaGue", "query is invalid")
|
|
}
|
|
}
|
|
|
|
query = query.Count(&count)
|
|
if res == nil {
|
|
return count, nil
|
|
}
|
|
if request.GetLimit() != 0 {
|
|
query = query.Limit(request.GetLimit())
|
|
}
|
|
query = query.Offset(request.GetOffset())
|
|
err := query.Find(res).Error
|
|
if err != nil {
|
|
return count, caos_errs.ThrowInternal(err, "VIEW-muSDK", "unable to find result")
|
|
}
|
|
return count, nil
|
|
}
|
|
}
|
|
|
|
func SetQuery(query *gorm.DB, key ColumnKey, value interface{}, method domain.SearchMethod) (*gorm.DB, error) {
|
|
column := key.ToColumnName()
|
|
if column == "" {
|
|
return nil, caos_errs.ThrowInvalidArgument(nil, "VIEW-7dz3w", "Column name missing")
|
|
}
|
|
|
|
switch method {
|
|
case domain.SearchMethodEquals:
|
|
query = query.Where(""+column+" = ?", value)
|
|
case domain.SearchMethodEqualsIgnoreCase:
|
|
valueText, ok := value.(string)
|
|
if !ok {
|
|
return nil, caos_errs.ThrowInvalidArgument(nil, "VIEW-idu8e", "Equal ignore case only possible for strings")
|
|
}
|
|
query = query.Where("LOWER("+column+") = LOWER(?)", valueText)
|
|
case domain.SearchMethodStartsWith:
|
|
valueText, ok := value.(string)
|
|
if !ok {
|
|
return nil, caos_errs.ThrowInvalidArgument(nil, "VIEW-SLj7s", "Starts with only possible for strings")
|
|
}
|
|
query = query.Where(column+" LIKE ?", valueText+"%")
|
|
case domain.SearchMethodStartsWithIgnoreCase:
|
|
valueText, ok := value.(string)
|
|
if !ok {
|
|
return nil, caos_errs.ThrowInvalidArgument(nil, "VIEW-eidus", "Starts with ignore case only possible for strings")
|
|
}
|
|
query = query.Where("LOWER("+column+") LIKE LOWER(?)", valueText+"%")
|
|
case domain.SearchMethodEndsWith:
|
|
valueText, ok := value.(string)
|
|
if !ok {
|
|
return nil, caos_errs.ThrowInvalidArgument(nil, "VIEW-Hswd3", "Ends with only possible for strings")
|
|
}
|
|
query = query.Where(column+" LIKE ?", "%"+valueText)
|
|
case domain.SearchMethodEndsWithIgnoreCase:
|
|
valueText, ok := value.(string)
|
|
if !ok {
|
|
return nil, caos_errs.ThrowInvalidArgument(nil, "VIEW-dAG31", "Ends with ignore case only possible for strings")
|
|
}
|
|
query = query.Where("LOWER("+column+") LIKE LOWER(?)", "%"+valueText)
|
|
case domain.SearchMethodContains:
|
|
valueText, ok := value.(string)
|
|
if !ok {
|
|
return nil, caos_errs.ThrowInvalidArgument(nil, "VIEW-3ids", "Contains with only possible for strings")
|
|
}
|
|
query = query.Where(column+" LIKE ?", "%"+valueText+"%")
|
|
case domain.SearchMethodContainsIgnoreCase:
|
|
valueText, ok := value.(string)
|
|
if !ok {
|
|
return nil, caos_errs.ThrowInvalidArgument(nil, "VIEW-eid73", "Contains with ignore case only possible for strings")
|
|
}
|
|
query = query.Where("LOWER("+column+") LIKE LOWER(?)", "%"+valueText+"%")
|
|
case domain.SearchMethodNotEquals:
|
|
query = query.Where(""+column+" <> ?", value)
|
|
case domain.SearchMethodGreaterThan:
|
|
query = query.Where(column+" > ?", value)
|
|
case domain.SearchMethodLessThan:
|
|
query = query.Where(column+" < ?", value)
|
|
case domain.SearchMethodIsOneOf:
|
|
query = query.Where(column+" IN (?)", value)
|
|
case domain.SearchMethodListContains:
|
|
valueText, ok := value.(string)
|
|
if !ok {
|
|
return nil, caos_errs.ThrowInvalidArgument(nil, "VIEW-Psois", "list contains only possible for strings")
|
|
}
|
|
query = query.Where("? <@ "+column, database.StringArray{valueText})
|
|
default:
|
|
return nil, nil
|
|
}
|
|
return query, nil
|
|
}
|