commit | 700621b4599b9677cc1b65cd0cf024ad8f4c6c3a | [log] [tgz] |
---|---|---|
author | Mike Fairhurst <mfairhurst@google.com> | Tue Sep 22 13:18:49 2020 -0700 |
committer | Mike Fairhurst <mfairhurst@google.com> | Fri Sep 25 21:24:07 2020 -0700 |
tree | fa087654ef5de2f8bb224be42d282e3cd29b74e8 | |
parent | e6cf09621e8a67cca4ae1998450bb0e224215670 [diff] |
Remove unneeded dart:async import Since Dart 2.1, Future and Stream have been exported from dart:core. Alternatively, if for some reason this package needs to continue to support Dart 2.0, an exception can be made for this internally.
Package for working with MIME type definitions and for processing streams of MIME multipart media types.
The MimeTypeResolver
class can be used to determine the MIME type of a file. It supports both using the extension of the file name and looking at magic bytes from the beginning of the file.
There is a builtin instance of MimeTypeResolver
accessible through the top level function lookupMimeType
. This builtin instance has the most common file name extensions and magic bytes registered.
import 'package:mime/mime.dart'; void main() { print(lookupMimeType('test.html')); // text/html print(lookupMimeType('test', headerBytes: [0xFF, 0xD8])); // image/jpeg print(lookupMimeType('test.html', headerBytes: [0xFF, 0xD8])); // image/jpeg }
You can build you own resolver by creating an instance of MimeTypeResolver
and adding file name extensions and magic bytes using addExtension
and addMagicNumber
.
The class MimeMultipartTransformer
is used to process a Stream
of bytes encoded using a MIME multipart media types encoding. The transformer provides a new Stream
of MimeMultipart
objects each of which have the headers and the content of each part. The content of a part is provided as a stream of bytes.
Below is an example showing how to process an HTTP request and print the length of the content of each part.
// HTTP request with content type multipart/form-data. HttpRequest request = ...; // Determine the boundary form the content type header String boundary = request.headers.contentType.parameters['boundary']; // Process the body just calculating the length of each part. request .transform(new MimeMultipartTransformer(boundary)) .map((part) => part.fold(0, (p, d) => p + d)) .listen((length) => print('Part with length $length'));
Take a look at the HttpBodyHandler
in the http_server package for handling different content types in an HTTP request.
Please file feature requests and bugs at the issue tracker.