AuthenticatorActivity.java 51 KB

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