123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473 |
- <?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\Entity;
- use Doctrine\ORM\Mapping as ORM;
- use Symfony\Component\Validator\Constraints as Assert;
- use Symfony\Component\Validator\ExecutionContext;
- use Doctrine\Common\Collections\ArrayCollection;
- use Composer\IO\NullIO;
- use Composer\Factory;
- use Composer\Repository\VcsRepository;
- use Composer\Repository\RepositoryManager;
- /**
- * @ORM\Entity(repositoryClass="Packagist\WebBundle\Entity\PackageRepository")
- * @ORM\Table(
- * name="package",
- * uniqueConstraints={@ORM\UniqueConstraint(name="name_idx", columns={"name"})},
- * indexes={
- * @ORM\Index(name="indexed_idx",columns={"indexedAt"}),
- * @ORM\Index(name="crawled_idx",columns={"crawledAt"}),
- * @ORM\Index(name="dumped_idx",columns={"dumpedAt"})
- * }
- * )
- * @Assert\Callback(methods={"isPackageUnique","isRepositoryValid"})
- * @author Jordi Boggiano <j.boggiano@seld.be>
- */
- class Package
- {
- /**
- * @ORM\Id
- * @ORM\Column(type="integer")
- * @ORM\GeneratedValue(strategy="AUTO")
- */
- private $id;
- /**
- * Unique package name
- *
- * @ORM\Column()
- */
- private $name;
- /**
- * @ORM\Column(nullable=true)
- */
- private $type;
- /**
- * @ORM\Column(type="text", nullable=true)
- */
- private $description;
- /**
- * @ORM\OneToMany(targetEntity="Packagist\WebBundle\Entity\Version", mappedBy="package")
- */
- private $versions;
- /**
- * @ORM\ManyToMany(targetEntity="User", inversedBy="packages")
- * @ORM\JoinTable(name="maintainers_packages")
- */
- private $maintainers;
- /**
- * @ORM\Column()
- * @Assert\NotBlank()
- */
- private $repository;
- // dist-tags / rel or runtime?
- /**
- * @ORM\Column(type="datetime")
- */
- private $createdAt;
- /**
- * @ORM\Column(type="datetime", nullable=true)
- */
- private $updatedAt;
- /**
- * @ORM\Column(type="datetime", nullable=true)
- */
- private $crawledAt;
- /**
- * @ORM\Column(type="datetime", nullable=true)
- */
- private $indexedAt;
- /**
- * @ORM\Column(type="datetime", nullable=true)
- */
- private $dumpedAt;
- /**
- * @ORM\Column(type="boolean")
- */
- private $autoUpdated = false;
- private $entityRepository;
- private $repositoryClass;
- public function __construct()
- {
- $this->versions = new ArrayCollection();
- $this->createdAt = new \DateTime;
- }
- public function toArray()
- {
- $versions = array();
- foreach ($this->getVersions() as $version) {
- $versions[$version->getVersion()] = $version->toArray();
- }
- $maintainers = array();
- foreach ($this->getMaintainers() as $maintainer) {
- $maintainers[] = $maintainer->toArray();
- }
- $data = array(
- 'name' => $this->getName(),
- 'description' => $this->getDescription(),
- 'maintainers' => $maintainers,
- 'versions' => $versions,
- 'type' => $this->getType(),
- 'repository' => $this->getRepository()
- );
- return $data;
- }
- public function isRepositoryValid(ExecutionContext $context)
- {
- $property = 'repository';
- $repo = $this->repositoryClass;
- if (!$repo) {
- if (preg_match('{//.+@}', $this->repository)) {
- $context->addViolationAtSubPath($property, 'URLs with user@host are not supported, use a read-only public URL', array(), null);
- } else {
- $context->addViolationAtSubPath($property, 'No valid/supported repository was found at the given URL', array(), null);
- }
- return;
- }
- try {
- $information = $repo->getComposerInformation($repo->getRootIdentifier());
- if (!isset($information['name']) || !$information['name']) {
- $context->addViolationAtSubPath($property, 'The package name was not found in the composer.json, make sure there is a name present.', array(), null);
- return;
- }
- if (!preg_match('{^[a-z0-9_.-]+/[a-z0-9_.-]+$}i', $information['name'])) {
- $context->addViolationAtSubPath($property, 'The package name '.$information['name'].' is invalid, it should have a vendor name, a forward slash, and a package name, matching <em>[a-z0-9_.-]+/[a-z0-9_.-]+</em>.', array(), null);
- return;
- }
- } catch (\Exception $e) {
- $context->addViolationAtSubPath($property, 'We had problems parsing your composer.json file, the parser reports: '.$e->getMessage(), array(), null);
- }
- }
- public function setEntityRepository($repository)
- {
- $this->entityRepository = $repository;
- }
- public function isPackageUnique(ExecutionContext $context)
- {
- try {
- if ($this->entityRepository->findOneByName($this->name)) {
- $context->addViolationAtSubPath('repository', 'A package with the name '.$this->name.' already exists.', array(), null);
- }
- } catch (\Doctrine\ORM\NoResultException $e) {}
- }
- /**
- * Get id
- *
- * @return string
- */
- public function getId()
- {
- return $this->id;
- }
- /**
- * Set name
- *
- * @param string $name
- */
- public function setName($name)
- {
- $this->name = $name;
- }
- /**
- * Get name
- *
- * @return string
- */
- public function getName()
- {
- return $this->name;
- }
- /**
- * Get vendor prefix
- *
- * @return string
- */
- public function getVendor()
- {
- return preg_replace('{/.*$}', '', $this->name);
- }
- /**
- * Get package name without vendor
- *
- * @return string
- */
- public function getPackageName()
- {
- return preg_replace('{^[^/]*/}', '', $this->name);
- }
- /**
- * Set description
- *
- * @param string $description
- */
- public function setDescription($description)
- {
- $this->description = $description;
- }
- /**
- * Get description
- *
- * @return string
- */
- public function getDescription()
- {
- return $this->description;
- }
- /**
- * Set createdAt
- *
- * @param \DateTime $createdAt
- */
- public function setCreatedAt($createdAt)
- {
- $this->createdAt = $createdAt;
- }
- /**
- * Get createdAt
- *
- * @return \DateTime
- */
- public function getCreatedAt()
- {
- return $this->createdAt;
- }
- /**
- * Set repository
- *
- * @param string $repository
- */
- public function setRepository($repository)
- {
- $this->repository = $repository;
- // avoid user@host URLs
- if (preg_match('{//.+@}', $repository)) {
- return;
- }
- try {
- $config = Factory::createConfig();
- $repository = new VcsRepository(array('url' => $repository), new NullIO(), $config);
- $repo = $this->repositoryClass = $repository->getDriver();
- if (!$repo) {
- return;
- }
- $information = $repo->getComposerInformation($repo->getRootIdentifier());
- $this->setName($information['name']);
- } catch (\Exception $e) {
- }
- }
- /**
- * Get repository
- *
- * @return string $repository
- */
- public function getRepository()
- {
- return $this->repository;
- }
- /**
- * Add versions
- *
- * @param \Packagist\WebBundle\Entity\Version $versions
- */
- public function addVersions(Version $versions)
- {
- $this->versions[] = $versions;
- }
- /**
- * Get versions
- *
- * @return \Doctrine\Common\Collections\Collection
- */
- public function getVersions()
- {
- return $this->versions;
- }
- /**
- * Set updatedAt
- *
- * @param \DateTime $updatedAt
- */
- public function setUpdatedAt($updatedAt)
- {
- $this->updatedAt = $updatedAt;
- }
- /**
- * Get updatedAt
- *
- * @return \DateTime
- */
- public function getUpdatedAt()
- {
- return $this->updatedAt;
- }
- /**
- * Set crawledAt
- *
- * @param \DateTime $crawledAt
- */
- public function setCrawledAt($crawledAt)
- {
- $this->crawledAt = $crawledAt;
- }
- /**
- * Get crawledAt
- *
- * @return \DateTime
- */
- public function getCrawledAt()
- {
- return $this->crawledAt;
- }
- /**
- * Set indexedAt
- *
- * @param \DateTime $indexedAt
- */
- public function setIndexedAt($indexedAt)
- {
- $this->indexedAt = $indexedAt;
- }
- /**
- * Get indexedAt
- *
- * @return \DateTime
- */
- public function getIndexedAt()
- {
- return $this->indexedAt;
- }
- /**
- * Set dumpedAt
- *
- * @param \DateTime $dumpedAt
- */
- public function setDumpedAt($dumpedAt)
- {
- $this->dumpedAt = $dumpedAt;
- }
- /**
- * Get dumpedAt
- *
- * @return \DateTime
- */
- public function getDumpedAt()
- {
- return $this->dumpedAt;
- }
- /**
- * Add maintainers
- *
- * @param \Packagist\WebBundle\Entity\User $maintainer
- */
- public function addMaintainer(User $maintainer)
- {
- $this->maintainers[] = $maintainer;
- }
- /**
- * Get maintainers
- *
- * @return \Doctrine\Common\Collections\Collection
- */
- public function getMaintainers()
- {
- return $this->maintainers;
- }
- /**
- * Set type
- *
- * @param string $type
- */
- public function setType($type)
- {
- $this->type = $type;
- }
- /**
- * Get type
- *
- * @return string
- */
- public function getType()
- {
- return $this->type;
- }
- /**
- * Set autoUpdated
- *
- * @param Boolean $autoUpdated
- */
- public function setAutoUpdated($autoUpdated)
- {
- $this->autoUpdated = $autoUpdated;
- }
- /**
- * Get autoUpdated
- *
- * @return Boolean
- */
- public function isAutoUpdated()
- {
- return $this->autoUpdated;
- }
- }
|