package com.example.cosmosclient.views; import android.content.Intent; import android.content.SharedPreferences; import android.os.Build; import android.os.Handler; import android.os.HandlerThread; import android.support.annotation.RequiresApi; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.text.Editable; import android.text.TextWatcher; import android.view.View; import android.widget.Button; import android.widget.EditText; import android.widget.Toast; import com.example.cosmosclient.MainActivity; import com.example.cosmosclient.R; import com.example.cosmosclient.app.Cosmos; import com.example.cosmosclient.entities.SigninResponse; import com.example.cosmosclient.resources.UsersRest; import com.example.cosmosclient.services.CosomosBackgroundService; import retrofit2.Call; import retrofit2.Callback; import retrofit2.Response; import retrofit2.Retrofit; import retrofit2.converter.jackson.JacksonConverterFactory; public class SigninActivity extends AppCompatActivity { private boolean uIdEnable; private boolean pwEnable; private Button SigninButton; private Intent intentservice; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_signin); // // 別スレ生成 -> 開始 // HandlerThread handlerThread = new HandlerThread("other"); // handlerThread.start(); // // //作成したHandlerThread(別スレ)内部のLooperを引数として、HandlerThread(のLooper)にメッセージを送るHandlerを生成する。 // Handler handler = new Handler(handlerThread.getLooper()); // //Handlerのpostメソッドでメッセージ(タスク:重たい処理)を送信する。 // handler.post(new Runnable() { // @RequiresApi(api = Build.VERSION_CODES.O) // @Override // public void run() { // //重たい処理を記述 // intentservice = new Intent(SigninActivity.this, CosomosBackgroundService.class); // startForegroundService(intentservice); // } // }); Thread thread = new Thread() { @RequiresApi(api = Build.VERSION_CODES.O) public void run() { intentservice = new Intent(SigninActivity.this, CosomosBackgroundService.class); startForegroundService(intentservice); } }; thread.start(); //各種IDを取得 SigninButton = findViewById(R.id.SigninButton); Button SignupButton = findViewById(R.id.SignupButton); final EditText UserIdText = findViewById(R.id.UserIdText); final EditText PasswordText = findViewById(R.id.PasswordText); Button ForgotPasswordButton = findViewById(R.id.ForgotPasswordButton); // 「pref_data」という設定データファイルを読み込み SharedPreferences prefData = getSharedPreferences("pref_data", MODE_PRIVATE); String account = prefData.getString("account", ""); // 空チェック if (account != null && account.length() > 0) { // 保存済の情報をログインID欄に設定 UserIdText.setText(account); uIdEnable=true; //UserIdText.setEnabled(false); } //ボタン無効化 SigninButton.setEnabled(false); //TextWatcherで入力監視 UserIdText.addTextChangedListener(new SigninActivity.GenericTextWatcher(UserIdText)); PasswordText.addTextChangedListener(new SigninActivity.GenericTextWatcher(PasswordText)); //retrofitの処理 final Retrofit retrofit = new Retrofit.Builder() .baseUrl("http://nitta-lab-www.is.konan-u.ac.jp/cosmos/rest/") .addConverterFactory(JacksonConverterFactory.create()) .build(); //interfaceから実装を取得 final UsersRest signinService = retrofit.create(UsersRest.class); //Sign inボタンの処理 SigninButton.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { //ボタン連打防止 SigninButton.setEnabled(false); new Handler().postDelayed(new Runnable() { public void run() { SigninButton.setEnabled(true); } }, 1000L); //APIに値を送信 Call<SigninResponse> call = signinService.login(UserIdText.getText().toString(), PasswordText.getText().toString()); //サーバからのレスポンス call.enqueue(new Callback<SigninResponse>() { //成功時 @Override public void onResponse(Call<SigninResponse> call, Response<SigninResponse> response) { if (response.isSuccessful()) { if(response.body() == null){ //パスワードが違う際、アプリが落ちてしまうため Toast.makeText(SigninActivity.this, "パスワードが違います",Toast.LENGTH_LONG).show(); }else{ SigninResponse result = response.body(); //app/Cosmosに情報保存 Cosmos app = (Cosmos) getApplication(); app.setToken(result.token); app.setuId(UserIdText.getText().toString()); //画面遷移 Intent intent = new Intent(getApplication(), GroupListActivity.class); startActivity(intent); Toast.makeText(SigninActivity.this, "ログインしました", Toast.LENGTH_SHORT).show(); finish(); } }else{ //onFailureでキャッチできないエラーの処理 Toast.makeText(SigninActivity.this, "通信エラー",Toast.LENGTH_SHORT).show(); } } //失敗時 @Override public void onFailure(Call<SigninResponse> call, Throwable t) { t.printStackTrace(); Toast.makeText(SigninActivity.this, "ユーザIDもしくはパスワードが間違っています",Toast.LENGTH_SHORT).show(); } }); } }); //サインアップ画面への遷移処理 SignupButton.setOnClickListener(new View.OnClickListener(){ @Override public void onClick(View v){ Intent intent = new Intent(getApplication(), SignupActivity.class); startActivity(intent); finish(); } }); //パスワード再登録画面への遷移処理 ForgotPasswordButton.setOnClickListener(new View.OnClickListener(){ @Override public void onClick(View v){ Intent intent = new Intent(getApplication(), ForgotPasswordActivity.class); startActivity(intent); //finish(); } }); } private class GenericTextWatcher implements TextWatcher{ private View view; private GenericTextWatcher(View view){ this.view = view; } @Override public void beforeTextChanged(CharSequence s, int start, int count,int after){ /*記述不要*/ }; @Override public void onTextChanged(CharSequence s, int start, int before, int count){/*記述不要*/}; @Override public void afterTextChanged(Editable s){ switch(view.getId()) { case R.id.UserIdText: if (s.length()>0) { uIdEnable = true; } else { uIdEnable = false; } break; case R.id.PasswordText: if(s.length()>0){ pwEnable=true; }else{ pwEnable=false; } break; } //ボタン有効&無効 if(uIdEnable && pwEnable){ SigninButton.setEnabled(true); }else{ SigninButton.setEnabled(false); } } } }