Giter Club home page Giter Club logo

xorm-session-wrapper's Introduction

xorm-session-wrapper

Package wrapper is a thin wrapper of *xorm.Session. It aims at eliminating tedious if statements.

List can be replaced by List2:

type ListReq struct {
	CondA  []int64
	CondB  []string
	CondC  string
	CondD  bool
	CondE  int64
	CondF  *Ranger
	Limit  int
	Offset int
}

type Model struct{}

func List(ctx context.Context, req *ListReq) (int64, []*Model, error) {
	var sess *xorm.Session
	sess.Context(ctx)

	if len(req.CondA) != 0 {
		sess.Where("column_a IN ?", req.CondA)
	}
	if len(req.CondB) != 0 {
		sess.Where("column_b IN ?", req.CondB)
	}
	if condC := strings.TrimSpace(req.CondC); condC != "" {
		sess.Where("column_c LIKE ?", "%"+condC+"%")
	}

	sess.Where("column_d = ?", req.CondD)

	if req.CondE != 0 {
		sess.Where("column_e = ?", req.CondE)
	}
	if req.CondF != nil {
		sess.Where("column_f BETWEEN ? AND ?",
			req.CondF.Start, req.CondF.End)
	}

	var models []*Model
	count, err := sess.
		Desc("id").
		Limit(req.Limit, req.Offset).
		FindAndCount(&models)

	if err != nil {
		return 0, nil, err
	}
	return count, models, nil
}

func List2(ctx context.Context, req *ListReq) (int64, []*Model, error) {
	sess := NewSession((*xorm.Session)(nil))

	var models []*Model
	count, err := sess.Context(ctx).
		In("column_a", req.CondA).
		In("column_b", req.CondB).
		Like("column_c", req.CondC).
		Where("column_d = ?", req.CondD).
		Equal("column_e", req.CondE).
		Between("column_f", req.CondF).
		Desc("id").
		Limit(req.Limit, req.Offset).
		FindAndCount(&models)

	if err != nil {
		return 0, nil, err
	}
	return count, models, nil
}

xorm-session-wrapper's People

Contributors

dushaoshuai avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.