AuthenticatorActivity.java 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152
  1. /* ownCloud Android client application
  2. * Copyright (C) 2012 Bartek Przybylski
  3. * Copyright (C) 2012-2013 ownCloud Inc.
  4. *
  5. * This program is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2,
  7. * as published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. *
  17. */
  18. package com.owncloud.android.authentication;
  19. import com.owncloud.android.AccountUtils;
  20. import com.owncloud.android.Log_OC;
  21. import com.owncloud.android.ui.dialog.SslValidatorDialog;
  22. import com.owncloud.android.ui.dialog.SslValidatorDialog.OnSslValidatorListener;
  23. import com.owncloud.android.utils.OwnCloudVersion;
  24. import com.owncloud.android.network.OwnCloudClientUtils;
  25. import com.owncloud.android.operations.OwnCloudServerCheckOperation;
  26. import com.owncloud.android.operations.ExistenceCheckOperation;
  27. import com.owncloud.android.operations.OAuth2GetAccessToken;
  28. import com.owncloud.android.operations.OnRemoteOperationListener;
  29. import com.owncloud.android.operations.RemoteOperation;
  30. import com.owncloud.android.operations.RemoteOperationResult;
  31. import com.owncloud.android.operations.RemoteOperationResult.ResultCode;
  32. import android.accounts.Account;
  33. import android.accounts.AccountAuthenticatorActivity;
  34. import android.accounts.AccountManager;
  35. import android.app.AlertDialog;
  36. import android.app.Dialog;
  37. import android.app.ProgressDialog;
  38. import android.content.ContentResolver;
  39. import android.content.DialogInterface;
  40. import android.content.Intent;
  41. import android.content.SharedPreferences;
  42. import android.graphics.Rect;
  43. import android.graphics.drawable.Drawable;
  44. import android.net.Uri;
  45. import android.os.Bundle;
  46. import android.os.Handler;
  47. import android.preference.PreferenceManager;
  48. import android.text.InputType;
  49. import android.view.KeyEvent;
  50. import android.view.MotionEvent;
  51. import android.view.View;
  52. import android.view.View.OnFocusChangeListener;
  53. import android.view.View.OnTouchListener;
  54. import android.view.Window;
  55. import android.view.inputmethod.EditorInfo;
  56. import android.widget.CheckBox;
  57. import android.widget.EditText;
  58. import android.widget.Button;
  59. import android.widget.ImageView;
  60. import android.widget.TextView;
  61. import android.widget.Toast;
  62. import android.widget.TextView.OnEditorActionListener;
  63. import com.owncloud.android.R;
  64. import eu.alefzero.webdav.WebdavClient;
  65. /**
  66. * This Activity is used to add an ownCloud account to the App
  67. *
  68. * @author Bartek Przybylski
  69. * @author David A. Velasco
  70. */
  71. public class AuthenticatorActivity extends AccountAuthenticatorActivity
  72. implements OnRemoteOperationListener, OnSslValidatorListener, OnFocusChangeListener, OnEditorActionListener {
  73. private static final String TAG = AuthenticatorActivity.class.getSimpleName();
  74. public static final String EXTRA_ACCOUNT = "ACCOUNT";
  75. public static final String EXTRA_USER_NAME = "USER_NAME";
  76. public static final String EXTRA_HOST_NAME = "HOST_NAME";
  77. public static final String EXTRA_ACTION = "ACTION";
  78. private static final String KEY_HOST_URL_TEXT = "HOST_URL_TEXT";
  79. private static final String KEY_OC_VERSION = "OC_VERSION";
  80. private static final String KEY_ACCOUNT = "ACCOUNT";
  81. private static final String KEY_STATUS_TEXT = "STATUS_TEXT";
  82. private static final String KEY_STATUS_ICON = "STATUS_ICON";
  83. private static final String KEY_STATUS_CORRECT = "STATUS_CORRECT";
  84. private static final String KEY_IS_SSL_CONN = "IS_SSL_CONN";
  85. private static final String KEY_OAUTH2_STATUS_TEXT = "OAUTH2_STATUS_TEXT";
  86. private static final String KEY_OAUTH2_STATUS_ICON = "OAUTH2_STATUS_ICON";
  87. private static final String OAUTH_MODE_ON = "on";
  88. private static final String OAUTH_MODE_OFF = "off";
  89. private static final String OAUTH_MODE_OPTIONAL = "optional";
  90. private static final int DIALOG_LOGIN_PROGRESS = 0;
  91. private static final int DIALOG_SSL_VALIDATOR = 1;
  92. private static final int DIALOG_CERT_NOT_SAVED = 2;
  93. private static final int DIALOG_OAUTH2_LOGIN_PROGRESS = 3;
  94. public static final byte ACTION_CREATE = 0;
  95. public static final byte ACTION_UPDATE_TOKEN = 1;
  96. private String mHostBaseUrl;
  97. private OwnCloudVersion mDiscoveredVersion;
  98. private int mStatusText, mStatusIcon;
  99. private boolean mStatusCorrect, mIsSslConn;
  100. private int mOAuth2StatusText, mOAuth2StatusIcon;
  101. private final Handler mHandler = new Handler();
  102. private Thread mOperationThread;
  103. private OwnCloudServerCheckOperation mOcServerChkOperation;
  104. private ExistenceCheckOperation mAuthCheckOperation;
  105. private RemoteOperationResult mLastSslUntrustedServerResult;
  106. private Uri mNewCapturedUriFromOAuth2Redirection;
  107. private AccountManager mAccountMgr;
  108. private boolean mJustCreated;
  109. private byte mAction;
  110. private Account mAccount;
  111. private ImageView mViewPasswordButton;
  112. private EditText mHostUrlInput;
  113. private EditText mUsernameInput;
  114. private EditText mPasswordInput;
  115. private CheckBox mOAuth2Check;
  116. private String mOAuthAccessToken;
  117. private View mOkButton;
  118. private TextView mAuthStatusLayout;
  119. private TextView mOAuthAuthEndpointText;
  120. private TextView mOAuthTokenEndpointText;
  121. /**
  122. * {@inheritDoc}
  123. *
  124. * IMPORTANT ENTRY POINT 1: activity is shown to the user
  125. */
  126. @Override
  127. protected void onCreate(Bundle savedInstanceState) {
  128. super.onCreate(savedInstanceState);
  129. getWindow().requestFeature(Window.FEATURE_NO_TITLE);
  130. /// set view and get references to view elements
  131. setContentView(R.layout.account_setup);
  132. mViewPasswordButton = (ImageView) findViewById(R.id.viewPasswordButton);
  133. mHostUrlInput = (EditText) findViewById(R.id.hostUrlInput);
  134. mUsernameInput = (EditText) findViewById(R.id.account_username);
  135. mPasswordInput = (EditText) findViewById(R.id.account_password);
  136. mOAuthAuthEndpointText = (TextView)findViewById(R.id.oAuthEntryPoint_1);
  137. mOAuthTokenEndpointText = (TextView)findViewById(R.id.oAuthEntryPoint_2);
  138. mOAuth2Check = (CheckBox) findViewById(R.id.oauth_onOff_check);
  139. mOkButton = findViewById(R.id.buttonOK);
  140. mAuthStatusLayout = (TextView) findViewById(R.id.auth_status_text);
  141. /// complete label for 'register account' button
  142. Button b = (Button) findViewById(R.id.account_register);
  143. if (b != null) {
  144. b.setText(String.format(getString(R.string.auth_register), getString(R.string.app_name)));
  145. }
  146. /// bind view elements to listeners
  147. mHostUrlInput.setOnFocusChangeListener(this);
  148. mHostUrlInput.setOnTouchListener(new RightDrawableOnTouchListener() {
  149. @Override
  150. public boolean onDrawableTouch(final MotionEvent event) {
  151. AuthenticatorActivity.this.onRefreshClick(mHostUrlInput);
  152. return true;
  153. }
  154. });
  155. mPasswordInput.setOnFocusChangeListener(this);
  156. mPasswordInput.setImeOptions(EditorInfo.IME_ACTION_DONE);
  157. mPasswordInput.setOnEditorActionListener(this);
  158. /// initialization
  159. mAccountMgr = AccountManager.get(this);
  160. mNewCapturedUriFromOAuth2Redirection = null;
  161. mAction = getIntent().getByteExtra(EXTRA_ACTION, ACTION_CREATE);
  162. mAccount = null;
  163. if (savedInstanceState == null) {
  164. /// connection state and info
  165. mStatusText = mStatusIcon = 0;
  166. mStatusCorrect = false;
  167. mIsSslConn = false;
  168. updateConnStatus();
  169. updateAuthStatus();
  170. /// retrieve extras from intent
  171. String tokenType = getIntent().getExtras().getString(AccountAuthenticator.KEY_AUTH_TOKEN_TYPE);
  172. boolean oAuthRequired = AccountAuthenticator.AUTH_TOKEN_TYPE_ACCESS_TOKEN.equals(tokenType) || OAUTH_MODE_ON.equals(getString(R.string.oauth2_mode));
  173. mAccount = getIntent().getExtras().getParcelable(EXTRA_ACCOUNT);
  174. if (mAccount != null) {
  175. String ocVersion = mAccountMgr.getUserData(mAccount, AccountAuthenticator.KEY_OC_VERSION);
  176. if (ocVersion != null) {
  177. mDiscoveredVersion = new OwnCloudVersion(ocVersion);
  178. }
  179. mHostBaseUrl = mAccountMgr.getUserData(mAccount, AccountAuthenticator.KEY_OC_BASE_URL);
  180. mHostUrlInput.setText(mHostBaseUrl);
  181. String userName = mAccount.name.substring(0, mAccount.name.lastIndexOf('@'));
  182. mUsernameInput.setText(userName);
  183. oAuthRequired = (mAccountMgr.getUserData(mAccount, AccountAuthenticator.KEY_SUPPORTS_OAUTH2) != null);
  184. }
  185. mOAuth2Check.setChecked(oAuthRequired);
  186. changeViewByOAuth2Check(oAuthRequired);
  187. } else {
  188. loadSavedInstanceState(savedInstanceState);
  189. }
  190. if (!OAUTH_MODE_OPTIONAL.equals(getString(R.string.oauth2_mode))) {
  191. mOAuth2Check.setVisibility(View.GONE);
  192. }
  193. if (mAction == ACTION_UPDATE_TOKEN) {
  194. /// lock things that should not change
  195. mHostUrlInput.setEnabled(false);
  196. mUsernameInput.setEnabled(false);
  197. mOAuth2Check.setVisibility(View.GONE);
  198. checkOcServer();
  199. }
  200. mPasswordInput.setText(""); // clean password to avoid social hacking (disadvantage: password in removed if the device is turned aside)
  201. mJustCreated = true;
  202. }
  203. /**
  204. * Saves relevant state before {@link #onPause()}
  205. *
  206. * Do NOT save {@link #mNewCapturedUriFromOAuth2Redirection}; it keeps a temporal flag, intended to defer the
  207. * processing of the redirection caught in {@link #onNewIntent(Intent)} until {@link #onResume()}
  208. *
  209. * See {@link #loadSavedInstanceState(Bundle)}
  210. */
  211. @Override
  212. protected void onSaveInstanceState(Bundle outState) {
  213. super.onSaveInstanceState(outState);
  214. /// connection state and info
  215. outState.putInt(KEY_STATUS_TEXT, mStatusText);
  216. outState.putInt(KEY_STATUS_ICON, mStatusIcon);
  217. outState.putBoolean(KEY_STATUS_CORRECT, mStatusCorrect);
  218. outState.putBoolean(KEY_IS_SSL_CONN, mIsSslConn);
  219. /// server data
  220. if (mDiscoveredVersion != null)
  221. outState.putString(KEY_OC_VERSION, mDiscoveredVersion.toString());
  222. outState.putString(KEY_HOST_URL_TEXT, mHostBaseUrl);
  223. /// account data, if updating
  224. if (mAccount != null)
  225. outState.putParcelable(KEY_ACCOUNT, mAccount);
  226. // Saving the state of oAuth2 components.
  227. outState.putInt(KEY_OAUTH2_STATUS_ICON, mOAuth2StatusIcon);
  228. outState.putInt(KEY_OAUTH2_STATUS_TEXT, mOAuth2StatusText);
  229. }
  230. /**
  231. * Loads saved state
  232. *
  233. * See {@link #onSaveInstanceState(Bundle)}.
  234. *
  235. * @param savedInstanceState Saved state, as received in {@link #onCreate(Bundle)}.
  236. */
  237. private void loadSavedInstanceState(Bundle savedInstanceState) {
  238. /// connection state and info
  239. mStatusCorrect = savedInstanceState.getBoolean(KEY_STATUS_CORRECT);
  240. mIsSslConn = savedInstanceState.getBoolean(KEY_IS_SSL_CONN);
  241. mStatusText = savedInstanceState.getInt(KEY_STATUS_TEXT);
  242. mStatusIcon = savedInstanceState.getInt(KEY_STATUS_ICON);
  243. updateConnStatus();
  244. /// UI settings depending upon connection
  245. mOkButton.setEnabled(mStatusCorrect);
  246. if (!mStatusCorrect) {
  247. mHostUrlInput.setCompoundDrawablesWithIntrinsicBounds(0, 0, R.drawable.ic_action_refresh_black, 0);
  248. } else {
  249. mHostUrlInput.setCompoundDrawablesWithIntrinsicBounds(0, 0, 0, 0);
  250. }
  251. /// server data
  252. String ocVersion = savedInstanceState.getString(KEY_OC_VERSION);
  253. if (ocVersion != null)
  254. mDiscoveredVersion = new OwnCloudVersion(ocVersion);
  255. mHostBaseUrl = savedInstanceState.getString(KEY_HOST_URL_TEXT);
  256. // account data, if updating
  257. mAccount = savedInstanceState.getParcelable(KEY_ACCOUNT);
  258. // state of oAuth2 components
  259. mOAuth2StatusIcon = savedInstanceState.getInt(KEY_OAUTH2_STATUS_ICON);
  260. mOAuth2StatusText = savedInstanceState.getInt(KEY_OAUTH2_STATUS_TEXT);
  261. // END of getting the state of oAuth2 components.
  262. }
  263. /**
  264. * The redirection triggered by the OAuth authentication server as response to the GET AUTHORIZATION request
  265. * is caught here.
  266. *
  267. * To make this possible, this activity needs to be qualified with android:launchMode = "singleTask" in the
  268. * AndroidManifest.xml file.
  269. */
  270. @Override
  271. protected void onNewIntent (Intent intent) {
  272. Log_OC.d(TAG, "onNewIntent()");
  273. Uri data = intent.getData();
  274. if (data != null && data.toString().startsWith(getString(R.string.oauth2_redirect_uri))) {
  275. mNewCapturedUriFromOAuth2Redirection = data;
  276. }
  277. }
  278. /**
  279. * The redirection triggered by the OAuth authentication server as response to the GET AUTHORIZATION, and
  280. * deferred in {@link #onNewIntent(Intent)}, is processed here.
  281. */
  282. @Override
  283. protected void onResume() {
  284. super.onResume();
  285. // the state of mOAuth2Check is automatically recovered between configuration changes, but not before onCreate() finishes; so keep the next lines here
  286. changeViewByOAuth2Check(mOAuth2Check.isChecked());
  287. if (mAction == ACTION_UPDATE_TOKEN && mJustCreated) {
  288. if (mOAuth2Check.isChecked())
  289. Toast.makeText(this, R.string.auth_expired_oauth_token_toast, Toast.LENGTH_LONG).show();
  290. else
  291. Toast.makeText(this, R.string.auth_expired_basic_auth_toast, Toast.LENGTH_LONG).show();
  292. }
  293. if (mNewCapturedUriFromOAuth2Redirection != null) {
  294. getOAuth2AccessTokenFromCapturedRedirection();
  295. }
  296. mJustCreated = false;
  297. }
  298. /**
  299. * Parses the redirection with the response to the GET AUTHORIZATION request to the
  300. * oAuth server and requests for the access token (GET ACCESS TOKEN)
  301. */
  302. private void getOAuth2AccessTokenFromCapturedRedirection() {
  303. /// Parse data from OAuth redirection
  304. String queryParameters = mNewCapturedUriFromOAuth2Redirection.getQuery();
  305. mNewCapturedUriFromOAuth2Redirection = null;
  306. /// Showing the dialog with instructions for the user.
  307. showDialog(DIALOG_OAUTH2_LOGIN_PROGRESS);
  308. /// GET ACCESS TOKEN to the oAuth server
  309. RemoteOperation operation = new OAuth2GetAccessToken( getString(R.string.oauth2_client_id),
  310. getString(R.string.oauth2_redirect_uri),
  311. getString(R.string.oauth2_grant_type),
  312. queryParameters);
  313. //WebdavClient client = OwnCloudClientUtils.createOwnCloudClient(Uri.parse(getString(R.string.oauth2_url_endpoint_access)), getApplicationContext());
  314. WebdavClient client = OwnCloudClientUtils.createOwnCloudClient(Uri.parse(mOAuthTokenEndpointText.getText().toString().trim()), getApplicationContext());
  315. operation.execute(client, this, mHandler);
  316. }
  317. /**
  318. * Handles the change of focus on the text inputs for the server URL and the password
  319. */
  320. public void onFocusChange(View view, boolean hasFocus) {
  321. if (view.getId() == R.id.hostUrlInput) {
  322. onUrlInputFocusChanged((TextView) view, hasFocus);
  323. } else if (view.getId() == R.id.account_password) {
  324. onPasswordFocusChanged((TextView) view, hasFocus);
  325. }
  326. }
  327. /**
  328. * Handles changes in focus on the text input for the server URL.
  329. *
  330. * IMPORTANT ENTRY POINT 2: When (!hasFocus), user wrote the server URL and changed to
  331. * other field. The operation to check the existence of the server in the entered URL is
  332. * started.
  333. *
  334. * When hasFocus: user 'comes back' to write again the server URL.
  335. *
  336. * @param hostInput TextView with the URL input field receiving the change of focus.
  337. * @param hasFocus 'True' if focus is received, 'false' if is lost
  338. */
  339. private void onUrlInputFocusChanged(TextView hostInput, boolean hasFocus) {
  340. if (!hasFocus) {
  341. checkOcServer();
  342. } else {
  343. // avoids that the 'connect' button can be clicked if the test was previously passed
  344. mOkButton.setEnabled(false);
  345. }
  346. }
  347. private void checkOcServer() {
  348. String uri = mHostUrlInput.getText().toString().trim();
  349. if (uri.length() != 0) {
  350. mStatusText = R.string.auth_testing_connection;
  351. mStatusIcon = R.drawable.progress_small;
  352. updateConnStatus();
  353. /** TODO cancel previous connection check if the user tries to ammend a wrong URL
  354. if(mConnChkOperation != null) {
  355. mConnChkOperation.cancel();
  356. } */
  357. mOcServerChkOperation = new OwnCloudServerCheckOperation(uri, this);
  358. WebdavClient client = OwnCloudClientUtils.createOwnCloudClient(Uri.parse(uri), this);
  359. mHostBaseUrl = "";
  360. mDiscoveredVersion = null;
  361. mOperationThread = mOcServerChkOperation.execute(client, this, mHandler);
  362. } else {
  363. mHostUrlInput.setCompoundDrawablesWithIntrinsicBounds(0, 0, 0, 0);
  364. mStatusText = 0;
  365. mStatusIcon = 0;
  366. updateConnStatus();
  367. }
  368. }
  369. /**
  370. * Handles changes in focus on the text input for the password (basic authorization).
  371. *
  372. * When (hasFocus), the button to toggle password visibility is shown.
  373. *
  374. * When (!hasFocus), the button is made invisible and the password is hidden.
  375. *
  376. * @param passwordInput TextView with the password input field receiving the change of focus.
  377. * @param hasFocus 'True' if focus is received, 'false' if is lost
  378. */
  379. private void onPasswordFocusChanged(TextView passwordInput, boolean hasFocus) {
  380. if (hasFocus) {
  381. mViewPasswordButton.setVisibility(View.VISIBLE);
  382. } else {
  383. int input_type = InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_PASSWORD;
  384. passwordInput.setInputType(input_type);
  385. mViewPasswordButton.setVisibility(View.INVISIBLE);
  386. }
  387. }
  388. /**
  389. * Cancels the authenticator activity
  390. *
  391. * IMPORTANT ENTRY POINT 3: Never underestimate the importance of cancellation
  392. *
  393. * This method is bound in the layout/acceoun_setup.xml resource file.
  394. *
  395. * @param view Cancel button
  396. */
  397. public void onCancelClick(View view) {
  398. setResult(RESULT_CANCELED); // TODO review how is this related to AccountAuthenticator (debugging)
  399. finish();
  400. }
  401. /**
  402. * Checks the credentials of the user in the root of the ownCloud server
  403. * before creating a new local account.
  404. *
  405. * For basic authorization, a check of existence of the root folder is
  406. * performed.
  407. *
  408. * For OAuth, starts the flow to get an access token; the credentials test
  409. * is postponed until it is available.
  410. *
  411. * IMPORTANT ENTRY POINT 4
  412. *
  413. * @param view OK button
  414. */
  415. public void onOkClick(View view) {
  416. // this check should be unnecessary
  417. if (mDiscoveredVersion == null || !mDiscoveredVersion.isVersionValid() || mHostBaseUrl == null || mHostBaseUrl.length() == 0) {
  418. mStatusIcon = R.drawable.common_error;
  419. mStatusText = R.string.auth_wtf_reenter_URL;
  420. updateConnStatus();
  421. mOkButton.setEnabled(false);
  422. Log_OC.wtf(TAG, "The user was allowed to click 'connect' to an unchecked server!!");
  423. return;
  424. }
  425. if (mOAuth2Check.isChecked()) {
  426. startOauthorization();
  427. } else {
  428. checkBasicAuthorization();
  429. }
  430. }
  431. /**
  432. * Tests the credentials entered by the user performing a check of existence on
  433. * the root folder of the ownCloud server.
  434. */
  435. private void checkBasicAuthorization() {
  436. /// get the path to the root folder through WebDAV from the version server
  437. String webdav_path = AccountUtils.getWebdavPath(mDiscoveredVersion, false);
  438. /// get basic credentials entered by user
  439. String username = mUsernameInput.getText().toString();
  440. String password = mPasswordInput.getText().toString();
  441. /// be gentle with the user
  442. showDialog(DIALOG_LOGIN_PROGRESS);
  443. /// test credentials accessing the root folder
  444. mAuthCheckOperation = new ExistenceCheckOperation("", this, false);
  445. WebdavClient client = OwnCloudClientUtils.createOwnCloudClient(Uri.parse(mHostBaseUrl + webdav_path), this);
  446. client.setBasicCredentials(username, password);
  447. mOperationThread = mAuthCheckOperation.execute(client, this, mHandler);
  448. }
  449. /**
  450. * Starts the OAuth 'grant type' flow to get an access token, with
  451. * a GET AUTHORIZATION request to the BUILT-IN authorization server.
  452. */
  453. private void startOauthorization() {
  454. // be gentle with the user
  455. mStatusIcon = R.drawable.progress_small;
  456. mStatusText = R.string.oauth_login_connection;
  457. updateAuthStatus();
  458. // GET AUTHORIZATION request
  459. //Uri uri = Uri.parse(getString(R.string.oauth2_url_endpoint_auth));
  460. Uri uri = Uri.parse(mOAuthAuthEndpointText.getText().toString().trim());
  461. Uri.Builder uriBuilder = uri.buildUpon();
  462. uriBuilder.appendQueryParameter(OAuth2Constants.KEY_RESPONSE_TYPE, getString(R.string.oauth2_response_type));
  463. uriBuilder.appendQueryParameter(OAuth2Constants.KEY_REDIRECT_URI, getString(R.string.oauth2_redirect_uri));
  464. uriBuilder.appendQueryParameter(OAuth2Constants.KEY_CLIENT_ID, getString(R.string.oauth2_client_id));
  465. uriBuilder.appendQueryParameter(OAuth2Constants.KEY_SCOPE, getString(R.string.oauth2_scope));
  466. //uriBuilder.appendQueryParameter(OAuth2Constants.KEY_STATE, whateverwewant);
  467. uri = uriBuilder.build();
  468. Log_OC.d(TAG, "Starting browser to view " + uri.toString());
  469. Intent i = new Intent(Intent.ACTION_VIEW, uri);
  470. startActivity(i);
  471. }
  472. /**
  473. * Callback method invoked when a RemoteOperation executed by this Activity finishes.
  474. *
  475. * Dispatches the operation flow to the right method.
  476. */
  477. @Override
  478. public void onRemoteOperationFinish(RemoteOperation operation, RemoteOperationResult result) {
  479. if (operation instanceof OwnCloudServerCheckOperation) {
  480. onOcServerCheckFinish((OwnCloudServerCheckOperation) operation, result);
  481. } else if (operation instanceof OAuth2GetAccessToken) {
  482. onGetOAuthAccessTokenFinish((OAuth2GetAccessToken)operation, result);
  483. } else if (operation instanceof ExistenceCheckOperation) {
  484. onAuthorizationCheckFinish((ExistenceCheckOperation)operation, result);
  485. }
  486. }
  487. /**
  488. * Processes the result of the server check performed when the user finishes the enter of the
  489. * server URL.
  490. *
  491. * @param operation Server check performed.
  492. * @param result Result of the check.
  493. */
  494. private void onOcServerCheckFinish(OwnCloudServerCheckOperation operation, RemoteOperationResult result) {
  495. /// update status icon and text
  496. updateStatusIconAndText(result);
  497. updateConnStatus();
  498. /// save result state
  499. mStatusCorrect = result.isSuccess();
  500. mIsSslConn = (result.getCode() == ResultCode.OK_SSL);
  501. /// very special case (TODO: move to a common place for all the remote operations)
  502. if (result.getCode() == ResultCode.SSL_RECOVERABLE_PEER_UNVERIFIED) {
  503. mLastSslUntrustedServerResult = result;
  504. showDialog(DIALOG_SSL_VALIDATOR);
  505. }
  506. /// update the visibility of the 'retry connection' button
  507. if (!mStatusCorrect) {
  508. mHostUrlInput.setCompoundDrawablesWithIntrinsicBounds(0, 0, R.drawable.ic_action_refresh_black, 0);
  509. } else {
  510. mHostUrlInput.setCompoundDrawablesWithIntrinsicBounds(0, 0, 0, 0);
  511. }
  512. /// retrieve discovered version and normalize server URL
  513. mDiscoveredVersion = operation.getDiscoveredVersion();
  514. mHostBaseUrl = mHostUrlInput.getText().toString().trim();
  515. if (!mHostBaseUrl.toLowerCase().startsWith("http://") &&
  516. !mHostBaseUrl.toLowerCase().startsWith("https://")) {
  517. if (mIsSslConn) {
  518. mHostBaseUrl = "https://" + mHostBaseUrl;
  519. } else {
  520. mHostBaseUrl = "http://" + mHostBaseUrl;
  521. }
  522. }
  523. if (mHostBaseUrl.endsWith("/"))
  524. mHostBaseUrl = mHostBaseUrl.substring(0, mHostBaseUrl.length() - 1);
  525. /// allow or not the user try to access the server
  526. mOkButton.setEnabled(mStatusCorrect);
  527. }
  528. /**
  529. * Chooses the right icon and text to show to the user for the received operation result.
  530. *
  531. * @param result Result of a remote operation performed in this activity
  532. */
  533. private void updateStatusIconAndText(RemoteOperationResult result) {
  534. mStatusText = mStatusIcon = 0;
  535. switch (result.getCode()) {
  536. case OK_SSL:
  537. mStatusIcon = android.R.drawable.ic_secure;
  538. mStatusText = R.string.auth_secure_connection;
  539. break;
  540. case OK_NO_SSL:
  541. case OK:
  542. if (mHostUrlInput.getText().toString().trim().toLowerCase().startsWith("http://") ) {
  543. mStatusText = R.string.auth_connection_established;
  544. mStatusIcon = R.drawable.ic_ok;
  545. } else {
  546. mStatusText = R.string.auth_nossl_plain_ok_title;
  547. mStatusIcon = android.R.drawable.ic_partial_secure;
  548. }
  549. break;
  550. case SSL_RECOVERABLE_PEER_UNVERIFIED:
  551. mStatusIcon = R.drawable.common_error;
  552. mStatusText = R.string.auth_ssl_unverified_server_title;
  553. break;
  554. case BAD_OC_VERSION:
  555. mStatusIcon = R.drawable.common_error;
  556. mStatusText = R.string.auth_bad_oc_version_title;
  557. break;
  558. case WRONG_CONNECTION:
  559. mStatusIcon = R.drawable.common_error;
  560. mStatusText = R.string.auth_wrong_connection_title;
  561. break;
  562. case TIMEOUT:
  563. mStatusIcon = R.drawable.common_error;
  564. mStatusText = R.string.auth_timeout_title;
  565. break;
  566. case INCORRECT_ADDRESS:
  567. mStatusIcon = R.drawable.common_error;
  568. mStatusText = R.string.auth_incorrect_address_title;
  569. break;
  570. case SSL_ERROR:
  571. mStatusIcon = R.drawable.common_error;
  572. mStatusText = R.string.auth_ssl_general_error_title;
  573. break;
  574. case UNAUTHORIZED:
  575. mStatusIcon = R.drawable.common_error;
  576. mStatusText = R.string.auth_unauthorized;
  577. break;
  578. case HOST_NOT_AVAILABLE:
  579. mStatusIcon = R.drawable.common_error;
  580. mStatusText = R.string.auth_unknown_host_title;
  581. break;
  582. case NO_NETWORK_CONNECTION:
  583. mStatusIcon = R.drawable.no_network;
  584. mStatusText = R.string.auth_no_net_conn_title;
  585. break;
  586. case INSTANCE_NOT_CONFIGURED:
  587. mStatusIcon = R.drawable.common_error;
  588. mStatusText = R.string.auth_not_configured_title;
  589. break;
  590. case FILE_NOT_FOUND:
  591. mStatusIcon = R.drawable.common_error;
  592. mStatusText = R.string.auth_incorrect_path_title;
  593. break;
  594. case OAUTH2_ERROR:
  595. mStatusIcon = R.drawable.common_error;
  596. mStatusText = R.string.auth_oauth_error;
  597. break;
  598. case OAUTH2_ERROR_ACCESS_DENIED:
  599. mStatusIcon = R.drawable.common_error;
  600. mStatusText = R.string.auth_oauth_error_access_denied;
  601. break;
  602. case UNHANDLED_HTTP_CODE:
  603. case UNKNOWN_ERROR:
  604. mStatusIcon = R.drawable.common_error;
  605. mStatusText = R.string.auth_unknown_error_title;
  606. break;
  607. default:
  608. break;
  609. }
  610. }
  611. /**
  612. * Processes the result of the request for and access token send
  613. * to an OAuth authorization server.
  614. *
  615. * @param operation Operation performed requesting the access token.
  616. * @param result Result of the operation.
  617. */
  618. private void onGetOAuthAccessTokenFinish(OAuth2GetAccessToken operation, RemoteOperationResult result) {
  619. try {
  620. dismissDialog(DIALOG_OAUTH2_LOGIN_PROGRESS);
  621. } catch (IllegalArgumentException e) {
  622. // NOTHING TO DO ; can't find out what situation that leads to the exception in this code, but user logs signal that it happens
  623. }
  624. String webdav_path = AccountUtils.getWebdavPath(mDiscoveredVersion, true);
  625. if (result.isSuccess() && webdav_path != null) {
  626. /// be gentle with the user
  627. showDialog(DIALOG_LOGIN_PROGRESS);
  628. /// time to test the retrieved access token on the ownCloud server
  629. mOAuthAccessToken = ((OAuth2GetAccessToken)operation).getResultTokenMap().get(OAuth2Constants.KEY_ACCESS_TOKEN);
  630. Log_OC.d(TAG, "Got ACCESS TOKEN: " + mOAuthAccessToken);
  631. mAuthCheckOperation = new ExistenceCheckOperation("", this, false);
  632. WebdavClient client = OwnCloudClientUtils.createOwnCloudClient(Uri.parse(mHostBaseUrl + webdav_path), this);
  633. client.setBearerCredentials(mOAuthAccessToken);
  634. mAuthCheckOperation.execute(client, this, mHandler);
  635. } else {
  636. updateStatusIconAndText(result);
  637. updateAuthStatus();
  638. Log_OC.d(TAG, "Access failed: " + result.getLogMessage());
  639. }
  640. }
  641. /**
  642. * Processes the result of the access check performed to try the user credentials.
  643. *
  644. * Creates a new account through the AccountManager.
  645. *
  646. * @param operation Access check performed.
  647. * @param result Result of the operation.
  648. */
  649. private void onAuthorizationCheckFinish(ExistenceCheckOperation operation, RemoteOperationResult result) {
  650. try {
  651. dismissDialog(DIALOG_LOGIN_PROGRESS);
  652. } catch (IllegalArgumentException e) {
  653. // NOTHING TO DO ; can't find out what situation that leads to the exception in this code, but user logs signal that it happens
  654. }
  655. if (result.isSuccess()) {
  656. Log_OC.d(TAG, "Successful access - time to save the account");
  657. if (mAction == ACTION_CREATE) {
  658. createAccount();
  659. } else {
  660. updateToken();
  661. }
  662. finish();
  663. } else {
  664. updateStatusIconAndText(result);
  665. updateAuthStatus();
  666. Log_OC.d(TAG, "Access failed: " + result.getLogMessage());
  667. }
  668. }
  669. /**
  670. * Sets the proper response to get that the Account Authenticator that started this activity saves
  671. * a new authorization token for mAccount.
  672. */
  673. private void updateToken() {
  674. Bundle response = new Bundle();
  675. response.putString(AccountManager.KEY_ACCOUNT_NAME, mAccount.name);
  676. response.putString(AccountManager.KEY_ACCOUNT_TYPE, mAccount.type);
  677. boolean isOAuth = mOAuth2Check.isChecked();
  678. if (isOAuth) {
  679. response.putString(AccountManager.KEY_AUTHTOKEN, mOAuthAccessToken);
  680. // the next line is necessary; by now, notifications are calling directly to the AuthenticatorActivity to update, without AccountManager intervention
  681. mAccountMgr.setAuthToken(mAccount, AccountAuthenticator.AUTH_TOKEN_TYPE_ACCESS_TOKEN, mOAuthAccessToken);
  682. } else {
  683. response.putString(AccountManager.KEY_AUTHTOKEN, mPasswordInput.getText().toString());
  684. mAccountMgr.setPassword(mAccount, mPasswordInput.getText().toString());
  685. }
  686. setAccountAuthenticatorResult(response);
  687. }
  688. /**
  689. * Creates a new account through the Account Authenticator that started this activity.
  690. *
  691. * This makes the account permanent.
  692. *
  693. * TODO Decide how to name the OAuth accounts
  694. */
  695. private void createAccount() {
  696. /// create and save new ownCloud account
  697. boolean isOAuth = mOAuth2Check.isChecked();
  698. Uri uri = Uri.parse(mHostBaseUrl);
  699. String username = mUsernameInput.getText().toString().trim();
  700. if (isOAuth) {
  701. username = "OAuth_user" + (new java.util.Random(System.currentTimeMillis())).nextLong();
  702. }
  703. String accountName = username + "@" + uri.getHost();
  704. if (uri.getPort() >= 0) {
  705. accountName += ":" + uri.getPort();
  706. }
  707. mAccount = new Account(accountName, AccountAuthenticator.ACCOUNT_TYPE);
  708. if (isOAuth) {
  709. mAccountMgr.addAccountExplicitly(mAccount, "", null); // with our implementation, the password is never input in the app
  710. } else {
  711. mAccountMgr.addAccountExplicitly(mAccount, mPasswordInput.getText().toString(), null);
  712. }
  713. /// add the new account as default in preferences, if there is none already
  714. Account defaultAccount = AccountUtils.getCurrentOwnCloudAccount(this);
  715. if (defaultAccount == null) {
  716. SharedPreferences.Editor editor = PreferenceManager
  717. .getDefaultSharedPreferences(this).edit();
  718. editor.putString("select_oc_account", accountName);
  719. editor.commit();
  720. }
  721. /// prepare result to return to the Authenticator
  722. // TODO check again what the Authenticator makes with it; probably has the same effect as addAccountExplicitly, but it's not well done
  723. final Intent intent = new Intent();
  724. intent.putExtra(AccountManager.KEY_ACCOUNT_TYPE, AccountAuthenticator.ACCOUNT_TYPE);
  725. intent.putExtra(AccountManager.KEY_ACCOUNT_NAME, mAccount.name);
  726. if (!isOAuth)
  727. intent.putExtra(AccountManager.KEY_AUTHTOKEN, AccountAuthenticator.ACCOUNT_TYPE); // TODO check this; not sure it's right; maybe
  728. intent.putExtra(AccountManager.KEY_USERDATA, username);
  729. if (isOAuth) {
  730. mAccountMgr.setAuthToken(mAccount, AccountAuthenticator.AUTH_TOKEN_TYPE_ACCESS_TOKEN, mOAuthAccessToken);
  731. }
  732. /// add user data to the new account; TODO probably can be done in the last parameter addAccountExplicitly, or in KEY_USERDATA
  733. mAccountMgr.setUserData(mAccount, AccountAuthenticator.KEY_OC_VERSION, mDiscoveredVersion.toString());
  734. mAccountMgr.setUserData(mAccount, AccountAuthenticator.KEY_OC_BASE_URL, mHostBaseUrl);
  735. if (isOAuth)
  736. mAccountMgr.setUserData(mAccount, AccountAuthenticator.KEY_SUPPORTS_OAUTH2, "TRUE"); // TODO this flag should be unnecessary
  737. setAccountAuthenticatorResult(intent.getExtras());
  738. setResult(RESULT_OK, intent);
  739. /// immediately request for the synchronization of the new account
  740. Bundle bundle = new Bundle();
  741. bundle.putBoolean(ContentResolver.SYNC_EXTRAS_MANUAL, true);
  742. ContentResolver.requestSync(mAccount, AccountAuthenticator.AUTHORITY, bundle);
  743. }
  744. /**
  745. * {@inheritDoc}
  746. *
  747. * Necessary to update the contents of the SSL Dialog
  748. *
  749. * TODO move to some common place for all possible untrusted SSL failures
  750. */
  751. @Override
  752. protected void onPrepareDialog(int id, Dialog dialog, Bundle args) {
  753. switch (id) {
  754. case DIALOG_LOGIN_PROGRESS:
  755. case DIALOG_CERT_NOT_SAVED:
  756. case DIALOG_OAUTH2_LOGIN_PROGRESS:
  757. break;
  758. case DIALOG_SSL_VALIDATOR: {
  759. ((SslValidatorDialog)dialog).updateResult(mLastSslUntrustedServerResult);
  760. break;
  761. }
  762. default:
  763. Log_OC.e(TAG, "Incorrect dialog called with id = " + id);
  764. }
  765. }
  766. /**
  767. * {@inheritDoc}
  768. */
  769. @Override
  770. protected Dialog onCreateDialog(int id) {
  771. Dialog dialog = null;
  772. switch (id) {
  773. case DIALOG_LOGIN_PROGRESS: {
  774. /// simple progress dialog
  775. ProgressDialog working_dialog = new ProgressDialog(this);
  776. working_dialog.setMessage(getResources().getString(R.string.auth_trying_to_login));
  777. working_dialog.setIndeterminate(true);
  778. working_dialog.setCancelable(true);
  779. working_dialog
  780. .setOnCancelListener(new DialogInterface.OnCancelListener() {
  781. @Override
  782. public void onCancel(DialogInterface dialog) {
  783. /// TODO study if this is enough
  784. Log_OC.i(TAG, "Login canceled");
  785. if (mOperationThread != null) {
  786. mOperationThread.interrupt();
  787. finish();
  788. }
  789. }
  790. });
  791. dialog = working_dialog;
  792. break;
  793. }
  794. case DIALOG_OAUTH2_LOGIN_PROGRESS: {
  795. ProgressDialog working_dialog = new ProgressDialog(this);
  796. working_dialog.setMessage(String.format("Getting authorization"));
  797. working_dialog.setIndeterminate(true);
  798. working_dialog.setCancelable(true);
  799. working_dialog
  800. .setOnCancelListener(new DialogInterface.OnCancelListener() {
  801. @Override
  802. public void onCancel(DialogInterface dialog) {
  803. Log_OC.i(TAG, "Login canceled");
  804. finish();
  805. }
  806. });
  807. dialog = working_dialog;
  808. break;
  809. }
  810. case DIALOG_SSL_VALIDATOR: {
  811. /// TODO start to use new dialog interface, at least for this (it is a FragmentDialog already)
  812. dialog = SslValidatorDialog.newInstance(this, mLastSslUntrustedServerResult, this);
  813. break;
  814. }
  815. case DIALOG_CERT_NOT_SAVED: {
  816. AlertDialog.Builder builder = new AlertDialog.Builder(this);
  817. builder.setMessage(getResources().getString(R.string.ssl_validator_not_saved));
  818. builder.setCancelable(false);
  819. builder.setPositiveButton(R.string.common_ok, new DialogInterface.OnClickListener() {
  820. @Override
  821. public void onClick(DialogInterface dialog, int which) {
  822. dialog.dismiss();
  823. };
  824. });
  825. dialog = builder.create();
  826. break;
  827. }
  828. default:
  829. Log_OC.e(TAG, "Incorrect dialog called with id = " + id);
  830. }
  831. return dialog;
  832. }
  833. /**
  834. * Starts and activity to open the 'new account' page in the ownCloud web site
  835. *
  836. * @param view 'Account register' button
  837. */
  838. public void onRegisterClick(View view) {
  839. Intent register = new Intent(Intent.ACTION_VIEW, Uri.parse(getString(R.string.url_account_register)));
  840. setResult(RESULT_CANCELED);
  841. startActivity(register);
  842. }
  843. /**
  844. * Updates the content and visibility state of the icon and text associated
  845. * to the last check on the ownCloud server.
  846. */
  847. private void updateConnStatus() {
  848. TextView tv = (TextView) findViewById(R.id.server_status_text);
  849. if (mStatusIcon == 0 && mStatusText == 0) {
  850. tv.setVisibility(View.INVISIBLE);
  851. } else {
  852. tv.setText(mStatusText);
  853. tv.setCompoundDrawablesWithIntrinsicBounds(mStatusIcon, 0, 0, 0);
  854. tv.setVisibility(View.VISIBLE);
  855. }
  856. }
  857. /**
  858. * Updates the content and visibility state of the icon and text associated
  859. * to the interactions with the OAuth authorization server.
  860. */
  861. private void updateAuthStatus() {
  862. if (mStatusIcon == 0 && mStatusText == 0) {
  863. mAuthStatusLayout.setVisibility(View.INVISIBLE);
  864. } else {
  865. mAuthStatusLayout.setText(mStatusText);
  866. mAuthStatusLayout.setCompoundDrawablesWithIntrinsicBounds(mStatusIcon, 0, 0, 0);
  867. mAuthStatusLayout.setVisibility(View.VISIBLE);
  868. }
  869. }
  870. /**
  871. * Called when the refresh button in the input field for ownCloud host is clicked.
  872. *
  873. * Performs a new check on the URL in the input field.
  874. *
  875. * @param view Refresh 'button'
  876. */
  877. public void onRefreshClick(View view) {
  878. onFocusChange(mHostUrlInput, false);
  879. }
  880. /**
  881. * Called when the eye icon in the password field is clicked.
  882. *
  883. * Toggles the visibility of the password in the field.
  884. *
  885. * @param view 'View password' 'button'
  886. */
  887. public void onViewPasswordClick(View view) {
  888. int selectionStart = mPasswordInput.getSelectionStart();
  889. int selectionEnd = mPasswordInput.getSelectionEnd();
  890. int input_type = mPasswordInput.getInputType();
  891. if ((input_type & InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD) == InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD) {
  892. input_type = InputType.TYPE_CLASS_TEXT
  893. | InputType.TYPE_TEXT_VARIATION_PASSWORD;
  894. } else {
  895. input_type = InputType.TYPE_CLASS_TEXT
  896. | InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD;
  897. }
  898. mPasswordInput.setInputType(input_type);
  899. mPasswordInput.setSelection(selectionStart, selectionEnd);
  900. }
  901. /**
  902. * Called when the checkbox for OAuth authorization is clicked.
  903. *
  904. * Hides or shows the input fields for user & password.
  905. *
  906. * @param view 'View password' 'button'
  907. */
  908. public void onCheckClick(View view) {
  909. CheckBox oAuth2Check = (CheckBox)view;
  910. changeViewByOAuth2Check(oAuth2Check.isChecked());
  911. }
  912. /**
  913. * Changes the visibility of input elements depending upon the kind of authorization
  914. * chosen by the user: basic or OAuth
  915. *
  916. * @param checked 'True' when OAuth is selected.
  917. */
  918. public void changeViewByOAuth2Check(Boolean checked) {
  919. if (checked) {
  920. mOAuthAuthEndpointText.setVisibility(View.VISIBLE);
  921. mOAuthTokenEndpointText.setVisibility(View.VISIBLE);
  922. mUsernameInput.setVisibility(View.GONE);
  923. mPasswordInput.setVisibility(View.GONE);
  924. mViewPasswordButton.setVisibility(View.GONE);
  925. } else {
  926. mOAuthAuthEndpointText.setVisibility(View.GONE);
  927. mOAuthTokenEndpointText.setVisibility(View.GONE);
  928. mUsernameInput.setVisibility(View.VISIBLE);
  929. mPasswordInput.setVisibility(View.VISIBLE);
  930. mViewPasswordButton.setVisibility(View.INVISIBLE);
  931. }
  932. }
  933. /**
  934. * Called from SslValidatorDialog when a new server certificate was correctly saved.
  935. */
  936. public void onSavedCertificate() {
  937. mOperationThread = mOcServerChkOperation.retry(this, mHandler);
  938. }
  939. /**
  940. * Called from SslValidatorDialog when a new server certificate could not be saved
  941. * when the user requested it.
  942. */
  943. @Override
  944. public void onFailedSavingCertificate() {
  945. showDialog(DIALOG_CERT_NOT_SAVED);
  946. }
  947. /**
  948. * Called when the 'action' button in an IME is pressed ('enter' in software keyboard).
  949. *
  950. * Used to trigger the authorization check when the user presses 'enter' after writing the password.
  951. */
  952. @Override
  953. public boolean onEditorAction(TextView inputField, int actionId, KeyEvent event) {
  954. if (inputField != null && inputField.equals(mPasswordInput) &&
  955. actionId == EditorInfo.IME_ACTION_DONE) {
  956. if (mOkButton.isEnabled()) {
  957. mOkButton.performClick();
  958. }
  959. }
  960. return false; // always return false to grant that the software keyboard is hidden anyway
  961. }
  962. private abstract static class RightDrawableOnTouchListener implements OnTouchListener {
  963. private int fuzz = 10;
  964. /**
  965. * {@inheritDoc}
  966. */
  967. @Override
  968. public boolean onTouch(View view, MotionEvent event) {
  969. if (event.getAction() == MotionEvent.ACTION_DOWN) {
  970. Drawable rightDrawable = null;
  971. if (view instanceof TextView) {
  972. Drawable[] drawables = ((TextView)view).getCompoundDrawables();
  973. if (drawables.length > 2) {
  974. rightDrawable = drawables[2];
  975. }
  976. }
  977. if (rightDrawable != null) {
  978. final int x = (int) event.getX();
  979. final int y = (int) event.getY();
  980. final Rect bounds = rightDrawable.getBounds();
  981. if (x >= (view.getRight() - bounds.width() - fuzz) && x <= (view.getRight() - view.getPaddingRight() + fuzz)
  982. && y >= (view.getPaddingTop() - fuzz) && y <= (view.getHeight() - view.getPaddingBottom()) + fuzz) {
  983. return onDrawableTouch(event);
  984. }
  985. }
  986. }
  987. return false;
  988. }
  989. public abstract boolean onDrawableTouch(final MotionEvent event);
  990. }
  991. }