The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/app/importer/server/methods/setupImporter.js

31 lines
964 B

import { Meteor } from 'meteor/meteor';
import { Importers } from '..';
import { hasPermission } from '../../../authorization';
Meteor.methods({
setupImporter(key) {
if (!Meteor.userId()) {
throw new Meteor.Error('error-invalid-user', 'Invalid user', { method: 'setupImporter' });
}
if (!hasPermission(Meteor.userId(), 'run-import')) {
throw new Meteor.Error('error-action-not-allowed', 'Importing is not allowed', { method: 'setupImporter' });
}
const importer = Importers.get(key);
if (!importer) {
console.warn(`Tried to setup ${ name } as an importer.`);
throw new Meteor.Error('error-importer-not-defined', 'The importer was not defined correctly, it is missing the Import class.', { method: 'setupImporter' });
}
if (importer.instance) {
return importer.instance.getProgress();
}
importer.instance = new importer.importer(importer); // eslint-disable-line new-cap
return importer.instance.getProgress();
},
});