platform/packages/framework/example/main.dart

59 lines
1.6 KiB
Dart
Raw Normal View History

2021-05-14 10:34:09 +00:00
import 'package:angel3_container/mirrors.dart';
import 'package:angel3_framework/angel3_framework.dart';
import 'package:angel3_framework/http.dart';
2018-12-14 02:31:21 +00:00
import 'package:logging/logging.dart';
2018-02-07 04:38:26 +00:00
2021-05-14 10:34:09 +00:00
void main() async {
2019-04-08 22:51:22 +00:00
// Logging set up/boilerplate
2021-03-06 14:10:24 +00:00
//Logger.root.onRecord.listen(prettyLog);
2019-04-08 22:51:22 +00:00
// Create our server.
var app = Angel(
2018-08-21 01:12:12 +00:00
logger: Logger('angel'),
2018-08-21 01:05:05 +00:00
reflector: MirrorsReflector(),
);
2018-02-07 04:38:26 +00:00
2018-04-06 19:56:14 +00:00
// Index route. Returns JSON.
2018-11-11 01:07:09 +00:00
app.get('/', (req, res) => 'Welcome to Angel!');
2018-02-07 04:38:26 +00:00
2018-04-06 19:56:14 +00:00
// Accepts a URL like /greet/foo or /greet/bob.
app.get(
'/greet/:name',
(req, res) {
var name = req.params['name'];
2018-08-21 02:44:32 +00:00
res
..write('Hello, $name!')
..close();
},
);
2018-02-07 04:38:26 +00:00
2018-04-06 19:56:14 +00:00
// Pattern matching - only call this handler if the query value of `name` equals 'emoji'.
app.get(
'/greet',
ioc((@Query('name', match: 'emoji') String name) => '😇🔥🔥🔥'),
);
2018-04-06 19:45:58 +00:00
2018-04-06 19:56:14 +00:00
// Handle any other query value of `name`.
app.get(
'/greet',
ioc((@Query('name') String name) => 'Hello, $name!'),
);
2018-04-06 19:56:14 +00:00
// Simple fallback to throw a 404 on unknown paths.
2018-08-21 00:53:44 +00:00
app.fallback((req, res) {
2019-04-08 22:51:22 +00:00
throw AngelHttpException.notFound(
2021-03-20 08:11:18 +00:00
message: 'Unknown path: "${req.uri!.path}"',
2018-02-07 04:38:26 +00:00
);
});
2019-04-08 22:51:22 +00:00
var http = AngelHttp(app);
2021-07-08 02:42:40 +00:00
var server = await http.startServer('127.0.0.1', 3000);
2018-04-06 19:56:14 +00:00
var url = 'http://${server.address.address}:${server.port}';
print('Listening at $url');
print('Visit these pages to see Angel in action:');
print('* $url/greet/bob');
print('* $url/greet/?name=emoji');
print('* $url/greet/?name=jack');
print('* $url/nonexistent_page');
2018-02-07 04:38:26 +00:00
}