-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathutils.android.ts
123 lines (115 loc) · 5.1 KB
/
utils.android.ts
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
import { AndroidActivityResultEventData, Application, File, Folder, ImageSource, Utils, path } from '@nativescript/core';
import { SDK_VERSION } from '@nativescript/core/utils';
import { ANDROID_CONTENT } from './constants';
export * from './utils.common';
export async function saveImage(
imageSource: ImageSource,
{
exportDirectory,
fileName,
imageFormat,
imageQuality,
overwrite = true,
reportName,
toGallery = false
}: { toGallery?: boolean; imageFormat: 'png' | 'jpeg' | 'jpg'; imageQuality; fileName: string; exportDirectory: string; reportName?: boolean; overwrite?: boolean }
) {
let destinationName = fileName;
if (!destinationName.endsWith(imageFormat)) {
destinationName += '.' + imageFormat;
}
DEV_LOG && console.info('saveImage', imageSource, toGallery, destinationName);
if (toGallery) {
com.akylas.documentscanner.utils.ImageUtil.Companion.saveBitmapToGallery(Utils.android.getApplicationContext(), imageSource.android, imageFormat, imageQuality, fileName);
} else if (exportDirectory.startsWith(ANDROID_CONTENT)) {
const context = Utils.android.getApplicationContext();
const outdocument = androidx.documentfile.provider.DocumentFile.fromTreeUri(context, android.net.Uri.parse(exportDirectory));
let outfile: androidx.documentfile.provider.DocumentFile;
if (overwrite) {
outfile = outdocument.findFile(destinationName) || outdocument.createFile('image/' + imageFormat, destinationName);
} else {
outfile = outdocument.createFile('image/' + imageFormat, destinationName) || outdocument.findFile(destinationName);
}
if (!outfile) {
throw new Error(`error creating file "${destinationName}" in "${exportDirectory}"`);
}
const stream = Utils.android.getApplicationContext().getContentResolver().openOutputStream(outfile.getUri());
(imageSource.android as android.graphics.Bitmap).compress(
imageFormat === 'png' ? android.graphics.Bitmap.CompressFormat.PNG : android.graphics.Bitmap.CompressFormat.JPEG,
imageQuality,
stream
);
stream.close();
if (reportName !== undefined) {
if (reportName) {
return com.nativescript.documentpicker.FilePath.getPath(context, outfile.getUri());
} else {
return com.nativescript.documentpicker.FilePath.getPath(context, outdocument.getUri());
}
}
} else {
const destinationPath = path.join(exportDirectory, destinationName);
if (overwrite && File.exists(destinationPath)) {
await File.fromPath(destinationPath).remove();
}
await imageSource.saveToFileAsync(destinationPath, imageFormat, imageQuality);
// destinationPaths.push(destinationPath);
if (reportName !== undefined) {
if (reportName) {
return destinationPath;
} else {
return exportDirectory;
}
}
}
}
function _checkManagePermission() {
return SDK_VERSION >= 30 && android.os.Environment.isExternalStorageManager();
}
let _hasManagePermission: boolean = _checkManagePermission();
export function hasManagePermission() {
return !!_hasManagePermission;
}
export function checkManagePermission() {
if (_hasManagePermission === undefined) {
_hasManagePermission = _checkManagePermission();
}
return _hasManagePermission;
}
export async function askForManagePermission() {
const activity = Application.android.startActivity;
//If the draw over permission is not available open the settings screen
//to grant the permission.
return new Promise<boolean>((resolve, reject) => {
const REQUEST_CODE = 6646;
const onActivityResultHandler = (data: AndroidActivityResultEventData) => {
if (data.requestCode === REQUEST_CODE) {
Application.android.off(Application.android.activityResultEvent, onActivityResultHandler);
_hasManagePermission = _checkManagePermission();
resolve(_hasManagePermission);
}
};
Application.android.on(Application.android.activityResultEvent, onActivityResultHandler);
const intent = new android.content.Intent(android.provider.Settings.ACTION_MANAGE_APP_ALL_FILES_ACCESS_PERMISSION, android.net.Uri.parse('package:' + __APP_ID__));
activity.startActivityForResult(intent, REQUEST_CODE);
});
}
export async function requestManagePermission() {
if (!PLAY_STORE_BUILD && SDK_VERSION >= 30) {
if (checkManagePermission()) {
return true;
}
return askForManagePermission();
}
return true;
}
export function getRealPath(src: string, force = false) {
DEV_LOG && console.log('getRealPath', src, _hasManagePermission, force);
if (!force && !_hasManagePermission) {
return src;
}
if (!src.startsWith(ANDROID_CONTENT)) {
return src;
}
return com.nativescript.documentpicker.FilePath.getPathFromString(Utils.android.getApplicationContext(), src);
}