| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623 |
- <?php
- /*
- * This file is part of Packagist.
- *
- * (c) Jordi Boggiano <j.boggiano@seld.be>
- * Nils Adermann <naderman@naderman.de>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Packagist\WebBundle\Package;
- use Symfony\Component\Filesystem\Filesystem;
- use Composer\Util\Filesystem as ComposerFilesystem;
- use Symfony\Bridge\Doctrine\RegistryInterface;
- use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
- use Symfony\Component\Finder\Finder;
- use Packagist\WebBundle\Entity\Version;
- /**
- * @author Jordi Boggiano <j.boggiano@seld.be>
- */
- class SymlinkDumper
- {
- /**
- * Doctrine
- * @var RegistryInterface
- */
- protected $doctrine;
- /**
- * @var Filesystem
- */
- protected $fs;
- /**
- * @var ComposerFilesystem
- */
- protected $cfs;
- /**
- * @var string
- */
- protected $webDir;
- /**
- * @var string
- */
- protected $buildDir;
- /**
- * @var UrlGeneratorInterface
- */
- protected $router;
- /**
- * Data cache
- * @var array
- */
- private $rootFile;
- /**
- * Data cache
- * @var array
- */
- private $listings = array();
- /**
- * Data cache
- * @var array
- */
- private $individualFiles = array();
- /**
- * Modified times of individual files
- * @var array
- */
- private $individualFilesMtime = array();
- /**
- * Stores all the disk writes to be replicated in the second build dir after the symlink has been swapped
- * @var array
- */
- private $writeLog = array();
- /**
- * Constructor
- *
- * @param RegistryInterface $doctrine
- * @param Filesystem $filesystem
- * @param UrlGeneratorInterface $router
- * @param string $webDir web root
- * @param string $targetDir
- */
- public function __construct(RegistryInterface $doctrine, Filesystem $filesystem, UrlGeneratorInterface $router, $webDir, $targetDir)
- {
- $this->doctrine = $doctrine;
- $this->fs = $filesystem;
- $this->cfs = new ComposerFilesystem;
- $this->router = $router;
- $this->webDir = realpath($webDir);
- $this->buildDir = $targetDir;
- }
- /**
- * Dump a set of packages to the web root
- *
- * @param array $packageIds
- * @param Boolean $force
- * @param Boolean $verbose
- */
- public function dump(array $packageIds, $force = false, $verbose = false)
- {
- $cleanUpOldFiles = date('i') == 0;
- // prepare build dir
- $webDir = $this->webDir;
- $buildDirA = $this->buildDir.'/a';
- $buildDirB = $this->buildDir.'/b';
- // initialize
- $initialRun = false;
- if (!is_dir($buildDirA) || !is_dir($buildDirB)) {
- $initialRun = true;
- if (!$this->removeDirectory($buildDirA) || !$this->removeDirectory($buildDirB)) {
- throw new \RuntimeException('Failed to delete '.$buildDirA.' or '.$buildDirB);
- }
- $this->fs->mkdir($buildDirA);
- $this->fs->mkdir($buildDirB);
- }
- // set build dir to the not-active one
- if (realpath($webDir.'/p') === realpath($buildDirA)) {
- $buildDir = realpath($buildDirB);
- $oldBuildDir = realpath($buildDirA);
- } else {
- $buildDir = realpath($buildDirA);
- $oldBuildDir = realpath($buildDirB);
- }
- // copy existing stuff for smooth BC transition
- if ($initialRun && !$force) {
- if (!file_exists($webDir.'/p') || is_link($webDir.'/p')) {
- @rmdir($buildDir);
- @rmdir($oldBuildDir);
- throw new \RuntimeException('Run this again with --force the first time around to make sure it dumps all packages');
- }
- if ($verbose) {
- echo 'Copying existing files'.PHP_EOL;
- }
- foreach (array($buildDir, $oldBuildDir) as $dir) {
- $this->cloneDir($webDir.'/p', $dir);
- }
- }
- if ($verbose) {
- echo 'Web dir is '.$webDir.'/p ('.realpath($webDir.'/p').')'.PHP_EOL;
- echo 'Build dir is '.$buildDir.PHP_EOL;
- }
- // clean the build dir to start over if we are re-dumping everything
- if ($force) {
- // disable the write log since we copy everything at the end in forced mode
- $this->writeLog = false;
- if ($verbose) {
- echo 'Cleaning up existing files'.PHP_EOL;
- }
- if (!$this->clearDirectory($buildDir)) {
- return false;
- }
- }
- try {
- $modifiedIndividualFiles = array();
- $total = count($packageIds);
- $current = 0;
- $step = 50;
- while ($packageIds) {
- $dumpTime = new \DateTime;
- $packages = $this->doctrine->getRepository('PackagistWebBundle:Package')->getPackagesWithVersions(array_splice($packageIds, 0, $step));
- if ($verbose) {
- echo '['.sprintf('%'.strlen($total).'d', $current).'/'.$total.'] Processing '.$step.' packages'.PHP_EOL;
- }
- $current += $step;
- // prepare packages in memory
- foreach ($packages as $package) {
- $affectedFiles = array();
- $name = strtolower($package->getName());
- // clean up versions in individual files
- if (file_exists($buildDir.'/'.$name.'.files')) {
- $files = json_decode(file_get_contents($buildDir.'/'.$name.'.files'));
- foreach ($files as $file) {
- if (substr_count($file, '/') > 1) { // handle old .files with p/*/*.json paths
- $file = preg_replace('{^p/}', '', $file);
- }
- $this->loadIndividualFile($buildDir.'/'.$file, $file);
- if (isset($this->individualFiles[$file]['packages'][$name])) {
- unset($this->individualFiles[$file]['packages'][$name]);
- $modifiedIndividualFiles[$file] = true;
- }
- }
- }
- // (re)write versions in individual files
- foreach ($package->getVersions() as $version) {
- foreach (array_slice($version->getNames(), 0, 150) as $versionName) {
- if (!preg_match('{^[A-Za-z0-9_-][A-Za-z0-9_.-]*/[A-Za-z0-9_-][A-Za-z0-9_.-]*$}', $versionName) || strpos($versionName, '..')) {
- continue;
- }
- $file = $buildDir.'/'.$versionName.'.json';
- $key = $versionName.'.json';
- $this->dumpVersionToIndividualFile($version, $file, $key);
- $modifiedIndividualFiles[$key] = true;
- $affectedFiles[$key] = true;
- }
- }
- // store affected files to clean up properly in the next update
- $this->fs->mkdir(dirname($buildDir.'/'.$name));
- $this->writeFile($buildDir.'/'.$name.'.files', json_encode(array_keys($affectedFiles)));
- $package->setDumpedAt($dumpTime);
- }
- // update dump dates
- $this->doctrine->getManager()->flush();
- unset($packages, $package, $version);
- $this->doctrine->getManager()->clear();
- if ($current % 250 === 0 || !$packageIds) {
- if ($verbose) {
- echo 'Dumping individual files'.PHP_EOL;
- }
- $this->dumpIndividualFiles($buildDir);
- }
- }
- // prepare individual files listings
- if ($verbose) {
- echo 'Preparing individual files listings'.PHP_EOL;
- }
- $safeFiles = array();
- $individualHashedListings = array();
- $finder = Finder::create()->files()->ignoreVCS(true)->name('*.json')->in($buildDir)->depth('1');
- foreach ($finder as $file) {
- // skip hashed files
- if (strpos($file, '$')) {
- continue;
- }
- $key = basename(dirname($file)).'/'.basename($file);
- if ($force && !isset($modifiedIndividualFiles[$key])) {
- continue;
- }
- // add hashed provider to listing
- $listing = $this->getTargetListing($file);
- $hash = hash_file('sha256', $file);
- $key = substr($key, 0, -5);
- $safeFiles[] = $key.'$'.$hash.'.json';
- $this->listings[$listing]['providers'][$key] = array('sha256' => $hash);
- $individualHashedListings[$listing] = true;
- }
- // prepare root file
- $rootFile = $buildDir.'/packages.json';
- $this->rootFile = array('packages' => array());
- $url = $this->router->generate('track_download', array('name' => 'VND/PKG'));
- $this->rootFile['notify'] = str_replace('VND/PKG', '%package%', $url);
- $this->rootFile['notify-batch'] = $this->router->generate('track_download_batch');
- $this->rootFile['providers-url'] = $this->router->generate('home') . 'p/%package%$%hash%.json';
- $this->rootFile['search'] = $this->router->generate('search', array('_format' => 'json')) . '?q=%query%';
- if ($verbose) {
- echo 'Dumping individual listings'.PHP_EOL;
- }
- // dump listings to build dir
- foreach ($individualHashedListings as $listing => $dummy) {
- list($listingPath, $hash) = $this->dumpListing($buildDir.'/'.$listing);
- $hashedListing = basename($listingPath);
- $this->rootFile['provider-includes']['p/'.str_replace($hash, '%hash%', $hashedListing)] = array('sha256' => $hash);
- $safeFiles[] = $hashedListing;
- }
- if ($verbose) {
- echo 'Dumping root'.PHP_EOL;
- }
- $this->dumpRootFile($rootFile);
- } catch (\Exception $e) {
- // restore files as they were before we started
- $this->cloneDir($oldBuildDir, $buildDir);
- throw $e;
- }
- try {
- if ($verbose) {
- echo 'Putting new files in production'.PHP_EOL;
- }
- // move away old files for BC update
- if ($initialRun && file_exists($webDir.'/p') && !is_link($webDir.'/p')) {
- rename($webDir.'/p', $webDir.'/p-old');
- }
- $this->switchActiveWebDir($webDir, $buildDir);
- } catch (\Exception $e) {
- @symlink($oldBuildDir, $webDir.'/p');
- throw $e;
- }
- try {
- if ($initialRun || !is_link($webDir.'/packages.json') || $force) {
- if ($verbose) {
- echo 'Writing/linking the packages.json'.PHP_EOL;
- }
- if (file_exists($webDir.'/packages.json')) {
- unlink($webDir.'/packages.json');
- }
- if (defined('PHP_WINDOWS_VERSION_BUILD')) {
- $sourcePath = $buildDir.'/packages.json';
- if (!copy($sourcePath, $webDir.'/packages.json')) {
- throw new \RuntimeException('Could not copy the packages.json file');
- }
- } else {
- $sourcePath = 'p/packages.json';
- if (!symlink($sourcePath, $webDir.'/packages.json')) {
- throw new \RuntimeException('Could not symlink the packages.json file');
- }
- }
- }
- } catch (\Exception $e) {
- $this->switchActiveWebDir($webDir, $oldBuildDir);
- throw $e;
- }
- // clean up old dir if present on BC update
- if ($initialRun) {
- $this->removeDirectory($webDir.'/p-old');
- }
- // clean the old build dir if we re-dumped everything
- if ($force) {
- if ($verbose) {
- echo 'Cleaning up old build dir'.PHP_EOL;
- }
- if (!$this->clearDirectory($oldBuildDir)) {
- throw new \RuntimeException('Unrecoverable inconsistent state (old build dir could not be cleared), run with --force again to retry');
- }
- }
- // copy state to old active dir
- if ($force) {
- if ($verbose) {
- echo 'Copying new contents to old build dir to sync up'.PHP_EOL;
- }
- $this->cloneDir($buildDir, $oldBuildDir);
- } else {
- if ($verbose) {
- echo 'Replaying write log in old build dir'.PHP_EOL;
- }
- $this->copyWriteLog($buildDir, $oldBuildDir);
- }
- // clean up old files once an hour
- if (!$force && $cleanUpOldFiles) {
- if ($verbose) {
- echo 'Cleaning up old files'.PHP_EOL;
- }
- $this->cleanOldFiles($buildDir, $oldBuildDir, $safeFiles);
- }
- return true;
- }
- private function switchActiveWebDir($webDir, $buildDir)
- {
- if (defined('PHP_WINDOWS_VERSION_BUILD')) {
- @rmdir($webDir.'/p');
- } else {
- @unlink($webDir.'/p');
- }
- if (!symlink($buildDir, $webDir.'/p')) {
- throw new \RuntimeException('Could not symlink the build dir into the web dir');
- }
- }
- private function cloneDir($source, $target)
- {
- $this->removeDirectory($target);
- exec('cp -rpf '.escapeshellarg($source).' '.escapeshellarg($target), $output, $exit);
- if (0 !== $exit) {
- echo 'Warning, cloning a directory using the php fallback does not keep filemtime, invalid behavior may occur';
- $this->fs->mirror($source, $target, null, array('override' => true));
- }
- }
- private function cleanOldFiles($buildDir, $oldBuildDir, $safeFiles)
- {
- $finder = Finder::create()->directories()->ignoreVCS(true)->in($buildDir);
- foreach ($finder as $vendorDir) {
- $vendorFiles = Finder::create()->files()->ignoreVCS(true)
- ->name('/\$[a-f0-9]+\.json$/')
- ->date('until 10minutes ago')
- ->in((string) $vendorDir);
- foreach ($vendorFiles as $file) {
- $key = strtr(str_replace($buildDir.DIRECTORY_SEPARATOR, '', $file), '\\', '/');
- if (!in_array($key, $safeFiles, true)) {
- unlink((string) $file);
- if (file_exists($altDirFile = str_replace($buildDir, $oldBuildDir, (string) $file))) {
- unlink($altDirFile);
- }
- }
- }
- }
- // clean up old provider listings
- $finder = Finder::create()->depth(0)->files()->name('provider-*.json')->ignoreVCS(true)->in($buildDir)->date('until 10minutes ago');
- $providerFiles = array();
- foreach ($finder as $provider) {
- $key = strtr(str_replace($buildDir.DIRECTORY_SEPARATOR, '', $provider), '\\', '/');
- if (!in_array($key, $safeFiles, true)) {
- unlink((string) $provider);
- if (file_exists($altDirFile = str_replace($buildDir, $oldBuildDir, (string) $provider))) {
- unlink($altDirFile);
- }
- }
- }
- }
- private function dumpRootFile($file)
- {
- // sort all versions and packages to make sha1 consistent
- ksort($this->rootFile['packages']);
- ksort($this->rootFile['provider-includes']);
- foreach ($this->rootFile['packages'] as $package => $versions) {
- ksort($this->rootFile['packages'][$package]);
- }
- $this->writeFile($file, json_encode($this->rootFile));
- }
- private function dumpListing($path)
- {
- $key = basename($path);
- // sort files to make hash consistent
- ksort($this->listings[$key]['providers']);
- $json = json_encode($this->listings[$key]);
- $hash = hash('sha256', $json);
- $path = substr($path, 0, -5) . '$' . $hash . '.json';
- $this->writeFile($path, $json);
- return array($path, $hash);
- }
- private function loadIndividualFile($path, $key)
- {
- if (isset($this->individualFiles[$key])) {
- return;
- }
- if (file_exists($path)) {
- $this->individualFiles[$key] = json_decode(file_get_contents($path), true);
- $this->individualFilesMtime[$key] = filemtime($path);
- } else {
- $this->individualFiles[$key] = array();
- $this->individualFilesMtime[$key] = 0;
- }
- }
- private function dumpIndividualFiles($buildDir)
- {
- // dump individual files to build dir
- foreach ($this->individualFiles as $file => $dummy) {
- $this->dumpIndividualFile($buildDir.'/'.$file, $file);
- }
- $this->individualFiles = array();
- $this->individualFilesMtime = array();
- }
- private function dumpIndividualFile($path, $key)
- {
- // sort all versions and packages to make sha1 consistent
- ksort($this->individualFiles[$key]['packages']);
- foreach ($this->individualFiles[$key]['packages'] as $package => $versions) {
- ksort($this->individualFiles[$key]['packages'][$package]);
- }
- $this->fs->mkdir(dirname($path));
- $json = json_encode($this->individualFiles[$key]);
- $this->writeFile($path, $json, $this->individualFilesMtime[$key]);
- // write the hashed provider file
- $hashedFile = substr($path, 0, -5) . '$' . hash('sha256', $json) . '.json';
- $this->writeFile($hashedFile, $json);
- }
- private function dumpVersionToIndividualFile(Version $version, $file, $key)
- {
- $this->loadIndividualFile($file, $key);
- $data = $version->toArray();
- $data['uid'] = $version->getId();
- $this->individualFiles[$key]['packages'][strtolower($version->getName())][$version->getVersion()] = $data;
- $timestamp = $version->getReleasedAt() ? $version->getReleasedAt()->getTimestamp() : time();
- if (!isset($this->individualFilesMtime[$key]) || $this->individualFilesMtime[$key] < $timestamp) {
- $this->individualFilesMtime[$key] = $timestamp;
- }
- }
- private function clearDirectory($path)
- {
- if (!$this->removeDirectory($path)) {
- echo 'Could not remove the build dir entirely, aborting';
- return false;
- }
- $this->fs->mkdir($path);
- return true;
- }
- private function removeDirectory($path)
- {
- $retries = 5;
- do {
- if (!$this->cfs->removeDirectory($path)) {
- usleep(200);
- }
- clearstatcache();
- } while (is_dir($path) && $retries--);
- return !is_dir($path);
- }
- private function getTargetListingBlocks($now)
- {
- $blocks = array();
- // monday last week
- $blocks['latest'] = strtotime('monday last week', $now);
- $month = date('n', $now);
- $month = ceil($month / 3) * 3 - 2; // 1 for months 1-3, 10 for months 10-12
- $block = new \DateTime(date('Y', $now).'-'.$month.'-01'); // 1st day of current trimester
- // split last 12 months in 4 trimesters
- for ($i=0; $i < 4; $i++) {
- $blocks[$block->format('Y-m')] = $block->getTimestamp();
- $block->sub(new \DateInterval('P3M'));
- }
- $year = (int) $block->format('Y');
- while ($year >= 2012) {
- $blocks[''.$year] = strtotime($year.'-01-01');
- $year--;
- }
- return $blocks;
- }
- private function getTargetListing($file)
- {
- static $blocks;
- if (!$blocks) {
- $blocks = $this->getTargetListingBlocks(time());
- }
- $mtime = filemtime($file);
- foreach ($blocks as $label => $block) {
- if ($mtime >= $block) {
- return "provider-${label}.json";
- }
- }
- return "provider-archived.json";
- }
- private function writeFile($path, $contents, $mtime = null)
- {
- file_put_contents($path, $contents);
- if ($mtime !== null) {
- touch($path, $mtime);
- }
- if (is_array($this->writeLog)) {
- $this->writeLog[$path] = array($contents, $mtime);
- }
- }
- private function copyWriteLog($from, $to)
- {
- foreach ($this->writeLog as $path => $op) {
- $path = str_replace($from, $to, $path);
- $this->fs->mkdir(dirname($path));
- file_put_contents($path, $op[0]);
- if ($op[1] !== null) {
- touch($path, $op[1]);
- }
- }
- }
- }
|