platform/packages/core/example/hostname.dart

47 lines
1.3 KiB
Dart
Raw Permalink Normal View History

import 'dart:async';
import 'package:platform_core/core.dart';
import 'package:platform_core/http.dart';
import 'package:logging/logging.dart';
2024-09-28 23:14:48 +00:00
Future<void> apiConfigurer(Application app) async {
app.get('/', (req, res) => 'Hello, API!');
app.fallback((req, res) {
return 'fallback on ${req.uri} (within the API)';
});
}
2024-09-28 23:14:48 +00:00
Future<void> frontendConfigurer(Application app) async {
app.fallback((req, res) => '(usually an index page would be shown here.)');
}
void main() async {
// Logging set up/boilerplate
hierarchicalLoggingEnabled = true;
//Logger.root.onRecord.listen(prettyLog);
2024-09-28 23:14:48 +00:00
var app = Application(logger: Logger('protevus'));
var http = PlatformHttp(app);
var multiHost = HostnameRouter.configure({
'api.localhost:3000': apiConfigurer,
'localhost:3000': frontendConfigurer,
});
app
..fallback(multiHost.handleRequest)
..fallback((req, res) {
res.write('Uncaught hostname: ${req.hostname}');
});
app.errorHandler = (e, req, res) {
print(e.message);
print(e.stackTrace);
return e.toJson();
};
await http.startServer('127.0.0.1', 3000);
print('Listening at ${http.uri}');
print('See what happens when you visit http://localhost:3000 instead '
'of http://127.0.0.1:3000. Then, try '
'http://api.localhost:3000.');
}