/*
* Copyright 2012 GitHub Inc.
*
* 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 com.github.mobile.ui.user;
import static android.content.Intent.FLAG_ACTIVITY_CLEAR_TOP;
import static android.content.Intent.FLAG_ACTIVITY_SINGLE_TOP;
import static com.github.mobile.Intents.EXTRA_USER;
import static com.github.mobile.util.TypefaceUtils.ICON_FOLLOW;
import static com.github.mobile.util.TypefaceUtils.ICON_NEWS;
import static com.github.mobile.util.TypefaceUtils.ICON_PUBLIC;
import static com.github.mobile.util.TypefaceUtils.ICON_WATCH;
import android.content.Intent;
import android.os.Bundle;
import android.text.TextUtils;
import android.widget.ProgressBar;
import com.actionbarsherlock.app.ActionBar;
import com.actionbarsherlock.view.Menu;
import com.actionbarsherlock.view.MenuItem;
import com.github.kevinsawicki.wishlist.ViewUtils;
import com.github.mobile.Intents.Builder;
import com.github.mobile.R.id;
import com.github.mobile.R.layout;
import com.github.mobile.R.menu;
import com.github.mobile.R.string;
import com.github.mobile.core.user.FollowUserTask;
import com.github.mobile.core.user.FollowingUserTask;
import com.github.mobile.core.user.RefreshUserTask;
import com.github.mobile.core.user.UnfollowUserTask;
import com.github.mobile.ui.TabPagerActivity;
import com.github.mobile.util.AvatarLoader;
import com.github.mobile.util.ToastUtils;
import com.google.inject.Inject;
import org.eclipse.egit.github.core.User;
/**
* Activity to view a user's various pages
*/
public class UserViewActivity extends TabPagerActivity<UserPagerAdapter>
implements OrganizationSelectionProvider {
/**
* Create intent for this activity
*
* @param user
* @return intent
*/
public static Intent createIntent(User user) {
return new Builder("user.VIEW").user(user).toIntent();
}
@Inject
private AvatarLoader avatars;
private User user;
private ProgressBar loadingBar;
private boolean isFollowing;
private boolean followingStatusChecked;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
user = (User) getIntent().getSerializableExtra(EXTRA_USER);
loadingBar = finder.find(id.pb_loading);
ActionBar actionBar = getSupportActionBar();
actionBar.setDisplayHomeAsUpEnabled(true);
actionBar.setTitle(user.getLogin());
if (!TextUtils.isEmpty(user.getAvatarUrl()))
configurePager();
else {
ViewUtils.setGone(loadingBar, false);
setGone(true);
new RefreshUserTask(this, user.getLogin()) {
@Override
protected void onSuccess(User fullUser) throws Exception {
super.onSuccess(fullUser);
user = fullUser;
configurePager();
}
@Override
protected void onException(Exception e) throws RuntimeException {
super.onException(e);
ToastUtils.show(UserViewActivity.this,
string.error_person_load);
ViewUtils.setGone(loadingBar, true);
}
}.execute();
}
}
@Override
public boolean onCreateOptionsMenu(Menu optionsMenu) {
getSupportMenuInflater().inflate(menu.user_follow, optionsMenu);
return super.onCreateOptionsMenu(optionsMenu);
}
@Override
public boolean onPrepareOptionsMenu(Menu menu) {
MenuItem followItem = menu.findItem(id.m_follow);
followItem.setVisible(followingStatusChecked);
followItem.setTitle(isFollowing ? string.unfollow : string.follow);
return super.onPrepareOptionsMenu(menu);
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case id.m_follow:
followUser();
return true;
case android.R.id.home:
Intent intent = new Intent(this, HomeActivity.class);
intent.addFlags(FLAG_ACTIVITY_CLEAR_TOP | FLAG_ACTIVITY_SINGLE_TOP);
startActivity(intent);
return true;
default:
return super.onOptionsItemSelected(item);
}
}
private void configurePager() {
avatars.bind(getSupportActionBar(), user);
configureTabPager();
ViewUtils.setGone(loadingBar, true);
setGone(false);
checkFollowingUserStatus();
}
@Override
public User addListener(OrganizationSelectionListener listener) {
return user;
}
@Override
public OrganizationSelectionProvider removeListener(
OrganizationSelectionListener listener) {
return this;
}
@Override
protected UserPagerAdapter createAdapter() {
return new UserPagerAdapter(this);
}
@Override
protected int getContentView() {
return layout.tabbed_progress_pager;
}
@Override
protected String getIcon(int position) {
switch (position) {
case 0:
return ICON_NEWS;
case 1:
return ICON_PUBLIC;
case 2:
return ICON_WATCH;
case 3:
return ICON_FOLLOW;
default:
return super.getIcon(position);
}
}
private void followUser() {
if (isFollowing)
new UnfollowUserTask(this, user.getLogin()) {
@Override
protected void onSuccess(User user) throws Exception {
super.onSuccess(user);
isFollowing = !isFollowing;
}
@Override
protected void onException(Exception e) throws RuntimeException {
super.onException(e);
ToastUtils.show(UserViewActivity.this,
string.error_unfollowing_person);
}
}.start();
else
new FollowUserTask(this, user.getLogin()) {
@Override
protected void onSuccess(User user) throws Exception {
super.onSuccess(user);
isFollowing = !isFollowing;
}
@Override
protected void onException(Exception e) throws RuntimeException {
super.onException(e);
ToastUtils.show(UserViewActivity.this,
string.error_following_person);
}
}.start();
}
private void checkFollowingUserStatus() {
followingStatusChecked = false;
new FollowingUserTask(this, user.getLogin()) {
@Override
protected void onSuccess(Boolean following) throws Exception {
super.onSuccess(following);
isFollowing = following;
followingStatusChecked = true;
invalidateOptionsMenu();
}
}.execute();
}
}