2024-08-18 06:23:38 +02:00
|
|
|
const path = require('path');
|
2025-08-19 17:15:09 +02:00
|
|
|
const mongoose = require('mongoose');
|
2025-05-30 22:18:13 -04:00
|
|
|
const { User } = require('@librechat/data-schemas').createModels(mongoose);
|
2024-08-18 06:23:38 +02:00
|
|
|
require('module-alias')({ base: path.resolve(__dirname, '..', 'api') });
|
|
|
|
const { sendEmail, checkEmailConfig } = require('~/server/utils');
|
|
|
|
const { askQuestion, silentExit } = require('./helpers');
|
|
|
|
const { createInvite } = require('~/models/inviteUser');
|
|
|
|
const connect = require('./connect');
|
|
|
|
|
|
|
|
(async () => {
|
|
|
|
await connect();
|
|
|
|
|
|
|
|
console.purple('--------------------------');
|
|
|
|
console.purple('Invite a new user account!');
|
|
|
|
console.purple('--------------------------');
|
|
|
|
|
|
|
|
if (process.argv.length < 5) {
|
|
|
|
console.orange('Usage: npm run invite-user <email>');
|
|
|
|
console.orange('Note: if you do not pass in the arguments, you will be prompted for them.');
|
|
|
|
console.purple('--------------------------');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if email service is enabled
|
|
|
|
if (!checkEmailConfig()) {
|
|
|
|
console.red('Error: Email service is not enabled!');
|
|
|
|
silentExit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the email of the user to be invited
|
|
|
|
let email = '';
|
|
|
|
if (process.argv.length >= 3) {
|
|
|
|
email = process.argv[2];
|
|
|
|
}
|
|
|
|
if (!email) {
|
|
|
|
email = await askQuestion('Email:');
|
|
|
|
}
|
|
|
|
// Validate the email
|
|
|
|
if (!email.includes('@')) {
|
|
|
|
console.red('Error: Invalid email address!');
|
|
|
|
silentExit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if the user already exists
|
|
|
|
const userExists = await User.findOne({ email });
|
|
|
|
if (userExists) {
|
|
|
|
console.red('Error: A user with that email already exists!');
|
|
|
|
silentExit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
const token = await createInvite(email);
|
|
|
|
const inviteLink = `${process.env.DOMAIN_CLIENT}/register?token=${token}`;
|
|
|
|
|
|
|
|
const appName = process.env.APP_TITLE || 'LibreChat';
|
|
|
|
|
|
|
|
if (!checkEmailConfig()) {
|
|
|
|
console.green('Send this link to the user:', inviteLink);
|
|
|
|
silentExit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
await sendEmail({
|
|
|
|
email: email,
|
|
|
|
subject: `Invite to join ${appName}!`,
|
|
|
|
payload: {
|
|
|
|
appName: appName,
|
|
|
|
inviteLink: inviteLink,
|
|
|
|
year: new Date().getFullYear(),
|
|
|
|
},
|
|
|
|
template: 'inviteUser.handlebars',
|
|
|
|
});
|
|
|
|
} catch (error) {
|
|
|
|
console.error('Error: ' + error.message);
|
|
|
|
silentExit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Done!
|
|
|
|
console.green('Invitation sent successfully!');
|
|
|
|
silentExit(0);
|
|
|
|
})();
|
|
|
|
|
|
|
|
process.on('uncaughtException', (err) => {
|
|
|
|
if (!err.message.includes('fetch failed')) {
|
|
|
|
console.error('There was an uncaught error:');
|
|
|
|
console.error(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (err.message.includes('fetch failed')) {
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
process.exit(1);
|
|
|
|
}
|
|
|
|
});
|