aboutsummaryrefslogtreecommitdiff
path: root/models
diff options
context:
space:
mode:
authorUnknwon <u@gogs.io>2015-09-07 13:58:23 -0400
committerUnknwon <u@gogs.io>2015-09-07 13:58:23 -0400
commit3d9b98fae4782a45edc3f53ad4561fe7e14a4377 (patch)
tree082f9394854f6549f003e283784b1b7e72126b7a /models
parent36405d0faaf6e4ed5e0a0deb37aebf77a8c29ff0 (diff)
#1585 order owners list by last changed time
Diffstat (limited to 'models')
-rw-r--r--models/org.go21
-rw-r--r--models/user.go7
2 files changed, 28 insertions, 0 deletions
diff --git a/models/org.go b/models/org.go
index 4076bf15..b45dcafb 100644
--- a/models/org.go
+++ b/models/org.go
@@ -9,6 +9,8 @@ import (
"fmt"
"os"
"strings"
+
+ "github.com/go-xorm/xorm"
)
var (
@@ -251,6 +253,25 @@ func IsPublicMembership(orgId, uid int64) bool {
return has
}
+func getOwnedOrgsByUserID(sess *xorm.Session, userID int64) ([]*User, error) {
+ orgs := make([]*User, 0, 10)
+ return orgs, sess.Where("`org_user`.uid=?", userID).And("`org_user`.is_owner=?", true).
+ Join("INNER", "`org_user`", "`org_user`.org_id=`user`.id").Find(&orgs)
+}
+
+// GetOwnedOrgsByUserID returns a list of organizations are owned by given user ID.
+func GetOwnedOrgsByUserID(userID int64) ([]*User, error) {
+ sess := x.NewSession()
+ return getOwnedOrgsByUserID(sess, userID)
+}
+
+// GetOwnedOrganizationsByUserIDDesc returns a list of organizations are owned by
+// given user ID and descring order by given condition.
+func GetOwnedOrgsByUserIDDesc(userID int64, desc string) ([]*User, error) {
+ sess := x.NewSession()
+ return getOwnedOrgsByUserID(sess.Desc(desc), userID)
+}
+
// GetOrgUsersByUserId returns all organization-user relations by user ID.
func GetOrgUsersByUserId(uid int64) ([]*OrgUser, error) {
ous := make([]*OrgUser, 0, 10)
diff --git a/models/user.go b/models/user.go
index 641e14d0..da2f49a1 100644
--- a/models/user.go
+++ b/models/user.go
@@ -61,6 +61,7 @@ type User struct {
LoginSource int64 `xorm:"NOT NULL DEFAULT 0"`
LoginName string
Type UserType
+ OwnedOrgs []*User `xorm:"-"`
Orgs []*User `xorm:"-"`
Repos []*Repository `xorm:"-"`
Location string
@@ -307,6 +308,12 @@ func (u *User) GetRepositories() (err error) {
return err
}
+// GetOwnedOrganizations returns all organizations that user owns.
+func (u *User) GetOwnedOrganizations() (err error) {
+ u.OwnedOrgs, err = GetOwnedOrgsByUserID(u.Id)
+ return err
+}
+
// GetOrganizations returns all organizations that user belongs to.
func (u *User) GetOrganizations() error {
ous, err := GetOrgUsersByUserId(u.Id)