library angel_framework.http.angel_base; import 'dart:async'; import 'package:angel_container/angel_container.dart'; import 'routable.dart'; /// A function that asynchronously generates a view from the given path and data. typedef Future<String> ViewGenerator(String path, [Map data]); /// Base class for Angel servers. Do not bother extending this. class AngelBase extends Routable { static ViewGenerator noViewEngineConfigured = (String view, [Map data]) => new Future<String>.value("No view engine has been configured yet."); Container _container; AngelBase(Reflector reflector) { _container = new Container(reflector); } final Map configuration = {}; /// When set to true, the request body will not be parsed /// automatically. You can call `req.parse()` manually, /// or use `lazyBody()`. bool lazyParseBodies = false; /// When set to `true`, the original body bytes will be stored /// on requests. `false` by default. bool storeOriginalBuffer = false; /// A [Container] used to inject dependencies. Container get container => _container; /// A function that renders views. /// /// Called by [ResponseContext]@`render`. ViewGenerator viewGenerator = noViewEngineConfigured; /// Closes this instance, rendering it **COMPLETELY DEFUNCT**. Future close() { super.close(); _container = null; viewGenerator = noViewEngineConfigured; return new Future.value(); } }