AuthenticatorActivity.java 45 KB

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