2024-09-23 01:44:59 +00:00
|
|
|
import 'package:platform_container/mirrors.dart';
|
2024-09-25 04:04:57 +00:00
|
|
|
import 'package:platform_core/core.dart';
|
|
|
|
import 'package:platform_core/http.dart';
|
2024-09-23 01:44:59 +00:00
|
|
|
import 'package:logging/logging.dart';
|
|
|
|
|
|
|
|
void main() async {
|
|
|
|
// Logging set up/boilerplate
|
|
|
|
//Logger.root.onRecord.listen(prettyLog);
|
|
|
|
|
|
|
|
// Create our server.
|
2024-09-28 23:14:48 +00:00
|
|
|
var app = Application(
|
2024-09-23 20:35:32 +00:00
|
|
|
logger: Logger('protevus'),
|
2024-09-23 01:44:59 +00:00
|
|
|
reflector: MirrorsReflector(),
|
|
|
|
);
|
|
|
|
|
|
|
|
// Index route. Returns JSON.
|
2024-09-23 04:39:29 +00:00
|
|
|
app.get('/', (req, res) => 'Welcome to Protevus!');
|
2024-09-23 01:44:59 +00:00
|
|
|
|
|
|
|
// Accepts a URL like /greet/foo or /greet/bob.
|
|
|
|
app.get(
|
|
|
|
'/greet/:name',
|
|
|
|
(req, res) {
|
|
|
|
var name = req.params['name'];
|
|
|
|
res
|
|
|
|
..write('Hello, $name!')
|
|
|
|
..close();
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
// Pattern matching - only call this handler if the query value of `name` equals 'emoji'.
|
|
|
|
app.get(
|
|
|
|
'/greet',
|
|
|
|
ioc((@Query('name', match: 'emoji') String name) => '😇🔥🔥🔥'),
|
|
|
|
);
|
|
|
|
|
|
|
|
// Handle any other query value of `name`.
|
|
|
|
app.get(
|
|
|
|
'/greet',
|
|
|
|
ioc((@Query('name') String name) => 'Hello, $name!'),
|
|
|
|
);
|
|
|
|
|
|
|
|
// Simple fallback to throw a 404 on unknown paths.
|
|
|
|
app.fallback((req, res) {
|
2024-09-28 23:14:48 +00:00
|
|
|
throw PlatformHttpException.notFound(
|
2024-09-23 01:44:59 +00:00
|
|
|
message: 'Unknown path: "${req.uri!.path}"',
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2024-09-28 23:14:48 +00:00
|
|
|
var http = PlatformHttp(app);
|
2024-09-23 01:44:59 +00:00
|
|
|
var server = await http.startServer('127.0.0.1', 3000);
|
|
|
|
var url = 'http://${server.address.address}:${server.port}';
|
|
|
|
print('Listening at $url');
|
2024-09-23 04:39:29 +00:00
|
|
|
print('Visit these pages to see Protevus in action:');
|
2024-09-23 01:44:59 +00:00
|
|
|
print('* $url/greet/bob');
|
|
|
|
print('* $url/greet/?name=emoji');
|
|
|
|
print('* $url/greet/?name=jack');
|
|
|
|
print('* $url/nonexistent_page');
|
|
|
|
}
|