login_serv.dart 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. // ignore_for_file: use_build_context_synchronously
  2. import 'dart:convert';
  3. import 'package:dio/dio.dart';
  4. import 'package:flutter/material.dart';
  5. import 'package:go_router/go_router.dart';
  6. import 'package:namer_app/globals.dart';
  7. Future<void> submit(BuildContext context, String email, String password) async {
  8. final dio = Dio();
  9. Response response;
  10. // AlertDialog alert = AlertDialog(
  11. // title: Text("Login Sukses"),
  12. // content: Text("Sukses"),
  13. // actions: [
  14. // TextButton(
  15. // child: Text('Ok'),
  16. // onPressed: () => Navigator.of(context).pop(),
  17. // ),
  18. // ],
  19. // );
  20. AlertDialog alert2 = AlertDialog(
  21. title: Text("Login Gagal"),
  22. content: Text("Username atau Password salah"),
  23. actions: [
  24. TextButton(
  25. child: Text('Ok'),
  26. onPressed: () => Navigator.of(context).pop(),
  27. ),
  28. ],
  29. );
  30. var auth = 'Basic ${base64Encode(utf8.encode('$email:$password'))}';
  31. Map<String, String> headers = {
  32. 'content-type': 'application/json',
  33. 'accept': 'application/json',
  34. 'authorization': auth
  35. };
  36. try{
  37. response = await dio.get("http://localhost:8080/api/v1/users",
  38. options: Options(headers: headers));
  39. if (response.statusCode == 200){
  40. USER_LOGIN = email;
  41. PASS_LOGIN = password;
  42. // showDialog(context: context, builder: (context) => alert);
  43. return context.go('/login/bug');
  44. }
  45. } catch (error){
  46. showDialog(context: context, builder: (context) => alert2);
  47. }
  48. }