# packeta/trunk/src/Packetery/Module/Email/EmailShortcodes.php

Packeta, version trunk. 268 lines.

- Page: https://pluginprobe.com/plugins/packeta/trunk/code/src/Packetery/Module/Email/EmailShortcodes.php
- Raw: https://pluginprobe.com/plugins/packeta/trunk/raw/src/Packetery/Module/Email/EmailShortcodes.php
- Modified: 2025-11-07T08:59:28+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/packeta/trunk/code/src/Packetery/Module/Email/EmailShortcodes.php#L10-L20`.

```php
<?php

declare(strict_types=1);

namespace Packetery\Module\Email;

use Packetery\Core\Entity\Order;
use Packetery\Module\Framework\WpAdapter;
use Packetery\Module\Order\Repository;

class EmailShortcodes {
	/** @var WpAdapter */
	private $wpAdapter;

	/** @var Repository */
	private $orderRepository;

	public function __construct(
		WpAdapter $wpAdapter,
		Repository $orderRepository
	) {
		$this->wpAdapter       = $wpAdapter;
		$this->orderRepository = $orderRepository;
	}

	public function register(): void {
		$this->wpAdapter->addShortcode( 'packeta_tracking_number', [ $this, 'trackingNumber' ] );
		$this->wpAdapter->addShortcode( 'packeta_tracking_url', [ $this, 'trackingUrl' ] );
		$this->wpAdapter->addShortcode( 'packeta_pickup_point_id', [ $this, 'pickupPointId' ] );
		$this->wpAdapter->addShortcode( 'packeta_pickup_place', [ $this, 'pickupPointPlace' ] );
		$this->wpAdapter->addShortcode( 'packeta_pickup_point_name', [ $this, 'pickupPointName' ] );
		$this->wpAdapter->addShortcode( 'packeta_pickup_point_address', [ $this, 'pickupPointAddress' ] );
		$this->wpAdapter->addShortcode( 'packeta_pickup_point_street', [ $this, 'pickupPointStreet' ] );
		$this->wpAdapter->addShortcode( 'packeta_pickup_point_city', [ $this, 'pickupPointCity' ] );
		$this->wpAdapter->addShortcode( 'packeta_pickup_point_zip', [ $this, 'pickupPointZip' ] );
		$this->wpAdapter->addShortcode( 'packeta_pickup_point_country', [ $this, 'pickupPointCountry' ] );
		$this->wpAdapter->addShortcode( 'packeta_carrier_name', [ $this, 'carrierName' ] );

		$this->wpAdapter->addShortcode( 'packeta_if_packet_submitted', [ $this, 'ifPacketSubmitted' ] );
		$this->wpAdapter->addShortcode( 'packeta_if_pickup_point', [ $this, 'ifPickupPoint' ] );
		$this->wpAdapter->addShortcode( 'packeta_if_carrier', [ $this, 'ifExternalCarrier' ] );
	}

	/**
	 * @param array<string,mixed> $shortcodeAttributes
	 */
	private function findOrder( array $shortcodeAttributes ): ?Order {
		$orderId = $shortcodeAttributes['order_id'] ?? null;
		if ( $orderId === null || is_numeric( $orderId ) === false ) {
			return null;
		}

		return $this->orderRepository->findById( (int) $orderId );
	}

	/**
	 * @param array<string,mixed> $shortcodeAttributes
	 */
	public function trackingNumber( array $shortcodeAttributes ): string {
		$order = $this->findOrder( $shortcodeAttributes );
		if ( $order === null ) {
			return '';
		}

		return $order->getPacketBarcode() ?? '';
	}

	/**
	 * @param array<string,mixed> $shortcodeAttributes
	 */
	public function trackingUrl( array $shortcodeAttributes ): string {
		$order = $this->findOrder( $shortcodeAttributes );
		if ( $order === null ) {
			return '';
		}

		return $order->getPacketTrackingUrl() ?? '';
	}

	/**
	 * @param array<string,mixed> $shortcodeAttributes
	 */
	public function pickupPointId( array $shortcodeAttributes ): string {
		$order = $this->findOrder( $shortcodeAttributes );
		if ( $order === null ) {
			return '';
		}

		$pickupPoint = $order->getPickupPoint();
		if ( $pickupPoint === null ) {
			return '';
		}

		return $pickupPoint->getId() ?? '';
	}

	/**
	 * @param array<string,mixed> $shortcodeAttributes
	 */
	public function pickupPointPlace( array $shortcodeAttributes ): string {
		$order = $this->findOrder( $shortcodeAttributes );
		if ( $order === null ) {
			return '';
		}

		$pickupPoint = $order->getPickupPoint();
		if ( $pickupPoint === null ) {
			return '';
		}

		return $pickupPoint->getPlace() ?? '';
	}

	/**
	 * @param array<string,mixed> $shortcodeAttributes
	 */
	public function pickupPointName( array $shortcodeAttributes ): string {
		$order = $this->findOrder( $shortcodeAttributes );
		if ( $order === null ) {
			return '';
		}

		$pickupPoint = $order->getPickupPoint();
		if ( $pickupPoint === null ) {
			return '';
		}

		return $pickupPoint->getName() ?? '';
	}

	/**
	 * @param array<string,mixed> $shortcodeAttributes
	 */
	public function pickupPointAddress( array $shortcodeAttributes ): string {
		$order = $this->findOrder( $shortcodeAttributes );
		if ( $order === null ) {
			return '';
		}

		$pickupPoint = $order->getPickupPoint();
		if ( $pickupPoint === null ) {
			return '';
		}

		return $pickupPoint->getFullAddress();
	}

	/**
	 * @param array<string,mixed> $shortcodeAttributes
	 */
	public function pickupPointStreet( array $shortcodeAttributes ): string {
		$order = $this->findOrder( $shortcodeAttributes );
		if ( $order === null ) {
			return '';
		}

		$pickupPoint = $order->getPickupPoint();
		if ( $pickupPoint === null ) {
			return '';
		}

		return $pickupPoint->getStreet() ?? '';
	}

	/**
	 * @param array<string,mixed> $shortcodeAttributes
	 */
	public function pickupPointCity( array $shortcodeAttributes ): string {
		$order = $this->findOrder( $shortcodeAttributes );
		if ( $order === null ) {
			return '';
		}

		$pickupPoint = $order->getPickupPoint();
		if ( $pickupPoint === null ) {
			return '';
		}

		return $pickupPoint->getCity() ?? '';
	}

	/**
	 * @param array<string,mixed> $shortcodeAttributes
	 */
	public function pickupPointZip( array $shortcodeAttributes ): string {
		$order = $this->findOrder( $shortcodeAttributes );
		if ( $order === null ) {
			return '';
		}

		$pickupPoint = $order->getPickupPoint();
		if ( $pickupPoint === null ) {
			return '';
		}

		return $pickupPoint->getZip() ?? '';
	}

	/**
	 * @param array<string,mixed> $shortcodeAttributes
	 */
	public function pickupPointCountry( array $shortcodeAttributes ): string {
		$order = $this->findOrder( $shortcodeAttributes );
		if ( $order === null ) {
			return '';
		}

		$pickupPoint = $order->getPickupPoint();
		if ( $pickupPoint === null ) {
			return '';
		}

		return $order->getShippingCountry() ?? '';
	}

	/**
	 * @param array<string,mixed> $shortcodeAttributes
	 */
	public function carrierName( array $shortcodeAttributes ): string {
		$order = $this->findOrder( $shortcodeAttributes );
		if ( $order === null ) {
			return '';
		}

		return $order->getCarrier()->getName();
	}

	/**
	 * @param array<string,mixed> $shortcodeAttributes
	 */
	public function ifPacketSubmitted( array $shortcodeAttributes, string $content = '' ): string {
		$order = $this->findOrder( $shortcodeAttributes );
		if ( $order === null || $order->getPacketId() === null ) {
			return '';
		}

		return $this->wpAdapter->doShortcode( $content );
	}

	/**
	 * @param array<string,mixed> $shortcodeAttributes
	 */
	public function ifPickupPoint( array $shortcodeAttributes, string $content = '' ): string {
		$order = $this->findOrder( $shortcodeAttributes );
		if ( $order === null || $order->getPickupPoint() === null ) {
			return '';
		}

		return $this->wpAdapter->doShortcode( $content );
	}

	/**
	 * @param array<string,mixed> $shortcodeAttributes
	 */
	public function ifExternalCarrier( array $shortcodeAttributes, string $content = '' ): string {
		$order = $this->findOrder( $shortcodeAttributes );
		if ( $order === null ) {
			return '';
		}

		if ( $order->isExternalCarrier() === false ) {
			return '';
		}

		return $this->wpAdapter->doShortcode( $content );
	}
}

```
