All files / src/profiles/profileSchemas personUtils.js

74.76% Statements 77/103
53.95% Branches 41/76
92.31% Functions 12/13
74.76% Lines 77/103

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199  4x       4x 4x 4x                   4x       4x       4x 4x 2x 2x 2x 2x   4x       4x       4x 4x 2x 2x 2x 2x   4x       4x       4x 4x 4x   4x       4x       4x 4x 4x 8x 4x 4x   4x       4x       4x       4x 4x 1x 4x 4x   4x                               4x         4x       4x       4x       4x   4x 2x     2x       4x       4x   4x 2x     4x       4x       4x   4x 4x   4x 2x   4x 4x   4x 2x   4x 2x     4x 4x       4x       4x       4x         4x   4x 2x 2x     4x    
export function getName(profile) {
  Iif (!profile) {
    return null
  }
 
  let name = null
  Eif (profile.name) {
    name = profile.name
  } else if (profile.givenName || profile.familyName) {
    name = ''
    if (profile.givenName) {
      name = profile.givenName
    }
    if (profile.familyName) {
      name += ` ${profile.familyName}`
    }
  }
  return name
}
 
export function getGivenName(profile) {
  Iif (!profile) {
    return null
  }
 
  let givenName = null
  if (profile.givenName) {
    givenName = profile.givenName
  } else Eif (profile.name) {
    const nameParts = profile.name.split(' ')
    givenName = nameParts.slice(0, -1).join(' ')
  }
  return givenName
}
 
export function getFamilyName(profile) {
  Iif (!profile) {
    return null
  }
 
  let familyName = null
  if (profile.familyName) {
    familyName = profile.familyName
  } else Eif (profile.name) {
    const nameParts = profile.name.split(' ')
    familyName = nameParts.pop()
  }
  return familyName
}
 
export function getDescription(profile) {
  Iif (!profile) {
    return null
  }
 
  let description = null
  Eif (profile.description) {
    description = profile.description
  }
  return description
}
 
export function getAvatarUrl(profile) {
  Iif (!profile) {
    return null
  }
 
  let avatarContentUrl = null
  Eif (profile.image) {
    profile.image.map((image) => {
      if (image.name === 'avatar') {
        avatarContentUrl = image.contentUrl
        return avatarContentUrl
      } else {
        return null
      }
    })
  }
  return avatarContentUrl
}
 
export function getVerifiedAccounts(profile, verifications) {
  Iif (!profile) {
    return null
  }
 
  const filteredAccounts = []
  if (profile.hasOwnProperty('account') && verifications) {
    profile.account.map((account) => {
      let accountIsValid = false
      let proofUrl = null
 
      verifications.map((verification) => {
        if (verification.hasOwnProperty('proof_url')) {
          verification.proofUrl = verification.proof_url
        }
        if (verification.valid
            && verification.service === account.service
            && verification.identifier === account.identifier
            && verification.proofUrl) {
          accountIsValid = true
          proofUrl = verification.proofUrl
          return true
        } else {
          return false
        }
      })
 
      Iif (accountIsValid) {
        account.proofUrl = proofUrl
        filteredAccounts.push(account)
        return account
      } else {
        return null
      }
    })
  }
  return filteredAccounts
}
 
export function getOrganizations(profile) {
  Iif (!profile) {
    return null
  }
 
  const organizations = []
 
  if (profile.hasOwnProperty('worksFor')) {
    return profile.worksFor
  }
 
  return organizations
}
 
export function getConnections(profile) {
  Iif (!profile) {
    return null
  }
 
  let connections = []
 
  if (profile.hasOwnProperty('knows')) {
    connections = profile.knows
  }
 
  return connections
}
 
export function getAddress(profile) {
  Iif (!profile) {
    return null
  }
 
  let addressString = null
 
  Eif (profile.hasOwnProperty('address')) {
    const addressParts = []
 
    if (profile.address.hasOwnProperty('streetAddress')) {
      addressParts.push(profile.address.streetAddress)
    }
    Eif (profile.address.hasOwnProperty('addressLocality')) {
      addressParts.push(profile.address.addressLocality)
    }
    if (profile.address.hasOwnProperty('postalCode')) {
      addressParts.push(profile.address.postalCode)
    }
    if (profile.address.hasOwnProperty('addressCountry')) {
      addressParts.push(profile.address.addressCountry)
    }
 
    Eif (addressParts.length) {
      addressString = addressParts.join(', ')
    }
  }
 
  return addressString
}
 
export function getBirthDate(profile) {
  Iif (!profile) {
    return null
  }
 
  const monthNames = [
    'January', 'February', 'March', 'April', 'May', 'June',
    'July', 'August', 'September', 'October', 'November', 'December'
  ]
 
  let birthDateString = null
 
  if (profile.hasOwnProperty('birthDate')) {
    const date = new Date(profile.birthDate)
    birthDateString = `${monthNames[date.getMonth()]} ${date.getDate()}, ${date.getFullYear()}`
  }
 
  return birthDateString
}