Android Open Source - RadiusDev Login






From Project

Back to project page RadiusDev.

License

The source code is released under:

MIT License

If you think the Android project RadiusDev listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.example.radiusdev;
/*w  w w  .  j a  va  2  s .  co  m*/
import java.util.ArrayList;
import java.util.List;

import org.apache.http.NameValuePair;
import org.apache.http.message.BasicNameValuePair;
import org.json.JSONException;
import org.json.JSONObject;


import android.app.Activity;
import android.app.ProgressDialog;
import android.content.Intent;
import android.os.AsyncTask;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;

public class Login extends Activity implements OnClickListener{
  
  private EditText email, pwd;
  private Button mSubmit, mRegister;
  
  private PreferencesHelper appPrefs;
  private AppPreferenceActivity _appPrefs;
  //Progress Dialog
  private ProgressDialog pDialog;
  
  //JSON parser class
  JSONparser jsonParser = new JSONparser();
  
  //localhost
  //private static final String LOGIN_URL = "http://198.21.230.127:1234/webservice/login.php";
  //testing on emulator
  //private static final String LOGIN_URL = "http://10.0.2.2/webservice/login.php";
  
  //Mecca Server
  private static final String LOGIN_URL = "http://1meccaproduction.com/radiusServer/login.php";
  
  //JSON element ids from response of php script
  private static final String TAG_SUCCESS = "success";
  private static final String TAG_MESSAGE = "message";
  
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    _appPrefs= new AppPreferenceActivity(getApplicationContext());
    appPrefs = new PreferencesHelper(getApplicationContext());
    setContentView(R.layout.login);
    
    //setup input fields
    email = (EditText)findViewById(R.id.email);
    pwd = (EditText)findViewById(R.id.password);
    //setup buttons
    mSubmit = (Button)findViewById(R.id.login);
    mRegister = (Button)findViewById(R.id.register);
    //register listeners
    mSubmit.setOnClickListener(this);
    mRegister.setOnClickListener(this);
  }
  
  @Override
  public void onClick(View v) {
    if (v.getId() == R.id.login) {
      new AttemptLogin().execute();
    } else if (v.getId() == R.id.register) {
      Intent i = new Intent(this, Register.class);
      finish();
      startActivity(i);
    } else {
    }
  }
  
  //A seperate thread than the thread that runs the GUI
  //Any type of networking should be done with asynctask
  class AttemptLogin extends AsyncTask<String, String, String>{
    /* three methods get called, first preExecute, then do in 
       background, and once complete, the onPost execute method 
       will be called */
    boolean failure = false;
    
    
    @Override
    protected void onPreExecute(){
      super.onPreExecute();
      pDialog = new ProgressDialog(Login.this);
      pDialog.setMessage("Attempting login...");
      pDialog.setIndeterminate(false);
      pDialog.setCancelable(true);
      pDialog.show();
    }
    
    @Override
    protected String doInBackground(String... args){
      int success;
      String userID;
      String emailAddress = email.getText().toString();
      String password = pwd.getText().toString();
      try {
        List<NameValuePair> params = new ArrayList<NameValuePair>();
        params.add(new BasicNameValuePair("email", emailAddress));
        params.add(new BasicNameValuePair("password", password));
        
        Log.d("request!", "starting");
        //getting product details by making HTTP request
        JSONObject json = jsonParser.makeHttpRequest(LOGIN_URL, "POST", params);
        System.out.println(json);
        //check log for json response
          Log.d("Login attempt", json.toString());
        //json success tag
        success = json.getInt(TAG_SUCCESS);
        userID=json.getString("ID");
        if(success == 1) {
          Log.d("Login Successful!", json.toString());
          appPrefs.saveSomeString(emailAddress);
          appPrefs.saveSomeString(userID);
          _appPrefs.saveUserID(userID);
          Intent i = new Intent(Login.this, Main.class);
          finish();
          startActivity(i);
          return json.getString(TAG_MESSAGE);
        }else{
          Log.d("Login Failed!", json.getString(TAG_MESSAGE));
          return json.getString(TAG_MESSAGE);
        } 
      } catch(JSONException e){
        e.printStackTrace();
      }  
      return null;
    }
    
    protected void onPostExecute(String file_url) {
      //dismiss the dialog once product deleted
      pDialog.dismiss();
      if(file_url != null){
        Toast.makeText(Login.this, file_url, Toast.LENGTH_LONG).show();
      }
    }
  }
  
}




Java Source Code List

com.example.radiusdev.AppPreferenceActivity.java
com.example.radiusdev.ArrayAdapter.java
com.example.radiusdev.Contact.java
com.example.radiusdev.CustomizedListView.java
com.example.radiusdev.DBHelper.java
com.example.radiusdev.DisplayAbout.java
com.example.radiusdev.DisplayContactList.java
com.example.radiusdev.DisplayMapContacts.java
com.example.radiusdev.DisplayUserInfo.java
com.example.radiusdev.EditContact.java
com.example.radiusdev.EditUser.java
com.example.radiusdev.GPS.java
com.example.radiusdev.JSONparser.java
com.example.radiusdev.Login.java
com.example.radiusdev.MainActivity.java
com.example.radiusdev.Main.java
com.example.radiusdev.MapWrapperLayout.java
com.example.radiusdev.Map.java
com.example.radiusdev.NewContact.java
com.example.radiusdev.OnInfoWindowElemTouchListener.java
com.example.radiusdev.PreferencesHelper.java
com.example.radiusdev.Register.java
com.example.radiusdev.UserSettings.java
com.example.radiusdev.imageUploader.java