Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add credits for subscription #2710

Open
wants to merge 6 commits into
base: main
Choose a base branch
from

Conversation

rebelchris
Copy link
Contributor

Add cores to people who complete purchases for plus subscription.
The 1 core value is stores in remoteConfig so we can easily update it.

if (gifter_id) {
await processGiftedPayment({ event });
} else {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Used the else here, otherwise it would also apply on gifters?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I mean probably it should apply, let's check with product

@rebelchris rebelchris requested a review from Copilot March 21, 2025 14:11
Copy link
Contributor

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR adds functionality to assign credits ("cores") to users after completing a standard subscription purchase.

  • Introduces a new function assignSubscriptionCores to calculate and assign cores based on a remote configuration value.
  • Updates the transaction processing flow to differentiate between gifted payments and manual subscription purchases by calling assignSubscriptionCores accordingly.
Comments suppressed due to low confidence (1)

src/routes/webhooks/paddle.ts:543

  • If data.details.totals.grandTotal can include decimals, using parseInt might truncate the value and result in a loss of precision. Consider using parseFloat to handle decimal values if needed.
const total = parseInt(data.details?.totals?.grandTotal || '0');

const total = parseInt(data.details?.totals?.grandTotal || '0');
const coresForPayment = Math.floor(modifier * total);

if (coresForPayment <= 0) {
Copy link
Preview

Copilot AI Mar 21, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The error message 'Cores for payment is less than 0' does not accurately reflect the condition (<= 0) being checked. Consider updating it to 'Cores for payment is 0 or less' for clarity.

Copilot is powered by AI, so mistakes are possible. Review output carefully before use.

Copy link
Contributor

@capJavert capJavert left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good work, nothing blocking, just some comments to verify.

if (gifter_id) {
await processGiftedPayment({ event });
} else {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I mean probably it should apply, let's check with product

}

const modifier = remoteConfig.vars?.coreModifier || 0.001;
const total = parseInt(data.details?.totals?.grandTotal || '0');
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's check with product if they want tax or no tax here?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants