2020-06-12 08:22:36 +03:00
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.' ) ) ;
}
2020-06-12 09:28:15 +03:00
if ( stripeLocalValidation === true && this . membersUtils . isStripeEnabled ) {
2020-06-12 08:22:36 +03:00
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 ;
2020-06-12 09:28:15 +03:00
if ( ! this . membersUtils . isStripeEnabled ) {
2020-06-12 08:22:36 +03:00
validatedSet . forEach ( ( member ) => {
if ( member . stripe _customer _id ) {
result = false ;
}
} ) ;
}
return result ;
} ,
async _checkStripeServer ( validatedSet ) {
2020-06-12 14:36:00 +03:00
const url = this . ghostPaths . get ( 'url' ) . api ( 'members/upload/validate' ) ;
2020-06-12 08:22:36 +03:00
let response ;
try {
response = await this . ajax . post ( url , {
data : {
members : validatedSet
}
} ) ;
} catch ( e ) {
return false ;
}
if ( response . errors ) {
return false ;
}
return true ;
}
} ) ;