mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-15 21:57:22 +01:00
45 lines
1.5 KiB
JavaScript
45 lines
1.5 KiB
JavaScript
import mongoose from 'mongoose';
|
|
import validator from 'validator';
|
|
import baseModel from '../libs/baseModel';
|
|
|
|
const { Schema } = mongoose;
|
|
|
|
export const currencies = ['gems', 'hourglasses'];
|
|
export const transactionTypes = ['buy_money', 'buy_gold', 'spend', 'gift_send', 'gifted_with_money', 'gift_receive', 'debug', 'create_challenge', 'create_bank_challenge', 'create_guild', 'change_class', 'rebirth', 'release_pets', 'release_mounts', 'reroll', 'contribution', 'subscription_perks', 'admin_update_balance', 'admin_update_hourglasses'];
|
|
|
|
export const schema = new Schema({
|
|
currency: { $type: String, enum: currencies, required: true },
|
|
transactionType: { $type: String, enum: transactionTypes, required: true },
|
|
reference: { $type: String },
|
|
referenceText: { $type: String },
|
|
amount: { $type: Number, required: true },
|
|
currentAmount: { $type: Number },
|
|
userId: {
|
|
$type: String, ref: 'User', required: true, validate: [v => validator.isUUID(v), 'Invalid uuid for Transaction.'],
|
|
},
|
|
migration: String,
|
|
}, {
|
|
strict: true,
|
|
minimize: false, // So empty objects are returned
|
|
typeKey: '$type', // So that we can use fields named `type`
|
|
});
|
|
|
|
schema.plugin(baseModel, {
|
|
noSet: [
|
|
'id',
|
|
'_id',
|
|
'userId',
|
|
'currency',
|
|
'transactionType',
|
|
'reference',
|
|
'referenceText',
|
|
'amount',
|
|
'currentAmount',
|
|
'migration',
|
|
], // Nothing can be set from the client
|
|
timestamps: true,
|
|
_id: false, // using custom _id
|
|
});
|
|
|
|
export const TransactionModel = mongoose.model('Transaction', schema);
|