mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-15 04:18:01 +00:00
42 lines
1.2 KiB
Go
42 lines
1.2 KiB
Go
|
package view
|
||
|
|
||
|
import (
|
||
|
org_model "github.com/caos/zitadel/internal/org/model"
|
||
|
"github.com/caos/zitadel/internal/view"
|
||
|
"github.com/jinzhu/gorm"
|
||
|
)
|
||
|
|
||
|
func OrgByID(db *gorm.DB, table, orgID string) (*OrgView, error) {
|
||
|
org := new(OrgView)
|
||
|
query := view.PrepareGetByKey(table, OrgSearchKey(org_model.ORGSEARCHKEY_ORG_ID), orgID)
|
||
|
err := query(db, org)
|
||
|
return org, err
|
||
|
}
|
||
|
|
||
|
func SearchOrgs(db *gorm.DB, table string, req *org_model.OrgSearchRequest) ([]*OrgView, int, error) {
|
||
|
orgs := make([]*OrgView, 0)
|
||
|
query := view.PrepareSearchQuery(table, OrgSearchRequest{Limit: req.Limit, Offset: req.Offset, Queries: req.Queries})
|
||
|
count, err := query(db, &orgs)
|
||
|
if err != nil {
|
||
|
return nil, 0, err
|
||
|
}
|
||
|
return orgs, count, nil
|
||
|
}
|
||
|
|
||
|
func GetGlobalOrgByDomain(db *gorm.DB, table, domain string) (*OrgView, error) {
|
||
|
org := new(OrgView)
|
||
|
query := view.PrepareGetByKey(table, OrgSearchKey(org_model.ORGSEARCHKEY_ORG_DOMAIN), domain)
|
||
|
err := query(db, org)
|
||
|
return org, err
|
||
|
}
|
||
|
|
||
|
func PutOrg(db *gorm.DB, table string, org *OrgView) error {
|
||
|
save := view.PrepareSave(table)
|
||
|
return save(db, org)
|
||
|
}
|
||
|
|
||
|
func DeleteOrg(db *gorm.DB, table, orgID string) error {
|
||
|
delete := view.PrepareDeleteByKey(table, OrgSearchKey(org_model.ORGSEARCHKEY_ORG_ID), orgID)
|
||
|
return delete(db)
|
||
|
}
|