e887b1d21f
git-subtree-dir: packages/auth git-subtree-mainline:6890bbf53f
git-subtree-split:1274ad6b0d
39 lines
985 B
Dart
39 lines
985 B
Dart
import 'dart:async';
|
|
import 'package:angel_auth/angel_auth.dart';
|
|
import 'package:angel_framework/angel_framework.dart';
|
|
import 'package:angel_framework/http.dart';
|
|
|
|
main() async {
|
|
var app = Angel();
|
|
var auth = AngelAuth<User>();
|
|
|
|
auth.serializer = (user) => user.id;
|
|
|
|
auth.deserializer = (id) => fetchAUserByIdSomehow(id);
|
|
|
|
// Middleware to decode JWT's and inject a user object...
|
|
await app.configure(auth.configureServer);
|
|
|
|
auth.strategies['local'] = LocalAuthStrategy((username, password) {
|
|
// Retrieve a user somehow...
|
|
// If authentication succeeds, return a User object.
|
|
//
|
|
// Otherwise, return `null`.
|
|
});
|
|
|
|
app.post('/auth/local', auth.authenticate('local'));
|
|
|
|
var http = AngelHttp(app);
|
|
await http.startServer('127.0.0.1', 3000);
|
|
|
|
print('Listening at http://127.0.0.1:3000');
|
|
}
|
|
|
|
class User {
|
|
String id, username, password;
|
|
}
|
|
|
|
Future<User> fetchAUserByIdSomehow(id) async {
|
|
// Fetch a user somehow...
|
|
throw UnimplementedError();
|
|
}
|