File size: 17,593 Bytes
1c4c66b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 | package targetstate
import (
"context"
"fmt"
"log/slog"
"runtime/debug"
"strings"
"time"
"github.com/alpacahq/alpacadecimal"
"github.com/samber/lo"
"go.opentelemetry.io/otel/attribute"
"go.opentelemetry.io/otel/trace"
"github.com/openmeterio/openmeter/openmeter/productcatalog"
"github.com/openmeterio/openmeter/openmeter/streaming"
"github.com/openmeterio/openmeter/openmeter/subscription"
"github.com/openmeterio/openmeter/pkg/framework/tracex"
"github.com/openmeterio/openmeter/pkg/models"
"github.com/openmeterio/openmeter/pkg/slicesx"
"github.com/openmeterio/openmeter/pkg/timeutil"
)
// TimeInfinity is a big enough time that we can use to represent infinity (biggest possible date for our system).
var (
TimeInfinity = time.Date(9999, 12, 31, 23, 59, 59, 999999999, time.UTC)
maxSafeIter = 1000
)
type PhaseIterator struct {
// sub is the Subscription
sub subscription.SubscriptionView
// phaseCadence is the cadence of the phase that is being iterated
phaseCadence models.CadencedModel
// phase is the phase that is being iterated
phase subscription.SubscriptionPhaseView
// observability
logger *slog.Logger
tracer trace.Tracer
}
type SubscriptionItemWithPeriods struct {
subscription.SubscriptionItemView
// References
UniqueID string
PhaseID string
PhaseKey string
PeriodIndex int
ItemVersion int
// Period Information
// ServicePeriod is the de-facto service period that the item is billed for
ServicePeriod timeutil.ClosedPeriod
// FullServicePeriod is the full service period that the item is billed for (previously nonTruncatedPeriod)
FullServicePeriod timeutil.ClosedPeriod
// BillingPeriod as determined by alignment and service period
BillingPeriod timeutil.ClosedPeriod
}
// PeriodPercentage returns the percentage of the period that is actually billed, compared to the non-truncated period
// can be used to calculate prorated prices
func (r SubscriptionItemWithPeriods) PeriodPercentage() alpacadecimal.Decimal {
fullServicePeriodLength := int64(r.FullServicePeriod.Duration())
// If the period is empty, we can't calculate the percentage, so we return 1 (100%) to prevent
// any proration
if fullServicePeriodLength == 0 {
return alpacadecimal.NewFromInt(1)
}
return alpacadecimal.NewFromInt(int64(r.ServicePeriod.Duration())).Div(alpacadecimal.NewFromInt(fullServicePeriodLength))
}
func (r SubscriptionItemWithPeriods) GetInvoiceAt() time.Time {
// Flat-fee in advance is the only case we bill in advance
if r.Spec.RateCard.AsMeta().Price.Type() == productcatalog.FlatPriceType {
flatFee, _ := r.Spec.RateCard.AsMeta().Price.AsFlat()
if flatFee.PaymentTerm == productcatalog.InAdvancePaymentTerm {
// In advance invoicing
// For in advance invoicing we attempt to incoice at the start of the billing period
return r.BillingPeriod.From
}
}
// All other items are invoiced after the fact, meaning
// - not before its billing period is over
// - not before its service period is over
return lo.Latest(r.ServicePeriod.To, r.BillingPeriod.To)
}
func NewPhaseIterator(logger *slog.Logger, tracer trace.Tracer, subs subscription.SubscriptionView, phaseKey string) (*PhaseIterator, error) {
phase, ok := subs.GetPhaseByKey(phaseKey)
if !ok {
return nil, fmt.Errorf("phase %s not found in subscription %s", phaseKey, subs.Subscription.ID)
}
if phase == nil {
return nil, fmt.Errorf("unexpected nil: phase %s not found in subscription %s", phaseKey, subs.Subscription.ID)
}
phaseCadence, err := subs.Spec.GetPhaseCadence(phaseKey)
if err != nil {
return nil, fmt.Errorf("failed to calculate Cadence for phase %s: %w", phaseKey, err)
}
it := &PhaseIterator{
logger: logger,
tracer: tracer,
sub: subs,
phase: *phase,
phaseCadence: phaseCadence,
}
return it, nil
}
func (it *PhaseIterator) HasInvoicableItems() bool {
// If the phase is 0 length it never activates so no items should be generated whatsoever
if it.phaseCadence.ActiveTo != nil && it.phaseCadence.ActiveTo.Equal(it.phaseCadence.ActiveFrom) {
return false
}
return it.phase.Spec.HasBillables()
}
func (it *PhaseIterator) PhaseEnd() *time.Time {
return it.phaseCadence.ActiveTo
}
func (it *PhaseIterator) PhaseStart() time.Time {
return it.phaseCadence.ActiveFrom
}
// GetMinimumBillableTime returns the minimum time that we can bill for the phase (e.g. the first time we would be
// yielding a line item)
//
// The response always truncated to capture that billing has 1s resolution.
func (it *PhaseIterator) GetMinimumBillableTime() time.Time {
minTime := TimeInfinity
for _, itemsByKey := range it.phase.ItemsByKey {
for _, item := range itemsByKey {
if item.Spec.RateCard.AsMeta().Price == nil {
continue
}
if item.SubscriptionItem.RateCard.AsMeta().Price.Type() == productcatalog.FlatPriceType {
if item.SubscriptionItem.ActiveFrom.Before(minTime) {
minTime = item.SubscriptionItem.ActiveFrom.Truncate(streaming.MinimumWindowSizeDuration)
}
} else {
// Let's make sure that truncation won't filter out the item
period := timeutil.ClosedPeriod{
From: item.SubscriptionItem.ActiveFrom,
To: TimeInfinity,
}
if item.SubscriptionItem.ActiveTo != nil {
period.To = *item.SubscriptionItem.ActiveTo
}
if it.phaseCadence.ActiveTo != nil && period.To.After(*it.phaseCadence.ActiveTo) {
period.To = *it.phaseCadence.ActiveTo
}
period = period.Truncate(streaming.MinimumWindowSizeDuration)
if period.IsEmpty() {
continue
}
if period.From.Before(minTime) {
minTime = period.From
}
}
}
}
return minTime
}
// Generate generates the lines for the phase so that all active subscription item's are generated up to the point
// where either the item gets deactivated or the last item's invoice_at >= iterationEnd and it's period's end is equal to
// or after iterationEnd.
//
// This ensures that we always have the upcoming lines stored on the gathering invoice.
func (it *PhaseIterator) Generate(ctx context.Context, iterationEnd time.Time) ([]SubscriptionItemWithPeriods, error) {
span := tracex.Start[[]SubscriptionItemWithPeriods](ctx, it.tracer, "billing.worker.subscription.phaseiterator.Generate", trace.WithAttributes(
attribute.String("phase_key", it.phase.Spec.PhaseKey),
))
// Given we are truncating to 1s resolution, we need to make sure that iterationEnd contains the last second as a whole.
iterationEnd = iterationEnd.Truncate(streaming.MinimumWindowSizeDuration).Add(streaming.MinimumWindowSizeDuration - time.Nanosecond)
return span.Wrap(func(ctx context.Context) ([]SubscriptionItemWithPeriods, error) {
return it.generateAligned(ctx, iterationEnd)
})
}
func (it *PhaseIterator) generateAligned(ctx context.Context, iterationEnd time.Time) ([]SubscriptionItemWithPeriods, error) {
span := tracex.Start[[]SubscriptionItemWithPeriods](ctx, it.tracer, "billing.worker.subscription.phaseiterator.generateAligned")
return span.Wrap(func(ctx context.Context) ([]SubscriptionItemWithPeriods, error) {
items := []SubscriptionItemWithPeriods{}
for _, itemsByKey := range it.phase.ItemsByKey {
err := slicesx.ForEachUntilWithErr(
itemsByKey,
func(item subscription.SubscriptionItemView, version int) (breaks bool, err error) {
return it.generateForAlignedItemVersion(ctx, item, version, iterationEnd, &items)
},
)
if err != nil {
return nil, err
}
}
return it.truncateItemsIfNeeded(items), nil
})
}
func (it *PhaseIterator) generateForAlignedItemVersion(ctx context.Context, item subscription.SubscriptionItemView, version int, iterationEnd time.Time, items *[]SubscriptionItemWithPeriods) (bool, error) {
span := tracex.Start[bool](ctx, it.tracer, "billing.worker.subscription.phaseiterator.generateForAlignedItemVersion", trace.WithAttributes(
attribute.String("itemKey", item.Spec.ItemKey),
attribute.Int("itemVersion", version),
attribute.String("phaseKey", it.phase.Spec.PhaseKey),
attribute.String("subscriptionId", it.sub.Subscription.ID),
attribute.String("phaseId", it.phase.SubscriptionPhase.ID),
))
return span.Wrap(func(ctx context.Context) (bool, error) {
logger := it.logger.With(
"itemKey", item.Spec.ItemKey,
"itemVersion", version,
"phaseKey", it.phase.Spec.PhaseKey,
"subscriptionId", it.sub.Subscription.ID,
"phaseId", it.phase.SubscriptionPhase.ID,
)
// Let's drop non-billable items
if item.Spec.RateCard.AsMeta().Price == nil {
return false, nil
}
if item.Spec.RateCard.GetBillingCadence() == nil {
generatedItem, err := it.generateOneTimeAlignedItem(item, version)
if err != nil {
logger.ErrorContext(ctx, "failed to generate one-time aligned item", slog.Any("error", err))
return false, err
}
if generatedItem == nil {
// One time item is not billable yet, let's skip it
return true, nil
}
*items = append(*items, *generatedItem)
return false, nil
}
periodIdx := 0
at := item.SubscriptionItem.ActiveFrom
// If the item is already past the subscription end, we can ignore it
if it.sub.Spec.ActiveTo != nil && !at.Before(*it.sub.Spec.ActiveTo) {
return true, nil
}
// Should not happen, being a bit defensive here
if it.phaseCadence.ActiveTo != nil && !at.Before(*it.phaseCadence.ActiveTo) {
return true, nil
}
for {
logger := logger.With("periodIdx", periodIdx, "periodAt", at)
newItem, err := it.generateForAlignedItemVersionPeriod(ctx, logger, item, version, periodIdx, at)
if err != nil {
return false, err
}
// Let's increment
periodIdx = periodIdx + 1
at = newItem.ServicePeriod.To
// Check if we have reached the iteration end based on invoiceAt
if newItem.GetInvoiceAt().After(iterationEnd) {
logger.DebugContext(ctx, "exiting loop due to iteration end", slog.Time("at", at), slog.Time("iterationEnd", iterationEnd), slog.Time("invoiceAt", newItem.GetInvoiceAt()))
break
}
*items = append(*items, newItem)
// We start when the item activates, then advance until either
// 1. it deactivates
if item.SubscriptionItem.ActiveTo != nil && !at.Before(*item.SubscriptionItem.ActiveTo) {
logger.DebugContext(ctx, "exiting loop due to item deactivation", slog.Time("at", at), slog.Time("activeTo", *item.SubscriptionItem.ActiveTo))
break
}
// 2. the phase ends
if it.phaseCadence.ActiveTo != nil && !at.Before(*it.phaseCadence.ActiveTo) {
logger.DebugContext(ctx, "exiting loop due to phase end", slog.Time("at", at), slog.Time("activeTo", *it.phaseCadence.ActiveTo))
break
}
// 4. we reach the max iterations
if periodIdx > maxSafeIter {
logger.ErrorContext(ctx, "max iterations reached", slog.Any("iterator", it), slog.String("stack", string(debug.Stack())))
break
}
logger.DebugContext(ctx, "iterating", slog.Time("at", at))
}
return false, nil
})
}
type generatedVersionPeriodItem struct {
period timeutil.ClosedPeriod
invoiceAt time.Time
index int
item SubscriptionItemWithPeriods
}
func (it *PhaseIterator) generateForAlignedItemVersionPeriod(ctx context.Context, logger *slog.Logger, item subscription.SubscriptionItemView, version int, periodIdx int, at time.Time) (SubscriptionItemWithPeriods, error) {
span := tracex.Start[SubscriptionItemWithPeriods](ctx, it.tracer, "billing.worker.subscription.phaseiterator.generateForAlignedItemVersionPeriod", trace.WithAttributes(
attribute.Int("periodIdx", periodIdx),
attribute.String("periodAt", at.Format(time.RFC3339)),
))
return span.Wrap(func(ctx context.Context) (SubscriptionItemWithPeriods, error) {
var empty SubscriptionItemWithPeriods
billingPeriod, err := it.sub.Spec.GetAlignedBillingPeriodAt(at)
if err != nil {
logger.ErrorContext(ctx, "failed to get aligned billing period", slog.Any("error", err))
return empty, err
}
if it.sub.Spec.BillingAnchor.IsZero() {
return empty, fmt.Errorf("billing anchor is zero for aligned generation, this should not happen")
}
fullServicePeriod, err := item.Spec.GetFullServicePeriodAt(
subscription.GetFullServicePeriodAtInput{
SubscriptionCadence: it.sub.Subscription.CadencedModel,
PhaseCadence: it.phaseCadence,
ItemCadence: item.SubscriptionItem.CadencedModel,
At: at,
AlignedBillingAnchor: it.sub.Spec.BillingAnchor,
},
)
if err != nil {
logger.ErrorContext(ctx, "failed to get full service period", slog.Any("error", err))
return empty, err
}
inter := fullServicePeriod.Open().Intersection(item.SubscriptionItem.CadencedModel.AsPeriod())
// .Intersection() treats zero length periods as non-intersecting (to be consistent with .Contains() calls)
// We need to handle this case separately
if cl, err := item.SubscriptionItem.CadencedModel.AsPeriod().Closed(); err == nil && cl.From.Equal(cl.To) {
inter = lo.ToPtr(cl.Open())
}
servicePeriod, err := inter.Closed()
if err != nil {
logger.ErrorContext(ctx, "failed to get service period", slog.Any("error", err))
return empty, err
}
// Let's build the line
generatedItem := SubscriptionItemWithPeriods{
SubscriptionItemView: item,
UniqueID: strings.Join([]string{
it.sub.Subscription.ID,
it.phase.Spec.PhaseKey,
item.Spec.ItemKey,
fmt.Sprintf("v[%d]", version),
fmt.Sprintf("period[%d]", periodIdx),
}, "/"),
PhaseID: it.phase.SubscriptionPhase.ID,
PhaseKey: it.phase.Spec.PhaseKey,
PeriodIndex: periodIdx,
ItemVersion: version,
ServicePeriod: timeutil.ClosedPeriod{
From: servicePeriod.From,
To: servicePeriod.To,
},
FullServicePeriod: timeutil.ClosedPeriod{
From: fullServicePeriod.From,
To: fullServicePeriod.To,
},
BillingPeriod: timeutil.ClosedPeriod{
From: billingPeriod.From,
To: billingPeriod.To,
},
}
return generatedItem, nil
})
}
func (it *PhaseIterator) truncateItemsIfNeeded(in []SubscriptionItemWithPeriods) []SubscriptionItemWithPeriods {
out := make([]SubscriptionItemWithPeriods, 0, len(in))
// We need to sanitize the output to compensate for the 1second resolution of meters
for _, item := range in {
isFlatPrice := item.Spec.RateCard.AsMeta().Price != nil && item.Spec.RateCard.AsMeta().Price.Type() == productcatalog.FlatPriceType
// We truncate the service period to the meter resolution
item.ServicePeriod = item.ServicePeriod.Truncate(streaming.MinimumWindowSizeDuration)
// We only allow empty service periods for flat prices.
if item.ServicePeriod.IsEmpty() && !isFlatPrice {
continue
}
// Let's truncate the billing period and full service period so that when
// doing any calculations we don't have small rounding errors due to the iterator
// returning ns precision.
item.BillingPeriod = item.BillingPeriod.Truncate(streaming.MinimumWindowSizeDuration)
item.FullServicePeriod = item.FullServicePeriod.Truncate(streaming.MinimumWindowSizeDuration)
out = append(out, item)
}
return out
}
func (it *PhaseIterator) generateOneTimeAlignedItem(item subscription.SubscriptionItemView, versionID int) (*SubscriptionItemWithPeriods, error) {
if item.Spec.RateCard.AsMeta().Price == nil {
return nil, nil
}
itemCadence := item.SubscriptionItem.CadencedModel
billingPeriod, err := it.sub.Spec.GetAlignedBillingPeriodAt(itemCadence.ActiveFrom)
if err != nil {
return nil, fmt.Errorf("failed to get aligned billing period at %s: %w", itemCadence.ActiveFrom, err)
}
fullServicePeriod, err := item.Spec.GetFullServicePeriodAt(
subscription.GetFullServicePeriodAtInput{
SubscriptionCadence: it.sub.Subscription.CadencedModel,
PhaseCadence: it.phaseCadence,
ItemCadence: itemCadence,
At: itemCadence.ActiveFrom,
AlignedBillingAnchor: billingPeriod.From,
},
)
if err != nil {
return nil, fmt.Errorf("failed to get full service period at %s: %w", item.SubscriptionItem.ActiveFrom, err)
}
// The service period is the intersection of the full service period and the item cadence
// As fullServicePeriod is a closed period, this intersection will always have both start and end (be closed)
servicePeriodOpen := fullServicePeriod.Open().Intersection(itemCadence.AsPeriod())
if servicePeriodOpen == nil && fullServicePeriod.Duration() == time.Duration(0) {
// If the service period is an instant, we'll bill at the same time as the service period
servicePeriodOpen = lo.ToPtr(fullServicePeriod.Open())
}
if servicePeriodOpen == nil {
return nil, fmt.Errorf("service period is empty, cadence is [from %s to %s], full service period is [from %s to %s]", itemCadence.ActiveFrom, itemCadence.ActiveTo, fullServicePeriod.From, fullServicePeriod.To)
}
servicePeriod, err := servicePeriodOpen.Closed()
if err != nil {
return nil, fmt.Errorf("failed to get service period: %w", err)
}
return &SubscriptionItemWithPeriods{
SubscriptionItemView: item,
UniqueID: strings.Join([]string{
it.sub.Subscription.ID,
it.phase.Spec.PhaseKey,
item.Spec.ItemKey,
fmt.Sprintf("v[%d]", versionID),
}, "/"),
PhaseID: it.phase.SubscriptionPhase.ID,
PhaseKey: it.phase.Spec.PhaseKey,
PeriodIndex: 0,
ItemVersion: versionID,
ServicePeriod: timeutil.ClosedPeriod{
From: servicePeriod.From,
To: servicePeriod.To,
},
FullServicePeriod: timeutil.ClosedPeriod{
From: fullServicePeriod.From,
To: fullServicePeriod.To,
},
BillingPeriod: timeutil.ClosedPeriod{
From: billingPeriod.From,
To: billingPeriod.To,
},
}, nil
}
|