2014-06-25 00:44:48 -04:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2019-02-18 11:00:27 -05:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2014-06-25 00:44:48 -04:00
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package models
|
|
|
|
|
2014-06-27 03:37:01 -04:00
|
|
|
import (
|
2021-11-18 12:42:27 -05:00
|
|
|
"context"
|
2015-02-23 02:15:53 -05:00
|
|
|
"fmt"
|
2014-06-27 03:37:01 -04:00
|
|
|
"strings"
|
2015-09-07 13:58:23 -04:00
|
|
|
|
2021-09-19 07:49:59 -04:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2022-03-29 02:29:02 -04:00
|
|
|
"code.gitea.io/gitea/models/organization"
|
2022-05-11 06:09:36 -04:00
|
|
|
access_model "code.gitea.io/gitea/models/perm/access"
|
2021-12-09 20:27:50 -05:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2022-06-15 19:24:10 -04:00
|
|
|
"code.gitea.io/gitea/models/unit"
|
2021-11-11 02:03:30 -05:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2018-01-08 02:48:37 -05:00
|
|
|
|
2019-06-23 11:22:43 -04:00
|
|
|
"xorm.io/builder"
|
2014-06-27 03:37:01 -04:00
|
|
|
)
|
|
|
|
|
2021-06-14 08:18:09 -04:00
|
|
|
// MinimalOrg represents a simple orgnization with only needed columns
|
2022-03-29 02:29:02 -04:00
|
|
|
type MinimalOrg = organization.Organization
|
2021-06-14 08:18:09 -04:00
|
|
|
|
|
|
|
// GetUserOrgsList returns one user's all orgs list
|
2021-11-24 04:49:20 -05:00
|
|
|
func GetUserOrgsList(user *user_model.User) ([]*MinimalOrg, error) {
|
|
|
|
schema, err := db.TableInfo(new(user_model.User))
|
2021-09-01 01:31:42 -04:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
outputCols := []string{
|
|
|
|
"id",
|
|
|
|
"name",
|
|
|
|
"full_name",
|
|
|
|
"visibility",
|
|
|
|
"avatar",
|
|
|
|
"avatar_email",
|
|
|
|
"use_custom_avatar",
|
|
|
|
}
|
|
|
|
|
|
|
|
groupByCols := &strings.Builder{}
|
|
|
|
for _, col := range outputCols {
|
|
|
|
fmt.Fprintf(groupByCols, "`%s`.%s,", schema.Name, col)
|
|
|
|
}
|
|
|
|
groupByStr := groupByCols.String()
|
|
|
|
groupByStr = groupByStr[0 : len(groupByStr)-1]
|
|
|
|
|
2021-11-21 10:41:00 -05:00
|
|
|
sess := db.GetEngine(db.DefaultContext)
|
|
|
|
sess = sess.Select(groupByStr+", count(distinct repo_id) as org_count").
|
2021-06-14 08:18:09 -04:00
|
|
|
Table("user").
|
2021-09-01 01:31:42 -04:00
|
|
|
Join("INNER", "team", "`team`.org_id = `user`.id").
|
|
|
|
Join("INNER", "team_user", "`team`.id = `team_user`.team_id").
|
|
|
|
Join("LEFT", builder.
|
|
|
|
Select("id as repo_id, owner_id as repo_owner_id").
|
|
|
|
From("repository").
|
2022-06-15 19:24:10 -04:00
|
|
|
Where(repo_model.AccessibleRepositoryCondition(user, unit.TypeInvalid)), "`repository`.repo_owner_id = `team`.org_id").
|
2021-09-01 01:31:42 -04:00
|
|
|
Where("`team_user`.uid = ?", user.ID).
|
|
|
|
GroupBy(groupByStr)
|
|
|
|
|
|
|
|
type OrgCount struct {
|
2022-03-29 02:29:02 -04:00
|
|
|
organization.Organization `xorm:"extends"`
|
|
|
|
OrgCount int
|
2021-09-01 01:31:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
orgCounts := make([]*OrgCount, 0, 10)
|
|
|
|
|
|
|
|
if err := sess.
|
|
|
|
Asc("`user`.name").
|
|
|
|
Find(&orgCounts); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
orgs := make([]*MinimalOrg, len(orgCounts))
|
|
|
|
for i, orgCount := range orgCounts {
|
2021-11-19 06:41:40 -05:00
|
|
|
orgCount.Organization.NumRepos = orgCount.OrgCount
|
|
|
|
orgs[i] = &orgCount.Organization
|
2021-09-01 01:31:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return orgs, nil
|
2021-06-14 08:18:09 -04:00
|
|
|
}
|
|
|
|
|
2021-11-19 06:41:40 -05:00
|
|
|
func removeOrgUser(ctx context.Context, orgID, userID int64) error {
|
2022-03-29 02:29:02 -04:00
|
|
|
ou := new(organization.OrgUser)
|
2014-08-15 06:29:41 -04:00
|
|
|
|
2021-11-19 06:41:40 -05:00
|
|
|
sess := db.GetEngine(ctx)
|
|
|
|
|
2018-07-26 19:41:36 -04:00
|
|
|
has, err := sess.
|
2016-11-10 10:16:32 -05:00
|
|
|
Where("uid=?", userID).
|
|
|
|
And("org_id=?", orgID).
|
|
|
|
Get(ou)
|
2014-08-15 06:29:41 -04:00
|
|
|
if err != nil {
|
2015-03-17 21:51:39 -04:00
|
|
|
return fmt.Errorf("get org-user: %v", err)
|
2014-08-15 06:29:41 -04:00
|
|
|
} else if !has {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-05-20 10:08:52 -04:00
|
|
|
org, err := organization.GetOrgByID(ctx, orgID)
|
2014-08-24 09:09:05 -04:00
|
|
|
if err != nil {
|
2016-07-24 02:32:46 -04:00
|
|
|
return fmt.Errorf("GetUserByID [%d]: %v", orgID, err)
|
2014-08-24 09:09:05 -04:00
|
|
|
}
|
2016-07-24 02:32:46 -04:00
|
|
|
|
2014-08-16 04:21:17 -04:00
|
|
|
// Check if the user to delete is the last member in owner team.
|
2022-03-29 02:29:02 -04:00
|
|
|
if isOwner, err := organization.IsOrganizationOwner(ctx, orgID, userID); err != nil {
|
2017-12-21 02:43:26 -05:00
|
|
|
return err
|
|
|
|
} else if isOwner {
|
2022-03-29 02:29:02 -04:00
|
|
|
t, err := organization.GetOwnerTeam(ctx, org.ID)
|
2014-08-16 04:21:17 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if t.NumMembers == 1 {
|
2022-03-29 02:29:02 -04:00
|
|
|
if err := t.GetMembersCtx(ctx); err != nil {
|
2017-12-12 17:26:31 -05:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
if t.Members[0].ID == userID {
|
2022-03-29 02:29:02 -04:00
|
|
|
return organization.ErrLastOrgOwner{UID: userID}
|
2017-12-12 17:26:31 -05:00
|
|
|
}
|
2014-08-16 04:21:17 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-05 00:43:04 -04:00
|
|
|
if _, err := sess.ID(ou.ID).Delete(ou); err != nil {
|
2014-08-15 06:29:41 -04:00
|
|
|
return err
|
2022-05-20 10:08:52 -04:00
|
|
|
} else if _, err = db.Exec(ctx, "UPDATE `user` SET num_members=num_members-1 WHERE id=?", orgID); err != nil {
|
2014-08-15 06:29:41 -04:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-07-24 02:32:46 -04:00
|
|
|
// Delete all repository accesses and unwatch them.
|
2022-03-29 02:29:02 -04:00
|
|
|
env, err := organization.AccessibleReposEnv(ctx, org, userID)
|
2017-01-25 10:41:38 -05:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("AccessibleReposEnv: %v", err)
|
|
|
|
}
|
|
|
|
repoIDs, err := env.RepoIDs(1, org.NumRepos)
|
|
|
|
if err != nil {
|
2017-01-24 11:16:36 -05:00
|
|
|
return fmt.Errorf("GetUserRepositories [%d]: %v", userID, err)
|
2017-01-25 10:41:38 -05:00
|
|
|
}
|
|
|
|
for _, repoID := range repoIDs {
|
2022-05-20 10:08:52 -04:00
|
|
|
if err = repo_model.WatchRepo(ctx, userID, repoID, false); err != nil {
|
2014-08-27 04:39:36 -04:00
|
|
|
return err
|
2014-08-24 09:09:05 -04:00
|
|
|
}
|
|
|
|
}
|
2016-08-10 14:06:51 -04:00
|
|
|
|
|
|
|
if len(repoIDs) > 0 {
|
2016-11-10 10:16:32 -05:00
|
|
|
if _, err = sess.
|
2017-01-24 11:16:36 -05:00
|
|
|
Where("user_id = ?", userID).
|
2016-11-10 10:16:32 -05:00
|
|
|
In("repo_id", repoIDs).
|
2022-05-11 06:09:36 -04:00
|
|
|
Delete(new(access_model.Access)); err != nil {
|
2016-08-10 14:06:51 -04:00
|
|
|
return err
|
|
|
|
}
|
2016-07-24 02:32:46 -04:00
|
|
|
}
|
2014-08-24 09:09:05 -04:00
|
|
|
|
2022-06-25 18:50:12 -04:00
|
|
|
// Delete member in their teams.
|
2022-03-29 02:29:02 -04:00
|
|
|
teams, err := organization.GetUserOrgTeams(ctx, org.ID, userID)
|
2014-08-24 09:09:05 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-03-17 21:51:39 -04:00
|
|
|
for _, t := range teams {
|
2021-11-19 06:41:40 -05:00
|
|
|
if err = removeTeamMember(ctx, t, userID); err != nil {
|
2014-08-24 09:09:05 -04:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-23 03:42:02 -05:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// RemoveOrgUser removes user from given organization.
|
|
|
|
func RemoveOrgUser(orgID, userID int64) error {
|
2021-11-19 06:41:40 -05:00
|
|
|
ctx, committer, err := db.TxContext()
|
|
|
|
if err != nil {
|
2018-02-23 03:42:02 -05:00
|
|
|
return err
|
|
|
|
}
|
2021-11-19 06:41:40 -05:00
|
|
|
defer committer.Close()
|
|
|
|
if err := removeOrgUser(ctx, orgID, userID); err != nil {
|
2018-02-23 03:42:02 -05:00
|
|
|
return err
|
|
|
|
}
|
2021-11-19 06:41:40 -05:00
|
|
|
return committer.Commit()
|
2014-08-15 06:29:41 -04:00
|
|
|
}
|