/*
* Copyright 2010-2011 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.payment.core;
import java.util.UUID;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutorService;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.ning.billing.ErrorCode;
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.payment.api.PaymentApiException;
import com.ning.billing.payment.dao.PaymentDao;
import com.ning.billing.payment.dao.PaymentMethodModelDao;
import com.ning.billing.payment.plugin.api.PaymentPluginApi;
import com.ning.billing.payment.provider.PaymentProviderPluginRegistry;
import com.ning.billing.util.bus.Bus;
import com.ning.billing.util.bus.Bus.EventBusException;
import com.ning.billing.util.bus.BusEvent;
import com.ning.billing.util.globallocker.GlobalLock;
import com.ning.billing.util.globallocker.GlobalLocker;
import com.ning.billing.util.globallocker.GlobalLocker.LockerService;
import com.ning.billing.util.globallocker.LockFailedException;
public abstract class ProcessorBase {
private static final int NB_LOCK_TRY = 5;
protected final PaymentProviderPluginRegistry pluginRegistry;
protected final AccountUserApi accountUserApi;
protected final Bus eventBus;
protected final GlobalLocker locker;
protected final ExecutorService executor;
protected final PaymentDao paymentDao;
private static final Logger log = LoggerFactory.getLogger(ProcessorBase.class);
public ProcessorBase(final PaymentProviderPluginRegistry pluginRegistry,
final AccountUserApi accountUserApi,
final Bus eventBus,
final PaymentDao paymentDao,
final GlobalLocker locker,
final ExecutorService executor) {
this.pluginRegistry = pluginRegistry;
this.accountUserApi = accountUserApi;
this.eventBus = eventBus;
this.paymentDao = paymentDao;
this.locker = locker;
this.executor = executor;
}
protected PaymentPluginApi getPaymentProviderPlugin(final String accountKey)
throws AccountApiException, PaymentApiException {
final String paymentProviderName = null;
if (accountKey != null) {
final Account account = accountUserApi.getAccountByKey(accountKey);
return getPaymentProviderPlugin(account);
}
return pluginRegistry.getPlugin(paymentProviderName);
}
protected PaymentPluginApi getPaymentProviderPlugin(final Account account) throws PaymentApiException {
String paymentProviderName = null;
if (account != null) {
final UUID paymentMethodId = account.getPaymentMethodId();
if (paymentMethodId == null) {
throw new PaymentApiException(ErrorCode.PAYMENT_NO_DEFAULT_PAYMENT_METHOD, account.getId());
}
final PaymentMethodModelDao methodDao = paymentDao.getPaymentMethod(paymentMethodId);
if (methodDao == null) {
log.error("Account {} has a non existent default payment method {}!!!", account.getId(), paymentMethodId);
throw new PaymentApiException(ErrorCode.PAYMENT_NO_DEFAULT_PAYMENT_METHOD, account.getId());
}
paymentProviderName = methodDao.getPluginName();
}
return pluginRegistry.getPlugin(paymentProviderName);
}
protected void postPaymentEvent(final BusEvent ev, final UUID accountId) {
if (ev == null) {
return;
}
try {
eventBus.post(ev);
} catch (EventBusException e) {
log.error("Failed to post Payment event event for account {} ", accountId, e);
}
}
public interface WithAccountLockCallback<T> {
public T doOperation() throws PaymentApiException;
}
public static class CallableWithAccountLock<T> implements Callable<T> {
private final GlobalLocker locker;
private final String accountExternalKey;
private final WithAccountLockCallback<T> callback;
public CallableWithAccountLock(final GlobalLocker locker,
final String accountExternalKey,
final WithAccountLockCallback<T> callback) {
this.locker = locker;
this.accountExternalKey = accountExternalKey;
this.callback = callback;
}
@Override
public T call() throws Exception {
return new WithAccountLock<T>().processAccountWithLock(locker, accountExternalKey, callback);
}
}
public static class WithAccountLock<T> {
public T processAccountWithLock(final GlobalLocker locker, final String accountExternalKey, final WithAccountLockCallback<T> callback)
throws PaymentApiException {
GlobalLock lock = null;
try {
lock = locker.lockWithNumberOfTries(LockerService.PAYMENT, accountExternalKey, NB_LOCK_TRY);
return callback.doOperation();
} catch (LockFailedException e) {
final String format = String.format("Failed to lock account %s", accountExternalKey);
log.error(String.format(format), e);
throw new PaymentApiException(ErrorCode.PAYMENT_INTERNAL_ERROR, format);
} finally {
if (lock != null) {
lock.release();
}
}
}
}
}