/* * Copyright (C) 2014 Divide.io * * 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 io.divide.client.android; import android.app.Activity; import android.content.Context; import android.os.Bundle; import io.divide.client.BackendServices; import io.divide.client.BackendUser; import io.divide.client.auth.LoginListener; /** * The AuthUtils activity. * * Called by the AuthUtils and in charge of identifying the user. * * It sends back to the AuthUtils the result. */ public class AuthActivity extends Activity { public static final String EXTRA_TITLE = "title_extra_key"; public static final String EXTRA_ENABLE_ANONYMOUS_LOGIN = "enable_anonymous_login_key"; /** * Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); String title = this.getIntent().getStringExtra(EXTRA_TITLE); if(title == null) title = getApplicationName(this); boolean enableAnonymous = this.getIntent().getBooleanExtra(EXTRA_ENABLE_ANONYMOUS_LOGIN,false); CredentialView credentialView = new CredentialView(this,title); if(enableAnonymous)credentialView.enableAnonymousLogin(); setContentView(credentialView); BackendServices.addLoginListener(new LoginListener() { @Override public void onNext(BackendUser backendUser) { if(backendUser != null){ AuthActivity.this.finish(); } } }); this.closeOptionsMenu(); } private static String getApplicationName(Context context) { int stringId = context.getApplicationInfo().labelRes; return context.getString(stringId); } }