package client.smrtms.com.smrtms_client.activity; import android.animation.Animator; import android.animation.AnimatorListenerAdapter; import android.annotation.TargetApi; import android.app.Activity; import android.app.AlertDialog; import android.app.LoaderManager.LoaderCallbacks; import android.content.Context; import android.content.CursorLoader; import android.content.DialogInterface; import android.content.Loader; import android.database.Cursor; import android.net.Uri; import android.os.AsyncTask; import android.os.Build; import android.os.Bundle; import android.os.Handler; import android.provider.ContactsContract; import android.text.TextUtils; import android.util.Log; import android.view.KeyEvent; import android.view.View; import android.view.View.OnClickListener; import android.view.inputmethod.EditorInfo; import android.widget.ArrayAdapter; import android.widget.AutoCompleteTextView; import android.widget.Button; import android.widget.EditText; import android.widget.TextView; import android.content.Intent; import android.widget.Toast; import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; import java.util.ArrayList; import java.util.List; import client.smrtms.com.smrtms_client.controller.Client; import client.smrtms.com.smrtms_client.controller.Event; import client.smrtms.com.smrtms_client.controller.JSONParser; import client.smrtms.com.smrtms_client.controller.LoginUser; import client.smrtms.com.smrtms_client.R; import client.smrtms.com.smrtms_client.controller.ServerControl; import client.smrtms.com.smrtms_client.controller.User; import client.smrtms.com.smrtms_client.tokens.AuthenticationToken; /** * A login screen that offers login via email/password. */ public class LoginActivity extends Activity implements LoaderCallbacks<Cursor> { /** * Keep track of the login task to ensure we can cancel it if requested. */ private UserLoginTask mAuthTask = null; // UI references. private AutoCompleteTextView mEmailView; private EditText mPasswordView; private View mProgressView; private View mLoginFormView; final Context context = this; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_login); //connect to server Client.getInstance(); // Set up the login form. mEmailView = (AutoCompleteTextView) findViewById(R.id.email); populateAutoComplete(); mPasswordView = (EditText) findViewById(R.id.password); mPasswordView.setOnEditorActionListener(new TextView.OnEditorActionListener() { @Override public boolean onEditorAction(TextView textView, int id, KeyEvent keyEvent) { if (id == R.id.login || id == EditorInfo.IME_NULL) { attemptLogin(); return true; } return false; } }); Button mEmailSignInButton = (Button) findViewById(R.id.email_sign_in_button); mEmailSignInButton.setOnClickListener(new OnClickListener() { @Override public void onClick(View view) { attemptLogin(); } }); mLoginFormView = findViewById(R.id.login_form); mProgressView = findViewById(R.id.login_progress); attemptConnection(); } private void populateAutoComplete() { getLoaderManager().initLoader(0, null, this); } /** * Attempts to sign in or register the account specified by the login form. * If there are form errors (invalid email, missing fields, etc.), the * errors are presented and no actual login attempt is made. */ public void attemptLogin() { if (mAuthTask != null) { return; } // Reset errors. mEmailView.setError(null); mPasswordView.setError(null); // Store values at the time of the login attempt. String email = mEmailView.getText().toString(); String password = mPasswordView.getText().toString(); boolean cancel = false; View focusView = null; // Check for a valid password, if the user entered one. if (!TextUtils.isEmpty(password) && !isPasswordValid(password)) { mPasswordView.setError(getString(R.string.error_invalid_password)); focusView = mPasswordView; cancel = true; } // Check for a valid email address. if (TextUtils.isEmpty(email)) { mEmailView.setError(getString(R.string.error_field_required)); focusView = mEmailView; cancel = true; } /*else if (!isEmailValid(email)) { mEmailView.setError(getString(R.string.error_invalid_email)); focusView = mEmailView; cancel = true; }*/ LoginUser.createInstance(email, "0", LoginActivity.this); //setup dummy //setUpDummyFriends(); if (cancel) { // There was an error; don't attempt login and focus the first // form field with an error. focusView.requestFocus(); } else { // Show a progress spinner, and kick off a background task to // perform the user login attempt. if(!Client.getInstance().isConnected()) { Client.getInstance().disconnect(); Client.getInstance(); Toast.makeText(context, "Can't connect to server. Please try again later, Server might be offline", Toast.LENGTH_SHORT).show(); } else { showProgress(true); mAuthTask = new UserLoginTask(email, password); mAuthTask.execute((Void) null); } } } private boolean isEmailValid(String email) { return true; //email.contains("@"); } private boolean isPasswordValid(String password) { return true;//password.length() > 4; } /** * Shows the progress UI and hides the login form. */ @TargetApi(Build.VERSION_CODES.HONEYCOMB_MR2) public void showProgress(final boolean show) { // On Honeycomb MR2 we have the ViewPropertyAnimator APIs, which allow // for very easy animations. If available, use these APIs to fade-in // the progress spinner. if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB_MR2) { int shortAnimTime = getResources().getInteger(android.R.integer.config_shortAnimTime); mLoginFormView.setVisibility(show ? View.GONE : View.VISIBLE); mLoginFormView.animate().setDuration(shortAnimTime).alpha( show ? 0 : 1).setListener(new AnimatorListenerAdapter() { @Override public void onAnimationEnd(Animator animation) { mLoginFormView.setVisibility(show ? View.GONE : View.VISIBLE); } }); mProgressView.setVisibility(show ? View.VISIBLE : View.GONE); mProgressView.animate().setDuration(shortAnimTime).alpha( show ? 1 : 0).setListener(new AnimatorListenerAdapter() { @Override public void onAnimationEnd(Animator animation) { mProgressView.setVisibility(show ? View.VISIBLE : View.GONE); mProgressView.setVisibility(show ? View.VISIBLE : View.GONE); } }); } else { // The ViewPropertyAnimator APIs are not available, so simply show // and hide the relevant UI components. mProgressView.setVisibility(show ? View.VISIBLE : View.GONE); mLoginFormView.setVisibility(show ? View.GONE : View.VISIBLE); } } @Override public Loader<Cursor> onCreateLoader(int i, Bundle bundle) { return new CursorLoader(this, // Retrieve data rows for the device user's 'profile' contact. Uri.withAppendedPath(ContactsContract.Profile.CONTENT_URI, ContactsContract.Contacts.Data.CONTENT_DIRECTORY), ProfileQuery.PROJECTION, // Select only email addresses. ContactsContract.Contacts.Data.MIMETYPE + " = ?", new String[]{ContactsContract.CommonDataKinds.Email .CONTENT_ITEM_TYPE}, // Show primary email addresses first. Note that there won't be // a primary email address if the user hasn't specified one. ContactsContract.Contacts.Data.IS_PRIMARY + " DESC"); } @Override public void onLoadFinished(Loader<Cursor> cursorLoader, Cursor cursor) { List<String> emails = new ArrayList<>(); cursor.moveToFirst(); while (!cursor.isAfterLast()) { emails.add(cursor.getString(ProfileQuery.ADDRESS)); cursor.moveToNext(); } addEmailsToAutoComplete(emails); } @Override public void onLoaderReset(Loader<Cursor> cursorLoader) { } private interface ProfileQuery { String[] PROJECTION = { ContactsContract.CommonDataKinds.Email.ADDRESS, ContactsContract.CommonDataKinds.Email.IS_PRIMARY, }; int ADDRESS = 0; int IS_PRIMARY = 1; } private void addEmailsToAutoComplete(List<String> emailAddressCollection) { //Create adapter to tell the AutoCompleteTextView what to show in its dropdown list. ArrayAdapter<String> adapter = new ArrayAdapter<>(LoginActivity.this, android.R.layout.simple_dropdown_item_1line, emailAddressCollection); mEmailView.setAdapter(adapter); } /** * Represents an asynchronous login/registration task used to authenticate * the user. */ public class UserLoginTask extends AsyncTask<Void, Void, Boolean> { private final String mEmail; private final String mPassword; UserLoginTask(String email, String password) { mEmail = email; mPassword = password; } @Override protected Boolean doInBackground(Void... params) { try { JSONParser<AuthenticationToken> reader = new JSONParser<>(); String hashedPW = null; try { MessageDigest messageDigest = MessageDigest.getInstance("SHA-1"); messageDigest.update(mPassword.getBytes()); hashedPW = new String(messageDigest.digest()); } catch (NoSuchAlgorithmException e) { e.printStackTrace(); } if(hashedPW != null) { AuthenticationToken auth = new AuthenticationToken(mEmail, hashedPW); String authtoken = reader.JSONWriter(auth); if (Client.getInstance().isConnected()) { Client.getInstance().WriteMsg(authtoken); } while (!ServerControl.gotAuthToken) { Thread.sleep(100); } } } catch (InterruptedException e) { return false; } ServerControl.gotAuthToken = false; if((mEmail.compareTo("admin") == 0) && mPassword.compareTo("password") == 0) { return true; } return LoginUser.getInstance().isLogin(); } @Override protected void onPostExecute(final Boolean success) { mAuthTask = null; showProgress(false); if (success) { Intent myIntent = new Intent(LoginActivity.this,StartActivity.class); LoginActivity.this.startActivity(myIntent); finish(); } else { mPasswordView.setError(getString(R.string.error_incorrect_password)); mPasswordView.requestFocus(); } } @Override protected void onCancelled() { mAuthTask = null; showProgress(false); } } public void changeToRegister(View view) { Intent myIntent = new Intent(LoginActivity.this, RegisterActivity.class); LoginActivity.this.startActivity(myIntent); } private void setUpDummyFriends() { int size = 50; for(int i = 0; i < size; i++) { LoginUser.getInstance().addFriend(new User("dummy"+i,"000"+i,(Math.random()+47),(Math.random())+11)); } for (int i = 0; i < 10; i++) { LoginUser.getInstance().addEvent(new Event("event"+i,"description"+i,(Math.random()+47),(Math.random())+11)); } // LoginUser.getInstance().addFriend(new User("dummy1","0002",47.2634125,11.3456255)); // LoginUser.getInstance().addFriend(new User("dummy2","0003",47.2637871,11.4000567)); // LoginUser.getInstance().addFriend(new User("dummy3", "0004", 37.4209024, -122.0807398)); } private void attemptConnection() { // Try to connect to the Server // Wait a little while and then check if it worked final Handler handler = new Handler(); // Creates a small thread to wait 1000ms in before checking the connection handler.postDelayed(new Runnable() { @Override public void run() { Toast toast; if (Client.getInstance().isConnected()) { toast = Toast.makeText(context, "Connection to Server Successful!", Toast.LENGTH_SHORT); Log.d("Connection", "Success!"); } else { toast = Toast.makeText(context, "Connection to Server Failed", Toast.LENGTH_SHORT); Log.d("Connection", "Failed"); } toast.show(); } }, 2000); // wait for 1000ms } public void exitDialog() { AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(context); // set title //alertDialogBuilder.setTitle("Your Title"); // set dialog message alertDialogBuilder .setMessage("Do you really want to exit?") .setCancelable(false) .setPositiveButton("Yes", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int id) { // if this button is clicked, close Intent intent = new Intent(Intent.ACTION_MAIN); intent.addCategory(Intent.CATEGORY_HOME); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP); startActivity(intent); finish(); } }) .setNegativeButton("No", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int id) { // if this button is clicked, just close // the dialog box and do nothing dialog.cancel(); } }); // create alert dialog AlertDialog alertDialog = alertDialogBuilder.create(); // show it alertDialog.show(); } @Override public boolean onKeyDown(int keyCode, KeyEvent event) { if (keyCode == KeyEvent.KEYCODE_BACK && event.getRepeatCount() == 0) { exitDialog(); return true; } return super.onKeyDown(keyCode, event); } }