166 lines
3.9 KiB
Go
166 lines
3.9 KiB
Go
package gitlab
|
|
|
|
import (
|
|
"fmt"
|
|
"sync"
|
|
|
|
"github.com/badjware/gitlabfs/fstree"
|
|
"github.com/xanzy/go-gitlab"
|
|
)
|
|
|
|
type Group struct {
|
|
ID int
|
|
Name string
|
|
|
|
gitlabClient *gitlabClient
|
|
|
|
mux sync.Mutex
|
|
|
|
// group content
|
|
childGroups map[string]fstree.GroupSource
|
|
childProjects map[string]fstree.RepositorySource
|
|
}
|
|
|
|
func (g *Group) GetGroupID() uint64 {
|
|
return uint64(g.ID)
|
|
}
|
|
|
|
func (g *Group) InvalidateCache() {
|
|
g.mux.Lock()
|
|
defer g.mux.Unlock()
|
|
|
|
// clear child group from cache
|
|
for _, childGroup := range g.childGroups {
|
|
gid := int(childGroup.GetGroupID())
|
|
delete(g.gitlabClient.groupCache, gid)
|
|
}
|
|
g.childGroups = nil
|
|
|
|
// clear child repositories from cache
|
|
g.childGroups = nil
|
|
}
|
|
|
|
func (c *gitlabClient) fetchGroup(gid int) (*Group, error) {
|
|
// start by searching the cache
|
|
// TODO: cache invalidation?
|
|
group, found := c.groupCache[gid]
|
|
if found {
|
|
c.logger.Debug("Group cache hit", "gid", gid)
|
|
return group, nil
|
|
} else {
|
|
c.logger.Debug("Group cache miss; fetching group", "gid", gid)
|
|
}
|
|
|
|
// If not in cache, fetch group infos from API
|
|
gitlabGroup, _, err := c.client.Groups.GetGroup(gid)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to fetch group with id %v: %v", gid, err)
|
|
}
|
|
c.logger.Debug("Fetched group", "gid", gid)
|
|
newGroup := Group{
|
|
ID: gitlabGroup.ID,
|
|
Name: gitlabGroup.Path,
|
|
|
|
gitlabClient: c,
|
|
|
|
childGroups: nil,
|
|
childProjects: nil,
|
|
}
|
|
|
|
// save in cache
|
|
c.groupCache[gid] = &newGroup
|
|
|
|
return &newGroup, nil
|
|
}
|
|
|
|
func (c *gitlabClient) newGroupFromGitlabGroup(gitlabGroup *gitlab.Group) (*Group, error) {
|
|
gid := gitlabGroup.ID
|
|
|
|
// start by searching the cache
|
|
group, found := c.groupCache[gid]
|
|
if found {
|
|
c.logger.Debug("Group cache hit", "gid", gid)
|
|
return group, nil
|
|
} else {
|
|
c.logger.Debug("Group cache miss; registering group", "gid", gid)
|
|
}
|
|
|
|
// if not in cache, convert and save to cache now
|
|
newGroup := Group{
|
|
ID: gitlabGroup.ID,
|
|
Name: gitlabGroup.Path,
|
|
|
|
gitlabClient: c,
|
|
|
|
childGroups: nil,
|
|
childProjects: nil,
|
|
}
|
|
|
|
// save in cache
|
|
c.groupCache[gid] = &newGroup
|
|
|
|
return &newGroup, nil
|
|
}
|
|
|
|
func (c *gitlabClient) fetchGroupContent(group *Group) (map[string]fstree.GroupSource, map[string]fstree.RepositorySource, error) {
|
|
group.mux.Lock()
|
|
defer group.mux.Unlock()
|
|
|
|
// Get cached data if available
|
|
// TODO: cache cache invalidation?
|
|
if group.childGroups == nil || group.childProjects == nil {
|
|
childGroups := make(map[string]fstree.GroupSource)
|
|
childProjects := make(map[string]fstree.RepositorySource)
|
|
|
|
// List subgroups in path
|
|
ListGroupsOpt := &gitlab.ListSubgroupsOptions{
|
|
ListOptions: gitlab.ListOptions{
|
|
Page: 1,
|
|
PerPage: 100,
|
|
},
|
|
AllAvailable: gitlab.Bool(true),
|
|
}
|
|
for {
|
|
gitlabGroups, response, err := c.client.Groups.ListSubgroups(group.ID, ListGroupsOpt)
|
|
if err != nil {
|
|
return nil, nil, fmt.Errorf("failed to fetch groups in gitlab: %v", err)
|
|
}
|
|
for _, gitlabGroup := range gitlabGroups {
|
|
group, _ := c.newGroupFromGitlabGroup(gitlabGroup)
|
|
childGroups[group.Name] = group
|
|
}
|
|
if response.CurrentPage >= response.TotalPages {
|
|
break
|
|
}
|
|
// Get the next page
|
|
ListGroupsOpt.Page = response.NextPage
|
|
}
|
|
|
|
// List projects in path
|
|
listProjectOpt := &gitlab.ListGroupProjectsOptions{
|
|
ListOptions: gitlab.ListOptions{
|
|
Page: 1,
|
|
PerPage: 100,
|
|
}}
|
|
for {
|
|
gitlabProjects, response, err := c.client.Groups.ListGroupProjects(group.ID, listProjectOpt)
|
|
if err != nil {
|
|
return nil, nil, fmt.Errorf("failed to fetch projects in gitlab: %v", err)
|
|
}
|
|
for _, gitlabProject := range gitlabProjects {
|
|
project := c.newProjectFromGitlabProject(gitlabProject)
|
|
childProjects[project.Name] = &project
|
|
}
|
|
if response.CurrentPage >= response.TotalPages {
|
|
break
|
|
}
|
|
// Get the next page
|
|
listProjectOpt.Page = response.NextPage
|
|
}
|
|
|
|
group.childGroups = childGroups
|
|
group.childProjects = childProjects
|
|
}
|
|
return group.childGroups, group.childProjects, nil
|
|
}
|