Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

removed_unneeded_api_calls #309

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
## 0.0.1
## 1.0.0

* TODO: Describe initial release.
* Deriv.com websocket API package.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ dependencies:
$ git submodule init
$ git submodule update --remote
$ ./setup.sh
$ flutter pub run build_runner build --delete-conflicting-outputs
$ dart run build_runner build --delete-conflicting-outputs
```

### Run the tests
Expand Down
3 changes: 1 addition & 2 deletions analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,11 @@ linter:
- flutter_style_todos
- hash_and_equals
- implementation_imports
- iterable_contains_unrelated_type
- collection_methods_unrelated_type
- join_return_with_assignment
- library_names
- library_prefixes
# - lines_longer_than_80_chars
- list_remove_unrelated_type
- no_adjacent_strings_in_list
- no_duplicate_case_values
- no_leading_underscores_for_local_identifiers
Expand Down
8 changes: 0 additions & 8 deletions android/.gitignore

This file was deleted.

45 changes: 0 additions & 45 deletions android/build.gradle

This file was deleted.

4 changes: 0 additions & 4 deletions android/gradle.properties

This file was deleted.

5 changes: 0 additions & 5 deletions android/gradle/wrapper/gradle-wrapper.properties

This file was deleted.

1 change: 0 additions & 1 deletion android/settings.gradle

This file was deleted.

3 changes: 0 additions & 3 deletions android/src/main/AndroidManifest.xml

This file was deleted.

This file was deleted.

106 changes: 72 additions & 34 deletions api_builder.dart
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,42 @@ class APIBuilder extends Builder {
'req_id': 'integer?',
};

static const List<String> hiddenCalls = <String>[
'account_closure',
'account_security',
'account_statistics',
'affiliate_account_add',
'affiliate_add_company',
'affiliate_add_person',
'affiliate_register_person',
'cashier_withdrawal_cancel',
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we also will need this in DerivGO in the near future. in native cashier withdrawal.

'change_email',
'change_password',
'get_account_types',
'jtoken_create',
'link_wallet',
'notification_event',
'passkeys_list',
'passkeys_login',
'passkeys_options',
'passkeys_register',
'passkeys_register_options',
'passkeys_rename',
'passkeys_revoke',
'request_report',
// TODO(Abed): uncomment the following when DerivEZ is removed from DerivGo.
// 'trading_platform_accounts',
// 'trading_platform_asset_listing',
// 'trading_platform_available_accounts',
// 'trading_platform_deposit',
// 'trading_platform_investor_password_change',
// 'trading_platform_leverage',
// 'trading_platform_new_account',
// 'trading_platform_password_change',
// 'trading_platform_product_listing',
// 'trading_platform_withdrawal',
];

@override
Map<String, List<String>> get buildExtensions => const <String, List<String>>{
'.json': <String>['.dart']
Expand Down Expand Up @@ -77,41 +113,42 @@ class APIBuilder extends Builder {
}

final String methodName = items.group(2)!;
final String schemaType = items.group(3)!;
final String className = ReCase(methodName).pascalCase;

final String classFullName = className + schemaTypeMap[schemaType]!;
final String fileName = '${methodName}_$schemaType';

if (schemaType == 'receive') {
final Map<String, dynamic> propertiesMap =
schemaDefinition['properties'];

if (propertiesMap.containsKey('msg_type')) {
final Map<String, dynamic> messageType = propertiesMap['msg_type'];

if (messageType.containsKey('enum')) {
generatedResponses.add(
GeneratedResponseJson(
msgType: messageType['enum'].first,
fileName: fileName,
fullClassName: classFullName,
),
);
if (!hiddenCalls.contains(methodName)) {
final String schemaType = items.group(3)!;
final String className = ReCase(methodName).pascalCase;

final String classFullName = className + schemaTypeMap[schemaType]!;
final String fileName = '${methodName}_$schemaType';

if (schemaType == 'receive') {
final Map<String, dynamic> propertiesMap =
schemaDefinition['properties'];

if (propertiesMap.containsKey('msg_type')) {
final Map<String, dynamic> messageType = propertiesMap['msg_type'];

if (messageType.containsKey('enum')) {
generatedResponses.add(
GeneratedResponseJson(
msgType: messageType['enum'].first,
fileName: fileName,
fullClassName: classFullName,
),
);
}
}
}
}

await buildStep.writeAsString(
// Ideally we'd move somewhere else and reconstruct, but the builder is tediously
// over-specific about where it lets you write things - you *can* navigate to parent
// directories, but it's not easy to support dynamic names that way without a lot of
// extra code.
// https://stackoverflow.com/questions/51188114/dart-build-runner-can-only-scan-read-write-files-in-the-web-directory
// AssetId(buildStep.inputId.package, 'lib/api/${className}${schemaTypeMap[schemaType]}.dart'),
buildStep.inputId.changeExtension('.dart'),
DartFormatter().format(
'''
await buildStep.writeAsString(
// Ideally we'd move somewhere else and reconstruct, but the builder is tediously
// over-specific about where it lets you write things - you *can* navigate to parent
// directories, but it's not easy to support dynamic names that way without a lot of
// extra code.
// https://stackoverflow.com/questions/51188114/dart-build-runner-can-only-scan-read-write-files-in-the-web-directory
// AssetId(buildStep.inputId.package, 'lib/api/${className}${schemaTypeMap[schemaType]}.dart'),
buildStep.inputId.changeExtension('.dart'),
DartFormatter().format(
'''
/// Generated automatically from ${buildStep.inputId}.

// ignore_for_file: always_put_required_named_parameters_first
Expand All @@ -136,8 +173,9 @@ class APIBuilder extends Builder {
List<Object?> get props => ${_getEquatableFields(classFullName, properties)};
}
''',
),
);
),
);
}
} on Exception catch (e) {
log.severe('Failed to process ${buildStep.inputId} - $e');
}
Expand Down
2 changes: 1 addition & 1 deletion binary-websocket-api
2 changes: 2 additions & 0 deletions example/lib/blocs/active_symbols/active_symbols_bloc.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import 'package:flutter_deriv_api/api/response/active_symbols_response_result.da
import 'package:flutter_deriv_api/basic_api/generated/api.dart';

part 'active_symbols_event.dart';

part 'active_symbols_state.dart';

/// ActiveSymbolsBloc
Expand Down Expand Up @@ -52,5 +53,6 @@ class ActiveSymbolsBloc extends Bloc<ActiveSymbolsEvent, ActiveSymbolsState> {
ActiveSymbolsResponse.fetchActiveSymbols(const ActiveSymbolsRequest(
activeSymbols: 'brief',
productType: 'basic',
landingCompany: '',
));
}
Original file line number Diff line number Diff line change
Expand Up @@ -75,5 +75,6 @@ class AvailableContractsBloc
) async =>
ContractsForResponse.fetchContractsForSymbol(ContractsForRequest(
contractsFor: selectedSymbol?.symbol,
landingCompany: '',
));
}
2 changes: 1 addition & 1 deletion example/lib/widgets/exchange_rate_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class _ExchangeRateWidgetState extends State<ExchangeRateWidget> {
@override
Widget build(BuildContext context) => Column(
mainAxisSize: MainAxisSize.min,
children: [
children: <Widget>[
ElevatedButton(
onPressed: () =>
isSubscribed ? _unsubscribe() : _subscribeUSDtoBTC(),
Expand Down
37 changes: 0 additions & 37 deletions ios/.gitignore

This file was deleted.

Empty file removed ios/Assets/.gitkeep
Empty file.
4 changes: 0 additions & 4 deletions ios/Classes/FlutterDerivApiPlugin.h

This file was deleted.

8 changes: 0 additions & 8 deletions ios/Classes/FlutterDerivApiPlugin.m

This file was deleted.

14 changes: 0 additions & 14 deletions ios/Classes/SwiftFlutterDerivApiPlugin.swift

This file was deleted.

Loading
Loading