first version

This commit is contained in:
Bastian Allgeier
2019-01-13 23:17:34 +01:00
commit 01277f79f2
595 changed files with 82913 additions and 0 deletions

124
kirby/src/Data/Data.php Executable file
View File

@@ -0,0 +1,124 @@
<?php
namespace Kirby\Data;
use Exception;
use Kirby\Toolkit\F;
/**
* Universal Data writer and reader class.
*
* The read and write methods automatically
* detect, which data handler to use in order
* to correctly encode and decode passed data.
*
* Data Handlers for the class can be
* extended and customized.
*
* @package Kirby
* @author Bastian Allgeier <bastian@getkirby.com>
* @link http://getkirby.com
* @copyright 2012 Bastian Allgeier
* @license MIT
*/
class Data
{
/**
* Handler Type Aliases
*
* @var array
*/
public static $aliases = [
'yml' => 'yaml',
'md' => 'txt',
'mdown' => 'txt'
];
/**
* All registered handlers
*
* @var array
*/
public static $handlers = [
'json' => 'Kirby\Data\Json',
'yaml' => 'Kirby\Data\Yaml',
'txt' => 'Kirby\Data\Txt'
];
/**
* Handler getter
*
* @param string $type
* @return Handler|null
*/
public static function handler(string $type)
{
// normalize the type
$type = strtolower($type);
$handler = static::$handlers[$type] ?? null;
if ($handler === null && isset(static::$aliases[$type]) === true) {
$handler = static::$handlers[static::$aliases[$type]] ?? null;
}
if ($handler === null) {
throw new Exception('Missing Handler for type: "' . $type . '"');
}
return new $handler;
}
/**
* Decode data with the specified handler
*
* @param string $data
* @param string $type
* @return array
*/
public static function decode(string $data = null, string $type): array
{
return static::handler($type)->decode($data);
}
/**
* Encode data with the specified handler
*
* @param array $data
* @param string $type
* @return string
*/
public static function encode(array $data = null, string $type): string
{
return static::handler($type)->encode($data);
}
/**
* Reads data from a file
* The data handler is automatically chosen by
* the extension if not specified.
*
* @param string $file
* @param string $type
* @return array
*/
public static function read(string $file, string $type = null): array
{
return static::handler($type ?? F::extension($file))->read($file);
}
/**
* Writes data to a file.
* The data handler is automatically chosen by
* the extension if not specified.
*
* @param string $file
* @param array $data
* @param string $type
* @return boolean
*/
public static function write(string $file = null, array $data = [], string $type = null): bool
{
return static::handler($type ?? F::extension($file))->write($file, $data);
}
}