-
Notifications
You must be signed in to change notification settings - Fork 463
/
Copy pathfile.go
183 lines (160 loc) · 6.04 KB
/
file.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
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
//
//
// File generated from our OpenAPI spec
//
//
package stripe
import (
"bytes"
"encoding/json"
"github.com/stripe/stripe-go/v72/form"
"io"
"mime/multipart"
"net/url"
"path/filepath"
)
// The [purpose](https://stripe.com/docs/file-upload#uploading-a-file) of the uploaded file.
type FilePurpose string
// List of values that FilePurpose can take
const (
FilePurposeAccountRequirement FilePurpose = "account_requirement"
FilePurposeAdditionalVerification FilePurpose = "additional_verification"
FilePurposeBusinessIcon FilePurpose = "business_icon"
FilePurposeBusinessLogo FilePurpose = "business_logo"
FilePurposeCustomerSignature FilePurpose = "customer_signature"
FilePurposeDisputeEvidence FilePurpose = "dispute_evidence"
FilePurposeDocumentProviderIdentityDocument FilePurpose = "document_provider_identity_document"
FilePurposeFinanceReportRun FilePurpose = "finance_report_run"
FilePurposeFoundersStockDocument FilePurpose = "founders_stock_document"
FilePurposeIdentityDocument FilePurpose = "identity_document"
FilePurposeIdentityDocumentDownloadable FilePurpose = "identity_document_downloadable"
FilePurposePCIDocument FilePurpose = "pci_document"
FilePurposeSelfie FilePurpose = "selfie"
FilePurposeSigmaScheduledQuery FilePurpose = "sigma_scheduled_query"
FilePurposeTaxDocumentUserUpload FilePurpose = "tax_document_user_upload"
)
// Returns a list of the files that your account has access to. The files are returned sorted by creation date, with the most recently created files appearing first.
type FileListParams struct {
ListParams `form:"*"`
Created *int64 `form:"created"`
CreatedRange *RangeQueryParams `form:"created"`
// The file purpose to filter queries by. If none is provided, files will not be filtered by purpose.
Purpose *string `form:"purpose"`
}
// FileFileLinkDataParams is the set of parameters allowed for the
// file_link_data hash.
type FileFileLinkDataParams struct {
Params `form:"*"`
Create *bool `form:"create"`
ExpiresAt *int64 `form:"expires_at"`
}
// To upload a file to Stripe, you'll need to send a request of type multipart/form-data. The request should contain the file you would like to upload, as well as the parameters for creating a file.
//
// All of Stripe's officially supported Client libraries should have support for sending multipart/form-data.
type FileParams struct {
Params `form:"*"`
// FileReader is a reader with the contents of the file that should be uploaded.
FileReader io.Reader
// Filename is just the name of the file without path information.
Filename *string
Purpose *string
FileLinkData *FileFileLinkDataParams
}
// This is an object representing a file hosted on Stripe's servers. The
// file may have been uploaded by yourself using the [create file](https://stripe.com/docs/api#create_file)
// request (for example, when uploading dispute evidence) or it may have
// been created by Stripe (for example, the results of a [Sigma scheduled
// query](https://stripe.com/docs/api#scheduled_queries)).
//
// Related guide: [File Upload Guide](https://stripe.com/docs/file-upload).
type File struct {
APIResource
// Time at which the object was created. Measured in seconds since the Unix epoch.
Created int64 `json:"created"`
// The time at which the file expires and is no longer available in epoch seconds.
ExpiresAt int64 `json:"expires_at"`
// A filename for the file, suitable for saving to a filesystem.
Filename string `json:"filename"`
// Unique identifier for the object.
ID string `json:"id"`
// A list of [file links](https://stripe.com/docs/api#file_links) that point at this file.
Links *FileLinkList `json:"links"`
// String representing the object's type. Objects of the same type share the same value.
Object string `json:"object"`
// The [purpose](https://stripe.com/docs/file-upload#uploading-a-file) of the uploaded file.
Purpose FilePurpose `json:"purpose"`
// The size in bytes of the file object.
Size int64 `json:"size"`
// A user friendly title for the document.
Title string `json:"title"`
// The type of the file returned (e.g., `csv`, `pdf`, `jpg`, or `png`).
Type string `json:"type"`
// The URL from which the file can be downloaded using your live secret API key.
URL string `json:"url"`
}
// FileList is a list of Files as retrieved from a list endpoint.
type FileList struct {
APIResource
ListMeta
Data []*File `json:"data"`
}
// GetBody gets an appropriate multipart form payload to use in a request body
// to create a new file.
func (f *FileParams) GetBody() (*bytes.Buffer, string, error) {
body := &bytes.Buffer{}
writer := multipart.NewWriter(body)
if f.Purpose != nil {
err := writer.WriteField("purpose", StringValue(f.Purpose))
if err != nil {
return nil, "", err
}
}
if f.FileReader != nil && f.Filename != nil {
part, err := writer.CreateFormFile(
"file",
filepath.Base(StringValue(f.Filename)),
)
if err != nil {
return nil, "", err
}
_, err = io.Copy(part, f.FileReader)
if err != nil {
return nil, "", err
}
}
if f.FileLinkData != nil {
values := &form.Values{}
form.AppendToPrefixed(values, f.FileLinkData, []string{"file_link_data"})
params, err := url.ParseQuery(values.Encode())
if err != nil {
return nil, "", err
}
for key, values := range params {
err := writer.WriteField(key, values[0])
if err != nil {
return nil, "", err
}
}
}
err := writer.Close()
if err != nil {
return nil, "", err
}
return body, writer.Boundary(), nil
}
// UnmarshalJSON handles deserialization of a File.
// This custom unmarshaling is needed because the resulting
// property may be an id or the full struct if it was expanded.
func (f *File) UnmarshalJSON(data []byte) error {
if id, ok := ParseID(data); ok {
f.ID = id
return nil
}
type file File
var v file
if err := json.Unmarshal(data, &v); err != nil {
return err
}
*f = File(v)
return nil
}