/src/Composer/Json/JsonFile.php
https://github.com/kelvinj/composer · PHP · 138 lines · 81 code · 14 blank · 43 comment · 8 complexity · 1662538215c1111302391f0b323e6f68 MD5 · raw file
- <?php
- /*
- * This file is part of Composer.
- *
- * (c) Nils Adermann <naderman@naderman.de>
- * Jordi Boggiano <j.boggiano@seld.be>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Composer\Json;
- use Composer\Repository\RepositoryManager;
- use Composer\Composer;
- /**
- * Reads/writes json files.
- *
- * @author Konstantin Kudryashiv <ever.zet@gmail.com>
- */
- class JsonFile
- {
- private $path;
- /**
- * Initializes json file reader/parser.
- *
- * @param string $lockFile path to a lockfile
- */
- public function __construct($path)
- {
- $this->path = $path;
- }
- public function getPath()
- {
- return $this->path;
- }
- /**
- * Checks whether json file exists.
- *
- * @return Boolean
- */
- public function exists()
- {
- return is_file($this->path);
- }
- /**
- * Reads json file.
- *
- * @param string $json path or json string
- *
- * @return array
- */
- public function read()
- {
- $context = stream_context_create(array(
- 'http' => array('header' => 'User-Agent: Composer/'.Composer::VERSION."\r\n")
- ));
- $json = file_get_contents($this->path, false, $context);
- if (!$json) {
- throw new \RuntimeException('Could not read '.$this->path.', you are probably offline');
- }
- return static::parseJson($json);
- }
- /**
- * Writes json file.
- *
- * @param array $hash writes hash into json file
- */
- public function write(array $hash)
- {
- $dir = dirname($this->path);
- if (!is_dir($dir)) {
- if (file_exists($dir)) {
- throw new \UnexpectedValueException(
- $dir.' exists and is not a directory.'
- );
- }
- if (!mkdir($dir, 0777, true)) {
- throw new \UnexpectedValueException(
- $dir.' does not exist and could not be created.'
- );
- }
- }
- file_put_contents($this->path, json_encode($hash));
- }
- /**
- * Parses json string and returns hash.
- *
- * @param string $json json string
- *
- * @return array
- */
- public static function parseJson($json)
- {
- $data = json_decode($json, true);
- if (null === $data && 'null' !== strtolower($json)) {
- switch (json_last_error()) {
- case JSON_ERROR_NONE:
- $msg = 'No error has occurred, is your composer.json file empty?';
- break;
- case JSON_ERROR_DEPTH:
- $msg = 'The maximum stack depth has been exceeded';
- break;
- case JSON_ERROR_STATE_MISMATCH:
- $msg = 'Invalid or malformed JSON';
- break;
- case JSON_ERROR_CTRL_CHAR:
- $msg = 'Control character error, possibly incorrectly encoded';
- break;
- case JSON_ERROR_SYNTAX:
- $msg = 'Syntax error';
- if (preg_match('#["}\]]\s*(,)\s*\}#', $json, $match, PREG_OFFSET_CAPTURE)) {
- $msg .= ', extra comma on line '.(substr_count(substr($json, 0, $match[1][1]), "\n")+1);
- } elseif (preg_match('#(\'.+?\' *:|: *\'.+?\')#', $json, $match, PREG_OFFSET_CAPTURE)) {
- $msg .= ', use double quotes (") instead of single quotes (\') on line '.(substr_count(substr($json, 0, $match[1][1]), "\n")+1);
- }
- break;
- case JSON_ERROR_UTF8:
- $msg = 'Malformed UTF-8 characters, possibly incorrectly encoded';
- break;
- }
- throw new \UnexpectedValueException('Incorrect composer.json file: '.$msg);
- }
- return $data;
- }
- }