Done ! 403WebShell
403Webshell
Server IP : 162.0.217.223  /  Your IP : 216.73.216.153
Web Server : LiteSpeed
System : Linux premium269.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : mypckeys ( 1539)
PHP Version : 8.1.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/mypckeys/yeslicense.org/wp-content/plugins/squirrly-seo/models/focuspages/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/mypckeys/yeslicense.org/wp-content/plugins/squirrly-seo/models/focuspages/Snippet.php
<?php
defined( 'ABSPATH' ) || die( 'Cheatin\' uh?' );

class SQ_Models_Focuspages_Snippet extends SQ_Models_Abstract_Assistant {

	protected $_category = 'snippet';

	protected $_keyword = false;
	protected $_title = false;
	protected $_description = false;
	protected $_keyword_in_title = false;
	protected $_keyword_in_description = false;
	protected $_open_graph = false;
	protected $_twitter_card = false;
	protected $_json = false;
	protected $_customized = false;

	const TITLE_MINLENGTH = 10;
	const DESCRIPTION_MINLENGTH = 10;

	public function init() {
		parent::init();

		if ( ! isset( $this->_audit->data ) ) {
			$this->_error = true;

			return;
		}

		if ( isset( $this->_audit->data->sq_seo_keywords->value ) ) {
			$this->_keyword = $this->_audit->data->sq_seo_keywords->value;
		}

		if ( $this->_post->sq->og_media == '' ) {
			$images = SQ_Classes_ObjController::getNewClass( 'SQ_Models_Services_OpenGraph' )->getPostImages();
			if ( ! empty( $images ) ) {
				$image = current( $images );
				if ( isset( $image['src'] ) ) {
					$this->_post->sq->og_media = $image['src'];
				}
			} elseif ( SQ_Classes_Helpers_Tools::getOption( 'sq_og_image' ) ) {
				$this->_post->sq->og_media = SQ_Classes_Helpers_Tools::getOption( 'sq_og_image' );
			}
		}

		$this->_open_graph = json_decode( json_encode( array(
					'title'       => ( $this->_post->sq->og_title <> '' ? $this->_post->sq->og_title : SQ_Classes_Helpers_Sanitize::truncate( $this->_post->sq->title, self::TITLE_MINLENGTH, $this->_post->sq->og_title_maxlength ) ),
					'description' => ( $this->_post->sq->og_description <> '' ? $this->_post->sq->og_description : SQ_Classes_Helpers_Sanitize::truncate( $this->_post->sq->description, self::DESCRIPTION_MINLENGTH, $this->_post->sq->og_description_maxlength ) ),
					'image'       => $this->_post->sq->og_media,
				) ) );

		if ( $this->_post->sq->tw_media == '' ) {
			$images = SQ_Classes_ObjController::getNewClass( 'SQ_Models_Services_OpenGraph' )->getPostImages();
			if ( ! empty( $images ) ) {
				$image = current( $images );
				if ( isset( $image['src'] ) ) {
					$this->_post->sq->tw_media = $image['src'];
				}
			} elseif ( SQ_Classes_Helpers_Tools::getOption( 'sq_tc_image' ) ) {
				$this->_post->sq->tw_media = SQ_Classes_Helpers_Tools::getOption( 'sq_tc_image' );
			}
		}
		$this->_twitter_card = json_decode( json_encode( array(
					'title'       => ( $this->_post->sq->tw_title <> '' ? $this->_post->sq->tw_title : SQ_Classes_Helpers_Sanitize::truncate( $this->_post->sq->title, self::TITLE_MINLENGTH, $this->_post->sq->tw_title_maxlength ) ),
					'description' => ( $this->_post->sq->tw_description <> '' ? $this->_post->sq->tw_description : SQ_Classes_Helpers_Sanitize::truncate( $this->_post->sq->description, self::DESCRIPTION_MINLENGTH, $this->_post->sq->tw_description_maxlength ) ),
					'image'       => $this->_post->sq->tw_media,
				) ) );


		if ( isset( $this->_audit->data->sq_seo_jsonld->value ) && $this->_audit->data->sq_seo_jsonld->value <> '' ) {
			$this->_json = json_decode( $this->_audit->data->sq_seo_jsonld->value, true );
		}

		if ( isset( $this->_post->sq->doseo ) && $this->_post->sq->doseo ) {
			if ( isset( $this->_post->sq->title ) && $this->_post->sq->title <> '' ) {
				$this->_title = $this->_post->sq->title;
			}
			if ( isset( $this->_post->sq->description ) && $this->_post->sq->description <> '' ) {
				$this->_description = $this->_post->sq->description;
			}

			if ( $this->_title && $this->_keyword ) {
				if ( ! $this->_keyword_in_title = ( SQ_Classes_Helpers_Tools::findStr( $this->_post->sq->title, $this->_keyword ) !== false ) ) {
					if ( $this->_post->sq->keywords <> '' ) {
						$keywords = explode( ',', $this->_post->sq->keywords );

						foreach ( $keywords as $keyword ) {
							if ( $this->_keyword_in_title = ( SQ_Classes_Helpers_Tools::findStr( $this->_post->sq->title, trim( $keyword ) ) !== false ) ) {
								break;
							}
						}
					}
				}
			}

			if ( $this->_description && $this->_keyword ) {
				if ( ! $this->_keyword_in_description = ( SQ_Classes_Helpers_Tools::findStr( $this->_post->sq->description, $this->_keyword ) !== false ) ) {
					if ( $this->_post->sq->keywords <> '' ) {
						$keywords = explode( ',', $this->_post->sq->keywords );

						foreach ( $keywords as $keyword ) {
							if ( $this->_keyword_in_description = ( SQ_Classes_Helpers_Tools::findStr( $this->_post->sq->description, trim( $keyword ) ) !== false ) ) {
								break;
							}
						}
					}
				}
			}

			if ( isset( $this->_post->sq_adm->title ) && $this->_post->sq_adm->title <> '' ) {
				$this->_customized = true;
			}
		}

	}

	public function setTasks( $tasks ) {
		parent::setTasks( $tasks );

		$this->_tasks[ $this->_category ] = array(
			'title'              => array(
				'title'       => esc_html__( "Title", 'squirrly-seo' ),
				'value'       => $this->_title,
				'penalty'     => 5,
				'description' => sprintf( esc_html__( "To complete this task, go and define a title for this page. You can easily do this by using the %sSnippet%s from Squirrly SEO. %s Make sure that you have a Title defined for your Focus Page. %s Not having a title defined is bad for both search engines and Humans. %s Why? %s It's weird for someone to try to figure out if they landed on your Pricing page, and not get a clear answer. If you have multiple pricing pages (in case your site displays multiple products) then your title should only contain the brand name of that product.", 'squirrly-seo' ), '<a href="' . SQ_Classes_Helpers_Tools::getAdminUrl( 'sq_assistant', 'bulkseo', array(
						'sid=' . ( isset( $this->_post->ID ) ? $this->_post->ID : '' ),
						'stype=' . ( isset( $this->_post->post_type ) ? $this->_post->post_type : '' )
					) ) . '" target="_blank">', '</a>', '<br /><br />', '<br /><br />', '<br /><br />', '<br /><br />' ),
			),
			'description'        => array(
				'title'       => esc_html__( "Description", 'squirrly-seo' ),
				'value'       => $this->_description,
				'description' => sprintf( esc_html__( "To complete this task, go and define a %sMeta description%s for this page. You can easily do this by using the Snippet from Squirrly SEO. %s Make sure that you have a META description set up for this Focus Page. %s The meta description is very important for showing others the value they can find by clicking to go to your page. %s Think of it as an awesome ad that gets people excited enough that they visit your page after reading it. %s Sometimes, Google displays the exact META description that you create inside the search result pages. Use great descriptions for pages on your site to boost CTR (click-through rates).", 'squirrly-seo' ), '<a href="' . SQ_Classes_Helpers_Tools::getAdminUrl( 'sq_assistant', 'bulkseo', array(
						'sid=' . ( isset( $this->_post->ID ) ? $this->_post->ID : '' ),
						'stype=' . ( isset( $this->_post->post_type ) ? $this->_post->post_type : '' )
					) ) . '" target="_blank">', '</a>', '<br /><br />', '<br /><br />', '<br /><br />', '<br /><br />' ),
			),
			'keywordtitle'       => array(
				'title'       => esc_html__( "Keyword in title", 'squirrly-seo' ),
				'penalty'     => 5,
				'value'       => sprintf( esc_html__( "Keyword %s must be present in Title", 'squirrly-seo' ), '"' . $this->_keyword . '"' ),
				'description' => sprintf( esc_html__( "Your keyword must be present in the title of the page. %s It's a very important element through which you make sure that you connect the searcher's intent to the content on your page. %s If I'm looking for \"buy cheap smartwatch\" and you give me a page called \"Luna Presentation\", I will never click your page. Why? Because I might not know that Luna is a smartwatch designed by VectorWatch. %s \"Buy Cheap Smartwatch - Luna by VectorWatch\" would be a much better choice for a title.", 'squirrly-seo' ), '<br /><br />', '<br /><br />', '<br /><br />' ),
			),
			'keyworddescription' => array(
				'title'       => esc_html__( "Keyword in description", 'squirrly-seo' ),
				'value'       => sprintf( esc_html__( "Keyword %s must be present in Description", 'squirrly-seo' ), '"' . $this->_keyword . '"' ),
				'description' => sprintf( esc_html__( "Same as with the title task. %s If a user reads the description of your page on Google, but cannot find the keyword they searched for in that text, then they'd have very low chances of actually clicking and visiting your page. %s They'd go to the next page ranked on Google for that keyword. %s Think about this: Google itself is trying more and more to display keywords in the description of the pages it bring to TOP 10. It's pretty clear they care a lot about this, because that's what people want to find on the search engine.", 'squirrly-seo' ), '<br /><br />', '<br /><br />', '<br /><br />' ),
			),
			'ogdetails'          => array(
				'title'       => esc_html__( "Open Graph - full definition", 'squirrly-seo' ),
				'penalty'     => 1,
				'description' => sprintf( esc_html__( "To complete this task, you can easily use the %sSnippet%s from Squirrly SEO to get all the definitions in place. %s With this task, we make sure that you have the full Open Graph definitions created for this Focus Page. %s There are many things which could interfere with the code, there are times when you could forget setting some of the elements up, so Squirrly SEO helps you make sure that ALL the og tags are present. %s And yes, this is relevant for your search engine position placements.", 'squirrly-seo' ), '<a href="' . SQ_Classes_Helpers_Tools::getAdminUrl( 'sq_assistant', 'bulkseo', array(
						'sid=' . ( isset( $this->_post->ID ) ? $this->_post->ID : '' ),
						'stype=' . ( isset( $this->_post->post_type ) ? $this->_post->post_type : '' )
					) ) . '" target="_blank">', '</a>', '<br /><br />', '<br /><br />', '<br /><br />' ),
			),
			'tcdetails'          => array(
				'title'       => esc_html__( "Twitter Cards - full definition", 'squirrly-seo' ),
				'penalty'     => 1,
				'description' => sprintf( esc_html__( "To complete this task, you can easily use the %sSnippet%s from Squirrly SEO to get all the definitions in place. %s Checking to make sure that your Twitter Cards definitions are made properly. %s Same as with the Open Graph task, Squirrly SEO makes sure to check for all the required definitions, so that you won't miss a beat.", 'squirrly-seo' ), '<a href="' . SQ_Classes_Helpers_Tools::getAdminUrl( 'sq_assistant', 'bulkseo', array(
						'sid=' . ( isset( $this->_post->ID ) ? $this->_post->ID : '' ),
						'stype=' . ( isset( $this->_post->post_type ) ? $this->_post->post_type : '' )
					) ) . '" target="_blank">', '</a>', '<br /><br />', '<br /><br />' ),
			),
			'jsondetails'        => array(
				'title'       => esc_html__( "JSON-LD definition", 'squirrly-seo' ),
				'description' => sprintf( esc_html__( "To complete this task, you can easily use the JSON-LD section inside %s Squirrly > Technical SEO > Rich Snippets %s. %s Make sure that you complete all fields with the proper information. %s This gives important Semantic context to Google and it plays a role in determining how high your page should be placed in search rankings. %s You can validate your existing JSON-LD with: %shttps://search.google.com/test/rich-results%s", 'squirrly-seo' ), '<a href="' . SQ_Classes_Helpers_Tools::getAdminUrl( 'sq_seosettings', 'jsonld' ) . '" target="_blank">', '</a>', '<br /><br />', '<br /><br />', '<br /><br />', '<a href="https://search.google.com/structured-data/testing-tool" target="_blank">', '</a>' ),
			),
			'customization'      => array(
				'title'       => esc_html__( "Customized", 'squirrly-seo' ),
				'description' => sprintf( esc_html__( "The Snippets of your most important pages should be customized. %s Use the %sSnippet%s from Squirrly SEO to customize the meta settings, the open graph, etc. for this page. %s Since Focus Pages are the most important pages on your site, you'll want people to love the search engine listings that you build for this page. %s Therefore, you should define a custom SEO listing to improve the number of clicks you get when people DO find your page on search engines. %s NOTE: sometimes Google tries to create automated snippets and display those, but it's just an experiment they run. Most of the times, your own custom snippet will be the one that gets displayed.", 'squirrly-seo' ), '<br /><br />', '<a href="' . SQ_Classes_Helpers_Tools::getAdminUrl( 'sq_assistant', 'bulkseo', array(
						'sid=' . ( isset( $this->_post->ID ) ? $this->_post->ID : '' ),
						'stype=' . ( isset( $this->_post->post_type ) ? $this->_post->post_type : '' )
					) ) . '" target="_blank">', '</a>', '<br /><br />', '<br /><br />', '<br /><br />' ),
			),
		);

	}

	/*********************************************/
	/**
	 * @param  $content
	 * @param  $task
	 *
	 * @return string
	 */
	public function getHeader() {
		$edit_link = '';
		if ( isset( $this->_post->ID ) ) {
			$edit_link = SQ_Classes_Helpers_Tools::getAdminUrl( 'sq_assistant', 'bulkseo', array(
				'sid=' . $this->_post->ID,
				'stype=' . $this->_post->post_type
			) );
		}

		$header = '<li class="completed">';
		$header .= '<div class="font-weight-bold text-black-50 mb-1">' . esc_html__( "Current URL", 'squirrly-seo' ) . ': </div>';
		$header .= '<a href="' . $this->_post->url . '" target="_blank" style="word-break: break-word;">' . urldecode( $this->_post->url ) . '</a>';
		$header .= '</li>';

		$header .= '<li class="completed">';
		if ( $this->_keyword ) {
			$header .= $this->getUsedKeywords();
		} else {
			$header .= '<div class="font-weight-bold text-black-50 m-0 px-3 text-center">' . esc_html__( "No Keyword found in Squirrly Live Assistant", 'squirrly-seo' ) . '</div>';
		}
		if ( isset( $this->_post->ID ) ) {
			$header .= '<a href="' . $edit_link . '" target="_blank" class="btn btn-primary text-white col-10 offset-1 mt-3">' . esc_html__( "Edit your snippet", 'squirrly-seo' ) . '</a>';
		}
		$header .= '</li>';

		return $header;
	}

	public function getTitle( $title ) {

		if ( ! $this->_completed && ! $this->_indexed ) {
			foreach ( $this->_tasks[ $this->_category ] as $task ) {
				if ( $task['completed'] === false ) {
					return '<img src="' . esc_url( _SQ_ASSETS_URL_ . 'img/assistant/tooltip.gif' ) . '" width="100">';
				}
			}
		}

		return parent::getTitle( $title );
	}

	/**
	 * Check if Title Meta is set | API Title
	 *
	 * @return bool
	 */
	public function checkTitle( $task ) {
		$task['completed'] = ( $this->_title <> '' );

		return $task;
	}

	/**
	 * Check if Description Meta is set | API Description
	 *
	 * @return bool
	 */
	public function checkDescription( $task ) {
		$task['completed'] = ( $this->_description <> '' );

		return $task;
	}

	/**
	 * Check if Keyword in Title is set | API Keyword in Title
	 *
	 * @return bool
	 */
	public function checkKeywordtitle( $task ) {
		$task['completed'] = $this->_keyword_in_title;

		return $task;
	}

	/**
	 * Check if Keyword in Description is set | API Keyword in Title
	 *
	 * @return bool
	 */
	public function checkKeyworddescription( $task ) {
		$task['completed'] = $this->_keyword_in_description;

		return $task;
	}

	/**
	 * Check if Open Graph integrity | API Open Graph integrity
	 *
	 * @return bool
	 */
	public function checkOgdetails( $task ) {
		if ( $this->_open_graph ) {
			$task['value'] = '<br />' . '<span style="font-weight: normal">' . esc_html__( "Title", 'squirrly-seo' ) . '</span>: <br />' . ( $this->_open_graph->title <> '' ? $this->_open_graph->title . '<br /><br />' : '' ) . '<span style="font-weight: normal">' . esc_html__( "Description", 'squirrly-seo' ) . '</span>: <br />' . ( $this->_open_graph->description <> '' ? $this->_open_graph->description . '<br /><br />' : '' ) . '<span style="font-weight: normal">' . esc_html__( "Image", 'squirrly-seo' ) . '</span>: <br />' . ( $this->_open_graph->image <> '' ? $this->_open_graph->image . '<br /><br />' : '' );

			$task['completed'] = ( isset( $this->_open_graph->title ) && $this->_open_graph->title <> '' && isset( $this->_open_graph->description ) && $this->_open_graph->description <> '' && isset( $this->_open_graph->image ) && $this->_open_graph->image <> '' );

			return $task;
		}
		$task['completed'] = false;

		return $task;
	}

	/**
	 * Check if Twitter Card integrity | API Twitter Card integrity
	 *
	 * @return bool
	 */
	public function checkTcdetails( $task ) {
		if ( $this->_twitter_card ) {
			$task['value'] = '<br />' . '<span style="font-weight: normal">' . esc_html__( "Title", 'squirrly-seo' ) . '</span>: <br />' . ( $this->_twitter_card->title <> '' ? $this->_twitter_card->title . '<br /><br />' : '' ) . '<span style="font-weight: normal">' . esc_html__( "Description", 'squirrly-seo' ) . '</span>: <br />' . ( $this->_twitter_card->description <> '' ? $this->_twitter_card->description . '<br /><br />' : '' ) . '<span style="font-weight: normal">' . esc_html__( "Image", 'squirrly-seo' ) . '</span>: <br />' . ( $this->_twitter_card->image <> '' ? $this->_twitter_card->image . '<br /><br />' : '' );

			$task['completed'] = ( isset( $this->_twitter_card->title ) && $this->_twitter_card->title <> '' && isset( $this->_twitter_card->description ) && $this->_twitter_card->description <> '' && isset( $this->_twitter_card->image ) && $this->_twitter_card->image <> '' );

			return $task;
		}

		$task['completed'] = false;

		return $task;
	}

	/**
	 * Check if JsonLD is set | API JsonLD
	 *
	 * @return bool
	 */
	public function checkJsondetails( $task ) {
		if ( $this->_json && ! empty( $this->_json ) ) {
			$task['completed'] = true;

			return $task;
		}

		$task['completed'] = false;

		return $task;
	}

	/**
	 * Check if Squirrly snippet is manually customized
	 *
	 * @return bool
	 */
	public function checkCustomization( $task ) {
		$task['completed'] = $this->_customized;

		return $task;
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit