forked from sebsauvage/Shaarli
-
Notifications
You must be signed in to change notification settings - Fork 296
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds ConfigJson which handle the configuration in JSON format.
Also use the Updater to make the transition
- Loading branch information
1 parent
684e662
commit b74b96b
Showing
13 changed files
with
462 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
<?php | ||
|
||
/** | ||
* Class ConfigJson (ConfigIO implementation) | ||
* | ||
* Handle Shaarli's JSON configuration file. | ||
*/ | ||
class ConfigJson implements ConfigIO | ||
{ | ||
/** | ||
* 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. | ||
* | ||
* @var string PHP start tag and comment tag. | ||
*/ | ||
public static $PHP_HEADER; | ||
|
||
public function __construct() | ||
{ | ||
// The field can't be initialized directly with concatenation before PHP 5.6. | ||
self::$PHP_HEADER = '<?php /*'. PHP_EOL; | ||
} | ||
|
||
/** | ||
* @inheritdoc | ||
*/ | ||
function read($filepath) | ||
{ | ||
if (! file_exists($filepath) || ! is_readable($filepath)) { | ||
return array(); | ||
} | ||
$data = file_get_contents($filepath); | ||
$data = str_replace(self::$PHP_HEADER, '', $data); | ||
$data = json_decode($data, true); | ||
if ($data === null) { | ||
$error = json_last_error(); | ||
throw new Exception('An error occured while parsing JSON file: error code #'. $error); | ||
} | ||
return $data; | ||
} | ||
|
||
/** | ||
* @inheritdoc | ||
*/ | ||
function write($filepath, $conf) | ||
{ | ||
// JSON_PRETTY_PRINT is available from PHP 5.4. | ||
$print = defined('JSON_PRETTY_PRINT') ? JSON_PRETTY_PRINT : 0; | ||
$data = self::$PHP_HEADER . json_encode($conf, $print); | ||
if (!file_put_contents($filepath, $data)) { | ||
throw new IOException( | ||
$filepath, | ||
'Shaarli could not create the config file. | ||
Please make sure Shaarli has the right to write in the folder is it installed in.' | ||
); | ||
} | ||
} | ||
|
||
/** | ||
* @inheritdoc | ||
*/ | ||
function getExtension() | ||
{ | ||
return '.json.php'; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
b74b96b
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
https://github.com/mro/Shaarli-API-test/commit/a5e2c2c447062165dd06ab2f0d70c9894fe4409f