PHP 8.2.31
Preview: ShippingAddressSchema.php Size: 2.84 KB
/home/nshryvcy/radiantskinclinics.org/wp-content/plugins/woocommerce/src/StoreApi/Schemas/V1/ShippingAddressSchema.php

<?php
namespace Automattic\WooCommerce\StoreApi\Schemas\V1;

use Automattic\WooCommerce\StoreApi\Exceptions\RouteException;
use Automattic\WooCommerce\StoreApi\Utilities\ValidationUtils;

/**
 * ShippingAddressSchema class.
 *
 * Provides a generic shipping address schema for composition in other schemas.
 */
class ShippingAddressSchema extends AbstractAddressSchema {
	/**
	 * The schema item name.
	 *
	 * @var string
	 */
	protected $title = 'shipping_address';

	/**
	 * The schema item identifier.
	 *
	 * @var string
	 */
	const IDENTIFIER = 'shipping-address';

	/**
	 * Convert a term object into an object suitable for the response.
	 *
	 * @param \WC_Order|\WC_Customer $address An object with shipping address.
	 *
	 * @throws RouteException When the invalid object types are provided.
	 * @return array
	 */
	public function get_item_response( $address ) {
		$validation_util = new ValidationUtils();
		if ( ( $address instanceof \WC_Customer || $address instanceof \WC_Order ) ) {
			$shipping_country = $address->get_shipping_country();
			$shipping_state   = $address->get_shipping_state();

			if ( ! $validation_util->validate_state( $shipping_state, $shipping_country ) ) {
				$shipping_state = '';
			}

			$additional_address_fields = $this->additional_fields_controller->get_all_fields_from_object( $address, 'shipping' );

			$address_object = array_merge(
				[
					'first_name' => $address->get_shipping_first_name(),
					'last_name'  => $address->get_shipping_last_name(),
					'company'    => $address->get_shipping_company(),
					'address_1'  => $address->get_shipping_address_1(),
					'address_2'  => $address->get_shipping_address_2(),
					'city'       => $address->get_shipping_city(),
					'state'      => $shipping_state,
					'postcode'   => $address->get_shipping_postcode(),
					'country'    => $shipping_country,
					'phone'      => $address->get_shipping_phone(),
				],
				$additional_address_fields
			);

			// Add any missing keys from additional_fields_controller to the address response.
			foreach ( $this->additional_fields_controller->get_address_fields_keys() as $field ) {
				if ( isset( $address_object[ $field ] ) ) {
					continue;
				}
				$address_object[ $field ] = '';
			}

			foreach ( $address_object as $key => $value ) {
				if ( isset( $this->get_properties()[ $key ]['type'] ) && 'boolean' === $this->get_properties()[ $key ]['type'] ) {
					$address_object[ $key ] = (bool) $value;
				} else {
					$address_object[ $key ] = $this->prepare_html_response( $value );
				}
			}
			return $address_object;
		}

		throw new RouteException(
			'invalid_object_type',
			sprintf(
				/* translators: Placeholders are class and method names */
				__( '%1$s requires an instance of %2$s or %3$s for the address', 'woocommerce' ),
				'ShippingAddressSchema::get_item_response',
				'WC_Customer',
				'WC_Order'
			),
			500
		);
	}
}

Directory Contents

Dirs: 2 × Files: 28

Name Size Perms Modified Actions
Agentic DIR
- drwxr-xr-x 2026-05-29 02:43:21
Edit Download
AI DIR
- drwxr-xr-x 2026-05-29 02:43:21
Edit Download
10.58 KB lrw-r--r-- 2025-05-12 21:07:28
Edit Download
12.97 KB lrw-r--r-- 2026-05-11 17:17:08
Edit Download
427 B lrw-r--r-- 2023-12-27 00:45:02
Edit Download
4.46 KB lrw-r--r-- 2024-04-30 19:35:34
Edit Download
2.98 KB lrw-r--r-- 2025-06-30 17:49:22
Edit Download
2.21 KB lrw-r--r-- 2024-08-27 23:04:44
Edit Download
2.12 KB lrw-r--r-- 2023-12-27 00:45:02
Edit Download
7.54 KB lrw-r--r-- 2026-05-05 14:26:50
Edit Download
17.07 KB lrw-r--r-- 2026-05-05 14:26:50
Edit Download
11.37 KB lrw-r--r-- 2023-12-27 00:45:02
Edit Download
752 B lrw-r--r-- 2023-12-27 00:45:02
Edit Download
15.05 KB lrw-r--r-- 2025-06-23 19:46:28
Edit Download
1.12 KB lrw-r--r-- 2023-12-27 00:45:02
Edit Download
3.32 KB lrw-r--r-- 2026-03-30 17:12:24
Edit Download
11.27 KB lrw-r--r-- 2025-07-29 12:34:58
Edit Download
2.41 KB lrw-r--r-- 2023-12-27 00:45:02
Edit Download
2.20 KB lrw-r--r-- 2023-12-27 00:45:02
Edit Download
7.16 KB lrw-r--r-- 2026-02-23 17:58:34
Edit Download
12.86 KB lrw-r--r-- 2026-05-05 14:26:50
Edit Download
673 B lrw-r--r-- 2024-10-21 23:53:16
Edit Download
2.50 KB lrw-r--r-- 2023-12-27 00:45:02
Edit Download
3.49 KB lrw-r--r-- 2025-03-03 22:28:12
Edit Download
3.50 KB lrw-r--r-- 2023-12-27 00:45:02
Edit Download
4.95 KB lrw-r--r-- 2025-07-29 12:34:58
Edit Download
6.12 KB lrw-r--r-- 2023-12-27 00:45:02
Edit Download
36.58 KB lrw-r--r-- 2026-05-05 14:26:50
Edit Download
2.84 KB lrw-r--r-- 2024-04-30 19:35:34
Edit Download
2.15 KB lrw-r--r-- 2023-12-27 00:45:02
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).