-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGoogleStorage.cfc
More file actions
238 lines (169 loc) · 5.09 KB
/
Copy pathGoogleStorage.cfc
File metadata and controls
238 lines (169 loc) · 5.09 KB
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
component displayname="GoogleStorage" output="false" accessors="true" {
property name="bucket" type="String";
property name="service" type="Object";
public GoogleStorage function init(
required string bucket,
required string pathToJsonFile
) {
setBucket( arguments.bucket );
var configFile = CreateObject("java", "java.io.FileInputStream").init( arguments.pathToJsonFile );
var credentials = CreateObject("java", "com.google.auth.oauth2.ServiceAccountCredentials")
.fromStream( configFile );
var storage = CreateObject("java", "com.google.cloud.storage.StorageOptions")
.newBuilder()
.setCredentials( credentials )
.build()
.getService();
setService( storage );
return this;
}
/**
*
*/
public String function getSignedUrl(
required String fileId,
required Numeric minutes=10
) {
var blobInfo = CreateObject("java", "com.google.cloud.storage.BlobInfo");
var BlobId = CreateObject("java", "com.google.cloud.storage.BlobId");
var uri = getService().signUrl(
blobInfo.newBuilder(BlobId.of( getBucket(), arguments.fileId ) ).build(),
arguments.minutes,
CreateObject("java", "java.util.concurrent.TimeUnit").MINUTES,
[]
);
return uri.toString();
}
/**
*
*/
public Struct function getFile(
required String fileId
) {
var blobId = CreateObject("java", "com.google.cloud.storage.BlobId");
var obj = getService().get( blobId.of( getBucket(), arguments.fileId ) );
return createFile( obj );;
}
/**
*
*/
public Boolean function deleteFileById(required string fileId) {
var result = getService().delete( getBucket(), arguments.fileId, [] );
return result;
}
/**
*
*/
public Array function listFiles(
required String prefix="",
required String pageSize=100,
) {
var results = [];
var options = CreateObject("java", "com.google.cloud.storage.Storage$BlobListOption")
//.prefix( 'opus-dev-bucket' );
var record = getService().list(
getBucket(),
[
options
.prefix( arguments.prefix ),
options
.pageSize( arguments.pageSize )//not works
]
)
.iterateAll()
.iterator();
while ( record.hasNext() ) {
var obj = record.next();
results.add(
createFile( obj )
);
}
return results;
}
/**
*
*/
public Void function downloadFromUrl(required String fileId, String fileName="" ) {
var uri = getSignedUrl( fileId, 1 )
var fname = Len( arguments.fileName ) ? arguments.fileName : arguments.fileId;
cfhttp( getAsBinary=true, url=uri, result="result", method="get" );
cfheader( name="Content-Disposition", value="attachment; filename=#fname#" );
cfcontent( reset=true, variable=ToBinary(ToBase64(result.fileContent)), type="text/plain" );
}
/**
*
*/
public Void function downloadFile(required String fileId, required string mimeType) {
// returns sun.nio.fs.WindowsPath instead of java.nio.file.Paths
var destination = CreateObject("java", "java.io.File").init( CreateUUID() ).toPath();
var blobId = CreateObject("java", "com.google.cloud.storage.BlobId");
getService().downloadTo(
blobId.of( getBucket(), arguments.fileId ),
// Raise error
// Method downloadTo(com.google.cloud.storage.BlobId, sun.nio.fs.WindowsPath) not found
destination
);
}
/**
*
*/
public Struct function insertFile(
required String filePath,
required String fileId,
required String mimeType,
Struct metadata={}
) {
var options = arguments.metadata;
var map = CreateObject("java", "java.util.Hashtable").init();
var blobId = CreateObject("java", "com.google.cloud.storage.BlobId");
var blobInfo = CreateObject("java", "com.google.cloud.storage.BlobInfo");
if ( options.len() ) {
options.each( function( key ) {
map.put( key, options[ key ] );
}) ;
}
if ( !FileExists( arguments.filePath ) ) {
raiseError(
type="FileToUploadNotExists",
message="File [#arguments.filePath#] not exists"
)
}
try{
var obj = getService().create(
blobInfo
.newBuilder( BlobId.of( getBucket(), arguments.fileId ))
.setMetadata( map )
.setContentType( arguments.mimeType )
.build(),
CreateObject("java", "java.io.FileInputStream")
.init( arguments.filePath ),
[]
)
} catch( any error ) {
raiseError(type="NotCreateFileInStore", message="#error.message#", error=error)
}
return createFile( obj );
}
/*
Private methods
*/
private Void function raiseError( required String type, required String message="", Struct error={} ){
throw(
type = "GoogleStorageCfml.errors.#arguments.type#",
message = arguments.message,
object = arguments.error
)
}
private Struct function createFile( required Object obj ){
var result = {
"size" = obj.getSize(),
"fileId" = obj.getName(),
"bucket" = obj.getBlobId().getBucket(),
"createdAd" = epochToDate( obj.getCreateTime() )
}
return result;
}
private Date function epochToDate( required Number milliseconds ){
return DateAdd("s", arguments.milliseconds/1000, "January 1 1970 00:00:00");
}
}