# wp-parsely/3.16.2/src/Utils/utils.php

Parse.ly, version 3.16.2. 388 lines.

- Page: https://pluginprobe.com/plugins/wp-parsely/3.16.2/code/src/Utils/utils.php
- Raw: https://pluginprobe.com/plugins/wp-parsely/3.16.2/raw/src/Utils/utils.php
- Modified: 2024-03-14T14:13:10+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/wp-parsely/3.16.2/code/src/Utils/utils.php#L10-L20`.

```php
<?php
/**
 * Util Functions.
 *
 * To enforce typing on commonly used functions.
 *
 * @package Parsely
 * @since   3.7.0
 */

declare(strict_types=1);

namespace Parsely\Utils;

use WP_Post;
use WP_Error;

use const Parsely\PARSELY_FILE;

const DATE_UTC_FORMAT     = 'Y-m-d';
const WP_DATE_TIME_FORMAT = 'Y-m-d H:i:s';

/**
 * Gets UTC Date.
 *
 * @since 3.7.0
 *
 * @param int $days Number of days before or after the current date.
 *
 * @return string
 */
function get_utc_date_format( int $days = 0 ): string {
	if ( 0 === $days ) {
		return gmdate( DATE_UTC_FORMAT );
	}

	return gmdate( DATE_UTC_FORMAT, (int) strtotime( "{$days} days" ) );
}

/**
 * Gets default category.
 *
 * @since 3.7.0
 *
 * @return int
 */
function get_default_category(): int {
	/**
	 * Variable.
	 *
	 * @var string
	 */
	$default_category = get_option( 'default_category' );

	return (int) $default_category;
}

/**
 * Gets option `page_for_posts`.
 *
 * @since 3.7.0
 *
 * @param bool $default_value Default Value.
 *
 * @return int|WP_Post
 */
function get_page_for_posts( $default_value = false ) {
	/**
	 * Variable.
	 *
	 * @var int|WP_Post
	 */
	return get_option( 'page_for_posts', $default_value );
}

/**
 * Gets option `page_on_front`.
 *
 * @since 3.7.0
 *
 * @return bool
 */
function get_page_on_front() {
	/**
	 * Variable.
	 *
	 * @var bool
	 */
	return get_option( 'page_on_front' );
}

/**
 * Gets 'string' query variable from WP_Query class.
 *
 * @since 3.7.0
 *
 * @param string $key Variable key to retrieve.
 *
 * @return string
 */
function get_string_query_var( string $key ): string {
	/**
	 * Variable.
	 *
	 * @var string
	 */
	return get_query_var( $key );
}

/**
 * Gets site date format.
 *
 * @since 3.7.0
 */
function get_date_format(): string {
	/**
	 * Variable.
	 *
	 * @var string
	 */
	return get_option( 'date_format' );
}

/**
 * Gets site time format.
 *
 * @since 3.7.0
 */
function get_time_format(): string {
	/**
	 * Variable.
	 *
	 * @var string
	 */
	return get_option( 'time_format' );
}

/**
 * Returns the current time's timestamp.
 *
 * @since 3.12.0
 *
 * @return string
 */
function get_timestamp(): string {
	$timestamp = round( microtime( true ) * 1000 );

	return number_format( $timestamp, 0, '', '' );
}

/**
 * Gets number in formatted form i.e. express bigger numbers in form of
 * thousands (k), millions (M), billions (B).
 *
 * Note: This function is not made to process float numbers, and it is a PHP
 * port of our formatToImpreciseNumber() TypeScript function.
 *
 * Example:
 *   - Represent 10000 as 10K.
 *
 * @since 3.7.0
 *
 * @param string $value           The number to process. It can be formatted.
 * @param int    $fraction_digits The number of desired fraction digits.
 * @param string $glue            A string to put between the number and unit.
 *
 * @return string The number formatted as an imprecise number.
 */
function get_formatted_number( string $value, int $fraction_digits = 1, string $glue = '' ): string {
	$number = (int) preg_replace( '/\D/', '', $value );

	if ( $number < 1000 ) {
		return $value;
	} elseif ( $number < 10000 ) {
		$fraction_digits = 1;
	}

	$unit_names               = array(
		'1000'             => 'k',
		'1000000'          => 'M',
		'1000000000'       => 'B',
		'1000000000000'    => 'T',
		'1000000000000000' => 'Q',
	);
	$current_number           = $number;
	$current_number_as_string = (string) $number;
	$unit                     = '';
	$previous_number          = 0;

	foreach ( $unit_names as $thousands => $suffix ) {
		$thousands_int = (int) preg_replace( '/\D/', '', (string) $thousands );

		if ( $number >= $thousands_int ) {
			$current_number = $number / $thousands_int;
			$precision      = $fraction_digits;

			// For over 10 units, we reduce the precision to 1 fraction digit.
			$modulo = (int) fmod( $current_number, 1 );
			if ( 0 !== $previous_number && $modulo > 1 / $previous_number ) {
				$precision = $current_number > 10 ? 1 : 2;
			}

			// Precision override, where we want to show 2 fraction digits.
			$zeroes                   = floatval( number_format( $current_number, 2 ) ) ===
										floatval( number_format( $current_number, 0 ) );
			$precision                = $zeroes ? 0 : $precision;
			$current_number_as_string = number_format( $current_number, $precision, '.', '' );
			$unit                     = $suffix;
		}

		$previous_number = $current_number;
	}

	return $current_number_as_string . $glue . $unit;
}

/**
 * Gets time in formatted form.
 *
 * Example:
 *   - Input `1000` (seconds) and Output `16:40` which represents "16 minutes, 40 seconds”
 *
 * @since 3.7.0
 *
 * @param float $seconds Time in seconds to be formatted.
 *
 * @return string
 */
function get_formatted_time( $seconds ): string {
	$seconds = round( $seconds );
	$hours   = floor( $seconds / 3600 );

	if ( $hours >= 1 ) {
		$seconds = $seconds - ( $hours * 3600 );
		$minutes = floor( $seconds / 60 );
		$seconds = round( $seconds % 60 );

		return esc_html( /* translators: 1: Number of hours 2: Number of minutes 3: Number of seconds */
			sprintf( __( '%1$d:%2$02d:%3$02d', 'wp-parsely' ), $hours, $minutes, $seconds )
		);
	}

	$minutes = floor( $seconds / 60 );
	$seconds = round( $seconds % 60 );

	if ( $minutes >= 1 ) {
		return esc_html( /* translators: 1: Number of minutes 2: Number of seconds */
			sprintf( __( '%1$d:%2$02d', 'wp-parsely' ), $minutes, $seconds )
		);
	}

	return esc_html( /* translators: 1: Number of seconds */
		sprintf( __( '%1$d sec.', 'wp-parsely' ), round( $seconds ) )
	);
}

/**
 * Returns the passed float as a time duration in m:ss format.
 *
 * Examples:
 *   - $time of 1.005 yields '1:00'.
 *   - $time of 1.5 yields '1:30'.
 *   - $time of 1.999 yields '2:00'.
 *
 * @since 3.6.0
 *
 * @param float $time The time as a float number.
 *
 * @return string The resulting formatted time duration.
 */
function get_formatted_duration( float $time ): string {
	$minutes = absint( $time );
	$seconds = absint( round( fmod( $time, 1 ) * 60 ) );

	if ( 60 === $seconds ) {
		++$minutes;
		$seconds = 0;
	}

	return sprintf( '%d:%02d', $minutes, $seconds );
}

/**
 * Converts to associate array.
 *
 * @since 3.7.0
 *
 * @param mixed $obj Input object.
 *
 * @return array<string, mixed>|WP_Error
 */
function convert_to_associative_array( $obj ) {
	$encoded = wp_json_encode( $obj );

	if ( false === $encoded ) {
		return new WP_Error( 'parsely_encoding_failed', __( 'Unable to encode API response for associative array', 'wp-parsely' ) );
	}

	/**
	 * Variable.
	 *
	 * @var array<string, mixed>
	 */
	return json_decode( $encoded, true );
}

/**
 * Converts a string to a positive integer, removing any non-numeric
 * characters.
 *
 * @param string $value The string to be converted to an integer.
 * @return int The integer resulting from the conversion.
 */
function convert_to_positive_integer( string $value ): int {
	return (int) preg_replace( '/\D/', '', $value );
}

/**
 * Converts endpoint to filter key by replacing `/` with `_`.
 *
 * @param string $endpoint Route of the endpoint.
 *
 * @since 3.7.0
 *
 * @return string
 */
function convert_endpoint_to_filter_key( string $endpoint ): string {
	return trim( str_replace( array( '-', '/' ), '_', $endpoint ), '_' );
}

/**
 * Gets content of asset file.
 *
 * @param string $path Path of the asset file.
 *
 * @since 3.8.0
 *
 * @return Asset_Info
 */
function get_asset_info( string $path ) {
	return require plugin_dir_path( PARSELY_FILE ) . $path;
}

/**
 * Checks if a string starts with a specific substring.
 *
 * This function uses the built-in PHP function `str_starts_with` if it's available (PHP 8.0 and later).
 * If the function is not available (PHP versions prior to 8.0), it uses the `strpos` function as a fallback.
 *
 * @since 3.13.0
 *
 * @param string $haystack The string to search in.
 * @param string $needle The substring to search for at the start of $haystack.
 * @return bool Returns true if $haystack starts with $needle, false otherwise.
 */
function str_starts_with( string $haystack, string $needle ): bool {
	if ( function_exists( '\str_starts_with' ) ) {
		return \str_starts_with( $haystack, $needle );
	}
	return 0 === strpos( $haystack, $needle );
}

/**
 * Checks if HTTPS is supported for the site.
 *
 * This function checks if the WordPress function 'wp_is_using_https' exists and uses it to determine if
 * HTTPS is supported.
 * If the function does not exist, it checks if the home URL scheme is HTTPS.
 * If neither of the above conditions are met, it checks if the site URL option scheme is HTTPS.
 *
 * @since 3.14.1
 *
 * @return bool Returns true if HTTPS is supported, false otherwise.
 */
function parsely_is_https_supported(): bool {
	if ( function_exists( 'wp_is_using_https' ) ) {
		return wp_is_using_https();
	}

	if ( 'https' === wp_parse_url( home_url(), PHP_URL_SCHEME ) ) {
		return true;
	}

	// phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound
	$site_url = apply_filters( 'site_url', get_option( 'siteurl' ), '', null, null );
	return 'https' === wp_parse_url( $site_url, PHP_URL_SCHEME );
}

```
