aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/Azure/azure-storage-go/file.go
blob: e4901a1144f04d8b01ce62265a86d84848b69e47 (plain) (blame)
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
package storage

import (
    "errors"
    "fmt"
    "io"
    "io/ioutil"
    "net/http"
    "net/url"
    "strconv"
)

const fourMB = uint64(4194304)
const oneTB = uint64(1099511627776)

// File represents a file on a share.
type File struct {
    fsc                *FileServiceClient
    Metadata           map[string]string
    Name               string `xml:"Name"`
    parent             *Directory
    Properties         FileProperties `xml:"Properties"`
    share              *Share
    FileCopyProperties FileCopyState
}

// FileProperties contains various properties of a file.
type FileProperties struct {
    CacheControl string `header:"x-ms-cache-control"`
    Disposition  string `header:"x-ms-content-disposition"`
    Encoding     string `header:"x-ms-content-encoding"`
    Etag         string
    Language     string `header:"x-ms-content-language"`
    LastModified string
    Length       uint64 `xml:"Content-Length"`
    MD5          string `header:"x-ms-content-md5"`
    Type         string `header:"x-ms-content-type"`
}

// FileCopyState contains various properties of a file copy operation.
type FileCopyState struct {
    CompletionTime string
    ID             string `header:"x-ms-copy-id"`
    Progress       string
    Source         string
    Status         string `header:"x-ms-copy-status"`
    StatusDesc     string
}

// FileStream contains file data returned from a call to GetFile.
type FileStream struct {
    Body       io.ReadCloser
    ContentMD5 string
}

// FileRequestOptions will be passed to misc file operations.
// Currently just Timeout (in seconds) but will expand.
type FileRequestOptions struct {
    Timeout uint // timeout duration in seconds.
}

// getParameters, construct parameters for FileRequestOptions.
// currently only timeout, but expecting to grow as functionality fills out.
func (p FileRequestOptions) getParameters() url.Values {
    out := url.Values{}

    if p.Timeout != 0 {
        out.Set("timeout", fmt.Sprintf("%v", p.Timeout))
    }

    return out
}

// FileRanges contains a list of file range information for a file.
//
// See https://msdn.microsoft.com/en-us/library/azure/dn166984.aspx
type FileRanges struct {
    ContentLength uint64
    LastModified  string
    ETag          string
    FileRanges    []FileRange `xml:"Range"`
}

// FileRange contains range information for a file.
//
// See https://msdn.microsoft.com/en-us/library/azure/dn166984.aspx
type FileRange struct {
    Start uint64 `xml:"Start"`
    End   uint64 `xml:"End"`
}

func (fr FileRange) String() string {
    return fmt.Sprintf("bytes=%d-%d", fr.Start, fr.End)
}

// builds the complete file path for this file object
func (f *File) buildPath() string {
    return f.parent.buildPath() + "/" + f.Name
}

// ClearRange releases the specified range of space in a file.
//
// See https://msdn.microsoft.com/en-us/library/azure/dn194276.aspx
func (f *File) ClearRange(fileRange FileRange) error {
    headers, err := f.modifyRange(nil, fileRange, nil)
    if err != nil {
        return err
    }

    f.updateEtagAndLastModified(headers)
    return nil
}

// Create creates a new file or replaces an existing one.
//
// See https://msdn.microsoft.com/en-us/library/azure/dn194271.aspx
func (f *File) Create(maxSize uint64) error {
    if maxSize > oneTB {
        return fmt.Errorf("max file size is 1TB")
    }

    extraHeaders := map[string]string{
        "x-ms-content-length": strconv.FormatUint(maxSize, 10),
        "x-ms-type":           "file",
    }

    headers, err := f.fsc.createResource(f.buildPath(), resourceFile, nil, mergeMDIntoExtraHeaders(f.Metadata, extraHeaders), []int{http.StatusCreated})
    if err != nil {
        return err
    }

    f.Properties.Length = maxSize
    f.updateEtagAndLastModified(headers)
    return nil
}

// CopyFile operation copied a file/blob from the sourceURL to the path provided.
//
// See https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/copy-file
func (f *File) CopyFile(sourceURL string, options *FileRequestOptions) error {
    extraHeaders := map[string]string{
        "x-ms-type":        "file",
        "x-ms-copy-source": sourceURL,
    }

    var parameters url.Values
    if options != nil {
        parameters = options.getParameters()
    }

    headers, err := f.fsc.createResource(f.buildPath(), resourceFile, parameters, mergeMDIntoExtraHeaders(f.Metadata, extraHeaders), []int{http.StatusAccepted})
    if err != nil {
        return err
    }

    f.updateEtagLastModifiedAndCopyHeaders(headers)
    return nil
}

// Delete immediately removes this file from the storage account.
//
// See https://msdn.microsoft.com/en-us/library/azure/dn689085.aspx
func (f *File) Delete() error {
    return f.fsc.deleteResource(f.buildPath(), resourceFile)
}

// DeleteIfExists removes this file if it exists.
//
// See https://msdn.microsoft.com/en-us/library/azure/dn689085.aspx
func (f *File) DeleteIfExists() (bool, error) {
    resp, err := f.fsc.deleteResourceNoClose(f.buildPath(), resourceFile)
    if resp != nil {
        defer readAndCloseBody(resp.body)
        if resp.statusCode == http.StatusAccepted || resp.statusCode == http.StatusNotFound {
            return resp.statusCode == http.StatusAccepted, nil
        }
    }
    return false, err
}

// DownloadRangeToStream operation downloads the specified range of this file with optional MD5 hash.
//
// See https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/get-file
func (f *File) DownloadRangeToStream(fileRange FileRange, getContentMD5 bool) (fs FileStream, err error) {
    if getContentMD5 && isRangeTooBig(fileRange) {
        return fs, fmt.Errorf("must specify a range less than or equal to 4MB when getContentMD5 is true")
    }

    extraHeaders := map[string]string{
        "Range": fileRange.String(),
    }
    if getContentMD5 == true {
        extraHeaders["x-ms-range-get-content-md5"] = "true"
    }

    resp, err := f.fsc.getResourceNoClose(f.buildPath(), compNone, resourceFile, http.MethodGet, extraHeaders)
    if err != nil {
        return fs, err
    }

    if err = checkRespCode(resp.statusCode, []int{http.StatusOK, http.StatusPartialContent}); err != nil {
        resp.body.Close()
        return fs, err
    }

    fs.Body = resp.body
    if getContentMD5 {
        fs.ContentMD5 = resp.headers.Get("Content-MD5")
    }
    return fs, nil
}

// Exists returns true if this file exists.
func (f *File) Exists() (bool, error) {
    exists, headers, err := f.fsc.resourceExists(f.buildPath(), resourceFile)
    if exists {
        f.updateEtagAndLastModified(headers)
        f.updateProperties(headers)
    }
    return exists, err
}

// FetchAttributes updates metadata and properties for this file.
func (f *File) FetchAttributes() error {
    headers, err := f.fsc.getResourceHeaders(f.buildPath(), compNone, resourceFile, http.MethodHead)
    if err != nil {
        return err
    }

    f.updateEtagAndLastModified(headers)
    f.updateProperties(headers)
    f.Metadata = getMetadataFromHeaders(headers)
    return nil
}

// returns true if the range is larger than 4MB
func isRangeTooBig(fileRange FileRange) bool {
    if fileRange.End-fileRange.Start > fourMB {
        return true
    }

    return false
}

// ListRanges returns the list of valid ranges for this file.
//
// See https://msdn.microsoft.com/en-us/library/azure/dn166984.aspx
func (f *File) ListRanges(listRange *FileRange) (*FileRanges, error) {
    params := url.Values{"comp": {"rangelist"}}

    // add optional range to list
    var headers map[string]string
    if listRange != nil {
        headers = make(map[string]string)
        headers["Range"] = listRange.String()
    }

    resp, err := f.fsc.listContent(f.buildPath(), params, headers)
    if err != nil {
        return nil, err
    }

    defer resp.body.Close()
    var cl uint64
    cl, err = strconv.ParseUint(resp.headers.Get("x-ms-content-length"), 10, 64)
    if err != nil {
        ioutil.ReadAll(resp.body)
        return nil, err
    }

    var out FileRanges
    out.ContentLength = cl
    out.ETag = resp.headers.Get("ETag")
    out.LastModified = resp.headers.Get("Last-Modified")

    err = xmlUnmarshal(resp.body, &out)
    return &out, err
}

// modifies a range of bytes in this file
func (f *File) modifyRange(bytes io.Reader, fileRange FileRange, contentMD5 *string) (http.Header, error) {
    if err := f.fsc.checkForStorageEmulator(); err != nil {
        return nil, err
    }
    if fileRange.End < fileRange.Start {
        return nil, errors.New("the value for rangeEnd must be greater than or equal to rangeStart")
    }
    if bytes != nil && isRangeTooBig(fileRange) {
        return nil, errors.New("range cannot exceed 4MB in size")
    }

    uri := f.fsc.client.getEndpoint(fileServiceName, f.buildPath(), url.Values{"comp": {"range"}})

    // default to clear
    write := "clear"
    cl := uint64(0)

    // if bytes is not nil then this is an update operation
    if bytes != nil {
        write = "update"
        cl = (fileRange.End - fileRange.Start) + 1
    }

    extraHeaders := map[string]string{
        "Content-Length": strconv.FormatUint(cl, 10),
        "Range":          fileRange.String(),
        "x-ms-write":     write,
    }

    if contentMD5 != nil {
        extraHeaders["Content-MD5"] = *contentMD5
    }

    headers := mergeHeaders(f.fsc.client.getStandardHeaders(), extraHeaders)
    resp, err := f.fsc.client.exec(http.MethodPut, uri, headers, bytes, f.fsc.auth)
    if err != nil {
        return nil, err
    }
    defer readAndCloseBody(resp.body)
    return resp.headers, checkRespCode(resp.statusCode, []int{http.StatusCreated})
}

// SetMetadata replaces the metadata for this file.
//
// Some keys may be converted to Camel-Case before sending. All keys
// are returned in lower case by GetFileMetadata. HTTP header names
// are case-insensitive so case munging should not matter to other
// applications either.
//
// See https://msdn.microsoft.com/en-us/library/azure/dn689097.aspx
func (f *File) SetMetadata() error {
    headers, err := f.fsc.setResourceHeaders(f.buildPath(), compMetadata, resourceFile, mergeMDIntoExtraHeaders(f.Metadata, nil))
    if err != nil {
        return err
    }

    f.updateEtagAndLastModified(headers)
    return nil
}

// SetProperties sets system properties on this file.
//
// Some keys may be converted to Camel-Case before sending. All keys
// are returned in lower case by SetFileProperties. HTTP header names
// are case-insensitive so case munging should not matter to other
// applications either.
//
// See https://msdn.microsoft.com/en-us/library/azure/dn166975.aspx
func (f *File) SetProperties() error {
    headers, err := f.fsc.setResourceHeaders(f.buildPath(), compProperties, resourceFile, headersFromStruct(f.Properties))
    if err != nil {
        return err
    }

    f.updateEtagAndLastModified(headers)
    return nil
}

// updates Etag and last modified date
func (f *File) updateEtagAndLastModified(headers http.Header) {
    f.Properties.Etag = headers.Get("Etag")
    f.Properties.LastModified = headers.Get("Last-Modified")
}

// updates Etag, last modified date and x-ms-copy-id
func (f *File) updateEtagLastModifiedAndCopyHeaders(headers http.Header) {
    f.Properties.Etag = headers.Get("Etag")
    f.Properties.LastModified = headers.Get("Last-Modified")
    f.FileCopyProperties.ID = headers.Get("X-Ms-Copy-Id")
    f.FileCopyProperties.Status = headers.Get("X-Ms-Copy-Status")
}

// updates file properties from the specified HTTP header
func (f *File) updateProperties(header http.Header) {
    size, err := strconv.ParseUint(header.Get("Content-Length"), 10, 64)
    if err == nil {
        f.Properties.Length = size
    }

    f.updateEtagAndLastModified(header)
    f.Properties.CacheControl = header.Get("Cache-Control")
    f.Properties.Disposition = header.Get("Content-Disposition")
    f.Properties.Encoding = header.Get("Content-Encoding")
    f.Properties.Language = header.Get("Content-Language")
    f.Properties.MD5 = header.Get("Content-MD5")
    f.Properties.Type = header.Get("Content-Type")
}

// URL gets the canonical URL to this file.
// This method does not create a publicly accessible URL if the file
// is private and this method does not check if the file exists.
func (f *File) URL() string {
    return f.fsc.client.getEndpoint(fileServiceName, f.buildPath(), url.Values{})
}

// WriteRange writes a range of bytes to this file with an optional MD5 hash of the content.
// Note that the length of bytes must match (rangeEnd - rangeStart) + 1 with a maximum size of 4MB.
//
// See https://msdn.microsoft.com/en-us/library/azure/dn194276.aspx
func (f *File) WriteRange(bytes io.Reader, fileRange FileRange, contentMD5 *string) error {
    if bytes == nil {
        return errors.New("bytes cannot be nil")
    }

    headers, err := f.modifyRange(bytes, fileRange, contentMD5)
    if err != nil {
        return err
    }

    f.updateEtagAndLastModified(headers)
    return nil
}