diff options
author | Marvin Borner | 2018-07-20 18:14:18 +0200 |
---|---|---|
committer | Marvin Borner | 2018-07-20 18:14:18 +0200 |
commit | 4263997c3e419ef1cf7447d447c5582a322acf74 (patch) | |
tree | d6b5a7c836ba74d1a57f3e6b1a8f372064864c13 /lib/data/rest_ds.dart | |
parent | 18b8bd888a13c6dadfb7961cc88214332b6f5d38 (diff) |
Began basic login screen feature (mvp architecture)
Diffstat (limited to 'lib/data/rest_ds.dart')
-rw-r--r-- | lib/data/rest_ds.dart | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/data/rest_ds.dart b/lib/data/rest_ds.dart new file mode 100644 index 0000000..7d66d4a --- /dev/null +++ b/lib/data/rest_ds.dart @@ -0,0 +1,22 @@ +import 'dart:async'; +import 'dart:convert'; // not needed for later use + +import 'package:beam_messenger/utils/network_util.dart'; +import 'package:beam_messenger/models/user.dart'; + +class RestDatasource { + NetworkUtil _netUtil = new NetworkUtil(); + static final BASE_URL = "http://192.168.0.74:8000"; + static final LOGIN_URL = BASE_URL + "/login"; + + Future<User> login(String email, String password) { + return _netUtil.post(LOGIN_URL, + body: {"email": email, "password": password}).then((dynamic res) { + print(res.toString()); + if (res["status"]) throw new Exception(res["message"]); + return jsonDecode( + "{ error: false, user: { email: “marvin@borners.de”, password: “password” } }"); // later: access token + // return new User.map(res["user"]); + }); + } +} |