@@ -48,14 +48,26 @@ func setupConfig(url, apiKey string) *client.Configuration {
48
48
}
49
49
50
50
func NewClient (url , apiKey string ) (Client , error ) {
51
+ if url == "" {
52
+ return nil , fmt .Errorf ("NewClient: URL cannot be empty" )
53
+ }
54
+ if apiKey == "" {
55
+ return nil , fmt .Errorf ("NewClient: API key cannot be empty" )
56
+ }
57
+
51
58
return & dependencyTrackClient {client .NewAPIClient (setupConfig (url , apiKey ))}, nil
52
59
}
53
60
54
61
func (c * dependencyTrackClient ) GetFindings (ctx context.Context , uuid string , suppressed bool ) ([]client.Finding , error ) {
55
62
p , _ , err := c .client .FindingAPI .GetFindingsByProject (ctx , uuid ).
56
63
Suppressed (suppressed ).
57
64
Execute ()
58
- return p , err
65
+
66
+ if err != nil {
67
+ return nil , fmt .Errorf ("failed to get findings for project %s: %w" , uuid , err )
68
+ }
69
+
70
+ return p , nil
59
71
}
60
72
61
73
func (c * dependencyTrackClient ) paginateProjects (ctx context.Context , limit , offset int32 , callFunc func (ctx context.Context , offset int32 ) ([]client.Project , error )) ([]client.Project , error ) {
@@ -96,17 +108,17 @@ func (c *dependencyTrackClient) GetProject(ctx context.Context, name, version st
96
108
Version (version ).
97
109
Execute ()
98
110
99
- if resp != nil && resp .StatusCode == 404 {
100
- b , err := io .ReadAll (resp .Body )
101
- if err != nil {
102
- return nil , err
111
+ if err != nil && resp != nil && resp .StatusCode == 404 {
112
+ body , readErr := io .ReadAll (resp .Body )
113
+ if readErr != nil {
114
+ return nil , fmt . Errorf ( "failed to read response body: %w" , readErr )
103
115
}
104
116
105
- if strings .Contains (string (b ), "The project could not be found" ) {
117
+ if strings .Contains (string (body ), "The project could not be found" ) {
106
118
return nil , nil
107
119
}
108
120
109
- return nil , fmt .Errorf ("getting project: 404 not found %s" , string (b ))
121
+ return nil , fmt .Errorf ("project not found: %s" , string (body ))
110
122
}
111
123
112
124
return p , err
@@ -115,6 +127,9 @@ func (c *dependencyTrackClient) GetProject(ctx context.Context, name, version st
115
127
func (c * dependencyTrackClient ) GetProjects (ctx context.Context , limit , offset int32 ) ([]client.Project , error ) {
116
128
return c .paginateProjects (ctx , limit , offset , func (ctx context.Context , offset int32 ) ([]client.Project , error ) {
117
129
pageNumber := (offset / limit ) + 1
130
+ if offset % limit != 0 {
131
+ pageNumber ++
132
+ }
118
133
p , _ , err := c .client .ProjectAPI .GetProjects (ctx ).
119
134
PageSize (limit ).
120
135
PageNumber (pageNumber ).
0 commit comments