mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-30 21:40:39 +03:00
436db4ec3b
- limits are based on total members not number of members that will be emailed
33 lines
1.3 KiB
JavaScript
33 lines
1.3 KiB
JavaScript
const config = require('../../../shared/config');
|
|
const db = require('../../data/db');
|
|
const errors = require('@tryghost/errors');
|
|
|
|
// Get total members direct from DB
|
|
// @TODO: determine performance difference between this, normal knex, and using the model layer
|
|
async function getTotalMembers() {
|
|
const isSQLite = config.get('database:client') === 'sqlite3';
|
|
const result = await db.knex.raw('SELECT COUNT(id) AS total FROM members');
|
|
return isSQLite ? result[0].total : result[0][0].total;
|
|
}
|
|
|
|
module.exports = async () => {
|
|
const membersHostLimit = config.get('host_settings:limits:members');
|
|
if (membersHostLimit) {
|
|
const allowedMembersLimit = membersHostLimit.max;
|
|
const hostUpgradeLink = config.get('host_settings:limits').upgrade_url;
|
|
|
|
const totalMembers = await getTotalMembers();
|
|
|
|
if (totalMembers > allowedMembersLimit) {
|
|
throw new errors.HostLimitError({
|
|
message: `Your current plan allows you to have up to ${allowedMembersLimit} members, but you currently have ${totalMembers} members`,
|
|
help: hostUpgradeLink,
|
|
errorDetails: {
|
|
limit: allowedMembersLimit,
|
|
total: totalMembers
|
|
}
|
|
});
|
|
}
|
|
}
|
|
};
|