HEX
Server: Apache
System: Linux cpanelx.inxs.ro 4.18.0-477.27.2.lve.el8.x86_64 #1 SMP Wed Oct 11 12:32:56 UTC 2023 x86_64
User: crowdandsafety (1041)
PHP: 8.1.34
Disabled: exec,passthru,shell_exec,system
Upload Files
File: //proc/self/cwd/wp-content/plugins/cornerstone/includes/classes/Parsy/Serializer.php
<?php

namespace Themeco\Cornerstone\Parsy;
use Themeco\Cornerstone\Parsy\Util\Token;

class Serializer {

  static $count = 1;
  static $types = [];
  static $active = false;

  public function serialize( $input, $json_flags = 0) {
    self::$count = 1;
    self::$types = [];
    self::$active = true;
    json_encode($input); // run once to populate types

    $result = json_encode( [$input, self::$types], $json_flags);
    self::$active = false;
    return $result;
  }

  public static function isActive() {
    return self::$active;
  }

  public static function index($type) {
    if ( !isset( self::$types[$type] ) ) {
      return self::$types[$type] = self::$count++;
    }

    return self::$types[$type];
  }


  public function unserialize($input) {
    $decoded = json_decode($input);

    if (is_null($decoded)) {
      throw new \Exception('Invalid input: ' . $input);
    }
    list($doc, $types) = $decoded;

    $types = array_flip(get_object_vars($types));

    $tokenize = function($input) use ($types, &$tokenize) {
      if (is_array($input)) return array_map( $tokenize, $input);
      if (is_object($input) && ! is_a($input, Token::class)) {
        $content = null;
        $type = null;

        foreach($input as $type => $content) {
          $type = $types[(int)$type];
          $content = $content;
          break;
        }
        return new Token($type, $tokenize($content));
      }
      return $input;

    };

    return $tokenize($doc);
  }
}