mirror of
https://github.com/oxen-io/session-android.git
synced 2023-12-14 02:53:01 +01:00
321 lines
15 KiB
Java
321 lines
15 KiB
Java
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;
|
|
import android.support.annotation.Nullable;
|
|
import android.support.annotation.StringRes;
|
|
import android.support.v4.app.NotificationCompat;
|
|
import android.support.v4.view.ViewPager;
|
|
import android.view.View;
|
|
|
|
import com.melnykov.fab.FloatingActionButton;
|
|
import com.nineoldandroids.animation.ArgbEvaluator;
|
|
|
|
import org.thoughtcrime.securesms.IntroPagerAdapter.IntroPage;
|
|
import org.thoughtcrime.securesms.logging.Log;
|
|
import org.thoughtcrime.securesms.loki.activities.HomeActivity;
|
|
import org.thoughtcrime.securesms.notifications.NotificationChannels;
|
|
import org.thoughtcrime.securesms.util.ServiceUtil;
|
|
import org.thoughtcrime.securesms.util.TextSecurePreferences;
|
|
import org.thoughtcrime.securesms.util.Util;
|
|
import org.thoughtcrime.securesms.util.ViewUtil;
|
|
import org.whispersystems.libsignal.util.guava.Optional;
|
|
|
|
import java.util.Collections;
|
|
import java.util.List;
|
|
|
|
import network.loki.messenger.R;
|
|
|
|
public class ExperienceUpgradeActivity extends BaseActionBarActivity implements TypingIndicatorIntroFragment.Controller, LinkPreviewsIntroFragment.Controller {
|
|
private static final String TAG = ExperienceUpgradeActivity.class.getSimpleName();
|
|
private static final String DISMISS_ACTION = "network.loki.securesms.ExperienceUpgradeActivity.DISMISS_ACTION";
|
|
private static final int NOTIFICATION_ID = 1339;
|
|
|
|
private enum ExperienceUpgrade {
|
|
SIGNAL_REBRANDING(157,
|
|
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,
|
|
R.string.ExperienceUpgradeActivity_textsecure_is_now_signal_long,
|
|
null,
|
|
false),
|
|
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,
|
|
R.string.ExperienceUpgradeActivity_signal_now_supports_secure_video_calling_long,
|
|
null,
|
|
false),
|
|
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,
|
|
CreateProfileActivity.class,
|
|
false),
|
|
READ_RECEIPTS(299,
|
|
new IntroPage(0xFF2090EA,
|
|
ReadReceiptsIntroFragment.newInstance()),
|
|
R.string.experience_upgrade_preference_fragment__read_receipts_are_here,
|
|
R.string.experience_upgrade_preference_fragment__optionally_see_and_share_when_messages_have_been_read,
|
|
R.string.experience_upgrade_preference_fragment__optionally_see_and_share_when_messages_have_been_read,
|
|
null,
|
|
false),
|
|
TYPING_INDICATORS(432,
|
|
new IntroPage(0xFF2090EA,
|
|
TypingIndicatorIntroFragment.newInstance()),
|
|
R.string.ExperienceUpgradeActivity_introducing_typing_indicators,
|
|
R.string.ExperienceUpgradeActivity_now_you_can_optionally_see_and_share_when_messages_are_being_typed,
|
|
R.string.ExperienceUpgradeActivity_now_you_can_optionally_see_and_share_when_messages_are_being_typed,
|
|
null,
|
|
true),
|
|
LINK_PREVIEWS(449,
|
|
new IntroPage(0xFF2090EA, LinkPreviewsIntroFragment.newInstance()),
|
|
R.string.ExperienceUpgradeActivity_introducing_link_previews,
|
|
R.string.ExperienceUpgradeActivity_optional_link_previews_are_now_supported,
|
|
R.string.ExperienceUpgradeActivity_optional_link_previews_are_now_supported,
|
|
null,
|
|
true);
|
|
|
|
private int version;
|
|
private List<IntroPage> pages;
|
|
private @StringRes int notificationTitle;
|
|
private @StringRes int notificationText;
|
|
private @StringRes int notificationBigText;
|
|
private @Nullable Class nextIntent;
|
|
private boolean handlesNavigation;
|
|
|
|
ExperienceUpgrade(int version,
|
|
@NonNull List<IntroPage> pages,
|
|
@StringRes int notificationTitle,
|
|
@StringRes int notificationText,
|
|
@StringRes int notificationBigText,
|
|
@Nullable Class nextIntent,
|
|
boolean handlesNavigation)
|
|
{
|
|
this.version = version;
|
|
this.pages = pages;
|
|
this.notificationTitle = notificationTitle;
|
|
this.notificationText = notificationText;
|
|
this.notificationBigText = notificationBigText;
|
|
this.nextIntent = nextIntent;
|
|
this.handlesNavigation = handlesNavigation;
|
|
}
|
|
|
|
ExperienceUpgrade(int version,
|
|
@NonNull IntroPage page,
|
|
@StringRes int notificationTitle,
|
|
@StringRes int notificationText,
|
|
@StringRes int notificationBigText,
|
|
@Nullable Class nextIntent,
|
|
boolean handlesNavigation)
|
|
{
|
|
this(version, Collections.singletonList(page), notificationTitle, notificationText, notificationBigText, nextIntent, handlesNavigation);
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
public boolean handlesNavigation() {
|
|
return handlesNavigation;
|
|
}
|
|
}
|
|
|
|
@Override
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
super.onCreate(savedInstanceState);
|
|
setStatusBarColor(getResources().getColor(R.color.signal_primary_dark));
|
|
|
|
final Optional<ExperienceUpgrade> upgrade = getExperienceUpgrade(this);
|
|
if (!upgrade.isPresent()) {
|
|
onContinue(upgrade);
|
|
return;
|
|
}
|
|
|
|
setContentView(R.layout.experience_upgrade_activity);
|
|
final ViewPager pager = ViewUtil.findById(this, R.id.pager);
|
|
final FloatingActionButton fab = ViewUtil.findById(this, R.id.fab);
|
|
|
|
pager.setAdapter(new IntroPagerAdapter(getSupportFragmentManager(), upgrade.get().getPages()));
|
|
|
|
if (upgrade.get().handlesNavigation()) {
|
|
fab.setVisibility(View.GONE);
|
|
} else {
|
|
fab.setVisibility(View.VISIBLE);
|
|
fab.setOnClickListener(v -> onContinue(upgrade));
|
|
}
|
|
|
|
getWindow().setBackgroundDrawable(new ColorDrawable(upgrade.get().getPage(0).backgroundColor));
|
|
ServiceUtil.getNotificationManager(this).cancel(NOTIFICATION_ID);
|
|
}
|
|
|
|
private void onContinue(Optional<ExperienceUpgrade> seenUpgrade) {
|
|
ServiceUtil.getNotificationManager(this).cancel(NOTIFICATION_ID);
|
|
int latestVersion = seenUpgrade.isPresent() ? seenUpgrade.get().getVersion()
|
|
: Util.getCanonicalVersionCode();
|
|
TextSecurePreferences.setLastExperienceVersionCode(this, latestVersion);
|
|
if (seenUpgrade.isPresent() && seenUpgrade.get().nextIntent != null) {
|
|
Intent intent = new Intent(this, seenUpgrade.get().nextIntent);
|
|
Intent nextIntent = new Intent(this, HomeActivity.class);
|
|
intent.putExtra("next_intent", nextIntent);
|
|
startActivity(intent);
|
|
} else {
|
|
startActivity(getIntent().getParcelableExtra("next_intent"));
|
|
}
|
|
|
|
finish();
|
|
}
|
|
|
|
public static boolean isUpdate(Context context) {
|
|
return getExperienceUpgrade(context).isPresent();
|
|
}
|
|
|
|
public static Optional<ExperienceUpgrade> getExperienceUpgrade(Context context) {
|
|
final int currentVersionCode = Util.getCanonicalVersionCode();
|
|
final int lastSeenVersion = TextSecurePreferences.getLastExperienceVersionCode(context);
|
|
Log.i(TAG, "getExperienceUpgrade(" + lastSeenVersion + ")");
|
|
|
|
if (lastSeenVersion >= currentVersionCode) {
|
|
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;
|
|
}
|
|
|
|
@Override
|
|
public void onTypingIndicatorsFinished() {
|
|
onContinue(Optional.of(ExperienceUpgrade.TYPING_INDICATORS));
|
|
}
|
|
|
|
@Override
|
|
public void onLinkPreviewsFinished() {
|
|
onContinue(Optional.of(ExperienceUpgrade.LINK_PREVIEWS));
|
|
}
|
|
|
|
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) {
|
|
if (Intent.ACTION_MY_PACKAGE_REPLACED.equals(intent.getAction()) &&
|
|
intent.getData().getSchemeSpecificPart().equals(context.getPackageName()))
|
|
{
|
|
if (TextSecurePreferences.getLastExperienceVersionCode(context) < 339 &&
|
|
!TextSecurePreferences.isPasswordDisabled(context))
|
|
{
|
|
Notification notification = new NotificationCompat.Builder(context, NotificationChannels.OTHER)
|
|
.setSmallIcon(R.drawable.ic_notification)
|
|
.setColor(context.getResources().getColor(R.color.signal_primary))
|
|
.setContentTitle(context.getString(R.string.ExperienceUpgradeActivity_unlock_to_complete_update))
|
|
.setContentText(context.getString(R.string.ExperienceUpgradeActivity_please_unlock_signal_to_complete_update))
|
|
.setStyle(new NotificationCompat.BigTextStyle().bigText(context.getString(R.string.ExperienceUpgradeActivity_please_unlock_signal_to_complete_update)))
|
|
.setAutoCancel(true)
|
|
.setContentIntent(PendingIntent.getActivity(context, 0,
|
|
context.getPackageManager().getLaunchIntentForPackage(context.getPackageName()),
|
|
PendingIntent.FLAG_UPDATE_CURRENT))
|
|
.build();
|
|
|
|
ServiceUtil.getNotificationManager(context).notify(NOTIFICATION_ID, notification);
|
|
}
|
|
|
|
Optional<ExperienceUpgrade> experienceUpgrade = getExperienceUpgrade(context);
|
|
|
|
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);
|
|
|
|
Notification notification = new NotificationCompat.Builder(context, NotificationChannels.OTHER)
|
|
.setSmallIcon(R.drawable.ic_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))
|
|
|
|
.setDeleteIntent(PendingIntent.getBroadcast(context, 0,
|
|
dismissIntent,
|
|
PendingIntent.FLAG_UPDATE_CURRENT))
|
|
.build();
|
|
ServiceUtil.getNotificationManager(context).notify(NOTIFICATION_ID, notification);
|
|
} else if (DISMISS_ACTION.equals(intent.getAction())) {
|
|
TextSecurePreferences.setExperienceDismissedVersionCode(context, Util.getCanonicalVersionCode());
|
|
}
|
|
}
|
|
}
|
|
}
|