添加后台代理代码

This commit is contained in:
2026-03-15 01:27:05 +08:00
parent 11f9ac4dc1
commit ea08c9366a
5254 changed files with 721042 additions and 0 deletions

View File

@@ -0,0 +1,298 @@
<?php
namespace Peekmo\JsonPath;
/* JSONPath 0.8.3 - XPath for JSON
*
* Copyright (c) 2007 Stefan Goessner (goessner.net)
* Licensed under the MIT (MIT-LICENSE.txt) licence.
*
* Modified by Axel Anceau
*/
class JsonPath
{
private $obj = null;
private $resultType = "Value";
private $result = array();
private $subx = array();
private $keywords = array('=', ')', '!', '<', '>');
public function jsonPath(&$obj, $expr, $args = null, $create=false, $default=null)
{
if (is_object($obj)) {
throw new \Exception('You sent an object, not an array.');
}
$this->resultType = ($args ? $args['resultType'] : "VALUE");
$x = $this->normalize($expr);
$this->obj = $obj;
if ($expr && $obj!==null && ($this->resultType == "VALUE" || $this->resultType == "PATH")) {
$this->trace(preg_replace("/^\\$;/", "", $x), $obj, "$", $create, $default);
if (count($this->result)) {
return $this->result;
}
return false;
}
}
// normalize path expression
private function normalize($expression)
{
// Replaces filters by #0 #1...
$expression = preg_replace_callback(
array("/[\['](\??\(.*?\))[\]']/", "/\['(.*?)'\]/"),
array(&$this, "tempFilters"),
$expression
);
// ; separator between each elements
$expression = preg_replace(
array("/'?\.'?|\['?/", "/;;;|;;/", "/;$|'?\]|'$/"),
array(";", ";..;", ""),
$expression
);
// Restore filters
$expression = preg_replace_callback("/#([0-9]+)/", array(&$this, "restoreFilters"), $expression);
$this->result = array(); // result array was temporarily used as a buffer ..
return $expression;
}
/**
* Pushs the filter into the list
* @param string $filter
* @return string
*/
private function tempFilters($filter)
{
$f = $filter[1];
$elements = explode('\'', $f);
// Hack to make "dot" works on filters
for ($i=0, $m=0; $i<count($elements); $i++) {
if ($m%2 == 0) {
if ($i > 0 && substr($elements[$i-1], 0, 1) == '\\') {
continue;
}
$e = explode('.', $elements[$i]);
$str = ''; $first = true;
foreach ($e as $substr) {
if ($first) {
$str = $substr;
$first = false;
continue;
}
$end = null;
if (false !== $pos = $this->strpos_array($substr, $this->keywords)) {
list($substr, $end) = array(substr($substr, 0, $pos), substr($substr, $pos, strlen($substr)));
}
$str .= '[' . $substr . ']';
if (null !== $end) {
$str .= $end;
}
}
$elements[$i] = $str;
}
$m++;
}
return "[#" . (array_push($this->result, implode('\'', $elements)) - 1) . "]";
}
/**
* Get a filter back
* @param string $filter
* @return mixed
*/
private function restoreFilters($filter)
{
return $this->result[$filter[1]];
}
/**
* Builds json path expression
* @param string $path
* @return string
*/
private function asPath($path)
{
$expr = explode(";", $path);
$fullPath = "$";
for ($i = 1, $n = count($expr); $i < $n; $i++) {
$fullPath .= preg_match("/^[0-9*]+$/", $expr[$i]) ? ("[" . $expr[$i] . "]") : ("['" . $expr[$i] . "']");
}
return $fullPath;
}
private function store($p, $v)
{
if ($p) {
array_push($this->result, ($this->resultType == "PATH" ? $this->asPath($p) : $v));
}
return !!$p;
}
private function trace($expr, &$val, $path, $create=false, $default=null)
{
if ($expr !== "") {
$x = explode(";", $expr);
$loc = array_shift($x);
$x = implode(";", $x);
if (is_array($val) && array_key_exists($loc, $val)) {
$this->trace($x, $val[$loc], $path . ";" . $loc, $create, $default);
}
else if ($loc == "*") {
$this->walk($loc, $x, $val, $path, array(&$this, "_callback_03"));
}
else if ($loc === "..") {
$this->trace($x, $val, $path,$create, $default);
$this->walk($loc, $x, $val, $path, array(&$this, "_callback_04"));
}
else if (preg_match("/^\(.*?\)$/", $loc)) { // [(expr)]
$this->trace($this->evalx($loc, $val, substr($path, strrpos($path, ";") + 1)) . ";" . $x, $val, $path,$create, $default);
}
else if (preg_match("/^\?\(.*?\)$/", $loc)) { // [?(expr)]
$this->walk($loc, $x, $val, $path, array(&$this, "_callback_05"));
}
else if (preg_match("/^(-?[0-9]*):(-?[0-9]*):?(-?[0-9]*)$/", $loc)) { // [start:end:step] phyton slice syntax
$this->slice($loc, $x, $val, $path,$create, $default);
}
else if (preg_match("/,/", $loc)) { // [name1,name2,...]
for ($s = preg_split("/'?,'?/", $loc), $i = 0, $n = count($s); $i < $n; $i++)
$this->trace($s[$i] . ";" . $x, $val, $path, $create, $default);
}
else if (is_array($val) && $create && ! array_key_exists($loc, $val)) {
if ($x !== "") {
$val[$loc] = array();
} else {
$val[$loc] = $default;
}
$this->trace($x, $val[$loc], $path . ";" . $loc, $create, $default);
}
} else {
$this->store($path, $val);
}
}
private function _callback_03($m, $l, $x, $v, $p)
{
$this->trace($m . ";" . $x, $v, $p);
}
private function _callback_04($m, $l, $x, $v, $p)
{
if (is_array($v[$m])) {
$this->trace("..;" . $x, $v[$m], $p . ";" . $m);
}
}
private function _callback_05($m, $l, $x, $v, $p)
{
if ($this->evalx(preg_replace("/^\?\((.*?)\)$/", "$1", $l), $v[$m])) {
$this->trace($m . ";" . $x, $v, $p);
}
}
private function walk($loc, $expr, $val, $path, $f)
{
foreach ($val as $m => $v) {
call_user_func($f, $m, $loc, $expr, $val, $path);
}
}
private function slice($loc, $expr, &$v, $path,$create=false, $default=null)
{
$s = explode(":", preg_replace("/^(-?[0-9]*):(-?[0-9]*):?(-?[0-9]*)$/", "$1:$2:$3", $loc));
$len = count($v);
$start = (int)$s[0] ? $s[0] : 0;
$end = (int)$s[1] ? $s[1] : $len;
if($create){
if($start>=$end){
$end = $start+1;
}
}
$step = (int)$s[2] ? $s[2] : 1;
if($create){
$start = ($start < 0) ? max(0, $start + $len) : $start;
$end = ($end < 0) ? max(0, $end + $len) : $end;
}else{
$start = ($start < 0) ? max(0, $start + $len) : min($len, $start);
$end = ($end < 0) ? max(0, $end + $len) : min($len, $end);
}
for ($i = $start; $i < $end; $i += $step) {
$this->trace($i . ";" . $expr, $v, $path, $create, $default);
}
}
/**
* @param string $x filter
* @param array $v node
*
* @param string $vname
* @return string
*/
private function evalx($x, $v, $vname = null)
{
$name = "";
$expr = preg_replace(array("/\\$/", "/@/"), array("\$this->obj", "\$v"), $x);
$res = eval("\$name = $expr;");
if ($res === false) {
print("(jsonPath) SyntaxError: " . $expr);
} else {
return $name;
}
}
private function toObject($array)
{
//$o = (object)'';
$o = new \stdClass();
foreach ($array as $key => $value) {
if (is_array($value)) {
$value = $this->toObject($value);
}
$o->$key = $value;
}
return $o;
}
/**
* Search one of the given needs in the array
* @param string $haystack
* @param array $needles
* @return bool|string
*/
private function strpos_array($haystack, array $needles)
{
$closer = 10000;
foreach($needles as $needle) {
if (false !== $pos = strpos($haystack, $needle)) {
if ($pos < $closer) {
$closer = $pos;
}
}
}
return 10000 === $closer ? false : $closer;
}
}
?>

View File

@@ -0,0 +1,222 @@
<?php
namespace Peekmo\JsonPath;
/* JSONStore 0.5 - JSON structure as storage
*
* Copyright (c) 2007 Stefan Goessner (goessner.net)
* Licensed under the MIT (MIT-LICENSE.txt) licence.
*
* Modified by Axel Anceau
*/
class JsonStore
{
private static $emptyArray = array();
/**
* @var array
*/
private $data;
/**
* @var JsonPath
*/
private $jsonPath;
/**
* @param string|array|\stdClass $data
*/
public function __construct($data)
{
$this->jsonPath = new JsonPath();
$this->setData($data);
}
/**
* Sets JsonStore's manipulated data
* @param string|array|\stdClass $data
*/
public function setData($data)
{
$this->data = $data;
if (is_string($this->data)) {
$this->data = json_decode($this->data, true);
} else if (is_object($data)) {
$this->data = json_decode(json_encode($this->data), true);
} else if (!is_array($data)) {
throw new \InvalidArgumentException(sprintf('Invalid data type in JsonStore. Expected object, array or string, got %s', gettype($data)));
}
}
/**
* JsonEncoded version of the object
* @return string
*/
public function toString()
{
return json_encode($this->data);
}
/**
* Returns the given json string to object
* @return \stdClass
*/
public function toObject()
{
return json_decode(json_encode($this->data));
}
/**
* Returns the given json string to array
* @return array
*/
public function toArray()
{
return $this->data;
}
/**
* Gets elements matching the given JsonPath expression
* @param string $expr JsonPath expression
* @param bool $unique Gets unique results or not
* @param bool $create create if not found
* @return array
*/
public function get($expr, $unique = false, $create = false, $default = null)
{
if ((($exprs = $this->normalizedFirst($expr,$create,$default)) !== false) &&
(is_array($exprs) || $exprs instanceof \Traversable)
) {
$values = array();
foreach ($exprs as $expr) {
$o =& $this->data;
$keys = preg_split(
"/([\"'])?\]\[([\"'])?/",
preg_replace(array("/^\\$\[[\"']?/", "/[\"']?\]$/"), "", $expr)
);
for ($i = 0; $i < count($keys); $i++) {
$o =& $o[$keys[$i]];
}
$values[] = & $o;
}
if (true === $unique) {
if (!empty($values) && is_array($values[0])) {
array_walk($values, function(&$value) {
$value = json_encode($value);
});
$values = array_unique($values);
array_walk($values, function(&$value) {
$value = json_decode($value, true);
});
return array_values($values);
}
return array_unique($values);
}
return $values;
}
return self::$emptyArray;
}
/**
* Sets the value for all elements matching the given JsonPath expression
* @param string $expr JsonPath expression
* @param mixed $value Value to set
* @return bool returns true if success
*/
function set($expr, $value)
{
if ($res = $this->get($expr, false, true, null)) {
foreach ($res as &$r) {
$r = $value;
}
return true;
}
return false;
}
/**
* Adds one or more elements matching the given json path expression
* @param string $parentexpr JsonPath expression to the parent
* @param mixed $value Value to add
* @param string $name Key name
* @return bool returns true if success
*/
public function add($parentexpr, $value, $name = "")
{
if ($parents = $this->get($parentexpr)) {
foreach ($parents as &$parent) {
$parent = is_array($parent) ? $parent : array();
if ($name != "") {
$parent[$name] = $value;
} else {
$parent[] = $value;
}
}
return true;
}
return false;
}
/**
* Removes all elements matching the given jsonpath expression
* @param string $expr JsonPath expression
* @return bool returns true if success
*/
public function remove($expr)
{
if ((($exprs = $this->normalizedFirst($expr)) !== false) &&
(is_array($exprs) || $exprs instanceof \Traversable)
) {
foreach ($exprs as &$expr) {
$o =& $this->data;
$keys = preg_split(
"/([\"'])?\]\[([\"'])?/",
preg_replace(array("/^\\$\[[\"']?/", "/[\"']?\]$/"), "", $expr)
);
for ($i = 0; $i < count($keys) - 1; $i++) {
$o =& $o[$keys[$i]];
}
unset($o[$keys[$i]]);
}
return true;
}
return false;
}
private function normalizedFirst($expr, $create,$default)
{
if ($expr == "") {
return false;
} else {
if (preg_match("/^\$(\[([0-9*]+|'[-a-zA-Z0-9_ ]+')\])*$/", $expr)) {
print("normalized: " . $expr);
return $expr;
} else {
$res = $this->jsonPath->jsonPath($this->data, $expr, array("resultType" => "PATH"), $create,$default);
return $res;
}
}
}
}
?>