Welcome to mirror list, hosted at ThFree Co, Russian Federation.

LikesManager.java « ads « maps « mapswithme « com « src « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ee8c939faf0abd01e031733edb0636c606fce3c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
package com.mapswithme.maps.ads;

import android.os.Handler;
import android.support.v4.app.DialogFragment;
import android.support.v4.app.FragmentActivity;

import com.mapswithme.maps.BuildConfig;
import com.mapswithme.maps.MwmApplication;
import com.mapswithme.util.ConnectionState;

import java.lang.ref.WeakReference;
import java.util.HashMap;
import java.util.Map;

public class LikesManager
{
  /*
   Maps type of like dialog to the dialog, performing like.
   */
  private enum LikeType
  {
    GPLAY_NEW_USERS(RateStoreDialogFragment.class),
    GPLAY_OLD_USERS(RateStoreDialogFragment.class),
    GPLUS_NEW_USERS(GooglePlusDialogFragment.class),
    GPLUS_OLD_USERS(GooglePlusDialogFragment.class),
    FACEBOOK_INVITE_NEW_USERS(FacebookInvitesDialogFragment.class),
    FACEBOOK_INVITES_OLD_USERS(FacebookInvitesDialogFragment.class);

    public final Class<? extends DialogFragment> clazz;

    LikeType(Class<? extends DialogFragment> clazz)
    {
      this.clazz = clazz;
    }
  }

  /*
   Maps number of session to LikeType
   */
  private static Map<Integer, LikeType> mOldUsersMapping = new HashMap<>();
  private static Map<Integer, LikeType> mNewUsersMapping = new HashMap<>();

  static
  {
    mOldUsersMapping.put(1, LikeType.GPLAY_OLD_USERS);
    mOldUsersMapping.put(4, LikeType.GPLUS_OLD_USERS);
    mOldUsersMapping.put(6, LikeType.FACEBOOK_INVITES_OLD_USERS);
    mOldUsersMapping.put(10, LikeType.GPLAY_OLD_USERS);
    mOldUsersMapping.put(21, LikeType.GPLAY_OLD_USERS);
    mOldUsersMapping.put(24, LikeType.GPLUS_OLD_USERS);
    mOldUsersMapping.put(30, LikeType.FACEBOOK_INVITES_OLD_USERS);
    mOldUsersMapping.put(44, LikeType.GPLUS_OLD_USERS);
    mOldUsersMapping.put(50, LikeType.FACEBOOK_INVITES_OLD_USERS);

    mNewUsersMapping.put(3, LikeType.GPLAY_NEW_USERS);
    mNewUsersMapping.put(9, LikeType.FACEBOOK_INVITE_NEW_USERS);
    mNewUsersMapping.put(10, LikeType.GPLAY_NEW_USERS);
    mNewUsersMapping.put(11, LikeType.GPLUS_NEW_USERS);
    mNewUsersMapping.put(21, LikeType.GPLAY_NEW_USERS);
    mNewUsersMapping.put(30, LikeType.GPLUS_NEW_USERS);
    mNewUsersMapping.put(35, LikeType.FACEBOOK_INVITE_NEW_USERS);
    mNewUsersMapping.put(50, LikeType.GPLUS_NEW_USERS);
    mNewUsersMapping.put(55, LikeType.FACEBOOK_INVITE_NEW_USERS);
  }

  private static final long DIALOG_DELAY_MILLIS = 30000;

  private final boolean mIsNewUser = MwmApplication.get().getFirstInstallVersion() == BuildConfig.VERSION_CODE;
  private final int mSessionNum;

  private Handler mHandler;
  private Runnable mLikeRunnable;
  private WeakReference<FragmentActivity> mActivityRef;

  public static final String LAST_RATED_SESSION = "LastRatedSession";
  public static final String RATED_DIALOG = "RatedDialog";

  public LikesManager(FragmentActivity activity)
  {
    mHandler = new Handler(activity.getMainLooper());
    mActivityRef = new WeakReference<>(activity);

    mSessionNum = MwmApplication.get().getSessionsNumber();
  }

  public void showLikeDialogForCurrentSession()
  {
    if (!ConnectionState.isConnected())
      return;

    final LikeType type = mIsNewUser ? mNewUsersMapping.get(mSessionNum) : mOldUsersMapping.get(mSessionNum);
    if (type != null)
      displayLikeDialog(type.clazz);
  }

  private void displayLikeDialog(final Class<? extends DialogFragment> dialogFragmentClass)
  {
    if (isSessionRated(mSessionNum) || isRatingApplied(dialogFragmentClass))
      return;
    setSessionRated(mSessionNum);

    mHandler.removeCallbacks(mLikeRunnable);
    mLikeRunnable = new Runnable()
    {
      @SuppressWarnings("TryWithIdenticalCatches")
      @Override
      public void run()
      {
        final FragmentActivity activity = mActivityRef.get();
        if (activity == null)
          return;

        final DialogFragment fragment;
        try
        {
          fragment = dialogFragmentClass.newInstance();
          fragment.show(activity.getSupportFragmentManager(), null);
        } catch (InstantiationException e)
        {
          e.printStackTrace();
        } catch (IllegalAccessException e)
        {
          e.printStackTrace();
        }
      }
    };
    mHandler.postDelayed(mLikeRunnable, DIALOG_DELAY_MILLIS);
  }

  public void cancelLikeDialog()
  {
    mHandler.removeCallbacks(mLikeRunnable);
  }

  public static boolean isSessionRated(int sessionNum)
  {
    return MwmApplication.get().nativeGetInt(LAST_RATED_SESSION, 0) >= sessionNum;
  }

  public static void setSessionRated(int sessionNum)
  {
    MwmApplication.get().nativeSetInt(LAST_RATED_SESSION, sessionNum);
  }

  public static boolean isRatingApplied(final Class<? extends DialogFragment> dialogFragmentClass)
  {
    return MwmApplication.get().nativeGetBoolean(RATED_DIALOG + dialogFragmentClass.getSimpleName(), false);
  }

  public static void setRatingApplied(final Class<? extends DialogFragment> dialogFragmentClass, boolean applied)
  {
    MwmApplication.get().nativeSetBoolean(RATED_DIALOG + dialogFragmentClass.getSimpleName(), applied);
  }
}