HEX
Server: Apache/2.4.41
System: Linux mainweb 5.4.0-182-generic #202-Ubuntu SMP Fri Apr 26 12:29:36 UTC 2024 x86_64
User: nationalmedicaregrp (1119)
PHP: 8.3.7
Disabled: exec,passthru,shell_exec,system,popen,proc_open,pcntl_exec
Upload Files
File: /home/mjlclaims/public_html/wp-content/plugins/coblocks/src/blocks/gist/index.php
<?php
/**
 * Server-side rendering of the `coblocks/gist` block.
 *
 * @package CoBlocks
 */

/**
 * Registers the Gist oembed handler.
 */
function coblocks_register_gist_oembed() {
	wp_embed_register_handler( 'gist', '/https?:\/\/gist\.github\.com\/([a-zA-Z0-9\/\_\-]+)(?:\#file\-([a-zA-Z0-9\_\-]+))?/', 'coblocks_block_gist_handler' );
}
add_action( 'init', 'coblocks_register_gist_oembed' );

/**
 * Renders the oembed content.
 *
 * @param array $matches The matches from wp_embed_register_handler.
 *
 * @return string The oembed output.
 */
function coblocks_block_gist_handler( $matches ) {
	$gist_url  = empty( $matches[0] ) ? '' : $matches[0];
	$gist_path = empty( $matches[1] ) ? '' : $matches[1];
	$gist_file = empty( $matches[2] ) ? '' : $matches[2];
	$gist_id   = empty( $gist_path ) ? '' : explode( '/', $gist_path )[1];

	if (
		empty( $gist_url ) ||
		empty( $gist_path ) ||
		! preg_match( '/https?:\/\/gist\.github\.com/', $gist_url )
	) {
		return '';
	}

	// Fetch from GitHub API list of all files.
	// in cases where only uppercase files are present this allows us to embed the proper file.
	$api_resp = wp_remote_get(
		'https://api.github.com/gists/' . $gist_id,
		array(
			'headers' => array(
				'Accept' => 'application/json',
			),
		)
	);

	$resp_body = wp_remote_retrieve_body( $api_resp );
	$result    = json_decode( $resp_body, true );

	if ( ! is_array( $result ) || empty( $result['files'] ) || is_wp_error( $result ) ) {
		return '';
	}

	// Map files object into filenames array.
	$file_list = array_filter(
		array_map(
			function( $file ) {
				return ! empty( $file['filename'] ) ? $file['filename'] : null;
			},
			$result['files']
		)
	);

	$script_src = untrailingslashit( $gist_path );
	// .js suffix is needed after gist path for proper embed.
	$script_src .= '.js';

	if ( ! empty( $gist_file ) ) {
		// We replace the dash to obtain true filename.
		$dash_position = strrpos( $gist_file, '-' );
		if ( false !== $dash_position ) {
			$gist_file = substr_replace( $gist_file, '.', $dash_position, 1 );
		}

		// Return the first matching filename regardless of case to mimic GitHub behavior.
		$matched_file = array_search( $gist_file, array_map( 'strtolower', $file_list ), true );
		$script_src  .= '?file=' . $matched_file;

	}

	$gist_html = "<span class='coblocks-gist__container' style='pointer-events: none'>";

	$gist_html .= wp_get_inline_script_tag( null, array( 'src' => esc_url( 'https://gist.github.com/' . $script_src ) ) );

	$gist_html .= sprintf(
		'<a class="gist-block__container" href="%1$s" target="_blank">%2$s</a>',
		esc_url( $gist_url ),
		esc_html( __( 'View this gist on GitHub', 'coblocks' ) )
	);

	$gist_html .= '</span>';

	return $gist_html;
}