X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=blobdiff_plain;f=profileinfo.php;h=466f26aaec37202905481c630bd7fe117103e0c1;hp=609ea9538cba65fe37fc61b024507bece2c27891;hb=0c7d0d38dbe1f01c11f2f5834a7bff7d7f160e99;hpb=8732532d47866f75d9d145d877e3e41bbd3a29d2 diff --git a/profileinfo.php b/profileinfo.php index 609ea9538c..466f26aaec 100644 --- a/profileinfo.php +++ b/profileinfo.php @@ -25,6 +25,11 @@ * @file */ +// This endpoint is supposed to be independent of request cookies and other +// details of the session. Log warnings for violations of the no-session +// constraint. +define( 'MW_NO_SESSION', 'warn' ); + ini_set( 'zlib.output_compression', 'off' ); $wgEnableProfileInfo = false; @@ -156,7 +161,7 @@ if ( !$dbr->tableExists( 'profiling' ) ) { exit( 1 ); } -$expand = array(); +$expand = []; if ( isset( $_REQUEST['expand'] ) ) { foreach ( explode( ',', $_REQUEST['expand'] ) as $f ) { $expand[$f] = true; @@ -179,7 +184,7 @@ class profile_point { $this->count = $count; $this->time = $time; $this->memory = $memory; - $this->children = array(); + $this->children = []; } public function add_child( $child ) { @@ -195,16 +200,16 @@ class profile_point { if ( !$ex ) { if ( count( $this->children ) ) { - $url = getEscapedProfileUrl( false, false, $expand + array( $this->name() => true ) ); + $url = getEscapedProfileUrl( false, false, $expand + [ $this->name() => true ] ); $extet = " [+]"; } else { $extet = ''; } } else { - $e = array(); + $e = []; foreach ( $expand as $name => $ep ) { if ( $name != $this->name() ) { - $e += array( $name => $ep ); + $e += [ $name => $ep ]; } } $url = getEscapedProfileUrl( false, false, $e ); @@ -313,8 +318,8 @@ function compare_point( profile_point $a, profile_point $b ) { } } -$sorts = array( 'time', 'memory', 'count', 'calls_per_req', 'name', - 'time_per_call', 'memory_per_call', 'time_per_req', 'memory_per_req' ); +$sorts = [ 'time', 'memory', 'count', 'calls_per_req', 'name', + 'time_per_call', 'memory_per_call', 'time_per_req', 'memory_per_req' ]; $sort = 'time'; if ( isset( $_REQUEST['sort'] ) && in_array( $_REQUEST['sort'], $sorts ) ) { $sort = $_REQUEST['sort']; @@ -323,9 +328,9 @@ if ( isset( $_REQUEST['sort'] ) && in_array( $_REQUEST['sort'], $sorts ) ) { $res = $dbr->select( 'profiling', '*', - array(), + [], 'profileinfo.php', - array( 'ORDER BY' => 'pf_name ASC' ) + [ 'ORDER BY' => 'pf_name ASC' ] ); if ( isset( $_REQUEST['filter'] ) ) { @@ -395,16 +400,16 @@ if ( isset( $_REQUEST['filter'] ) ) { return htmlspecialchars( '?' . - wfArrayToCgi( array( + wfArrayToCgi( [ 'filter' => $_filter ? $_filter : $filter, 'sort' => $_sort ? $_sort : $sort, 'expand' => implode( ',', array_keys( $_expand ) ) - ) ) + ] ) ); } - $points = array(); - $queries = array(); + $points = []; + $queries = []; $sqltotal = 0.0; $last = false;