mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-15 05:37:22 +01:00
133 lines
3.9 KiB
JavaScript
133 lines
3.9 KiB
JavaScript
import find from 'lodash/find';
|
|
import { getAnalyticsServiceByEnvironment } from '../analyticsService';
|
|
import { getCurrentEventList } from '../worldState'; // eslint-disable-line import/no-cycle
|
|
import { // eslint-disable-line import/no-cycle
|
|
getUserInfo,
|
|
sendTxn as txnEmail,
|
|
} from '../email';
|
|
import { sendNotification as sendPushNotification } from '../pushNotifications'; // eslint-disable-line import/no-cycle
|
|
import shared from '../../../common';
|
|
import {
|
|
BadRequest,
|
|
} from '../errors';
|
|
import apiError from '../apiError';
|
|
|
|
const analytics = getAnalyticsServiceByEnvironment();
|
|
|
|
function getGiftMessage (data, byUsername, gemAmount, language) {
|
|
const senderMsg = shared.i18n.t('giftedGemsFull', {
|
|
username: data.gift.member.profile.name,
|
|
sender: byUsername,
|
|
gemAmount,
|
|
}, language);
|
|
|
|
const quotedMessage = `\`${senderMsg}\``;
|
|
|
|
if (data.gift.message) return `${quotedMessage} ${data.gift.message}`;
|
|
|
|
return quotedMessage;
|
|
}
|
|
|
|
async function buyGemGift (data) {
|
|
const byUsername = getUserInfo(data.user, ['name']).name;
|
|
const gemAmount = data.gift.gems.amount || 20;
|
|
|
|
const languages = [data.user.preferences.language, data.gift.member.preferences.language];
|
|
|
|
const senderMsg = getGiftMessage(data, byUsername, gemAmount, languages[0]);
|
|
const receiverMsg = getGiftMessage(data, byUsername, gemAmount, languages[1]);
|
|
data.user.sendMessage(data.gift.member, { receiverMsg, senderMsg, save: false });
|
|
|
|
if (data.gift.member.preferences.emailNotifications.giftedGems !== false) {
|
|
txnEmail(data.gift.member, 'gifted-gems', [
|
|
{ name: 'GIFTER', content: byUsername },
|
|
{ name: 'X_GEMS_GIFTED', content: gemAmount },
|
|
]);
|
|
}
|
|
|
|
// Only send push notifications if sending to a user other than yourself
|
|
if (
|
|
data.gift.member._id !== data.user._id
|
|
&& data.gift.member.preferences.pushNotifications.giftedGems !== false
|
|
) {
|
|
sendPushNotification(
|
|
data.gift.member,
|
|
{
|
|
title: shared.i18n.t('giftedGems', languages[1]),
|
|
message: shared.i18n.t('giftedGemsInfo', { amount: gemAmount, name: byUsername }, languages[1]),
|
|
identifier: 'giftedGems',
|
|
},
|
|
);
|
|
}
|
|
|
|
await data.gift.member.save();
|
|
}
|
|
|
|
const { MAX_GIFT_MESSAGE_LENGTH } = shared.constants;
|
|
export function validateGiftMessage (gift, user) {
|
|
if (gift.message && gift.message.length > MAX_GIFT_MESSAGE_LENGTH) {
|
|
throw new BadRequest(shared.i18n.t(
|
|
'giftMessageTooLong',
|
|
{ maxGiftMessageLength: MAX_GIFT_MESSAGE_LENGTH },
|
|
user.preferences.language,
|
|
));
|
|
}
|
|
}
|
|
|
|
export function getGemsBlock (gemsBlock) {
|
|
const block = shared.content.gems[gemsBlock];
|
|
|
|
if (!block) throw new BadRequest(apiError('invalidGemsBlock'));
|
|
|
|
return block;
|
|
}
|
|
|
|
function getAmountForGems (data) {
|
|
if (data.gift) return data.gift.gems.amount / 4;
|
|
|
|
const { gemsBlock } = data;
|
|
|
|
const currentEventsList = getCurrentEventList();
|
|
const promoEvent = find(currentEventsList, event => Boolean(event.gemsPromo));
|
|
if (promoEvent && promoEvent.gemsPromo[gemsBlock.key]) {
|
|
return promoEvent.gemsPromo[gemsBlock.key] / 4;
|
|
}
|
|
|
|
return gemsBlock.gems / 4;
|
|
}
|
|
|
|
async function updateUserBalance (data, amount) {
|
|
if (data.gift) {
|
|
await data.gift.member.updateBalance(amount, 'gift_receive', data.user._id, data.user.profile.name);
|
|
return;
|
|
}
|
|
|
|
await data.user.updateBalance(amount, 'buy_money');
|
|
}
|
|
|
|
export async function buyGems (data) {
|
|
const amt = getAmountForGems(data);
|
|
|
|
await updateUserBalance(data, amt);
|
|
data.user.purchased.txnCount += 1;
|
|
|
|
if (!data.gift) txnEmail(data.user, 'donation');
|
|
|
|
analytics.trackPurchase({
|
|
uuid: data.user._id,
|
|
itemPurchased: 'Gems',
|
|
sku: `${data.paymentMethod.toLowerCase()}-checkout`,
|
|
purchaseType: 'checkout',
|
|
paymentMethod: data.paymentMethod,
|
|
quantity: 1,
|
|
gift: Boolean(data.gift),
|
|
purchaseValue: amt,
|
|
headers: data.headers,
|
|
firstPurchase: data.user.purchased.txnCount === 1,
|
|
});
|
|
|
|
if (data.gift) await buyGemGift(data);
|
|
|
|
await data.user.save();
|
|
}
|