platform/lib/src/http/map_service.dart

156 lines
4.5 KiB
Dart
Raw Normal View History

2017-02-23 00:37:15 +00:00
import 'dart:async';
2017-09-22 04:48:22 +00:00
import 'package:angel_http_exception/angel_http_exception.dart';
2017-02-23 00:37:15 +00:00
import 'service.dart';
/// A basic service that manages an in-memory list of maps.
class MapService extends Service {
/// If set to `true`, clients can remove all items by passing a `null` `id` to `remove`.
///
/// `false` by default.
final bool allowRemoveAll;
/// If set to `true`, parameters in `req.query` are applied to the database query.
final bool allowQuery;
2017-11-18 17:42:31 +00:00
/// If set to `true` (default), then the service will manage an `id` string and `createdAt` and `updatedAt` fields.
final bool autoIdAndDateFields;
/// If set to `true` (default), then the keys `created_at` and `updated_at` will automatically be snake_cased.
final bool autoSnakeCaseNames;
2017-02-23 00:37:15 +00:00
final List<Map<String, dynamic>> items = [];
2017-11-18 17:42:31 +00:00
MapService(
{this.allowRemoveAll: false,
this.allowQuery: true,
this.autoIdAndDateFields: true,
this.autoSnakeCaseNames: true})
2017-11-18 17:42:31 +00:00
: super();
2017-02-23 00:37:15 +00:00
String get createdAtKey =>
autoSnakeCaseNames == false ? 'createdAt' : 'created_at';
String get updatedAtKey =>
autoSnakeCaseNames == false ? 'updatedAt' : 'updated_at';
2017-12-10 05:05:59 +00:00
bool Function(Map) _matchesId(id) {
return (Map item) {
if (item['id'] == null)
return false;
else if (autoIdAndDateFields != false)
return item['id'] == id?.toString();
else
return item['id'] == id;
};
2017-02-23 00:37:15 +00:00
}
@override
Future<List> index([Map params]) async {
2017-05-27 12:39:45 +00:00
if (allowQuery == false || params == null || params['query'] is! Map)
2017-02-23 00:37:15 +00:00
return items;
else {
Map query = params['query'];
return items.where((item) {
for (var key in query.keys) {
if (!item.containsKey(key))
return false;
else if (item[key] != query[key]) return false;
}
return true;
}).toList();
}
}
@override
Future<Map> read(id, [Map params]) async {
return items.firstWhere(_matchesId(id),
orElse: () => throw new AngelHttpException.notFound(
message: 'No record found for ID $id'));
}
@override
Future<Map> create(data, [Map params]) async {
if (data is! Map)
throw new AngelHttpException.badRequest(
message:
'MapService does not support `create` with ${data.runtimeType}.');
2017-04-15 17:42:21 +00:00
var now = new DateTime.now();
2017-11-18 17:42:31 +00:00
var result = data;
if (autoIdAndDateFields == true) {
result
..['id'] = items.length.toString()
..[autoSnakeCaseNames == false ? 'createdAt' : 'created_at'] = now
..[autoSnakeCaseNames == false ? 'updatedAt' : 'updated_at'] = now;
2017-11-18 17:42:31 +00:00
}
2017-02-23 00:37:15 +00:00
items.add(result);
return result;
}
@override
Future<Map> modify(id, data, [Map params]) async {
if (data is! Map)
throw new AngelHttpException.badRequest(
message:
2017-02-25 00:16:31 +00:00
'MapService does not support `modify` with ${data.runtimeType}.');
2017-03-28 23:29:22 +00:00
if (!items.any(_matchesId(id))) return await create(data, params);
2017-02-23 00:37:15 +00:00
var item = await read(id);
2017-11-18 17:42:31 +00:00
var result = item..addAll(data);
if (autoIdAndDateFields == true)
result
..[autoSnakeCaseNames == false ? 'updatedAt' : 'updated_at'] =
new DateTime.now();
2017-11-18 17:42:31 +00:00
return result;
2017-02-23 00:37:15 +00:00
}
@override
Future<Map> update(id, data, [Map params]) async {
if (data is! Map)
throw new AngelHttpException.badRequest(
message:
2017-02-25 00:16:31 +00:00
'MapService does not support `update` with ${data.runtimeType}.');
2017-03-28 23:29:22 +00:00
if (!items.any(_matchesId(id))) return await create(data, params);
2017-02-23 00:37:15 +00:00
var old = await read(id);
if (!items.remove(old))
throw new AngelHttpException.notFound(
message: 'No record found for ID $id');
2017-11-18 17:42:31 +00:00
var result = data;
if (autoIdAndDateFields == true) {
result
..['id'] = id?.toString()
..[autoSnakeCaseNames == false ? 'createdAt' : 'created_at'] =
old[autoSnakeCaseNames == false ? 'createdAt' : 'created_at']
..[autoSnakeCaseNames == false ? 'updatedAt' : 'updated_at'] =
new DateTime.now();
2017-11-18 17:42:31 +00:00
}
2017-02-23 00:37:15 +00:00
items.add(result);
return result;
}
@override
Future<Map> remove(id, [Map params]) async {
2017-04-15 17:42:21 +00:00
if (id == null ||
id == 'null' &&
(allowRemoveAll == true ||
params?.containsKey('provider') != true)) {
items.clear();
return {};
}
2017-02-23 00:37:15 +00:00
var result = await read(id, params);
if (items.remove(result))
return result;
else
throw new AngelHttpException.notFound(
message: 'No record found for ID $id');
}
}