-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmine.go
278 lines (204 loc) · 4.53 KB
/
mine.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
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
package ginx
import (
"bytes"
"github.com/shrewx/stringx"
"github.com/gin-gonic/gin"
"net/url"
)
type Attachment struct {
filename string
contentType string
bytes.Buffer
}
func (a *Attachment) ContentType() string {
if a.contentType == "" {
return MineApplicationOctetStream
}
return a.contentType
}
func (a *Attachment) Header(ctx *gin.Context) {
if stringx.IsASCII(a.filename) {
ctx.Writer.Header().Set("Content-Disposition", `attachment; filename="`+a.filename+`"`)
} else {
ctx.Writer.Header().Set("Content-Disposition", `attachment; filename*=UTF-8''`+url.QueryEscape(a.filename))
}
}
func (a *Attachment) Bytes() []byte {
return a.Buffer.Bytes()
}
func NewAttachment(filename string, contentType string) *Attachment {
return &Attachment{
filename: filename,
contentType: contentType,
}
}
type ApplicationOgg struct {
bytes.Buffer
}
func (a *ApplicationOgg) ContentType() string {
return MineApplicationOgg
}
func (a *ApplicationOgg) Bytes() []byte { return a.Buffer.Bytes() }
func NewApplicationOgg() *ApplicationOgg {
return &ApplicationOgg{}
}
type AudioMidi struct {
bytes.Buffer
}
func (a *AudioMidi) ContentType() string {
return MineAudioMidi
}
func (a *AudioMidi) Bytes() []byte { return a.Buffer.Bytes() }
func NewAudioMidi() *AudioMidi {
return &AudioMidi{}
}
type AudioMpeg struct {
bytes.Buffer
}
func (a *AudioMpeg) ContentType() string {
return MineAudioMpeg
}
func (a *AudioMpeg) Bytes() []byte { return a.Buffer.Bytes() }
func NewAudioMpeg() *AudioMpeg {
return &AudioMpeg{}
}
type AudioOgg struct {
bytes.Buffer
}
func (a *AudioOgg) ContentType() string {
return MineAudioOgg
}
func (a *AudioOgg) Bytes() []byte { return a.Buffer.Bytes() }
func NewAudioOgg() *AudioOgg {
return &AudioOgg{}
}
type AudioWave struct {
bytes.Buffer
}
func (a *AudioWave) ContentType() string {
return MineAudioWave
}
func (a *AudioWave) Bytes() []byte { return a.Buffer.Bytes() }
func NewAudioWave() *AudioWave {
return &AudioWave{}
}
type AudioWebm struct {
bytes.Buffer
}
func (a *AudioWebm) ContentType() string {
return MineAudioWave
}
func (a *AudioWebm) Bytes() []byte { return a.Buffer.Bytes() }
func NewAudioWebm() *AudioWebm {
return &AudioWebm{}
}
func NewImageBmp() *ImageBmp {
return &ImageBmp{}
}
type ImageBmp struct {
bytes.Buffer
}
func (i *ImageBmp) ContentType() string {
return MineImageBmp
}
func (i *ImageBmp) Bytes() []byte { return i.Buffer.Bytes() }
func NewImageGIF() *ImageGIF {
return &ImageGIF{}
}
type ImageGIF struct {
bytes.Buffer
}
func (i *ImageGIF) ContentType() string {
return MineImageGif
}
func (i *ImageGIF) Bytes() []byte { return i.Buffer.Bytes() }
func NewImageJPEG() *ImageJPEG {
return &ImageJPEG{}
}
type ImageJPEG struct {
bytes.Buffer
}
func (i *ImageJPEG) ContentType() string {
return MineImageJpeg
}
func (i *ImageJPEG) Bytes() []byte { return i.Buffer.Bytes() }
func NewImagePNG() *ImagePNG {
return &ImagePNG{}
}
type ImagePNG struct {
bytes.Buffer
}
func (i *ImagePNG) ContentType() string {
return MineImagePng
}
func (i *ImagePNG) Bytes() []byte { return i.Buffer.Bytes() }
func NewImageSVG() *ImageSVG {
return &ImageSVG{}
}
type ImageSVG struct {
bytes.Buffer
}
func (ImageSVG) ContentType() string {
return MineImageSvg
}
func (i *ImageSVG) Bytes() []byte { return i.Buffer.Bytes() }
func NewImageWebp() *ImageWebp {
return &ImageWebp{}
}
type ImageWebp struct {
bytes.Buffer
}
func (i *ImageWebp) ContentType() string {
return MineImageWebp
}
func (i *ImageWebp) Bytes() []byte { return i.Buffer.Bytes() }
func NewCSS() *CSS {
return &CSS{}
}
type CSS struct {
bytes.Buffer
}
func (c *CSS) ContentType() string {
return MineTextCss
}
func (c *CSS) Bytes() []byte { return c.Buffer.Bytes() }
func NewHTML() *HTML {
return &HTML{}
}
type HTML struct {
bytes.Buffer
}
func (h *HTML) ContentType() string {
return MineTextHtml
}
func (h *HTML) Bytes() []byte { return h.Buffer.Bytes() }
func NewPlain() *Plain {
return &Plain{}
}
type Plain struct {
bytes.Buffer
}
func (p *Plain) ContentType() string {
return MineTextPlain
}
func (p *Plain) Bytes() []byte { return p.Buffer.Bytes() }
func NewVideoOgg() *VideoOgg {
return &VideoOgg{}
}
type VideoOgg struct {
bytes.Buffer
}
func (v *VideoOgg) ContentType() string {
return MineVideoOgg
}
func (v *VideoOgg) Bytes() []byte { return v.Buffer.Bytes() }
func NewVideoWebm() *VideoWebm {
return &VideoWebm{}
}
type VideoWebm struct {
bytes.Buffer
}
func (v *VideoWebm) ContentType() string {
return MineVideoWebm
}
func (v *VideoWebm) Bytes() []byte { return v.Buffer.Bytes() }