导航菜单

页面标题

页面副标题

PrestaMax v1.0.9 - CrossPromotionHelper.java 源代码

正在查看: PrestaMax v1.0.9 应用的 CrossPromotionHelper.java JAVA 源代码文件

本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。


package com.appsflyer.share;

import android.content.Context;
import androidx.annotation.NonNull;
import com.appsflyer.AFLogger;
import com.appsflyer.AppsFlyerLib;
import com.appsflyer.AppsFlyerProperties;
import com.appsflyer.internal.AFa1bSDK;
import com.appsflyer.internal.AFc1ySDK;
import com.appsflyer.internal.AFd1mSDK;
import com.appsflyer.internal.AFd1xSDK;
import com.appsflyer.internal.AFd1xSDK.AnonymousClass4;
import com.appsflyer.internal.AFg1ySDK;
import com.appsflyer.internal.AFg1zSDK;
import java.util.HashMap;
import java.util.Map;

public class CrossPromotionHelper {
    private static String valueOf = "https://%simpression.%s";

    public static void logAndOpenStore(@NonNull Context context, String str, String str2) {
        logAndOpenStore(context, str, str2, null);
    }

    public static void logCrossPromoteImpression(@NonNull Context context, String str, String str2) {
        logCrossPromoteImpression(context, str, str2, null);
    }

    public static void setUrl(Map<String, String> map) {
        char c;
        for (Map.Entry<String, String> entry : map.entrySet()) {
            String value = entry.getValue();
            String key = entry.getKey();
            int hashCode = key.hashCode();
            if (hashCode != 96801) {
                if (hashCode == 120623625 && key.equals("impression")) {
                    c = 1;
                }
                c = 65535;
            } else {
                if (key.equals("app")) {
                    c = 0;
                }
                c = 65535;
            }
            if (c == 0) {
                AFg1zSDK.AFInAppEventType = value;
            } else if (c == 1) {
                valueOf = value;
            }
        }
    }

    private static void valueOf(@NonNull String str, @NonNull Context context, AFg1ySDK aFg1ySDK) {
        AFa1bSDK values = AFa1bSDK.values();
        values.AFInAppEventType(context);
        AFc1ySDK valueOf2 = values.valueOf();
        AFd1mSDK aFd1mSDK = new AFd1mSDK(valueOf2, str, aFg1ySDK);
        AFd1xSDK AFLogger$LogLevel = valueOf2.AFLogger$LogLevel();
        AFLogger$LogLevel.valueOf.execute(AFLogger$LogLevel.new AnonymousClass4(aFd1mSDK));
    }

    @NonNull
    private static LinkGenerator values(@NonNull Context context, String str, String str2, Map<String, String> map, String str3) {
        LinkGenerator linkGenerator = new LinkGenerator("af_cross_promotion");
        linkGenerator.AFInAppEventType = str3;
        linkGenerator.AFInAppEventParameterName = str;
        linkGenerator.addParameter("af_siteid", context.getPackageName());
        if (str2 != null) {
            linkGenerator.setCampaign(str2);
        }
        if (map != null) {
            linkGenerator.addParameters(map);
        }
        String string = AppsFlyerProperties.getInstance().getString("advertiserId");
        if (string != null) {
            linkGenerator.addParameter("advertising_id", string);
        }
        return linkGenerator;
    }

    public static void logAndOpenStore(@NonNull Context context, String str, String str2, Map<String, String> map) {
        LinkGenerator values = values(context, str, str2, map, String.format(AFg1zSDK.AFInAppEventType, AppsFlyerLib.getInstance().getHostPrefix(), AFa1bSDK.values().getHostName()));
        if (AppsFlyerProperties.getInstance().getBoolean(AppsFlyerProperties.AF_WAITFOR_CUSTOMERID, false)) {
            AFLogger.afInfoLog("CustomerUserId not set, track And Open Store is disabled", true);
            return;
        }
        if (AppsFlyerLib.getInstance().isStopped()) {
            AFLogger.afInfoLog("SDK is stopped, track And Open Store is disabled", true);
            return;
        }
        if (map == null) {
            map = new HashMap<>();
        }
        map.put("af_campaign", str2);
        AppsFlyerLib.getInstance().logEvent(context, "af_cross_promotion", map);
        valueOf(values.generateLink(), context, new AFg1ySDK(context));
    }

    public static void logCrossPromoteImpression(@NonNull Context context, String str, String str2, Map<String, String> map) {
        if (AppsFlyerProperties.getInstance().getBoolean(AppsFlyerProperties.AF_WAITFOR_CUSTOMERID, false)) {
            AFLogger.afInfoLog("CustomerUserId not set, Promote Impression is disabled", true);
        } else if (AppsFlyerLib.getInstance().isStopped()) {
            AFLogger.afInfoLog("SDK is stopped, Promote Impression is disabled", true);
        } else {
            valueOf(values(context, str, str2, map, String.format(valueOf, AppsFlyerLib.getInstance().getHostPrefix(), AFa1bSDK.values().getHostName())).generateLink(), context, null);
        }
    }
}