-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathentities_containers.go
158 lines (138 loc) · 4.1 KB
/
entities_containers.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
//
// Author:: Salim Afiune Maya (<[email protected]>)
// Copyright:: Copyright 2023, Lacework Inc.
// License:: Apache License, Version 2.0
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
package api
import (
"time"
"github.com/lacework/go-sdk/v2/internal/array"
)
// ListContainers returns a list of Active Containers from the last 7 days
func (svc *EntitiesService) ListContainers() (response ContainersEntityResponse, err error) {
now := time.Now().UTC()
before := now.AddDate(0, 0, -7) // 7 days from ago
err = svc.Search(&response,
SearchFilter{
TimeFilter: &TimeFilter{
StartTime: &before,
EndTime: &now,
},
},
)
return
}
// ListContainersWithFilters returns a list of Active Containers based on a user defined filter
func (svc *EntitiesService) ListContainersWithFilters(filters SearchFilter) (
response ContainersEntityResponse, err error,
) {
err = svc.Search(&response, filters)
return
}
// ListAllContainers iterates over all pages to return all active container information at once
func (svc *EntitiesService) ListAllContainers() (response ContainersEntityResponse, err error) {
response, err = svc.ListContainers()
if err != nil {
return
}
var (
all []ContainerEntity
pageOk bool
)
for {
all = append(all, response.Data...)
newResponse := ContainersEntityResponse{
Paging: response.Paging,
}
pageOk, err = svc.client.NextPage(&newResponse)
if err == nil && pageOk {
response = newResponse
continue
}
break
}
response.ResetPaging()
response.Data = all
return
}
// ListAllContainersWithFilters iterates over all pages to return all active container
// information at once based on a user defined filter
func (svc *EntitiesService) ListAllContainersWithFilters(filters SearchFilter) (
response ContainersEntityResponse, err error,
) {
response, err = svc.ListContainersWithFilters(filters)
if err != nil {
return
}
var (
all []ContainerEntity
pageOk bool
)
for {
all = append(all, response.Data...)
pageOk, err = svc.client.NextPage(&response)
if err == nil && pageOk {
continue
}
break
}
response.ResetPaging()
response.Data = all
return
}
type ContainersEntityResponse struct {
Data []ContainerEntity `json:"data"`
Paging V2Pagination `json:"paging"`
v2PageMetadata `json:"-"`
}
// Fulfill Pageable interface (look at api/v2.go)
func (r ContainersEntityResponse) PageInfo() *V2Pagination {
return &r.Paging
}
func (r *ContainersEntityResponse) ResetPaging() {
r.Paging = V2Pagination{}
r.Data = nil
}
// Total returns the total number of active containers
func (r *ContainersEntityResponse) Total() int {
uniqMIDs := []int{}
for _, container := range r.Data {
if !array.ContainsInt(uniqMIDs, container.Mid) {
uniqMIDs = append(uniqMIDs, container.Mid)
}
}
return len(uniqMIDs)
}
// Count returns the number of active containers with the provided image ID
func (r *ContainersEntityResponse) Count(imageID string) int {
uniqMIDs := []int{}
for _, container := range r.Data {
if container.ImageID == imageID &&
!array.ContainsInt(uniqMIDs, container.Mid) {
uniqMIDs = append(uniqMIDs, container.Mid)
}
}
return len(uniqMIDs)
}
type ContainerEntity struct {
ContainerName string `json:"containerName"`
ImageID string `json:"imageId"`
Mid int `json:"mid"`
StartTime time.Time `json:"startTime"`
EndTime time.Time `json:"endTime"`
PodName string `json:"podName"`
PropsContainer map[string]interface{} `json:"propsContainer"`
Tags map[string]interface{} `json:"tags"`
}