/// Command-line client library for the Angel framework. library angel_client.cli; import 'dart:async'; import 'package:http/http.dart' as http; import 'package:json_god/json_god.dart' as god; import 'package:path/path.dart' as p; import 'angel_client.dart'; import 'base_angel_client.dart'; export 'angel_client.dart'; /// Queries an Angel server via REST. class Rest extends BaseAngelClient { final List _services = []; Rest(String path) : super(new http.Client() as http.BaseClient, path); @override Service service(String path, {Type type, AngelDeserializer deserializer}) { var url = baseUrl.replace(path: p.join(baseUrl.path, path)); var s = new RestService(client, this, url, type); _services.add(s); return s; } @override Stream authenticateViaPopup(String url, {String eventName = 'token'}) { throw new UnimplementedError( 'Opening popup windows is not supported in the `dart:io` client.'); } Future close() async { super.close(); Future.wait(_services.map((s) => s.close())).then((_) { _services.clear(); }); } } /// Queries an Angel service via REST. class RestService extends BaseAngelService { final Type type; RestService(http.BaseClient client, BaseAngelClient app, url, this.type) : super(client, app, url); @override Data deserialize(x) { if (type != null) { return x.runtimeType == type ? x as Data : god.deserializeDatum(x, outputType: type) as Data; } return x as Data; } @override makeBody(x) { if (type != null) { return super.makeBody(god.serializeObject(x)); } return super.makeBody(x); } }