| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216 |
- // @ts-check
- const logger = require('@overleaf/logger')
- const ProjectGetter = require('../Project/ProjectGetter')
- const UserGetter = require('../User/UserGetter')
- const SubscriptionLocator = require('./SubscriptionLocator')
- const Settings = require('@overleaf/settings')
- const CollaboratorsGetter = require('../Collaborators/CollaboratorsGetter')
- const CollaboratorsInvitesGetter = require('../Collaborators/CollaboratorsInviteGetter')
- const PrivilegeLevels = require('../Authorization/PrivilegeLevels')
- const {
- callbackify,
- callbackifyMultiResult,
- } = require('@overleaf/promise-utils')
- async function allowedNumberOfCollaboratorsInProject(projectId) {
- const project = await ProjectGetter.promises.getProject(projectId, {
- owner_ref: true,
- })
- return await allowedNumberOfCollaboratorsForUser(project.owner_ref)
- }
- async function allowedNumberOfCollaboratorsForUser(userId) {
- const user = await UserGetter.promises.getUser(userId, { features: 1 })
- if (user.features && user.features.collaborators) {
- return user.features.collaborators
- } else {
- return Settings.defaultFeatures.collaborators
- }
- }
- async function canAcceptEditCollaboratorInvite(projectId) {
- const allowedNumber = await allowedNumberOfCollaboratorsInProject(projectId)
- if (allowedNumber < 0) {
- return true // -1 means unlimited
- }
- const currentEditors =
- await CollaboratorsGetter.promises.getInvitedEditCollaboratorCount(
- projectId
- )
- return currentEditors + 1 <= allowedNumber
- }
- async function canAddXEditCollaborators(
- projectId,
- numberOfNewEditCollaborators
- ) {
- const allowedNumber = await allowedNumberOfCollaboratorsInProject(projectId)
- if (allowedNumber < 0) {
- return true // -1 means unlimited
- }
- const currentEditors =
- await CollaboratorsGetter.promises.getInvitedEditCollaboratorCount(
- projectId
- )
- const editInviteCount =
- await CollaboratorsInvitesGetter.promises.getEditInviteCount(projectId)
- return (
- currentEditors + editInviteCount + numberOfNewEditCollaborators <=
- allowedNumber
- )
- }
- /**
- * Check whether a collaborator can be switched to the given privilege level
- *
- * @param {string} projectId
- * @param {string} userId
- * @param {'readOnly' | 'review' | 'readAndWrite'} privilegeLevel
- * @return {Promise<boolean>}
- */
- async function canChangeCollaboratorPrivilegeLevel(
- projectId,
- userId,
- privilegeLevel
- ) {
- if (privilegeLevel === PrivilegeLevels.READ_ONLY) {
- return true
- }
- const currentPrivilegeLevel =
- await CollaboratorsGetter.promises.getMemberIdPrivilegeLevel(
- userId,
- projectId
- )
- if (
- [PrivilegeLevels.READ_AND_WRITE, PrivilegeLevels.REVIEW].includes(
- currentPrivilegeLevel
- )
- ) {
- // Current collaborator already takes a slot, so changing the privilege
- // level won't increase the collaborator count
- return true
- }
- const allowedNumber = await allowedNumberOfCollaboratorsInProject(projectId)
- if (allowedNumber < 0) {
- // -1 means unlimited
- return true
- }
- const slotsTaken =
- await CollaboratorsGetter.promises.getInvitedEditCollaboratorCount(
- projectId
- )
- const inviteCount =
- await CollaboratorsInvitesGetter.promises.getEditInviteCount(projectId)
- return slotsTaken + inviteCount < allowedNumber
- }
- async function hasPaidSubscription(user) {
- const { hasSubscription, subscription } = await userHasSubscription(user)
- const { isMember } = await userIsMemberOfGroupSubscription(user)
- return {
- hasPaidSubscription: hasSubscription || isMember,
- subscription,
- }
- }
- // alias for backward-compatibility with modules. Use `haspaidsubscription` instead
- async function userHasSubscriptionOrIsGroupMember(user) {
- return await hasPaidSubscription(user)
- }
- async function userHasSubscription(user) {
- const subscription = await SubscriptionLocator.promises.getUsersSubscription(
- user._id
- )
- let hasValidSubscription = false
- if (subscription) {
- if (subscription.recurlySubscription_id || subscription.customAccount) {
- hasValidSubscription = true
- }
- }
- return {
- hasSubscription: hasValidSubscription,
- subscription,
- }
- }
- async function userIsMemberOfGroupSubscription(user) {
- const subscriptions =
- (await SubscriptionLocator.promises.getMemberSubscriptions(user._id)) || []
- return { isMember: subscriptions.length > 0, subscriptions }
- }
- function teamHasReachedMemberLimit(subscription) {
- const currentTotal =
- (subscription.member_ids || []).length +
- (subscription.teamInvites || []).length +
- (subscription.invited_emails || []).length
- return currentTotal >= subscription.membersLimit
- }
- async function hasGroupMembersLimitReached(subscriptionId, callback) {
- const subscription =
- await SubscriptionLocator.promises.getSubscription(subscriptionId)
- if (!subscription) {
- logger.warn({ subscriptionId }, 'no subscription found')
- throw new Error('no subscription found')
- }
- const limitReached = teamHasReachedMemberLimit(subscription)
- return { limitReached, subscription }
- }
- const LimitationsManager = {
- allowedNumberOfCollaboratorsInProject: callbackify(
- allowedNumberOfCollaboratorsInProject
- ),
- allowedNumberOfCollaboratorsForUser: callbackify(
- allowedNumberOfCollaboratorsForUser
- ),
- canAddXEditCollaborators: callbackify(canAddXEditCollaborators),
- canChangeCollaboratorPrivilegeLevel: callbackify(
- canChangeCollaboratorPrivilegeLevel
- ),
- hasPaidSubscription: callbackifyMultiResult(hasPaidSubscription, [
- 'hasPaidSubscription',
- 'subscription',
- ]),
- userHasSubscriptionOrIsGroupMember: callbackifyMultiResult(
- userHasSubscriptionOrIsGroupMember,
- ['hasPaidSubscription', 'subscription']
- ),
- userHasSubscription: callbackifyMultiResult(userHasSubscription, [
- 'hasSubscription',
- 'subscription',
- ]),
- userIsMemberOfGroupSubscription: callbackifyMultiResult(
- userIsMemberOfGroupSubscription,
- ['isMember', 'subscriptions']
- ),
- hasGroupMembersLimitReached: callbackifyMultiResult(
- hasGroupMembersLimitReached,
- ['limitReached', 'subscription']
- ),
- teamHasReachedMemberLimit,
- promises: {
- allowedNumberOfCollaboratorsInProject,
- allowedNumberOfCollaboratorsForUser,
- canAcceptEditCollaboratorInvite,
- canAddXEditCollaborators,
- canChangeCollaboratorPrivilegeLevel,
- hasPaidSubscription,
- userHasSubscriptionOrIsGroupMember,
- userHasSubscription,
- userIsMemberOfGroupSubscription,
- hasGroupMembersLimitReached,
- },
- }
- module.exports = LimitationsManager
|