2016-05-29 12:32:14 +02:00
|
|
|
<?php
|
2017-03-03 23:06:12 +01:00
|
|
|
namespace Shaarli\Config;
|
2016-05-29 12:32:14 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class ConfigJson (ConfigIO implementation)
|
|
|
|
*
|
|
|
|
* Handle Shaarli's JSON configuration file.
|
|
|
|
*/
|
|
|
|
class ConfigJson implements ConfigIO
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
2017-01-05 19:33:06 +01:00
|
|
|
public function read($filepath)
|
2016-05-29 12:32:14 +02:00
|
|
|
{
|
2016-05-29 16:10:32 +02:00
|
|
|
if (! is_readable($filepath)) {
|
2016-05-29 12:32:14 +02:00
|
|
|
return array();
|
|
|
|
}
|
|
|
|
$data = file_get_contents($filepath);
|
2016-05-29 16:10:32 +02:00
|
|
|
$data = str_replace(self::getPhpHeaders(), '', $data);
|
2016-06-20 18:30:37 +02:00
|
|
|
$data = str_replace(self::getPhpSuffix(), '', $data);
|
2016-05-29 12:32:14 +02:00
|
|
|
$data = json_decode($data, true);
|
|
|
|
if ($data === null) {
|
2017-03-12 16:09:34 +01:00
|
|
|
$errorCode = json_last_error();
|
2017-05-09 18:12:15 +02:00
|
|
|
$error = sprintf(
|
|
|
|
'An error occurred while parsing JSON configuration file (%s): error code #%d',
|
|
|
|
$filepath,
|
|
|
|
$errorCode
|
|
|
|
);
|
|
|
|
$error .= '<br>➜ <code>' . json_last_error_msg() .'</code>';
|
2017-03-12 16:09:34 +01:00
|
|
|
if ($errorCode === JSON_ERROR_SYNTAX) {
|
2017-05-09 18:12:15 +02:00
|
|
|
$error .= '<br>';
|
|
|
|
$error .= 'Please check your JSON syntax (without PHP comment tags) using a JSON lint tool such as ';
|
2017-03-12 16:09:34 +01:00
|
|
|
$error .= '<a href="http://jsonlint.com/">jsonlint.com</a>.';
|
|
|
|
}
|
|
|
|
throw new \Exception($error);
|
2016-05-29 12:32:14 +02:00
|
|
|
}
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
2017-01-05 19:33:06 +01:00
|
|
|
public function write($filepath, $conf)
|
2016-05-29 12:32:14 +02:00
|
|
|
{
|
|
|
|
// JSON_PRETTY_PRINT is available from PHP 5.4.
|
|
|
|
$print = defined('JSON_PRETTY_PRINT') ? JSON_PRETTY_PRINT : 0;
|
2016-06-20 18:30:37 +02:00
|
|
|
$data = self::getPhpHeaders() . json_encode($conf, $print) . self::getPhpSuffix();
|
2016-05-29 12:32:14 +02:00
|
|
|
if (!file_put_contents($filepath, $data)) {
|
2017-03-03 23:06:12 +01:00
|
|
|
throw new \IOException(
|
2016-05-29 12:32:14 +02:00
|
|
|
$filepath,
|
2017-05-09 18:12:15 +02:00
|
|
|
t('Shaarli could not create the config file. '.
|
|
|
|
'Please make sure Shaarli has the right to write in the folder is it installed in.')
|
2016-05-29 12:32:14 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
2017-01-05 19:33:06 +01:00
|
|
|
public function getExtension()
|
2016-05-29 12:32:14 +02:00
|
|
|
{
|
|
|
|
return '.json.php';
|
|
|
|
}
|
2016-05-29 16:10:32 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The JSON data is wrapped in a PHP file for security purpose.
|
|
|
|
* This way, even if the file is accessible, credentials and configuration won't be exposed.
|
|
|
|
*
|
|
|
|
* Note: this isn't a static field because concatenation isn't supported in field declaration before PHP 5.6.
|
|
|
|
*
|
|
|
|
* @return string PHP start tag and comment tag.
|
|
|
|
*/
|
|
|
|
public static function getPhpHeaders()
|
|
|
|
{
|
|
|
|
return '<?php /*'. PHP_EOL;
|
|
|
|
}
|
2016-06-20 18:30:37 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get PHP comment closing tags.
|
|
|
|
*
|
|
|
|
* Static method for consistency with getPhpHeaders.
|
|
|
|
*
|
|
|
|
* @return string PHP comment closing.
|
|
|
|
*/
|
|
|
|
public static function getPhpSuffix()
|
|
|
|
{
|
|
|
|
return PHP_EOL . '*/ ?>';
|
|
|
|
}
|
2016-05-29 12:32:14 +02:00
|
|
|
}
|