GOOD SHELL MAS BOY
Server: Apache/2.4.52 (Ubuntu)
System: Linux vmi1836763.contaboserver.net 5.15.0-130-generic #140-Ubuntu SMP Wed Dec 18 17:59:53 UTC 2024 x86_64
User: www-data (33)
PHP: 8.4.10
Disabled: NONE
Upload Files
File: /var/www/console.fixgini.com/vendor/cloudinary/cloudinary_php/src/Tag/UploadTag.php
<?php
/**
 * This file is part of the Cloudinary PHP package.
 *
 * (c) Cloudinary
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Cloudinary\Tag;

use Cloudinary\ArrayUtils;
use Cloudinary\Asset\AssetType;
use Cloudinary\Configuration\Configuration;
use Cloudinary\JsonUtils;

/**
 * Generates an HTML `<input>` tag to use for uploading files.
 *
 * For example:
 *
 *```
 * <input
 *    class="cloudinary-fileupload"
 *    data-cloudinary-field="..."
 *    data-form-data="..."
 *    data-url="..."
 *    name="file"
 *    type="file"
 * >
 *```
 *
 * @api
 */
class UploadTag extends BaseConfigurableApiTag
{
    const NAME    = 'input';
    const IS_VOID = true;

    /**
     * @var array $attributes An array of tag attributes.
     */
    protected $attributes = [
        'name' => 'file',
        'type' => 'file',
    ];

    /**
     * @var array $classes An array of tag (unique) classes. Keys are used for uniqueness.
     */
    protected $classes = ['cloudinary-fileupload' => 0];

    /**
     * UploadTag constructor.
     *
     * @param string        $field         The name of an input field in the same form that will be updated post-upload
     *                                     with the asset's metadata.
     * @param Configuration $configuration The configuration instance.
     * @param array         $uploadParams
     * @param string        $assetType
     */
    public function __construct($field, $configuration = null, $uploadParams = [], $assetType = AssetType::AUTO)
    {
        parent::__construct($configuration, $uploadParams, $assetType);

        $this->setAttribute('data-cloudinary-field', $field);
    }

    /**
     * Creates a new UploadTag the provided source and an array of parameters.
     *
     * @param string $field                The name of an input field in the same form that will be updated post-upload
     *                                     with the asset's metadata.
     * @param array  $params               The upload parameters.
     *
     * @return UploadTag
     */

    public static function fromParams($field, $params = [])
    {
        $configuration = self::fromParamsDefaultConfig();

        $configuration->importJson($params);

        return (new self($field, $configuration, $params))->addClass(ArrayUtils::get($params, ['html', 'class']));
    }

    /**
     * Serializes the tag attributes.
     *
     * @param array $attributes Optional. Additional attributes to add without affecting the tag state.
     *
     * @return string
     */
    public function serializeAttributes($attributes = [])
    {
        $attributes['data-max-chunk-size'] = $this->apiConfig->chunkSize;
        $attributes['data-form-data']      = JsonUtils::encode($this->getUploadParams());
        $attributes['data-url']            = $this->uploadApi->getUploadUrl($this->assetType);

        return parent::serializeAttributes($attributes);
    }

    /**
     * Builds an unsigned upload tag.
     *
     * @param               $field
     * @param string        $uploadPreset
     * @param Configuration $configuration The configuration instance.
     * @param array         $uploadParams
     * @param string        $assetType
     *
     * @return UploadTag
     */
    public static function unsigned(
        $field,
        $uploadPreset,
        $configuration = null,
        $uploadParams = [],
        $assetType = AssetType::AUTO
    ) {
        $uploadParams['upload_preset'] = $uploadPreset;

        $tag = new UploadTag(
            $field,
            $configuration,
            $uploadParams,
            $assetType
        );

        $tag->config->tag->unsignedUpload = true;

        return $tag;
    }
}