-
Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy pathRNDocViewerModule.java
More file actions
494 lines (440 loc) · 18.6 KB
/
RNDocViewerModule.java
File metadata and controls
494 lines (440 loc) · 18.6 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
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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
package com.philipphecht;
import com.facebook.react.bridge.ReactApplicationContext;
import com.facebook.react.bridge.ReactContextBaseJavaModule;
import com.facebook.react.bridge.ReactMethod;
import com.facebook.react.bridge.Callback;
import com.facebook.react.bridge.WritableNativeArray;
import com.facebook.react.bridge.WritableNativeMap;
import com.facebook.react.bridge.ReactMethod;
import com.facebook.react.bridge.ReadableMap;
import com.facebook.react.bridge.ReadableArray;
/* bridge react native
int size();
boolean isNull(int index);
boolean getBoolean(int index);
double getDouble(int index);
int getInt(int index);
String getString(int index);
ReadableArray getArray(int index);
ReadableMap getMap(int index);
ReadableType getType(int index);
*/
//Third Libraries
import java.io.*;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.URL;
import androidx.core.content.FileProvider;
import android.content.ActivityNotFoundException;
import android.content.Context;
import android.content.Intent;
import android.net.Uri;
import android.os.AsyncTask;
import android.webkit.CookieManager;
import android.webkit.MimeTypeMap;
import android.widget.Toast;
import android.util.Log;
public class RNDocViewerModule extends ReactContextBaseJavaModule {
public static final int ERROR_NO_HANDLER_FOR_DATA_TYPE = 53;
public static final int ERROR_FILE_NOT_FOUND = 2;
public static final int ERROR_UNKNOWN_ERROR = 1;
private final ReactApplicationContext reactContext;
public RNDocViewerModule(ReactApplicationContext reactContext) {
super(reactContext);
this.reactContext = reactContext;
}
@Override
public String getName() {
return "RNDocViewer";
}
@ReactMethod
public void openDoc(ReadableArray args, Callback callback) {
final ReadableMap arg_object = args.getMap(0);
try {
if (arg_object.getString("url") != null && arg_object.getString("fileName") != null) {
// parameter parsing
final String url = arg_object.getString("url");
final String fileName =arg_object.getString("fileName");
final String fileType =arg_object.getString("fileType");
final Boolean cache =arg_object.getBoolean("cache");
final byte[] bytesData = new byte[0];
// Begin the Download Task
new FileDownloaderAsyncTask(callback, url, cache, fileName, fileType, bytesData).execute();
}else{
callback.invoke(false);
}
} catch (Exception e) {
callback.invoke(e.getMessage());
}
}
@ReactMethod
public void openDocb64(ReadableArray args, Callback callback) {
final ReadableMap arg_object = args.getMap(0);
try {
if (arg_object.getString("base64") != null && arg_object.getString("fileName") != null && arg_object.getString("fileType") != null) {
// parameter parsing
final String base64 = arg_object.getString("base64");
final String fileName =arg_object.getString("fileName");
final String fileType =arg_object.getString("fileType");
final Boolean cache = arg_object.getBoolean("cache");
//Bytes
final byte[] bytesData = android.util.Base64.decode(base64,android.util.Base64.DEFAULT);
System.out.println("BytesData" + bytesData);
// Begin the Download Task
new FileDownloaderAsyncTask(callback, "", cache, fileName, fileType, bytesData).execute();
}else{
callback.invoke(false);
}
} catch (Exception e) {
callback.invoke(e.getMessage());
}
}
@ReactMethod
public void openDocBinaryinUrl(ReadableArray args, Callback callback) {
final ReadableMap arg_object = args.getMap(0);
try {
if (arg_object.getString("url") != null && arg_object.getString("fileName") != null && arg_object.getString("fileType") != null) {
// parameter parsing
final String url = arg_object.getString("url");
final String fileName =arg_object.getString("fileName");
final String fileType =arg_object.getString("fileType");
final Boolean cache =arg_object.getBoolean("cache");
final byte[] bytesData = new byte[0];
// Begin the Download Task
new FileDownloaderAsyncTask(callback, url, cache, fileName, fileType, bytesData).execute();
}else{
callback.invoke(false);
}
} catch (Exception e) {
callback.invoke(e.getMessage());
}
}
// used for all downloaded files, so we can find and delete them again.
private final static String FILE_TYPE_PREFIX = "PP_";
/**
* downloads the file from the given url to external storage.
*
* @param url
* @return
*/
private File downloadFile(String url, String fileName, Boolean cache, String fileType, byte[] bytesData, Callback callback) {
try {
Context context = getReactApplicationContext().getBaseContext();
File outputDir = context.getCacheDir();
if(bytesData.length > 0){
// use cache
File f = cache != null && cache ? new File(outputDir, fileName) : File.createTempFile(FILE_TYPE_PREFIX, "." + fileType,
outputDir);
System.out.println("Bytes will be creating a file");
final FileOutputStream fileOutputStream;
try {
fileOutputStream = new FileOutputStream(f);
} catch (FileNotFoundException e) {
e.printStackTrace();
return null;
}
final BufferedOutputStream bufferedOutputStream = new BufferedOutputStream(
fileOutputStream);
try {
bufferedOutputStream.write(bytesData);
} catch (IOException e) {
e.printStackTrace();
return null;
} finally {
try {
bufferedOutputStream.close();
} catch (IOException e) {
e.printStackTrace();
}
}
return f;
}else{
String extension = MimeTypeMap.getFileExtensionFromUrl(url);
System.out.println("Extensions DownloadFile " + extension);
if (extension.equals("") && fileType.equals("")) {
extension = "pdf";
System.out.println("extension (default): " + extension);
}
if (fileType != "" && extension.equals("")) {
extension = fileType;
System.out.println("extension (default): " + extension);
}
// check has extension
if (fileName.indexOf("\\.") == -1){
fileName = fileName + '.' + extension;
}
// if use cache, check exist
if (cache != null && cache) {
File existFile = new File(outputDir, fileName);
if (existFile.exists()){
return existFile;
}
}
// get an instance of a cookie manager since it has access to our
// auth cookie
CookieManager cookieManager = CookieManager.getInstance();
// get the cookie string for the site.
String auth = null;
if (cookieManager.getCookie(url) != null) {
auth = cookieManager.getCookie(url).toString();
}
URL url2 = new URL(url);
HttpURLConnection conn = (HttpURLConnection) url2.openConnection();
File f;
try {
if (auth != null) {
conn.setRequestProperty("Cookie", auth);
}
InputStream reader = conn.getInputStream();
// use cache
f = cache != null && cache ? new File(outputDir, fileName)
: File.createTempFile(FILE_TYPE_PREFIX, "." + extension, outputDir);
// make sure the receiving app can read this file
f.setReadable(true, false);
System.out.println(f.getPath());
FileOutputStream outStream = new FileOutputStream(f);
//GET Connection Content length
int fileLength = conn.getContentLength();
/*int readBytes = reader.read(buffer);
while (readBytes > 0) {
outStream.write(buffer, 0, readBytes);
readBytes = reader.read(buffer);
}*/
byte[] buffer = new byte[4096];
long total = 0;
int readBytes = reader.read(buffer);
while (readBytes > 0) {
total += readBytes;
// publishing the progress....
if (fileLength > 0) // only if total length is known
System.out.println((int) (total * 100 / fileLength));
outStream.write(buffer, 0, readBytes);
readBytes = reader.read(buffer);
}
reader.close();
outStream.close();
if (f.exists()) {
System.out.println("File exists");
} else {
System.out.println("File doesn't exist");
}
return f;
} catch (Exception err) {
err.printStackTrace();
} finally {
conn.disconnect();
}
return null;
}
} catch (FileNotFoundException e) {
e.printStackTrace();
callback.invoke(ERROR_FILE_NOT_FOUND);
return null;
} catch (IOException e) {
e.printStackTrace();
callback.invoke(ERROR_UNKNOWN_ERROR);
return null;
}
}
private File copyFile(InputStream in, String fileName, Boolean cache, String fileType, byte[] bytesData, Callback callback) {
try {
Context context = getReactApplicationContext().getBaseContext();
File outputDir = context.getCacheDir();
if (bytesData.length > 0) {
// use cache
File f = cache != null && cache ? new File(outputDir, fileName) : File.createTempFile(FILE_TYPE_PREFIX, "." + fileType,
outputDir);
System.out.println("Bytes will be creating a file");
final FileOutputStream fileOutputStream;
try {
fileOutputStream = new FileOutputStream(f);
} catch (FileNotFoundException e) {
e.printStackTrace();
return null;
}
final BufferedOutputStream bufferedOutputStream = new BufferedOutputStream(
fileOutputStream);
try {
bufferedOutputStream.write(bytesData);
} catch (IOException e) {
e.printStackTrace();
return null;
} finally {
try {
bufferedOutputStream.close();
} catch (IOException e) {
e.printStackTrace();
}
}
return f;
} else {
String extension = MimeTypeMap.getFileExtensionFromUrl(fileName);
System.out.println("Extensions DownloadFile " + extension);
if (extension.equals("") && fileType.equals("")) {
extension = "pdf";
System.out.println("extension (default): " + extension);
}
if (fileType != "" && extension.equals("")) {
extension = fileType;
System.out.println("extension (default): " + extension);
}
// check has extension
if (fileName.indexOf("\\.") == -1) {
fileName = fileName + '.' + extension;
}
// if use cache, check exist
if (cache != null && cache) {
File existFile = new File(outputDir, fileName);
if (existFile.exists()) {
return existFile;
}
}
File f;
try {
// use cache
f = cache != null && cache ? new File(outputDir, fileName)
: File.createTempFile(FILE_TYPE_PREFIX, "." + extension, outputDir);
// make sure the receiving app can read this file
f.setReadable(true, false);
System.out.println(f.getPath());
try {
FileOutputStream outStream = new FileOutputStream(f);
try {
// Transfer bytes from in to out
byte[] buf = new byte[1024];
int len;
while ((len = in.read(buf)) > 0) {
outStream.write(buf, 0, len);
}
} finally {
outStream.close();
}
} finally {
in.close();
}
if (f.exists()) {
System.out.println("File exists");
} else {
System.out.println("File doesn't exist");
}
return f;
} catch (Exception err) {
err.printStackTrace();
}
return null;
}
} catch (FileNotFoundException e) {
e.printStackTrace();
callback.invoke(ERROR_FILE_NOT_FOUND);
return null;
} catch (IOException e) {
e.printStackTrace();
callback.invoke(ERROR_UNKNOWN_ERROR);
return null;
}
}
/**
* Returns the MIME Type of the file by looking at file name extension in
* the URL.
*
* @param url
* @return
*/
private static String getMimeType(String url) {
String mimeType = null;
System.out.println("Url: " + url);
url = url.replaceAll(" ", "");
String extension = MimeTypeMap.getFileExtensionFromUrl(url);
if (extension != null) {
mimeType = MimeTypeMap.getSingleton().getMimeTypeFromExtension(extension);
}
if (mimeType == null) {
mimeType = "application/pdf";
System.out.println("Mime Type (default): " + mimeType);
}
return mimeType;
}
private class FileDownloaderAsyncTask extends AsyncTask<Void, Void, File> {
private final Callback callback;
private final String url;
private final String fileName;
private final Boolean cache;
private final String fileType;
private final byte[] bytesData;
public FileDownloaderAsyncTask(Callback callback,
String url, Boolean cache, String fileName, String fileType, byte[] bytesData) {
super();
this.callback = callback;
this.url = url;
this.fileName = fileName;
this.cache = cache;
this.fileType = fileType;
this.bytesData = bytesData;
}
@Override
protected File doInBackground(Void... arg0) {
if (url.startsWith("content://")) {
File file = null;
try {
InputStream in = getCurrentActivity().getContentResolver().openInputStream(Uri.parse(url));
file = copyFile(in, fileName, cache, fileType, bytesData, callback);
} catch (FileNotFoundException e) {
System.out.println(e);
}
return file;
} else if (!url.startsWith("file://")) {
System.out.println("Url to download" + url);
return downloadFile(url, fileName, cache, fileType, bytesData, callback);
} else {
return new File(url.replace("file://", ""));
}
}
@Override
protected void onPostExecute(File result) {
if (result == null) {
// Has already been handled
return;
}
Context context = getCurrentActivity();
String mimeType;
// mime type of file data
if (fileType != null) {
// If file type is already specified, should just take the mimeType from it
mimeType = MimeTypeMap.getSingleton().getMimeTypeFromExtension(fileType);
} else {
mimeType = getMimeType(url);
}
if (mimeType == null || context == null) {
return;
}
try {
Uri contentUri = FileProvider.getUriForFile(context, reactContext.getPackageName()+".docViewer_provider", result);
System.out.println("ContentUri");
System.out.println(contentUri);
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(contentUri, mimeType);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
if (intent.resolveActivity(context.getPackageManager()) != null) {
context.startActivity(intent);
// Thread-safe.
callback.invoke(null, fileName);
} else {
activityNotFoundMessage("Activity not found to handle: " + contentUri.toString() + " (" + mimeType + ")");
}
} catch (ActivityNotFoundException e) {
activityNotFoundMessage(e.getMessage());
}
}
private void activityNotFoundMessage(String message) {
System.out.println("ERROR");
System.out.println(message);
callback.invoke(message);
//e.printStackTrace();
}
}
}