eu.power_switch.gui.fragment.phone.CallEventsFragment.java Source code

Java tutorial

Introduction

Here is the source code for eu.power_switch.gui.fragment.phone.CallEventsFragment.java

Source

/*
 *     PowerSwitch by Max Rosin & Markus Ressel
 *     Copyright (C) 2015  Markus Ressel
 *
 *     This program is free software: you can redistribute it and/or modify
 *     it under the terms of the GNU General Public License as published by
 *     the Free Software Foundation, either version 3 of the License, or
 *     (at your option) any later version.
 *
 *     This program is distributed in the hope that it will be useful,
 *     but WITHOUT ANY WARRANTY; without even the implied warranty of
 *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *     GNU General Public License for more details.
 *
 *     You should have received a copy of the GNU General Public License
 *     along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

package eu.power_switch.gui.fragment.phone;

import android.Manifest;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.content.pm.PackageManager;
import android.os.Bundle;
import android.support.design.widget.FloatingActionButton;
import android.support.design.widget.Snackbar;
import android.support.v4.app.ActivityCompat;
import android.support.v4.content.ContextCompat;
import android.support.v4.content.LocalBroadcastManager;
import android.support.v7.app.AlertDialog;
import android.support.v7.widget.RecyclerView;
import android.support.v7.widget.StaggeredGridLayoutManager;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuInflater;
import android.view.MenuItem;
import android.view.View;
import android.view.ViewGroup;

import java.util.ArrayList;
import java.util.List;

import eu.power_switch.R;
import eu.power_switch.gui.IconicsHelper;
import eu.power_switch.gui.StatusMessageHandler;
import eu.power_switch.gui.adapter.CallRecyclerViewAdapter;
import eu.power_switch.gui.dialog.ConfigureCallEventDialog;
import eu.power_switch.gui.fragment.RecyclerViewFragment;
import eu.power_switch.phone.call.CallEvent;
import eu.power_switch.settings.SmartphonePreferencesHandler;
import eu.power_switch.shared.ThemeHelper;
import eu.power_switch.shared.constants.LocalBroadcastConstants;
import eu.power_switch.shared.constants.PermissionConstants;
import eu.power_switch.shared.log.Log;
import eu.power_switch.shared.permission.PermissionHelper;

/**
 * Fragment holding the Call event list
 * <p/>
 * Created by Markus on 05.04.2016.
 */
public class CallEventsFragment extends RecyclerViewFragment {

    private List<CallEvent> callEvents = new ArrayList<>();
    private CallRecyclerViewAdapter callRecyclerViewAdapter;
    private RecyclerView recyclerViewCalls;
    private BroadcastReceiver broadcastReceiver;
    private FloatingActionButton fab;

    /**
     * Used to notify the apartment geofence page (this) that geofences have changed
     *
     * @param context any suitable context
     */
    public static void sendCallEventsChangedBroadcast(Context context) {
        Intent intent = new Intent(LocalBroadcastConstants.INTENT_CALL_EVENTS_CHANGED);
        LocalBroadcastManager.getInstance(context).sendBroadcast(intent);
    }

    @Override
    public void onCreateViewEvent(LayoutInflater inflater, final ViewGroup container, Bundle savedInstanceState) {
        rootView = inflater.inflate(R.layout.fragment_call_events, container, false);

        setHasOptionsMenu(true);

        recyclerViewCalls = (RecyclerView) rootView.findViewById(R.id.recyclerView);
        callRecyclerViewAdapter = new CallRecyclerViewAdapter(getActivity(), callEvents);
        recyclerViewCalls.setAdapter(callRecyclerViewAdapter);
        StaggeredGridLayoutManager layoutManager = new StaggeredGridLayoutManager(getSpanCount(),
                StaggeredGridLayoutManager.VERTICAL);
        recyclerViewCalls.setLayoutManager(layoutManager);

        final RecyclerViewFragment recyclerViewFragment = this;

        fab = (FloatingActionButton) rootView.findViewById(R.id.add_fab);
        fab.setImageDrawable(IconicsHelper.getAddIcon(getActivity(),
                ContextCompat.getColor(getActivity(), android.R.color.white)));
        fab.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                if (!PermissionHelper.isPhonePermissionAvailable(getContext())) {
                    new AlertDialog.Builder(getContext()).setTitle(R.string.missing_permission)
                            .setMessage(R.string.missing_contacts_permission).setNeutralButton(R.string.close, null)
                            .show();
                    return;
                }

                ConfigureCallEventDialog configureCallEventDialog = new ConfigureCallEventDialog();
                configureCallEventDialog.setTargetFragment(recyclerViewFragment, 0);
                configureCallEventDialog.show(getFragmentManager(), null);
            }
        });

        // BroadcastReceiver to get notifications from background service if room data has changed
        broadcastReceiver = new BroadcastReceiver() {
            @Override
            public void onReceive(Context context, Intent intent) {
                Log.d(this, "received intent: " + intent.getAction());

                switch (intent.getAction()) {
                case LocalBroadcastConstants.INTENT_CALL_EVENTS_CHANGED:
                    refreshCalls();
                    break;
                case LocalBroadcastConstants.INTENT_PERMISSION_CHANGED:
                    int permissionRequestCode = intent.getIntExtra(PermissionConstants.KEY_REQUEST_CODE, 0);
                    int[] result = intent.getIntArrayExtra(PermissionConstants.KEY_RESULTS);

                    if (permissionRequestCode == PermissionConstants.REQUEST_CODE_PHONE_PERMISSION) {
                        boolean allGranted = true;
                        for (int i = 0; i < result.length; i++) {
                            allGranted &= result[i] == PackageManager.PERMISSION_GRANTED;
                        }

                        if (allGranted) {
                            StatusMessageHandler.showInfoMessage(getRecyclerView(), R.string.permission_granted,
                                    Snackbar.LENGTH_SHORT);

                            sendCallEventsChangedBroadcast(context);
                        } else {
                            StatusMessageHandler.showPermissionMissingMessage(getActivity(), getRecyclerView(),
                                    Manifest.permission.READ_PHONE_STATE, Manifest.permission.READ_CONTACTS);
                        }
                    }
                    break;
                }
            }
        };
    }

    @Override
    protected void onInitialized() {
        if (!PermissionHelper.isPhonePermissionAvailable(getContext())
                || !PermissionHelper.isContactPermissionAvailable(getContext())) {
            showEmpty();
            StatusMessageHandler.showPermissionMissingMessage(getActivity(), getRecyclerView(),
                    Manifest.permission.READ_PHONE_STATE, Manifest.permission.READ_CONTACTS);
        } else {
            refreshCalls();
        }
    }

    private void requestPhonePermission() {
        if (ActivityCompat.shouldShowRequestPermissionRationale(getActivity(),
                Manifest.permission.READ_PHONE_STATE)) {
            // Provide an additional rationale to the user if the permission was not granted
            // and the user would benefit from additional context for the use of the permission.
            // For example if the user has previously denied the permission.
            Log.d("Displaying phone permission rationale to provide additional context.");

            StatusMessageHandler.showPermissionMissingMessage(getActivity(), getRecyclerView(),
                    Manifest.permission.READ_PHONE_STATE);
        } else {
            Log.d("Displaying default phone permission dialog to request permission");
            ActivityCompat.requestPermissions(getActivity(),
                    new String[] { Manifest.permission.READ_PHONE_STATE, Manifest.permission.READ_CONTACTS },
                    PermissionConstants.REQUEST_CODE_PHONE_PERMISSION);
        }
    }

    private void refreshCalls() {
        Log.d(this, "refreshCalls");
        updateListContent();
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem menuItem) {
        if (super.onOptionsItemSelected(menuItem)) {
            return true;
        }

        switch (menuItem.getItemId()) {
        case R.id.create_geofence:
            break;
        default:
            break;
        }

        return super.onOptionsItemSelected(menuItem);
    }

    @Override
    public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
        inflater.inflate(R.menu.apartment_geofences_fragment_menu, menu);
        final int color = ThemeHelper.getThemeAttrColor(getActivity(), android.R.attr.textColorPrimary);
        menu.findItem(R.id.create_geofence).setIcon(IconicsHelper.getAddIcon(getActivity(), color));

        if (!SmartphonePreferencesHandler.getUseOptionsMenuInsteadOfFAB()) {
            menu.findItem(R.id.create_geofence).setVisible(false).setEnabled(false);
        }
    }

    @Override
    public void onStart() {
        super.onStart();
        IntentFilter intentFilter = new IntentFilter();
        intentFilter.addAction(LocalBroadcastConstants.INTENT_CALL_EVENTS_CHANGED);
        intentFilter.addAction(LocalBroadcastConstants.INTENT_PERMISSION_CHANGED);
        LocalBroadcastManager.getInstance(getActivity()).registerReceiver(broadcastReceiver, intentFilter);
    }

    @Override
    public void onResume() {
        super.onResume();
        if (SmartphonePreferencesHandler.getUseOptionsMenuInsteadOfFAB()) {
            fab.setVisibility(View.GONE);
        } else {
            fab.setVisibility(View.VISIBLE);
        }
    }

    @Override
    public void onStop() {
        LocalBroadcastManager.getInstance(getActivity()).unregisterReceiver(broadcastReceiver);
        super.onStop();
    }

    @Override
    public RecyclerView getRecyclerView() {
        return recyclerViewCalls;
    }

    @Override
    public RecyclerView.Adapter getRecyclerViewAdapter() {
        return callRecyclerViewAdapter;
    }

    @Override
    protected int getSpanCount() {
        return getResources().getInteger(R.integer.geofence_grid_span_count);
    }

    @Override
    public List refreshListData() throws Exception {
        callEvents.clear();

        //        if (SmartphonePreferencesHandler.getPlayStoreMode()) {
        //            PlayStoreModeDataModel playStoreModeDataModel = new PlayStoreModeDataModel(getActivity());
        //            geofences.addAll(playStoreModeDataModel.getCustomGeofences());
        //        } else {

        //        callEvents = DatabaseHandler.getAllCallEvents();

        return callEvents;
    }
}