37 lines
972 B
Dart
37 lines
972 B
Dart
|
import 'package:platform_core/core.dart';
|
||
|
import 'package:platform_core/http.dart';
|
||
|
import 'package:platform_container/mirrors.dart';
|
||
|
import 'package:platform_pipeline/pipeline.dart';
|
||
|
|
||
|
class GreetingPipe {
|
||
|
dynamic handle(String input, Function next) {
|
||
|
return next('Hello, $input');
|
||
|
}
|
||
|
}
|
||
|
|
||
|
class ExclamationPipe {
|
||
|
dynamic handle(String input, Function next) {
|
||
|
return next('$input!');
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void main() async {
|
||
|
var app = Application(reflector: MirrorsReflector());
|
||
|
var http = PlatformHttp(app);
|
||
|
|
||
|
app.container.registerSingleton((c) => Pipeline(c));
|
||
|
|
||
|
app.get('/', (req, res) async {
|
||
|
var pipeline = app.container.make<Pipeline>();
|
||
|
var result = await pipeline
|
||
|
.send('World')
|
||
|
.through(['GreetingPipe', 'ExclamationPipe']).then(
|
||
|
(result) => result.toUpperCase());
|
||
|
|
||
|
res.write(result); // Outputs: "HELLO, WORLD!"
|
||
|
});
|
||
|
|
||
|
await http.startServer('localhost', 3000);
|
||
|
print('Server started on http://localhost:3000');
|
||
|
}
|