summaryrefslogtreecommitdiffstats
path: root/services/f3/driver/organizations.go
diff options
context:
space:
mode:
Diffstat (limited to 'services/f3/driver/organizations.go')
-rw-r--r--services/f3/driver/organizations.go50
1 files changed, 50 insertions, 0 deletions
diff --git a/services/f3/driver/organizations.go b/services/f3/driver/organizations.go
new file mode 100644
index 0000000..98c4c14
--- /dev/null
+++ b/services/f3/driver/organizations.go
@@ -0,0 +1,50 @@
+// Copyright Earl Warren <contact@earl-warren.org>
+// Copyright Loïc Dachary <loic@dachary.org>
+// SPDX-License-Identifier: MIT
+
+package driver
+
+import (
+ "context"
+ "fmt"
+
+ "code.gitea.io/gitea/models/db"
+ org_model "code.gitea.io/gitea/models/organization"
+ user_model "code.gitea.io/gitea/models/user"
+
+ f3_tree "code.forgejo.org/f3/gof3/v3/tree/f3"
+ "code.forgejo.org/f3/gof3/v3/tree/generic"
+)
+
+type organizations struct {
+ container
+}
+
+func (o *organizations) ListPage(ctx context.Context, page int) generic.ChildrenSlice {
+ sess := db.GetEngine(ctx)
+ if page != 0 {
+ sess = db.SetSessionPagination(sess, &db.ListOptions{Page: page, PageSize: o.getPageSize()})
+ }
+ sess = sess.Select("`user`.*").
+ Where("`type`=?", user_model.UserTypeOrganization)
+ organizations := make([]*org_model.Organization, 0, o.getPageSize())
+
+ if err := sess.Find(&organizations); err != nil {
+ panic(fmt.Errorf("error while listing organizations: %v", err))
+ }
+
+ return f3_tree.ConvertListed(ctx, o.GetNode(), f3_tree.ConvertToAny(organizations...)...)
+}
+
+func (o *organizations) GetIDFromName(ctx context.Context, name string) generic.NodeID {
+ organization, err := org_model.GetOrgByName(ctx, name)
+ if err != nil {
+ panic(fmt.Errorf("GetOrganizationByName: %v", err))
+ }
+
+ return generic.NewNodeID(organization.ID)
+}
+
+func newOrganizations() generic.NodeDriverInterface {
+ return &organizations{}
+}