platform/lib/src/http/response_context.dart

435 lines
11 KiB
Dart
Raw Normal View History

library angel_framework.http.response_context;
import 'dart:async';
import 'dart:convert';
import 'dart:io';
2016-10-22 20:41:36 +00:00
import 'package:angel_route/angel_route.dart';
import 'package:json_god/json_god.dart' as god;
import 'package:mime/mime.dart';
import '../extensible.dart';
2017-03-02 04:04:37 +00:00
import 'server.dart' show Angel;
import 'controller.dart';
2016-04-18 03:27:23 +00:00
2016-12-21 03:10:03 +00:00
final RegExp _contentType =
2017-06-19 01:53:51 +00:00
new RegExp(r'([^/\n]+)\/\s*([^;\n]+)\s*(;\s*charset=([^$;\n]+))?');
2016-12-21 03:10:03 +00:00
2016-11-28 00:49:27 +00:00
final RegExp _straySlashes = new RegExp(r'(^/+)|(/+$)');
2016-12-31 01:46:41 +00:00
/// Serializes response data into a String.
typedef String ResponseSerializer(data);
2016-04-18 03:27:23 +00:00
/// A convenience wrapper around an outgoing HTTP request.
2017-06-19 01:53:51 +00:00
class ResponseContext extends Extensible implements StringSink {
2017-03-28 23:29:22 +00:00
final _LockableBytesBuilder _buffer = new _LockableBytesBuilder();
final Map<String, String> _headers = {HttpHeaders.SERVER: 'angel'};
2017-06-19 01:53:51 +00:00
bool _isOpen = true, _isClosed = false;
2017-05-27 12:39:45 +00:00
int _statusCode = 200;
2016-10-22 20:41:36 +00:00
2016-04-18 03:27:23 +00:00
/// The [Angel] instance that is sending a response.
2017-03-02 04:04:37 +00:00
Angel app;
2016-04-18 03:27:23 +00:00
2016-12-19 04:32:36 +00:00
/// Is `Transfer-Encoding` chunked?
bool chunked;
2016-12-19 01:38:23 +00:00
/// Any and all cookies to be sent to the user.
final List<Cookie> cookies = [];
/// Headers that will be sent to the user.
2017-03-28 23:29:22 +00:00
Map<String, String> get headers {
2017-04-03 19:43:27 +00:00
/// If the response is closed, then this getter will return an immutable `Map`.
2017-04-25 03:19:36 +00:00
if (_isClosed)
2017-03-28 23:29:22 +00:00
return new Map<String, String>.unmodifiable(_headers);
2017-04-25 02:32:16 +00:00
else
return _headers;
2017-03-28 23:29:22 +00:00
}
2016-12-19 01:38:23 +00:00
2016-12-31 01:46:41 +00:00
/// Serializes response data into a String.
///
2017-03-28 23:29:22 +00:00
/// The default is conversion into JSON via `package:json_god`.
///
/// If you are 100% sure that your response handlers will only
/// be JSON-encodable objects (i.e. primitives, `List`s and `Map`s),
/// then consider setting [serializer] to `JSON.encode`.
///
/// To set it globally for the whole [app], use the following helper:
/// ```dart
/// app.injectSerializer(JSON.encode);
/// ```
2016-12-31 01:46:41 +00:00
ResponseSerializer serializer = god.serialize;
2016-12-19 01:38:23 +00:00
/// This response's status code.
2017-05-27 12:39:45 +00:00
int get statusCode => _statusCode;
void set statusCode(int value) {
if (_isClosed)
throw _closed();
else
_statusCode = value ?? 200;
}
2016-12-19 01:38:23 +00:00
2016-04-18 03:27:23 +00:00
/// Can we still write to this response?
2016-10-22 20:41:36 +00:00
bool get isOpen => _isOpen;
2016-04-18 03:27:23 +00:00
/// A set of UTF-8 encoded bytes that will be written to the response.
2017-03-28 23:29:22 +00:00
BytesBuilder get buffer => _buffer;
2016-04-18 03:27:23 +00:00
/// Sets the status code to be sent with this response.
2016-12-19 01:38:23 +00:00
@Deprecated('Please use `statusCode=` instead.')
2016-10-22 20:41:36 +00:00
void status(int code) {
2016-12-19 01:38:23 +00:00
statusCode = code;
2016-04-18 03:27:23 +00:00
}
/// The underlying [HttpResponse] under this instance.
2016-11-23 19:50:17 +00:00
final HttpResponse io;
2016-04-18 03:27:23 +00:00
2016-11-23 19:50:17 +00:00
@deprecated
HttpResponse get underlyingRequest {
throw new Exception(
'`ResponseContext#underlyingResponse` is deprecated. Please update your application to use the newer `ResponseContext#io`.');
}
2016-12-21 03:10:03 +00:00
/// Gets the Content-Type header.
ContentType get contentType {
if (!headers.containsKey(HttpHeaders.CONTENT_TYPE)) return null;
var header = headers[HttpHeaders.CONTENT_TYPE];
var match = _contentType.firstMatch(header);
if (match == null)
throw new Exception('Malformed Content-Type response header: "$header".');
if (match[4]?.isNotEmpty != true)
return new ContentType(match[1], match[2]);
else
return new ContentType(match[1], match[2], charset: match[4]);
}
/// Sets the Content-Type header.
void set contentType(ContentType contentType) {
headers[HttpHeaders.CONTENT_TYPE] = contentType.toString();
}
2016-11-23 19:50:17 +00:00
ResponseContext(this.io, this.app);
2016-04-18 03:27:23 +00:00
/// Set this to true if you will manually close the response.
2016-12-31 01:46:41 +00:00
///
2016-12-21 18:18:26 +00:00
/// If `true`, all response finalizers will be skipped.
2016-04-18 03:27:23 +00:00
bool willCloseItself = false;
2017-03-28 23:29:22 +00:00
StateError _closed() => new StateError('Cannot modify a closed response.');
2016-04-18 03:27:23 +00:00
/// Sends a download as a response.
2016-10-22 20:41:36 +00:00
download(File file, {String filename}) async {
2017-04-25 02:32:16 +00:00
if (!_isOpen) throw _closed();
2017-03-28 23:29:22 +00:00
2016-12-19 01:38:23 +00:00
headers["Content-Disposition"] =
2017-06-19 01:53:51 +00:00
'attachment; filename="${filename ?? file.path}"';
2016-12-19 01:38:23 +00:00
headers[HttpHeaders.CONTENT_TYPE] = lookupMimeType(file.path);
headers[HttpHeaders.CONTENT_LENGTH] = file.lengthSync().toString();
2016-10-22 20:41:36 +00:00
buffer.add(await file.readAsBytes());
end();
2016-04-18 03:27:23 +00:00
}
2017-04-25 02:32:16 +00:00
/// Prevents more data from being written to the response, and locks it entire from further editing.
void close() {
2017-03-28 23:29:22 +00:00
_buffer._lock();
2016-10-22 20:41:36 +00:00
_isOpen = false;
2017-04-25 02:32:16 +00:00
_isClosed = true;
}
/// Prevents further request handlers from running on the response, except for response finalizers.
///
/// To disable response finalizers, see [willCloseItself].
void end() {
_isOpen = false;
2016-10-22 20:41:36 +00:00
}
2016-04-18 03:27:23 +00:00
2017-04-02 19:14:10 +00:00
/// Re-opens a closed response. **NEVER USE THIS IN A PLUGIN**.
///
/// To preserve your sanity, don't use it ever. This is solely for internal use.
2017-04-25 02:32:16 +00:00
///
/// You're going to need this one day, and you'll be happy it was added.
2017-04-02 19:14:10 +00:00
void reopen() {
_buffer._reopen();
_isOpen = true;
}
2016-04-18 03:27:23 +00:00
/// Sets a response header to the given value, or retrieves its value.
2016-12-19 01:38:23 +00:00
@Deprecated('Please use `headers` instead.')
2016-04-18 03:27:23 +00:00
header(String key, [String value]) {
2016-10-22 20:41:36 +00:00
if (value == null)
2016-12-19 01:38:23 +00:00
return headers[key];
2016-10-22 20:41:36 +00:00
else
2016-12-19 01:38:23 +00:00
headers[key] = value;
2016-04-18 03:27:23 +00:00
}
/// Serializes JSON to the response.
2016-12-31 01:46:41 +00:00
void json(value) => serialize(value, contentType: ContentType.JSON);
2016-04-18 03:27:23 +00:00
/// Returns a JSONP response.
2017-03-28 23:29:22 +00:00
void jsonp(value, {String callbackName: "callback", contentType}) {
2017-04-25 02:32:16 +00:00
if (_isClosed) throw _closed();
2017-03-28 23:29:22 +00:00
write("$callbackName(${serializer(value)})");
if (contentType != null) {
if (contentType is ContentType)
this.contentType = contentType;
else
headers[HttpHeaders.CONTENT_TYPE] = contentType.toString();
} else
headers[HttpHeaders.CONTENT_TYPE] = 'application/javascript';
2016-04-18 03:27:23 +00:00
end();
}
/// Renders a view to the response stream, and closes the response.
2016-04-22 02:40:37 +00:00
Future render(String view, [Map data]) async {
2017-04-25 02:32:16 +00:00
if (_isClosed) throw _closed();
2016-04-22 02:40:37 +00:00
write(await app.viewGenerator(view, data));
2016-12-19 01:38:23 +00:00
headers[HttpHeaders.CONTENT_TYPE] = ContentType.HTML.toString();
2016-04-18 03:27:23 +00:00
end();
}
/// Redirects to user to the given URL.
2016-11-28 00:49:27 +00:00
///
/// [url] can be a `String`, or a `List`.
/// If it is a `List`, a URI will be constructed
/// based on the provided params.
///
/// See [Router]#navigate for more. :)
2016-12-23 01:49:30 +00:00
void redirect(url, {bool absolute: true, int code: 302}) {
2017-04-25 02:32:16 +00:00
if (_isClosed) throw _closed();
2017-04-15 17:42:21 +00:00
headers
..[HttpHeaders.CONTENT_TYPE] = ContentType.HTML.toString()
..[HttpHeaders.LOCATION] =
2017-06-19 01:53:51 +00:00
url is String ? url : app.navigate(url, absolute: absolute);
2016-12-23 01:49:30 +00:00
statusCode = code ?? 302;
2016-04-18 03:27:23 +00:00
write('''
<!DOCTYPE html>
<html>
<head>
<title>Redirecting...</title>
<meta http-equiv="refresh" content="0; url=$url">
</head>
<body>
<h1>Currently redirecting you...</h1>
<br />
Click <a href="$url">here</a> if you are not automatically redirected...
2016-04-18 03:27:23 +00:00
<script>
window.location = "$url";
</script>
</body>
</html>
''');
end();
}
/// Redirects to the given named [Route].
2016-10-22 20:41:36 +00:00
void redirectTo(String name, [Map params, int code]) {
2017-04-25 02:32:16 +00:00
if (_isClosed) throw _closed();
2016-11-28 00:49:27 +00:00
Route _findRoute(Router r) {
for (Route route in r.routes) {
if (route is SymlinkRoute) {
final m = _findRoute(route.router);
2016-11-23 09:10:47 +00:00
2016-11-28 00:49:27 +00:00
if (m != null) return m;
} else if (route.name == name) return route;
2016-11-23 09:10:47 +00:00
}
2016-11-28 00:49:27 +00:00
return null;
2016-11-23 09:10:47 +00:00
}
2016-11-28 00:49:27 +00:00
Route matched = _findRoute(app);
2016-11-23 09:10:47 +00:00
if (matched != null) {
2016-10-22 20:41:36 +00:00
redirect(matched.makeUri(params), code: code);
return;
}
throw new ArgumentError.notNull('Route to redirect to ($name)');
}
2016-06-27 00:20:42 +00:00
/// Redirects to the given [Controller] action.
2016-10-22 20:41:36 +00:00
void redirectToAction(String action, [Map params, int code]) {
2017-04-25 02:32:16 +00:00
if (_isClosed) throw _closed();
2016-06-27 00:20:42 +00:00
// UserController@show
List<String> split = action.split("@");
if (split.length < 2)
2016-10-22 20:41:36 +00:00
throw new Exception(
"Controller redirects must take the form of 'Controller@action'. You gave: $action");
2016-06-27 00:20:42 +00:00
2016-11-28 00:49:27 +00:00
Controller controller =
2017-06-19 01:53:51 +00:00
app.controller(split[0].replaceAll(_straySlashes, ''));
2016-06-27 00:20:42 +00:00
if (controller == null)
throw new Exception("Could not find a controller named '${split[0]}'");
Route matched = controller.routeMappings[split[1]];
2016-06-27 00:20:42 +00:00
if (matched == null)
2016-10-22 20:41:36 +00:00
throw new Exception(
"Controller '${split[0]}' does not contain any action named '${split[1]}'");
2016-06-27 00:20:42 +00:00
2016-11-28 00:49:27 +00:00
final head =
2017-06-19 01:53:51 +00:00
controller.findExpose().path.toString().replaceAll(_straySlashes, '');
2016-11-28 00:49:27 +00:00
final tail = matched.makeUri(params).replaceAll(_straySlashes, '');
redirect('$head/$tail'.replaceAll(_straySlashes, ''), code: code);
2016-06-27 00:20:42 +00:00
}
2016-12-21 18:18:26 +00:00
/// Copies a file's contents into the response buffer.
Future sendFile(File file,
2016-04-18 03:27:23 +00:00
{int chunkSize, int sleepMs: 0, bool resumable: true}) async {
2017-04-25 02:32:16 +00:00
if (_isClosed) throw _closed();
2016-04-18 03:27:23 +00:00
2016-12-19 01:38:23 +00:00
headers[HttpHeaders.CONTENT_TYPE] = lookupMimeType(file.path);
buffer.add(await file.readAsBytes());
2016-12-21 18:18:26 +00:00
end();
}
2016-12-31 01:46:41 +00:00
/// Serializes data to the response.
///
/// [contentType] can be either a [String], or a [ContentType].
void serialize(value, {contentType}) {
2017-04-25 02:32:16 +00:00
if (_isClosed) throw _closed();
2017-01-15 19:52:14 +00:00
var text = serializer(value);
write(text);
2017-03-28 23:29:22 +00:00
2016-12-31 01:46:41 +00:00
if (contentType is String)
headers[HttpHeaders.CONTENT_TYPE] = contentType;
else if (contentType is ContentType) this.contentType = contentType;
end();
}
2016-12-21 18:18:26 +00:00
/// Streams a file to this response.
///
/// You can optionally transform the file stream with a [codec].
Future streamFile(File file,
{int chunkSize,
2017-06-19 01:53:51 +00:00
int sleepMs: 0,
bool resumable: true,
Codec<List<int>, List<int>> codec}) async {
2017-04-25 02:32:16 +00:00
if (_isClosed) throw _closed();
2016-12-21 18:18:26 +00:00
headers[HttpHeaders.CONTENT_TYPE] = lookupMimeType(file.path);
end();
willCloseItself = true;
2017-04-25 02:32:16 +00:00
Stream stream = codec != null
2016-12-21 18:18:26 +00:00
? file.openRead().transform(codec.encoder)
: file.openRead();
await stream.pipe(io);
2016-04-18 03:27:23 +00:00
}
/// Writes data to the response.
2016-10-22 20:41:36 +00:00
void write(value, {Encoding encoding: UTF8}) {
2017-04-25 02:32:16 +00:00
if (_isClosed)
2017-03-28 23:29:22 +00:00
throw _closed();
2017-04-25 02:32:16 +00:00
else {
if (value is List<int>)
buffer.add(value);
else
buffer.add(encoding.encode(value.toString()));
}
2016-04-18 03:27:23 +00:00
}
2017-06-19 01:53:51 +00:00
@override
void writeCharCode(int charCode) {
if (_isClosed)
throw _closed();
else
buffer.addByte(charCode);
}
@override
void writeln([Object obj = ""]) {
write(obj.toString());
write('\r\n');
}
@override
void writeAll(Iterable objects, [String separator = ""]) {
write(objects.join(separator));
}
2016-10-22 20:41:36 +00:00
}
2017-03-28 23:29:22 +00:00
abstract class _LockableBytesBuilder extends BytesBuilder {
factory _LockableBytesBuilder() => new _LockableBytesBuilderImpl();
2017-05-27 12:39:45 +00:00
2017-03-28 23:29:22 +00:00
void _lock();
2017-05-27 12:39:45 +00:00
2017-04-02 19:14:10 +00:00
void _reopen();
2017-03-28 23:29:22 +00:00
}
class _LockableBytesBuilderImpl implements _LockableBytesBuilder {
bool _closed = false;
final List<int> _data = [];
StateError _deny() =>
new StateError('Cannot modified a closed response\'s buffer.');
@override
void _lock() {
2017-04-25 02:32:16 +00:00
_closed = true;
2017-03-28 23:29:22 +00:00
}
2017-04-02 19:14:10 +00:00
@override
void _reopen() {
_closed = false;
}
2017-03-28 23:29:22 +00:00
@override
void add(List<int> bytes) {
if (_closed)
throw _deny();
else {
_data.addAll(bytes);
}
}
@override
void addByte(int byte) {
if (_closed)
throw _deny();
else {
_data.add(byte);
}
}
@override
void clear() {
if (_closed)
throw _deny();
else {
_data.clear();
}
}
@override
bool get isEmpty => _data.isEmpty;
@override
bool get isNotEmpty => _data.isNotEmpty;
@override
int get length => _data.length;
@override
List<int> takeBytes() {
if (_closed)
return toBytes();
else {
var r = new List<int>.from(_data);
clear();
return r;
}
}
@override
List<int> toBytes() {
return _data;
}
}