AuthenticatorActivity.java 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254
  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. mServerCheckedAndValid = false;
  352. mOkButton.setEnabled(false);
  353. mDiscoveredVersion = null;
  354. hideRefreshButton();
  355. if (uri.length() != 0) {
  356. mServerStatusText = R.string.auth_testing_connection;
  357. mServerStatusIcon = R.drawable.progress_small;
  358. showServerStatus();
  359. mOcServerChkOperation = new OwnCloudServerCheckOperation(uri, this);
  360. WebdavClient client = OwnCloudClientUtils.createOwnCloudClient(Uri.parse(uri), this);
  361. mOperationThread = mOcServerChkOperation.execute(client, this, mHandler);
  362. } else {
  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. mAuthStatusIcon = R.drawable.progress_small;
  455. mAuthStatusText = 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. if (mServerCheckedAndValid) {
  501. hideRefreshButton();
  502. } else {
  503. showRefreshButton();
  504. }
  505. updateServerStatusIconAndText(result);
  506. showServerStatus();
  507. /// very special case (TODO: move to a common place for all the remote operations)
  508. if (result.getCode() == ResultCode.SSL_RECOVERABLE_PEER_UNVERIFIED) {
  509. mLastSslUntrustedServerResult = result;
  510. showDialog(DIALOG_SSL_VALIDATOR);
  511. }
  512. /// retrieve discovered version and normalize server URL
  513. mDiscoveredVersion = operation.getDiscoveredVersion();
  514. mHostBaseUrl = normalizeUrl(mHostUrlInput.getText().toString());
  515. /// allow or not the user try to access the server
  516. mOkButton.setEnabled(mServerCheckedAndValid);
  517. } // else nothing ; only the last check operation is considered;
  518. // multiple can be triggered if the user amends a URL before a previous check can be triggered
  519. }
  520. private String normalizeUrl(String url) {
  521. if (url != null && url.length() > 0) {
  522. url = url.trim();
  523. if (!url.toLowerCase().startsWith("http://") &&
  524. !url.toLowerCase().startsWith("https://")) {
  525. if (mIsSslConn) {
  526. url = "https://" + url;
  527. } else {
  528. url = "http://" + url;
  529. }
  530. }
  531. if (url.endsWith("/")) {
  532. url = url.substring(0, url.length() - 1);
  533. }
  534. }
  535. return url;
  536. }
  537. /**
  538. * Chooses the right icon and text to show to the user for the received operation result.
  539. *
  540. * @param result Result of a remote operation performed in this activity
  541. */
  542. private void updateServerStatusIconAndText(RemoteOperationResult result) {
  543. mServerStatusIcon = R.drawable.common_error; // the most common case in the switch below
  544. switch (result.getCode()) {
  545. case OK_SSL:
  546. mServerStatusIcon = android.R.drawable.ic_secure;
  547. mServerStatusText = R.string.auth_secure_connection;
  548. break;
  549. case OK_NO_SSL:
  550. case OK:
  551. if (mHostUrlInput.getText().toString().trim().toLowerCase().startsWith("http://") ) {
  552. mServerStatusText = R.string.auth_connection_established;
  553. mServerStatusIcon = R.drawable.ic_ok;
  554. } else {
  555. mServerStatusText = R.string.auth_nossl_plain_ok_title;
  556. mServerStatusIcon = android.R.drawable.ic_partial_secure;
  557. }
  558. break;
  559. case NO_NETWORK_CONNECTION:
  560. mServerStatusIcon = R.drawable.no_network;
  561. mServerStatusText = R.string.auth_no_net_conn_title;
  562. break;
  563. case SSL_RECOVERABLE_PEER_UNVERIFIED:
  564. mServerStatusText = R.string.auth_ssl_unverified_server_title;
  565. break;
  566. case BAD_OC_VERSION:
  567. mServerStatusText = R.string.auth_bad_oc_version_title;
  568. break;
  569. case WRONG_CONNECTION:
  570. mServerStatusText = R.string.auth_wrong_connection_title;
  571. break;
  572. case TIMEOUT:
  573. mServerStatusText = R.string.auth_timeout_title;
  574. break;
  575. case INCORRECT_ADDRESS:
  576. mServerStatusText = R.string.auth_incorrect_address_title;
  577. break;
  578. case SSL_ERROR:
  579. mServerStatusText = R.string.auth_ssl_general_error_title;
  580. break;
  581. case UNAUTHORIZED:
  582. mServerStatusText = R.string.auth_unauthorized;
  583. break;
  584. case HOST_NOT_AVAILABLE:
  585. mServerStatusText = R.string.auth_unknown_host_title;
  586. break;
  587. case INSTANCE_NOT_CONFIGURED:
  588. mServerStatusText = R.string.auth_not_configured_title;
  589. break;
  590. case FILE_NOT_FOUND:
  591. mServerStatusText = R.string.auth_incorrect_path_title;
  592. break;
  593. case OAUTH2_ERROR:
  594. mServerStatusText = R.string.auth_oauth_error;
  595. break;
  596. case OAUTH2_ERROR_ACCESS_DENIED:
  597. mServerStatusText = R.string.auth_oauth_error_access_denied;
  598. break;
  599. case UNHANDLED_HTTP_CODE:
  600. case UNKNOWN_ERROR:
  601. mServerStatusText = R.string.auth_unknown_error_title;
  602. break;
  603. default:
  604. mServerStatusText = 0;
  605. mServerStatusIcon = 0;
  606. }
  607. }
  608. /**
  609. * Chooses the right icon and text to show to the user for the received operation result.
  610. *
  611. * @param result Result of a remote operation performed in this activity
  612. */
  613. private void updateAuthStatusIconAndText(RemoteOperationResult result) {
  614. mAuthStatusIcon = R.drawable.common_error; // the most common case in the switch below
  615. switch (result.getCode()) {
  616. case OK_SSL:
  617. mAuthStatusIcon = android.R.drawable.ic_secure;
  618. mAuthStatusText = R.string.auth_secure_connection;
  619. break;
  620. case OK_NO_SSL:
  621. case OK:
  622. if (mHostUrlInput.getText().toString().trim().toLowerCase().startsWith("http://") ) {
  623. mAuthStatusText = R.string.auth_connection_established;
  624. mAuthStatusIcon = R.drawable.ic_ok;
  625. } else {
  626. mAuthStatusText = R.string.auth_nossl_plain_ok_title;
  627. mAuthStatusIcon = android.R.drawable.ic_partial_secure;
  628. }
  629. break;
  630. case NO_NETWORK_CONNECTION:
  631. mAuthStatusIcon = R.drawable.no_network;
  632. mAuthStatusText = R.string.auth_no_net_conn_title;
  633. break;
  634. case SSL_RECOVERABLE_PEER_UNVERIFIED:
  635. mAuthStatusText = R.string.auth_ssl_unverified_server_title;
  636. break;
  637. case BAD_OC_VERSION:
  638. mAuthStatusText = R.string.auth_bad_oc_version_title;
  639. break;
  640. case WRONG_CONNECTION:
  641. mAuthStatusText = R.string.auth_wrong_connection_title;
  642. break;
  643. case TIMEOUT:
  644. mAuthStatusText = R.string.auth_timeout_title;
  645. break;
  646. case INCORRECT_ADDRESS:
  647. mAuthStatusText = R.string.auth_incorrect_address_title;
  648. break;
  649. case SSL_ERROR:
  650. mAuthStatusText = R.string.auth_ssl_general_error_title;
  651. break;
  652. case UNAUTHORIZED:
  653. mAuthStatusText = R.string.auth_unauthorized;
  654. break;
  655. case HOST_NOT_AVAILABLE:
  656. mAuthStatusText = R.string.auth_unknown_host_title;
  657. break;
  658. case INSTANCE_NOT_CONFIGURED:
  659. mAuthStatusText = R.string.auth_not_configured_title;
  660. break;
  661. case FILE_NOT_FOUND:
  662. mAuthStatusText = R.string.auth_incorrect_path_title;
  663. break;
  664. case OAUTH2_ERROR:
  665. mAuthStatusText = R.string.auth_oauth_error;
  666. break;
  667. case OAUTH2_ERROR_ACCESS_DENIED:
  668. mAuthStatusText = R.string.auth_oauth_error_access_denied;
  669. break;
  670. case UNHANDLED_HTTP_CODE:
  671. case UNKNOWN_ERROR:
  672. mAuthStatusText = R.string.auth_unknown_error_title;
  673. break;
  674. default:
  675. mAuthStatusText = 0;
  676. mAuthStatusIcon = 0;
  677. }
  678. }
  679. /**
  680. * Processes the result of the request for and access token send
  681. * to an OAuth authorization server.
  682. *
  683. * @param operation Operation performed requesting the access token.
  684. * @param result Result of the operation.
  685. */
  686. private void onGetOAuthAccessTokenFinish(OAuth2GetAccessToken operation, RemoteOperationResult result) {
  687. try {
  688. dismissDialog(DIALOG_OAUTH2_LOGIN_PROGRESS);
  689. } catch (IllegalArgumentException e) {
  690. // NOTHING TO DO ; can't find out what situation that leads to the exception in this code, but user logs signal that it happens
  691. }
  692. String webdav_path = AccountUtils.getWebdavPath(mDiscoveredVersion, true);
  693. if (result.isSuccess() && webdav_path != null) {
  694. /// be gentle with the user
  695. showDialog(DIALOG_LOGIN_PROGRESS);
  696. /// time to test the retrieved access token on the ownCloud server
  697. mOAuthAccessToken = ((OAuth2GetAccessToken)operation).getResultTokenMap().get(OAuth2Constants.KEY_ACCESS_TOKEN);
  698. Log_OC.d(TAG, "Got ACCESS TOKEN: " + mOAuthAccessToken);
  699. mAuthCheckOperation = new ExistenceCheckOperation("", this, false);
  700. WebdavClient client = OwnCloudClientUtils.createOwnCloudClient(Uri.parse(mHostBaseUrl + webdav_path), this);
  701. client.setBearerCredentials(mOAuthAccessToken);
  702. mAuthCheckOperation.execute(client, this, mHandler);
  703. } else {
  704. updateAuthStatusIconAndText(result);
  705. showAuthStatus();
  706. Log_OC.d(TAG, "Access failed: " + result.getLogMessage());
  707. }
  708. }
  709. /**
  710. * Processes the result of the access check performed to try the user credentials.
  711. *
  712. * Creates a new account through the AccountManager.
  713. *
  714. * @param operation Access check performed.
  715. * @param result Result of the operation.
  716. */
  717. private void onAuthorizationCheckFinish(ExistenceCheckOperation operation, RemoteOperationResult result) {
  718. try {
  719. dismissDialog(DIALOG_LOGIN_PROGRESS);
  720. } catch (IllegalArgumentException e) {
  721. // NOTHING TO DO ; can't find out what situation that leads to the exception in this code, but user logs signal that it happens
  722. }
  723. if (result.isSuccess()) {
  724. Log_OC.d(TAG, "Successful access - time to save the account");
  725. if (mAction == ACTION_CREATE) {
  726. createAccount();
  727. } else {
  728. updateToken();
  729. }
  730. finish();
  731. } else {
  732. updateAuthStatusIconAndText(result);
  733. showAuthStatus();
  734. Log_OC.d(TAG, "Access failed: " + result.getLogMessage());
  735. }
  736. }
  737. /**
  738. * Sets the proper response to get that the Account Authenticator that started this activity saves
  739. * a new authorization token for mAccount.
  740. */
  741. private void updateToken() {
  742. Bundle response = new Bundle();
  743. response.putString(AccountManager.KEY_ACCOUNT_NAME, mAccount.name);
  744. response.putString(AccountManager.KEY_ACCOUNT_TYPE, mAccount.type);
  745. boolean isOAuth = mOAuth2Check.isChecked();
  746. if (isOAuth) {
  747. response.putString(AccountManager.KEY_AUTHTOKEN, mOAuthAccessToken);
  748. // the next line is necessary; by now, notifications are calling directly to the AuthenticatorActivity to update, without AccountManager intervention
  749. mAccountMgr.setAuthToken(mAccount, AccountAuthenticator.AUTH_TOKEN_TYPE_ACCESS_TOKEN, mOAuthAccessToken);
  750. } else {
  751. response.putString(AccountManager.KEY_AUTHTOKEN, mPasswordInput.getText().toString());
  752. mAccountMgr.setPassword(mAccount, mPasswordInput.getText().toString());
  753. }
  754. setAccountAuthenticatorResult(response);
  755. }
  756. /**
  757. * Creates a new account through the Account Authenticator that started this activity.
  758. *
  759. * This makes the account permanent.
  760. *
  761. * TODO Decide how to name the OAuth accounts
  762. */
  763. private void createAccount() {
  764. /// create and save new ownCloud account
  765. boolean isOAuth = mOAuth2Check.isChecked();
  766. Uri uri = Uri.parse(mHostBaseUrl);
  767. String username = mUsernameInput.getText().toString().trim();
  768. if (isOAuth) {
  769. username = "OAuth_user" + (new java.util.Random(System.currentTimeMillis())).nextLong();
  770. }
  771. String accountName = username + "@" + uri.getHost();
  772. if (uri.getPort() >= 0) {
  773. accountName += ":" + uri.getPort();
  774. }
  775. mAccount = new Account(accountName, AccountAuthenticator.ACCOUNT_TYPE);
  776. if (isOAuth) {
  777. mAccountMgr.addAccountExplicitly(mAccount, "", null); // with our implementation, the password is never input in the app
  778. } else {
  779. mAccountMgr.addAccountExplicitly(mAccount, mPasswordInput.getText().toString(), null);
  780. }
  781. /// add the new account as default in preferences, if there is none already
  782. Account defaultAccount = AccountUtils.getCurrentOwnCloudAccount(this);
  783. if (defaultAccount == null) {
  784. SharedPreferences.Editor editor = PreferenceManager
  785. .getDefaultSharedPreferences(this).edit();
  786. editor.putString("select_oc_account", accountName);
  787. editor.commit();
  788. }
  789. /// prepare result to return to the Authenticator
  790. // TODO check again what the Authenticator makes with it; probably has the same effect as addAccountExplicitly, but it's not well done
  791. final Intent intent = new Intent();
  792. intent.putExtra(AccountManager.KEY_ACCOUNT_TYPE, AccountAuthenticator.ACCOUNT_TYPE);
  793. intent.putExtra(AccountManager.KEY_ACCOUNT_NAME, mAccount.name);
  794. if (!isOAuth)
  795. intent.putExtra(AccountManager.KEY_AUTHTOKEN, AccountAuthenticator.ACCOUNT_TYPE); // TODO check this; not sure it's right; maybe
  796. intent.putExtra(AccountManager.KEY_USERDATA, username);
  797. if (isOAuth) {
  798. mAccountMgr.setAuthToken(mAccount, AccountAuthenticator.AUTH_TOKEN_TYPE_ACCESS_TOKEN, mOAuthAccessToken);
  799. }
  800. /// add user data to the new account; TODO probably can be done in the last parameter addAccountExplicitly, or in KEY_USERDATA
  801. mAccountMgr.setUserData(mAccount, AccountAuthenticator.KEY_OC_VERSION, mDiscoveredVersion.toString());
  802. mAccountMgr.setUserData(mAccount, AccountAuthenticator.KEY_OC_BASE_URL, mHostBaseUrl);
  803. if (isOAuth)
  804. mAccountMgr.setUserData(mAccount, AccountAuthenticator.KEY_SUPPORTS_OAUTH2, "TRUE"); // TODO this flag should be unnecessary
  805. setAccountAuthenticatorResult(intent.getExtras());
  806. setResult(RESULT_OK, intent);
  807. /// immediately request for the synchronization of the new account
  808. Bundle bundle = new Bundle();
  809. bundle.putBoolean(ContentResolver.SYNC_EXTRAS_MANUAL, true);
  810. ContentResolver.requestSync(mAccount, AccountAuthenticator.AUTHORITY, bundle);
  811. }
  812. /**
  813. * {@inheritDoc}
  814. *
  815. * Necessary to update the contents of the SSL Dialog
  816. *
  817. * TODO move to some common place for all possible untrusted SSL failures
  818. */
  819. @Override
  820. protected void onPrepareDialog(int id, Dialog dialog, Bundle args) {
  821. switch (id) {
  822. case DIALOG_LOGIN_PROGRESS:
  823. case DIALOG_CERT_NOT_SAVED:
  824. case DIALOG_OAUTH2_LOGIN_PROGRESS:
  825. break;
  826. case DIALOG_SSL_VALIDATOR: {
  827. ((SslValidatorDialog)dialog).updateResult(mLastSslUntrustedServerResult);
  828. break;
  829. }
  830. default:
  831. Log_OC.e(TAG, "Incorrect dialog called with id = " + id);
  832. }
  833. }
  834. /**
  835. * {@inheritDoc}
  836. */
  837. @Override
  838. protected Dialog onCreateDialog(int id) {
  839. Dialog dialog = null;
  840. switch (id) {
  841. case DIALOG_LOGIN_PROGRESS: {
  842. /// simple progress dialog
  843. ProgressDialog working_dialog = new ProgressDialog(this);
  844. working_dialog.setMessage(getResources().getString(R.string.auth_trying_to_login));
  845. working_dialog.setIndeterminate(true);
  846. working_dialog.setCancelable(true);
  847. working_dialog
  848. .setOnCancelListener(new DialogInterface.OnCancelListener() {
  849. @Override
  850. public void onCancel(DialogInterface dialog) {
  851. /// TODO study if this is enough
  852. Log_OC.i(TAG, "Login canceled");
  853. if (mOperationThread != null) {
  854. mOperationThread.interrupt();
  855. finish();
  856. }
  857. }
  858. });
  859. dialog = working_dialog;
  860. break;
  861. }
  862. case DIALOG_OAUTH2_LOGIN_PROGRESS: {
  863. ProgressDialog working_dialog = new ProgressDialog(this);
  864. working_dialog.setMessage(String.format("Getting authorization"));
  865. working_dialog.setIndeterminate(true);
  866. working_dialog.setCancelable(true);
  867. working_dialog
  868. .setOnCancelListener(new DialogInterface.OnCancelListener() {
  869. @Override
  870. public void onCancel(DialogInterface dialog) {
  871. Log_OC.i(TAG, "Login canceled");
  872. finish();
  873. }
  874. });
  875. dialog = working_dialog;
  876. break;
  877. }
  878. case DIALOG_SSL_VALIDATOR: {
  879. /// TODO start to use new dialog interface, at least for this (it is a FragmentDialog already)
  880. dialog = SslValidatorDialog.newInstance(this, mLastSslUntrustedServerResult, this);
  881. break;
  882. }
  883. case DIALOG_CERT_NOT_SAVED: {
  884. AlertDialog.Builder builder = new AlertDialog.Builder(this);
  885. builder.setMessage(getResources().getString(R.string.ssl_validator_not_saved));
  886. builder.setCancelable(false);
  887. builder.setPositiveButton(R.string.common_ok, new DialogInterface.OnClickListener() {
  888. @Override
  889. public void onClick(DialogInterface dialog, int which) {
  890. dialog.dismiss();
  891. };
  892. });
  893. dialog = builder.create();
  894. break;
  895. }
  896. default:
  897. Log_OC.e(TAG, "Incorrect dialog called with id = " + id);
  898. }
  899. return dialog;
  900. }
  901. /**
  902. * Starts and activity to open the 'new account' page in the ownCloud web site
  903. *
  904. * @param view 'Account register' button
  905. */
  906. public void onRegisterClick(View view) {
  907. Intent register = new Intent(Intent.ACTION_VIEW, Uri.parse(getString(R.string.url_account_register)));
  908. setResult(RESULT_CANCELED);
  909. startActivity(register);
  910. }
  911. /**
  912. * Updates the content and visibility state of the icon and text associated
  913. * to the last check on the ownCloud server.
  914. */
  915. private void showServerStatus() {
  916. TextView tv = (TextView) findViewById(R.id.server_status_text);
  917. if (mServerStatusIcon == 0 && mServerStatusText == 0) {
  918. tv.setVisibility(View.INVISIBLE);
  919. } else {
  920. tv.setText(mServerStatusText);
  921. tv.setCompoundDrawablesWithIntrinsicBounds(mServerStatusIcon, 0, 0, 0);
  922. tv.setVisibility(View.VISIBLE);
  923. }
  924. }
  925. /**
  926. * Updates the content and visibility state of the icon and text associated
  927. * to the interactions with the OAuth authorization server.
  928. */
  929. private void showAuthStatus() {
  930. if (mAuthStatusIcon == 0 && mAuthStatusText == 0) {
  931. mAuthStatusLayout.setVisibility(View.INVISIBLE);
  932. } else {
  933. mAuthStatusLayout.setText(mAuthStatusText);
  934. mAuthStatusLayout.setCompoundDrawablesWithIntrinsicBounds(mAuthStatusIcon, 0, 0, 0);
  935. mAuthStatusLayout.setVisibility(View.VISIBLE);
  936. }
  937. }
  938. private void showRefreshButton() {
  939. mHostUrlInput.setCompoundDrawablesWithIntrinsicBounds(0, 0, R.drawable.ic_action_refresh_black, 0);
  940. }
  941. private void hideRefreshButton() {
  942. mHostUrlInput.setCompoundDrawablesWithIntrinsicBounds(0, 0, 0, 0);
  943. }
  944. /**
  945. * Called when the refresh button in the input field for ownCloud host is clicked.
  946. *
  947. * Performs a new check on the URL in the input field.
  948. *
  949. * @param view Refresh 'button'
  950. */
  951. public void onRefreshClick(View view) {
  952. checkOcServer();
  953. }
  954. /**
  955. * Called when the eye icon in the password field is clicked.
  956. *
  957. * Toggles the visibility of the password in the field.
  958. *
  959. * @param view 'View password' 'button'
  960. */
  961. public void onViewPasswordClick(View view) {
  962. int selectionStart = mPasswordInput.getSelectionStart();
  963. int selectionEnd = mPasswordInput.getSelectionEnd();
  964. int input_type = mPasswordInput.getInputType();
  965. if ((input_type & InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD) == InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD) {
  966. input_type = InputType.TYPE_CLASS_TEXT
  967. | InputType.TYPE_TEXT_VARIATION_PASSWORD;
  968. } else {
  969. input_type = InputType.TYPE_CLASS_TEXT
  970. | InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD;
  971. }
  972. mPasswordInput.setInputType(input_type);
  973. mPasswordInput.setSelection(selectionStart, selectionEnd);
  974. }
  975. /**
  976. * Called when the checkbox for OAuth authorization is clicked.
  977. *
  978. * Hides or shows the input fields for user & password.
  979. *
  980. * @param view 'View password' 'button'
  981. */
  982. public void onCheckClick(View view) {
  983. CheckBox oAuth2Check = (CheckBox)view;
  984. changeViewByOAuth2Check(oAuth2Check.isChecked());
  985. }
  986. /**
  987. * Changes the visibility of input elements depending upon the kind of authorization
  988. * chosen by the user: basic or OAuth
  989. *
  990. * @param checked 'True' when OAuth is selected.
  991. */
  992. public void changeViewByOAuth2Check(Boolean checked) {
  993. if (checked) {
  994. mOAuthAuthEndpointText.setVisibility(View.VISIBLE);
  995. mOAuthTokenEndpointText.setVisibility(View.VISIBLE);
  996. mUsernameInput.setVisibility(View.GONE);
  997. mPasswordInput.setVisibility(View.GONE);
  998. mViewPasswordButton.setVisibility(View.GONE);
  999. } else {
  1000. mOAuthAuthEndpointText.setVisibility(View.GONE);
  1001. mOAuthTokenEndpointText.setVisibility(View.GONE);
  1002. mUsernameInput.setVisibility(View.VISIBLE);
  1003. mPasswordInput.setVisibility(View.VISIBLE);
  1004. mViewPasswordButton.setVisibility(View.INVISIBLE);
  1005. }
  1006. }
  1007. /**
  1008. * Called from SslValidatorDialog when a new server certificate was correctly saved.
  1009. */
  1010. public void onSavedCertificate() {
  1011. mOperationThread = mOcServerChkOperation.retry(this, mHandler);
  1012. }
  1013. /**
  1014. * Called from SslValidatorDialog when a new server certificate could not be saved
  1015. * when the user requested it.
  1016. */
  1017. @Override
  1018. public void onFailedSavingCertificate() {
  1019. showDialog(DIALOG_CERT_NOT_SAVED);
  1020. }
  1021. /**
  1022. * Called when the 'action' button in an IME is pressed ('enter' in software keyboard).
  1023. *
  1024. * Used to trigger the authorization check when the user presses 'enter' after writing the password.
  1025. */
  1026. @Override
  1027. public boolean onEditorAction(TextView inputField, int actionId, KeyEvent event) {
  1028. if (inputField != null && inputField.equals(mPasswordInput) &&
  1029. actionId == EditorInfo.IME_ACTION_DONE) {
  1030. if (mOkButton.isEnabled()) {
  1031. mOkButton.performClick();
  1032. }
  1033. }
  1034. return false; // always return false to grant that the software keyboard is hidden anyway
  1035. }
  1036. private abstract static class RightDrawableOnTouchListener implements OnTouchListener {
  1037. private int fuzz = 10;
  1038. /**
  1039. * {@inheritDoc}
  1040. */
  1041. @Override
  1042. public boolean onTouch(View view, MotionEvent event) {
  1043. if (event.getAction() == MotionEvent.ACTION_DOWN) {
  1044. Drawable rightDrawable = null;
  1045. if (view instanceof TextView) {
  1046. Drawable[] drawables = ((TextView)view).getCompoundDrawables();
  1047. if (drawables.length > 2) {
  1048. rightDrawable = drawables[2];
  1049. }
  1050. }
  1051. if (rightDrawable != null) {
  1052. final int x = (int) event.getX();
  1053. final int y = (int) event.getY();
  1054. final Rect bounds = rightDrawable.getBounds();
  1055. if (x >= (view.getRight() - bounds.width() - fuzz) && x <= (view.getRight() - view.getPaddingRight() + fuzz)
  1056. && y >= (view.getPaddingTop() - fuzz) && y <= (view.getHeight() - view.getPaddingBottom()) + fuzz) {
  1057. return onDrawableTouch(event);
  1058. }
  1059. }
  1060. }
  1061. return false;
  1062. }
  1063. public abstract boolean onDrawableTouch(final MotionEvent event);
  1064. }
  1065. private class HostUrlWatcher implements TextWatcher {
  1066. @Override
  1067. public void afterTextChanged(Editable s) {
  1068. }
  1069. @Override
  1070. public void beforeTextChanged(CharSequence s, int start, int count, int after) {
  1071. }
  1072. @Override
  1073. public void onTextChanged(CharSequence s, int start, int before, int count) {
  1074. if (mServerCheckedAndValid) {
  1075. mServerCheckedAndValid = false;
  1076. mOkButton.setEnabled(false); // avoids that the 'connect' button can be clicked if the test was previously passed
  1077. }
  1078. }
  1079. }
  1080. }