123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688 |
- <?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 cebe\markdown\GithubMarkdown;
- use Composer\Package\AliasPackage;
- use Composer\Package\PackageInterface;
- use Composer\Repository\RepositoryInterface;
- use Composer\Repository\VcsRepository;
- use Composer\Repository\Vcs\GitHubDriver;
- use Composer\Repository\InvalidRepositoryException;
- use Composer\Util\ErrorHandler;
- use Composer\Util\RemoteFilesystem;
- use Composer\Config;
- use Composer\IO\IOInterface;
- use Packagist\WebBundle\Entity\Author;
- use Packagist\WebBundle\Entity\Package;
- use Packagist\WebBundle\Entity\Tag;
- use Packagist\WebBundle\Entity\Version;
- use Packagist\WebBundle\Entity\VersionRepository;
- use Packagist\WebBundle\Entity\SuggestLink;
- use Symfony\Bridge\Doctrine\RegistryInterface;
- use Doctrine\DBAL\Connection;
- /**
- * @author Jordi Boggiano <j.boggiano@seld.be>
- */
- class Updater
- {
- const UPDATE_EQUAL_REFS = 1;
- const DELETE_BEFORE = 2;
- /**
- * Doctrine
- * @var RegistryInterface
- */
- protected $doctrine;
- /**
- * Supported link types
- * @var array
- */
- protected $supportedLinkTypes = array(
- 'require' => array(
- 'method' => 'getRequires',
- 'entity' => 'RequireLink',
- ),
- 'conflict' => array(
- 'method' => 'getConflicts',
- 'entity' => 'ConflictLink',
- ),
- 'provide' => array(
- 'method' => 'getProvides',
- 'entity' => 'ProvideLink',
- ),
- 'replace' => array(
- 'method' => 'getReplaces',
- 'entity' => 'ReplaceLink',
- ),
- 'devRequire' => array(
- 'method' => 'getDevRequires',
- 'entity' => 'DevRequireLink',
- ),
- );
- /**
- * Constructor
- *
- * @param RegistryInterface $doctrine
- */
- public function __construct(RegistryInterface $doctrine)
- {
- $this->doctrine = $doctrine;
- ErrorHandler::register();
- }
- /**
- * Update a project
- *
- * @param \Packagist\WebBundle\Entity\Package $package
- * @param RepositoryInterface $repository the repository instance used to update from
- * @param int $flags a few of the constants of this class
- */
- public function update(IOInterface $io, Config $config, Package $package, RepositoryInterface $repository, $flags = 0, array $existingVersions = null): Package
- {
- $rfs = new RemoteFilesystem($io, $config);
- $deleteDate = new \DateTime();
- $deleteDate->modify('-1day');
- $em = $this->doctrine->getManager();
- $apc = extension_loaded('apcu');
- $rootIdentifier = null;
- if ($repository instanceof VcsRepository) {
- $cfg = $repository->getRepoConfig();
- if (isset($cfg['url']) && preg_match('{\bgithub\.com\b}i', $cfg['url'])) {
- foreach ($package->getMaintainers() as $maintainer) {
- if (!($newGithubToken = $maintainer->getGithubToken())) {
- continue;
- }
- $valid = null;
- if ($apc) {
- $valid = apcu_fetch('is_token_valid_'.$maintainer->getUsernameCanonical());
- }
- if (true !== $valid) {
- $context = stream_context_create(['http' => ['header' => 'User-agent: packagist-token-check']]);
- $rate = json_decode(@file_get_contents('https://api.github.com/rate_limit?access_token='.$newGithubToken, false, $context), true);
- // invalid/outdated token, wipe it so we don't try it again
- if (!$rate && (strpos($http_response_header[0], '403') || strpos($http_response_header[0], '401'))) {
- $maintainer->setGithubToken(null);
- $em->flush($maintainer);
- continue;
- }
- }
- if ($apc) {
- apcu_store('is_token_valid_'.$maintainer->getUsernameCanonical(), true, 86400);
- }
- $io->setAuthentication('github.com', $newGithubToken, 'x-oauth-basic');
- break;
- }
- }
- if (!$repository->getDriver()) {
- throw new \RuntimeException('Driver could not be established for package '.$package->getName().' ('.$package->getRepository().')');
- }
- $rootIdentifier = $repository->getDriver()->getRootIdentifier();
- }
- $versions = $repository->getPackages();
- usort($versions, function ($a, $b) {
- $aVersion = $a->getVersion();
- $bVersion = $b->getVersion();
- if ($aVersion === '9999999-dev' || 'dev-' === substr($aVersion, 0, 4)) {
- $aVersion = 'dev';
- }
- if ($bVersion === '9999999-dev' || 'dev-' === substr($bVersion, 0, 4)) {
- $bVersion = 'dev';
- }
- $aIsDev = $aVersion === 'dev' || substr($aVersion, -4) === '-dev';
- $bIsDev = $bVersion === 'dev' || substr($bVersion, -4) === '-dev';
- // push dev versions to the end
- if ($aIsDev !== $bIsDev) {
- return $aIsDev ? 1 : -1;
- }
- // equal versions are sorted by date
- if ($aVersion === $bVersion) {
- return $a->getReleaseDate() > $b->getReleaseDate() ? 1 : -1;
- }
- // the rest is sorted by version
- return version_compare($aVersion, $bVersion);
- });
- $versionRepository = $this->doctrine->getRepository('PackagistWebBundle:Version');
- if ($flags & self::DELETE_BEFORE) {
- foreach ($package->getVersions() as $version) {
- $versionRepository->remove($version);
- }
- $em->flush();
- $em->refresh($package);
- }
- if (!$existingVersions) {
- $existingVersions = $versionRepository->getVersionMetadataForUpdate($package);
- }
- $processedVersions = [];
- $lastProcessed = null;
- $idsToMarkUpdated = [];
- foreach ($versions as $version) {
- if ($version instanceof AliasPackage) {
- continue;
- }
- if (isset($processedVersions[strtolower($version->getVersion())])) {
- $io->write('Skipping version '.$version->getPrettyVersion().' (duplicate of '.$processedVersions[strtolower($version->getVersion())]->getPrettyVersion().')', true, IOInterface::VERBOSE);
- continue;
- }
- $processedVersions[strtolower($version->getVersion())] = $version;
- $result = $this->updateInformation($versionRepository, $package, $existingVersions, $version, $flags, $rootIdentifier);
- $lastUpdated = $result['updated'];
- if ($lastUpdated) {
- $em->flush();
- $em->clear();
- $package = $em->merge($package);
- } else {
- $idsToMarkUpdated[] = $result['id'];
- }
- // mark the version processed so we can prune leftover ones
- unset($existingVersions[$result['version']]);
- }
- // mark versions that did not update as updated to avoid them being pruned
- $em->getConnection()->executeUpdate(
- 'UPDATE package_version SET updatedAt = :now, softDeletedAt = NULL WHERE id IN (:ids)',
- ['now' => date('Y-m-d H:i:s'), 'ids' => $idsToMarkUpdated],
- ['ids' => Connection::PARAM_INT_ARRAY]
- );
- // remove outdated versions
- foreach ($existingVersions as $version) {
- if (!is_null($version['softDeletedAt']) && new \DateTime($version['softDeletedAt']) < $deleteDate) {
- $versionRepository->remove($versionRepository->findOneById($version['id']));
- } else {
- // set it to be soft-deleted so next update that occurs after deleteDate (1day) if the
- // version is still missing it will be really removed
- $em->getConnection()->executeUpdate(
- 'UPDATE package_version SET softDeletedAt = :now WHERE id = :id',
- ['now' => date('Y-m-d H:i:s'), 'id' => $version['id']]
- );
- }
- }
- if (preg_match('{^(?:git://|git@|https?://)github.com[:/]([^/]+)/(.+?)(?:\.git|/)?$}i', $package->getRepository(), $match) && $repository instanceof VcsRepository) {
- $this->updateGitHubInfo($rfs, $package, $match[1], $match[2], $repository);
- } else {
- $this->updateReadme($io, $package, $repository);
- }
- $package->setUpdatedAt(new \DateTime);
- $package->setCrawledAt(new \DateTime);
- $em->flush();
- if ($repository->hadInvalidBranches()) {
- throw new InvalidRepositoryException('Some branches contained invalid data and were discarded, it is advised to review the log and fix any issues present in branches');
- }
- return $package;
- }
- /**
- * @return array with keys:
- * - updated (whether the version was updated or needs to be marked as updated)
- * - id (version id, can be null for newly created versions)
- * - version (normalized version from the composer package)
- * - object (Version instance if it was updated)
- */
- private function updateInformation(VersionRepository $versionRepo, Package $package, array $existingVersions, PackageInterface $data, $flags, $rootIdentifier)
- {
- $em = $this->doctrine->getManager();
- $version = new Version();
- $normVersion = $data->getVersion();
- $existingVersion = $existingVersions[strtolower($normVersion)] ?? null;
- if ($existingVersion) {
- $source = $existingVersion['source'];
- // update if the right flag is set, or the source reference has changed (re-tag or new commit on branch)
- if ($source['reference'] !== $data->getSourceReference() || ($flags & self::UPDATE_EQUAL_REFS)) {
- $version = $versionRepo->findOneById($existingVersion['id']);
- } elseif ($existingVersion['needs_author_migration']) {
- $version = $versionRepo->findOneById($existingVersion['id']);
- $version->setAuthorJson($version->getAuthorData());
- $version->getAuthors()->clear();
- return ['updated' => true, 'id' => $version->getId(), 'version' => strtolower($normVersion), 'object' => $version];
- } else {
- return ['updated' => false, 'id' => $existingVersion['id'], 'version' => strtolower($normVersion), 'object' => null];
- }
- }
- $version->setName($package->getName());
- $version->setVersion($data->getPrettyVersion());
- $version->setNormalizedVersion($normVersion);
- $version->setDevelopment($data->isDev());
- $em->persist($version);
- $descr = $this->sanitize($data->getDescription());
- $version->setDescription($descr);
- // update the package description only for the default branch
- if ($rootIdentifier === null || preg_replace('{dev-|(\.x)?-dev}', '', $version->getVersion()) === $rootIdentifier) {
- $package->setDescription($descr);
- }
- $version->setHomepage($data->getHomepage());
- $version->setLicense($data->getLicense() ?: array());
- $version->setPackage($package);
- $version->setUpdatedAt(new \DateTime);
- $version->setSoftDeletedAt(null);
- $version->setReleasedAt($data->getReleaseDate());
- if ($data->getSourceType()) {
- $source['type'] = $data->getSourceType();
- $source['url'] = $data->getSourceUrl();
- $source['reference'] = $data->getSourceReference();
- $version->setSource($source);
- } else {
- $version->setSource(null);
- }
- if ($data->getDistType()) {
- $dist['type'] = $data->getDistType();
- $dist['url'] = $data->getDistUrl();
- $dist['reference'] = $data->getDistReference();
- $dist['shasum'] = $data->getDistSha1Checksum();
- $version->setDist($dist);
- } else {
- $version->setDist(null);
- }
- if ($data->getType()) {
- $type = $this->sanitize($data->getType());
- $version->setType($type);
- if ($type !== $package->getType()) {
- $package->setType($type);
- }
- }
- $version->setTargetDir($data->getTargetDir());
- $version->setAutoload($data->getAutoload());
- $version->setExtra($data->getExtra());
- $version->setBinaries($data->getBinaries());
- $version->setIncludePaths($data->getIncludePaths());
- $version->setSupport($data->getSupport());
- if ($data->getKeywords()) {
- $keywords = array();
- foreach ($data->getKeywords() as $keyword) {
- $keywords[mb_strtolower($keyword, 'UTF-8')] = $keyword;
- }
- $existingTags = [];
- foreach ($version->getTags() as $tag) {
- $existingTags[mb_strtolower($tag->getName(), 'UTF-8')] = $tag;
- }
- foreach ($keywords as $tagKey => $keyword) {
- if (isset($existingTags[$tagKey])) {
- unset($existingTags[$tagKey]);
- continue;
- }
- $tag = Tag::getByName($em, $keyword, true);
- if (!$version->getTags()->contains($tag)) {
- $version->addTag($tag);
- }
- }
- foreach ($existingTags as $tag) {
- $version->getTags()->removeElement($tag);
- }
- } elseif (count($version->getTags())) {
- $version->getTags()->clear();
- }
- $version->getAuthors()->clear();
- $version->setAuthorJson([]);
- if ($data->getAuthors()) {
- $authors = [];
- foreach ($data->getAuthors() as $authorData) {
- $author = [];
- foreach (array('email', 'name', 'homepage', 'role') as $field) {
- if (isset($authorData[$field])) {
- $author[$field] = trim($authorData[$field]);
- if ('' === $author[$field]) {
- unset($author[$field]);
- }
- }
- }
- // skip authors with no information
- if (!isset($authorData['email']) && !isset($authorData['name'])) {
- continue;
- }
- $authors[] = $author;
- }
- $version->setAuthorJson($authors);
- }
- // handle links
- foreach ($this->supportedLinkTypes as $linkType => $opts) {
- $links = array();
- foreach ($data->{$opts['method']}() as $link) {
- $constraint = $link->getPrettyConstraint();
- if (false !== strpos($constraint, ',') && false !== strpos($constraint, '@')) {
- $constraint = preg_replace_callback('{([><]=?\s*[^@]+?)@([a-z]+)}i', function ($matches) {
- if ($matches[2] === 'stable') {
- return $matches[1];
- }
- return $matches[1].'-'.$matches[2];
- }, $constraint);
- }
- $links[$link->getTarget()] = $constraint;
- }
- foreach ($version->{'get'.$linkType}() as $link) {
- // clear links that have changed/disappeared (for updates)
- if (!isset($links[$link->getPackageName()]) || $links[$link->getPackageName()] !== $link->getPackageVersion()) {
- $version->{'get'.$linkType}()->removeElement($link);
- $em->remove($link);
- } else {
- // clear those that are already set
- unset($links[$link->getPackageName()]);
- }
- }
- foreach ($links as $linkPackageName => $linkPackageVersion) {
- $class = 'Packagist\WebBundle\Entity\\'.$opts['entity'];
- $link = new $class;
- $link->setPackageName($linkPackageName);
- $link->setPackageVersion($linkPackageVersion);
- $version->{'add'.$linkType.'Link'}($link);
- $link->setVersion($version);
- $em->persist($link);
- }
- }
- // handle suggests
- if ($suggests = $data->getSuggests()) {
- foreach ($version->getSuggest() as $link) {
- // clear links that have changed/disappeared (for updates)
- if (!isset($suggests[$link->getPackageName()]) || $suggests[$link->getPackageName()] !== $link->getPackageVersion()) {
- $version->getSuggest()->removeElement($link);
- $em->remove($link);
- } else {
- // clear those that are already set
- unset($suggests[$link->getPackageName()]);
- }
- }
- foreach ($suggests as $linkPackageName => $linkPackageVersion) {
- $link = new SuggestLink;
- $link->setPackageName($linkPackageName);
- $link->setPackageVersion($linkPackageVersion);
- $version->addSuggestLink($link);
- $link->setVersion($version);
- $em->persist($link);
- }
- } elseif (count($version->getSuggest())) {
- // clear existing suggests if present
- foreach ($version->getSuggest() as $link) {
- $em->remove($link);
- }
- $version->getSuggest()->clear();
- }
- return ['updated' => true, 'id' => $version->getId(), 'version' => strtolower($normVersion), 'object' => $version];
- }
- /**
- * Update the readme for $package from $repository.
- *
- * @param IOInterface $io
- * @param Package $package
- * @param VcsRepository $repository
- */
- private function updateReadme(IOInterface $io, Package $package, VcsRepository $repository)
- {
- try {
- $driver = $repository->getDriver();
- $composerInfo = $driver->getComposerInformation($driver->getRootIdentifier());
- if (isset($composerInfo['readme'])) {
- $readmeFile = $composerInfo['readme'];
- } else {
- $readmeFile = 'README.md';
- }
- $ext = substr($readmeFile, strrpos($readmeFile, '.'));
- if ($ext === $readmeFile) {
- $ext = '.txt';
- }
- switch ($ext) {
- case '.txt':
- $source = $driver->getFileContent($readmeFile, $driver->getRootIdentifier());
- if (!empty($source)) {
- $package->setReadme('<pre>' . htmlspecialchars($source) . '</pre>');
- }
- break;
- case '.md':
- $source = $driver->getFileContent($readmeFile, $driver->getRootIdentifier());
- $parser = new GithubMarkdown();
- $readme = $parser->parse($source);
- if (!empty($readme)) {
- $package->setReadme($this->prepareReadme($readme));
- }
- break;
- }
- } catch (\Exception $e) {
- // we ignore all errors for this minor function
- $io->write(
- 'Can not update readme. Error: ' . $e->getMessage(),
- true,
- IOInterface::VERBOSE
- );
- }
- }
- private function updateGitHubInfo(RemoteFilesystem $rfs, Package $package, $owner, $repo, VcsRepository $repository)
- {
- $baseApiUrl = 'https://api.github.com/repos/'.$owner.'/'.$repo;
- $driver = $repository->getDriver();
- if (!$driver instanceof GitHubDriver) {
- return;
- }
- $repoData = $driver->getRepoData();
- try {
- $opts = ['http' => ['header' => ['Accept: application/vnd.github.v3.html']]];
- $readme = $rfs->getContents('github.com', $baseApiUrl.'/readme', false, $opts);
- } catch (\Exception $e) {
- if (!$e instanceof \Composer\Downloader\TransportException || $e->getCode() !== 404) {
- return;
- }
- // 404s just mean no readme present so we proceed with the rest
- }
- if (!empty($readme)) {
- $package->setReadme($this->prepareReadme($readme, true, $owner, $repo));
- }
- if (!empty($repoData['language'])) {
- $package->setLanguage($repoData['language']);
- }
- if (isset($repoData['stargazers_count'])) {
- $package->setGitHubStars($repoData['stargazers_count']);
- }
- if (isset($repoData['subscribers_count'])) {
- $package->setGitHubWatches($repoData['subscribers_count']);
- }
- if (isset($repoData['network_count'])) {
- $package->setGitHubForks($repoData['network_count']);
- }
- if (isset($repoData['open_issues_count'])) {
- $package->setGitHubOpenIssues($repoData['open_issues_count']);
- }
- }
- /**
- * Prepare the readme by stripping elements and attributes that are not supported .
- *
- * @param string $readme
- * @param bool $isGithub
- * @param null $owner
- * @param null $repo
- * @return string
- */
- private function prepareReadme($readme, $isGithub = false, $owner = null, $repo = null)
- {
- $elements = array(
- 'p',
- 'br',
- 'small',
- 'strong', 'b',
- 'em', 'i',
- 'strike',
- 'sub', 'sup',
- 'ins', 'del',
- 'ol', 'ul', 'li',
- 'h1', 'h2', 'h3', 'h4', 'h5', 'h6',
- 'dl', 'dd', 'dt',
- 'pre', 'code', 'samp', 'kbd',
- 'q', 'blockquote', 'abbr', 'cite',
- 'table', 'thead', 'tbody', 'th', 'tr', 'td',
- 'a', 'span',
- 'img',
- 'details', 'summary',
- );
- $attributes = array(
- 'img.src', 'img.title', 'img.alt', 'img.width', 'img.height', 'img.style',
- 'a.href', 'a.target', 'a.rel', 'a.id',
- 'td.colspan', 'td.rowspan', 'th.colspan', 'th.rowspan',
- '*.class', 'details.open'
- );
- // detect base path if the github readme is located in a subfolder like docs/README.md
- $basePath = '';
- if ($isGithub && preg_match('{^<div id="readme" [^>]+?data-path="([^"]+)"}', $readme, $match) && false !== strpos($match[1], '/')) {
- $basePath = dirname($match[1]);
- }
- if ($basePath) {
- $basePath .= '/';
- }
- $config = \HTMLPurifier_Config::createDefault();
- $config->set('HTML.AllowedElements', implode(',', $elements));
- $config->set('HTML.AllowedAttributes', implode(',', $attributes));
- $config->set('Attr.EnableID', true);
- $config->set('Attr.AllowedFrameTargets', ['_blank']);
- // add custom HTML tag definitions
- $def = $config->getHTMLDefinition(true);
- $def->addElement('details', 'Block', 'Flow', 'Common', array(
- 'open' => 'Bool#open',
- ));
- $def->addElement('summary', 'Inline', 'Inline', 'Common');
- $purifier = new \HTMLPurifier($config);
- $readme = $purifier->purify($readme);
- libxml_use_internal_errors(true);
- $dom = new \DOMDocument();
- $dom->loadHTML('<?xml encoding="UTF-8">' . $readme);
- // Links can not be trusted, mark them nofollow and convert relative to absolute links
- $links = $dom->getElementsByTagName('a');
- foreach ($links as $link) {
- $link->setAttribute('rel', 'nofollow noindex noopener external');
- if ('#' === substr($link->getAttribute('href'), 0, 1)) {
- $link->setAttribute('href', '#user-content-'.substr($link->getAttribute('href'), 1));
- } elseif ('mailto:' === substr($link->getAttribute('href'), 0, 7)) {
- // do nothing
- } elseif ($isGithub && false === strpos($link->getAttribute('href'), '//')) {
- $link->setAttribute(
- 'href',
- 'https://github.com/'.$owner.'/'.$repo.'/blob/HEAD/'.$basePath.$link->getAttribute('href')
- );
- }
- }
- if ($isGithub) {
- // convert relative to absolute images
- $images = $dom->getElementsByTagName('img');
- foreach ($images as $img) {
- if (false === strpos($img->getAttribute('src'), '//')) {
- $img->setAttribute(
- 'src',
- 'https://raw.github.com/'.$owner.'/'.$repo.'/HEAD/'.$basePath.$img->getAttribute('src')
- );
- }
- }
- }
- // remove first page element if it's a <h1> or <h2>, because it's usually
- // the project name or the `README` string which we don't need
- $first = $dom->getElementsByTagName('body')->item(0);
- if ($first) {
- $first = $first->childNodes->item(0);
- }
- if ($first && ('h1' === $first->nodeName || 'h2' === $first->nodeName)) {
- $first->parentNode->removeChild($first);
- }
- $readme = $dom->saveHTML();
- $readme = substr($readme, strpos($readme, '<body>')+6);
- $readme = substr($readme, 0, strrpos($readme, '</body>'));
- libxml_use_internal_errors(false);
- libxml_clear_errors();
- return str_replace("\r\n", "\n", $readme);
- }
- private function sanitize($str)
- {
- // remove escape chars
- $str = preg_replace("{\x1B(?:\[.)?}u", '', $str);
- return preg_replace("{[\x01-\x1A]}u", '', $str);
- }
- }
|