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

BookmarkPaymentFragment.java « purchase « maps « mapswithme « com « src « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 449dfaf66c13e207c8ad386080d932224beb2845 (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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
package com.mapswithme.maps.purchase;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.text.TextUtils;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.TextView;
import android.widget.Toast;

import com.android.billingclient.api.SkuDetails;
import com.bumptech.glide.Glide;
import com.mapswithme.maps.Framework;
import com.mapswithme.maps.PrivateVariables;
import com.mapswithme.maps.PurchaseOperationObservable;
import com.mapswithme.maps.R;
import com.mapswithme.maps.base.BaseMwmFragment;
import com.mapswithme.maps.bookmarks.data.PaymentData;
import com.mapswithme.maps.dialog.AlertDialogCallback;
import com.mapswithme.util.Utils;
import com.mapswithme.util.log.Logger;
import com.mapswithme.util.log.LoggerFactory;
import com.mapswithme.util.statistics.Statistics;

import java.util.Collections;
import java.util.List;

public class BookmarkPaymentFragment extends BaseMwmFragment
    implements AlertDialogCallback, PurchaseStateActivator<BookmarkPaymentState>
{
  static final String ARG_PAYMENT_DATA = "arg_payment_data";
  private static final Logger LOGGER = LoggerFactory.INSTANCE.getLogger(LoggerFactory.Type.BILLING);
  private static final String TAG = BookmarkPaymentFragment.class.getSimpleName();
  private static final String EXTRA_CURRENT_STATE = "extra_current_state";
  private static final String EXTRA_PRODUCT_DETAILS = "extra_product_details";
  private static final String EXTRA_SUBS_PRODUCT_DETAILS = "extra_subs_product_details";
  private static final String EXTRA_VALIDATION_RESULT = "extra_validation_result";

  @SuppressWarnings("NullableProblems")
  @NonNull
  private PurchaseController<PurchaseCallback> mPurchaseController;
  @SuppressWarnings("NullableProblems")
  @NonNull
  private BookmarkPurchaseCallback mPurchaseCallback;
  @SuppressWarnings("NullableProblems")
  @NonNull
  private PaymentData mPaymentData;
  @Nullable
  private ProductDetails mProductDetails;
  @Nullable
  private ProductDetails mSubsProductDetails;
  private boolean mValidationResult;
  @NonNull
  private BookmarkPaymentState mState = BookmarkPaymentState.NONE;

  @SuppressWarnings("NullableProblems")
  @NonNull
  private BillingManager<PlayStoreBillingCallback> mSubsProductDetailsLoadingManager;

  @NonNull
  private final SubsProductDetailsCallback mSubsProductDetailsCallback
      = new SubsProductDetailsCallback();

  @Override
  public void onCreate(@Nullable Bundle savedInstanceState)
  {
    super.onCreate(savedInstanceState);
    Bundle args = getArguments();
    if (args == null)
      throw new IllegalStateException("Args must be provided for payment fragment!");

    PaymentData paymentData = args.getParcelable(ARG_PAYMENT_DATA);
    if (paymentData == null)
      throw new IllegalStateException("Payment data must be provided for payment fragment!");

    mPaymentData = paymentData;
    mPurchaseCallback = new BookmarkPurchaseCallback(mPaymentData.getServerId());
  }

  @Nullable
  @Override
  public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable
      Bundle savedInstanceState)
  {
    mPurchaseController = PurchaseFactory.createBookmarkPurchaseController(requireContext(),
                                                                           mPaymentData.getProductId(),
                                                                           mPaymentData.getServerId());
    if (savedInstanceState != null)
      mPurchaseController.onRestore(savedInstanceState);

    mPurchaseController.initialize(requireActivity());

    mSubsProductDetailsLoadingManager = PurchaseFactory.createSubscriptionBillingManager();
    mSubsProductDetailsLoadingManager.initialize(requireActivity());
    mSubsProductDetailsLoadingManager.addCallback(mSubsProductDetailsCallback);
    mSubsProductDetailsCallback.attach(this);

    View root = inflater.inflate(R.layout.fragment_bookmark_payment, container, false);
    View subscriptionButton = root.findViewById(R.id.buy_subs_btn);
    subscriptionButton.setOnClickListener(v -> onBuySubscriptionClicked());
    TextView buyInappBtn = root.findViewById(R.id.buy_inapp_btn);
    buyInappBtn.setOnClickListener(v -> onBuyInappClicked());
    return root;
  }

  private void onBuySubscriptionClicked()
  {
    BookmarkSubscriptionActivity.startForResult(this, PurchaseUtils.REQ_CODE_PAY_SUBSCRIPTION,
                                                Statistics.ParamValue.CARD);
  }

  @Override
  public void onActivityResult(int requestCode, int resultCode, Intent data)
  {
    super.onActivityResult(requestCode, resultCode, data);
    if (resultCode != Activity.RESULT_OK)
      return;

    if (requestCode == PurchaseUtils.REQ_CODE_PAY_SUBSCRIPTION)
    {
      Intent intent = new Intent();
      intent.putExtra(PurchaseUtils.EXTRA_IS_SUBSCRIPTION, true);
      requireActivity().setResult(Activity.RESULT_OK, intent);
      requireActivity().finish();
    }
  }

  private void onBuyInappClicked()
  {
    Statistics.INSTANCE.trackPurchasePreviewSelect(mPaymentData.getServerId(),
                                                   mPaymentData.getProductId());
    Statistics.INSTANCE.trackPurchaseEvent(Statistics.EventName.INAPP_PURCHASE_PREVIEW_PAY,
                                           mPaymentData.getServerId(), Statistics.STATISTICS_CHANNEL_REALTIME);
    startPurchaseTransaction();
  }

  @Override
  public boolean onBackPressed()
  {
    if (mState == BookmarkPaymentState.VALIDATION)
    {
      Toast.makeText(requireContext(), R.string.purchase_please_wait_toast, Toast.LENGTH_SHORT)
           .show();
      return true;
    }

    Statistics.INSTANCE.trackPurchaseEvent(Statistics.EventName.INAPP_PURCHASE_PREVIEW_CANCEL,
                                           mPaymentData.getServerId());
    return super.onBackPressed();
  }

  @Override
  public void onViewCreated(View view, @Nullable Bundle savedInstanceState)
  {
    super.onViewCreated(view, savedInstanceState);
    if (savedInstanceState == null)
      Statistics.INSTANCE.trackPurchasePreviewShow(mPaymentData.getServerId(),
                                                   PrivateVariables.bookmarksVendor(),
                                                   mPaymentData.getProductId());
    LOGGER.d(TAG, "onViewCreated savedInstanceState = " + savedInstanceState);
    setInitialPaymentData();
    loadImage();
    if (savedInstanceState != null)
    {
      mProductDetails = savedInstanceState.getParcelable(EXTRA_PRODUCT_DETAILS);
      if (mProductDetails != null)
        updateProductDetails();
      mSubsProductDetails = savedInstanceState.getParcelable(EXTRA_SUBS_PRODUCT_DETAILS);
      if (mSubsProductDetails != null)
        updateSubsProductDetails();
      mValidationResult = savedInstanceState.getBoolean(EXTRA_VALIDATION_RESULT);
      BookmarkPaymentState savedState
          = BookmarkPaymentState.values()[savedInstanceState.getInt(EXTRA_CURRENT_STATE)];
      activateState(savedState);
      return;
    }

    activateState(BookmarkPaymentState.PRODUCT_DETAILS_LOADING);
    mPurchaseController.queryProductDetails();
    List<String> subsProductIds =
        Collections.singletonList(PrivateVariables.bookmarksSubscriptionMonthlyProductId());
    mSubsProductDetailsLoadingManager.queryProductDetails(subsProductIds);
  }

  @Override
  public void onDestroyView()
  {
    super.onDestroyView();
    mPurchaseController.destroy();
    mSubsProductDetailsLoadingManager.removeCallback(mSubsProductDetailsCallback);
    mSubsProductDetailsCallback.detach();
    mSubsProductDetailsLoadingManager.destroy();
  }

  private void startPurchaseTransaction()
  {
    activateState(BookmarkPaymentState.TRANSACTION_STARTING);
    Framework.nativeStartPurchaseTransaction(mPaymentData.getServerId(),
                                             PrivateVariables.bookmarksVendor());
  }

  void launchBillingFlow()
  {
    mPurchaseController.launchPurchaseFlow(mPaymentData.getProductId());
    activateState(BookmarkPaymentState.PAYMENT_IN_PROGRESS);
  }

  @Override
  public void onStart()
  {
    super.onStart();
    PurchaseOperationObservable observable = PurchaseOperationObservable.from(requireContext());
    observable.addTransactionObserver(mPurchaseCallback);
    mPurchaseController.addCallback(mPurchaseCallback);
    mPurchaseCallback.attach(this);
  }

  @Override
  public void onStop()
  {
    super.onStop();
    PurchaseOperationObservable observable = PurchaseOperationObservable.from(requireContext());
    observable.removeTransactionObserver(mPurchaseCallback);
    mPurchaseController.removeCallback();
    mPurchaseCallback.detach();
  }

  @Override
  public void onSaveInstanceState(Bundle outState)
  {
    super.onSaveInstanceState(outState);
    LOGGER.d(TAG, "onSaveInstanceState");
    outState.putInt(EXTRA_CURRENT_STATE, mState.ordinal());
    outState.putParcelable(EXTRA_PRODUCT_DETAILS, mProductDetails);
    outState.putParcelable(EXTRA_SUBS_PRODUCT_DETAILS, mSubsProductDetails);
    mPurchaseController.onSave(outState);
  }

  @Override
  public void activateState(@NonNull BookmarkPaymentState state)
  {
    if (state == mState)
      return;

    LOGGER.i(TAG, "Activate state: " + state);
    mState = state;
    mState.activate(this);
  }

  private void loadImage()
  {
    if (TextUtils.isEmpty(mPaymentData.getImgUrl()))
      return;

    ImageView imageView = getViewOrThrow().findViewById(R.id.image);
    Glide.with(imageView.getContext())
         .load(mPaymentData.getImgUrl())
         .centerCrop()
         .into(imageView);
  }

  private void setInitialPaymentData()
  {
    TextView name = getViewOrThrow().findViewById(R.id.product_catalog_name);
    name.setText(mPaymentData.getName());
    TextView author = getViewOrThrow().findViewById(R.id.author_name);
    author.setText(mPaymentData.getAuthorName());
  }

  void handleProductDetails(@NonNull List<SkuDetails> details)
  {
    if (details.isEmpty())
      return;

    SkuDetails skuDetails = details.get(0);
    mProductDetails = PurchaseUtils.toProductDetails(skuDetails);
  }

  void handleSubsProductDetails(@NonNull List<SkuDetails> details)
  {
    if (details.isEmpty())
      return;

    SkuDetails skuDetails = details.get(0);
    mSubsProductDetails = PurchaseUtils.toProductDetails(skuDetails);
  }

  void handleValidationResult(boolean validationResult)
  {
    mValidationResult = validationResult;
  }

  @Override
  public void onAlertDialogPositiveClick(int requestCode, int which)
  {
    handleErrorDialogEvent(requestCode);
  }

  @Override
  public void onAlertDialogNegativeClick(int requestCode, int which)
  {
    // Do nothing by default.
  }

  @Override
  public void onAlertDialogCancel(int requestCode)
  {
    handleErrorDialogEvent(requestCode);
  }

  private void handleErrorDialogEvent(int requestCode)
  {
    switch (requestCode)
    {
      case PurchaseUtils.REQ_CODE_PRODUCT_DETAILS_FAILURE:
        requireActivity().finish();
        break;
      case PurchaseUtils.REQ_CODE_START_TRANSACTION_FAILURE:
      case PurchaseUtils.REQ_CODE_PAYMENT_FAILURE:
        activateState(BookmarkPaymentState.PRODUCT_DETAILS_LOADED);
        break;
    }
  }

  public void updateProductDetails()
  {
    if (mProductDetails == null)
      throw new AssertionError("Product details must be obtained at this moment!");

    TextView buyButton = getViewOrThrow().findViewById(R.id.buy_inapp_btn);
    String price = Utils.formatCurrencyString(mProductDetails.getPrice(),
                                              mProductDetails.getCurrencyCode());
    buyButton.setText(getString(R.string.buy_btn, price));
    TextView storeName = getViewOrThrow().findViewById(R.id.product_store_name);
    storeName.setText(mProductDetails.getTitle());
  }

  public void updateSubsProductDetails()
  {
    if (mSubsProductDetails == null)
      throw new AssertionError("Subs product details must be obtained at this moment!");

    String formattedPrice = Utils.formatCurrencyString(mSubsProductDetails.getPrice(),
                                                       mSubsProductDetails.getCurrencyCode());
    TextView subsButton = getViewOrThrow().findViewById(R.id.buy_subs_btn);
    subsButton.setText(getString(R.string.buy_btn_for_subscription_version_2, formattedPrice));
  }

  public void finishValidation()
  {
    if (mValidationResult)
      requireActivity().setResult(Activity.RESULT_OK);

    requireActivity().finish();
  }
}