Skip to content

Commit d0f7898

Browse files
committed
added Limit method to Engine struct; use engine variable when provided; fixed gitignore
1 parent b6ed97d commit d0f7898

7 files changed

+24
-26
lines changed

models/issue_reaction.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -69,12 +69,13 @@ func FindIssueReactions(issue *Issue, listOptions ListOptions) (ReactionList, er
6969

7070
func findReactions(e Engine, opts FindReactionsOptions) ([]*Reaction, error) {
7171
var reactions []*Reaction
72-
sess := e.Where(opts.toConds())
72+
sess := e
7373
if opts.Page != 0 {
74-
sess = opts.setSessionPagination(sess)
74+
sess = opts.setEnginePagination(e)
7575
}
7676

7777
return reactions, sess.
78+
Where(opts.toConds()).
7879
In("reaction.`type`", setting.UI.Reactions).
7980
Asc("reaction.issue_id", "reaction.comment_id", "reaction.created_unix", "reaction.id").
8081
Find(&reactions)

models/issue_tracked_time.go

+7-9
Original file line numberDiff line numberDiff line change
@@ -74,19 +74,17 @@ func (opts *FindTrackedTimesOptions) ToSession(e Engine) *xorm.Session {
7474
sess = e.Join("INNER", "issue", "issue.id = tracked_time.issue_id")
7575
}
7676

77-
if opts.Page != 0 {
78-
if sess == nil {
79-
sess = opts.getPaginatedSession()
80-
} else {
81-
sess = opts.setSessionPagination(sess)
82-
}
77+
if sess == nil {
78+
sess = e.Where(opts.ToCond())
79+
} else {
80+
sess = sess.Where(opts.ToCond())
8381
}
8482

85-
if sess == nil {
86-
return e.Where(opts.ToCond())
83+
if opts.Page != 0 {
84+
sess = opts.setSessionPagination(sess)
8785
}
8886

89-
return sess.Where(opts.ToCond())
87+
return sess
9088
}
9189

9290
// GetTrackedTimes returns all tracked times that fit to the given options.

models/list_options.go

+6
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@ func (opts ListOptions) setSessionPagination(sess *xorm.Session) *xorm.Session {
2323
return sess.Limit(opts.PageSize, (opts.Page-1)*opts.PageSize)
2424
}
2525

26+
func (opts ListOptions) setEnginePagination(e Engine) Engine {
27+
opts.setDefaultValues()
28+
29+
return e.Limit(opts.PageSize, (opts.Page-1)*opts.PageSize)
30+
}
31+
2632
func (opts ListOptions) setDefaultValues() {
2733
if opts.PageSize <= 0 || opts.PageSize > setting.UI.ExplorePagingNum {
2834
opts.PageSize = setting.UI.ExplorePagingNum

models/models.go

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ type Engine interface {
4444
SQL(interface{}, ...interface{}) *xorm.Session
4545
Where(interface{}, ...interface{}) *xorm.Session
4646
Asc(colNames ...string) *xorm.Session
47+
Limit(limit int, start ...int) *xorm.Session
4748
}
4849

4950
var (

models/org_team.go

+6-10
Original file line numberDiff line numberDiff line change
@@ -760,17 +760,13 @@ func GetTeamMembers(teamID int64) ([]*User, error) {
760760
}
761761

762762
func getUserTeams(e Engine, userID int64, listOptions ListOptions) (teams []*Team, err error) {
763-
if listOptions.Page == 0 {
764-
return teams, e.
765-
Join("INNER", "team_user", "team_user.team_id = team.id").
766-
Where("team_user.uid=?", userID).
767-
Find(&teams)
768-
}
769-
770-
return teams, listOptions.getPaginatedSession().
763+
sess := e.
771764
Join("INNER", "team_user", "team_user.team_id = team.id").
772-
Where("team_user.uid=?", userID).
773-
Find(&teams)
765+
Where("team_user.uid=?", userID)
766+
if listOptions.Page != 0 {
767+
sess = listOptions.setSessionPagination(sess)
768+
}
769+
return teams, sess.Find(&teams)
774770
}
775771

776772
func getUserOrgTeams(e Engine, orgID, userID int64) (teams []*Team, err error) {

models/repo_collaboration.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,7 @@ func (repo *Repository) getCollaborations(e Engine, listOptions ListOptions) ([]
5757
if listOptions.Page == 0 {
5858
return collaborations, e.Find(&collaborations, &Collaboration{RepoID: repo.ID})
5959
}
60-
61-
return collaborations, listOptions.getPaginatedSession().Find(&collaborations, &Collaboration{RepoID: repo.ID})
60+
return collaborations, listOptions.setEnginePagination(e).Find(&collaborations, &Collaboration{RepoID: repo.ID})
6261
}
6362

6463
// Collaborator represents a user with collaboration details.

options/gitignore/Matlab

-3
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,5 @@ codegen/
2424
# Simulink autosave extension
2525
*.autosave
2626

27-
# Simulink cache files
28-
*.slxc
29-
3027
# Octave session info
3128
octave-workspace

0 commit comments

Comments
 (0)