VancedMicroG/src/org/microg/gms/auth/login/LoginActivity.java

257 lines
10 KiB
Java
Raw Normal View History

2015-02-01 22:27:46 +00:00
/*
* Copyright 2013-2015 µg Project Team
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.microg.gms.auth.login;
import android.accounts.Account;
import android.accounts.AccountManager;
import android.content.Context;
import android.graphics.Color;
import android.net.Uri;
import android.os.Build;
import android.os.Bundle;
import android.util.Log;
import android.view.KeyEvent;
import android.view.View;
import android.view.ViewGroup;
import android.webkit.CookieManager;
import android.webkit.JavascriptInterface;
import android.webkit.ValueCallback;
import android.webkit.WebSettings;
import android.webkit.WebView;
import android.webkit.WebViewClient;
import android.widget.RelativeLayout;
import com.google.android.gms.R;
2015-02-03 22:08:55 +00:00
import org.microg.gms.auth.AuthManager;
import org.microg.gms.auth.AuthRequest;
2015-02-01 22:27:46 +00:00
import org.microg.gms.auth.AuthResponse;
2015-02-03 22:08:55 +00:00
import org.microg.gms.common.Constants;
import org.microg.gms.common.HttpFormClient;
2015-02-03 22:08:55 +00:00
import org.microg.gms.common.Utils;
2015-03-09 02:00:14 +00:00
import org.microg.gms.people.PeopleManager;
2015-02-01 22:27:46 +00:00
import java.util.Locale;
2015-03-09 23:06:49 +00:00
import static org.microg.gms.common.Constants.GMS_PACKAGE_NAME;
import static org.microg.gms.common.Constants.GMS_PACKAGE_SIGNATURE_SHA1;
2015-02-07 19:56:49 +00:00
public class LoginActivity extends AssistantActivity {
2015-02-01 22:27:46 +00:00
public static final String TMPL_NEW_ACCOUNT = "new_account";
public static final String EXTRA_TMPL = "tmpl";
2015-02-03 22:08:55 +00:00
public static final String EXTRA_EMAIL = "email";
public static final String EXTRA_TOKEN = "masterToken";
2015-02-01 22:27:46 +00:00
private static final String TAG = "GmsAuthLoginBrowser";
private static final String EMBEDDED_SETUP_URL = "https://accounts.google.com/EmbeddedSetup";
private static final String MAGIC_USER_AGENT = " MinuteMaid";
private static final String COOKIE_OAUTH_TOKEN = "oauth_token";
private WebView webView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
webView = createWebView(this);
webView.addJavascriptInterface(new JsBridge(), "mm");
((ViewGroup) findViewById(R.id.auth_root)).addView(webView);
webView.setWebViewClient(new WebViewClient() {
@Override
public void onPageFinished(WebView view, String url) {
if ("close".equals(Uri.parse(url).getFragment()))
closeWeb();
}
});
2015-02-03 22:08:55 +00:00
if (getIntent().hasExtra(EXTRA_TOKEN)) {
if (getIntent().hasExtra(EXTRA_EMAIL)) {
AccountManager accountManager = AccountManager.get(LoginActivity.this);
Account account = new Account(getIntent().getStringExtra(EXTRA_EMAIL), "com.google");
accountManager.addAccountExplicitly(account, getIntent().getStringExtra(EXTRA_TOKEN), null);
retrieveGmsToken(account);
} else {
retrieveRtToken(getIntent().getStringExtra(EXTRA_TOKEN));
}
2015-02-01 22:27:46 +00:00
} else {
2015-02-03 22:08:55 +00:00
CookieManager.getInstance().setAcceptCookie(true);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
CookieManager.getInstance().removeAllCookies(new ValueCallback<Boolean>() {
@Override
public void onReceiveValue(Boolean value) {
load();
}
});
} else {
//noinspection deprecation
CookieManager.getInstance().removeAllCookie();
load();
}
2015-02-01 22:27:46 +00:00
}
}
private static WebView createWebView(Context context) {
WebView webView = new WebView(context);
webView.setVisibility(View.INVISIBLE);
webView.setLayoutParams(new RelativeLayout.LayoutParams(
ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT));
webView.setBackgroundColor(Color.TRANSPARENT);
webView.setOnLongClickListener(new View.OnLongClickListener() {
@Override
public boolean onLongClick(View v) {
return true;
}
});
prepareWebViewSettings(webView.getSettings());
return webView;
}
private static void prepareWebViewSettings(WebSettings settings) {
settings.setUserAgentString(settings.getUserAgentString() + MAGIC_USER_AGENT);
settings.setJavaScriptEnabled(true);
settings.setSupportMultipleWindows(false);
settings.setSaveFormData(false);
settings.setAllowFileAccess(false);
settings.setDatabaseEnabled(false);
settings.setNeedInitialFocus(false);
settings.setUseWideViewPort(false);
settings.setSupportZoom(false);
settings.setJavaScriptCanOpenWindowsAutomatically(false);
}
private void load() {
2015-02-03 22:08:55 +00:00
String tmpl = getIntent().hasExtra(EXTRA_TMPL) ? getIntent().getStringExtra(EXTRA_TMPL) : TMPL_NEW_ACCOUNT;
webView.loadUrl(buildUrl(tmpl, Utils.getLocale(this)));
2015-02-01 22:27:46 +00:00
}
private void closeWeb() {
runOnUiThread(new Runnable() {
@Override
public void run() {
webView.setVisibility(View.INVISIBLE);
}
});
String cookies = CookieManager.getInstance().getCookie(EMBEDDED_SETUP_URL);
String[] temp = cookies.split(";");
for (String ar1 : temp) {
if (ar1.trim().startsWith(COOKIE_OAUTH_TOKEN + "=")) {
String[] temp1 = ar1.split("=");
2015-02-03 22:08:55 +00:00
retrieveRtToken(temp1[1]);
2015-02-01 22:27:46 +00:00
}
}
// TODO: Error message
}
2015-02-03 22:08:55 +00:00
private void retrieveRtToken(String oAuthToken) {
new AuthRequest().fromContext(this)
.appIsGms()
.service("ac2dm")
.token(oAuthToken).isAccessToken()
.addAccount()
.getAccountId()
.systemPartition()
.hasPermission()
.droidguardResults(null /*TODO*/)
.getResponseAsync(new HttpFormClient.Callback<AuthResponse>() {
2015-02-01 22:27:46 +00:00
@Override
public void onResponse(AuthResponse response) {
AccountManager accountManager = AccountManager.get(LoginActivity.this);
Account account = new Account(response.email, "com.google");
if (accountManager.addAccountExplicitly(account, response.token, null)) {
accountManager.setAuthToken(account, "SID", response.Sid);
accountManager.setAuthToken(account, "LSID", response.LSid);
2015-02-03 22:08:55 +00:00
accountManager.setUserData(account, "flags", "1");
accountManager.setUserData(account, "services", response.services);
accountManager.setUserData(account, "oauthAccessToken", "1");
accountManager.setUserData(account, "firstName", response.firstName);
accountManager.setUserData(account, "lastName", response.lastName);
retrieveGmsToken(account);
2015-02-01 22:27:46 +00:00
setResult(RESULT_OK);
} else {
// TODO: Error message
Log.w(TAG, "Account NOT created!");
setResult(RESULT_CANCELED);
}
}
@Override
public void onException(Exception exception) {
Log.w(TAG, "onException: " + exception);
}
});
}
2015-02-03 22:08:55 +00:00
private void retrieveGmsToken(final Account account) {
2015-03-09 23:06:49 +00:00
final AuthManager authManager = new AuthManager(this, account.name, GMS_PACKAGE_NAME, "ac2dm");
authManager.setPermitted(true);
2015-02-03 22:08:55 +00:00
new AuthRequest().fromContext(this)
.appIsGms()
2015-03-09 23:06:49 +00:00
.service(authManager.getService())
2015-02-03 22:08:55 +00:00
.email(account.name)
.token(AccountManager.get(this).getPassword(account))
.systemPartition()
.hasPermission()
.addAccount()
.getAccountId()
.getResponseAsync(new HttpFormClient.Callback<AuthResponse>() {
2015-02-03 22:08:55 +00:00
@Override
public void onResponse(AuthResponse response) {
2015-03-09 23:06:49 +00:00
authManager.storeResponse(response);
2015-03-09 02:00:14 +00:00
PeopleManager.loadUserInfo(LoginActivity.this, account);
2015-02-03 22:08:55 +00:00
finish();
}
@Override
public void onException(Exception exception) {
Log.w(TAG, "onException: " + exception);
}
});
2015-02-01 22:27:46 +00:00
}
@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
2015-02-03 22:08:55 +00:00
if ((keyCode == KeyEvent.KEYCODE_BACK) && webView.canGoBack() && webView.getVisibility() == View.VISIBLE) {
2015-02-01 22:27:46 +00:00
webView.goBack();
return true;
}
return super.onKeyDown(keyCode, event);
}
private static String buildUrl(String tmpl, Locale locale) {
return Uri.parse(EMBEDDED_SETUP_URL).buildUpon()
.appendQueryParameter("source", "android")
.appendQueryParameter("xoauth_display_name", "Android Device")
.appendQueryParameter("lang", locale.getLanguage())
.appendQueryParameter("cc", locale.getCountry().toLowerCase())
.appendQueryParameter("langCountry", locale.toString().toLowerCase())
.appendQueryParameter("hl", locale.toString().replace("_", "-"))
.appendQueryParameter("tmpl", tmpl)
.build().toString();
}
private class JsBridge {
@JavascriptInterface
public void showView() {
runOnUiThread(new Runnable() {
@Override
public void run() {
webView.setVisibility(View.VISIBLE);
}
});
}
}
}