mozilla / blurts-server

Mozilla Monitor arms you with tools to keep your personal information safe. Find out what hackers already know about you and learn how to stay a step ahead of them.
https://monitor.mozilla.org
Mozilla Public License 2.0
731 stars 205 forks source link

Define (and hopefully automate) process for uploading PNG logos #387

Closed groovecoder closed 4 years ago

groovecoder commented 6 years ago

Many email clients do not display SVGs.

In https://github.com/mozilla/blurts-server/pull/381 we add PNGs for existing breach logos so that the Report emails will display them.

But we need a process for uploading PNG logos for new breaches so the breach notification emails will render them nicely.

Some options:

pdehaan commented 6 years ago

@lesleyjanenorton How are you handling logos for new breaches currently? What tool(s) were you using to convert from GIF/JPG/SVG into PNG?

lesleyjanenorton commented 6 years ago

Currently, I'm grabbing them from HIBP as needed. Tools and processes for converting have been many and varied and inefficient. The last batch was combination of Inkscape, Photoshop, Illustrator, and TinyPNG.

pdehaan commented 6 years ago

lesleyjanenorton commented 6 years ago

exactly

groovecoder commented 6 years ago

Filed https://github.com/mozilla/blurts-server/issues/402 for a default breach site icon to use.

pdehaan commented 5 years ago

Here was my CLI script for downloading all the logos from HIBP. Verified w/ the new LogoPath API and @lesleyjanenorton's fancy RegExp for extracting filenames from the full path.

const fs = require("fs");
const path = require("path");
const stream = require("stream");
const promisify = require("util").promisify;

const fastimage = require("fastimage");
const got = require("got");

const finished = promisify(stream.finished);

const LOGO_DIR = "./public/img/logos"

// downloadLogos(LOGO_DIR);

localLogos(LOGO_DIR);

async function localLogos(inputDir="logos") {
  const logos = fs.readdirSync(inputDir);
  console.log("| LOGO | WIDTH | HEIGHT | SIZE (KB) | PANIC |\n|:-----|------:|-------:|----------:|:------|");

  for (let logo of logos) {
    const filename = path.join(inputDir, logo);
    const info = await fastimage.info(filename);
    console.log(`| ${logo} | ${info.width} | ${info.height} | ${Math.ceil(info.size/1024)} | ${":exclamation:".repeat(info.size / 1024 / 10)}`);
  }
}

async function downloadLogos(outputDir="logos") {
  const breaches = await downloadBreaches();
  const logos = breaches.reduce((set, breach) => set.add(breach.LogoPath), new Set());
  const newLogos = [];

  for (const logo of logos) {
    const filename = /[^/]*$/.exec(logo)[0];
    const outputFile = path.join(outputDir, filename);

    if (!fs.existsSync(outputFile)) {
      const info = await downloadLogo(logo, outputFile);
      newLogos.push(info);
    }
  }
  if (newLogos.length) {
    console.log(JSON.stringify(newLogos, null, 2));
  } else {
    // console.log([]);
  }
}

async function downloadBreaches(server="https://haveibeenpwned.com/api/v2/breaches") {
  const res = await got.get(server, {json: true});
  return res.body;
}

async function downloadLogo(logoUrl, outputFile) {
  const stream = got.stream(logoUrl)
    .pipe(fs.createWriteStream(outputFile));

  await finished(stream);
  return fastimage.info(outputFile);
}

UPDATE: I was playing w/ fastimage to get a rough sense of dimensions and file sizes, and here's the results:

Clicko-expando 🎉 | LOGO | WIDTH | HEIGHT | SIZE (KB) | PANIC | |:-----|------:|-------:|----------:|:------| | 000webhost.png | 145 | 123 | 3 | | 126.png | 231 | 119 | 3 | | 17173.png | 115 | 37 | 3 | | 17Media.png | 500 | 305 | 2 | | 2fast4u.png | 101 | 40 | 3 | | 7k7k.png | 115 | 41 | 4 | | 8tracks.png | 115 | 30 | 2 | | AIType.png | 115 | 31 | 3 | | AKP.png | 115 | 136 | 6 | | Abandonia.png | 115 | 111 | 5 | | AbuseWithUs.png | 115 | 23 | 6 | | AcneOrg.png | 587 | 584 | 8 | | Adapt.png | 115 | 33 | 2 | | Adobe.png | 417 | 358 | 4 | | AdultFanFiction.png | 115 | 115 | 7 | | AdultFriendFinder.png | 233 | 26 | 2 | | AhaShare.png | 600 | 71 | 8 | | Aipai.png | 115 | 36 | 9 | | Ancestry.png | 500 | 91 | 5 | | AndroidForums.png | 234 | 29 | 3 | | Apollo.png | 481 | 101 | 8 | | ArmyForceOnline.png | 560 | 75 | 55 | :exclamation::exclamation::exclamation::exclamation::exclamation: | AshleyMadison.png | 500 | 482 | 9 | | AstroPID.png | 600 | 203 | 8 | | Aternos.png | 115 | 24 | 2 | | AtlasQuantum.png | 500 | 172 | 7 | | Autocentrum.png | 500 | 86 | 6 | | Avast.png | 201 | 202 | 3 | | BTCE.png | 136 | 37 | 3 | | BTSec.png | 500 | 203 | 5 | | BabyNames.png | 115 | 115 | 5 | | Badoo.png | 500 | 144 | 7 | | BattlefieldHeroes.png | 463 | 144 | 9 | | BeautifulPeople.png | 333 | 59 | 15 | :exclamation: | Bell.png | 500 | 286 | 7 | | Bestialitysextaboo.png | 115 | 19 | 2 | | BigMoneyJobs.png | 417 | 256 | 4 | | BinWeevils.png | 140 | 94 | 17 | :exclamation: | BiohackMe.png | 75 | 73 | 3 | | BitTorrent.png | 115 | 31 | 6 | | BitcoinTalk.png | 600 | 64 | 5 | | Bitly.png | 600 | 300 | 5 | | BlackHatWorld.png | 312 | 55 | 33 | :exclamation::exclamation::exclamation: | BlueSnapRegpack.png | 115 | 47 | 10 | | Bolt.png | 115 | 30 | 3 | | BotOfLegends.png | 278 | 49 | 6 | | Boxee.png | 587 | 587 | 6 | | Brazzers.png | 115 | 10 | 3 | | BusinessAcumen.png | 726 | 271 | 6 | | CDProjektRed.png | 72 | 117 | 3 | | COMELEC.png | 182 | 182 | 67 | :exclamation::exclamation::exclamation::exclamation::exclamation::exclamation: | CafeMom.png | 115 | 19 | 2 | | CannabisForum.png | 500 | 272 | 13 | :exclamation: | CashCrate.png | 115 | 96 | 8 | | CheapAssGamer.png | 115 | 15 | 2 | | CivilOnline.png | 115 | 39 | 5 | | ClixSense.png | 221 | 48 | 2 | | CloudPets.png | 115 | 63 | 4 | | Coachella.png | 115 | 17 | 2 | | Comcast.png | 730 | 420 | 9 | | CouponMomAndArmorGames.png | 115 | 39 | 7 | | CrackCommunity.png | 294 | 164 | 41 | :exclamation::exclamation::exclamation::exclamation: | CrackingForum.png | 115 | 24 | 2 | | Creative.png | 500 | 93 | 4 | | CrimeAgencyVBulletin.png | 643 | 163 | 4 | | CrossFire.png | 727 | 114 | 18 | :exclamation: | DDO.png | 225 | 91 | 44 | :exclamation::exclamation::exclamation::exclamation: | DLH.png | 236 | 90 | 5 | | DVDShopCH.png | 115 | 36 | 3 | | DaFont.png | 120 | 163 | 4 | | Dailymotion.png | 500 | 89 | 4 | | DaniWeb.png | 250 | 26 | 2 | | DietCom.png | 115 | 23 | 2 | | Disqus.png | 500 | 125 | 3 | | Dodonew.png | 300 | 145 | 31 | :exclamation::exclamation::exclamation: | Dominos.png | 500 | 500 | 7 | | Dropbox.png | 500 | 465 | 5 | | Duowan.png | 115 | 29 | 3 | | Edmodo.png | 1010 | 1093 | 17 | :exclamation: | Elance.png | 115 | 29 | 2 | | Email.png | 115 | 115 | 5 | | EpicGames.png | 400 | 457 | 11 | :exclamation: | Eroticy.png | 341 | 79 | 3 | | Estonia.png | 500 | 318 | 1 | | Ethereum.png | 500 | 814 | 7 | | Evermotion.png | 134 | 29 | 3 | | Evony.png | 115 | 46 | 5 | | Exactis.png | 115 | 18 | 2 | | Experian.png | 509 | 148 | 4 | | FFShrine.png | 85 | 90 | 12 | :exclamation: | FLVS.png | 115 | 56 | 2 | | Facepunch.png | 115 | 115 | 3 | | FashionFantasyGame.png | 600 | 238 | 4 | | FlashFlashRevolution.png | 115 | 25 | 2 | | Flashback.png | 500 | 101 | 8 | | Fling.png | 600 | 271 | 3 | | Forbes.png | 628 | 158 | 6 | | FoxyBingo.png | 298 | 113 | 41 | :exclamation::exclamation::exclamation::exclamation: | FreedomHostingII.png | 500 | 60 | 6 | | FreshMenu.png | 108 | 115 | 7 | | Fridae.png | 433 | 325 | 3 | | Funimation.png | 115 | 16 | 2 | | FunnyGames.png | 115 | 59 | 6 | | FurAffinity.png | 180 | 103 | 6 | | GFAN.png | 165 | 65 | 5 | | GTAGaming.png | 115 | 26 | 2 | | Gaadi.png | 115 | 38 | 3 | | GameTuts.png | 115 | 115 | 8 | | GamerzPlanet.png | 318 | 42 | 20 | :exclamation: | Gamigo.png | 199 | 67 | 10 | | Gawker.png | 418 | 289 | 6 | | GeekedIn.png | 77 | 93 | 7 | | HIAPK.png | 115 | 58 | 4 | | HLTV.png | 115 | 35 | 3 | | HTHStudios.png | 115 | 43 | 4 | | HackForums.png | 500 | 207 | 4 | | HackingTeam.png | 500 | 75 | 5 | | HealthNowNetworks.png | 115 | 113 | 3 | | Hemmakvall.png | 403 | 60 | 4 | | Hemmelig.png | 500 | 179 | 6 | | HeroesOfGaia.png | 115 | 77 | 18 | :exclamation: | HeroesOfNewerth.png | 115 | 54 | 14 | :exclamation: | HongFire.png | 88 | 80 | 4 | | HoundDawgs.png | 115 | 65 | 5 | | IGF.png | 613 | 414 | 3 | | ILikeCheats.png | 115 | 27 | 3 | | Insanelyi.png | 692 | 167 | 7 | | Interpals.png | 115 | 34 | 5 | | JobStreet.png | 115 | 18 | 2 | | JoomlArt.png | 115 | 21 | 1 | | JustDate.png | 500 | 158 | 5 | | KMRU.png | 500 | 107 | 5 | | Kickstarter.png | 1948 | 228 | 13 | :exclamation: | Kimsufi.png | 262 | 46 | 2 | | KnownCircle.png | 115 | 115 | 3 | | LOTR.png | 244 | 115 | 53 | :exclamation::exclamation::exclamation::exclamation::exclamation: | Lanwar.png | 115 | 115 | 4 | | Lastfm.png | 500 | 126 | 8 | | LeagueOfLegends.png | 115 | 43 | 5 | | Leet.png | 115 | 60 | 2 | | Lifeboat.png | 500 | 98 | 5 | | LightsHope.png | 500 | 518 | 13 | :exclamation: | LinkedIn.png | 417 | 417 | 3 | | LinuxForums.png | 115 | 26 | 3 | | LinuxMint.png | 500 | 375 | 14 | :exclamation: | List.png | 860 | 908 | 7 | | LittleMonsters.png | 500 | 246 | 8 | | LizardSquad.png | 359 | 359 | 54 | :exclamation::exclamation::exclamation::exclamation::exclamation: | Lookbook.png | 302 | 33 | 1 | | LoungeBoard.png | 930 | 375 | 10 | | LyricsMania.png | 93 | 115 | 2 | | MCBans.png | 115 | 36 | 7 | | MDPI.png | 115 | 76 | 2 | | MPGH.png | 111 | 29 | 2 | | Mac-Torrents.png | 260 | 36 | 4 | | MacForums.png | 115 | 57 | 3 | | MailRu.png | 500 | 102 | 5 | | MajorGeeks.png | 180 | 90 | 6 | | MallCZ.png | 708 | 192 | 5 | | Malwarebytes.png | 115 | 99 | 5 | | MangaFox.png | 180 | 30 | 4 | | MangaTraders.png | 400 | 92 | 11 | :exclamation: | MasterDeeds.png | 300 | 200 | 3 | | Mate1.png | 928 | 259 | 7 | | MinecraftPocketEditionForum.png | 500 | 83 | 5 | | MinecraftWorldMap.png | 115 | 115 | 28 | :exclamation::exclamation: | Minefield.png | 143 | 169 | 38 | :exclamation::exclamation::exclamation: | MoDaCo.png | 115 | 49 | 2 | | ModernBusinessSolutions.png | 125 | 70 | 4 | | MoneyBookers.png | 400 | 195 | 5 | | MortalOnline.png | 115 | 43 | 3 | | MrExcel.png | 115 | 17 | 3 | | MuslimDirectory.png | 500 | 60 | 6 | | MuslimMatch.png | 500 | 290 | 3 | | MyFHA.png | 500 | 152 | 8 | | MySpace.png | 848 | 207 | 3 | | MyVidster.png | 115 | 115 | 19 | :exclamation: | NapsGear.png | 115 | 64 | 4 | | NaughtyAmerica.png | 115 | 31 | 5 | | NemoWeb.png | 115 | 34 | 3 | | Neopets.png | 500 | 145 | 8 | | NetEase.png | 509 | 156 | 6 | | NetProspex.png | 115 | 12 | 2 | | Neteller.png | 500 | 91 | 5 | | Netshoes.png | 500 | 64 | 6 | | NextGenUpdate.png | 500 | 160 | 3 | | NexusMods.png | 190 | 190 | 10 | | Nihonomaru.png | 116 | 57 | 5 | | Nival.png | 284 | 128 | 2 | | NonNudeGirls.png | 97 | 111 | 14 | :exclamation: | Nulled.png | 805 | 207 | 8 | | OVH.png | 287 | 60 | 5 | | Onverse.png | 113 | 115 | 28 | :exclamation::exclamation: | OpenCSGO.png | 777 | 120 | 3 | | OwnedCore.png | 115 | 10 | 4 | | PHPFreaks.png | 332 | 103 | 12 | :exclamation: | PS3Hax.png | 115 | 26 | 5 | | PSPISO.png | 127 | 16 | 1 | | PSX-Scene.png | 115 | 62 | 12 | :exclamation: | PaddyPower.png | 500 | 344 | 2 | | Parapa.png | 412 | 412 | 231 | :exclamation::exclamation::exclamation::exclamation::exclamation::exclamation::exclamation::exclamation::exclamation::exclamation::exclamation::exclamation::exclamation::exclamation::exclamation::exclamation::exclamation::exclamation::exclamation::exclamation::exclamation::exclamation::exclamation: | Patreon.png | 198 | 199 | 3 | | PayAsUGym.png | 90 | 110 | 4 | | PixelFederation.png | 928 | 684 | 15 | :exclamation: | Playgar.png | 115 | 89 | 22 | :exclamation::exclamation: | Plex.png | 400 | 130 | 5 | | Pokebip.png | 133 | 25 | 3 | | PokemonCreed.png | 400 | 376 | 7 | | PokemonNegro.png | 115 | 23 | 3 | | PoliceOne.png | 115 | 28 | 3 | | Powerbot.png | 115 | 15 | 3 | | ProgrammingForums.png | 500 | 46 | 5 | | QIP.png | 992 | 234 | 8 | | QatarNationalBank.png | 500 | 138 | 3 | | QuantumBooter.png | 185 | 70 | 1 | | QuinStreet.png | 163 | 45 | 3 | | R2Games.png | 500 | 569 | 3 | | Rambler.png | 115 | 24 | 7 | | Rankwatch.png | 140 | 38 | 4 | | RbxRocks.png | 115 | 22 | 3 | | RealEstateMogul.png | 115 | 32 | 3 | | RetinaX.png | 500 | 169 | 2 | | Reverb-Nation.png | 115 | 58 | 2 | | RosebuttBoard.png | 500 | 44 | 2 | | RussianAmerica.png | 115 | 91 | 4 | | SIAE.png | 115 | 100 | 2 | | Seedpeer.png | 115 | 100 | 30 | :exclamation::exclamation: | ServerPact.png | 115 | 115 | 9 | | Shotbow.png | 115 | 30 | 3 | | SkTorrent.png | 600 | 89 | 2 | | Smogon.png | 451 | 507 | 22 | :exclamation::exclamation: | Snapchat.png | 500 | 470 | 5 | | Solomid.png | 500 | 500 | 4 | | Sony.png | 418 | 73 | 3 | | Soundwave.png | 115 | 16 | 2 | | Spirol.png | 500 | 516 | 7 | | SprashivaiRu.png | 130 | 28 | 2 | | SpyFone.png | 115 | 29 | 2 | | Staminus.png | 115 | 44 | 3 | | StarNet.png | 500 | 231 | 4 | | SterKinekor.png | 115 | 35 | 2 | | Stratfor.png | 417 | 417 | 5 | | SumoTorrent.png | 151 | 79 | 5 | | SvenskaMagic.png | 115 | 31 | 8 | | SweClockers.png | 115 | 8 | 2 | | TGBUS.png | 90 | 30 | 3 | | TRAI.png | 500 | 485 | 2 | | Taobao.png | 150 | 62 | 5 | | Taringa.png | 163 | 59 | 1 | | Teracod.png | 115 | 32 | 4 | | Tesco.png | 732 | 211 | 6 | | TheCandidBoard.png | 418 | 418 | 7 | | TheFappening.png | 518 | 67 | 4 | | TheFlyOnTheWall.png | 115 | 38 | 2 | | TheTVDB.png | 500 | 47 | 4 | | ThisHabboForum.png | 676 | 113 | 4 | | Tianya.png | 115 | 52 | 7 | | Ticketfly.png | 227 | 228 | 3 | | TorrentInvites.png | 115 | 10 | 2 | | Trillian.png | 115 | 20 | 2 | | TruckersMP.png | 115 | 20 | 4 | | Tumblr.png | 500 | 104 | 3 | | Uiggy.png | 508 | 591 | 5 | | UnderworldEmpire.png | 115 | 43 | 4 | | UnrealEngine.png | 697 | 703 | 5 | | VBulletin.png | 643 | 163 | 4 | | VK.png | 400 | 228 | 6 | | VNG.png | 77 | 115 | 4 | | VTech.png | 400 | 101 | 5 | | VTightGel.png | 115 | 22 | 2 | | Verified.png | 979 | 268 | 3 | | VictoryPhones.png | 115 | 33 | 3 | | ViewFines.png | 115 | 17 | 2 | | Vodafone.png | 417 | 406 | 4 | | WHMCS.png | 600 | 135 | 8 | | WIIUISO.png | 115 | 27 | 3 | | WPSandbox.png | 115 | 103 | 2 | | WPT.png | 474 | 692 | 5 | | WarInc.png | 115 | 115 | 8 | | Warframe.png | 400 | 162 | 2 | | Warmane.png | 95 | 115 | 15 | :exclamation: | WeHeartIt.png | 115 | 115 | 4 | | WhiteRoom.png | 115 | 41 | 4 | | WifeLovers.png | 115 | 25 | 3 | | WildStar.png | 249 | 26 | 6 | | Win7Vista.png | 741 | 310 | 4 | | Wishbone.png | 115 | 23 | 2 | | XPGameSaves.png | 250 | 72 | 9 | | XSplit.png | 71 | 92 | 2 | | Xbox-Scene.png | 115 | 25 | 8 | | Xbox360ISO.png | 198 | 31 | 2 | | Yahoo.png | 417 | 241 | 5 | | Yandex.png | 500 | 197 | 3 | | Yatra.png | 442 | 190 | 8 | | YouPorn.png | 188 | 35 | 7 | | Youku.png | 115 | 21 | 3 | | Zomato.png | 500 | 500 | 4 | | Zoosk.png | 421 | 144 | 5 | | eThekwiniMunicipality.png | 81 | 115 | 13 | :exclamation: | gPotato.png | 115 | 93 | 5 | | iDressup.png | 115 | 32 | 3 | | iMesh.png | 500 | 424 | 5 | | iPmart.png | 159 | 146 | 14 | :exclamation: | imgur.png | 379 | 138 | 3 | | mSpy.png | 500 | 213 | 5 | | myRepoSpace.png | 115 | 102 | 15 | :exclamation: | uTorrent.png | 210 | 210 | 4 | | uuu9.png | 145 | 56 | 5 | | xHamster.png | 190 | 47 | 2 | | xat.png | 115 | 35 | 7 |
lesleyjanenorton commented 4 years ago

closing in favor of #1469