// external modules import * as crypto from "crypto"; import randomcolor from "randomcolor"; import config from "./config"; // core export function generateAvatar(name) { const color = randomcolor({ seed: name, luminosity: 'dark' }) const letter = name.substring(0, 1).toUpperCase() let svg = '' svg += '' svg += '' svg += '' svg += '' svg += '' + letter + '' svg += '' svg += '' svg += '' return svg } export function generateAvatarURL(name, email = '', big = true) { let photo if (typeof email !== 'string') { email = '' + name + '@example.com' } name = encodeURIComponent(name) const hash = crypto.createHash('md5') hash.update(email.toLowerCase()) const hexDigest = hash.digest('hex') if (email !== '' && config.allowGravatar) { photo = 'https://www.gravatar.com/avatar/' + hexDigest if (big) { photo += '?s=400' } else { photo += '?s=96' } } else { photo = config.serverURL + '/user/' + (name || email.substring(0, email.lastIndexOf('@')) || hexDigest) + '/avatar.svg' } return photo }