gitforgefs/forges/gitlab/client.go

120 lines
2.8 KiB
Go
Raw Normal View History

2020-12-27 03:30:19 +00:00
package gitlab
import (
2024-12-30 03:23:04 +00:00
"context"
2020-12-27 03:30:19 +00:00
"fmt"
2024-06-06 05:51:34 +00:00
"log/slog"
"slices"
"sync"
2020-12-27 03:30:19 +00:00
2024-08-14 02:55:18 +00:00
"github.com/badjware/gitforgefs/config"
"github.com/badjware/gitforgefs/fstree"
2020-12-27 03:30:19 +00:00
"github.com/xanzy/go-gitlab"
)
2020-12-29 02:37:18 +00:00
type gitlabClient struct {
config.GitlabClientConfig
2020-12-29 02:37:18 +00:00
client *gitlab.Client
2024-06-06 05:51:34 +00:00
logger *slog.Logger
2024-08-05 01:39:15 +00:00
rootContent map[string]fstree.GroupSource
userIDs []int
// API response cache
groupCacheMux sync.RWMutex
groupCache map[int]*Group
userCacheMux sync.RWMutex
userCache map[int]*User
2020-12-29 02:37:18 +00:00
}
2024-08-04 22:59:57 +00:00
func NewClient(logger *slog.Logger, config config.GitlabClientConfig) (*gitlabClient, error) {
2020-12-27 03:30:19 +00:00
client, err := gitlab.NewClient(
2024-08-04 22:59:57 +00:00
config.Token,
gitlab.WithBaseURL(config.URL),
2020-12-27 03:30:19 +00:00
)
if err != nil {
2020-12-29 02:37:18 +00:00
return nil, fmt.Errorf("failed to create gitlab client: %v", err)
2020-12-27 03:30:19 +00:00
}
2020-12-29 02:37:18 +00:00
gitlabClient := &gitlabClient{
2024-08-04 22:59:57 +00:00
GitlabClientConfig: config,
client: client,
2024-06-06 05:51:34 +00:00
logger: logger,
2024-08-05 01:39:15 +00:00
rootContent: nil,
userIDs: []int{},
groupCache: map[int]*Group{},
userCache: map[int]*User{},
2020-12-27 03:30:19 +00:00
}
2024-08-05 01:39:15 +00:00
// Fetch current user and add it to the list
currentUser, _, err := client.Users.CurrentUser()
if err != nil {
logger.Warn("failed to fetch the current user:", "error", err.Error())
} else {
gitlabClient.userIDs = append(gitlabClient.userIDs, currentUser.ID)
}
// Fetch the configured users and add them to the list
for _, userName := range config.UserNames {
user, _, err := client.Users.ListUsers(&gitlab.ListUsersOptions{Username: &userName})
if err != nil || len(user) != 1 {
logger.Warn("failed to fetch the user", "userName", userName, "error", err.Error())
} else {
gitlabClient.userIDs = append(gitlabClient.userIDs, user[0].ID)
}
2024-08-05 01:39:15 +00:00
}
2020-12-27 03:30:19 +00:00
return gitlabClient, nil
}
2024-12-30 03:23:04 +00:00
func (c *gitlabClient) FetchRootGroupContent(ctx context.Context) (map[string]fstree.GroupSource, error) {
// use cached values if available
2024-08-05 01:39:15 +00:00
if c.rootContent == nil {
rootGroupCache := make(map[string]fstree.GroupSource)
// fetch root groups
for _, gid := range c.GroupIDs {
2024-12-30 03:23:04 +00:00
group, err := c.fetchGroup(ctx, gid)
if err != nil {
return nil, err
}
rootGroupCache[group.Name] = group
}
// fetch users
for _, uid := range c.userIDs {
2024-12-30 03:23:04 +00:00
user, err := c.fetchUser(ctx, uid)
if err != nil {
return nil, err
}
rootGroupCache[user.Name] = user
}
2024-08-05 01:39:15 +00:00
c.rootContent = rootGroupCache
}
2024-08-05 01:39:15 +00:00
return c.rootContent, nil
}
2024-12-30 03:23:04 +00:00
func (c *gitlabClient) FetchGroupContent(ctx context.Context, gid uint64) (map[string]fstree.GroupSource, map[string]fstree.RepositorySource, error) {
if slices.Contains[[]int, int](c.userIDs, int(gid)) {
// gid is a user
2024-12-30 03:23:04 +00:00
user, err := c.fetchUser(ctx, int(gid))
if err != nil {
return nil, nil, err
}
2024-12-30 03:23:04 +00:00
return c.fetchUserContent(ctx, user)
} else {
// gid is a group
2024-12-30 03:23:04 +00:00
group, err := c.fetchGroup(ctx, int(gid))
if err != nil {
return nil, nil, err
}
2024-12-30 03:23:04 +00:00
return c.fetchGroupContent(ctx, group)
}
}