use of org.killbill.billing.usage.dao.RolledUpUsageModelDao in project killbill by killbill.
the class DefaultUsageUserApi method getRolledUpUnits.
private List<RolledUpUnit> getRolledUpUnits(final List<RolledUpUsageModelDao> usageForSubscription) {
final Map<String, Long> tmp = new HashMap<String, Long>();
for (RolledUpUsageModelDao cur : usageForSubscription) {
Long currentAmount = tmp.get(cur.getUnitType());
Long updatedAmount = (currentAmount != null) ? currentAmount + cur.getAmount() : cur.getAmount();
tmp.put(cur.getUnitType(), updatedAmount);
}
final List<RolledUpUnit> result = new ArrayList<RolledUpUnit>(tmp.size());
for (final String unitType : tmp.keySet()) {
result.add(new DefaultRolledUpUnit(unitType, tmp.get(unitType)));
}
return result;
}
use of org.killbill.billing.usage.dao.RolledUpUsageModelDao in project killbill by killbill.
the class DefaultUsageUserApi method getAllUsageForSubscription.
@Override
public List<RolledUpUsage> getAllUsageForSubscription(final UUID subscriptionId, final List<LocalDate> transitionTimes, final TenantContext tenantContext) {
final InternalTenantContext internalCallContext = internalCallContextFactory.createInternalTenantContext(subscriptionId, ObjectType.SUBSCRIPTION, tenantContext);
List<RolledUpUsage> result = new ArrayList<RolledUpUsage>();
LocalDate prevDate = null;
for (LocalDate curDate : transitionTimes) {
if (prevDate != null) {
final List<RolledUpUsageModelDao> usageForSubscription = rolledUpUsageDao.getAllUsageForSubscription(subscriptionId, prevDate, curDate, internalCallContext);
final List<RolledUpUnit> rolledUpAmount = getRolledUpUnits(usageForSubscription);
result.add(new DefaultRolledUpUsage(subscriptionId, prevDate, curDate, rolledUpAmount));
}
prevDate = curDate;
}
return result;
}
use of org.killbill.billing.usage.dao.RolledUpUsageModelDao in project killbill by killbill.
the class DefaultUsageUserApi method recordRolledUpUsage.
@Override
public void recordRolledUpUsage(final SubscriptionUsageRecord record, final CallContext callContext) throws UsageApiException {
final InternalCallContext internalCallContext = internalCallContextFactory.createInternalCallContext(record.getSubscriptionId(), ObjectType.SUBSCRIPTION, callContext);
// check if we have (at least) one row with the supplied tracking id
if (!Strings.isNullOrEmpty(record.getTrackingId()) && recordsWithTrackingIdExist(record, internalCallContext)) {
throw new UsageApiException(ErrorCode.USAGE_RECORD_TRACKING_ID_ALREADY_EXISTS, record.getTrackingId());
}
final List<RolledUpUsageModelDao> usages = new ArrayList<RolledUpUsageModelDao>();
for (final UnitUsageRecord unitUsageRecord : record.getUnitUsageRecord()) {
for (final UsageRecord usageRecord : unitUsageRecord.getDailyAmount()) {
usages.add(new RolledUpUsageModelDao(record.getSubscriptionId(), unitUsageRecord.getUnitType(), usageRecord.getDate(), usageRecord.getAmount(), record.getTrackingId()));
}
}
rolledUpUsageDao.record(usages, internalCallContext);
}
Aggregations