123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- <?php
- namespace Pingpp\Util;
- use Pingpp\PingppObject;
- use stdClass;
- abstract class Util
- {
- /**
- * Whether the provided array (or other) is a list rather than a dictionary.
- *
- * @param array|mixed $array
- * @return boolean True if the given object is a list.
- */
- public static function isList($array)
- {
- if (!is_array($array))
- return false;
- // TODO: generally incorrect, but it's correct given Pingpp's response
- foreach (array_keys($array) as $k) {
- if (!is_numeric($k))
- return false;
- }
- return true;
- }
- /**
- * Recursively converts the PHP Pingpp object to an array.
- *
- * @param array $values The PHP Pingpp object to convert.
- * @param bool
- * @return array
- */
- public static function convertPingppObjectToArray($values, $keep_object = false)
- {
- $results = array();
- foreach ($values as $k => $v) {
- // FIXME: this is an encapsulation violation
- if ($k[0] == '_') {
- continue;
- }
- if ($v instanceof PingppObject) {
- $results[$k] = $keep_object ? $v->__toStdObject(true) : $v->__toArray(true);
- } else if (is_array($v)) {
- $results[$k] = self::convertPingppObjectToArray($v, $keep_object);
- } else {
- $results[$k] = $v;
- }
- }
- return $results;
- }
- /**
- * Recursively converts the PHP Pingpp object to an stdObject.
- *
- * @param array $values The PHP Pingpp object to convert.
- * @return array
- */
- public static function convertPingppObjectToStdObject($values)
- {
- $results = new stdClass;
- foreach ($values as $k => $v) {
- // FIXME: this is an encapsulation violation
- if ($k[0] == '_') {
- continue;
- }
- if ($v instanceof PingppObject) {
- $results->$k = $v->__toStdObject(true);
- } else if (is_array($v)) {
- $results->$k = self::convertPingppObjectToArray($v, true);
- } else {
- $results->$k = $v;
- }
- }
- return $results;
- }
- /**
- * Converts a response from the Pingpp API to the corresponding PHP object.
- *
- * @param stdObject $resp The response from the Pingpp API.
- * @param array $opts
- * @return PingppObject|array
- */
- public static function convertToPingppObject($resp, $opts)
- {
- $types = array(
- 'red_envelope'=>'Pingpp\\RedEnvelope',
- 'charge' => 'Pingpp\\Charge',
- 'list' => 'Pingpp\\Collection',
- 'refund' => 'Pingpp\\Refund',
- 'event' => 'Pingpp\\Event',
- 'transfer' => 'Pingpp\\Transfer',
- 'customer' => 'Pingpp\\Customer',
- 'card' => 'Pingpp\\Card',
- 'sms_code' => 'Pingpp\\SmsCode',
- 'card_info' => 'Pingpp\\CardInfo',
- 'token' => 'Pingpp\\Token'
- );
- if (self::isList($resp)) {
- $mapped = array();
- foreach ($resp as $i)
- array_push($mapped, self::convertToPingppObject($i, $opts));
- return $mapped;
- } else if (is_object($resp)) {
- if (isset($resp->object)
- && is_string($resp->object)
- && isset($types[$resp->object])) {
- $class = $types[$resp->object];
- } else {
- $class = 'Pingpp\\PingppObject';
- }
- return $class::constructFrom($resp, $opts);
- } else {
- return $resp;
- }
- }
- public static function getRequestHeaders()
- {
- if (function_exists('getallheaders')) {
- $headers = array();
- foreach (getallheaders() as $name => $value) {
- $headers[str_replace(' ', '-', ucwords(strtolower(str_replace('-', ' ', $name))))] = $value;
- }
- return $headers;
- }
- $headers = array();
- foreach ($_SERVER as $name => $value) {
- if (substr($name, 0, 5) == 'HTTP_') {
- $headers[str_replace(' ', '-', ucwords(strtolower(str_replace('_', ' ', substr($name, 5)))))] = $value;
- }
- }
- return $headers;
- }
- /**
- * @param string|mixed $value A string to UTF8-encode.
- *
- * @returns string|mixed The UTF8-encoded string, or the object passed in if
- * it wasn't a string.
- */
- public static function utf8($value)
- {
- if (is_string($value)
- && mb_detect_encoding($value, "UTF-8", TRUE) != "UTF-8") {
- return utf8_encode($value);
- } else {
- return $value;
- }
- }
- }
|