@@ -91,7 +91,8 @@ Future<void> telegramClientCli(List<String> args_raw) async {
91
91
}
92
92
93
93
if (command == "create" ) {
94
- final List <TelegramClientProjectTemplate > telegramClientProjectTemplates = TelegramClientProjectTemplate .templates;
94
+ final List <TelegramClientProjectTemplate > telegramClientProjectTemplates =
95
+ TelegramClientProjectTemplate .templates;
95
96
telegramClientProjectTemplates.sort ((a, b) => a.name.compareTo (b.name));
96
97
if (["--help" , "-h" ].contains (args.after (command) ?? "" )) {
97
98
final String help_create = """
@@ -113,7 +114,8 @@ Example: ${executable} create name_project --template ${telegramClientProjectTem
113
114
}
114
115
Directory directory_current = Directory .current;
115
116
String new_project_name = await Future (() async {
116
- String new_project_name_from_command = (args.after (command) ?? "" ).toLowerCase ();
117
+ String new_project_name_from_command =
118
+ (args.after (command) ?? "" ).toLowerCase ();
117
119
if (new_project_name_from_command.isNotEmpty) {
118
120
return new_project_name_from_command;
119
121
}
@@ -131,16 +133,21 @@ Example: ${executable} create name_project --template ${telegramClientProjectTem
131
133
}
132
134
return "" ;
133
135
});
134
- TelegramClientProjectTemplate telegramClientProjectTemplate = await Future (() async {
135
- String type_procces = (args.after ("--template" ) ?? "" ).toLowerCase ().trim ();
136
- TelegramClientProjectTemplate ? telegramClientProjectTemplate = telegramClientProjectTemplates.firstWhereOrNull ((element) => element.name.toLowerCase () == type_procces);
136
+ TelegramClientProjectTemplate telegramClientProjectTemplate =
137
+ await Future (() async {
138
+ String type_procces =
139
+ (args.after ("--template" ) ?? "" ).toLowerCase ().trim ();
140
+ TelegramClientProjectTemplate ? telegramClientProjectTemplate =
141
+ telegramClientProjectTemplates.firstWhereOrNull (
142
+ (element) => element.name.toLowerCase () == type_procces);
137
143
if (telegramClientProjectTemplate != null ) {
138
144
return telegramClientProjectTemplate;
139
145
}
140
146
if (is_interactive) {
141
147
while (true ) {
142
148
await Future .delayed (Duration (microseconds: 1 ));
143
- TelegramClientProjectTemplate telegramClientProjectTemplate = logger.chooseOne (
149
+ TelegramClientProjectTemplate telegramClientProjectTemplate =
150
+ logger.chooseOne (
144
151
"Template: " ,
145
152
choices: telegramClientProjectTemplates,
146
153
display: (choice) {
@@ -157,7 +164,12 @@ Example: ${executable} create name_project --template ${telegramClientProjectTem
157
164
print ("Failed" );
158
165
exit (1 );
159
166
}
160
- var strm = packageFullTemplateDartApi.create (newName: new_project_name, directoryBase: directory_current, telegramClientProjectTemplate: telegramClientProjectTemplate).listen ((event) {
167
+ var strm = packageFullTemplateDartApi
168
+ .create (
169
+ newName: new_project_name,
170
+ directoryBase: directory_current,
171
+ telegramClientProjectTemplate: telegramClientProjectTemplate)
172
+ .listen ((event) {
161
173
printed (event);
162
174
});
163
175
@@ -231,13 +243,15 @@ Example: ${executable} install library ${library_types.first}
231
243
print (help_create.trim ());
232
244
exit (0 );
233
245
}
234
- TelegramClientLibraryType telegramClientLibraryType = await Future (() async {
246
+ TelegramClientLibraryType telegramClientLibraryType =
247
+ await Future (() async {
235
248
// TelegramClientLibraryType? telegramClientLibraryType = TelegramClientLibraryType.values.firstWhereOrNull((element) => element.name.toLowerCase() == command_after_library);
236
249
237
250
if (is_interactive) {
238
251
while (true ) {
239
252
await Future .delayed (Duration (microseconds: 1 ));
240
- TelegramClientLibraryType telegramClientLibraryType = logger.chooseOne (
253
+ TelegramClientLibraryType telegramClientLibraryType =
254
+ logger.chooseOne (
241
255
"Library Type: " ,
242
256
choices: TelegramClientLibraryType .values,
243
257
display: (choice) {
@@ -250,7 +264,9 @@ Example: ${executable} install library ${library_types.first}
250
264
}
251
265
return TelegramClientLibraryType .tdlib;
252
266
});
253
- var strm = packageFullTemplateDartApi.installLibrary (telegramClientLibraryType: telegramClientLibraryType).listen ((event) {
267
+ var strm = packageFullTemplateDartApi
268
+ .installLibrary (telegramClientLibraryType: telegramClientLibraryType)
269
+ .listen ((event) {
254
270
printed (event);
255
271
});
256
272
@@ -263,7 +279,8 @@ Example: ${executable} install library ${library_types.first}
263
279
}
264
280
if (command == "telegram_bot_api" ) {
265
281
List <Map <dynamic , dynamic >> parametersRequest = [];
266
- String input_file = (args.after ("-i" ) ?? args.after ("--input" ) ?? "" ).trim ();
282
+ String input_file =
283
+ (args.after ("-i" ) ?? args.after ("--input" ) ?? "" ).trim ();
267
284
268
285
File file_input = File (input_file);
269
286
if (file_input.existsSync ()) {
@@ -276,7 +293,8 @@ Example: ${executable} install library ${library_types.first}
276
293
if (args.contains ("--@type" ) || args.contains ("-@type" )) {
277
294
String parameters_key = "" ;
278
295
for (var element in args.arguments) {
279
- if (RegExp (r"(-(-)?(@)?[a-z]+)" , caseSensitive: false ).hasMatch (element)) {
296
+ if (RegExp (r"(-(-)?(@)?[a-z]+)" , caseSensitive: false )
297
+ .hasMatch (element)) {
280
298
parameters_key = element.replaceAll (RegExp ("-(-)?" ), "" );
281
299
json_data[parameters_key] = "" ;
282
300
continue ;
@@ -292,7 +310,8 @@ Example: ${executable} install library ${library_types.first}
292
310
].contains (parameters_key)) {
293
311
if (RegExp ("^(@)" , caseSensitive: false ).hasMatch (element)) {
294
312
json_data[parameters_key] = element;
295
- } else if (RegExp ("([a-z_]+)" , caseSensitive: false ).hasMatch (element)) {
313
+ } else if (RegExp ("([a-z_]+)" , caseSensitive: false )
314
+ .hasMatch (element)) {
296
315
json_data[parameters_key] = "@${element .trim ()}" ;
297
316
} else {
298
317
json_data[parameters_key] = (num .tryParse (element) ?? 0 ).toInt ();
@@ -310,7 +329,9 @@ Example: ${executable} install library ${library_types.first}
310
329
}
311
330
}
312
331
313
- await packageFullTemplateDartApi.telegramBotApi (parametersRequest: parametersRequest).listen ((event) {
332
+ await packageFullTemplateDartApi
333
+ .telegramBotApi (parametersRequest: parametersRequest)
334
+ .listen ((event) {
314
335
printed (event);
315
336
}).asFuture ();
316
337
@@ -322,7 +343,8 @@ Example: ${executable} install library ${library_types.first}
322
343
exit (1 );
323
344
}
324
345
Directory directory = file.parent.parent;
325
- Directory directory_pub = Directory (path.join (directory.path, ".dart_tool" , "pub" ));
346
+ Directory directory_pub =
347
+ Directory (path.join (directory.path, ".dart_tool" , "pub" ));
326
348
if (directory_pub.existsSync ()) {
327
349
await directory_pub.delete (recursive: true );
328
350
}
@@ -356,8 +378,13 @@ File? getPackageDirectory({
356
378
List <Progress > progresss = [];
357
379
// Progress progress = logger.progress("message");
358
380
void printed (TelegramClientApiStatus event) {
359
- if ([TelegramClientApiStatusType .progress_start, TelegramClientApiStatusType .progress_complete, TelegramClientApiStatusType .progress].contains (event.telegramClientApiStatusType)) {
360
- if (event.telegramClientApiStatusType == TelegramClientApiStatusType .progress_start) {
381
+ if ([
382
+ TelegramClientApiStatusType .progress_start,
383
+ TelegramClientApiStatusType .progress_complete,
384
+ TelegramClientApiStatusType .progress
385
+ ].contains (event.telegramClientApiStatusType)) {
386
+ if (event.telegramClientApiStatusType ==
387
+ TelegramClientApiStatusType .progress_start) {
361
388
progresss.add (logger.progress (event.value));
362
389
// progress.cancel();
363
390
// progress = logger.progress(event.value);
@@ -372,11 +399,13 @@ void printed(TelegramClientApiStatus event) {
372
399
return progresss.last;
373
400
}
374
401
}();
375
- if (event.telegramClientApiStatusType == TelegramClientApiStatusType .progress) {
402
+ if (event.telegramClientApiStatusType ==
403
+ TelegramClientApiStatusType .progress) {
376
404
progress.update (event.value);
377
405
return ;
378
406
}
379
- if (event.telegramClientApiStatusType == TelegramClientApiStatusType .progress_complete) {
407
+ if (event.telegramClientApiStatusType ==
408
+ TelegramClientApiStatusType .progress_complete) {
380
409
progress.complete (event.value);
381
410
382
411
// progress.cancel();
0 commit comments