com.ninetwozero.battlelog.fragments.ProfileOverviewFragment.java Source code

Java tutorial

Introduction

Here is the source code for com.ninetwozero.battlelog.fragments.ProfileOverviewFragment.java

Source

/*
This file is part of BF3 Battlelog
    
BF3 Battlelog 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.
    
BF3 Battlelog 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.
 */

package com.ninetwozero.battlelog.fragments;

import android.app.Activity;
import android.app.ProgressDialog;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.graphics.BitmapFactory;
import android.os.AsyncTask;
import android.os.Bundle;
import android.preference.PreferenceManager;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.RelativeLayout;
import android.widget.TextView;
import android.widget.Toast;

import com.ninetwozero.battlelog.PlatoonActivity;
import com.ninetwozero.battlelog.ProfileActivity;
import com.ninetwozero.battlelog.R;
import com.ninetwozero.battlelog.asynctasks.AsyncFriendRemove;
import com.ninetwozero.battlelog.asynctasks.AsyncFriendRequest;
import com.ninetwozero.battlelog.datatypes.DefaultFragment;
import com.ninetwozero.battlelog.datatypes.PlatoonData;
import com.ninetwozero.battlelog.datatypes.ProfileData;
import com.ninetwozero.battlelog.datatypes.ProfileInformation;
import com.ninetwozero.battlelog.datatypes.WebsiteHandlerException;
import com.ninetwozero.battlelog.misc.CacheHandler;
import com.ninetwozero.battlelog.misc.Constants;
import com.ninetwozero.battlelog.misc.PublicUtils;
import com.ninetwozero.battlelog.misc.SessionKeeper;
import com.ninetwozero.battlelog.misc.WebsiteHandler;

public class ProfileOverviewFragment extends Fragment implements DefaultFragment {

    // Attributes
    private Context context;
    private LayoutInflater layoutInflater;
    private SharedPreferences sharedPreferences;

    // Misc
    private ProfileData profileData;
    private ProfileInformation profileInformation;
    private long selectedPersona;
    private int selectedPosition;
    private boolean hasPostingRights;

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {

        // Set our attributes
        context = getActivity();
        layoutInflater = inflater;
        sharedPreferences = PreferenceManager.getDefaultSharedPreferences(context);

        // Let's inflate & return the view
        View view = layoutInflater.inflate(R.layout.tab_content_profile_overview, container, false);

        // Init the fragment
        initFragment(view);

        // Let's return the view
        return view;

    }

    @Override
    public void onResume() {

        super.onResume();
        new AsyncCache().execute();

    }

    public void initFragment(View v) {

        // Let's see if we're allowed to post (before we've gotten the data
        // atleast)
        hasPostingRights = false;

    }

    public final void showProfile(ProfileInformation data) {

        // Do we have valid data?
        if (data == null) {
            return;
        }

        // Get activity
        Activity activity = getActivity();
        if (activity == null) {
            return;
        }

        // Let's start drawing the... layout
        ((TextView) activity.findViewById(R.id.text_username)).setText(data.getUsername());

        // When did was the users last login?
        if (data.isPlaying() && data.isOnline()) {

            ((TextView) activity.findViewById(R.id.text_online)).setText(

                    getString(R.string.info_profile_playing).replace(

                            "{server name}", data.getCurrentServer()

                    )

            );

        } else if (data.isOnline()) {

            ((TextView) activity.findViewById(R.id.text_online)).setText(R.string.info_profile_online);

        } else {

            ((TextView) activity.findViewById(R.id.text_online)).setText(data.getLastLogin(context));

        }

        // Is the status ""?
        if (!data.getStatusMessage().equals("")) {

            // Set the status
            ((TextView) activity.findViewById(R.id.text_status)).setText(data.getStatusMessage());
            ((TextView) activity.findViewById(R.id.text_status_date)).setText(
                    PublicUtils.getRelativeDate(context, data.getStatusMessageChanged(), R.string.info_lastupdate));

        } else {

            // Hide the view
            ((RelativeLayout) activity.findViewById(R.id.wrap_status)).setVisibility(View.GONE);

        }

        // Do we have a presentation?
        if (data.getPresentation() != null && !data.getPresentation().equals("")) {

            ((TextView) activity.findViewById(R.id.text_presentation)).setText(data.getPresentation());

        } else {

            ((TextView) activity.findViewById(R.id.text_presentation)).setText(R.string.info_profile_empty_pres);

        }

        // Any platoons?
        if (data.getNumPlatoons() > 0) {

            // Init
            View convertView;
            LinearLayout platoonWrapper = (LinearLayout) activity.findViewById(R.id.list_platoons);

            // Clear the platoonWrapper
            ((TextView) activity.findViewById(R.id.text_platoon)).setVisibility(View.GONE);
            platoonWrapper.removeAllViews();

            // Iterate over the platoons
            for (PlatoonData currentPlatoon : data.getPlatoons()) {

                // Does it already exist?
                if (platoonWrapper.findViewWithTag(currentPlatoon) != null) {
                    continue;
                }

                // Recycle
                convertView = layoutInflater.inflate(R.layout.list_item_platoon, platoonWrapper, false);

                // Set the TextViews
                ((TextView) convertView.findViewById(R.id.text_name)).setText(currentPlatoon.getName());
                ((TextView) convertView.findViewById(R.id.text_tag)).setText("[" + currentPlatoon.getTag() + "]");
                ((TextView) convertView.findViewById(R.id.text_members))
                        .setText(currentPlatoon.getCountMembers() + "");
                ((TextView) convertView.findViewById(R.id.text_fans)).setText(currentPlatoon.getCountFans() + "");

                // Almost forgot - we got a Bitmap too!
                ((ImageView) convertView.findViewById(R.id.image_badge)).setImageBitmap(

                        BitmapFactory.decodeFile(PublicUtils.getCachePath(context) + currentPlatoon.getImage())

                );

                // Store it in the tag
                convertView.setTag(currentPlatoon);
                convertView.setOnClickListener(

                        new OnClickListener() {

                            @Override
                            public void onClick(View v) {

                                // On-click
                                startActivity(

                                        new Intent(context, PlatoonActivity.class).putExtra(

                                                "platoon", (PlatoonData) v.getTag()

                                        )

                        );

                            }

                        }

                );
                // Add it!
                platoonWrapper.addView(convertView);

            }

        } else {

            ((LinearLayout) activity.findViewById(R.id.list_platoons)).removeAllViews();
            ((TextView) activity.findViewById(R.id.text_platoon)).setVisibility(View.VISIBLE);

        }

        // Set the username
        ((TextView) activity.findViewById(R.id.text_username)).setText(data.getUsername());
    }

    public class AsyncCache extends AsyncTask<Void, Void, Boolean> {

        // Attributes
        private ProgressDialog progressDialog;

        @Override
        protected void onPreExecute() {

            // Do we?
            this.progressDialog = new ProgressDialog(context);
            this.progressDialog.setTitle(context.getString(R.string.general_wait));
            this.progressDialog.setMessage(context.getString(R.string.general_downloading));
            this.progressDialog.show();

        }

        @Override
        protected Boolean doInBackground(Void... arg0) {

            try {

                // Get...
                profileInformation = CacheHandler.Profile.select(context, profileData.getId());

                // We got one?!
                return (profileInformation != null);

            } catch (Exception ex) {

                ex.printStackTrace();
                return false;

            }

        }

        @Override
        protected void onPostExecute(Boolean result) {
            if (result) {

                // Siiiiiiiiilent refresh
                new AsyncRefresh(SessionKeeper.getProfileData().getId()).execute();
                if (this.progressDialog != null) {
                    this.progressDialog.dismiss();
                }

                // Set the data for the profile
                showProfile(profileInformation);

                // Set the profileData...
                profileData.setPersona(profileInformation.getAllPersonas());

                // ...and then send it to the stats
                sendToStats(profileData);

            } else {

                new AsyncRefresh(SessionKeeper.getProfileData().getId(), progressDialog).execute();

            }

            // Get back here!
            return;

        }

    }

    public class AsyncRefresh extends AsyncTask<Void, Void, Boolean> {

        // Attributes
        private long activeProfileId;
        private ProgressDialog progressDialog;

        public AsyncRefresh(long pId) {

            this.activeProfileId = pId;
            this.progressDialog = null;

        }

        public AsyncRefresh(long pId, ProgressDialog pDialog) {

            this.activeProfileId = pId;
            this.progressDialog = pDialog;

        }

        @Override
        protected void onPreExecute() {
        }

        @Override
        protected Boolean doInBackground(Void... arg0) {

            try {

                // Let's try something
                if (profileData.getNumPersonas() == 0) {

                    profileData = WebsiteHandler.getPersonaIdFromProfile(profileData.getId());

                }

                // Let's get the personas!
                profileInformation = WebsiteHandler.getProfileInformationForUser(

                        context, profileData, activeProfileId

                );

                // ...and then send it to the stats
                sendToStats(profileData);

                return (profileInformation != null);

            } catch (WebsiteHandlerException ex) {

                ex.printStackTrace();
                return false;

            }

        }

        @Override
        protected void onPostExecute(Boolean result) {

            // Fail?
            if (!result) {

                Toast.makeText(context, R.string.general_no_data, Toast.LENGTH_SHORT).show();

            }

            // Do we have a dialog?
            if (progressDialog != null) {

                if (progressDialog.isShowing()) {

                    progressDialog.dismiss();
                    progressDialog = null;

                }

            }

            // Set the data
            showProfile(profileInformation);
            setFeedPermission(profileInformation.isFriend() || hasPostingRights);

            // Get back here!
            return;

        }

    }

    public void reload() {

        // ASYNC!!!
        new AsyncRefresh(SessionKeeper.getProfileData().getId()).execute();

    }

    public void sendToStats(ProfileData p) {

        ((ProfileActivity) context).openStats(p);

    }

    public void setFeedPermission(boolean c) {

        ((ProfileActivity) context).setFeedPermission(c);

    }

    public void setProfileData(ProfileData p) {

        profileData = p;
    }

    public Menu prepareOptionsMenu(Menu menu) {

        // Is it null?
        if (profileInformation == null) {
            return menu;
        }
        if (profileInformation.getAllowFriendRequests()) {

            if (profileInformation.isFriend()) {

                ((MenuItem) menu.findItem(R.id.option_friendadd)).setVisible(false);
                ((MenuItem) menu.findItem(R.id.option_frienddel)).setVisible(true);

            } else {

                ((MenuItem) menu.findItem(R.id.option_friendadd)).setVisible(true);
                ((MenuItem) menu.findItem(R.id.option_frienddel)).setVisible(false);
            }

        } else {

            ((MenuItem) menu.findItem(R.id.option_friendadd)).setVisible(false);
            ((MenuItem) menu.findItem(R.id.option_frienddel)).setVisible(false);

        }

        ((MenuItem) menu.findItem(R.id.option_compare)).setVisible(false);

        return menu;

    }

    public boolean handleSelectedOption(MenuItem item) {

        if (item.getItemId() == R.id.option_friendadd) {

            new AsyncFriendRequest(context, profileData.getId()).execute(

                    sharedPreferences.getString(

                            Constants.SP_BL_PROFILE_CHECKSUM, "")

            );

        } else if (item.getItemId() == R.id.option_frienddel) {

            new AsyncFriendRemove(context, profileData.getId()).execute(

                    sharedPreferences.getString(

                            Constants.SP_BL_PROFILE_CHECKSUM, "")

            );

        }

        return true;

    }

}