|
@@ -32,7 +32,7 @@ type Query struct {
|
|
|
|
|
|
tblName string
|
|
|
pkName string
|
|
|
- Sess sec.Sess
|
|
|
+ Auth *sec.Auth
|
|
|
err error
|
|
|
ready bool
|
|
|
|
|
@@ -42,7 +42,8 @@ type Query struct {
|
|
|
vals []any
|
|
|
}
|
|
|
|
|
|
-func (q *Query) New(targetInt interface{}, sess sec.Sess) *Query {
|
|
|
+func (q *Query) New(targetInt interface{}, auth *sec.Auth) *Query {
|
|
|
+
|
|
|
q.targetInt = targetInt
|
|
|
q.targetPtr = reflect.ValueOf(q.targetInt)
|
|
|
|
|
@@ -54,8 +55,8 @@ func (q *Query) New(targetInt interface{}, sess sec.Sess) *Query {
|
|
|
q.targetVal = q.targetPtr.Elem()
|
|
|
q.sel = "*"
|
|
|
|
|
|
- // Get the session
|
|
|
- q.Sess = sess
|
|
|
+ // Get the secion
|
|
|
+ q.Auth = auth
|
|
|
|
|
|
if q.targetVal.Kind().String() == "slice" {
|
|
|
q.newSlice()
|
|
@@ -176,7 +177,7 @@ func (q *Query) Create() (int64, error) {
|
|
|
"INSERT INTO %s (%s) VALUES (%s)", q.tblName, strings.Join(fields, ", "), strings.Join(plcHdr, ", "),
|
|
|
)
|
|
|
|
|
|
- q.targetVal.FieldByName("Sess").Set(reflect.ValueOf(&q.Sess))
|
|
|
+ q.targetVal.FieldByName("sec").Set(reflect.ValueOf(&q.Auth))
|
|
|
createRuleMethod := q.targetPtr.MethodByName("CreateRule")
|
|
|
createRulePassed := createRuleMethod.Call(nil)[0].Bool()
|
|
|
|
|
@@ -241,7 +242,7 @@ func (q *Query) Update() error {
|
|
|
tmpModel := reflect.New(q.modelType)
|
|
|
|
|
|
tmpQuery := Query{}
|
|
|
- q.err = tmpQuery.New(tmpModel.Interface(), q.Sess).Read(int(id.Int()))
|
|
|
+ q.err = tmpQuery.New(tmpModel.Interface(), q.Auth).Read(int(id.Int()))
|
|
|
|
|
|
if q.err != nil {
|
|
|
return q.err
|
|
@@ -302,7 +303,7 @@ func (q *Query) Delete() error {
|
|
|
tmpModel := reflect.New(q.targetVal.Type())
|
|
|
|
|
|
tmpQuery := Query{}
|
|
|
- tmpQuery.New(tmpModel.Interface(), q.Sess).Read(int(id.Int()))
|
|
|
+ tmpQuery.New(tmpModel.Interface(), q.Auth).Read(int(id.Int()))
|
|
|
|
|
|
existRuleMethod := tmpModel.MethodByName("DeleteRule")
|
|
|
existRulePassed := existRuleMethod.Call(nil)[0].Bool()
|
|
@@ -325,15 +326,17 @@ func (q *Query) Delete() error {
|
|
|
}
|
|
|
|
|
|
func (q *Query) Get() error {
|
|
|
- q.targetVal.FieldByName("Sess").Set(reflect.ValueOf(&q.Sess))
|
|
|
+
|
|
|
+ q.targetVal.FieldByName("Auth").Set(reflect.ValueOf(q.Auth))
|
|
|
|
|
|
// Create a temp model to store the data
|
|
|
tmpModel := reflect.New(q.modelType)
|
|
|
tmpModelElem := tmpModel.Elem()
|
|
|
- tmpModelElem.FieldByName("Sess").Set(reflect.ValueOf(&q.Sess))
|
|
|
+ tmpModelElem.FieldByName("Auth").Set(reflect.ValueOf(q.Auth))
|
|
|
//
|
|
|
|
|
|
query := fmt.Sprintf("SELECT %s FROM %s %s %s", q.sel, q.tblName, q.where, q.order)
|
|
|
+
|
|
|
err := Conn.QueryRow(query, q.vals...).Scan(StructPointers(tmpModel.Interface())...)
|
|
|
if err != nil {
|
|
|
return errors.New("db.Query.Get(), " + err.Error())
|
|
@@ -352,7 +355,9 @@ func (q *Query) Get() error {
|
|
|
}
|
|
|
|
|
|
func (q *Query) All() error {
|
|
|
+
|
|
|
query := fmt.Sprintf("SELECT %s FROM %s %s %s", q.sel, q.tblName, q.where, q.order)
|
|
|
+
|
|
|
rows, err := Conn.Query(query, q.vals...)
|
|
|
|
|
|
if err != nil {
|
|
@@ -362,7 +367,7 @@ func (q *Query) All() error {
|
|
|
var set []reflect.Value
|
|
|
for rows.Next() {
|
|
|
tmpModel := reflect.New(q.modelType)
|
|
|
- tmpModel.Elem().FieldByName("Sess").Set(reflect.ValueOf(&q.Sess))
|
|
|
+ tmpModel.Elem().FieldByName("sec").Set(reflect.ValueOf(q.Auth))
|
|
|
rows.Scan(StructPointers(tmpModel.Interface())...)
|
|
|
|
|
|
readRuleMethod := tmpModel.MethodByName("ReadRule")
|