use of net.osmand.plus.inapp.InAppPurchases.InAppSubscription.SubscriptionState in project Osmand by osmandapp.
the class PromoPurchaseCard method updateContent.
@Override
protected void updateContent() {
ImageView icon = view.findViewById(R.id.icon);
TextView title = view.findViewById(R.id.title);
TextView purchaseType = view.findViewById(R.id.purchase_type);
title.setText(R.string.promo);
purchaseType.setText(R.string.promo_subscription);
icon.setImageDrawable(getIcon(R.drawable.ic_action_osmand_pro_logo_colored));
AndroidUiHelper.updateVisibility(purchaseType, true);
AndroidUiHelper.updateVisibility(view.findViewById(R.id.osmand_live), false);
AndroidUiHelper.updateVisibility(view.findViewById(R.id.buttons_divider), false);
AndroidUiHelper.updateVisibility(view.findViewById(R.id.manage_subscription), false);
OsmandSettings settings = app.getSettings();
long startTime = settings.BACKUP_PROMOCODE_START_TIME.get();
long expiredTime = settings.BACKUP_PROMOCODE_EXPIRE_TIME.get();
SubscriptionState state = settings.BACKUP_PROMOCODE_STATE.get();
InAppPurchaseCard.setupStatus(view, state, startTime, expiredTime);
}
use of net.osmand.plus.inapp.InAppPurchases.InAppSubscription.SubscriptionState in project Osmand by osmandapp.
the class InAppPurchaseHelperImpl method getSkuDetailsResponseListener.
// Listener that's called when we finish querying the items and subscriptions we own
private SkuDetailsResponseListener getSkuDetailsResponseListener(boolean userRequested) {
return new SkuDetailsResponseListener() {
@NonNull
private List<String> getAllOwnedSubscriptionSkus() {
List<String> result = new ArrayList<>();
BillingManager billingManager = getBillingManager();
if (billingManager != null) {
for (Purchase p : billingManager.getPurchases()) {
if (getInAppPurchases().getInAppSubscriptionBySku(p.getSku()) != null) {
result.add(p.getSku());
}
}
}
for (Entry<String, SubscriptionStateHolder> entry : subscriptionStateMap.entrySet()) {
SubscriptionState state = entry.getValue().state;
if (state == SubscriptionState.PAUSED || state == SubscriptionState.ON_HOLD) {
String sku = entry.getKey();
if (!result.contains(sku)) {
result.add(sku);
}
}
}
return result;
}
@Override
public void onSkuDetailsResponse(@NonNull BillingResult billingResult, List<SkuDetails> skuDetailsList) {
logDebug("Query sku details finished.");
// Have we been disposed of in the meantime? If so, quit.
if (getBillingManager() == null) {
stop(true);
return;
}
// Is it a failure?
if (billingResult.getResponseCode() != BillingClient.BillingResponseCode.OK) {
logError("Failed to query inventory: " + billingResult.getResponseCode());
notifyError(InAppPurchaseTaskType.REQUEST_INVENTORY, billingResult.getDebugMessage());
stop(true);
return;
}
logDebug("Query sku details was successful.");
/*
* Check for items we own. Notice that for each purchase, we check
* the developer payload to see if it's correct! See
* verifyDeveloperPayload().
*/
List<String> allOwnedSubscriptionSkus = getAllOwnedSubscriptionSkus();
for (InAppSubscription s : getSubscriptions().getAllSubscriptions()) {
if (hasDetails(s.getSku())) {
Purchase purchase = getPurchase(s.getSku());
SkuDetails liveUpdatesDetails = getSkuDetails(s.getSku());
if (liveUpdatesDetails != null) {
fetchInAppPurchase(s, liveUpdatesDetails, purchase);
}
allOwnedSubscriptionSkus.remove(s.getSku());
}
}
for (String sku : allOwnedSubscriptionSkus) {
Purchase purchase = getPurchase(sku);
SkuDetails liveUpdatesDetails = getSkuDetails(sku);
if (liveUpdatesDetails != null) {
InAppSubscription s = getSubscriptions().upgradeSubscription(sku);
if (s == null) {
s = new InAppPurchaseLiveUpdatesOldSubscription(liveUpdatesDetails);
}
fetchInAppPurchase(s, liveUpdatesDetails, purchase);
}
}
InAppPurchase fullVersion = getFullVersion();
if (hasDetails(fullVersion.getSku())) {
Purchase purchase = getPurchase(fullVersion.getSku());
SkuDetails fullPriceDetails = getSkuDetails(fullVersion.getSku());
if (fullPriceDetails != null) {
fetchInAppPurchase(fullVersion, fullPriceDetails, purchase);
}
}
InAppPurchase depthContours = getDepthContours();
if (hasDetails(depthContours.getSku())) {
Purchase purchase = getPurchase(depthContours.getSku());
SkuDetails depthContoursDetails = getSkuDetails(depthContours.getSku());
if (depthContoursDetails != null) {
fetchInAppPurchase(depthContours, depthContoursDetails, purchase);
}
}
InAppPurchase contourLines = getContourLines();
if (hasDetails(contourLines.getSku())) {
Purchase purchase = getPurchase(contourLines.getSku());
SkuDetails contourLinesDetails = getSkuDetails(contourLines.getSku());
if (contourLinesDetails != null) {
fetchInAppPurchase(contourLines, contourLinesDetails, purchase);
}
}
Purchase fullVersionPurchase = getPurchase(fullVersion.getSku());
boolean fullVersionPurchased = fullVersionPurchase != null;
if (fullVersionPurchased) {
ctx.getSettings().FULL_VERSION_PURCHASED.set(true);
}
Purchase depthContoursPurchase = getPurchase(depthContours.getSku());
boolean depthContoursPurchased = depthContoursPurchase != null;
if (depthContoursPurchased) {
ctx.getSettings().DEPTH_CONTOURS_PURCHASED.set(true);
}
// Do we have the live updates?
boolean subscribedToLiveUpdates = false;
boolean subscribedToOsmAndPro = false;
boolean subscribedToMaps = false;
List<Purchase> subscriptionPurchases = new ArrayList<>();
for (InAppSubscription s : getSubscriptions().getAllSubscriptions()) {
Purchase purchase = getPurchase(s.getSku());
if (purchase != null || s.getState().isActive()) {
if (purchase != null) {
subscriptionPurchases.add(purchase);
}
if (!subscribedToLiveUpdates && purchases.isLiveUpdatesSubscription(s)) {
subscribedToLiveUpdates = true;
}
if (!subscribedToOsmAndPro && purchases.isOsmAndProSubscription(s)) {
subscribedToOsmAndPro = true;
}
if (!subscribedToMaps && purchases.isMapsSubscription(s)) {
subscribedToMaps = true;
}
}
}
if (!subscribedToLiveUpdates && ctx.getSettings().LIVE_UPDATES_PURCHASED.get()) {
ctx.getSettings().LIVE_UPDATES_PURCHASED.set(false);
} else if (subscribedToLiveUpdates) {
ctx.getSettings().LIVE_UPDATES_PURCHASED.set(true);
}
if (!subscribedToOsmAndPro && ctx.getSettings().OSMAND_PRO_PURCHASED.get()) {
ctx.getSettings().OSMAND_PRO_PURCHASED.set(false);
} else if (subscribedToOsmAndPro) {
ctx.getSettings().OSMAND_PRO_PURCHASED.set(true);
}
if (!subscribedToMaps && ctx.getSettings().OSMAND_MAPS_PURCHASED.get()) {
ctx.getSettings().OSMAND_MAPS_PURCHASED.set(false);
} else if (subscribedToMaps) {
ctx.getSettings().OSMAND_MAPS_PURCHASED.set(true);
}
if (!subscribedToLiveUpdates && !subscribedToOsmAndPro && !subscribedToMaps) {
onSubscriptionExpired();
}
lastValidationCheckTime = System.currentTimeMillis();
logDebug("User " + (subscribedToLiveUpdates ? "HAS" : "DOES NOT HAVE") + " live updates purchased.");
logDebug("User " + (subscribedToOsmAndPro ? "HAS" : "DOES NOT HAVE") + " OsmAnd Pro purchased.");
logDebug("User " + (subscribedToMaps ? "HAS" : "DOES NOT HAVE") + " Maps purchased.");
OsmandSettings settings = ctx.getSettings();
settings.INAPPS_READ.set(true);
List<Purchase> tokensToSend = new ArrayList<>();
if (subscriptionPurchases.size() > 0) {
List<String> tokensSent = Arrays.asList(settings.BILLING_PURCHASE_TOKENS_SENT.get().split(";"));
for (Purchase purchase : subscriptionPurchases) {
if (needRestoreUserInfo()) {
restoreUserInfo(purchase);
}
if (!tokensSent.contains(purchase.getSku())) {
tokensToSend.add(purchase);
}
}
}
List<PurchaseInfo> purchaseInfoList = new ArrayList<>();
for (Purchase purchase : tokensToSend) {
purchaseInfoList.add(getPurchaseInfo(purchase));
}
onSkuDetailsResponseDone(purchaseInfoList, userRequested);
}
private void onSubscriptionExpired() {
if (!isDepthContoursPurchased(ctx)) {
ctx.getSettings().getCustomRenderBooleanProperty("depthContours").set(false);
}
}
};
}
use of net.osmand.plus.inapp.InAppPurchases.InAppSubscription.SubscriptionState in project Osmand by osmandapp.
the class InAppPurchaseCard method setupSubscriptionCard.
private void setupSubscriptionCard(@NonNull InAppSubscription subscription) {
SubscriptionState state = subscription.getState();
boolean autoRenewing = false;
if (subscription.isPurchased() && subscription.getPurchaseInfo() != null) {
autoRenewing = subscription.getPurchaseInfo().isAutoRenewing();
state = SubscriptionState.ACTIVE;
} else if (state != SubscriptionState.UNDEFINED) {
autoRenewing = state == SubscriptionState.ACTIVE || state == SubscriptionState.IN_GRACE_PERIOD;
}
TextView subscriptionPeriod = view.findViewById(R.id.purchase_type);
String period = app.getString(subscription.getPeriodTypeString());
if (!Algorithms.isEmpty(period)) {
subscriptionPeriod.setText(period);
AndroidUiHelper.updateVisibility(subscriptionPeriod, true);
}
long expiredTime = subscription.getExpireTime();
if (expiredTime == 0) {
expiredTime = subscription.getCalculatedExpiredTime();
}
if (autoRenewing) {
String expiredTimeStr = null;
if (expiredTime > 0) {
expiredTimeStr = dateFormat.format(expiredTime);
}
TextView nextBillingDate = view.findViewById(R.id.next_billing_date);
if (!Algorithms.isEmpty(expiredTimeStr)) {
nextBillingDate.setText(app.getString(R.string.next_billing_date, expiredTimeStr));
AndroidUiHelper.updateVisibility(nextBillingDate, true);
}
} else if (state != SubscriptionState.ACTIVE && state != SubscriptionState.CANCELLED) {
View renewContainer = view.findViewById(R.id.renewContainer);
AndroidUiHelper.updateVisibility(renewContainer, true);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
AndroidUtils.setBackground(mapActivity, renewContainer, nightMode, R.drawable.ripple_light, R.drawable.ripple_dark);
} else {
AndroidUtils.setBackground(mapActivity, renewContainer, nightMode, R.drawable.btn_unstroked_light, R.drawable.btn_unstroked_dark);
}
final String sku = subscription.getSku();
renewContainer.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
InAppPurchaseHelper.subscribe(mapActivity, purchaseHelper, sku);
}
});
View renew = view.findViewById(R.id.renew);
AndroidUtils.setBackground(mapActivity, renew, nightMode, R.drawable.btn_solid_border_light, R.drawable.btn_solid_border_dark);
}
setupStatus(view, state, expiredTime, expiredTime);
}
Aggregations