-
Notifications
You must be signed in to change notification settings - Fork 152
Expand file tree
/
Copy pathclient_io.dart
More file actions
451 lines (404 loc) Β· 13.7 KB
/
client_io.dart
File metadata and controls
451 lines (404 loc) Β· 13.7 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
import 'dart:io';
import 'dart:math';
import 'package:cookie_jar/cookie_jar.dart';
import 'package:device_info_plus/device_info_plus.dart';
import 'package:http/http.dart' as http;
import 'package:http/io_client.dart';
import 'package:package_info_plus/package_info_plus.dart';
import 'package:path_provider/path_provider.dart';
import 'package:flutter_web_auth_2/flutter_web_auth_2.dart';
import 'client_mixin.dart';
import 'client_base.dart';
import 'cookie_manager.dart';
import 'enums.dart';
import 'exception.dart';
import 'interceptor.dart';
import 'response.dart';
import 'package:flutter/foundation.dart';
import 'input_file.dart';
import 'upload_progress.dart';
ClientBase createClient({required String endPoint, required bool selfSigned}) =>
ClientIO(endPoint: endPoint, selfSigned: selfSigned);
class ClientIO extends ClientBase with ClientMixin {
static const int chunkSize = 5 * 1024 * 1024;
String _endPoint;
Map<String, String>? _headers;
@override
late Map<String, String> config;
bool selfSigned;
bool _initProgress = false;
bool _initialized = false;
String? _endPointRealtime;
late http.Client _httpClient;
late HttpClient _nativeClient;
late CookieJar _cookieJar;
final List<Interceptor> _interceptors = [];
bool get initProgress => _initProgress;
bool get initialized => _initialized;
CookieJar get cookieJar => _cookieJar;
@override
String? get endPointRealtime => _endPointRealtime;
ClientIO({
String endPoint = 'https://cloud.appwrite.io/v1',
this.selfSigned = false,
}) : _endPoint = endPoint {
_nativeClient = HttpClient()
..badCertificateCallback =
((X509Certificate cert, String host, int port) => selfSigned);
_httpClient = IOClient(_nativeClient);
_endPointRealtime = endPoint
.replaceFirst('https://', 'wss://')
.replaceFirst('http://', 'ws://');
_headers = {
'content-type': 'application/json',
'x-sdk-name': 'Flutter',
'x-sdk-platform': 'client',
'x-sdk-language': 'flutter',
'x-sdk-version': '23.3.0',
'X-Appwrite-Response-Format': '1.9.1',
};
config = {};
assert(
_endPoint.startsWith(RegExp("http://|https://")),
"endPoint $_endPoint must start with 'http'",
);
init();
}
@override
String get endPoint => _endPoint;
Future<Directory> _getCookiePath() async {
final directory = await getApplicationDocumentsDirectory();
final path = directory.path;
final Directory dir = Directory('$path/cookies');
await dir.create();
return dir;
}
/// Your project ID
@override
ClientIO setProject(value) {
config['project'] = value;
addHeader('X-Appwrite-Project', value);
return this;
}
/// Your secret JSON Web Token
@override
ClientIO setJWT(value) {
config['jWT'] = value;
addHeader('X-Appwrite-JWT', value);
return this;
}
@override
ClientIO setLocale(value) {
config['locale'] = value;
addHeader('X-Appwrite-Locale', value);
return this;
}
/// The user session to authenticate with
@override
ClientIO setSession(value) {
config['session'] = value;
addHeader('X-Appwrite-Session', value);
return this;
}
/// Your secret dev API key
@override
ClientIO setDevKey(value) {
config['devKey'] = value;
addHeader('X-Appwrite-Dev-Key', value);
return this;
}
/// Impersonate a user by ID on an already user-authenticated request. Requires the current request to be authenticated as a user with impersonator capability; X-Appwrite-Key alone is not sufficient. Impersonator users are intentionally granted users.read so they can discover a target before impersonation begins. Internal audit logs still attribute actions to the original impersonator and record the impersonated target only in internal audit payload data.
@override
ClientIO setImpersonateUserId(value) {
config['impersonateUserId'] = value;
addHeader('X-Appwrite-Impersonate-User-Id', value);
return this;
}
/// Impersonate a user by email on an already user-authenticated request. Requires the current request to be authenticated as a user with impersonator capability; X-Appwrite-Key alone is not sufficient. Impersonator users are intentionally granted users.read so they can discover a target before impersonation begins. Internal audit logs still attribute actions to the original impersonator and record the impersonated target only in internal audit payload data.
@override
ClientIO setImpersonateUserEmail(value) {
config['impersonateUserEmail'] = value;
addHeader('X-Appwrite-Impersonate-User-Email', value);
return this;
}
/// Impersonate a user by phone on an already user-authenticated request. Requires the current request to be authenticated as a user with impersonator capability; X-Appwrite-Key alone is not sufficient. Impersonator users are intentionally granted users.read so they can discover a target before impersonation begins. Internal audit logs still attribute actions to the original impersonator and record the impersonated target only in internal audit payload data.
@override
ClientIO setImpersonateUserPhone(value) {
config['impersonateUserPhone'] = value;
addHeader('X-Appwrite-Impersonate-User-Phone', value);
return this;
}
@override
ClientIO setSelfSigned({bool status = true}) {
selfSigned = status;
_nativeClient.badCertificateCallback =
((X509Certificate cert, String host, int port) => status);
return this;
}
@override
ClientIO setEndpoint(String endPoint) {
if (!endPoint.startsWith('http://') && !endPoint.startsWith('https://')) {
throw AppwriteException('Invalid endpoint URL: $endPoint');
}
_endPoint = endPoint;
_endPointRealtime = endPoint
.replaceFirst('https://', 'wss://')
.replaceFirst('http://', 'ws://');
return this;
}
@override
ClientIO setEndPointRealtime(String endPoint) {
if (!endPoint.startsWith('ws://') && !endPoint.startsWith('wss://')) {
throw AppwriteException('Invalid realtime endpoint URL: $endPoint');
}
_endPointRealtime = endPoint;
return this;
}
@override
ClientIO addHeader(String key, String value) {
_headers![key] = value;
return this;
}
@override
Map<String, String> getHeaders() {
return Map<String, String>.from(_headers!);
}
Future init() async {
if (_initProgress) return;
_initProgress = true;
final Directory cookieDir = await _getCookiePath();
_cookieJar = PersistCookieJar(storage: FileStorage(cookieDir.path));
_interceptors.add(CookieManager(_cookieJar));
var device = '';
try {
PackageInfo packageInfo = await PackageInfo.fromPlatform();
addHeader(
'Origin',
'appwrite-${Platform.operatingSystem}://${packageInfo.packageName}',
);
//creating custom user agent
DeviceInfoPlugin deviceInfoPlugin = DeviceInfoPlugin();
if (Platform.isAndroid) {
final andinfo = await deviceInfoPlugin.androidInfo;
device =
'(Linux; U; Android ${andinfo.version.release}; ${andinfo.brand} ${andinfo.model})';
}
if (Platform.isIOS) {
final iosinfo = await deviceInfoPlugin.iosInfo;
device = '${iosinfo.utsname.machine} iOS/${iosinfo.systemVersion}';
}
if (Platform.isLinux) {
final lininfo = await deviceInfoPlugin.linuxInfo;
device = '(Linux; U; ${lininfo.id} ${lininfo.version})';
}
if (Platform.isWindows) {
final wininfo = await deviceInfoPlugin.windowsInfo;
device =
'(Windows NT; ${wininfo.computerName})'; //can't seem to get much info here
}
if (Platform.isMacOS) {
final macinfo = await deviceInfoPlugin.macOsInfo;
device = '(Macintosh; ${macinfo.model})';
}
addHeader(
'user-agent',
'${packageInfo.packageName}/${packageInfo.version} $device',
);
} catch (e) {
debugPrint('Error getting device info: $e');
device = Platform.operatingSystem;
addHeader('user-agent', device);
}
_initialized = true;
_initProgress = false;
}
Future<http.BaseRequest> _interceptRequest(http.BaseRequest request) async {
final body = (request is http.Request) ? request.body : '';
for (final i in _interceptors) {
request = await i.onRequest(request);
}
if (request is http.Request) {
assert(
body == request.body,
'Interceptors should not transform the body of the request'
'Use Request converter instead',
);
}
return request;
}
Future<http.Response> _interceptResponse(http.Response response) async {
final body = response.body;
for (final i in _interceptors) {
response = await i.onResponse(response);
}
assert(
body == response.body,
'Interceptors should not transform the body of the response',
);
return response;
}
@override
Future<Response> chunkedUpload({
required String path,
required Map<String, dynamic> params,
required String paramName,
required String idParamName,
required Map<String, String> headers,
Function(UploadProgress)? onProgress,
}) async {
InputFile file = params[paramName];
if (file.path == null && file.bytes == null) {
throw AppwriteException("File path or bytes must be provided");
}
int size = 0;
if (file.bytes != null) {
size = file.bytes!.length;
}
File? iofile;
if (file.path != null) {
iofile = File(file.path!);
size = await iofile.length();
}
late Response res;
if (size <= chunkSize) {
if (file.path != null) {
params[paramName] = await http.MultipartFile.fromPath(
paramName,
file.path!,
filename: file.filename,
);
} else {
params[paramName] = http.MultipartFile.fromBytes(
paramName,
file.bytes!,
filename: file.filename,
);
}
return call(
HttpMethod.post,
path: path,
params: params,
headers: headers,
);
}
var offset = 0;
if (idParamName.isNotEmpty) {
//make a request to check if a file already exists
try {
res = await call(
HttpMethod.get,
path: '$path/${params[idParamName]}',
headers: headers,
);
final int chunksUploaded = res.data['chunksUploaded'] as int;
offset = chunksUploaded * chunkSize;
} on AppwriteException catch (_) {}
}
RandomAccessFile? raf;
// read chunk and upload each chunk
if (iofile != null) {
raf = await iofile.open(mode: FileMode.read);
}
while (offset < size) {
List<int> chunk = [];
if (file.bytes != null) {
final end = min(offset + chunkSize, size);
chunk = file.bytes!.getRange(offset, end).toList();
} else {
raf!.setPositionSync(offset);
chunk = raf.readSync(chunkSize);
}
params[paramName] = http.MultipartFile.fromBytes(
paramName,
chunk,
filename: file.filename,
);
headers['content-range'] =
'bytes $offset-${min<int>((offset + chunkSize - 1), size - 1)}/$size';
res = await call(
HttpMethod.post,
path: path,
headers: headers,
params: params,
);
offset += chunkSize;
if (offset < size) {
headers['x-appwrite-id'] = res.data['\$id'];
}
final progress = UploadProgress(
$id: res.data['\$id'] ?? '',
progress: min(offset, size) / size * 100,
sizeUploaded: min(offset, size),
chunksTotal: res.data['chunksTotal'] ?? 0,
chunksUploaded: res.data['chunksUploaded'] ?? 0,
);
onProgress?.call(progress);
}
raf?.close();
return res;
}
bool get _customSchemeAllowed => Platform.isWindows || Platform.isLinux;
@override
Future webAuth(Uri url, {String? callbackUrlScheme}) {
return FlutterWebAuth2.authenticate(
url: url.toString(),
callbackUrlScheme: callbackUrlScheme != null && _customSchemeAllowed
? callbackUrlScheme
: "appwrite-callback-${config['project']!}",
options: const FlutterWebAuth2Options(
useWebview: false,
),
).then((value) async {
Uri url = Uri.parse(value);
final key = url.queryParameters['key'];
final secret = url.queryParameters['secret'];
if (key == null || secret == null) {
throw AppwriteException(
"Invalid OAuth2 Response. Key and Secret not available.",
500,
);
}
Cookie cookie = Cookie(key, secret);
cookie.domain = Uri.parse(_endPoint).host;
cookie.httpOnly = true;
cookie.path = '/';
List<Cookie> cookies = [cookie];
await init();
_cookieJar.saveFromResponse(Uri.parse(_endPoint), cookies);
});
}
@override
Future<Response> call(
HttpMethod method, {
String path = '',
Map<String, String> headers = const {},
Map<String, dynamic> params = const {},
ResponseType? responseType,
}) async {
while (!_initialized && _initProgress) {
await Future.delayed(Duration(milliseconds: 10));
}
if (!_initialized) {
await init();
}
late http.Response res;
http.BaseRequest request = prepareRequest(
method,
uri: Uri.parse(_endPoint + path),
headers: {..._headers!, ...headers},
params: params,
);
try {
request = await _interceptRequest(request);
final streamedResponse = await _httpClient.send(request);
res = await toResponse(streamedResponse);
res = await _interceptResponse(res);
return prepareResponse(res, responseType: responseType);
} catch (e) {
if (e is AppwriteException) {
rethrow;
}
throw AppwriteException(e.toString());
}
}
}