platform/lib/src/core/request_context.dart

195 lines
6.2 KiB
Dart
Raw Normal View History

library angel_framework.http.request_context;
2016-10-22 20:41:36 +00:00
import 'dart:async';
2018-08-20 03:27:34 +00:00
import 'dart:io' show Cookie, HttpHeaders, HttpSession, InternetAddress;
2017-09-24 19:43:14 +00:00
import 'dart:mirrors';
2018-08-20 03:27:34 +00:00
2018-08-20 19:42:05 +00:00
import 'package:angel_container/angel_container.dart';
import 'package:body_parser/body_parser.dart';
2018-08-20 03:27:34 +00:00
import 'package:http_parser/http_parser.dart';
2018-02-07 04:59:05 +00:00
import 'package:meta/meta.dart';
2017-11-28 18:14:50 +00:00
import 'package:path/path.dart' as p;
2018-08-20 03:27:34 +00:00
2017-10-10 16:55:42 +00:00
import 'metadata.dart';
2017-09-24 19:43:14 +00:00
import 'response_context.dart';
import 'routable.dart';
2017-03-02 04:04:37 +00:00
import 'server.dart' show Angel;
2018-06-08 07:06:26 +00:00
2017-09-24 19:43:14 +00:00
part 'injection.dart';
2016-04-18 03:27:23 +00:00
2018-08-20 03:27:34 +00:00
/// A convenience wrapper around an incoming [RawRequest].
abstract class RequestContext<RawRequest> {
2017-11-28 18:14:50 +00:00
String _acceptHeaderCache, _extensionCache;
2017-07-10 23:08:05 +00:00
bool _acceptsAllCache;
2016-10-22 20:41:36 +00:00
BodyParseResult _body;
Map _provisionalQuery;
final Map properties = {};
2016-10-22 20:41:36 +00:00
2018-08-20 03:27:34 +00:00
/// The underlying [RawRequest] provided by the driver.
RawRequest get rawRequest;
2017-02-23 00:37:15 +00:00
/// Additional params to be passed to services.
final Map serviceParams = {};
2016-04-18 03:27:23 +00:00
/// The [Angel] instance that is responding to this request.
2017-03-02 04:04:37 +00:00
Angel app;
2016-04-18 03:27:23 +00:00
/// Any cookies sent with this request.
2018-02-07 04:59:05 +00:00
List<Cookie> get cookies;
2016-04-18 03:27:23 +00:00
/// All HTTP headers sent with this request.
2018-02-07 04:59:05 +00:00
HttpHeaders get headers;
2016-04-18 03:27:23 +00:00
/// The requested hostname.
2018-02-07 04:59:05 +00:00
String get hostname;
2016-11-23 19:50:17 +00:00
2018-08-20 19:42:05 +00:00
/// The IoC container that can be used to provide functionality to produce
/// objects of a given type.
///
/// This is a *child* of the container found in `app`.
Container get container;
2016-11-23 19:50:17 +00:00
2016-04-18 03:27:23 +00:00
/// The user's IP.
String get ip => remoteAddress.address;
/// This request's HTTP method.
2017-03-02 22:06:02 +00:00
///
/// This may have been processed by an override. See [originalMethod] to get the real method.
2018-02-07 04:59:05 +00:00
String get method;
2017-03-02 22:06:02 +00:00
/// The original HTTP verb sent to the server.
2018-02-07 04:59:05 +00:00
String get originalMethod;
2016-04-18 03:27:23 +00:00
/// The content type of an incoming request.
2018-08-20 03:27:34 +00:00
MediaType get contentType;
2016-04-18 03:27:23 +00:00
/// The URL parameters extracted from the request URI.
Map<String, dynamic> params = <String, dynamic>{};
2016-04-18 03:27:23 +00:00
/// The requested path.
2018-02-07 04:59:05 +00:00
String get path;
2016-04-18 03:27:23 +00:00
/// The remote address requesting this resource.
2018-02-07 04:59:05 +00:00
InternetAddress get remoteAddress;
2016-04-18 03:27:23 +00:00
/// The user's HTTP session.
2018-02-07 04:59:05 +00:00
HttpSession get session;
2016-10-22 20:41:36 +00:00
/// The [Uri] instance representing the path this request is responding to.
2018-02-07 04:59:05 +00:00
Uri get uri;
2016-04-18 03:27:23 +00:00
/// Is this an **XMLHttpRequest**?
2018-02-07 04:59:05 +00:00
bool get xhr;
2016-04-18 03:27:23 +00:00
2017-11-28 18:14:50 +00:00
/// Returns the file extension of the requested path, if any.
///
/// Includes the leading `.`, if there is one.
String get extension => _extensionCache ??= p.extension(uri.path);
2017-09-24 19:43:14 +00:00
/// Grabs an object by key or type from [params], [_injections], or
2017-01-20 22:11:20 +00:00
/// [app].container. Use this to perform dependency injection
/// within a service hook.
2017-02-25 20:57:28 +00:00
T grab<T>(key) {
2017-01-20 22:11:20 +00:00
if (params.containsKey(key))
2018-06-23 03:29:38 +00:00
return params[key] as T;
2017-09-24 19:43:14 +00:00
else if (_injections.containsKey(key))
2018-06-23 03:29:38 +00:00
return _injections[key] as T;
2017-02-26 21:31:09 +00:00
else if (properties.containsKey(key))
2018-06-23 03:29:38 +00:00
return properties[key] as T;
2017-07-09 16:50:46 +00:00
else {
var prop = app?.findProperty(key);
if (prop != null)
2018-06-23 03:29:38 +00:00
return prop as T;
2017-07-09 16:50:46 +00:00
else if (key is Type) {
try {
2018-06-23 03:29:38 +00:00
return app.container.make(key) as T;
2017-07-09 16:50:46 +00:00
} catch (e) {
return null;
}
} else
2017-01-20 22:11:20 +00:00
return null;
2017-07-09 16:50:46 +00:00
}
2017-01-20 22:11:20 +00:00
}
2017-07-10 23:08:05 +00:00
/// Returns `true` if the client's `Accept` header indicates that the given [contentType] is considered a valid response.
///
/// You cannot provide a `null` [contentType].
/// If the `Accept` header's value is `*/*`, this method will always return `true`.
2017-11-28 18:14:50 +00:00
/// To ignore the wildcard (`*/*`), pass [strict] as `true`.
2017-07-10 23:08:05 +00:00
///
/// [contentType] can be either of the following:
/// * A [ContentType], in which case the `Accept` header will be compared against its `mimeType` property.
/// * Any other Dart value, in which case the `Accept` header will be compared against the result of a `toString()` call.
2017-11-28 18:14:50 +00:00
bool accepts(contentType, {bool strict: false}) {
2018-08-20 03:27:34 +00:00
var contentTypeString = contentType is MediaType
2017-07-10 23:08:05 +00:00
? contentType.mimeType
: contentType?.toString();
2018-02-07 04:59:05 +00:00
// Change to assert
2017-07-10 23:08:05 +00:00
if (contentTypeString == null)
throw new ArgumentError(
'RequestContext.accepts expects the `contentType` parameter to NOT be null.');
2018-06-23 03:29:38 +00:00
_acceptHeaderCache ??= headers.value('accept');
2017-07-10 23:08:05 +00:00
if (_acceptHeaderCache == null)
return false;
2017-11-28 18:14:50 +00:00
else if (strict != true && _acceptHeaderCache.contains('*/*'))
2017-07-10 23:08:05 +00:00
return true;
else
return _acceptHeaderCache.contains(contentTypeString);
}
/// Returns as `true` if the client's `Accept` header indicates that it will accept any response content type.
bool get acceptsAll => _acceptsAllCache ??= accepts('*/*');
2017-03-28 23:29:22 +00:00
/// Retrieves the request body if it has already been parsed, or lazy-parses it before returning the body.
2018-08-20 03:51:09 +00:00
Future<Map> parseBody() => parse().then((b) => b.body);
2017-03-28 23:29:22 +00:00
2018-08-20 03:51:09 +00:00
/// Retrieves a list of all uploaded files if it has already been parsed, or lazy-parses it before returning the files.
Future<List<FileUploadInfo>> parseUploadedFiles() => parse().then((b) => b.files);
2017-03-28 23:29:22 +00:00
2018-08-20 03:51:09 +00:00
/// Retrieves the original request buffer if it has already been parsed, or lazy-parses it before returning the buffer..
2017-03-28 23:29:22 +00:00
///
2018-08-20 03:51:09 +00:00
/// This will return an empty `List` if you have not enabled `keepRawRequestBuffers` on your [Angel] instance.
Future<List<int>> parseRawRequestBuffer() =>
2017-03-28 23:29:22 +00:00
parse().then((b) => b.originalBuffer);
/// Retrieves the request body if it has already been parsed, or lazy-parses it before returning the query.
///
/// If [forceParse] is not `true`, then [uri].query will be returned, and no parsing will be performed.
2018-08-20 04:09:54 +00:00
Future<Map<String, dynamic>> parseQuery({bool forceParse: false}) {
2017-03-28 23:29:22 +00:00
if (_body == null && forceParse != true)
2017-03-29 00:36:54 +00:00
return new Future.value(uri.queryParameters);
2017-03-28 23:29:22 +00:00
else
return parse().then((b) => b.query);
}
/// Manually parses the request body, if it has not already been parsed.
2018-06-08 07:06:26 +00:00
Future<BodyParseResult> parse() {
2017-03-28 23:29:22 +00:00
if (_body != null)
2018-06-08 07:06:26 +00:00
return new Future.value(_body);
2017-03-28 23:29:22 +00:00
else
_provisionalQuery = null;
2018-06-08 07:06:26 +00:00
return parseOnce().then((body) => _body = body);
2017-03-28 23:29:22 +00:00
}
2017-10-28 08:50:16 +00:00
2018-02-07 04:59:05 +00:00
/// Override this method to one-time parse an incoming request.
@virtual
Future<BodyParseResult> parseOnce();
2017-10-28 08:50:16 +00:00
/// Disposes of all resources.
2018-06-08 07:06:26 +00:00
Future close() {
2017-10-28 08:50:16 +00:00
_body = null;
_acceptsAllCache = null;
_acceptHeaderCache = null;
_provisionalQuery?.clear();
properties.clear();
_injections.clear();
serviceParams.clear();
params.clear();
2018-06-08 07:06:26 +00:00
return new Future.value();
2017-10-28 08:50:16 +00:00
}
2016-10-22 20:41:36 +00:00
}