com.playhaven.android.req.OpenRequest.java Source code

Java tutorial

Introduction

Here is the source code for com.playhaven.android.req.OpenRequest.java

Source

/**
 * Copyright 2013 Medium Entertainment, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.playhaven.android.req;

import android.content.Context;
import android.content.SharedPreferences;
import com.jayway.jsonpath.InvalidPathException;
import com.playhaven.android.PlayHaven;
import com.playhaven.android.PlayHavenException;
import com.playhaven.android.cache.Cache;
import com.playhaven.android.cache.CacheResponseHandler;
import com.playhaven.android.cache.CachedInfo;
import com.playhaven.android.data.JsonUrlExtractor;
import com.playhaven.android.util.JsonUtil;
import com.playhaven.android.util.TimeZoneFormatter;

import org.json.JSONException;
import org.springframework.http.HttpMethod;
import org.springframework.web.util.UriComponentsBuilder;

import java.net.URL;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Date;

import static com.playhaven.android.compat.VendorCompat.ResourceType;

/**
 * Make an OPEN request to PlayHaven
 */
public class OpenRequest extends PlayHavenRequest {
    private static final String SCOUNT = "scount";
    private static final String SSUM = "ssum";
    private static final String STIME = "stime";
    private static final String SSTART = "sstart";
    private Cache cache;

    public OpenRequest() {
        super();
        setMethod(HttpMethod.POST);
    }

    @Override
    protected UriComponentsBuilder createUrl(android.content.Context context) throws PlayHavenException {
        UriComponentsBuilder builder = super.createUrl(context);
        builder.queryParam("tz", TimeZoneFormatter.getDefaultTimezone());

        SharedPreferences pref = PlayHaven.getPreferences(context);
        int scount = pref.getInt(SCOUNT, 0);
        long ssum = pref.getLong(SSUM, 0);
        long stime = pref.getLong(STIME, 0);
        ssum += stime;

        builder.queryParam(SCOUNT, scount);
        builder.queryParam(SSUM, ssum);

        SharedPreferences.Editor edit = pref.edit();
        // Increment count
        scount++;
        edit.putInt(SCOUNT, scount);
        // Clear current game time
        edit.putLong(STIME, 0);
        // Don't alter the previous sum until success
        // Save a start time
        Calendar rightNow = Calendar.getInstance();
        Date date = rightNow.getTime();
        edit.putLong(SSTART, date.getTime());
        // Commit changes
        edit.commit();

        return builder;
    }

    protected void handleResponse(Context context, String json) {
        PlayHaven.DID_CALL_OPEN = true;
        SharedPreferences pref = PlayHaven.getPreferences(context);
        SharedPreferences.Editor edit = pref.edit();
        // reset SCOUNT
        edit.putInt(SCOUNT, 1);
        // reset SSUM
        edit.putLong(SSUM, 0);
        // Commit changes
        edit.commit();

        try {
            String newApiEndpoint = JsonUtil.asString(json, "$.response.prefix");
            if (newApiEndpoint != null) {
                if (!newApiEndpoint.endsWith("/"))
                    newApiEndpoint = newApiEndpoint + "/";

                String key = PlayHaven.Config.APIServer.toString();
                edit.putString(key, newApiEndpoint);
                edit.commit();
                PlayHaven.d("%s: %s", key, pref.getString(key, "unset"));
            }
        } catch (InvalidPathException e) {
            // no-op
        }

        try {
            if (cache == null)
                cache = new Cache(context);

            ArrayList<String> urls = new ArrayList<String>();
            urls.addAll(JsonUrlExtractor.getContentTemplates(json));
            cache.bulkRequest(new CacheResponseHandler() {
                @Override
                public void cacheSuccess(CachedInfo... cachedInfos) {
                    /* no-op, just don't precache */
                }

                @Override
                public void cacheFail(URL url, PlayHavenException exception) {
                    /* no-op, just don't precache */
                }
            }, urls);
        } catch (Exception e) {
            /* no-op, just don't precache */
        }

        try {
            Boolean locationPermission = JsonUtil.asBoolean(json, "$.response.location_allow_access");
            if (locationPermission) {
                PlayHaven.USE_LOCATION = locationPermission;
            }
        } catch (InvalidPathException e) {
            /* no-op, just catch if location_allow_access is missing */
        }

        try {
            Integer loadContextLimit = JsonUtil.asInteger(json, "$.response.load_context_limit");
            if (loadContextLimit != null) {
                PlayHaven.LOAD_CONTEXT_LIMIT = loadContextLimit;
            }
        } catch (InvalidPathException e) {
            /* no-op, just catch if location_allow_access is load_context_limit */
        }

        super.handleResponse(context, json);
    }

    @Override
    protected int getApiPath(Context context) {
        return getCompat(context).getResourceId(context, ResourceType.string, "playhaven_request_open_v3");
    }
}