mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 07:09:48 +03:00
fbf4952d14
refs cb26fd9305
- Rename in line with the changes in referenced commit
123 lines
3.8 KiB
JavaScript
123 lines
3.8 KiB
JavaScript
import MemberImportError from 'ghost-admin/errors/member-import-error';
|
|
import Service, {inject as service} from '@ember/service';
|
|
import validator from 'validator';
|
|
|
|
export default Service.extend({
|
|
ajax: service(),
|
|
membersUtils: service(),
|
|
ghostPaths: service(),
|
|
|
|
async check(data) {
|
|
if (!data || !data.length) {
|
|
return [new MemberImportError('File is empty, nothing to import. Please select a different file.')];
|
|
}
|
|
|
|
let validatedSet = [];
|
|
let validationSampleSize = 15;
|
|
let validationResults = [];
|
|
|
|
if (data && data.length > validationSampleSize) {
|
|
// validated data size is larger than sample size take 3
|
|
// equal parts from head, tail and middle of the data set
|
|
const partitionSize = validationSampleSize / 3;
|
|
|
|
const head = data.slice(0, partitionSize);
|
|
const tail = data.slice((data.length - partitionSize), data.length);
|
|
|
|
const middleIndex = Math.floor(data.length / 2);
|
|
const middleStartIndex = middleIndex - 2;
|
|
const middleEndIndex = middleIndex + 3;
|
|
const middle = data.slice(middleStartIndex, middleEndIndex);
|
|
|
|
validatedSet.push(...head);
|
|
validatedSet.push(...middle);
|
|
validatedSet.push(...tail);
|
|
} else {
|
|
validatedSet = data;
|
|
}
|
|
|
|
let emailValidation = this._checkEmails(validatedSet);
|
|
if (emailValidation !== true) {
|
|
validationResults.push(new MemberImportError('Emails in provided data don\'t appear to be valid email addresses.'));
|
|
}
|
|
|
|
const hasStripeId = this._containsRecordsWithStripeId(validatedSet);
|
|
|
|
if (hasStripeId) {
|
|
let stripeLocalValidation = this._checkStripeLocal(validatedSet);
|
|
if (stripeLocalValidation !== true) {
|
|
validationResults.push(new MemberImportError('Stripe customer IDs exist in the data, but no stripe account is connected.'));
|
|
}
|
|
|
|
if (stripeLocalValidation === true && this.membersUtils.isStripeEnabled) {
|
|
let stripeSeverValidation = await this._checkStripeServer(validatedSet);
|
|
if (stripeSeverValidation !== true) {
|
|
validationResults.push(new MemberImportError('Stripe customer IDs exist in the data, but we could not find such customer in connected Stripe account'));
|
|
}
|
|
}
|
|
}
|
|
|
|
if (validationResults.length) {
|
|
return validationResults;
|
|
} else {
|
|
return true;
|
|
}
|
|
},
|
|
|
|
_containsRecordsWithStripeId(validatedSet) {
|
|
let memberWithStripeId = validatedSet.find(m => !!(m.stripe_customer_id));
|
|
return !!memberWithStripeId;
|
|
},
|
|
|
|
_checkEmails(validatedSet) {
|
|
let result = true;
|
|
|
|
validatedSet.forEach((member) => {
|
|
if (!member.email) {
|
|
result = false;
|
|
}
|
|
|
|
if (member.email && !validator.isEmail(member.email)) {
|
|
result = false;
|
|
}
|
|
});
|
|
|
|
return result;
|
|
},
|
|
|
|
_checkStripeLocal(validatedSet) {
|
|
let result = true;
|
|
|
|
if (!this.membersUtils.isStripeEnabled) {
|
|
validatedSet.forEach((member) => {
|
|
if (member.stripe_customer_id) {
|
|
result = false;
|
|
}
|
|
});
|
|
}
|
|
|
|
return result;
|
|
},
|
|
|
|
async _checkStripeServer(validatedSet) {
|
|
const url = this.ghostPaths.get('url').api('members/upload/validate');
|
|
|
|
let response;
|
|
try {
|
|
response = await this.ajax.post(url, {
|
|
data: {
|
|
members: validatedSet
|
|
}
|
|
});
|
|
} catch (e) {
|
|
return false;
|
|
}
|
|
|
|
if (response.errors) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
});
|