Blame view

app/src/main/java/net/plil/clubinfo/etunicorn/app/LoginActivity.java 7.84 KB
dd839264   badetitou   All done
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
  package net.plil.clubinfo.etunicorn.app;
  
  import android.animation.Animator;
  import android.animation.AnimatorListenerAdapter;
  import android.annotation.TargetApi;
  import android.app.DownloadManager;
  import android.content.Intent;
  import android.content.pm.PackageManager;
  import android.support.annotation.NonNull;
  import android.support.design.widget.Snackbar;
  import android.support.v7.app.AppCompatActivity;
  import android.app.LoaderManager.LoaderCallbacks;
  
  import android.content.CursorLoader;
  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.provider.ContactsContract;
  import android.text.TextUtils;
  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.Button;
  import android.widget.EditText;
  import android.widget.TextView;
  import android.widget.Toast;
  
  import com.android.volley.Request;
  import com.android.volley.RequestQueue;
  import com.android.volley.Response;
  import com.android.volley.VolleyError;
  import com.android.volley.toolbox.JsonObjectRequest;
  import com.google.gson.Gson;
  
  import net.plil.clubinfo.etunicorn.R;
bed80725   badetitou   Correctif/PATCH
42
  import net.plil.clubinfo.etunicorn.data.Permission;
dd839264   badetitou   All done
43
  import net.plil.clubinfo.etunicorn.data.Personne;
6790f988   badetitou   Find way to somet...
44
  import net.plil.clubinfo.etunicorn.data.User;
dd839264   badetitou   All done
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
  import net.plil.clubinfo.etunicorn.utils.VolleyUtils;
  
  import org.json.JSONException;
  import org.json.JSONObject;
  
  import java.util.ArrayList;
  import java.util.List;
  
  import static android.Manifest.permission.READ_CONTACTS;
  
  /**
   * A login screen that offers login via email/password.
   */
  public class LoginActivity extends AppCompatActivity {
  
      /**
       * Id to identity READ_CONTACTS permission request.
       */
      private static final int REQUEST_READ_CONTACTS = 0;
  
      /**
       * Keep track of the login task to ensure we can cancel it if requested.
       */
  
      // UI references.
      private EditText mUsernameView;
      private EditText mPasswordView;
      private View mProgressView;
      private View mLoginFormView;
  
      @Override
      protected void onCreate(Bundle savedInstanceState) {
          super.onCreate(savedInstanceState);
          setContentView(R.layout.activity_login);
          // Set up the login form.
          mUsernameView = (EditText) findViewById(R.id.username);
  
          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);
      }
  
  
      /**
       * 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.
       */
      private void attemptLogin() {
  
          // Reset errors.
          mUsernameView.setError(null);
          mPasswordView.setError(null);
  
          // Store values at the time of the login attempt.
          String email = mUsernameView.getText().toString();
          String username = mPasswordView.getText().toString();
  
  
          showProgress(true);
          tryLogin(email, username);
      }
  
      /**
       * Shows the progress UI and hides the login form.
       */
      @TargetApi(Build.VERSION_CODES.HONEYCOMB_MR2)
      private 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);
                  }
              });
          } 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);
          }
      }
  
      /**
       * You need a polytech Lille Account
       *
       * @param username The username of the person
       * @param password The password of the person
       */
      private void tryLogin (String username, String password){
6790f988   badetitou   Find way to somet...
170
171
172
173
174
          User user = new User();
          user.setPassword(password);
          user.setUsername(username);
          JsonObjectRequest jsonObjectRequest = null;
          try {
8bcd81b8   badetitou   some staff
175
              jsonObjectRequest = new JsonObjectRequest(Request.Method.POST, VolleyUtils.baseUri + "/login" , new JSONObject(new Gson().toJson(user)), new Response.Listener<JSONObject>() {
6790f988   badetitou   Find way to somet...
176
177
178
                  @Override
                  public void onResponse(JSONObject response) {
                      showProgress(false);
8bcd81b8   badetitou   some staff
179
  
bed80725   badetitou   Correctif/PATCH
180
181
182
183
184
185
186
187
188
189
                      Toast.makeText(getApplicationContext(),  response.toString(), Toast.LENGTH_LONG).show();
                      Intent intent = new Intent(getApplicationContext(), MainActivity.class);
                      //TODO real interpretation when login work
                      //Personne p = new Gson().fromJson(String.valueOf(response), Personne.class);
                      Personne p = new Personne();
                      Permission permission = new Permission();
                      permission.setNom("ROLE_ADMIN");
                      p.getRole().getPermissions().add(permission);
                      intent.putExtra("user", p);
                      startActivity(intent);
6790f988   badetitou   Find way to somet...
190
191
192
193
194
                  }
              }, new Response.ErrorListener() {
                  @Override
                  public void onErrorResponse(VolleyError error) {
                      showProgress(false);
8bcd81b8   badetitou   some staff
195
                      Toast.makeText(getApplicationContext(), "error : " + error.getCause(), Toast.LENGTH_SHORT).show();
dd839264   badetitou   All done
196
                      Intent intent = new Intent(getApplicationContext(), MainActivity.class);
bed80725   badetitou   Correctif/PATCH
197
198
199
200
201
202
203
  
                      Personne p = new Personne();
                      Permission permission = new Permission();
                      permission.setNom("ROLE_ADMIN");
                      p.getRole().getPermissions().add(permission);
                      intent.putExtra("user", p);
  
dd839264   badetitou   All done
204
                      startActivity(intent);
dd839264   badetitou   All done
205
206
                  }
              }
6790f988   badetitou   Find way to somet...
207
              );
6790f988   badetitou   Find way to somet...
208
209
          } catch (JSONException e) {
              e.printStackTrace();
dd839264   badetitou   All done
210
          }
dd839264   badetitou   All done
211
212
213
214
  
          VolleyUtils.getInstance(getApplicationContext()).addToRequestQueue(jsonObjectRequest);
      }
  }