2022-03-09 23:46:45 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @package Joomla.Component.Builder
|
|
|
|
*
|
|
|
|
* @created 30th April, 2015
|
2022-07-09 15:45:08 +00:00
|
|
|
* @author Llewellyn van der Merwe <https://dev.vdm.io>
|
|
|
|
* @git Joomla Component Builder <https://git.vdm.dev/joomla/Component-Builder>
|
2022-03-09 23:46:45 +00:00
|
|
|
* @copyright Copyright (C) 2015 Vast Development Method. All rights reserved.
|
|
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace VDM\Joomla\Utilities;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2022-03-12 04:00:16 +00:00
|
|
|
* The json checker
|
|
|
|
*
|
|
|
|
* @since 3.0.9
|
2022-03-09 23:46:45 +00:00
|
|
|
*/
|
|
|
|
abstract class JsonHelper
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Check if you have a json string
|
|
|
|
*
|
|
|
|
* @input string $string The json string to check
|
|
|
|
*
|
|
|
|
* @returns bool true on success
|
2022-03-12 04:00:16 +00:00
|
|
|
*
|
|
|
|
* @since 3.0.9
|
2022-03-09 23:46:45 +00:00
|
|
|
*/
|
|
|
|
public static function check($string): bool
|
|
|
|
{
|
|
|
|
if (StringHelper::check($string))
|
|
|
|
{
|
|
|
|
json_decode($string);
|
|
|
|
return (json_last_error() === JSON_ERROR_NONE);
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-03-12 04:00:16 +00:00
|
|
|
/**
|
|
|
|
* Convert a json object to a string
|
|
|
|
*
|
|
|
|
* @input string $value The json string to convert
|
|
|
|
*
|
|
|
|
* @returns a string
|
|
|
|
*
|
|
|
|
* @since 3.0.9
|
|
|
|
*/
|
2022-03-09 23:46:45 +00:00
|
|
|
public static function string($value, $separator = ", ", $table = null, $id = 'id', $name = 'name')
|
|
|
|
{
|
|
|
|
// do some table foot work
|
|
|
|
$external = false;
|
|
|
|
if (strpos($table, '#__') !== false)
|
|
|
|
{
|
|
|
|
$external = true;
|
|
|
|
$table = str_replace('#__', '', $table);
|
|
|
|
}
|
|
|
|
|
|
|
|
// check if string is JSON
|
|
|
|
$result = json_decode($value, true);
|
|
|
|
if (json_last_error() === JSON_ERROR_NONE)
|
|
|
|
{
|
|
|
|
// is JSON
|
|
|
|
if (ArrayHelper::check($result))
|
|
|
|
{
|
|
|
|
if (StringHelper::check($table))
|
|
|
|
{
|
|
|
|
$names = array();
|
|
|
|
foreach ($result as $val)
|
|
|
|
{
|
|
|
|
if ($external)
|
|
|
|
{
|
|
|
|
if ($_name = GetHelper::var(null, $val, $id, $name, '=', $table))
|
|
|
|
{
|
|
|
|
$names[] = $_name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ($_name = GetHelper::var($table, $val, $id, $name))
|
|
|
|
{
|
|
|
|
$names[] = $_name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (ArrayHelper::check($names))
|
|
|
|
{
|
|
|
|
return (string) implode($separator, $names);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (string) implode($separator, $result);
|
|
|
|
}
|
|
|
|
return (string) json_decode($value);
|
|
|
|
}
|
|
|
|
return $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|