* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Fxp\Composer\AssetPlugin\Util; use Fxp\Composer\AssetPlugin\Package\Version\VersionParser; use Fxp\Composer\AssetPlugin\Type\AssetTypeInterface; /** * Helper for validate branches and tags of the VCS repository. * * @author François Pluchino */ class Validator { /** * Validates the branch. * * @param string $branch * @param VersionParser|null $parser * * @return false|string */ public static function validateBranch($branch, VersionParser $parser = null) { if (null === $parser) { $parser = new VersionParser(); } $normalize = $parser->normalizeBranch($branch); if (false !== strpos($normalize, '.9999999-dev')) { return false; } return $normalize; } /** * Validates the tag. * * @param string $tag * @param AssetTypeInterface $assetType * @param VersionParser|null $parser * * @return false|string */ public static function validateTag($tag, AssetTypeInterface $assetType, VersionParser $parser = null) { if (in_array($tag, array('master', 'trunk', 'default'))) { return false; } if (null === $parser) { $parser = new VersionParser(); } try { $tag = $assetType->getVersionConverter()->convertVersion($tag); $tag = $parser->normalize($tag); } catch (\Exception $e) { $tag = false; } return $tag; } }