@@ -94,24 +94,13 @@ func (b *Bucket) ExpandPathURL(pathElements ...interface{}) *url.URL {
94
94
// enclosed by the provided path. Note that there's currently no way to get a
95
95
// path that ends in '/'.
96
96
func (b * Bucket ) ExpandListURL (pathElements ... interface {}) * url.URL {
97
- return buildURL (map [string ]string {
97
+ return b . buildURL (map [string ]string {
98
98
// GCS api doesn't like preceding '/', so remove it.
99
99
"prefix" : strings .TrimPrefix (joinStringsAndInts (pathElements ... ), "/" ),
100
100
})
101
101
}
102
102
103
- // ExpandListDirURL produces the URL for a list API query which will list directories
104
- // enclosed by the provided path. Note that there's currently no way to get a
105
- // path that ends in '/'.
106
- func (b * Bucket ) ExpandListDirURL (pathElements ... interface {}) * url.URL {
107
- return buildURL (map [string ]string {
108
- // GCS api doesn't like preceding '/', so remove it.
109
- "prefix" : strings .TrimPrefix (joinStringsAndInts (pathElements ... )+ "/" , "/" ),
110
- "delimiter" : "/" ,
111
- })
112
- }
113
-
114
- func (b * Bucket ) buildUrl (parameters map [string ]string ) * url.URL {
103
+ func (b * Bucket ) buildURL (parameters map [string ]string ) * url.URL {
115
104
q := url.Values {}
116
105
for key , value := range parameters {
117
106
q .Set (key , value )
@@ -146,18 +135,31 @@ func (b *Bucket) List(pathElements ...interface{}) ([]string, error) {
146
135
// ListDirs returns a list of all directories inside the given path.
147
136
// The returned direcotry name included the complete path from bucket root
148
137
func (b * Bucket ) ListDirs (pathElements ... interface {}) ([]string , error ) {
149
- listURL := b .ExpandListDirURL (pathElements ... )
150
- data , err := queryURL (listURL .String ())
151
- if err != nil {
152
- return nil , err
153
- }
154
138
var ret []string
155
- if _ , ok := data ["prefixes" ]; ! ok {
156
- glog .Warningf ("No matching dirs were found (from: %v)" , listURL .String ())
157
- return ret , nil
158
- }
159
- for _ , item := range data ["prefixes" ].([]interface {}) {
160
- ret = append (ret , item .(string ))
139
+ var pageToken string
140
+ for {
141
+ var ok bool
142
+ listURL := b .buildURL (map [string ]string {
143
+ // GCS api doesn't like preceding '/', so remove it.
144
+ "prefix" : strings .TrimPrefix (joinStringsAndInts (pathElements ... )+ "/" , "/" ),
145
+ "delimiter" : "/" ,
146
+ "pageToken" : pageToken ,
147
+ })
148
+ data , err := queryURL (listURL .String ())
149
+ if err != nil {
150
+ return nil , err
151
+ }
152
+ if _ , ok = data ["prefixes" ]; ! ok {
153
+ glog .Warningf ("No matching dirs were found (from: %v)" , listURL .String ())
154
+ return ret , nil
155
+ }
156
+ for _ , item := range data ["prefixes" ].([]interface {}) {
157
+ ret = append (ret , item .(string ))
158
+ }
159
+ pageToken , ok = data ["nextPageToken" ].(string )
160
+ if ! ok {
161
+ break
162
+ }
161
163
}
162
164
return ret , nil
163
165
}
0 commit comments