Add register and sign up with supertokens

This commit is contained in:
2024-07-23 11:39:21 +02:00
parent b2d5369387
commit 5dd6a70329
24 changed files with 846 additions and 228 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 793 KiB

View File

@@ -1,33 +1,47 @@
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:patient_manager/components/signInOrRegister.dart'; import 'package:patient_manager/components/signInOrRegister.dart';
import 'package:patient_manager/main.dart'; //import 'package:patient_manager/main.dart';
import 'package:patient_manager/pages/home.dart'; import 'package:patient_manager/pages/home.dart';
import 'package:supabase_flutter/supabase_flutter.dart'; //import 'package:supabase_flutter/supabase_flutter.dart';
import 'package:supertokens_flutter/supertokens.dart';
class AuthCheck extends StatelessWidget { class AuthCheck extends StatelessWidget {
const AuthCheck({super.key}); const AuthCheck({super.key});
Future<bool> doesSessionExist() async {
return await SuperTokens.doesSessionExist();
}
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return StreamBuilder<AuthState>( return FutureBuilder(
stream: client.auth.onAuthStateChange.distinct(), future: doesSessionExist(),
builder: (context, snapshot) { builder: (context, snapshot) {
if (snapshot.connectionState == ConnectionState.active) { if (snapshot.data == true) {
final user = snapshot.data?.session;
if (user == null) {
// User not authenticated, show login screen
return const SignInOrRegister();
//Navigator.of(context).pushNamed('/signin');
} else {
// User authenticated, show home screen
return const Home(); return const Home();
//Navigator.of(context).pushNamed('/homme'); } else {
return const SignInOrRegister();
} }
} });
// return StreamBuilder<AuthState>(
// stream: client.auth.onAuthStateChange.distinct(),
// builder: (context, snapshot) {
// if (snapshot.connectionState == ConnectionState.active) {
// final user = snapshot.data?.session;
// if (user == null) {
// // User not authenticated, show login screen
// return const SignInOrRegister();
// //Navigator.of(context).pushNamed('/signin');
// } else {
// // User authenticated, show home screen
// return const Home();
// //Navigator.of(context).pushNamed('/homme');
// }
// }
// Connection state not active, show loading indicator // // Connection state not active, show loading indicator
return const CircularProgressIndicator(); // return const CircularProgressIndicator();
}, // },
); // );
} }
} }

View File

@@ -1,5 +1,6 @@
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:patient_manager/main.dart'; import 'package:patient_manager/main.dart';
import 'package:supertokens_flutter/supertokens.dart';
class HomeAppDrawer extends StatefulWidget { class HomeAppDrawer extends StatefulWidget {
final String userEmail; final String userEmail;
@@ -17,6 +18,11 @@ class _HomeAppDrawerState extends State<HomeAppDrawer> {
super.initState(); super.initState();
} }
Future<bool> signOut() async {
await SuperTokens.signOut();
return true;
}
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
//print(MzanziInnovationHub.of(context)?.theme.mode); //print(MzanziInnovationHub.of(context)?.theme.mode);
@@ -55,9 +61,11 @@ class _HomeAppDrawerState extends State<HomeAppDrawer> {
), ),
], ],
), ),
onTap: () { onTap: () async {
client.auth.signOut(); //client.auth.signOut();
Navigator.of(context).pushNamed('/'); if (await signOut()) {
Navigator.of(context).pushNamed('/');
}
}, },
) )
], ],

View File

@@ -1,5 +1,6 @@
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:patient_manager/components/homeTile.dart'; import 'package:patient_manager/components/homeTile.dart';
import 'package:patient_manager/env/env.dart';
import 'package:patient_manager/main.dart'; import 'package:patient_manager/main.dart';
class HomeTileGrid extends StatefulWidget { class HomeTileGrid extends StatefulWidget {
@@ -13,6 +14,42 @@ class HomeTileGrid extends StatefulWidget {
class _HomeTileGridState extends State<HomeTileGrid> { class _HomeTileGridState extends State<HomeTileGrid> {
late List<List<dynamic>> tileList; late List<List<dynamic>> tileList;
List<List<dynamic>> setApps() {
if (AppEnviroment.getEnv() == "Dev") {
return [
[
Icons.medication,
"Patient Manager",
() {
// Navigator.of(context)
// .pushNamed('/patient-manager', arguments: widget.userEmail);
Navigator.popAndPushNamed(context, '/patient-manager',
arguments: widget.userEmail);
}
],
[Icons.abc, "Test 1", () {}],
[Icons.abc, "Test 2", () {}],
[Icons.abc, "Test 3", () {}],
[Icons.abc, "Test 4", () {}],
[Icons.abc, "Test 5", () {}],
[Icons.abc, "Test 6", () {}],
];
} else {
return [
[
Icons.medication,
"Patient Manager",
() {
// Navigator.of(context)
// .pushNamed('/patient-manager', arguments: widget.userEmail);
Navigator.popAndPushNamed(context, '/patient-manager',
arguments: widget.userEmail);
}
],
];
}
}
@override @override
void initState() { void initState() {
//print("Home tile gird widget: ${widget.userEmail}"); //print("Home tile gird widget: ${widget.userEmail}");

View File

@@ -123,6 +123,206 @@ class _MyErrorMessageState extends State<MyErrorMessage> {
); );
} }
void setUserExistsError() {
messageTypes["User Exists"] = Stack(
children: [
Container(
padding: const EdgeInsets.all(10.0),
width: 500,
height: 450,
decoration: BoxDecoration(
color: MzanziInnovationHub.of(context)!.theme.primaryColor(),
borderRadius: BorderRadius.circular(25.0),
border: Border.all(
color: MzanziInnovationHub.of(context)!.theme.errorColor(),
width: 5.0),
),
child: SingleChildScrollView(
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
Icon(
Icons.warning_amber_rounded,
size: 100,
color: MzanziInnovationHub.of(context)!.theme.errorColor(),
),
SizedBox(height: 15),
Text(
"Email Already Exists",
textAlign: TextAlign.center,
style: TextStyle(
color: MzanziInnovationHub.of(context)!.theme.errorColor(),
fontSize: 25.0,
fontWeight: FontWeight.bold,
),
),
const SizedBox(height: 10),
Padding(
padding: EdgeInsets.symmetric(horizontal: 25.0),
child: Text(
"An account is already registered with this email address. Please try logging in or use a different email.",
style: TextStyle(
color: MzanziInnovationHub.of(context)!
.theme
.secondaryColor(),
fontSize: 15.0,
fontWeight: FontWeight.bold,
),
),
),
const SizedBox(height: 15),
Padding(
padding: EdgeInsets.symmetric(horizontal: 25.0),
child: Text(
"Here are some things to keep in mind:",
style: TextStyle(
color: MzanziInnovationHub.of(context)!
.theme
.secondaryColor(),
fontSize: 20.0,
fontWeight: FontWeight.bold,
),
),
),
const SizedBox(height: 10),
Padding(
padding: EdgeInsets.symmetric(horizontal: 25.0),
child: Text(
"1) Are you sure you're using the correct email address associated with your account?\n2) Is your caps lock key on? Passwords are case-sensitive.\n3) If you've forgotten your password, no worries! Click on \"Forgot Password?\" to reset it.",
textAlign: TextAlign.left,
style: TextStyle(
color: MzanziInnovationHub.of(context)!
.theme
.secondaryColor(),
fontSize: 15.0,
fontWeight: FontWeight.bold,
),
),
),
],
),
),
),
Positioned(
top: 5,
right: 5,
width: 50,
height: 50,
child: IconButton(
onPressed: () {
Navigator.pop(context);
},
icon: Icon(
Icons.close,
color: MzanziInnovationHub.of(context)!.theme.errorColor(),
size: 35,
),
),
),
],
);
}
void setPwdMatchError() {
messageTypes["Password"] = Stack(
children: [
Container(
padding: const EdgeInsets.all(10.0),
width: 500,
height: 450,
decoration: BoxDecoration(
color: MzanziInnovationHub.of(context)!.theme.primaryColor(),
borderRadius: BorderRadius.circular(25.0),
border: Border.all(
color: MzanziInnovationHub.of(context)!.theme.errorColor(),
width: 5.0),
),
child: SingleChildScrollView(
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
Icon(
Icons.warning_amber_rounded,
size: 100,
color: MzanziInnovationHub.of(context)!.theme.errorColor(),
),
SizedBox(height: 15),
Text(
"Passwords Don't Match",
textAlign: TextAlign.center,
style: TextStyle(
color: MzanziInnovationHub.of(context)!.theme.errorColor(),
fontSize: 25.0,
fontWeight: FontWeight.bold,
),
),
const SizedBox(height: 10),
Padding(
padding: EdgeInsets.symmetric(horizontal: 25.0),
child: Text(
"The password and confirm password fields do not match. Please make sure they are identical.",
style: TextStyle(
color: MzanziInnovationHub.of(context)!
.theme
.secondaryColor(),
fontSize: 15.0,
fontWeight: FontWeight.bold,
),
),
),
const SizedBox(height: 15),
Padding(
padding: EdgeInsets.symmetric(horizontal: 25.0),
child: Text(
"Here are some things to keep in mind:",
style: TextStyle(
color: MzanziInnovationHub.of(context)!
.theme
.secondaryColor(),
fontSize: 20.0,
fontWeight: FontWeight.bold,
),
),
),
const SizedBox(height: 10),
Padding(
padding: EdgeInsets.symmetric(horizontal: 25.0),
child: Text(
"1) Are you sure you're using the correct email address associated with your account?\n2) Is your caps lock key on? Passwords are case-sensitive.\n3) If you've forgotten your password, no worries! Click on \"Forgot Password?\" to reset it.",
textAlign: TextAlign.left,
style: TextStyle(
color: MzanziInnovationHub.of(context)!
.theme
.secondaryColor(),
fontSize: 15.0,
fontWeight: FontWeight.bold,
),
),
),
],
),
),
),
Positioned(
top: 5,
right: 5,
width: 50,
height: 50,
child: IconButton(
onPressed: () {
Navigator.pop(context);
},
icon: Icon(
Icons.close,
color: MzanziInnovationHub.of(context)!.theme.errorColor(),
size: 35,
),
),
),
],
);
}
void setinvalidCredError() { void setinvalidCredError() {
messageTypes["Invalid Credentials"] = Stack( messageTypes["Invalid Credentials"] = Stack(
children: [ children: [
@@ -347,6 +547,8 @@ class _MyErrorMessageState extends State<MyErrorMessage> {
setInputError(); setInputError();
setinvalidCredError(); setinvalidCredError();
setInternetError(); setInternetError();
setUserExistsError();
setPwdMatchError();
//print(size); //print(size);
// setState(() { // setState(() {
// width = size.width; // width = size.width;

View File

@@ -54,13 +54,16 @@ class _MySuccessMessageState extends State<MySuccessMessage> {
const SizedBox(height: 10), const SizedBox(height: 10),
Padding( Padding(
padding: const EdgeInsets.symmetric(horizontal: 25.0), padding: const EdgeInsets.symmetric(horizontal: 25.0),
child: Text( child: Center(
message, child: Text(
style: TextStyle( message,
color: style: TextStyle(
MzanziInnovationHub.of(context)!.theme.secondaryColor(), color: MzanziInnovationHub.of(context)!
fontSize: 15.0, .theme
fontWeight: FontWeight.bold, .secondaryColor(),
fontSize: 15.0,
fontWeight: FontWeight.bold,
),
), ),
), ),
), ),

View File

@@ -5,6 +5,7 @@ import 'package:patient_manager/env/env.dart';
import 'package:patient_manager/main.dart'; import 'package:patient_manager/main.dart';
import 'package:http/http.dart' as http; import 'package:http/http.dart' as http;
import 'package:patient_manager/objects/appUser.dart'; import 'package:patient_manager/objects/appUser.dart';
import 'package:supertokens_flutter/supertokens.dart';
class PatManAppDrawer extends StatefulWidget { class PatManAppDrawer extends StatefulWidget {
final String userEmail; final String userEmail;
@@ -33,6 +34,11 @@ class _PatManAppDrawerState extends State<PatManAppDrawer> {
} }
} }
Future<bool> signOut() async {
await SuperTokens.signOut();
return true;
}
@override @override
void initState() { void initState() {
signedInUser = getUserDetails(); signedInUser = getUserDetails();
@@ -203,10 +209,10 @@ class _PatManAppDrawerState extends State<PatManAppDrawer> {
), ),
], ],
), ),
onTap: () { onTap: () async {
client.auth.signOut(); if (await signOut()) {
Navigator.popAndPushNamed(context, '/'); Navigator.of(context).pushNamed('/');
//Navigator.of(context).pushNamed('/'); }
}, },
) )
], ],

View File

@@ -16,6 +16,7 @@ import 'package:patient_manager/objects/appUser.dart';
import 'package:patient_manager/objects/files.dart'; import 'package:patient_manager/objects/files.dart';
import 'package:http/http.dart' as http; import 'package:http/http.dart' as http;
import 'package:supertokens_flutter/supertokens.dart';
import '../objects/patients.dart'; import '../objects/patients.dart';
@@ -56,6 +57,7 @@ class _PatientFilesState extends State<PatientFiles> {
late String userEmail = ""; late String userEmail = "";
late AppUser appUser; late AppUser appUser;
late PlatformFile selected; late PlatformFile selected;
final baseAPI = AppEnviroment.baseApiUrl;
Future<void> generateMedCert() async { Future<void> generateMedCert() async {
//start loading circle //start loading circle
@@ -183,11 +185,12 @@ class _PatientFilesState extends State<PatientFiles> {
} }
Future<void> getUserEmail() async { Future<void> getUserEmail() async {
final res = await client.auth.getUser(); // Add method to get user email
if (res.user!.email != null) { var uid = await SuperTokens.getUserId();
//print("emai not null"); var response = await http.get(Uri.parse("$baseAPI/user/$uid"));
userEmail = res.user!.email!; if (response.statusCode == 200) {
//print(userEmail); var user = jsonDecode(response.body);
userEmail = user["email"];
} }
} }

View File

@@ -2,9 +2,6 @@ import 'package:flutter/material.dart';
import 'package:patient_manager/env/env.dart'; import 'package:patient_manager/env/env.dart';
import 'package:patient_manager/router/routeGenerator.dart'; import 'package:patient_manager/router/routeGenerator.dart';
import 'package:patient_manager/theme/mihTheme.dart'; import 'package:patient_manager/theme/mihTheme.dart';
import 'package:supabase_flutter/supabase_flutter.dart';
final client = Supabase.instance.client;
class MzanziInnovationHub extends StatefulWidget { class MzanziInnovationHub extends StatefulWidget {
const MzanziInnovationHub({ const MzanziInnovationHub({

View File

@@ -1,16 +1,17 @@
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:patient_manager/env/env.dart'; import 'package:patient_manager/env/env.dart';
import 'package:patient_manager/main.dart'; import 'package:patient_manager/main.dart';
import 'package:supabase_flutter/supabase_flutter.dart'; import 'package:supertokens_flutter/supertokens.dart';
void main() async { void main() async {
AppEnviroment.setupEnv(Enviroment.dev); AppEnviroment.setupEnv(Enviroment.dev);
WidgetsFlutterBinding.ensureInitialized(); SuperTokens.init(
await Supabase.initialize( apiDomain: AppEnviroment.baseApiUrl,
url: "https://stzluvsyhbwtfbztarmu.supabase.co", apiBasePath: "/auth",
anonKey:
"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6InN0emx1dnN5aGJ3dGZienRhcm11Iiwicm9sZSI6ImFub24iLCJpYXQiOjE3MTIwNzUyMTMsImV4cCI6MjAyNzY1MTIxM30.a7VHlk63JJcAotvsqtoqiKwjNK4EbnNgKilAqt1iRio",
); );
//print(AppEnviroment.baseApiUrl);
runApp(const MzanziInnovationHub()); runApp(const MzanziInnovationHub());
} }
Future<bool> doesSessionExist() async {
return await SuperTokens.doesSessionExist();
}

View File

@@ -1,16 +1,13 @@
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:patient_manager/env/env.dart'; import 'package:patient_manager/env/env.dart';
import 'package:patient_manager/main.dart'; import 'package:patient_manager/main.dart';
import 'package:supabase_flutter/supabase_flutter.dart'; import 'package:supertokens_flutter/supertokens.dart';
void main() async { void main() async {
AppEnviroment.setupEnv(Enviroment.prod); AppEnviroment.setupEnv(Enviroment.prod);
WidgetsFlutterBinding.ensureInitialized(); SuperTokens.init(
await Supabase.initialize( apiDomain: AppEnviroment.baseApiUrl,
url: "https://stzluvsyhbwtfbztarmu.supabase.co", apiBasePath: "/auth",
anonKey:
"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6InN0emx1dnN5aGJ3dGZienRhcm11Iiwicm9sZSI6ImFub24iLCJpYXQiOjE3MTIwNzUyMTMsImV4cCI6MjAyNzY1MTIxM30.a7VHlk63JJcAotvsqtoqiKwjNK4EbnNgKilAqt1iRio",
); );
//print(AppEnviroment.baseApiUrl);
runApp(const MzanziInnovationHub()); runApp(const MzanziInnovationHub());
} }

View File

@@ -2,28 +2,31 @@
class AppUser { class AppUser {
final int idusers; final int idusers;
final String email; final String email;
final int docOffice_id; final int docOffice_ID;
final String fname; final String fname;
final String lname; final String lname;
final String title; final String title;
final String app_id;
const AppUser( const AppUser(
this.idusers, this.idusers,
this.email, this.email,
this.docOffice_id, this.docOffice_ID,
this.fname, this.fname,
this.lname, this.lname,
this.title, this.title,
this.app_id,
); );
factory AppUser.fromJson(dynamic json) { factory AppUser.fromJson(dynamic json) {
return AppUser( return AppUser(
json['idusers'], json['idusers'],
json['email'], json['email'],
json['docOffice_id'], json['docOffice_ID'],
json['fname'], json['fname'],
json['lname'], json['lname'],
json['title'], json['title'],
json['app_id'],
); );
} }
} }

View File

@@ -0,0 +1,23 @@
class SessionST {
final String status;
final bool exists;
const SessionST({
required this.status,
required this.exists,
});
factory SessionST.fromJson(Map<String, dynamic> json) {
return switch (json) {
{
'status': String status,
'exists': bool exists,
} =>
SessionST(
status: status,
exists: exists,
),
_ => throw const FormatException('Failed to load SessionST.'),
};
}
}

View File

@@ -1,8 +1,12 @@
import 'dart:convert';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:patient_manager/main.dart'; import 'package:patient_manager/env/env.dart';
import 'package:patient_manager/components/homeTileGrid.dart'; import 'package:patient_manager/components/homeTileGrid.dart';
import 'package:patient_manager/components/myAppBar.dart'; import 'package:patient_manager/components/myAppBar.dart';
import 'package:patient_manager/components/homeAppDrawer.dart'; import 'package:patient_manager/components/homeAppDrawer.dart';
import 'package:supertokens_flutter/supertokens.dart';
import 'package:supertokens_flutter/http.dart' as http;
class Home extends StatefulWidget { class Home extends StatefulWidget {
const Home({ const Home({
@@ -15,13 +19,14 @@ class Home extends StatefulWidget {
class _HomeState extends State<Home> { class _HomeState extends State<Home> {
String useremail = ""; String useremail = "";
final baseAPI = AppEnviroment.baseApiUrl;
Future<void> getUserEmail() async { Future<void> getUserEmail() async {
final res = await client.auth.getUser(); var uid = await SuperTokens.getUserId();
if (res.user!.email != null) { var response = await http.get(Uri.parse("$baseAPI/user/$uid"));
//print("emai not null"); if (response.statusCode == 200) {
useremail = res.user!.email!; var user = jsonDecode(response.body);
//print("Home Page: $useremail"); useremail = user["email"];
} }
} }

View File

@@ -50,7 +50,7 @@ class _AddPatientState extends State<AddPatient> {
var decodedData = jsonDecode(body); var decodedData = jsonDecode(body);
AppUser u = AppUser.fromJson(decodedData as Map<String, dynamic>); AppUser u = AppUser.fromJson(decodedData as Map<String, dynamic>);
setState(() { setState(() {
futureDocOfficeId = u.docOffice_id; futureDocOfficeId = u.docOffice_ID;
//print(futureDocOfficeId); //print(futureDocOfficeId);
}); });
} else { } else {

View File

@@ -57,7 +57,7 @@ class _EditPatientState extends State<EditPatient> {
var decodedData = jsonDecode(body); var decodedData = jsonDecode(body);
AppUser u = AppUser.fromJson(decodedData as Map<String, dynamic>); AppUser u = AppUser.fromJson(decodedData as Map<String, dynamic>);
setState(() { setState(() {
futureDocOfficeId = u.docOffice_id; futureDocOfficeId = u.docOffice_ID;
//print(futureDocOfficeId); //print(futureDocOfficeId);
}); });
} else { } else {

View File

@@ -240,27 +240,24 @@ class _PatientManagerState extends State<PatientManager> {
return Scaffold( return Scaffold(
appBar: const MyAppBar(barTitle: "Patient Manager"), appBar: const MyAppBar(barTitle: "Patient Manager"),
drawer: PatManAppDrawer(userEmail: widget.userEmail), drawer: PatManAppDrawer(userEmail: widget.userEmail),
floatingActionButtonLocation: FloatingActionButtonLocation.endTop, //floatingActionButtonLocation: FloatingActionButtonLocation.,
floatingActionButton: Padding( floatingActionButton: FloatingActionButton.extended(
padding: const EdgeInsets.only(top: 65, right: 5), label: Text(
child: FloatingActionButton.extended( "Add Patient",
label: Text( style: TextStyle(
"Add Patient", fontWeight: FontWeight.bold,
style: TextStyle(
fontWeight: FontWeight.bold,
color: MzanziInnovationHub.of(context)!.theme.primaryColor(),
),
),
//backgroundColor: Colors.blueAccent,
onPressed: () {
Navigator.of(context)
.pushNamed('/patient-manager/add', arguments: widget.userEmail);
},
icon: Icon(
Icons.add,
color: MzanziInnovationHub.of(context)!.theme.primaryColor(), color: MzanziInnovationHub.of(context)!.theme.primaryColor(),
), ),
), ),
//backgroundColor: Colors.blueAccent,
onPressed: () {
Navigator.of(context)
.pushNamed('/patient-manager/add', arguments: widget.userEmail);
},
icon: Icon(
Icons.add,
color: MzanziInnovationHub.of(context)!.theme.primaryColor(),
),
), ),
body: patientSearch(screenWidth, screenHeight), body: patientSearch(screenWidth, screenHeight),
); );

View File

@@ -1,9 +1,19 @@
import 'dart:convert';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:patient_manager/components/myErrorMessage.dart';
import 'package:patient_manager/components/myPassInput.dart'; import 'package:patient_manager/components/myPassInput.dart';
import 'package:patient_manager/components/mySuccessMessage.dart';
import 'package:patient_manager/components/myTextInput.dart'; import 'package:patient_manager/components/myTextInput.dart';
import 'package:patient_manager/components/mybutton.dart'; import 'package:patient_manager/components/mybutton.dart';
import 'package:patient_manager/env/env.dart';
import 'package:patient_manager/main.dart'; import 'package:patient_manager/main.dart';
//import 'package:patient_manager/objects/sessionST.dart';
import 'package:supabase_auth_ui/supabase_auth_ui.dart'; import 'package:supabase_auth_ui/supabase_auth_ui.dart';
//import 'package:supertokens_flutter/supertokens.dart';
import 'package:supertokens_flutter/http.dart' as http;
import 'package:supertokens_flutter/supertokens.dart';
class Register extends StatefulWidget { class Register extends StatefulWidget {
final Function()? onTap; final Function()? onTap;
@@ -18,20 +28,125 @@ class _RegisterState extends State<Register> {
final passwordController = TextEditingController(); final passwordController = TextEditingController();
final confirmPasswordController = TextEditingController(); final confirmPasswordController = TextEditingController();
final officeID = TextEditingController(); final officeID = TextEditingController();
final baseAPI = AppEnviroment.baseApiUrl;
final FocusNode _focusNode = FocusNode();
bool _obscureText = true; bool _obscureText = true;
bool successfulSignUp = false;
Future<void> addUserAPICall(String email, String uid) async {
//await getOfficeIdByUser(docOfficeIdApiUrl + widget.userEmail);
//print(futureDocOfficeId.toString());
var response = await http.post(
Uri.parse("$baseAPI/user/insert/"),
headers: <String, String>{
"Content-Type": "application/json; charset=UTF-8"
},
body: jsonEncode(<String, dynamic>{
"email": email,
"app_id": uid,
}),
);
if (response.statusCode == 201) {
Navigator.of(context).pushNamed('/home');
signUpSuccess();
setState(() {
successfulSignUp = true;
});
} else {
internetConnectionPopUp();
}
}
void internetConnectionPopUp() {
showDialog(
context: context,
builder: (context) {
return const MyErrorMessage(errorType: "Internet Connection");
},
);
}
//sign user in //sign user in
Future<void> signUserUp() async { Future<void> signUserUp() async {
if (passwordController.text != confirmPasswordController.text) { if (passwordController.text != confirmPasswordController.text) {
loginError("Passwords do not match"); passwordError();
} else { } else {
var _backgroundColor = Colors.transparent;
showDialog(
context: context,
barrierColor: _backgroundColor,
builder: (BuildContext dialogContext) {
return AlertDialog(
backgroundColor: _backgroundColor,
content: Container(
child: Center(
child: MzanziInnovationHub.of(context)!
.theme
.loadingImage(), // Put your gif into the assets folder
),
),
);
},
);
try { try {
final response = await client.auth.signUp( Uri uri = Uri.parse(
email: emailController.text, "$baseAPI/auth/emailpassword/email/exists?email=${emailController.text}");
password: passwordController.text, //print("Here");
); var response = await http.get(uri);
if (response.session != null) { //print(response.body);
Navigator.of(context).pushNamed('/homme'); //print("response 1: ${response.statusCode}");
if (response.statusCode == 200) {
var userExists = jsonDecode(response.body);
if (userExists["exists"]) {
signUpError();
} else {
var response2 = await http.post(
Uri.parse("$baseAPI/auth/signup"),
body:
'{"formFields": [{"id": "email","value": "${emailController.text}"}, {"id": "password","value": "${passwordController.text}"}]}',
headers: {
'Content-type': 'application/json',
'Accept': 'application/json',
"Authorization": "leatucczyixqwkqqdrhayiwzeofkltds"
},
);
//print("response 2: ${response2.statusCode}");
if (response2.statusCode == 200) {
//print(response2.body);
var userCreated = jsonDecode(response2.body);
//print(userCreated);
if (userCreated["status"] == "OK") {
//print("Here");
//Creat user in db
var response2 = await http.post(
Uri.parse("$baseAPI/auth/signup"),
body:
'{"formFields": [{"id": "email","value": "${emailController.text}"}, {"id": "password","value": "${passwordController.text}"}]}',
headers: {
'Content-type': 'application/json',
'Accept': 'application/json',
"Authorization": "leatucczyixqwkqqdrhayiwzeofkltds"
},
);
String uid = await SuperTokens.getUserId();
if (response2.statusCode == 200) {
addUserAPICall(emailController.text, uid);
} else {
internetConnectionPopUp();
}
}
}
}
Navigator.of(context).pop();
// final response = await client.auth.signUp(
// email: emailController.text,
// password: passwordController.text,
// );
// if (response.session != null) {
// Navigator.of(context).pushNamed('/homme');
// }
} }
} on AuthException catch (error) { } on AuthException catch (error) {
loginError(error.message); loginError(error.message);
@@ -42,6 +157,36 @@ class _RegisterState extends State<Register> {
} }
} }
void signUpSuccess() {
showDialog(
context: context,
builder: (context) {
return const MySuccessMessage(
successType: "Success",
successMessage:
"Congratulations! Your account has been created successfully. You are log in and start exploring.");
},
);
}
void signUpError() {
showDialog(
context: context,
builder: (context) {
return const MyErrorMessage(errorType: "User Exists");
},
);
}
void passwordError() {
showDialog(
context: context,
builder: (context) {
return const MyErrorMessage(errorType: "Password");
},
);
}
void loginError(error) { void loginError(error) {
showDialog( showDialog(
context: context, context: context,
@@ -61,126 +206,154 @@ class _RegisterState extends State<Register> {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Scaffold( return KeyboardListener(
//backgroundColor: Colors.white, focusNode: _focusNode,
body: SafeArea( autofocus: true,
child: Center( onKeyEvent: (event) async {
child: SingleChildScrollView( if (event is KeyDownEvent &&
physics: const BouncingScrollPhysics(), event.logicalKey == LogicalKeyboardKey.enter) {
child: Column( if (emailController.text.isEmpty || passwordController.text.isEmpty) {
mainAxisAlignment: MainAxisAlignment.center, showDialog(
children: [ context: context,
//logo builder: (context) {
Icon( return const MyErrorMessage(errorType: "Input Error");
Icons.lock, },
size: 100, );
color: } else {
MzanziInnovationHub.of(context)!.theme.secondaryColor(), await signUserUp();
), if (successfulSignUp) {
//spacer Navigator.of(context).pushNamed('/home');
const SizedBox(height: 10), }
//Heading }
Text( }
'Register', },
style: TextStyle( child: Scaffold(
fontSize: 25, //backgroundColor: Colors.white,
fontWeight: FontWeight.bold, body: SafeArea(
child: Center(
child: SingleChildScrollView(
physics: const BouncingScrollPhysics(),
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
//logo
Icon(
Icons.lock,
size: 100,
color: color:
MzanziInnovationHub.of(context)!.theme.secondaryColor(), MzanziInnovationHub.of(context)!.theme.secondaryColor(),
), ),
), //spacer
//spacer const SizedBox(height: 10),
const SizedBox(height: 25), //Heading
//email input Text(
SizedBox( 'Register',
width: 500.0, style: TextStyle(
child: MyTextField( fontSize: 25,
controller: officeID, fontWeight: FontWeight.bold,
hintText: 'OfficeID', color: MzanziInnovationHub.of(context)!
editable: true, .theme
required: true, .secondaryColor(),
),
), ),
), //spacer
//spacer const SizedBox(height: 25),
const SizedBox(height: 25), //email input
//email input SizedBox(
SizedBox( width: 500.0,
width: 500.0, child: MyTextField(
child: MyTextField( controller: emailController,
controller: emailController, hintText: 'Email',
hintText: 'Email', editable: true,
editable: true, required: true,
required: true, ),
), ),
), //spacer
//spacer const SizedBox(height: 25),
const SizedBox(height: 25), //password input
//password input SizedBox(
SizedBox( width: 500.0,
width: 500.0, child: MyPassField(
child: MyPassField( controller: passwordController,
controller: passwordController, hintText: 'Password',
hintText: 'Password', required: true,
required: true, ),
), ),
), //spacer
//spacer const SizedBox(height: 25),
const SizedBox(height: 25), //password input
//password input SizedBox(
SizedBox( width: 500.0,
width: 500.0, child: MyPassField(
child: MyPassField( controller: confirmPasswordController,
controller: confirmPasswordController, hintText: 'Confirm Password',
hintText: 'Confirm Password', required: true,
required: true, ),
), ),
), //spacer
//spacer const SizedBox(height: 10),
const SizedBox(height: 10), // sign up button
// sign up button SizedBox(
SizedBox( width: 500.0,
width: 500.0, height: 100.0,
height: 100.0, child: MyButton(
child: MyButton( buttonText: "Sign Up",
onTap: () {}, buttonColor: MzanziInnovationHub.of(context)!
buttonText: "Sign Up", .theme
buttonColor: .secondaryColor(),
MzanziInnovationHub.of(context)!.theme.secondaryColor(), textColor:
textColor: MzanziInnovationHub.of(context)!.theme.primaryColor(),
MzanziInnovationHub.of(context)!.theme.primaryColor(), onTap: () async {
if (emailController.text.isEmpty ||
passwordController.text.isEmpty) {
showDialog(
context: context,
builder: (context) {
return const MyErrorMessage(
errorType: "Input Error");
},
);
} else {
await signUserUp();
if (successfulSignUp) {
Navigator.of(context).pushNamed('/homme');
}
}
},
),
), ),
), //register text
//register text SizedBox(
SizedBox( width: 450.0,
width: 450.0, height: 100.0,
height: 100.0, child: Row(
child: Row( mainAxisAlignment: MainAxisAlignment.end,
mainAxisAlignment: MainAxisAlignment.end, children: [
children: [ const Text(
const Text( 'Already a User?',
'Already a User?', style: TextStyle(fontSize: 18, color: Colors.grey),
style: TextStyle(fontSize: 18, color: Colors.grey),
),
const SizedBox(
width: 6,
),
GestureDetector(
onTap: widget.onTap,
child: Text(
'Sign In',
style: TextStyle(
fontSize: 18,
color: MzanziInnovationHub.of(context)!
.theme
.secondaryColor(),
fontWeight: FontWeight.bold,
),
), ),
) const SizedBox(
], width: 6,
), ),
) GestureDetector(
], onTap: widget.onTap,
child: Text(
'Sign In',
style: TextStyle(
fontSize: 18,
color: MzanziInnovationHub.of(context)!
.theme
.secondaryColor(),
fontWeight: FontWeight.bold,
),
),
)
],
),
)
],
),
), ),
), ),
), ),

View File

@@ -1,11 +1,15 @@
import 'dart:convert';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter/services.dart'; import 'package:flutter/services.dart';
import 'package:patient_manager/components/myErrorMessage.dart'; import 'package:patient_manager/components/myErrorMessage.dart';
import 'package:patient_manager/components/myPassInput.dart'; import 'package:patient_manager/components/myPassInput.dart';
import 'package:patient_manager/components/myTextInput.dart'; import 'package:patient_manager/components/myTextInput.dart';
import 'package:patient_manager/components/mybutton.dart'; import 'package:patient_manager/components/mybutton.dart';
import 'package:patient_manager/env/env.dart';
import 'package:patient_manager/main.dart'; import 'package:patient_manager/main.dart';
import 'package:supabase_auth_ui/supabase_auth_ui.dart'; import 'package:supabase_auth_ui/supabase_auth_ui.dart';
import 'package:supertokens_flutter/http.dart' as http;
class SignIn extends StatefulWidget { class SignIn extends StatefulWidget {
final Function()? onTap; final Function()? onTap;
@@ -23,24 +27,54 @@ class _SignInState extends State<SignIn> {
// focus node to capture keyboard events // focus node to capture keyboard events
final FocusNode _focusNode = FocusNode(); final FocusNode _focusNode = FocusNode();
final baseAPI = AppEnviroment.baseApiUrl;
//sign user in //sign user in
Future<void> signUserIn() async { Future<void> signUserIn() async {
var _backgroundColor = Colors.transparent;
showDialog(
context: context,
barrierColor: _backgroundColor,
builder: (BuildContext dialogContext) {
return AlertDialog(
backgroundColor: _backgroundColor,
content: Container(
child: Center(
child: MzanziInnovationHub.of(context)!
.theme
.loadingImage(), // Put your gif into the assets folder
),
),
);
},
);
try { try {
final response = await client.auth.signInWithPassword( var response = await http.post(
email: emailController.text, Uri.parse("$baseAPI/auth/signin"),
password: passwordController.text, body:
'{"formFields": [{"id": "email","value": "${emailController.text}"}, {"id": "password","value": "${passwordController.text}"}]}',
headers: {
'Content-type': 'application/json',
'Accept': 'application/json',
"Authorization": "leatucczyixqwkqqdrhayiwzeofkltds"
},
); );
if (response.session != null) { if (response.statusCode == 200) {
setState(() { var userSignedin = jsonDecode(response.body);
successfulSignIn = true; if (userSignedin["status"] == "OK") {
}); setState(() {
//Navigator.of(context).pushNamed('/homme'); successfulSignIn = true;
});
} else {
loginError();
}
} }
} on AuthException { } on AuthException {
loginError(); loginError();
//emailController.clear();
passwordController.clear(); passwordController.clear();
} }
Navigator.of(context).pop();
} }
void loginError() { void loginError() {
@@ -57,7 +91,7 @@ class _SignInState extends State<SignIn> {
return KeyboardListener( return KeyboardListener(
focusNode: _focusNode, focusNode: _focusNode,
autofocus: true, autofocus: true,
onKeyEvent: (event) { onKeyEvent: (event) async {
if (event is KeyDownEvent && if (event is KeyDownEvent &&
event.logicalKey == LogicalKeyboardKey.enter) { event.logicalKey == LogicalKeyboardKey.enter) {
if (emailController.text.isEmpty || passwordController.text.isEmpty) { if (emailController.text.isEmpty || passwordController.text.isEmpty) {
@@ -68,11 +102,10 @@ class _SignInState extends State<SignIn> {
}, },
); );
} else { } else {
signUserIn(); await signUserIn();
} if (successfulSignIn) {
Navigator.of(context).pushNamed('/home');
if (successfulSignIn) { }
Navigator.of(context).pushNamed('/homme');
} }
} }
}, },
@@ -141,7 +174,7 @@ class _SignInState extends State<SignIn> {
.secondaryColor(), .secondaryColor(),
textColor: textColor:
MzanziInnovationHub.of(context)!.theme.primaryColor(), MzanziInnovationHub.of(context)!.theme.primaryColor(),
onTap: () { onTap: () async {
if (emailController.text.isEmpty || if (emailController.text.isEmpty ||
passwordController.text.isEmpty) { passwordController.text.isEmpty) {
showDialog( showDialog(
@@ -152,11 +185,11 @@ class _SignInState extends State<SignIn> {
}, },
); );
} else { } else {
signUserIn(); await signUserIn();
} //print(successfulSignIn);
if (successfulSignIn) {
if (successfulSignIn) { Navigator.of(context).pushNamed('/home');
Navigator.of(context).pushNamed('/homme'); }
} }
}, },
), ),

View File

@@ -7,6 +7,7 @@ class MyTheme {
late int _succColor; late int _succColor;
late int _mesColor; late int _mesColor;
late String mode; late String mode;
late Image loading;
// Options:- // Options:-
// f3f9d2 = Cream // f3f9d2 = Cream
@@ -101,6 +102,21 @@ class MyTheme {
return Color(_succColor); return Color(_succColor);
} }
Image loadingImage() {
if (mode == "Dark") {
loading = Image.asset(
'images/Logo-loading.gif',
width: 100,
);
} else {
loading = Image.asset(
'images/Logo-loading.gif',
width: 100,
);
}
return loading;
}
Color primaryColor() { Color primaryColor() {
if (mode == "Dark") { if (mode == "Dark") {
_mainColor = 0XFF3A4454; _mainColor = 0XFF3A4454;

View File

@@ -289,6 +289,22 @@ packages:
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "7.0.0" version: "7.0.0"
dio:
dependency: transitive
description:
name: dio
sha256: e17f6b3097b8c51b72c74c9f071a605c47bcc8893839bd66732457a5ebe73714
url: "https://pub.dev"
source: hosted
version: "5.5.0+1"
dio_web_adapter:
dependency: transitive
description:
name: dio_web_adapter
sha256: "36c5b2d79eb17cdae41e974b7a8284fec631651d2a6f39a8a2ff22327e90aeac"
url: "https://pub.dev"
source: hosted
version: "1.0.1"
email_validator: email_validator:
dependency: transitive dependency: transitive
description: description:
@@ -576,6 +592,14 @@ packages:
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "1.0.5" version: "1.0.5"
mutex:
dependency: transitive
description:
name: mutex
sha256: "8827da25de792088eb33e572115a5eb0d61d61a3c01acbc8bcbe76ed78f1a1f2"
url: "https://pub.dev"
source: hosted
version: "3.1.0"
mysql_client: mysql_client:
dependency: "direct main" dependency: "direct main"
description: description:
@@ -909,6 +933,14 @@ packages:
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "2.5.6" version: "2.5.6"
supertokens_flutter:
dependency: "direct main"
description:
name: supertokens_flutter
sha256: "147ad25ea5e001ce0edbcdf850c48f62222e936b2f5ce0902ef60e04c9d0605b"
url: "https://pub.dev"
source: hosted
version: "0.6.0"
syncfusion_flutter_core: syncfusion_flutter_core:
dependency: transitive dependency: transitive
description: description:

View File

@@ -38,6 +38,7 @@ dependencies:
syncfusion_flutter_pdfviewer: ^26.1.39 syncfusion_flutter_pdfviewer: ^26.1.39
universal_html: ^2.2.4 universal_html: ^2.2.4
file_picker: ^8.0.5 file_picker: ^8.0.5
supertokens_flutter: ^0.6.0
supabase_auth_ui: ^0.4.1 supabase_auth_ui: ^0.4.1
supabase_flutter: ^2.4.0 supabase_flutter: ^2.4.0
http: ^1.2.1 http: ^1.2.1
@@ -71,9 +72,9 @@ flutter:
uses-material-design: true uses-material-design: true
# To add assets to your application, add an assets section, like this: # To add assets to your application, add an assets section, like this:
# assets: assets:
# - images/a_dot_burr.jpeg - images/Logo-loading.gif
# - images/a_dot_ham.jpeg # - images/a_dot_ham.jpeg
# An image asset can refer to one or more resolution-specific "variants", see # An image asset can refer to one or more resolution-specific "variants", see
# https://flutter.dev/assets-and-images/#resolution-aware # https://flutter.dev/assets-and-images/#resolution-aware

View File

@@ -9,6 +9,14 @@ from supertokens_python.recipe.session.framework.fastapi import verify_session
from supertokens_python.recipe.session import SessionContainer from supertokens_python.recipe.session import SessionContainer
from fastapi import Depends from fastapi import Depends
from supertokens_python.recipe.session.framework.fastapi import verify_session
from supertokens_python.recipe.thirdparty.asyncio import (
get_user_by_id as get_user_by_id_thirdparty,
)
from supertokens_python.recipe.passwordless.asyncio import (
get_user_by_id as get_user_by_id_passwordless,
)
origins = [ origins = [
"http://localhost", "http://localhost",
"http://localhost:80", "http://localhost:80",
@@ -60,6 +68,18 @@ def read_root():
return {"Session id": user_id} return {"Session id": user_id}
@app.post('/get_user_info_api')
async def get_user_info_api(session: SessionContainer = Depends(verify_session())):
user_id = session.get_user_id()
thirdparty_user = await get_user_by_id_thirdparty(user_id)
if thirdparty_user is None:
passwordless_user = await get_user_by_id_passwordless(user_id)
if passwordless_user is not None:
print(passwordless_user)
else:
print(thirdparty_user)
def serverRunning(): def serverRunning():
return {"Status": "Server is Up and Running"} return {"Status": "Server is Up and Running"}

View File

@@ -7,6 +7,10 @@ router = APIRouter()
class userRequest(BaseModel): class userRequest(BaseModel):
email: str email: str
DocOfficeID: int DocOfficeID: int
class userInsertRequest(BaseModel):
email: str
app_id: str
#get user by email & doc Office ID #get user by email & doc Office ID
@router.get("/users/profile/{email}", tags="users") @router.get("/users/profile/{email}", tags="users")
@@ -50,4 +54,47 @@ async def read_all_users():
] ]
cursor.close() cursor.close()
db.close() db.close()
return items return items
# Get List of all files
@router.get("/user/{uid}", tags="users")
async def read_all_users(uid: str):
db = dbConnection.dbConnect()
cursor = db.cursor()
query = "SELECT * FROM users where app_id = %s"
cursor.execute(query, (uid,))
items = [
{
"idUser": item[0],
"email": item[1],
"docOffice_ID": item[2],
"fname": item[3],
"lname": item[4],
"title": item[5],
"app_id": item[6],
}
for item in cursor.fetchall()
]
cursor.close()
db.close()
return items[0]
# Insert Patient into table
@router.post("/user/insert/", tags="user", status_code=201)
async def insertPatient(itemRequest : userInsertRequest):
db = dbConnection.dbConnect()
cursor = db.cursor()
query = "insert into users "
query += "(email, app_id) "
query += "values (%s, %s)"
userData = (itemRequest.email,
itemRequest.app_id)
try:
cursor.execute(query, userData)
except Exception as error:
raise HTTPException(status_code=404, detail="Failed to Create Record")
#return {"message": "Failed to Create Record"}
db.commit()
cursor.close()
db.close()
return {"message": "Successfully Created Record"}