BusinessOverdueStatusRecorder.java

117 lines | 5.161 kB Blame History Raw Download
/*
 * Copyright 2010-2012 Ning, Inc.
 *
 * Ning licenses this file to you 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.ning.billing.analytics;

import javax.inject.Inject;
import java.util.List;
import java.util.SortedSet;
import java.util.UUID;

import org.joda.time.DateTime;
import org.skife.jdbi.v2.Transaction;
import org.skife.jdbi.v2.TransactionStatus;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.google.common.collect.ImmutableList;
import com.google.common.collect.Lists;
import com.ning.billing.account.api.Account;
import com.ning.billing.account.api.AccountApiException;
import com.ning.billing.account.api.AccountUserApi;
import com.ning.billing.analytics.dao.BusinessOverdueStatusSqlDao;
import com.ning.billing.analytics.model.BusinessOverdueStatus;
import com.ning.billing.entitlement.api.user.EntitlementUserApi;
import com.ning.billing.entitlement.api.user.EntitlementUserApiException;
import com.ning.billing.entitlement.api.user.SubscriptionBundle;
import com.ning.billing.junction.api.Blockable;
import com.ning.billing.junction.api.BlockingApi;
import com.ning.billing.junction.api.BlockingState;

public class BusinessOverdueStatusRecorder {
    private static final Logger log = LoggerFactory.getLogger(BusinessOverdueStatusRecorder.class);

    private final BusinessOverdueStatusSqlDao overdueStatusSqlDao;
    private final AccountUserApi accountApi;
    private final EntitlementUserApi entitlementApi;
    private final BlockingApi blockingApi;

    @Inject
    public BusinessOverdueStatusRecorder(final BusinessOverdueStatusSqlDao overdueStatusSqlDao, final AccountUserApi accountApi,
                                         final EntitlementUserApi entitlementApi, final BlockingApi blockingApi) {
        this.overdueStatusSqlDao = overdueStatusSqlDao;
        this.accountApi = accountApi;
        this.entitlementApi = entitlementApi;
        this.blockingApi = blockingApi;
    }

    public void overdueStatusChanged(final Blockable.Type objectType, final UUID objectId) {
        if (Blockable.Type.SUBSCRIPTION_BUNDLE.equals(objectType)) {
            overdueStatusChangedForBundle(objectId);
        } else {
            log.info("Ignoring overdue status change for object id {} (type {})", objectId.toString(), objectType.toString());
        }
    }

    private void overdueStatusChangedForBundle(final UUID bundleId) {
        final SubscriptionBundle bundle;
        try {
            bundle = entitlementApi.getBundleFromId(bundleId);
        } catch (EntitlementUserApiException e) {
            log.warn("Ignoring update for bundle {}: bundle does not exist", bundleId);
            return;
        }

        final Account account;
        try {
            account = accountApi.getAccountById(bundle.getAccountId());
        } catch (AccountApiException e) {
            log.warn("Ignoring update for bundle {}: account {} does not exist", bundleId, bundle.getAccountId());
            return;
        }

        final String accountKey = account.getExternalKey();
        final String externalKey = bundle.getKey();

        overdueStatusSqlDao.inTransaction(new Transaction<Void, BusinessOverdueStatusSqlDao>() {
            @Override
            public Void inTransaction(final BusinessOverdueStatusSqlDao transactional, final TransactionStatus status) throws Exception {
                log.info("Started rebuilding overdue statuses for bundle id {}", bundleId);
                transactional.deleteOverdueStatusesForBundle(bundleId.toString());

                final SortedSet<BlockingState> blockingHistory = blockingApi.getBlockingHistory(bundleId);
                if (blockingHistory != null && blockingHistory.size() > 0) {
                    final List<BlockingState> overdueStates = ImmutableList.<BlockingState>copyOf(blockingHistory);
                    final List<BlockingState> overdueStatesReversed = Lists.reverse(overdueStates);

                    DateTime previousStartDate = null;
                    for (final BlockingState state : overdueStatesReversed) {
                        final BusinessOverdueStatus overdueStatus = new BusinessOverdueStatus(accountKey, bundleId, previousStartDate,
                                                                                              externalKey, state.getTimestamp(), state.getStateName());
                        log.info("Adding overdue state {}", overdueStatus);
                        overdueStatusSqlDao.createOverdueStatus(overdueStatus);

                        previousStartDate = state.getTimestamp();
                    }
                }

                log.info("Finished rebuilding overdue statuses for bundle id {}", bundleId);
                return null;
            }
        });
    }
}