AuthenticatorActivity.java 51 KB

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