AuthenticatorActivity.java 48 KB

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