platform/lib/src/http/memory_service.dart

124 lines
3.4 KiB
Dart
Raw Normal View History

library angel_framework.http.memory_service;
import 'dart:async';
import 'dart:mirrors';
import 'package:json_god/json_god.dart' as god;
import 'package:merge_map/merge_map.dart';
2017-02-13 00:38:33 +00:00
import '../../common.dart';
import 'angel_http_exception.dart';
import 'service.dart';
2016-04-18 03:27:23 +00:00
2017-02-01 21:43:18 +00:00
int _getId(id) {
try {
return int.parse(id.toString());
} catch (e) {
throw new AngelHttpException.badRequest(message: 'Invalid ID.');
}
}
2017-02-23 00:37:15 +00:00
/// DEPRECATED: Use MapService instead.
///
2016-04-18 03:27:23 +00:00
/// An in-memory [Service].
2017-02-23 00:37:15 +00:00
@deprecated
2016-04-18 03:27:23 +00:00
class MemoryService<T> extends Service {
2017-02-01 21:43:18 +00:00
/// If set to `true`, clients can remove all items by passing a `null` `id` to `remove`.
///
/// `false` by default.
final bool allowRemoveAll;
//// The data contained in this service.
2017-02-13 00:38:33 +00:00
final Map<int, Model> items = {};
2016-06-24 19:41:41 +00:00
2017-02-01 21:43:18 +00:00
MemoryService({this.allowRemoveAll: false}) : super() {
2017-02-13 00:38:33 +00:00
if (!reflectType(T).isAssignableTo(reflectType(Model))) {
2016-06-24 19:41:41 +00:00
throw new Exception(
2017-02-13 00:38:33 +00:00
"MemoryServices only support classes that inherit from Model.");
2016-06-24 19:41:41 +00:00
}
}
2016-04-18 03:27:23 +00:00
2017-02-13 00:38:33 +00:00
_makeJson(int index, Model t) {
return t..id = index.toString();
}
Future<List> index([Map params]) async {
2016-06-24 20:56:34 +00:00
return items.keys
.where((index) => items[index] != null)
.map((index) => _makeJson(index, items[index]))
.toList();
}
2016-04-18 03:27:23 +00:00
2016-05-04 01:01:29 +00:00
Future read(id, [Map params]) async {
2017-02-01 21:43:18 +00:00
int desiredId = _getId(id);
2016-06-24 20:56:34 +00:00
if (items.containsKey(desiredId)) {
2017-02-13 00:38:33 +00:00
Model found = items[desiredId];
if (found != null) {
2016-06-19 05:02:41 +00:00
return _makeJson(desiredId, found);
2017-02-01 21:43:18 +00:00
} else
throw new AngelHttpException.notFound();
} else
throw new AngelHttpException.notFound();
}
2016-04-18 03:27:23 +00:00
2016-05-04 01:01:29 +00:00
Future create(data, [Map params]) async {
2016-06-21 04:19:43 +00:00
//try {
2017-02-13 00:38:33 +00:00
Model created =
(data is Model) ? data : god.deserializeDatum(data, outputType: T);
2016-06-24 19:41:41 +00:00
2017-02-13 00:38:33 +00:00
int size = items.length;
created.id = size.toString();
items[size] = created;
2016-06-24 19:41:41 +00:00
return created;
2016-06-21 04:19:43 +00:00
/*} catch (e) {
throw new AngelHttpException.BadRequest(message: 'Invalid data.');
2016-06-21 04:19:43 +00:00
}*/
}
2016-05-04 01:01:29 +00:00
Future modify(id, data, [Map params]) async {
2017-02-01 21:43:18 +00:00
int desiredId = _getId(id);
2016-06-24 20:56:34 +00:00
if (items.containsKey(desiredId)) {
try {
2016-06-21 22:56:04 +00:00
Map existing = god.serializeObject(items[desiredId]);
data = mergeMap([existing, data]);
2016-05-04 00:58:28 +00:00
items[desiredId] =
2017-02-01 21:43:18 +00:00
(data is Map) ? god.deserializeDatum(data, outputType: T) : data;
2016-06-19 05:02:41 +00:00
return _makeJson(desiredId, items[desiredId]);
} catch (e) {
2016-12-31 02:22:54 +00:00
throw new AngelHttpException.badRequest(message: 'Invalid data.');
}
2017-02-01 21:43:18 +00:00
} else
throw new AngelHttpException.notFound();
2016-04-18 03:27:23 +00:00
}
2016-05-04 01:01:29 +00:00
Future update(id, data, [Map params]) async {
2017-02-01 21:43:18 +00:00
int desiredId = _getId(id);
2016-06-24 20:56:34 +00:00
if (items.containsKey(desiredId)) {
try {
2016-05-04 00:58:28 +00:00
items[desiredId] =
2017-02-01 21:43:18 +00:00
(data is Map) ? god.deserializeDatum(data, outputType: T) : data;
2016-06-19 05:02:41 +00:00
return _makeJson(desiredId, items[desiredId]);
} catch (e) {
2016-12-31 02:22:54 +00:00
throw new AngelHttpException.badRequest(message: 'Invalid data.');
}
2017-02-01 21:43:18 +00:00
} else
throw new AngelHttpException.notFound();
2016-04-18 03:27:23 +00:00
}
2016-05-04 01:01:29 +00:00
Future remove(id, [Map params]) async {
2017-02-01 21:43:18 +00:00
if (id == null ||
id == 'null' &&
(allowRemoveAll == true ||
params?.containsKey('provider') != true)) {
items.clear();
return {};
}
int desiredId = _getId(id);
2016-06-24 20:56:34 +00:00
if (items.containsKey(desiredId)) {
2017-02-13 00:38:33 +00:00
Model item = items[desiredId];
2016-06-24 20:56:34 +00:00
items[desiredId] = null;
2016-06-19 05:02:41 +00:00
return _makeJson(desiredId, item);
2017-02-01 21:43:18 +00:00
} else
throw new AngelHttpException.notFound();
2016-04-18 03:27:23 +00:00
}
2017-02-01 21:43:18 +00:00
}