Files
overleaf-cep/services/web/app/src/models/Subscription.js
T
roo hutton bcbdd0100d Merge pull request #27215 from overleaf/rh-stripe-pause-status
Update features and subscription state when Stripe pause starts and ends

GitOrigin-RevId: 368f5d9b046cfe26e996be336189081b96926713
2025-08-06 08:04:57 +00:00

127 lines
3.0 KiB
JavaScript

const mongoose = require('../infrastructure/Mongoose')
const { TeamInviteSchema } = require('./TeamInvite')
const { Schema } = mongoose
const { ObjectId } = Schema
const SubscriptionSchema = new Schema(
{
admin_id: {
type: ObjectId,
ref: 'User',
index: { unique: true, dropDups: true },
},
manager_ids: {
type: [ObjectId],
ref: 'User',
required: true,
validate: function (managers) {
// require at least one manager
return !!managers.length
},
},
member_ids: [{ type: ObjectId, ref: 'User' }],
groupPolicy: { type: ObjectId, ref: 'GroupPolicy' },
invited_emails: [String],
teamInvites: [TeamInviteSchema],
recurlySubscription_id: String,
lastSuccesfulSubscription: {
planCode: {
type: String,
},
addOns: Schema.Types.Mixed,
},
timesRevertedDueToFailedPayment: { type: Number, default: 0 },
teamName: { type: String },
teamNotice: { type: String },
planCode: { type: String },
groupPlan: { type: Boolean, default: false },
domainCaptureEnabled: { type: Boolean, default: false },
managedUsersEnabled: { type: Boolean, default: false },
membersLimit: { type: Number, default: 0 },
customAccount: Boolean,
features: {
managedUsers: { type: Boolean, default: true },
groupSSO: { type: Boolean, default: true },
domainCapture: { type: Boolean, default: false },
},
addOns: Schema.Types.Mixed,
overleaf: {
id: {
type: Number,
index: {
unique: true,
partialFilterExpression: { 'overleaf.id': { $exists: true } },
},
},
},
recurlyStatus: {
state: {
type: String,
},
trialStartedAt: {
type: Date,
},
trialEndsAt: {
type: Date,
},
},
paymentProvider: {
service: {
type: String,
},
subscriptionId: {
type: String,
},
state: {
type: String,
},
pausePeriodStart: {
type: Date,
},
pausePeriodEnd: {
type: Date,
},
trialStartedAt: {
type: Date,
},
trialEndsAt: {
type: Date,
},
},
collectionMethod: {
type: String,
enum: ['automatic', 'manual'],
default: 'automatic',
},
v1_id: {
type: Number,
required: false,
min: 1,
},
salesforce_id: {
type: String,
required: false,
validate: {
validator: function (salesforceId) {
return (
salesforceId == null ||
salesforceId === '' ||
salesforceId.match(/^(?:[A-Za-z0-9]{15}|[A-Za-z0-9]{18})$/)
)
},
},
},
ssoConfig: { type: ObjectId, ref: 'SSOConfig' },
},
{ minimize: false }
)
// Subscriptions have no v1 data to fetch
SubscriptionSchema.method('fetchV1Data', function (callback) {
callback(null, this)
})
exports.Subscription = mongoose.model('Subscription', SubscriptionSchema)
exports.SubscriptionSchema = SubscriptionSchema