2015-09-29 20:14:22 +00:00
|
|
|
package org.thoughtcrime.securesms;
|
|
|
|
|
|
|
|
import android.app.Notification;
|
|
|
|
import android.app.PendingIntent;
|
|
|
|
import android.content.BroadcastReceiver;
|
|
|
|
import android.content.Context;
|
|
|
|
import android.content.Intent;
|
|
|
|
import android.graphics.drawable.ColorDrawable;
|
|
|
|
import android.os.Bundle;
|
|
|
|
import android.support.annotation.NonNull;
|
2017-09-04 02:44:33 +00:00
|
|
|
import android.support.annotation.Nullable;
|
2015-09-29 20:14:22 +00:00
|
|
|
import android.support.annotation.StringRes;
|
|
|
|
import android.support.v4.app.NotificationCompat;
|
|
|
|
import android.support.v4.view.ViewPager;
|
|
|
|
import android.util.Log;
|
|
|
|
import android.view.View;
|
|
|
|
import android.view.View.OnClickListener;
|
|
|
|
|
|
|
|
import com.melnykov.fab.FloatingActionButton;
|
|
|
|
import com.nineoldandroids.animation.ArgbEvaluator;
|
|
|
|
|
|
|
|
import org.thoughtcrime.securesms.IntroPagerAdapter.IntroPage;
|
|
|
|
import org.thoughtcrime.securesms.util.ServiceUtil;
|
|
|
|
import org.thoughtcrime.securesms.util.TextSecurePreferences;
|
|
|
|
import org.thoughtcrime.securesms.util.Util;
|
|
|
|
import org.thoughtcrime.securesms.util.ViewUtil;
|
2016-03-23 17:34:41 +00:00
|
|
|
import org.whispersystems.libsignal.util.guava.Optional;
|
2015-09-29 20:14:22 +00:00
|
|
|
|
|
|
|
import java.util.Collections;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
public class ExperienceUpgradeActivity extends BaseActionBarActivity {
|
|
|
|
private static final String TAG = ExperienceUpgradeActivity.class.getSimpleName();
|
2017-09-04 02:44:33 +00:00
|
|
|
private static final String DISMISS_ACTION = "org.thoughtcrime.securesms.ExperienceUpgradeActivity.DISMISS_ACTION";
|
2015-09-29 20:14:22 +00:00
|
|
|
private static final int NOTIFICATION_ID = 1339;
|
|
|
|
|
|
|
|
private enum ExperienceUpgrade {
|
2015-10-01 22:21:21 +00:00
|
|
|
SIGNAL_REBRANDING(157,
|
2015-09-29 20:14:22 +00:00
|
|
|
new IntroPage(0xFF2090EA,
|
|
|
|
BasicIntroFragment.newInstance(R.drawable.splash_logo,
|
|
|
|
R.string.ExperienceUpgradeActivity_welcome_to_signal_dgaf,
|
|
|
|
R.string.ExperienceUpgradeActivity_textsecure_is_now_called_signal)),
|
|
|
|
R.string.ExperienceUpgradeActivity_welcome_to_signal_excited,
|
|
|
|
R.string.ExperienceUpgradeActivity_textsecure_is_now_signal,
|
2017-09-04 02:44:33 +00:00
|
|
|
R.string.ExperienceUpgradeActivity_textsecure_is_now_signal_long,
|
|
|
|
null),
|
2017-03-06 20:32:09 +00:00
|
|
|
VIDEO_CALLS(245,
|
|
|
|
new IntroPage(0xFF2090EA,
|
|
|
|
BasicIntroFragment.newInstance(R.drawable.video_splash,
|
|
|
|
R.string.ExperienceUpgradeActivity_say_hello_to_video_calls,
|
|
|
|
R.string.ExperienceUpgradeActivity_signal_now_supports_secure_video_calls)),
|
|
|
|
R.string.ExperienceUpgradeActivity_say_hello_to_video_calls,
|
|
|
|
R.string.ExperienceUpgradeActivity_signal_now_supports_secure_video_calling,
|
2017-09-04 02:44:33 +00:00
|
|
|
R.string.ExperienceUpgradeActivity_signal_now_supports_secure_video_calling_long,
|
|
|
|
null),
|
|
|
|
PROFILES(286,
|
|
|
|
new IntroPage(0xFF2090EA,
|
|
|
|
BasicIntroFragment.newInstance(R.drawable.profile_splash,
|
|
|
|
R.string.ExperienceUpgradeActivity_ready_for_your_closeup,
|
|
|
|
R.string.ExperienceUpgradeActivity_now_you_can_share_a_profile_photo_and_name_with_friends_on_signal)),
|
|
|
|
R.string.ExperienceUpgradeActivity_signal_profiles_are_here,
|
|
|
|
R.string.ExperienceUpgradeActivity_now_you_can_share_a_profile_photo_and_name_with_friends_on_signal,
|
|
|
|
R.string.ExperienceUpgradeActivity_now_you_can_share_a_profile_photo_and_name_with_friends_on_signal,
|
2017-09-27 22:11:44 +00:00
|
|
|
CreateProfileActivity.class),
|
|
|
|
READ_RECEIPTS(299,
|
|
|
|
new IntroPage(0xFF2090EA,
|
|
|
|
ReadReceiptsIntroFragment.newInstance()),
|
|
|
|
R.string.ExperienceUpgradeActivity_signal_profiles_are_here,
|
|
|
|
R.string.ExperienceUpgradeActivity_now_you_can_share_a_profile_photo_and_name_with_friends_on_signal,
|
|
|
|
R.string.ExperienceUpgradeActivity_now_you_can_share_a_profile_photo_and_name_with_friends_on_signal,
|
|
|
|
null);
|
2015-09-29 20:14:22 +00:00
|
|
|
|
|
|
|
private int version;
|
|
|
|
private List<IntroPage> pages;
|
|
|
|
private @StringRes int notificationTitle;
|
|
|
|
private @StringRes int notificationText;
|
|
|
|
private @StringRes int notificationBigText;
|
2017-09-04 02:44:33 +00:00
|
|
|
private @Nullable Class nextIntent;
|
2015-09-29 20:14:22 +00:00
|
|
|
|
|
|
|
ExperienceUpgrade(int version,
|
|
|
|
@NonNull List<IntroPage> pages,
|
|
|
|
@StringRes int notificationTitle,
|
|
|
|
@StringRes int notificationText,
|
2017-09-04 02:44:33 +00:00
|
|
|
@StringRes int notificationBigText,
|
|
|
|
@Nullable Class nextIntent)
|
2015-09-29 20:14:22 +00:00
|
|
|
{
|
2017-09-04 02:44:33 +00:00
|
|
|
this.version = version;
|
|
|
|
this.pages = pages;
|
|
|
|
this.notificationTitle = notificationTitle;
|
|
|
|
this.notificationText = notificationText;
|
2015-09-29 20:14:22 +00:00
|
|
|
this.notificationBigText = notificationBigText;
|
2017-09-04 02:44:33 +00:00
|
|
|
this.nextIntent = nextIntent;
|
2015-09-29 20:14:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ExperienceUpgrade(int version,
|
|
|
|
@NonNull IntroPage page,
|
|
|
|
@StringRes int notificationTitle,
|
|
|
|
@StringRes int notificationText,
|
2017-09-04 02:44:33 +00:00
|
|
|
@StringRes int notificationBigText,
|
|
|
|
@Nullable Class nextIntent)
|
2015-09-29 20:14:22 +00:00
|
|
|
{
|
2017-09-04 02:44:33 +00:00
|
|
|
this(version, Collections.singletonList(page), notificationTitle, notificationText, notificationBigText, nextIntent);
|
2015-09-29 20:14:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public int getVersion() {
|
|
|
|
return version;
|
|
|
|
}
|
|
|
|
|
|
|
|
public List<IntroPage> getPages() {
|
|
|
|
return pages;
|
|
|
|
}
|
|
|
|
|
|
|
|
public IntroPage getPage(int i) {
|
|
|
|
return pages.get(i);
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getNotificationTitle() {
|
|
|
|
return notificationTitle;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getNotificationText() {
|
|
|
|
return notificationText;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getNotificationBigText() {
|
|
|
|
return notificationBigText;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
|
|
super.onCreate(savedInstanceState);
|
|
|
|
setStatusBarColor(getResources().getColor(R.color.signal_primary_dark));
|
|
|
|
|
2015-10-01 22:21:21 +00:00
|
|
|
final Optional<ExperienceUpgrade> upgrade = getExperienceUpgrade(this);
|
2015-09-29 20:14:22 +00:00
|
|
|
if (!upgrade.isPresent()) {
|
2015-10-01 22:21:21 +00:00
|
|
|
onContinue(upgrade);
|
2015-09-29 20:14:22 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
setContentView(R.layout.experience_upgrade_activity);
|
2015-11-05 18:45:39 +00:00
|
|
|
final ViewPager pager = ViewUtil.findById(this, R.id.pager);
|
|
|
|
final FloatingActionButton fab = ViewUtil.findById(this, R.id.fab);
|
2015-09-29 20:14:22 +00:00
|
|
|
|
|
|
|
pager.setAdapter(new IntroPagerAdapter(getSupportFragmentManager(), upgrade.get().getPages()));
|
|
|
|
|
|
|
|
fab.setOnClickListener(new OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
2015-10-01 22:21:21 +00:00
|
|
|
onContinue(upgrade);
|
2015-09-29 20:14:22 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
getWindow().setBackgroundDrawable(new ColorDrawable(upgrade.get().getPage(0).backgroundColor));
|
|
|
|
ServiceUtil.getNotificationManager(this).cancel(NOTIFICATION_ID);
|
|
|
|
}
|
|
|
|
|
2015-10-01 22:21:21 +00:00
|
|
|
private void onContinue(Optional<ExperienceUpgrade> seenUpgrade) {
|
|
|
|
ServiceUtil.getNotificationManager(this).cancel(NOTIFICATION_ID);
|
|
|
|
int latestVersion = seenUpgrade.isPresent() ? seenUpgrade.get().getVersion()
|
|
|
|
: Util.getCurrentApkReleaseVersion(this);
|
|
|
|
TextSecurePreferences.setLastExperienceVersionCode(this, latestVersion);
|
2017-09-04 02:44:33 +00:00
|
|
|
if (seenUpgrade.isPresent() && seenUpgrade.get().nextIntent != null) {
|
|
|
|
Intent intent = new Intent(this, seenUpgrade.get().nextIntent);
|
|
|
|
Intent nextIntent = new Intent(this, ConversationListActivity.class);
|
|
|
|
intent.putExtra("next_intent", nextIntent);
|
|
|
|
startActivity(intent);
|
|
|
|
} else {
|
|
|
|
startActivity((Intent) getIntent().getParcelableExtra("next_intent"));
|
|
|
|
}
|
|
|
|
|
2015-09-29 20:14:22 +00:00
|
|
|
finish();
|
|
|
|
}
|
|
|
|
|
|
|
|
public static boolean isUpdate(Context context) {
|
|
|
|
return getExperienceUpgrade(context).isPresent();
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Optional<ExperienceUpgrade> getExperienceUpgrade(Context context) {
|
|
|
|
final int currentVersionCode = Util.getCurrentApkReleaseVersion(context);
|
|
|
|
final int lastSeenVersion = TextSecurePreferences.getLastExperienceVersionCode(context);
|
|
|
|
Log.w(TAG, "getExperienceUpgrade(" + lastSeenVersion + ")");
|
|
|
|
|
2015-10-01 22:21:21 +00:00
|
|
|
if (lastSeenVersion >= currentVersionCode) {
|
2015-09-29 20:14:22 +00:00
|
|
|
TextSecurePreferences.setLastExperienceVersionCode(context, currentVersionCode);
|
|
|
|
return Optional.absent();
|
|
|
|
}
|
|
|
|
|
|
|
|
Optional<ExperienceUpgrade> eligibleUpgrade = Optional.absent();
|
|
|
|
for (ExperienceUpgrade upgrade : ExperienceUpgrade.values()) {
|
|
|
|
if (lastSeenVersion < upgrade.getVersion()) eligibleUpgrade = Optional.of(upgrade);
|
|
|
|
}
|
|
|
|
|
|
|
|
return eligibleUpgrade;
|
|
|
|
}
|
|
|
|
|
|
|
|
private final class OnPageChangeListener implements ViewPager.OnPageChangeListener {
|
|
|
|
private final ArgbEvaluator evaluator = new ArgbEvaluator();
|
|
|
|
private final ExperienceUpgrade upgrade;
|
|
|
|
|
|
|
|
public OnPageChangeListener(ExperienceUpgrade upgrade) {
|
|
|
|
this.upgrade = upgrade;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onPageSelected(int position) {}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onPageScrollStateChanged(int state) {}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) {
|
|
|
|
final int nextPosition = (position + 1) % upgrade.getPages().size();
|
|
|
|
|
|
|
|
final int color = (Integer)evaluator.evaluate(positionOffset,
|
|
|
|
upgrade.getPage(position).backgroundColor,
|
|
|
|
upgrade.getPage(nextPosition).backgroundColor);
|
|
|
|
getWindow().setBackgroundDrawable(new ColorDrawable(color));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static class AppUpgradeReceiver extends BroadcastReceiver {
|
|
|
|
@Override
|
|
|
|
public void onReceive(Context context, Intent intent) {
|
2017-09-04 02:44:33 +00:00
|
|
|
if (Intent.ACTION_PACKAGE_REPLACED.equals(intent.getAction()) &&
|
|
|
|
intent.getData().getSchemeSpecificPart().equals(context.getPackageName()))
|
2015-09-29 20:14:22 +00:00
|
|
|
{
|
|
|
|
Optional<ExperienceUpgrade> experienceUpgrade = getExperienceUpgrade(context);
|
|
|
|
|
2017-09-04 02:44:33 +00:00
|
|
|
if (!experienceUpgrade.isPresent()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (experienceUpgrade.get().getVersion() == TextSecurePreferences.getExperienceDismissedVersionCode(context)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Intent targetIntent = context.getPackageManager().getLaunchIntentForPackage(context.getPackageName());
|
|
|
|
Intent dismissIntent = new Intent(context, AppUpgradeReceiver.class);
|
|
|
|
dismissIntent.setAction(DISMISS_ACTION);
|
|
|
|
|
2015-09-29 20:14:22 +00:00
|
|
|
Notification notification = new NotificationCompat.Builder(context)
|
|
|
|
.setSmallIcon(R.drawable.icon_notification)
|
|
|
|
.setColor(context.getResources().getColor(R.color.signal_primary))
|
|
|
|
.setContentTitle(context.getString(experienceUpgrade.get().getNotificationTitle()))
|
|
|
|
.setContentText(context.getString(experienceUpgrade.get().getNotificationText()))
|
|
|
|
.setStyle(new NotificationCompat.BigTextStyle().bigText(context.getString(experienceUpgrade.get().getNotificationBigText())))
|
|
|
|
.setAutoCancel(true)
|
|
|
|
.setContentIntent(PendingIntent.getActivity(context, 0,
|
|
|
|
targetIntent,
|
|
|
|
PendingIntent.FLAG_UPDATE_CURRENT))
|
2017-09-04 02:44:33 +00:00
|
|
|
|
|
|
|
.setDeleteIntent(PendingIntent.getBroadcast(context, 0,
|
|
|
|
dismissIntent,
|
|
|
|
PendingIntent.FLAG_UPDATE_CURRENT))
|
2015-09-29 20:14:22 +00:00
|
|
|
.build();
|
|
|
|
ServiceUtil.getNotificationManager(context).notify(NOTIFICATION_ID, notification);
|
2017-09-04 02:44:33 +00:00
|
|
|
} else if (DISMISS_ACTION.equals(intent.getAction())) {
|
|
|
|
TextSecurePreferences.setExperienceDismissedVersionCode(context, Util.getCurrentApkReleaseVersion(context));
|
2015-09-29 20:14:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|