File "Body.php"

Full Path: /home/capoeirajd/www/wp-content/plugins/wpforms-lite/vendor_prefixed/apimatic/unirest-php/src/Request/Body.php
File size: 1.73 KB
MIME-type: text/x-php
Charset: utf-8

<?php

namespace WPForms\Vendor\Unirest\Request;

use CURLFile;
use Exception;
class Body
{
    /**
     * Prepares a file for upload. To be used inside the parameters declaration for a request.
     * @param string $filename The file path
     * @param string $mimetype MIME type
     * @param string $postName the file name
     * @return string|CURLFile
     */
    public static function file(string $filename, string $mimetype = '', string $postName = '')
    {
        if (\class_exists('CURLFile')) {
            return new CURLFile($filename, $mimetype, $postName);
        }
        if (\function_exists('curl_file_create')) {
            return \curl_file_create($filename, $mimetype, $postName);
        }
        return \sprintf('@%s;filename=%s;type=%s', $filename, $postName ?: \basename($filename), $mimetype);
    }
    /**
     * @throws Exception
     */
    public static function json($data)
    {
        if (!\function_exists('json_encode')) {
            throw new Exception('JSON Extension not available');
        }
        return \json_encode($data);
    }
    public static function form($data)
    {
        if (\is_array($data) || \is_object($data) || $data instanceof \Traversable) {
            return \http_build_query(Request::buildHTTPCurlQuery($data));
        }
        return $data;
    }
    public static function multipart($data, $files = \false) : array
    {
        if (\is_object($data)) {
            return \get_object_vars($data);
        }
        if (!\is_array($data)) {
            return [$data];
        }
        if ($files !== \false) {
            foreach ($files as $name => $file) {
                $data[$name] = \call_user_func([__CLASS__, 'File'], $file);
            }
        }
        return $data;
    }
}