From 580c3f4ffe9608d2beb56d418c68b3b112420e76 Mon Sep 17 00:00:00 2001 From: Mario Date: Sun, 10 Nov 2019 12:49:51 +0000 Subject: another bulk of composer updates (cherry picked from commit 6685381fd8db507493c3d7c1793f8c05c681bbce) --- .../commerceguys/intl/scripts/country/generate.php | 216 --------------------- 1 file changed, 216 deletions(-) delete mode 100644 vendor/commerceguys/intl/scripts/country/generate.php (limited to 'vendor/commerceguys/intl/scripts/country/generate.php') diff --git a/vendor/commerceguys/intl/scripts/country/generate.php b/vendor/commerceguys/intl/scripts/country/generate.php deleted file mode 100644 index ce156919a..000000000 --- a/vendor/commerceguys/intl/scripts/country/generate.php +++ /dev/null @@ -1,216 +0,0 @@ - $countryName) { - if (is_numeric($countryCode) || in_array($countryCode, $ignoredCountries)) { - // Ignore continents, regions, uninhabited islands. - continue; - } - if (strpos($countryCode, '-alt-') !== false) { - // Ignore alternative names. - continue; - } - - // Countries are not guaranteed to have an alpha3 and/or numeric code. - if (isset($codeMappings[$countryCode]['_alpha3'])) { - $baseData[$countryCode]['three_letter_code'] = $codeMappings[$countryCode]['_alpha3']; - } - if (isset($codeMappings[$countryCode]['_numeric'])) { - $baseData[$countryCode]['numeric_code'] = $codeMappings[$countryCode]['_numeric']; - } - - // Determine the current currency for this country. - if (isset($currencyData['region'][$countryCode])) { - $currencies = prepare_currencies($currencyData['region'][$countryCode]); - if ($currencies) { - $currentCurrency = end(array_keys($currencies)); - $baseData[$countryCode]['currency_code'] = $currentCurrency; - } - } -} - -// Write out base.json. -ksort($baseData); -file_put_json('base.json', $baseData); - -// Gather available locales. -$locales = []; -if ($handle = opendir($localeDirectory)) { - while (false !== ($entry = readdir($handle))) { - if (substr($entry, 0, 1) != '.') { - $entryParts = explode('-', $entry); - if (!in_array($entry, $ignoredLocales) && !in_array($entryParts[0], $ignoredLocales)) { - $locales[] = $entry; - } - } - } - closedir($handle); -} - -// Create the localizations. -$countries = []; -$untranslatedCounts = []; -foreach ($locales as $locale) { - $data = json_decode(file_get_contents($localeDirectory . $locale . '/territories.json'), true); - $data = $data['main'][$locale]['localeDisplayNames']['territories']; - foreach ($data as $countryCode => $countryName) { - if (isset($baseData[$countryCode])) { - // This country name is untranslated, use the english version. - if ($countryCode == str_replace('_', '-', $countryName)) { - $countryName = $countryData[$countryCode]; - // Maintain a count of untranslated countries per locale. - $untranslatedCounts += [$locale => 0]; - $untranslatedCounts[$locale]++; - } - - $countries[$locale][$countryCode] = [ - 'name' => $countryName, - ]; - } - } -} - -// Ignore locales that are more than 80% untranslated. -foreach ($untranslatedCounts as $locale => $count) { - $totalCount = count($countries[$locale]); - $untranslatedPercentage = $count * (100 / $totalCount); - if ($untranslatedPercentage >= 80) { - unset($countries[$locale]); - } -} - -// Identify localizations that are the same as the ones for the parent locale. -// For example, "fr-FR" if "fr" has the same data. -$duplicates = []; -foreach ($countries as $locale => $localizedCountries) { - if (strpos($locale, '-') !== false) { - $localeParts = explode('-', $locale); - array_pop($localeParts); - $parentLocale = implode('-', $localeParts); - $diff = array_udiff($localizedCountries, $countries[$parentLocale], function ($first, $second) { - return ($first['name'] == $second['name']) ? 0 : 1; - }); - - if (empty($diff)) { - // The duplicates are not removed right away because they might - // still be needed for other duplicate checks (for example, - // when there are locales like bs-Latn-BA, bs-Latn, bs). - $duplicates[] = $locale; - } - } -} -// Remove the duplicates. -foreach ($duplicates as $locale) { - unset($countries[$locale]); -} - -// Write out the localizations. -foreach ($countries as $locale => $localizedCountries) { - $collator = collator_create($locale); - uasort($localizedCountries, function ($a, $b) use ($collator) { - return collator_compare($collator, $a['name'], $b['name']); - }); - file_put_json($locale . '.json', $localizedCountries); -} - -/** - * Converts the provided data into json and writes it to the disk. - */ -function file_put_json($filename, $data) -{ - $data = json_encode($data, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE); - // Indenting with tabs instead of 4 spaces gives us 20% smaller files. - $data = str_replace(' ', "\t", $data); - file_put_contents($filename, $data); -} - -/** - * Prepares the currencies for a specific country. - */ -function prepare_currencies($currencies) { - if (empty($currencies)) { - return []; - } - // Rekey the array by currency code. - foreach ($currencies as $index => $realCurrencies) { - foreach ($realCurrencies as $currencyCode => $currency) { - $currencies[$currencyCode] = $currency; - } - unset($currencies[$index]); - } - // Remove non-tender currencies. - $currencies = array_filter($currencies, function ($currency) { - return !isset($currency['_tender']) || $currency['_tender'] != 'false'; - }); - // Sort by _from date. - uasort($currencies, 'compare_from_dates'); - - return $currencies; -} - -/** - * uasort callback for comparing arrays using their "_from" dates. - */ -function compare_from_dates($a, $b) { - $a = new DateTime($a['_from']); - $b = new DateTime($b['_from']); - // DateTime overloads the comparison providers. - if ($a == $b) { - return 0; - } - return ($a < $b) ? -1 : 1; -} -- cgit v1.2.3