From b66ef0f1d71c759326088d73b5c08aecd74b1d69 Mon Sep 17 00:00:00 2001 From: "Renato da Costa Rodrigues (dacost13)" Date: Wed, 7 Apr 2021 10:21:16 +0100 Subject: [PATCH] sign in and login with connection to database --- .gitignore | 15 ++ .idea/.gitignore | 3 + .idea/.name | 1 + .idea/compiler.xml | 6 + .idea/gradle.xml | 21 +++ .idea/jarRepositories.xml | 25 +++ .idea/misc.xml | 9 + .idea/vcs.xml | 6 + app/.gitignore | 1 + app/build.gradle | 42 +++++ app/google-services.json | 40 ++++ app/proguard-rules.pro | 21 +++ .../ExampleInstrumentedTest.java | 26 +++ app/src/main/AndroidManifest.xml | 24 +++ .../example/booksharing21/HomeActivity.java | 14 ++ .../example/booksharing21/MainActivity.java | 129 +++++++++++++ .../booksharing21/RegisterActivity.java | 156 ++++++++++++++++ .../example/booksharing21/SplashActivity.java | 32 ++++ .../java/com/example/booksharing21/User.java | 26 +++ .../drawable-v24/ic_launcher_foreground.xml | 30 +++ app/src/main/res/drawable/booksharinglogo.png | Bin 0 -> 3917 bytes .../res/drawable/ic_launcher_background.xml | 170 +++++++++++++++++ app/src/main/res/layout/activity_home.xml | 23 +++ app/src/main/res/layout/activity_main.xml | 105 +++++++++++ app/src/main/res/layout/activity_register.xml | 110 +++++++++++ app/src/main/res/layout/activity_splash.xml | 35 ++++ .../res/mipmap-anydpi-v26/ic_launcher.xml | 5 + .../mipmap-anydpi-v26/ic_launcher_round.xml | 5 + app/src/main/res/mipmap-hdpi/ic_launcher.png | Bin 0 -> 3593 bytes .../res/mipmap-hdpi/ic_launcher_round.png | Bin 0 -> 5339 bytes app/src/main/res/mipmap-mdpi/ic_launcher.png | Bin 0 -> 2636 bytes .../res/mipmap-mdpi/ic_launcher_round.png | Bin 0 -> 3388 bytes app/src/main/res/mipmap-xhdpi/ic_launcher.png | Bin 0 -> 4926 bytes .../res/mipmap-xhdpi/ic_launcher_round.png | Bin 0 -> 7472 bytes .../main/res/mipmap-xxhdpi/ic_launcher.png | Bin 0 -> 7909 bytes .../res/mipmap-xxhdpi/ic_launcher_round.png | Bin 0 -> 11873 bytes .../main/res/mipmap-xxxhdpi/ic_launcher.png | Bin 0 -> 10652 bytes .../res/mipmap-xxxhdpi/ic_launcher_round.png | Bin 0 -> 16570 bytes app/src/main/res/values-night/themes.xml | 16 ++ app/src/main/res/values/colors.xml | 24 +++ app/src/main/res/values/strings.xml | 3 + app/src/main/res/values/styles.xml | 28 +++ app/src/main/res/values/themes.xml | 16 ++ .../booksharing21/ExampleUnitTest.java | 17 ++ build.gradle | 25 +++ gradle.properties | 19 ++ gradle/wrapper/gradle-wrapper.jar | Bin 0 -> 54329 bytes gradle/wrapper/gradle-wrapper.properties | 6 + gradlew | 172 ++++++++++++++++++ gradlew.bat | 84 +++++++++ settings.gradle | 2 + 51 files changed, 1492 insertions(+) create mode 100644 .gitignore create mode 100644 .idea/.gitignore create mode 100644 .idea/.name create mode 100644 .idea/compiler.xml create mode 100644 .idea/gradle.xml create mode 100644 .idea/jarRepositories.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/vcs.xml create mode 100644 app/.gitignore create mode 100644 app/build.gradle create mode 100644 app/google-services.json create mode 100644 app/proguard-rules.pro create mode 100644 app/src/androidTest/java/com/example/booksharing21/ExampleInstrumentedTest.java create mode 100644 app/src/main/AndroidManifest.xml create mode 100644 app/src/main/java/com/example/booksharing21/HomeActivity.java create mode 100644 app/src/main/java/com/example/booksharing21/MainActivity.java create mode 100644 app/src/main/java/com/example/booksharing21/RegisterActivity.java create mode 100644 app/src/main/java/com/example/booksharing21/SplashActivity.java create mode 100644 app/src/main/java/com/example/booksharing21/User.java create mode 100644 app/src/main/res/drawable-v24/ic_launcher_foreground.xml create mode 100644 app/src/main/res/drawable/booksharinglogo.png create mode 100644 app/src/main/res/drawable/ic_launcher_background.xml create mode 100644 app/src/main/res/layout/activity_home.xml create mode 100644 app/src/main/res/layout/activity_main.xml create mode 100644 app/src/main/res/layout/activity_register.xml create mode 100644 app/src/main/res/layout/activity_splash.xml create mode 100644 app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml create mode 100644 app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml create mode 100644 app/src/main/res/mipmap-hdpi/ic_launcher.png create mode 100644 app/src/main/res/mipmap-hdpi/ic_launcher_round.png create mode 100644 app/src/main/res/mipmap-mdpi/ic_launcher.png create mode 100644 app/src/main/res/mipmap-mdpi/ic_launcher_round.png create mode 100644 app/src/main/res/mipmap-xhdpi/ic_launcher.png create mode 100644 app/src/main/res/mipmap-xhdpi/ic_launcher_round.png create mode 100644 app/src/main/res/mipmap-xxhdpi/ic_launcher.png create mode 100644 app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png create mode 100644 app/src/main/res/mipmap-xxxhdpi/ic_launcher.png create mode 100644 app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png create mode 100644 app/src/main/res/values-night/themes.xml create mode 100644 app/src/main/res/values/colors.xml create mode 100644 app/src/main/res/values/strings.xml create mode 100644 app/src/main/res/values/styles.xml create mode 100644 app/src/main/res/values/themes.xml create mode 100644 app/src/test/java/com/example/booksharing21/ExampleUnitTest.java create mode 100644 build.gradle create mode 100644 gradle.properties create mode 100644 gradle/wrapper/gradle-wrapper.jar create mode 100644 gradle/wrapper/gradle-wrapper.properties create mode 100644 gradlew create mode 100644 gradlew.bat create mode 100644 settings.gradle diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..aa724b7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,15 @@ +*.iml +.gradle +/local.properties +/.idea/caches +/.idea/libraries +/.idea/modules.xml +/.idea/workspace.xml +/.idea/navEditor.xml +/.idea/assetWizardSettings.xml +.DS_Store +/build +/captures +.externalNativeBuild +.cxx +local.properties diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/.idea/.name b/.idea/.name new file mode 100644 index 0000000..842a53e --- /dev/null +++ b/.idea/.name @@ -0,0 +1 @@ +Book Sharing 2.1 \ No newline at end of file diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..61a9130 --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/gradle.xml b/.idea/gradle.xml new file mode 100644 index 0000000..18de3ac --- /dev/null +++ b/.idea/gradle.xml @@ -0,0 +1,21 @@ + + + + + + \ No newline at end of file diff --git a/.idea/jarRepositories.xml b/.idea/jarRepositories.xml new file mode 100644 index 0000000..a5f05cd --- /dev/null +++ b/.idea/jarRepositories.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..d5d35ec --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,9 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/app/.gitignore b/app/.gitignore new file mode 100644 index 0000000..42afabf --- /dev/null +++ b/app/.gitignore @@ -0,0 +1 @@ +/build \ No newline at end of file diff --git a/app/build.gradle b/app/build.gradle new file mode 100644 index 0000000..a466767 --- /dev/null +++ b/app/build.gradle @@ -0,0 +1,42 @@ +plugins { + id 'com.android.application' + id 'com.google.gms.google-services' +} + +android { + compileSdkVersion 30 + buildToolsVersion "30.0.3" + + defaultConfig { + applicationId "com.example.booksharing21" + minSdkVersion 16 + targetSdkVersion 30 + versionCode 1 + versionName "1.0" + + testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" + } + + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' + } + } + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1_8 + } +} + +dependencies { + + implementation 'androidx.appcompat:appcompat:1.2.0' + implementation 'com.google.android.material:material:1.3.0' + implementation 'androidx.constraintlayout:constraintlayout:2.0.4' + implementation 'com.google.firebase:firebase-auth:20.0.3' + implementation 'com.google.firebase:firebase-database:19.7.0' + testImplementation 'junit:junit:4.+' + androidTestImplementation 'androidx.test.ext:junit:1.1.2' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0' +} \ No newline at end of file diff --git a/app/google-services.json b/app/google-services.json new file mode 100644 index 0000000..3988046 --- /dev/null +++ b/app/google-services.json @@ -0,0 +1,40 @@ +{ + "project_info": { + "project_number": "456140314141", + "firebase_url": "https://book-sharing2-default-rtdb.europe-west1.firebasedatabase.app", + "project_id": "book-sharing2", + "storage_bucket": "book-sharing2.appspot.com" + }, + "client": [ + { + "client_info": { + "mobilesdk_app_id": "1:456140314141:android:ad2e20e9262ce91ceed8f4", + "android_client_info": { + "package_name": "com.example.booksharing21" + } + }, + "oauth_client": [ + { + "client_id": "456140314141-s896pq88hj9l7oin85j277917r4k2r2g.apps.googleusercontent.com", + "client_type": 3 + } + ], + "api_key": [ + { + "current_key": "AIzaSyB3KRPr8IdLXgFjSywMbWuuMlHlVzqPluk" + } + ], + "services": { + "appinvite_service": { + "other_platform_oauth_client": [ + { + "client_id": "456140314141-s896pq88hj9l7oin85j277917r4k2r2g.apps.googleusercontent.com", + "client_type": 3 + } + ] + } + } + } + ], + "configuration_version": "1" +} \ No newline at end of file diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro new file mode 100644 index 0000000..481bb43 --- /dev/null +++ b/app/proguard-rules.pro @@ -0,0 +1,21 @@ +# Add project specific ProGuard rules here. +# You can control the set of applied configuration files using the +# proguardFiles setting in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} + +# Uncomment this to preserve the line number information for +# debugging stack traces. +#-keepattributes SourceFile,LineNumberTable + +# If you keep the line number information, uncomment this to +# hide the original source file name. +#-renamesourcefileattribute SourceFile \ No newline at end of file diff --git a/app/src/androidTest/java/com/example/booksharing21/ExampleInstrumentedTest.java b/app/src/androidTest/java/com/example/booksharing21/ExampleInstrumentedTest.java new file mode 100644 index 0000000..8a70e49 --- /dev/null +++ b/app/src/androidTest/java/com/example/booksharing21/ExampleInstrumentedTest.java @@ -0,0 +1,26 @@ +package com.example.booksharing21; + +import android.content.Context; + +import androidx.test.platform.app.InstrumentationRegistry; +import androidx.test.ext.junit.runners.AndroidJUnit4; + +import org.junit.Test; +import org.junit.runner.RunWith; + +import static org.junit.Assert.*; + +/** + * Instrumented test, which will execute on an Android device. + * + * @see Testing documentation + */ +@RunWith(AndroidJUnit4.class) +public class ExampleInstrumentedTest { + @Test + public void useAppContext() { + // Context of the app under test. + Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext(); + assertEquals("com.example.booksharing21", appContext.getPackageName()); + } +} \ No newline at end of file diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..c34eb03 --- /dev/null +++ b/app/src/main/AndroidManifest.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/java/com/example/booksharing21/HomeActivity.java b/app/src/main/java/com/example/booksharing21/HomeActivity.java new file mode 100644 index 0000000..c135e51 --- /dev/null +++ b/app/src/main/java/com/example/booksharing21/HomeActivity.java @@ -0,0 +1,14 @@ +package com.example.booksharing21; + +import androidx.appcompat.app.AppCompatActivity; + +import android.os.Bundle; + +public class HomeActivity extends AppCompatActivity { + + @Override + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.activity_home); + } +} \ No newline at end of file diff --git a/app/src/main/java/com/example/booksharing21/MainActivity.java b/app/src/main/java/com/example/booksharing21/MainActivity.java new file mode 100644 index 0000000..e446254 --- /dev/null +++ b/app/src/main/java/com/example/booksharing21/MainActivity.java @@ -0,0 +1,129 @@ +package com.example.booksharing21; + +import androidx.annotation.NonNull; +import androidx.appcompat.app.AppCompatActivity; + +import android.content.Intent; +import android.os.Bundle; +import android.util.Patterns; +import android.view.View; +import android.widget.Button; +import android.widget.EditText; +import android.widget.TextView; +import android.widget.Toast; + +import com.google.android.gms.tasks.OnCompleteListener; +import com.google.android.gms.tasks.Task; +import com.google.firebase.auth.AuthResult; +import com.google.firebase.auth.FirebaseAuth; + +public class MainActivity extends AppCompatActivity implements View.OnClickListener { + + private TextView register; + + private EditText editTextemail, editTextpassword; + private Button login; + private FirebaseAuth mAuth; + + + @Override + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.activity_main); + + + register = (TextView) findViewById(R.id.reg); + register.setOnClickListener(this); + + login = (Button) findViewById(R.id.log); + login.setOnClickListener(this); + + editTextpassword = (EditText) findViewById(R.id.password) ; + editTextemail = (EditText) findViewById(R.id.email); + + mAuth = FirebaseAuth.getInstance(); + + + + + } + + @Override + public void onClick(View v) { + switch (v.getId()) { + case R.id.reg: + startActivity(new Intent(this, RegisterActivity.class)); + break; + case R.id.log: + UserLogin(); + break; + + } + } + + private void UserLogin(){ + + String email = editTextemail.getText().toString().trim(); + String password = editTextpassword.getText().toString().trim(); + + + if (email.isEmpty()){ + editTextemail.setError("Email is Required"); + editTextemail.requestFocus(); + return; + } + + if (!Patterns.EMAIL_ADDRESS.matcher(email).matches()){ + editTextemail.setError("Please provide valid email"); + editTextemail.requestFocus(); + return; + } + + if (password.isEmpty()){ + editTextpassword.setError("Password is Required"); + editTextpassword.requestFocus(); + return; + } + + if (password.length()< 8 ){ + editTextpassword.setError("Password should have at least 8 characters"); + editTextpassword.requestFocus(); + return; + } + + + mAuth.signInWithEmailAndPassword(email,password).addOnCompleteListener(new OnCompleteListener() { + @Override + public void onComplete(@NonNull Task task) { + if(task.isSuccessful()){ + + startActivity(new Intent(MainActivity.this, HomeActivity.class)); + + + }else{ + Toast.makeText(MainActivity.this, "Failed To Login, Please try again", Toast.LENGTH_LONG).show(); + + } + + + + + } + }); + + + + + + + + + + + + } + + + + +} \ No newline at end of file diff --git a/app/src/main/java/com/example/booksharing21/RegisterActivity.java b/app/src/main/java/com/example/booksharing21/RegisterActivity.java new file mode 100644 index 0000000..ba09457 --- /dev/null +++ b/app/src/main/java/com/example/booksharing21/RegisterActivity.java @@ -0,0 +1,156 @@ +package com.example.booksharing21; + +import androidx.annotation.NonNull; +import androidx.appcompat.app.AppCompatActivity; + +import android.content.Intent; +import android.os.Bundle; +import android.util.Patterns; +import android.view.View; +import android.widget.Button; +import android.widget.EditText; +import android.widget.TextView; +import android.widget.Toast; + +import com.google.android.gms.tasks.OnCompleteListener; +import com.google.android.gms.tasks.Task; +import com.google.firebase.auth.AuthResult; +import com.google.firebase.auth.FirebaseAuth; +import com.google.firebase.database.FirebaseDatabase; + +public class RegisterActivity extends AppCompatActivity implements View.OnClickListener { + + private FirebaseAuth mAuth; + private TextView banner, RegisterUser; + private EditText editp1,editp2,editusername,editemail ; + + + + + + @Override + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.activity_register); + + mAuth = FirebaseAuth.getInstance(); + banner = (TextView) findViewById(R.id.banner); + banner.setOnClickListener(this); + + RegisterUser = (Button) findViewById(R.id.reg1); + RegisterUser.setOnClickListener(this); + + + // Assigning variables to Design ID + + editp1 = (EditText) findViewById(R.id.password); + editp2 = (EditText) findViewById(R.id.password2); + editusername = (EditText) findViewById(R.id.username); + editemail = (EditText) findViewById(R.id.email); + + + } + + @Override + public void onClick(View v) { + switch (v.getId()){ + case R.id.banner: + startActivity(new Intent(this, MainActivity.class)); + break; + case R.id.reg1: + RegisterUser(); + startActivity(new Intent(this, MainActivity.class)); + break; + } +} + + private void RegisterUser() { + String email = editemail.getText().toString().trim(); + String password = editp1.getText().toString().trim(); + String password2 = editp2.getText().toString().trim(); + String username = editusername.getText().toString().trim(); + + if (email.isEmpty()){ + editemail.setError("Email is Required"); + editemail.requestFocus(); + return; + } + if (!Patterns.EMAIL_ADDRESS.matcher(email).matches()){ + editemail.setError("Please provide valid email"); + editemail.requestFocus(); + return; + } + if (username.isEmpty()) { + editusername.setError("Username is Required"); + editusername.requestFocus(); + return; + } + + if (password.isEmpty()){ + editp1.setError("Password is Required"); + editp1.requestFocus(); + return; + } + + if (password2.isEmpty()){ + editp2.setError("Password is Required"); + editp2.requestFocus(); + return; + } + + if (password.length()< 8 ){ + editp1.setError("Password should have at least 8 characters"); + editp1.requestFocus(); + return; + } + + mAuth.createUserWithEmailAndPassword(email,password) + .addOnCompleteListener(new OnCompleteListener() { + + @Override + public void onComplete(@NonNull Task task) { + + if (task.isSuccessful()){ + User user = new User (username,password,email); + FirebaseDatabase.getInstance().getReference("Book Sharing") + .child(FirebaseAuth.getInstance().getCurrentUser().getUid()) + .setValue(user).addOnCompleteListener(new OnCompleteListener() { + + @Override + public void onComplete(@NonNull Task task) { + + if (task.isSuccessful()){ + Toast.makeText(RegisterActivity.this, "User has been registered successfully", Toast.LENGTH_LONG).show(); + + }else{ + + Toast.makeText(RegisterActivity.this, "Failed Try Again", Toast.LENGTH_LONG).show(); + + } + + } + }); + + + }else{ + + Toast.makeText(RegisterActivity.this, "Failed Try Again", Toast.LENGTH_LONG).show(); + + + } + } + }); + + + + + + + + + + + + + } +} \ No newline at end of file diff --git a/app/src/main/java/com/example/booksharing21/SplashActivity.java b/app/src/main/java/com/example/booksharing21/SplashActivity.java new file mode 100644 index 0000000..4e5ae9e --- /dev/null +++ b/app/src/main/java/com/example/booksharing21/SplashActivity.java @@ -0,0 +1,32 @@ +package com.example.booksharing21; + +import androidx.appcompat.app.AppCompatActivity; + +import android.content.Intent; +import android.os.Bundle; +import android.os.Handler; + +public class SplashActivity extends AppCompatActivity { + + private static int SPLASH_TIME_OUT = 4000; + + + @Override + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.activity_splash); + + + // Splash page + new Handler().postDelayed(new Runnable() { + @Override + public void run() { + Intent homeIntent = new Intent(SplashActivity.this, com.example.booksharing21.MainActivity.class); + startActivity(homeIntent); + finish(); + } + }, SPLASH_TIME_OUT); + + } + +} \ No newline at end of file diff --git a/app/src/main/java/com/example/booksharing21/User.java b/app/src/main/java/com/example/booksharing21/User.java new file mode 100644 index 0000000..d1ccde8 --- /dev/null +++ b/app/src/main/java/com/example/booksharing21/User.java @@ -0,0 +1,26 @@ +package com.example.booksharing21; + +public class User { + + public String username,password , email; + + + public User(){ + + } + + public User(String username , String password , String email){ + + this.username = username ; + this.password = password; + this.email = email; + + + } + + + + + + +} diff --git a/app/src/main/res/drawable-v24/ic_launcher_foreground.xml b/app/src/main/res/drawable-v24/ic_launcher_foreground.xml new file mode 100644 index 0000000..2b068d1 --- /dev/null +++ b/app/src/main/res/drawable-v24/ic_launcher_foreground.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/drawable/booksharinglogo.png b/app/src/main/res/drawable/booksharinglogo.png new file mode 100644 index 0000000000000000000000000000000000000000..f69fd3db4ce6924c8cf9fa2becdfa70c44cce1ad GIT binary patch literal 3917 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 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/app/src/main/res/layout/activity_home.xml b/app/src/main/res/layout/activity_home.xml new file mode 100644 index 0000000..bd40776 --- /dev/null +++ b/app/src/main/res/layout/activity_home.xml @@ -0,0 +1,23 @@ + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/activity_main.xml b/app/src/main/res/layout/activity_main.xml new file mode 100644 index 0000000..5ba3914 --- /dev/null +++ b/app/src/main/res/layout/activity_main.xml @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + +