Skip to content

Commit 65cd730

Browse files
authored
Merge pull request #24 from mona-actions/amenocal/group-project
add ability to pass a list of groups
2 parents 7c2637d + d193061 commit 65cd730

File tree

6 files changed

+133
-13
lines changed

6 files changed

+133
-13
lines changed

README.md

+10-4
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,17 @@ GitLab-Stats is a command-line interface that gathers GitLab metrics from a spec
1616
| `hostname` | The hostname of the GitLab instance to gather metrics from. E.g `https://gitlab.company.com` | Yes | N/A |
1717
| `token` | The token to use to authenticate to the GitLab instance. | Yes | N/A |
1818
| `output-file` | The output file name to write the results to. | No | `gitlab-stats-YYYY-MM-DD-HH-MM-SS.csv` |
19+
| `groups` | A comma-separated list of groups to gather metrics from. | No | "" |
1920

2021
## How to Run
2122

2223
1. `gh extension install mona-actions/gh-gitlab-stats`
2324
2. Run the tool: `gh gitlab-stats --hostname <hostname> --token <token> --output-file <filename>`
2425

26+
## Upgrade
27+
28+
`gh extension upgrade gitlab-stats`
29+
2530
## Usage
2631

2732
```sh
@@ -33,10 +38,11 @@ Usage:
3338
gh gitlab-stats [flags]
3439

3540
Flags:
36-
-s, --hostname string The hostname of the GitLab instance to gather metrics from E.g https://gitlab.company.com
37-
-h, --help help for gh-gitlab-stats
38-
-f, --output-file string The output file name to write the results to (default "gitlab-stats-YYYY-MM-DD-HH-MM-SS.csv")
39-
-t, --token string The token to use to authenticate to the GitLab instance
41+
-g, --groups string The specific groups to gather metrics from. E.g group1,group2,group3
42+
-h, --help help for gh
43+
-s, --hostname string The hostname/server of the GitLab instance to gather metrics from E.g https://gitlab.company.com
44+
-f, --output-file string The output file name to write the results to (default "gitlab-stats-YYYY-MM-DD-HH-MM-SS.csv")
45+
-t, --token string The token to use to authenticate to the GitLab instance
4046
```
4147

4248
## Permissions

api/groups/groups.go

+44
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,47 @@ func GetGroups(client *gitlab.Client) []*gitlab.Group {
3636

3737
return groups
3838
}
39+
40+
func GetGroupsByName(client *gitlab.Client, groupName string) []*gitlab.Group {
41+
opt := &gitlab.ListGroupsOptions{
42+
ListOptions: gitlab.ListOptions{
43+
PerPage: 100,
44+
Page: 1,
45+
},
46+
Search: &groupName,
47+
}
48+
group, _, err := client.Groups.ListGroups(opt)
49+
if err != nil {
50+
log.Printf("Failed to list groups: %v", err)
51+
return nil
52+
}
53+
return group
54+
}
55+
56+
func GetGroupsProjects(client *gitlab.Client, groups []*gitlab.Group) []*gitlab.Project {
57+
var projects []*gitlab.Project
58+
for _, group := range groups {
59+
opt := &gitlab.ListGroupProjectsOptions{
60+
ListOptions: gitlab.ListOptions{
61+
PerPage: 100,
62+
Page: 1,
63+
},
64+
}
65+
for {
66+
p, response, err := client.Groups.ListGroupProjects(group.ID, opt)
67+
68+
if err != nil {
69+
log.Printf("Failed to list projects: %v", err)
70+
}
71+
projects = append(projects, p...)
72+
73+
if response.NextPage == 0 {
74+
break
75+
}
76+
77+
opt.Page = response.NextPage
78+
}
79+
}
80+
81+
return projects
82+
}

api/projects/projects.go

+11
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,17 @@ func GetProjects(client *gitlab.Client) []*gitlab.Project {
3535
return projects
3636
}
3737

38+
func GetProject(project *gitlab.Project, client *gitlab.Client) *gitlab.Project {
39+
opt := &gitlab.GetProjectOptions{
40+
Statistics: gitlab.Bool(true),
41+
}
42+
project, _, err := client.Projects.GetProject(project.ID, opt)
43+
if err != nil {
44+
log.Printf("Failed to get project:%v %v", project.Name, err)
45+
}
46+
return project
47+
}
48+
3849
func GetProjectMilestones(project *gitlab.Project, client *gitlab.Client) []*gitlab.Milestone {
3950
var milestones []*gitlab.Milestone
4051
opt := &gitlab.ListMilestonesOptions{

cmd/root.go

+39-8
Original file line numberDiff line numberDiff line change
@@ -62,25 +62,42 @@ func init() {
6262
rootCmd.MarkFlagRequired("token")
6363

6464
rootCmd.Flags().StringP("output-file", "f", "gitlab-stats-"+timestamp+".csv", "The output file name to write the results to")
65+
66+
rootCmd.Flags().StringP("groups", "g", "", "The specific groups to gather metrics from. E.g group1,group2,group3")
6567
}
6668

6769
func getGitlabStats(cmd *cobra.Command, args []string) {
68-
70+
// Init Variables
6971
gitlabHostname := cmd.Flag("hostname").Value.String()
72+
groupNames := cmd.Flag("groups").Value.String()
73+
gitlabToken := cmd.Flag("token").Value.String()
74+
outputFileName := cmd.Flag("output-file").Value.String()
75+
var gitlabGroups []*gitlab.Group
76+
var gitlabProjects []*gitlab.Project
7077
checkVars(cmd)
7178
if !strings.HasPrefix(gitlabHostname, "http://") && !strings.HasPrefix(gitlabHostname, "https://") {
7279
gitlabHostname = "https://" + gitlabHostname
7380
}
74-
gitlabToken := cmd.Flag("token").Value.String()
75-
outputFileName := cmd.Flag("output-file").Value.String()
81+
82+
//Init GitLab Client
7683
client := initClient(gitlabHostname, gitlabToken)
77-
//getNamespaces(client)
78-
groupSpinnerSuccess, _ := pterm.DefaultSpinner.Start("Fetching Groups")
79-
groups.GetGroups(client)
80-
groupSpinnerSuccess.Success("Groups fetched successfully")
84+
85+
if groupNames != "" {
86+
groupSpinnerSuccess, _ := pterm.DefaultSpinner.Start("Fetching Groups")
87+
gitlabGroups = internal.GetGroupsFromNames(client, groupNames)
88+
if len(gitlabGroups) == 0 {
89+
groupSpinnerSuccess.Info("No groups found")
90+
os.Exit(0)
91+
}
92+
groupSpinnerSuccess.Success("Groups fetched successfully")
93+
}
8194

8295
projectSpinnerSuccess, _ := pterm.DefaultSpinner.Start("Fetching Projects")
83-
gitlabProjects := projects.GetProjects(client)
96+
if groupNames != "" {
97+
gitlabProjects = GetGitLabGroupsProjects(client, gitlabGroups)
98+
} else {
99+
gitlabProjects = projects.GetProjects(client)
100+
}
84101
projectSpinnerSuccess.Success("Projects fetched successfully")
85102

86103
gitlabProjectsSummary := internal.GetProjectSummary(gitlabProjects, client)
@@ -118,3 +135,17 @@ func checkVars(cmd *cobra.Command) {
118135
log.Fatalf("The hostname cannot be empty")
119136
}
120137
}
138+
139+
func GetGitLabGroupsProjects(client *gitlab.Client, gitlabGroups []*gitlab.Group) []*gitlab.Project {
140+
var gitlabProjects []*gitlab.Project
141+
142+
// Get all projects in the specified groups
143+
groupsProjects := groups.GetGroupsProjects(client, gitlabGroups)
144+
for _, project := range groupsProjects {
145+
146+
// Get the project details with statistics
147+
gitlabProject := projects.GetProject(project, client)
148+
gitlabProjects = append(gitlabProjects, gitlabProject)
149+
}
150+
return gitlabProjects
151+
}

internal/groups.go

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
package internal
2+
3+
import (
4+
"log"
5+
"strings"
6+
7+
"github.com/mona-actions/gh-gitlab-stats/api/groups"
8+
"github.com/xanzy/go-gitlab"
9+
)
10+
11+
func GetGroupsFromNames(client *gitlab.Client, groupNames string) []*gitlab.Group {
12+
var gitlabGroups []*gitlab.Group
13+
groupNames = strings.ReplaceAll(groupNames, " ", "")
14+
15+
groupNamesSlice := strings.Split(groupNames, ",")
16+
for _, groupName := range groupNamesSlice {
17+
group := groups.GetGroupsByName(client, groupName)
18+
if group == nil {
19+
log.Printf("Group %s not found", groupName)
20+
}
21+
gitlabGroups = append(gitlabGroups, group...)
22+
}
23+
return gitlabGroups
24+
}

internal/projectSummary.go

+5-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ func GetProjectSummary(gitlabProjects []*gitlab.Project, client *gitlab.Client)
6565
commitCommentCount += len(commitComments)
6666
}
6767

68-
if projectCommits != nil {
68+
if len(projectCommits) > 0 {
6969
lastCommit := projectCommits[0]
7070
lastPush = lastCommit.CommittedDate
7171
//fmt.Println(lastCommit.CommittedDate, lastCommit.Title)
@@ -101,6 +101,10 @@ func GetProjectSummary(gitlabProjects []*gitlab.Project, client *gitlab.Client)
101101

102102
projectReleases := projects.GetProjectReleases(project, client)
103103

104+
if project.TagList == nil {
105+
project.TagList = []string{}
106+
}
107+
104108
recordCount := len(projectCommits) + len(projectIssues) + len(mergeRequests) + len(projectMilestones) + len(projectReleases) + len(projectIssueBoards) + len(projectBranches) + len(project.TagList) + mergeRequestCommentCount + issueCommentCount + commitCommentCount
105109
if project != nil && project.Statistics != nil {
106110
repoSizeInMB = (project.Statistics.RepositorySize / 1000000)

0 commit comments

Comments
 (0)