2021-05-20 10:52:49 +02:00
< ? php
/** Adminer - Compact database management
* @ link https :// www . adminer . org /
* @ author Jakub Vrana , https :// www . vrana . cz /
* @ copyright 2007 Jakub Vrana
* @ license https :// www . apache . org / licenses / LICENSE - 2.0 Apache License , Version 2.0
* @ license https :// www . gnu . org / licenses / gpl - 2.0 . html GNU General Public License , version 2 ( one or other )
* @ version 4.8 . 1
*/ function
adminer_errors ( $Ac , $Cc ){ return !! preg_match ( '~^(Trying to access array offset on value of type null|Undefined array key)~' , $Cc );} error_reporting ( 6135 ); set_error_handler ( 'adminer_errors' , E_WARNING ); $Yc =! preg_match ( '~^(unsafe_raw)?$~' , ini_get ( " filter.default " )); if ( $Yc || ini_get ( " filter.default_flags " )){ foreach ( array ( '_GET' , '_POST' , '_COOKIE' , '_SERVER' ) as $X ){ $Fi = filter_input_array ( constant ( " INPUT $X " ), FILTER_UNSAFE_RAW ); if ( $Fi ) $$X = $Fi ;}} if ( function_exists ( " mb_internal_encoding " )) mb_internal_encoding ( " 8bit " ); function
connection (){ global $g ; return $g ;} function
adminer (){ global $b ; return $b ;} function
version (){ global $ia ; return $ia ;} function
idf_unescape ( $v ){ if ( ! preg_match ( '~^[`\'"]~' , $v )) return $v ; $ne = substr ( $v , - 1 ); return
str_replace ( $ne . $ne , $ne , substr ( $v , 1 , - 1 ));} function
escape_string ( $X ){ return
substr ( q ( $X ), 1 , - 1 );} function
number ( $X ){ return
preg_replace ( '~[^0-9]+~' , '' , $X );} function
number_type (){ return '((?<!o)int(?!er)|numeric|real|float|double|decimal|money)' ;} function
remove_slashes ( $qg , $Yc = false ){ if ( function_exists ( " get_magic_quotes_gpc " ) && get_magic_quotes_gpc ()){ while ( list ( $z , $X ) = each ( $qg )){ foreach ( $X
as $fe => $W ){ unset ( $qg [ $z ][ $fe ]); if ( is_array ( $W )){ $qg [ $z ][ stripslashes ( $fe )] = $W ; $qg [] =& $qg [ $z ][ stripslashes ( $fe )];} else $qg [ $z ][ stripslashes ( $fe )] = ( $Yc ? $W : stripslashes ( $W ));}}}} function
bracket_escape ( $v , $Ma = false ){ static $ri = array ( ':' => ':1' , ']' => ':2' , '[' => ':3' , '"' => ':4' ); return
strtr ( $v ,( $Ma ? array_flip ( $ri ) : $ri ));} function
min_version ( $Wi , $Ae = " " , $h = null ){ global $g ; if ( ! $h ) $h = $g ; $kh = $h -> server_info ; if ( $Ae && preg_match ( '~([\d.]+)-MariaDB~' , $kh , $C )){ $kh = $C [ 1 ]; $Wi = $Ae ;} return ( version_compare ( $kh , $Wi ) >= 0 );} function
charset ( $g ){ return ( min_version ( " 5.5.3 " , 0 , $g ) ? " utf8mb4 " : " utf8 " );} function
script ( $vh , $qi = " \n " ){ return " <script " . nonce () . " > $vh </script> $qi " ;} function
script_src ( $Ki ){ return " <script src=' " . h ( $Ki ) . " ' " . nonce () . " ></script> \n " ;} function
nonce (){ return ' nonce="' . get_nonce () . '"' ;} function
target_blank (){ return ' target="_blank" rel="noreferrer noopener"' ;} function
h ( $P ){ return
str_replace ( " \0 " , " � " , htmlspecialchars ( $P , ENT_QUOTES , 'utf-8' ));} function
nl_br ( $P ){ return
str_replace ( " \n " , " <br> " , $P );} function
checkbox ( $D , $Y , $cb , $ke = " " , $rf = " " , $gb = " " , $le = " " ){ $I = " <input type='checkbox' name=' $D ' value=' " . h ( $Y ) . " ' " . ( $cb ? " checked " : " " ) . ( $le ? " aria-labelledby=' $le ' " : " " ) . " > " . ( $rf ? script ( " qsl('input').onclick = function () { $rf }; " , " " ) : " " ); return ( $ke != " " || $gb ? " <label " . ( $gb ? " class=' $gb ' " : " " ) . " > $I " . h ( $ke ) . " </label> " : $I );} function
optionlist ( $xf , $dh = null , $Oi = false ){ $I = " " ; foreach ( $xf
as $fe => $W ){ $yf = array ( $fe => $W ); if ( is_array ( $W )){ $I .= '<optgroup label="' . h ( $fe ) . '">' ; $yf = $W ;} foreach ( $yf
as $z => $X ) $I .= '<option' . ( $Oi || is_string ( $z ) ? ' value="' . h ( $z ) . '"' : '' ) . (( $Oi || is_string ( $z ) ? ( string ) $z : $X ) === $dh ? ' selected' : '' ) . '>' . h ( $X ); if ( is_array ( $W )) $I .= '</optgroup>' ;} return $I ;} function
html_select ( $D , $xf , $Y = " " , $qf = true , $le = " " ){ if ( $qf ) return " <select name=' " . h ( $D ) . " ' " . ( $le ? " aria-labelledby=' $le ' " : " " ) . " > " . optionlist ( $xf , $Y ) . " </select> " . ( is_string ( $qf ) ? script ( " qsl('select').onchange = function () { $qf }; " , " " ) : " " ); $I = " " ; foreach ( $xf
as $z => $X ) $I .= " <label><input type='radio' name=' " . h ( $D ) . " ' value=' " . h ( $z ) . " ' " . ( $z == $Y ? " checked " : " " ) . " > " . h ( $X ) . " </label> " ; return $I ;} function
select_input ( $Ha , $xf , $Y = " " , $qf = " " , $cg = " " ){ $Vh = ( $xf ? " select " : " input " ); return " < $Vh $Ha " . ( $xf ? " ><option value=''> $cg " . optionlist ( $xf , $Y , true ) . " </select> " : " size='10' value=' " . h ( $Y ) . " ' placeholder=' $cg '> " ) . ( $qf ? script ( " qsl(' $Vh ').onchange = $qf ; " , " " ) : " " );} function
confirm ( $Ke = " " , $eh = " qsl('input') " ){ return
script ( " $eh .onclick = function () { return confirm(' " . ( $Ke ? js_escape ( $Ke ) : 'Are you sure?' ) . " '); }; " , " " );} function
print_fieldset ( $u , $se , $Zi = false ){ echo " <fieldset><legend> " , " <a href='#fieldset- $u '> $se </a> " , script ( " qsl('a').onclick = partial(toggle, 'fieldset- $u '); " , " " ), " </legend> " , " <div id='fieldset- $u ' " . ( $Zi ? " " : " class='hidden' " ) . " > \n " ;} function
bold ( $Ta , $gb = " " ){ return ( $Ta ? " class='active $gb ' " : ( $gb ? " class=' $gb ' " : " " ));} function
odd ( $I = ' class="odd"' ){ static $t = 0 ; if ( ! $I ) $t =- 1 ; return ( $t ++% 2 ? $I : '' );} function
js_escape ( $P ){ return
addcslashes ( $P , " \r \n ' \\ / " );} function
json_row ( $z , $X = null ){ static $Zc = true ; if ( $Zc ) echo " { " ; if ( $z != " " ){ echo ( $Zc ? " " : " , " ) . " \n \t \" " . addcslashes ( $z , " \r \n \t \" \\ / " ) . '": ' . ( $X !== null ? '"' . addcslashes ( $X , " \r \n \" \\ / " ) . '"' : 'null' ); $Zc = false ;} else { echo " \n } \n " ; $Zc = true ;}} function
ini_bool ( $Sd ){ $X = ini_get ( $Sd ); return ( preg_match ( '~^(on|true|yes)$~i' , $X ) || ( int ) $X );} function
sid (){ static $I ; if ( $I === null ) $I = ( SID &&! ( $_COOKIE && ini_bool ( " session.use_cookies " ))); return $I ;} function
set_password ( $Vi , $M , $V , $F ){ $_SESSION [ " pwds " ][ $Vi ][ $M ][ $V ] = ( $_COOKIE [ " adminer_key " ] && is_string ( $F ) ? array ( encrypt_string ( $F , $_COOKIE [ " adminer_key " ])) : $F );} function
get_password (){ $I = get_session ( " pwds " ); if ( is_array ( $I )) $I = ( $_COOKIE [ " adminer_key " ] ? decrypt_string ( $I [ 0 ], $_COOKIE [ " adminer_key " ]) : false ); return $I ;} function
q ( $P ){ global $g ; return $g -> quote ( $P );} function
get_vals ( $G , $e = 0 ){ global $g ; $I = array (); $H = $g -> query ( $G ); if ( is_object ( $H )){ while ( $J = $H -> fetch_row ()) $I [] = $J [ $e ];} return $I ;} function
get_key_vals ( $G , $h = null , $nh = true ){ global $g ; if ( ! is_object ( $h )) $h = $g ; $I = array (); $H = $h -> query ( $G ); if ( is_object ( $H )){ while ( $J = $H -> fetch_row ()){ if ( $nh ) $I [ $J [ 0 ]] = $J [ 1 ]; else $I [] = $J [ 0 ];}} return $I ;} function
get_rows ( $G , $h = null , $n = " <p class='error'> " ){ global $g ; $wb = ( is_object ( $h ) ? $h : $g ); $I = array (); $H = $wb -> query ( $G ); if ( is_object ( $H )){ while ( $J = $H -> fetch_assoc ()) $I [] = $J ;} elseif ( ! $H &&! is_object ( $h ) && $n && defined ( " PAGE_HEADER " )) echo $n . error () . " \n " ; return $I ;} function
unique_array ( $J , $x ){ foreach ( $x
as $w ){ if ( preg_match ( " ~PRIMARY|UNIQUE~ " , $w [ " type " ])){ $I = array (); foreach ( $w [ " columns " ] as $z ){ if ( ! isset ( $J [ $z ])) continue
2 ; $I [ $z ] = $J [ $z ];} return $I ;}}} function
escape_key ( $z ){ if ( preg_match ( '(^([\w(]+)(' . str_replace ( " _ " , " .* " , preg_quote ( idf_escape ( " _ " ))) . ')([ \w)]+)$)' , $z , $C )) return $C [ 1 ] . idf_escape ( idf_unescape ( $C [ 2 ])) . $C [ 3 ]; return
idf_escape ( $z );} function
where ( $Z , $p = array ()){ global $g , $y ; $I = array (); foreach (( array ) $Z [ " where " ] as $z => $X ){ $z = bracket_escape ( $z , 1 ); $e = escape_key ( $z ); $I [] = $e . ( $y == " sql " && is_numeric ( $X ) && preg_match ( '~\.~' , $X ) ? " LIKE " . q ( $X ) : ( $y == " mssql " ? " LIKE " . q ( preg_replace ( '~[_%[]~' , '[\0]' , $X )) : " = " . unconvert_field ( $p [ $z ], q ( $X )))); if ( $y == " sql " && preg_match ( '~char|text~' , $p [ $z ][ " type " ]) && preg_match ( " ~[^ -@]~ " , $X )) $I [] = " $e = " . q ( $X ) . " COLLATE " . charset ( $g ) . " _bin " ;} foreach (( array ) $Z [ " null " ] as $z ) $I [] = escape_key ( $z ) . " IS NULL " ; return
implode ( " AND " , $I );} function
where_check ( $X , $p = array ()){ parse_str ( $X , $ab ); remove_slashes ( array ( & $ab )); return
where ( $ab , $p );} function
where_link ( $t , $e , $Y , $tf = " = " ){ return " &where%5B $t %5D%5Bcol%5D= " . urlencode ( $e ) . " &where%5B $t %5D%5Bop%5D= " . urlencode (( $Y !== null ? $tf : " IS NULL " )) . " &where%5B $t %5D%5Bval%5D= " . urlencode ( $Y );} function
convert_fields ( $f , $p , $L = array ()){ $I = " " ; foreach ( $f
as $z => $X ){ if ( $L &&! in_array ( idf_escape ( $z ), $L )) continue ; $Fa = convert_field ( $p [ $z ]); if ( $Fa ) $I .= " , $Fa AS " . idf_escape ( $z );} return $I ;} function
cookie ( $D , $Y , $ve = 2592000 ){ global $ba ; return
header ( " Set-Cookie: $D = " . urlencode ( $Y ) . ( $ve ? " ; expires= " . gmdate ( " D, d M Y H:i:s " , time () + $ve ) . " GMT " : " " ) . " ; path= " . preg_replace ( '~\?.*~' , '' , $_SERVER [ " REQUEST_URI " ]) . ( $ba ? " ; secure " : " " ) . " ; HttpOnly; SameSite=lax " , false );} function
restart_session (){ if ( ! ini_bool ( " session.use_cookies " )) session_start ();} function
stop_session ( $ed = false ){ $Ni = ini_bool ( " session.use_cookies " ); if ( ! $Ni || $ed ){ session_write_close (); if ( $Ni &&@ ini_set ( " session.use_cookies " , false ) === false ) session_start ();}} function & get_session ( $z ){ return $_SESSION [ $z ][ DRIVER ][ SERVER ][ $_GET [ " username " ]];} function
set_session ( $z , $X ){ $_SESSION [ $z ][ DRIVER ][ SERVER ][ $_GET [ " username " ]] = $X ;} function
auth_url ( $Vi , $M , $V , $l = null ){ global $ic ; preg_match ( '~([^?]*)\??(.*)~' , remove_from_uri ( implode ( " | " , array_keys ( $ic )) . " |username| " . ( $l !== null ? " db| " : " " ) . session_name ()), $C ); return " $C[1] ? " . ( sid () ? SID . " & " : " " ) . ( $Vi != " server " || $M != " " ? urlencode ( $Vi ) . " = " . urlencode ( $M ) . " & " : " " ) . " username= " . urlencode ( $V ) . ( $l != " " ? " &db= " . urlencode ( $l ) : " " ) . ( $C [ 2 ] ? " & $C[2] " : " " );} function
is_ajax (){ return ( $_SERVER [ " HTTP_X_REQUESTED_WITH " ] == " XMLHttpRequest " );} function
redirect ( $B , $Ke = null ){ if ( $Ke !== null ){ restart_session (); $_SESSION [ " messages " ][ preg_replace ( '~^[^?]*~' , '' ,( $B !== null ? $B : $_SERVER [ " REQUEST_URI " ]))][] = $Ke ;} if ( $B !== null ){ if ( $B == " " ) $B = " . " ; header ( " Location: $B " ); exit ;}} function
query_redirect ( $G , $B , $Ke , $Ag = true , $Hc = true , $Rc = false , $di = " " ){ global $g , $n , $b ; if ( $Hc ){ $Ch = microtime ( true ); $Rc =! $g -> query ( $G ); $di = format_time ( $Ch );} $yh = " " ; if ( $G ) $yh = $b -> messageQuery ( $G , $di , $Rc ); if ( $Rc ){ $n = error () . $yh . script ( " messagesPrint(); " ); return
false ;} if ( $Ag ) redirect ( $B , $Ke . $yh ); return
true ;} function
queries ( $G ){ global $g ; static $vg = array (); static $Ch ; if ( ! $Ch ) $Ch = microtime ( true ); if ( $G === null ) return
array ( implode ( " \n " , $vg ), format_time ( $Ch )); $vg [] = ( preg_match ( '~;$~' , $G ) ? " DELIMITER ;; \n $G ; \n DELIMITER " : $G ) . " ; " ; return $g -> query ( $G );} function
apply_queries ( $G , $S , $Dc = 'table' ){ foreach ( $S
as $Q ){ if ( ! queries ( " $G " . $Dc ( $Q ))) return
false ;} return
true ;} function
queries_redirect ( $B , $Ke , $Ag ){ list ( $vg , $di ) = queries ( null ); return
query_redirect ( $vg , $B , $Ke , $Ag , false , ! $Ag , $di );} function
format_time ( $Ch ){ return
sprintf ( '%.3f s' , max ( 0 , microtime ( true ) - $Ch ));} function
relative_uri (){ return
str_replace ( " : " , " %3a " , preg_replace ( '~^[^?]*/([^?]*)~' , '\1' , $_SERVER [ " REQUEST_URI " ]));} function
remove_from_uri ( $Nf = " " ){ return
substr ( preg_replace ( " ~(?<=[?&])( $Nf " . ( SID ? " " : " | " . session_name ()) . " )=[^&]*&~ " , '' , relative_uri () . " & " ), 0 , - 1 );} function
pagination ( $E , $Nb ){ return " " . ( $E == $Nb ? $E + 1 : '<a href="' . h ( remove_from_uri ( " page " ) . ( $E ? " &page= $E " . ( $_GET [ " next " ] ? " &next= " . urlencode ( $_GET [ " next " ]) : " " ) : " " )) . '">' . ( $E + 1 ) . " </a> " );} function
get_file ( $z , $Vb = false ){ $Xc = $_FILES [ $z ]; if ( ! $Xc ) return
null ; foreach ( $Xc
as $z => $X ) $Xc [ $z ] = ( array ) $X ; $I = '' ; foreach ( $Xc [ " error " ] as $z => $n ){ if ( $n ) return $n ; $D = $Xc [ " name " ][ $z ]; $li = $Xc [ " tmp_name " ][ $z ]; $Bb = file_get_contents ( $Vb && preg_match ( '~\.gz$~' , $D ) ? " compress.zlib:// $li " : $li ); if ( $Vb ){ $Ch = substr ( $Bb , 0 , 3 ); if ( function_exists ( " iconv " ) && preg_match ( " ~^ \xFE \xFF |^ \xFF \xFE ~ " , $Ch , $Gg )) $Bb = iconv ( " utf-16 " , " utf-8 " , $Bb ); elseif ( $Ch == " \xEF \xBB \xBF " ) $Bb = substr ( $Bb , 3 ); $I .= $Bb . " \n \n " ;} else $I .= $Bb ;} return $I ;} function
upload_error ( $n ){ $He = ( $n == UPLOAD_ERR_INI_SIZE ? ini_get ( " upload_max_filesize " ) : 0 ); return ( $n ? 'Unable to upload a file.' . ( $He ? " " . sprintf ( 'Maximum allowed file size is %sB.' , $He ) : " " ) : 'File does not exist.' );} function
repeat_pattern ( $Zf , $te ){ return
str_repeat ( " $Zf { 0,65535} " , $te / 65535 ) . " $Zf { 0, " . ( $te % 65535 ) . " } " ;} function
is_utf8 ( $X ){ return ( preg_match ( '~~u' , $X ) &&! preg_match ( '~[\0-\x8\xB\xC\xE-\x1F]~' , $X ));} function
shorten_utf8 ( $P , $te = 80 , $Jh = " " ){ if ( ! preg_match ( " (^( " . repeat_pattern ( " [ \t \r \n - \ x { 10FFFF}] " , $te ) . " )( $ )?)u " , $P , $C )) preg_match ( " (^( " . repeat_pattern ( " [ \t \r \n -~] " , $te ) . " )( $ )?) " , $P , $C ); return
2022-03-22 10:53:12 +01:00
h ( $C [ 1 ]) . $Jh . ( isset ( $C [ 2 ]) ? " " : " <i>…</i> " );} function
2021-05-20 10:52:49 +02:00
format_number ( $X ){ return
strtr ( number_format ( $X , 0 , " . " , ',' ), preg_split ( '~~u' , '0123456789' , - 1 , PREG_SPLIT_NO_EMPTY ));} function
friendly_url ( $X ){ return
preg_replace ( '~[^a-z0-9_]~i' , '-' , $X );} function
hidden_fields ( $qg , $Hd = array (), $ig = '' ){ $I = false ; foreach ( $qg
as $z => $X ){ if ( ! in_array ( $z , $Hd )){ if ( is_array ( $X )) hidden_fields ( $X , array (), $z ); else { $I = true ; echo '<input type="hidden" name="' . h ( $ig ? $ig . " [ $z ] " : $z ) . '" value="' . h ( $X ) . '">' ;}}} return $I ;} function
hidden_fields_get (){ echo ( sid () ? '<input type="hidden" name="' . session_name () . '" value="' . h ( session_id ()) . '">' : '' ),( SERVER !== null ? '<input type="hidden" name="' . DRIVER . '" value="' . h ( SERVER ) . '">' : " " ), '<input type="hidden" name="username" value="' . h ( $_GET [ " username " ]) . '">' ;} function
table_status1 ( $Q , $Sc = false ){ $I = table_status ( $Q , $Sc ); return ( $I ? $I : array ( " Name " => $Q ));} function
column_foreign_keys ( $Q ){ global $b ; $I = array (); foreach ( $b -> foreignKeys ( $Q ) as $r ){ foreach ( $r [ " source " ] as $X ) $I [ $X ][] = $r ;} return $I ;} function
enum_input ( $T , $Ha , $o , $Y , $xc = null ){ global $b ; preg_match_all ( " ~'((?:[^']|'')*)'~ " , $o [ " length " ], $Ce ); $I = ( $xc !== null ? " <label><input type=' $T ' $Ha value=' $xc ' " . (( is_array ( $Y ) ? in_array ( $xc , $Y ) : $Y === 0 ) ? " checked " : " " ) . " ><i> " . 'empty' . " </i></label> " : " " ); foreach ( $Ce [ 1 ] as $t => $X ){ $X = stripcslashes ( str_replace ( " '' " , " ' " , $X )); $cb = ( is_int ( $Y ) ? $Y == $t + 1 : ( is_array ( $Y ) ? in_array ( $t + 1 , $Y ) : $Y === $X )); $I .= " <label><input type=' $T ' $Ha value=' " . ( $t + 1 ) . " ' " . ( $cb ? ' checked' : '' ) . '>' . h ( $b -> editVal ( $X , $o )) . '</label>' ;} return $I ;} function
input ( $o , $Y , $s ){ global $U , $b , $y ; $D = h ( bracket_escape ( $o [ " field " ])); echo " <td class='function'> " ; if ( is_array ( $Y ) &&! $s ){ $Da = array ( $Y ); if ( version_compare ( PHP_VERSION , 5.4 ) >= 0 ) $Da [] = JSON_PRETTY_PRINT ; $Y = call_user_func_array ( 'json_encode' , $Da ); $s = " json " ;} $Kg = ( $y == " mssql " && $o [ " auto_increment " ]); if ( $Kg &&! $_POST [ " save " ]) $s = null ; $nd = ( isset ( $_GET [ " select " ]) || $Kg ? array ( " orig " => 'original' ) : array ()) + $b -> editFunctions ( $o ); $Ha = " name='fields[ $D ]' " ; if ( $o [ " type " ] == " enum " ) echo
h ( $nd [ " " ]) . " <td> " . $b -> editInput ( $_GET [ " edit " ], $o , $Ha , $Y ); else { $xd = ( in_array ( $s , $nd ) || isset ( $nd [ $s ])); echo ( count ( $nd ) > 1 ? " <select name='function[ $D ]'> " . optionlist ( $nd , $s === null || $xd ? $s : " " ) . " </select> " . on_help ( " getTarget(event).value.replace(/^SQL \$ /, '') " , 1 ) . script ( " qsl('select').onchange = functionChange; " , " " ) : h ( reset ( $nd ))) . '<td>' ; $Ud = $b -> editInput ( $_GET [ " edit " ], $o , $Ha , $Y ); if ( $Ud != " " ) echo $Ud ; elseif ( preg_match ( '~bool~' , $o [ " type " ])) echo " <input type='hidden' $Ha value='0'> " . " <input type='checkbox' " . ( preg_match ( '~^(1|t|true|y|yes|on)$~i' , $Y ) ? " checked='checked' " : " " ) . " $Ha value='1'> " ; elseif ( $o [ " type " ] == " set " ){ preg_match_all ( " ~'((?:[^']|'')*)'~ " , $o [ " length " ], $Ce ); foreach ( $Ce [ 1 ] as $t => $X ){ $X = stripcslashes ( str_replace ( " '' " , " ' " , $X )); $cb = ( is_int ( $Y ) ? ( $Y >> $t ) & 1 : in_array ( $X , explode ( " , " , $Y ), true )); echo " <label><input type='checkbox' name='fields[ $D ][ $t ]' value=' " . ( 1 << $t ) . " ' " . ( $cb ? ' checked' : '' ) . " > " . h ( $b -> editVal ( $X , $o )) . '</label>' ;}} elseif ( preg_match ( '~blob|bytea|raw|file~' , $o [ " type " ]) && ini_bool ( " file_uploads " )) echo " <input type='file' name='fields- $D '> " ; elseif (( $bi = preg_match ( '~text|lob|memo~i' , $o [ " type " ])) || preg_match ( " ~ \n ~ " , $Y )){ if ( $bi && $y != " sqlite " ) $Ha .= " cols='50' rows='12' " ; else { $K = min ( 12 , substr_count ( $Y , " \n " ) + 1 ); $Ha .= " cols='30' rows=' $K ' " . ( $K == 1 ? " style='height: 1.2em;' " : " " );} echo " <textarea $Ha > " . h ( $Y ) . '</textarea>' ;} elseif ( $s == " json " || preg_match ( '~^jsonb?$~' , $o [ " type " ])) echo " <textarea $Ha cols='50' rows='12' class='jush-js'> " . h ( $Y ) . '</textarea>' ; else { $Je = ( ! preg_match ( '~int~' , $o [ " type " ]) && preg_match ( '~^(\d+)(,(\d+))?$~' , $o [ " length " ], $C ) ? (( preg_match ( " ~binary~ " , $o [ " type " ]) ? 2 : 1 ) * $C [ 1 ] + ( $C [ 3 ] ? 1 : 0 ) + ( $C [ 2 ] &&! $o [ " unsigned " ] ? 1 : 0 )) : ( $U [ $o [ " type " ]] ? $U [ $o [ " type " ]] + ( $o [ " unsigned " ] ? 0 : 1 ) : 0 )); if ( $y == 'sql' && min_version ( 5.6 ) && preg_match ( '~time~' , $o [ " type " ])) $Je += 7 ; echo " <input " . (( ! $xd || $s === " " ) && preg_match ( '~(?<!o)int(?!er)~' , $o [ " type " ]) &&! preg_match ( '~\[\]~' , $o [ " full_type " ]) ? " type='number' " : " " ) . " value=' " . h ( $Y ) . " ' " . ( $Je ? " data-maxlength=' $Je ' " : " " ) . ( preg_match ( '~char|binary~' , $o [ " type " ]) && $Je > 20 ? " size='40' " : " " ) . " $Ha > " ;} echo $b -> editHint ( $_GET [ " edit " ], $o , $Y ); $Zc = 0 ; foreach ( $nd
as $z => $X ){ if ( $z === " " ||! $X ) break ; $Zc ++ ;} if ( $Zc ) echo
script ( " mixin(qsl('td'), { onchange: partial(skipOriginal, $Zc ), oninput: function () { this.onchange(); }}); " );}} function
process_input ( $o ){ global $b , $m ; $v = bracket_escape ( $o [ " field " ]); $s = $_POST [ " function " ][ $v ]; $Y = $_POST [ " fields " ][ $v ]; if ( $o [ " type " ] == " enum " ){ if ( $Y ==- 1 ) return
false ; if ( $Y == " " ) return " NULL " ; return + $Y ;} if ( $o [ " auto_increment " ] && $Y == " " ) return
null ; if ( $s == " orig " ) return ( preg_match ( '~^CURRENT_TIMESTAMP~i' , $o [ " on_update " ]) ? idf_escape ( $o [ " field " ]) : false ); if ( $s == " NULL " ) return " NULL " ; if ( $o [ " type " ] == " set " ) return
array_sum (( array ) $Y ); if ( $s == " json " ){ $s = " " ; $Y = json_decode ( $Y , true ); if ( ! is_array ( $Y )) return
false ; return $Y ;} if ( preg_match ( '~blob|bytea|raw|file~' , $o [ " type " ]) && ini_bool ( " file_uploads " )){ $Xc = get_file ( " fields- $v " ); if ( ! is_string ( $Xc )) return
false ; return $m -> quoteBinary ( $Xc );} return $b -> processInput ( $o , $Y , $s );} function
fields_from_edit (){ global $m ; $I = array (); foreach (( array ) $_POST [ " field_keys " ] as $z => $X ){ if ( $X != " " ){ $X = bracket_escape ( $X ); $_POST [ " function " ][ $X ] = $_POST [ " field_funs " ][ $z ]; $_POST [ " fields " ][ $X ] = $_POST [ " field_vals " ][ $z ];}} foreach (( array ) $_POST [ " fields " ] as $z => $X ){ $D = bracket_escape ( $z , 1 ); $I [ $D ] = array ( " field " => $D , " privileges " => array ( " insert " => 1 , " update " => 1 ), " null " => 1 , " auto_increment " => ( $z == $m -> primary ),);} return $I ;} function
search_tables (){ global $b , $g ; $_GET [ " where " ][ 0 ][ " val " ] = $_POST [ " query " ]; $gh = " <ul> \n " ; foreach ( table_status ( '' , true ) as $Q => $R ){ $D = $b -> tableName ( $R ); if ( isset ( $R [ " Engine " ]) && $D != " " && ( ! $_POST [ " tables " ] || in_array ( $Q , $_POST [ " tables " ]))){ $H = $g -> query ( " SELECT " . limit ( " 1 FROM " . table ( $Q ), " WHERE " . implode ( " AND " , $b -> selectSearchProcess ( fields ( $Q ), array ())), 1 )); if ( ! $H || $H -> fetch_row ()){ $mg = " <a href=' " . h ( ME . " select= " . urlencode ( $Q ) . " &where[0][op]= " . urlencode ( $_GET [ " where " ][ 0 ][ " op " ]) . " &where[0][val]= " . urlencode ( $_GET [ " where " ][ 0 ][ " val " ])) . " '> $D </a> " ; echo " $gh <li> " . ( $H ? $mg : " <p class='error'> $mg : " . error ()) . " \n " ; $gh = " " ;}}} echo ( $gh ? " <p class='message'> " . 'No tables.' : " </ul> " ) . " \n " ;} function
dump_headers ( $Fd , $Se = false ){ global $b ; $I = $b -> dumpHeaders ( $Fd , $Se ); $Jf = $_POST [ " output " ]; if ( $Jf != " text " ) header ( " Content-Disposition: attachment; filename= " . $b -> dumpFilename ( $Fd ) . " . $I " . ( $Jf != " file " && preg_match ( '~^[0-9a-z]+$~' , $Jf ) ? " . $Jf " : " " )); session_write_close (); ob_flush (); flush (); return $I ;} function
dump_csv ( $J ){ foreach ( $J
as $z => $X ){ if ( preg_match ( '~["\n,;\t]|^0|\.\d*0$~' , $X ) || $X === " " ) $J [ $z ] = '"' . str_replace ( '"' , '""' , $X ) . '"' ;} echo
implode (( $_POST [ " format " ] == " csv " ? " , " : ( $_POST [ " format " ] == " tsv " ? " \t " : " ; " )), $J ) . " \r \n " ;} function
apply_sql_function ( $s , $e ){ return ( $s ? ( $s == " unixepoch " ? " DATETIME( $e , ' $s ') " : ( $s == " count distinct " ? " COUNT(DISTINCT " : strtoupper ( " $s ( " )) . " $e ) " ) : $e );} function
get_temp_dir (){ $I = ini_get ( " upload_tmp_dir " ); if ( ! $I ){ if ( function_exists ( 'sys_get_temp_dir' )) $I = sys_get_temp_dir (); else { $q =@ tempnam ( " " , " " ); if ( ! $q ) return
false ; $I = dirname ( $q ); unlink ( $q );}} return $I ;} function
file_open_lock ( $q ){ $ld =@ fopen ( $q , " r+ " ); if ( ! $ld ){ $ld =@ fopen ( $q , " w " ); if ( ! $ld ) return ; chmod ( $q , 0660 );} flock ( $ld , LOCK_EX ); return $ld ;} function
file_write_unlock ( $ld , $Pb ){ rewind ( $ld ); fwrite ( $ld , $Pb ); ftruncate ( $ld , strlen ( $Pb )); flock ( $ld , LOCK_UN ); fclose ( $ld );} function
password_file ( $i ){ $q = get_temp_dir () . " /adminer.key " ; $I =@ file_get_contents ( $q ); if ( $I ||! $i ) return $I ; $ld =@ fopen ( $q , " w " ); if ( $ld ){ chmod ( $q , 0660 ); $I = rand_string (); fwrite ( $ld , $I ); fclose ( $ld );} return $I ;} function
rand_string (){ return
md5 ( uniqid ( mt_rand (), true ));} function
select_value ( $X , $A , $o , $ci ){ global $b ; if ( is_array ( $X )){ $I = " " ; foreach ( $X
as $fe => $W ) $I .= " <tr> " . ( $X != array_values ( $X ) ? " <th> " . h ( $fe ) : " " ) . " <td> " . select_value ( $W , $A , $o , $ci ); return " <table cellspacing='0'> $I </table> " ;} if ( ! $A ) $A = $b -> selectLink ( $X , $o ); if ( $A === null ){ if ( is_mail ( $X )) $A = " mailto: $X " ; if ( is_url ( $X )) $A = $X ;} $I = $b -> editVal ( $X , $o ); if ( $I !== null ){ if ( ! is_utf8 ( $I )) $I = " \0 " ; elseif ( $ci != " " && is_shortable ( $o )) $I = shorten_utf8 ( $I , max ( 0 , + $ci )); else $I = h ( $I );} return $b -> selectVal ( $I , $A , $o , $X );} function
is_mail ( $uc ){ $Ga = '[-a-z0-9!#$%&\'*+/=?^_`{|}~]' ; $hc = '[a-z0-9]([-a-z0-9]{0,61}[a-z0-9])' ; $Zf = " $Ga +( \\ . $Ga +)*@( $hc ? \\ .)+ $hc " ; return
is_string ( $uc ) && preg_match ( " (^ $Zf (, \\ s* $Zf )* \$ )i " , $uc );} function
is_url ( $P ){ $hc = '[a-z0-9]([-a-z0-9]{0,61}[a-z0-9])' ; return
preg_match ( " ~^(https?)://( $hc ? \\ .)+ $hc (: \\ d+)?(/.*)?( \\ ?.*)?(#.*)? \$ ~i " , $P );} function
is_shortable ( $o ){ return
preg_match ( '~char|text|json|lob|geometry|point|linestring|polygon|string|bytea~' , $o [ " type " ]);} function
count_rows ( $Q , $Z , $ae , $qd ){ global $y ; $G = " FROM " . table ( $Q ) . ( $Z ? " WHERE " . implode ( " AND " , $Z ) : " " ); return ( $ae && ( $y == " sql " || count ( $qd ) == 1 ) ? " SELECT COUNT(DISTINCT " . implode ( " , " , $qd ) . " ) $G " : " SELECT COUNT(*) " . ( $ae ? " FROM (SELECT 1 $G GROUP BY " . implode ( " , " , $qd ) . " ) x " : $G ));} function
slow_query ( $G ){ global $b , $ni , $m ; $l = $b -> database (); $ei = $b -> queryTimeout (); $sh = $m -> slowQuery ( $G , $ei ); if ( ! $sh && support ( " kill " ) && is_object ( $h = connect ()) && ( $l == " " || $h -> select_db ( $l ))){ $ie = $h -> result ( connection_id ()); echo '<script' , nonce (), ' >
var timeout = setTimeout ( function () {
ajax ( \ '' , js_escape ( ME ), ' script = kill\ ' , function () {
}, \ 'kill=' , $ie , '&token=' , $ni , ' \ ' );
}, ',1000*$ei,' );
</ script >
' ;} else $h = null ; ob_flush (); flush (); $I =@ get_key_vals (( $sh ? $sh : $G ), $h , false ); if ( $h ){ echo
script ( " clearTimeout(timeout); " ); ob_flush (); flush ();} return $I ;} function
get_token (){ $yg = rand ( 1 , 1e6 ); return ( $yg ^ $_SESSION [ " token " ]) . " : $yg " ;} function
verify_token (){ list ( $ni , $yg ) = explode ( " : " , $_POST [ " token " ]); return ( $yg ^ $_SESSION [ " token " ]) == $ni ;} function
lzw_decompress ( $Qa ){ $ec = 256 ; $Ra = 8 ; $ib = array (); $Mg = 0 ; $Ng = 0 ; for ( $t = 0 ; $t < strlen ( $Qa ); $t ++ ){ $Mg = ( $Mg << 8 ) + ord ( $Qa [ $t ]); $Ng += 8 ; if ( $Ng >= $Ra ){ $Ng -= $Ra ; $ib [] = $Mg >> $Ng ; $Mg &= ( 1 << $Ng ) - 1 ; $ec ++ ; if ( $ec >> $Ra ) $Ra ++ ;}} $dc = range ( " \0 " , " \xFF " ); $I = " " ; foreach ( $ib
as $t => $hb ){ $tc = $dc [ $hb ]; if ( ! isset ( $tc )) $tc = $kj . $kj [ 0 ]; $I .= $tc ; if ( $t ) $dc [] = $kj . $tc [ 0 ]; $kj = $tc ;} return $I ;} function
on_help ( $pb , $ph = 0 ){ return
script ( " mixin(qsl('select, input'), { onmouseover: function (event) { helpMouseover.call(this, event, $pb , $ph ) }, onmouseout: helpMouseout}); " , " " );} function
edit_form ( $Q , $p , $J , $Ii ){ global $b , $y , $ni , $n ; $Oh = $b -> tableName ( table_status1 ( $Q , true )); page_header (( $Ii ? 'Edit' : 'Insert' ), $n , array ( " select " => array ( $Q , $Oh )), $Oh ); $b -> editRowPrint ( $Q , $p , $J , $Ii ); if ( $J === false ) echo " <p class='error'> " . 'No rows.' . " \n " ; echo ' < form action = " " method = " post " enctype = " multipart/form-data " id = " form " >
';if(!$p)echo"<p class=' error '>".' You have no privileges to update this table . '."\n";else{echo"<table cellspacing=' 0 ' class=' layout '>".script("qsl(' table ' ) . onkeydown = editingKeydown ; " );foreach( $p
2022-03-22 10:53:12 +01:00
as $D => $o ){ echo " <tr><th> " . $b -> fieldName ( $o ); $Wb = $_GET [ " set " ][ bracket_escape ( $D )]; if ( $Wb === null ){ $Wb = $o [ " default " ]; if ( $o [ " type " ] == " bit " && preg_match ( " ~^b'([01]*)' \$ ~ " , $Wb , $Gg )) $Wb = $Gg [ 1 ];} $Y = ( $J !== null ? ( $J [ $D ] != " " && $y == " sql " && preg_match ( " ~enum|set~ " , $o [ " type " ]) ? ( is_array ( $J [ $D ]) ? array_sum ( $J [ $D ]) :+ $J [ $D ]) : ( is_bool ( $J [ $D ]) ? + $J [ $D ] : $J [ $D ])) : ( ! $Ii && $o [ " auto_increment " ] ? " " : ( isset ( $_GET [ " select " ]) ? false : $Wb ))); if ( ! $_POST [ " save " ] && is_string ( $Y )) $Y = $b -> editVal ( $Y , $o ); $s = ( $_POST [ " save " ] ? ( string ) $_POST [ " function " ][ $D ] : ( $Ii && preg_match ( '~^CURRENT_TIMESTAMP~i' , $o [ " on_update " ]) ? " now " : ( $Y === false ? null : ( $Y !== null ? '' : 'NULL' )))); if ( ! $_POST &&! $Ii && $Y == $o [ " default " ] && preg_match ( '~^[\w.]+\(~' , $Y )) $s = " SQL " ; if ( preg_match ( " ~time~ " , $o [ " type " ]) && preg_match ( '~^CURRENT_TIMESTAMP~i' , $Y )){ $Y = " " ; $s = " now " ;} input ( $o , $Y , $s ); echo " \n " ;} if ( ! support ( " table " )) echo " <tr> " . " <th><input name='field_keys[]'> " . script ( " qsl('input').oninput = fieldChange; " ) . " <td class='function'> " . html_select ( " field_funs[] " , $b -> editFunctions ( array ( " null " => isset ( $_GET [ " select " ])))) . " <td><input name='field_vals[]'> " . " \n " ; echo " </table> \n " ;} echo " <p> \n " ; if ( $p ){ echo " <input type='submit' value=' " . 'Save' . " '> \n " ; if ( ! isset ( $_GET [ " select " ])){ echo " <input type='submit' name='insert' value=' " . ( $Ii ? 'Save and continue edit' : 'Save and insert next' ) . " ' title='Ctrl+Shift+Enter'> \n " ,( $Ii ? script ( " qsl('input').onclick = function () { return !ajaxForm(this.form, ' " . 'Saving' . " …', this); }; " ) : " " );}} echo ( $Ii ? " <input type='submit' name='delete' value=' " . 'Delete' . " '> " . confirm () . " \n " : ( $_POST ||! $p ? " " : script ( " focus(qsa('td', qs('#form'))[1].firstChild); " ))); if ( isset ( $_GET [ " select " ])) hidden_fields ( array ( " check " => ( array ) $_POST [ " check " ], " clone " => $_POST [ " clone " ], " all " => $_POST [ " all " ])); echo '<input type="hidden" name="referer" value="' , h ( isset ( $_POST [ " referer " ]) ? $_POST [ " referer " ] : $_SERVER [ " HTTP_REFERER " ]), ' " >
2021-05-20 10:52:49 +02:00
< input type = " hidden " name = " save " value = " 1 " >
< input type = " hidden " name = " token " value = " ', $ni ,' " >
</ form >
' ;} if ( isset ( $_GET [ " file " ])){ if ( $_SERVER [ " HTTP_IF_MODIFIED_SINCE " ]){ header ( " HTTP/1.1 304 Not Modified " ); exit ;} header ( " Expires: " . gmdate ( " D, d M Y H:i:s " , time () + 365 * 24 * 60 * 60 ) . " GMT " ); header ( " Last-Modified: " . gmdate ( " D, d M Y H:i:s " ) . " GMT " ); header ( " Cache-Control: immutable " ); if ( $_GET [ " file " ] == " favicon.ico " ){ header ( " Content-Type: image/x-icon " ); echo
2022-03-22 10:53:12 +01:00
lzw_decompress ( " \0 \0 \0 ` \0 <EFBFBD> \0 \n @ \0 <EFBFBD> C<> <10> \" \0 `E<> Q<EFBFBD> <51> <01> <1F> ?<3F> tvM'<27> Jd<4A> d \\ <19> b0\0 <08> \" <13> <> fӈ<66> <D388> s5<73> <35> <EFBFBD> <EFBFBD> A<EFBFBD> X P a J<> 0<18> <> <EFBFBD> 8<> #R<> T<EFBFBD> <54> z`<60> #.<2E> <> c<EFBFBD> X<EFBFBD> <58> Ȁ?<3F> -\0 <05> Im?<3F> .<16> M<EFBFBD> <16> \0 ȯ (̉<> <1E> /( %<25> \0 " );} elseif ( $_GET [ " file " ] == " default.css " ){ header ( " Content-Type: text/css; charset=utf-8 " ); echo
lzw_decompress ( " \n 1 ̇<> ٌ<EFBFBD> l7<6C> <37> B1<42> 4vb0<62> <30> fs<66> <73> <EFBFBD> n2B<32> ѱ٘<D1B1> n:<0E> # (<28> b. \r D c)<29> <> a7 E<> <13> <> <EFBFBD> l<0C> ñ<EFBFBD> <C3B1> i1̎s<03> <> <EFBFBD> -4<> <34> f<EFBFBD> <09> <> i7<0E> <03> <> <EFBFBD> <EFBFBD> t4<0E> <> <EFBFBD> y<EFBFBD> Zf4<66> <05> i<01> AT<41> V V<15> <> f: Ϧ , :1<0E> Qݼ<51> b2 `<60> #<0C> >:7G<37> <47> 1<EFBFBD> <31> <EFBFBD> s<EFBFBD> <73> L<EFBFBD> XD*bv<܌#<23> e@<40> :4<1B> <> !fo<1D> <> <EFBFBD> t:<<3C> <> 咾<EFBFBD> o<EFBFBD> <6F> \n i<EFBFBD> <EFBFBD> <EFBFBD> ',<2C> <> a _<> :<3A> i<69> Bv<42> |N<> 4.5 Nf<4E> i<EFBFBD> vp<76> h<EFBFBD> <68> l<EFBFBD> <6C> <EFBFBD> ֚<EFBFBD> O<EFBFBD> <4F> <EFBFBD> <EFBFBD> = <20> OFQ<46> <51> k \$ <EFBFBD> <EFBFBD> i<EFBFBD> <1A> <> <EFBFBD> d2T<0C> <> p<EFBFBD> <70> 6<EFBFBD> <01> <> <EFBFBD> <EFBFBD> -<2D> Z<EFBFBD> <5A> <EFBFBD> <EFBFBD> <EFBFBD> 6<EFBFBD> <36> <EFBFBD> <EFBFBD> h:<3A> a<> ,<2C> <> <EFBFBD> <10> 2<EFBFBD> #8А <38> #<23> <> 6 n<> <6E> <11> <> J<1E> <> h<EFBFBD> t<EFBFBD> <74> <EFBFBD> <EFBFBD> <EFBFBD> 4 O42<34> <32> ok<6F> <12> *r<> <72> <01> @ p@<16> !<21> <1D> <> <EFBFBD> <EFBFBD> <EFBFBD> ?<3F> 6<> <36> r[<03> <> L<06> <> <EFBFBD> :2B<32> j<EFBFBD> !Hb<1C> <> P<EFBFBD> = !1 V<> \" <EFBFBD> <EFBFBD> 0<EFBFBD> <EFBFBD> \n S<EFBFBD> <19> <> D7<0E> <> Dڛ<44> C!<1C> !<21> <> <EFBFBD> Gʌ<47> <20> +<2B> = tC<74> <43> .C<> <43> : +<2B> <> =<3D> <> <EFBFBD> <EFBFBD> <18> <> <EFBFBD> %<1F> c<EFBFBD> 1MR/<2F> EȒ4<C892> <34> <EFBFBD> 2<EFBFBD> 䱠<EFBFBD> `<60> 8(<28> ӹ[W<0B> <> =<3D> yS<0C> b<EFBFBD> =<3D> -ܹ BS +ɯ <> <C9AF> <EFBFBD> <EFBFBD> <0F> @ p L4Y d<> <17> q<EFBFBD> <71> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> 6<0C> 3Ĭ<0C> <> Ac܌<63> Ψ<EFBFBD> k<EFBFBD> [&><3E> <> <EFBFBD> Z<> pkm]<5D> u-c:<3A> <15> <> N t<> δpҝ<70> <D29D> 8<EFBFBD> =<3D> #<23> <> [ .<2E> <> ޯ<EFBFBD> ~<7E> <> <EFBFBD> m<EFBFBD> y<EFBFBD> PP<50> |I֛<49> <EFBFBD> <0F> Q<> 9v[<5B> Q<EFBFBD> <51> \n <EFBFBD> <EFBFBD> r<EFBFBD> 'g<> +<2B> <> T<EFBFBD> 2<EFBFBD> <32> V<EFBFBD> <56> z<EFBFBD> 4<EFBFBD> <34> 8<EFBFBD> <38> ( <09> Ey*#j<> 2]<12> <> R<EFBFBD> <52> <06> <> )<29> <> [N<> R\$ <EFBFBD> <>:<3A> <> >\$ ;<14> ><3E> <> \r <EFBFBD> <EFBFBD> <EFBFBD> H<EFBFBD> <EFBFBD> T<> \n w<> N <20> wأ<77> <D8A3> <<3C> <0E> Gw<47> <77> <EFBFBD> <15> \\ Y<EFBFBD> _<EFBFBD> Rt^<5E> ><3E> \r }<7D> <> S \r z<EFBFBD> 4=<3D> \n L<EFBFBD> %J<> <13> \" ,Z<> 8<0E> <> <EFBFBD> <EFBFBD> i<EFBFBD> 0u<30> ?<1A> <> <EFBFBD> <EFBFBD> <EFBFBD> s 3 #<23> ى<EFBFBD> :<3A> <> <EFBFBD> <EFBFBD> 㽖<18> <> E]x<> <78> <0E> s^8<> <38> K^<5E> <> *0<> <30> w<EFBFBD> <03> <> <EFBFBD> ~<7E> <> <EFBFBD> :<3A> <> i<EFBFBD> <69> <EFBFBD> v2w<32> <77> <EFBFBD> <07> ^7<> <0E> <08> 7<EFBFBD> c<EFBFBD> <63> u+U %<25> { P<EFBFBD> *4̼<34> LX./!<21> <> 1C<1E> <> qx! H<> <02> Fd<08> <> L<EFBFBD> <4C> <1B> Ġ<> `6<06> <0C> 5<> <1A> f<05> <> Ć<EFBFBD> = H<> l <20> V 1<> <31> \0 a2<EFBFBD> ;<3B> <> 6<EFBFBD> <36> <EFBFBD> <EFBFBD> _ه <D987> \0 &<26> Z<EFBFBD> S<EFBFBD> d)KE'<27> <> n<EFBFBD> <6E> [ X<> <58> \0 ZɊ<EFBFBD> F[P<> ޘ@<40> <> !<19> <0E> Y<EFBFBD> ,`<60> \" ڷ<05> <> 0Ee9 yF><3E> <> 9 b<> <62> <EFBFBD> <EFBFBD> F5:<14> <> <EFBFBD> \0 } Ĵ<> <C4B4> ( \$ <0E> <> <08> <> <EFBFBD> 37H<37> <1C> <> M<> A<EFBFBD> <41> 6R<36> <52> { Mq<EFBFBD> 7G<EFBFBD> <EFBFBD> C<> C<0C> m2<03> (<28> Ct>[<5B> -t<> /&C<0C> ]<5D> etG<74> ̬ 4@ r><06> <> <08> <<3C> Sq<11> /<2F> <> <EFBFBD> Q<EFBFBD> <51> hm<68> <6D> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> L<EFBFBD> <4C> #<10> <> K<EFBFBD> |<7C> <> <EFBFBD> 6fKP<4B> \r %t<> <08> V= \" <EFBFBD> SH\$ <EFBFBD> } <20> <> )w<> ,W\0 F<06> <> u@<40> b<0B> 9<EFBFBD> \r r<EFBFBD> 2<EFBFBD> #<23> D<EFBFBD> <44> X<EFBFBD> <58> <EFBFBD> yOI<4F> ><14> <> n<0B> <> Ǣ %<25> <> <EFBFBD> '<27> <> _<EFBFBD> <5F> t \r τz<0C> \\ 1<EFBFBD> hl<EFBFBD> ]Q5Mp6k<36> <6B> <EFBFBD> qh<71> \$ <EFBFBD> H~<06> |<7C> <14> !*4<> <34> <10> <14> `S<> <53> <EFBFBD> S t<> PP\\ g<EFBFBD> <EFBFBD> 7<EFBFBD> \n -<07> :袪p<E8A2AA> <70> <EFBFBD> <EFBFBD> l<EFBFBD> B<EFBFBD> <42> <EFBFBD> <EFBFBD> 7Ө c<> (wO0 \\ :<07> <> w<EFBFBD> <77> <EFBFBD> p4<70> <34> <EFBFBD> { T<EFBFBD> <EFBFBD> jO<EFBFBD> 6 H Ê<> r<EFBFBD> <12> <03> q \n <11> <> %%<25> y']\$ <EFBFBD> <EFBFBD> a<EFBFBD> Z<1D> .fc<66> q*-<2D> FW<46> <57> k<EFBFBD> <6B> z<EFBFBD> <15> <> j<> <1E> <> lg<6C> <67> :<3A> \$ \" <EFBFBD> N<EFBFBD> \r #<23> d<EFBFBD> Â<EFBFBD> <C382> <01> sc<73> <63> ̠<EFBFBD> <14> \" j<EFBFBD> \r <EFBFBD> <EFBFBD> <EFBFBD> <15> <> Ւ<EFBFBD> Ph<50> 1/<2F> <02> D A)<06> <> <EFBFBD> [<5B> kn<6B> p7 6<> Y<EFBFBD> <59> R{ <18> M<05> P<EFBFBD> <50> <EFBFBD> @\n -<2D> a<EFBFBD> 6<EFBFBD> <36> [<5B> zJ H,<2C> dl<14> B<> h<EFBFBD> o<EFBFBD> <6F> <EFBFBD> <03> <1D> +<2B> #Dr^<1F> ^<5E> <> e<EFBFBD> <65> E<EFBFBD> <45> <EFBFBD> ĜaP<61> <50> <EFBFBD> JG<4A> z<1A> <> t<0E> <> 2<EFBFBD> X<EFBFBD> <16> <> <EFBFBD> <EFBFBD> V<EFBFBD> <56> <EFBFBD> <EFBFBD> <EFBFBD> ȳ<13> <> B_%K=E<> <45> b 弾<7F> §kU(.! ܮ8<DCAE> <38> <EFBFBD> <EFBFBD> I.@<40> K<EFBFBD> xn<78> <6E> <EFBFBD> :<3A> P<EFBFBD> 3 2<> <32> m<EFBFBD> H C*<2A> :v<17> T<EFBFBD> \n R<EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> 0u<01> <> <10> <> <1C> ҧ]<01> <1B> <> <EFBFBD> <EFBFBD> P /<2F> JQd<51> { L<EFBFBD> :Y<> <59> 2b<32> <62> T <20> <> <EFBFBD> 3<EFBFBD> 4<EFBFBD> <34> <EFBFBD> c<EFBFBD> <63> V=<3D> <> <15> L4<1E> <> r<0C> !<21> B<03> Y<EFBFBD> 6<0F> <19> MeL<07> <> <EFBFBD> <1D> <> <EFBFBD> <EFBFBD> i<EFBFBD> o<EFBFBD> 9< G<> <47> ƕЙM hm^<5E> U<EFBFBD> N<EFBFBD> <4E> <EFBFBD> <0B> Tr 5HiM<69> /<2F> n<EFBFBD> 흳T<ED9DB3> <54> [-<_ _<> 3/Xr( <<3C> <> <EFBFBD> <EFBFBD> <05> <> <EFBFBD> <EFBFBD> <EFBFBD> u ҖG NX2 0<> \r \$ ^<5E> <> :'9<> <39> O<EFBFBD> <4F> ;<3B> k<EFBFBD> <03> <> <0C> f<EFBFBD> <66> N'a<> <61> <06> <0E> b<EFBFBD> ,<2C> V<EFBFBD> <56> <EFBFBD> <EFBFBD> 1<EFBFBD> <31> HI!%6@<40> <08> \$ <EFBFBD> EG ڜ<> 1<EFBFBD> (mU<6D> <55> <EFBFBD> rս <72> <03> <> `<60> <> i N+ Ü<> )<29> <> <16> 0l<30> <6C> f0<66> <06> [U<> <55> V<EFBFBD> <56> -:I^<5E> <> \$ <EFBFBD> s<EFBFBD> b\r e<EFBFBD> <EFBFBD> ug<75> h<EFBFBD> ~9<> ߈<EFBFBD> b<EFBFBD> <62> <EFBFBD> <EFBFBD> <EFBFBD> f<EFBFBD> +0<> <30> hXrݬ<72> ! \$ <EFBFBD> e,<2C> w+<2B> <> <EFBFBD> <EFBFBD> <EFBFBD> 3<EFBFBD> <33> _<10> A<EFBFBD> k<EFBFBD> <6B> \n k<EFBFBD> r<EFBFBD> ʛc u WdY<64> \\ <EFBFBD> ={ .<2E> č<EFBFBD> <C48D> <EFBFBD> g<> <67> p8<70> t \r RZ<EFBFBD> v<EFBFBD> J :<3A> ><3E> <> Y|+<2B> @<40> <> <EFBFBD> <EFBFBD> C<> t \r <EFBFBD> <EFBFBD> jt<6A> <74> 6<> <36> %<25> ?<03> <> ǎ<EFBFBD> <C78E> ><3E> /<0B> <> <EFBFBD> <EFBFBD> <EFBFBD> 9F`ו <> <D795> v ~K<> <4B> <EFBFBD> <EFBFBD> <EFBFBD> R<EFBFBD> W<EFBFBD> <57> z<EFBFBD> <0C> lm<6C> w L<> 9Y<39> * q<> x<EFBFBD> z<EFBFBD> <7A> Se<53> ݛ<EFBFBD> <DD9B> <EFBFBD> <EFBFBD> ~<7E> D<1D> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> x<EFBFBD> <78> <EFBFBD> ɟi7<69> 2<1F> <> <EFBFBD> Oݻ<07> <> _{ <EFBFBD> <EFBFBD> 53<EFBFBD> <EFBFBD> t<EFBFBD> <EFBFBD> <EFBFBD> _<EFBFBD> <EFBFBD> z<EFBFBD> 3<EFBFBD> d)<29> C<EFBFBD> <43> \$ ?KӪP<D3AA> %<25> <> T&<26> <0C> & \0 P<EFBFBD> NA<EFBFBD> ^<5E> ~<7E> <> <EFBFBD> p<06> <20> Ϝ <> <0F> <> \r \$ <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> b*+D6궦ψ<EAB6A6> <CF88> J\$ (<28> ol<6F> <6C> h&<06> <> KBS ><3E> <> <EFBFBD> ; z<> <7A> x<EFBFBD> oz><3E> <> <EFBFBD> o<> Z<EFBFBD> \n ʋ [<05> v<EFBFBD> <76> <EFBFBD> Ȝ <> <C89C> 2<EFBFBD> OxِV<D990> 0f<30> <66> <EFBFBD> <0F> <> 2Bl<42> bk<02> 6Zk<5A> hXc d<> 0*<2A> KT<4B> <54> H=<3D> <> π<> p0<70> l V<> <56> <0B> <> \r <08> <> <EFBFBD> n<EFBFBD> m<EFBFBD> <6D> )(<28> (<28> :#<23> <> <EFBFBD> <EFBFBD> E<EFBFBD> <45> :C<> C<EFBFBD> <43> <0B> \r <EFBFBD> G\r é 0<> <0E> i<0E> <> <0C> <> :`Z1Q \n :<3A> <> \r \0 <EFBFBD> <0B> <> q<05> <11> <> : `<60> -<10> M #} 1;<11> <> <EFBFBD> <EFBFBD> q<11> # |<0E> S<11> <> <EFBFBD> hl<68> D<EFBFBD> \0 f iDp<44> L<> <4C> ``<60> <> <EFBFBD> <10> 0y<30> <79> 1<> <18> <> \r <EFBFBD> =<10> M Q\\ <0C> <> %o q<> <71> \0 <EFBFBD> <0B> <> 1<> 21<32> 1<7F> <31> <20> <18> <> ќbi:<3A> <> \r <EFBFBD> / Ѣ<> ` )<29> <> 0<EFBFBD> <19> @<40> <15> <1E> I 1<> N<14> C<EFBFBD> <43> <EFBFBD> <EFBFBD> <17> O<11> <> Z<EFBFBD> <5A> 1<> <1E> <> q1 <20> <15> <> <EFBFBD> ,<2C> \r dI<11> Ǧv<C7A6> j<EFBFBD> <6A> 1 t<> B<EFBFBD> <42> <EFBFBD> ⁒0:<3A> 0<0C> <> <EFBFBD> 1<EFBFBD> A2V<32> <56> <EFBFBD> 0<EFBFBD> <30> <1B> <> %<25> f i3! &Q<> Rc%<25> q& w%<25> <> \r <EFBFBD> <EFBFBD> V<EFBFBD> #<23> <> <EFBFBD> Qw `<60> % <20> <> <EFBFBD> m*r<> <10> y &i<> +r{ *<2A> <> (rg(<28> #(2<> (<28> <> )R@ i<> -<2D> <> <20> <> <EFBFBD> 1 \" \0 <EFBFBD> <1A> R<EFBFBD> <52> <EFBFBD> . e.r<> <1A> ,<0C> ry(2<> C<EFBFBD> <43> <EFBFBD> b<EFBFBD> !Bޏ3 %ҵ,R<> 1<EFBFBD> <31> &<26> <> t<EFBFBD> <74> b<EFBFBD> a\r L<EFBFBD> <EFBFBD> -3<12> <13> <> <0C> <> \0 <EFBFBD> <0B> Bp<11> 1<EFBFBD> 94<39> O'R<> 3*<2A> <> =\$ <EFBFBD> [<13> ^iI;/3i<11> 5<EFBFBD> &<26> } 1 7<> # ѹ8<D1B9> <38> \" <EFBFBD> 7<EFBFBD> <EFBFBD> 8<11> 9*<2A> 23<32> !<21> <> !1\\ \0 <EFBFBD> 8<EFBFBD> <EFBFBD> rk9<13> ;S<> 23<32> <0B> ړ*<2A> :q]5S <<3C> <> #3<> 83<38> # e<> =<13> > ~9S螳<53> r<> )<29> <> T * a<13> @і <> be s<> <1B> <1B> :-<2D> <> <EFBFBD> <EFBFBD> <EFBFBD> *;,<2C> ؙ3 !i<> <69> <EFBFBD> LҲ<4C> #1 <20> + n<> <20> *<2A> <> @<40> 3i7<69> 1<> <04> <> _<13> F<EFBFBD> S;3<> F<EFBFBD> \r A<EFBFBD> <EFBFBD> 3<> ><3E> x:<3A> \r <EFBFBD> 0<EFBFBD> <EFBFBD> @<40> -<2D> /<0E> <> w<15> <> 7<EFBFBD> <37> <EFBFBD> S<EFBFBD> J3<4A> <20> .F<> \$ O<EFBFBD> B<EFBFBD> <EFBFBD> <EFBFBD> %4<> +t<> 'g<> Lq \r Jt<EFBFBD> J<EFBFBD> <EFBFBD> M2 \r <EFBFBD> <EFBFBD> 7<EFBFBD> <EFBFBD> T@<40> <> <EFBFBD> ) ⓣd<E293A3> <64> 2 <32> P>ΰ<0E> <> Fi<69> \n r \0 <EFBFBD> <12> b<EFBFBD> k(<28> D<EFBFBD> <44> <EFBFBD> KQ<4B> <51> <EFBFBD> <EFBFBD> 1<> \" 2t<EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> P<14> \r <EFBFBD> <EFBFBD> ,\$ KCt<EFBFBD> 5<EFBFBD> <EFBFBD> #<23> <> )<29> <> P# Pi .<0C> U 2<> C<> ~<7E> \" <EFBFBD> " );} elseif ( $_GET [ " file " ] == " functions.js " ){ header ( " Content-Type: text/javascript; charset=utf-8 " ); echo
lzw_decompress ( " f:<3A> <> gCI<43> <49> \n 8<EFBFBD> <EFBFBD> 3)<29> <> 7<> <37> <EFBFBD> 81<38> <31> x: \n Og#)<29> <> r7 \n \" <EFBFBD> <EFBFBD> <EFBFBD> `<60> |2<1B> gSi<53> H) N<> S<EFBFBD> <53> <EFBFBD> \r <EFBFBD> <EFBFBD> \" 0<EFBFBD> <EFBFBD> @<40> )<1D> ` ( \$ s6O!<21> <> <EFBFBD> V/ =<3D> <> ' T4<54> =<3D> <> iS<69> <53> 6IO<49> G#<23> X<> V C<> <43> s<EFBFBD> <73> Z1.<2E> hp8,<1E> [<5B> H<EFBFBD> <48> ~Cz<43> <7A> <EFBFBD> 2<EFBFBD> l<EFBFBD> c3<63> <33> <EFBFBD> s<EFBFBD> <73> <04> I<EFBFBD> b<EFBFBD> 4\n <06> F8T<38> <54> I<> <49> <1A> U*fz<66> <04> r0<72> E<EFBFBD> <13> <> <EFBFBD> y<1B> <> <EFBFBD> f<EFBFBD> Y.:<1C> <14> I<EFBFBD> <49> (<18> c<EFBFBD> <63> !<21> _l<5F> <6C> ^<5E> ^(<28> <> N{ S<EFBFBD> <EFBFBD> )r<> q<EFBFBD> Y<EFBFBD> <59> l٦3<D9A6> 3<EFBFBD> \n <EFBFBD> +G<> <47> <EFBFBD> y<EFBFBD> <79> <EFBFBD> <EFBFBD> i<EFBFBD> <69> <EFBFBD> xV3w<17> u h<> ^r<> <72> <EFBFBD> <1E> a۔ <61> <DB94> <EFBFBD> c<EFBFBD> <63> \r <0E> <> <EFBFBD> (. <> <C288> Ch<43> <\r )<08> ѣ<EFBFBD> `<60> 7<EFBFBD> <37> <EFBFBD> 43'm 5<> <35> <EFBFBD> \n <EFBFBD> P<EFBFBD> :2<> P<EFBFBD> <50> <EFBFBD> <EFBFBD> q <20> <> <EFBFBD> C<EFBFBD> } ī<> <C4AB> <EFBFBD> <EFBFBD> <EFBFBD> 38<33> B<18> 0<EFBFBD> hR<1A> <> r(<28> 0<EFBFBD> <30> b\\ 0<EFBFBD> Hr44<EFBFBD> <EFBFBD> B<1A> !<21> p<EFBFBD> \$ <EFBFBD> rZZ<1E> 2܉.Ƀ(\\ <EFBFBD> 5<EFBFBD> |\n C(<28> \" <EFBFBD> <03> P<13> <02> <> .<0B> <> N<15> RT<52> Γ<> <CE93> ><04> HN<14> <> 8H P<> \\ <EFBFBD> 7J p~<13> <13> <> 2%<25> <> OC<4F> 1<EFBFBD> .<2E> <> C8· H<> <48> *<2A> j<EFBFBD> <6A> <04> <1C> S(<0C> /<0C> <> <EFBFBD> 6KU<4B> <55> <1E> <> < 2<0C> pOI<4F> <49> <EFBFBD> `<60> <> <EFBFBD> Ⳉd O<> H<EFBFBD> <48> 5<EFBFBD> -<2D> <> 4<EFBFBD> <34> pX25-Ң<> ۈ<EFBFBD> z7<0C> <> \" (<28> P<EFBFBD> \\ 32 :] U<> <0C> <> <EFBFBD> ߅!]<5D> <<3C> A<EFBFBD> ۤ<> <DBA4> <EFBFBD> iڰ<04> l \r <EFBFBD> \0 v<EFBFBD> <EFBFBD> #J8<4A> <38> wm<77> <6D> ɤ<> <<3C> ɠ<EFBFBD> <C9A0> %m;p #<23> `X<> D<EFBFBD> <44> <EFBFBD> iZ<69> <5A> N0<4E> <30> <EFBFBD> <EFBFBD> 9<0B> <> 占<EFBFBD> <E58DA0> `<13> <> w J<> D<EFBFBD> <EFBFBD> 2<EFBFBD> 9t<39> <74> *<1C> <> y<EFBFBD> <79> NiIh \\ 9<EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> :<0E> <> <EFBFBD> <05> xﭵyl*<2A> Ȉ<> <17> Y<EFBFBD> <59> <17> <> <EFBFBD> 8<EFBFBD> W<EFBFBD> <57> ?<3F> <> <EFBFBD> ޛ3<0C> <> <EFBFBD> ! \" 6<08> <> n[<5B> <> \r <EFBFBD> *\$ <0C> Ƨ <EFBFBD> nzx<7A> 9\r <EFBFBD> |*3ףp<D7A3> ﻶ<> : (p\\ ;<3B> <> mz<1B> <> <EFBFBD> 9<> <1C> <> <EFBFBD> 8N<18> <> <EFBFBD> j2<6A> <32> <14> <> \r <EFBFBD> H<EFBFBD> H&<26> <> (<28> z<EFBFBD> <7A> 7i<37> k<EFBFBD> <20> <> <EFBFBD> <EFBFBD> c<EFBFBD> <63> e<EFBFBD> <65> <EFBFBD> <EFBFBD> t<EFBFBD> <74> <EFBFBD> 2:SH<53> Ƞ<EFBFBD> /)<29> x<EFBFBD> @<40> <> t<EFBFBD> ri9<69> <39> <EFBFBD> <EFBFBD> <EFBFBD> 8<EFBFBD> <38> <EFBFBD> <EFBFBD> yҷ<79> <D2B7> <EFBFBD> V<EFBFBD> +^Wڦ<57> <DAA6> kZ<6B> Y<EFBFBD> l<0E> ʣ<EFBFBD> <0E> <> 4<03> <> Ƌ<EFBFBD> <C68B> <05> <> <14> <> \\ E<EFBFBD> { <EFBFBD> 7\0 <EFBFBD> p<EFBFBD> <12> <> D<02> <> i<EFBFBD> -T<> <54> <EFBFBD> <EFBFBD> 0l<30> %=<3D> <> <EFBFBD> ˃ 9(<01> 5<10> \n \n <EFBFBD> n,4<> \0 <EFBFBD> a }܃ .<2E> <> Rs\0 2B\\ <EFBFBD> b1<EFBFBD> S<EFBFBD> \000 3,<2C> XPHJs p<> d<EFBFBD> K<> CA!<21> 2*W<> <13> <> <EFBFBD> 2 \$ <EFBFBD> +<19> f^\n <EFBFBD> 1<> <31> <EFBFBD> <EFBFBD> zE<7A> Iv<49> \\ <EFBFBD> <EFBFBD> 2<EFBFBD> <03> .*A<> <41> <EFBFBD> E (d<07> <> <EFBFBD> <EFBFBD> b<EFBFBD> <1C> ܄ <EFBFBD> <11> 9<EFBFBD> <39> <EFBFBD> <EFBFBD> <EFBFBD> Dh<44> &<26> <> ?<10> H<> s<EFBFBD> Q<EFBFBD> 2<EFBFBD> x~nÁ J<> T2<03> &<26> <> e R<> <52> <EFBFBD> G<EFBFBD> Q<EFBFBD> <51> Tw<54> ݑ<EFBFBD> <DD91> P<02> <> <EFBFBD> \\ <EFBFBD> )6<> <36> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> s h\\ 3<EFBFBD> \0 R <19> ' \r +*; R<1A> H<EFBFBD> .<2E> !<21> [<5B> '~<7E> %t< <20> p<EFBFBD> K# <> !<0E> l<EFBFBD> <6C> <EFBFBD> L e<> <65> <EFBFBD> <12> ,<06> <> <EFBFBD> &<26> \$ <09> <> `<60> <15> CX<43> <0E> ӆ0֭<30> <D6AD> <EFBFBD> <07> <> :M<> h <09> ڜG<DA9C> <47> !&3<> D<EFBFBD> < !<21> <> 23<32> <33> ?h<> J<> e <20> <> h<EFBFBD> \r <EFBFBD> m<EFBFBD> <EFBFBD> <EFBFBD> N i<02> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> N<EFBFBD> H l7<6C> <37> v<EFBFBD> <76> WI<0C> .<0B> <> -<2D> 5֧ey<07> \r EJ\n i *<0B> \$ @<40> RU0,\$ U<1B> E<EFBFBD> <45> <EFBFBD> <EFBFBD> ªu)@(t<> SJk<05> p!<02> ~<7E> <> <EFBFBD> d `<60> ><3E> <> \n <0B> ;#\r p9<70> j ɹ<> ]&Nc(r<> <72> <EFBFBD> TQU<51> <55> S<EFBFBD> <53> \0 8n `<60> <> y<EFBFBD> b<EFBFBD> <62> <16> L<> O5<4F> <35> ,<2C> <> <EFBFBD> <EFBFBD> ><3E> <> <EFBFBD> x<EFBFBD> <01> <15> f䴒<66> <E4B492> <1B> +<2B> <> \" <EFBFBD> I<EFBFBD> { kM<EFBFBD> [ \r %<25> [ <09> e<0B> a<> 1! <20> <> <EFBFBD> <EFBFBD> Ԯ<EFBFBD> F@<40> b)R<> <52> 72<37> <32> 0<EFBFBD> \n W<16> <> <EFBFBD> L<EFBFBD> ܜҮ td<74> +<2B> <> <1C> 0wgl<67> 0n@<40> <> ɢ<EFBFBD> i<EFBFBD> M<EFBFBD> <4D> \n A<EFBFBD> M5n<EFBFBD> \$ E<EFBFBD> ױ N<> <4E> l<EFBFBD> <6C> <12> <> <16> %<25> 1 A<> <41> <EFBFBD> <13> <> <EFBFBD> k<EFBFBD> r<EFBFBD> iFB<46> <01> <> ol,muNx-<2D> _<EFBFBD> ֤C( <0E> <> f<1C> l \r 1p [ 9x (i<> BҖ<42> <D296> zQl<51> <6C> 8C<03> <09> <02> XU Tb<54> <62> I<EFBFBD> `<60> p+V \0 <EFBFBD> <EFBFBD> <EFBFBD> ;<3B> Cb<43> <62> X<EFBFBD> +ϒ <> s<EFBFBD> <73> ]H<> <48> [<5B> k<EFBFBD> x<EFBFBD> G*<2A> <> <EFBFBD> ]<5D> awn<77> !<21> 6<EFBFBD> <36> <EFBFBD> <EFBFBD> <EFBFBD> mS<6D> <53> <EFBFBD> I<EFBFBD> <49> K<EFBFBD> ~/<2F> ӥ7<D3A5> <37> eeN<65> <4E> <EFBFBD> <EFBFBD> S<EFBFBD> /;d<> A<EFBFBD> >}l~<7E> <> <EFBFBD> <20> % ^<5E> f<> آpڜDE<44> <45> a<EFBFBD> <61> t\n x=<3D> kЎ<6B> * d<> <64> <04> T<16> <> <EFBFBD> <EFBFBD> j 2<> <32> j<EFBFBD> <6A> \n <EFBFBD> <EFBFBD> <EFBFBD> ,<2C> e=<3D> <> M8 4<> <34> <EFBFBD> a<> j@<40> T<EFBFBD> s<EFBFBD> <73> <EFBFBD> nf<6E> <66> \n <1A> 6<EFBFBD> \r d<EFBFBD> <10> 0<EFBFBD> <30> <EFBFBD> Y<EFBFBD> '%ԓ<> <18> ~ <09> Ҩ<EFBFBD> <<3C> <10> <0B> AH<EE8B96> G<1B> <> 8<EFBFBD> <19> <> \$ z<1C> <> { <EFBFBD> <EFBFBD> <EFBFBD> u2*<11> <03> a<0F> <> ><17> ( w<> K.bP<62> { <EFBFBD> <EFBFBD> o<0F> <01> ´ <0E> z<> #<23> 2<0E> 8=<3D> 8><3E> <> <EFBFBD> A,<2C> e<EFBFBD> <65> <EFBFBD> +<2B> C<EFBFBD> <43> x<EFBFBD> *<2A> <> <EFBFBD> -b=m<> <6D> <EFBFBD> ,<2C> a<EFBFBD> <61> lzk<7A> <6B> <EFBFBD> \$ W<19> ,<2C> m<EFBFBD> Ji<4A> ʧ<EFBFBD> <CAA7> <EFBFBD> +<2B> <> <EFBFBD> 0<EFBFBD> [<0B> <> .R<> sK<73> <4B> <1B> X<EFBFBD> <1D> Z L<> <4C> 2<EFBFBD> `<17> (<28> C<EFBFBD> vZ<76> <5A> <EFBFBD> <05> <> <02> \$ <EFBFBD> ,<2C> D?H<> <48> NxX<16> <> )<29> <> <EFBFBD> M<0F> <> \$ <EFBFBD> ,<2C> <> *\n ѣ \$ <q<19> şh!<21> <> S<EFBFBD> <17> <> <EFBFBD> <EFBFBD> xsA!<21> :<04> K<EFBFBD> <4B> }<7D> <> <04> <> <EFBFBD> <EFBFBD> <EFBFBD> R<EFBFBD> <52> A2k<32> X<EFBFBD> p \n <<3C> <07> <> <EFBFBD> <EFBFBD> l<EFBFBD> <0E> <> 3<EFBFBD> <33> <EFBFBD> <EFBFBD> <1B> VV<56> }<7D> g &Yݍ!<21> +<2B> ;<<3C> Y<EFBFBD> <59> <EFBFBD> YE3 r<> َ<EFBFBD> <06> C<EFBFBD> o5<6F> <35> <EFBFBD> <EFBFBD> ճ<EFBFBD> kk<6B> <6B> <EFBFBD> <EFBFBD> <EFBFBD> ۣ<EFBFBD> <DBA3> t<> <74> U<EFBFBD> <55> <EFBFBD> )<29> [<5B> <> <EFBFBD> <EFBFBD> }<7D> <12> u<EFBFBD> <75> l<15> <> :D<> <44> +Ϗ _o<5F> <0C> h140<34> <30> <EFBFBD> 0<EFBFBD> <30> b<EFBFBD> K<EFBFBD> 㬒<0C> <> <EFBFBD> <EFBFBD> <04> lG<6C> <47> #<23> <> <EFBFBD> <EFBFBD> <EFBFBD> <05> <> <EFBFBD> <EFBFBD> |Ud<55> <64> I K<08> <> <EFBFBD> 7<EFBFBD> ^<5E> <> <EFBFBD> @<40> <> O \0 H<04> <04> Hi<48> 6 \r <EFBFBD> <EFBFBD> <02> <> \\ cg \0 <EFBFBD> <EFBFBD> <EFBFBD> 2<0E> B<05> *e<> <65> \n <EFBFBD> <EFBFBD> <09> zr<7A> !<21> nW z&<26> { H<> <48> '\$ X <20> w@<40> 8<EFBFBD> DGr*<2A> <> <EFBFBD> H<> 'p#<23> Į<EFBFBD> <C4AE> <EFBFBD> \n d<EFBFBD> <EFBFBD> <EFBFBD> ,<2C> <0F> <> ,<2C> ;g~<0C> \0 <EFBFBD> #<23> <> <05> <> E<EFBFBD> <45> \r <EFBFBD> I`<60> <10> '<27> <0F> %E<> .<2E> ] `<60> Л<0E> <0E> %&<04> <> m<EFBFBD> <6D> \r <EFBFBD> <EFBFBD> %4S<34> v<EFBFBD> #\n <0E> <> fH\$ %<25> -<2D> #<23> <> <EFBFBD> qB<71> <42> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> Q-<2D> c2<63> <32> <EFBFBD> &<26> <0C> <> ]<5D> <> <20> qh \r <EFBFBD> l]<5D> <> s<EFBFBD> <73> <07> h<EFBFBD> 7<16> n#<23> <> <0C> <> -<2D> jE<6A> Fr<46> <72> l&d<0C> <> <EFBFBD> <EFBFBD> z<EFBFBD> F6<46> <36> <EFBFBD> <EFBFBD> \" <13> <> <EFBFBD> |<7C> <> <EFBFBD> s@<40> <1A> <> <0E> z )0rpڏ\0 <EFBFBD> X\0 <EFBFBD> <EFBFBD> <EFBFBD> |DL<!<21> <16> o<EFBFBD> *<2A> D<> { .B<E<> <45> <EFBFBD> 0n B(<11> <20> | \r \n <EFBFBD> ^<5E> <06> <> <EFBFBD> h<> !<21> <> <EFBFBD> r\$ <EFBFBD> <EFBFBD> (^<5E> ~<7E> <> <EFBFBD> <EFBFBD> /p<> q<1F> <10> B<EFBFBD> <42> O<EFBFBD> <07> <> <EFBFBD> ,\\ <EFBFBD> <0F> #RR<52> <0E> %<25> <> <EFBFBD> d<EFBFBD> Hj<48> `<60> <05> <> <0B> ̭ V<05> bS<62> d<EFBFBD> i<16> E<EFBFBD> <06> <> oh<6F> r<i/k\$ -<2D> \$ o<EFBFBD> <EFBFBD> +<2B> ŋ<EFBFBD> <C58B> l<EFBFBD> <6C> O<EFBFBD> &evƒ<76> i<EFBFBD> jMPA' u'<27> <> <0C> ( M(h/+<2B> <> WD<57> So<53> . n<> .<0E> n<14> <12> <> (<28> ( \" <EFBFBD> <12> <> h<EFBFBD> &p<> <70> /<18> /1D̊<44> j娸 E<1D> <> &⦀<> , 'l\$ / .,<05> d<EFBFBD> <64> <EFBFBD> W<EFBFBD> b bO3<4F> B<EFBFBD> sH<11> :J`!<21> .<2E> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <01> <> <EFBFBD> ,F<> <46> 7(<08> <> Կ<EFBFBD> <0B> 1<EFBFBD> l<EFBFBD> s <20> Ҏ<EFBFBD> <D28E> <EFBFBD> Ţq<C5A2> X \r <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> ~R鰱 `<60> Ҟ<04> <> Y*<2A> :R<> <52> rJ<72> <13> %L<> +n<> \" <EFBFBD> <EFBFBD> \r <EFBFBD> <EFBFBD> ͇H!qb<71> 2<EFBFBD> Li<4C> %<25> <> <EFBFBD> <13> Wj#9<> <39> ObE.I:<0F> 6<EFBFBD> 7\0 <EFBFBD> 6+<2B> %<25> .<2E> <0C> <> <05> a7E8VS<56> ? (DG<44> ӳB<D3B3> %;<3B> <> <EFBFBD> <EFBFBD> /<<3C> <> <EFBFBD> <EFBFBD> <EFBFBD> \r <20> <07> ><3E> M<EFBFBD> <4D> @<40> <> <EFBFBD> H<07> D s<> <0B> Z[tH<74> Enx(<28> <> <EFBFBD> R<EFBFBD> x<> <78> <EFBFBD> @<40> <> GkjW<6A> ><3E> <> <EFBFBD> #T/8<> c8<63> Q0<51> <30> _<EFBFBD> IIGII<49> !<21> <> <EFBFBD> YEd<45> E<EFBFBD> ^<5E> td<74> th<0E> `D V!C<> 8<EFBFBD> <38> \r <EFBFBD> <EFBFBD> <EFBFBD> b<EFBFBD> 3<EFBFBD> !3<> @<40> 33N}<7D> ZB<5A> 3 <09> 3<EFBFBD> 30<33> <30> M (<28> ><3E> <> }<7D> \\ <EFBFBD> t<EFBFBD> <EFBFBD> f<EFBFBD> f<> <66> <EFBFBD> I\r <EFBFBD> <0C> <> 337 X<> \" td<EFBFBD> , \n btNO ` P<> ;<14> ܕ ҭ<05> <> <0E> \$ \n <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> Zѭ5U5WU<EFBFBD> ^ho<1E> <> <EFBFBD> t<> PM/5 K4Ej<07> KQ& 53GX<47> Xx)<29> <5D<0E> <12> \r <EFBFBD> V<EFBFBD> \n <EFBFBD> r<EFBFBD> 5b܀\\ J \" ><3E> <> 1S \r [-<16> <> D u<> \r <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> )00<30> Y<EFBFBD> <59> ˢ<0C> k{ \n <EFBFBD> <EFBFBD> #<23> <> \r <EFBFBD> ^<5E> <> |<7C> uܻU<DCBB> _n<5F> U4<55> U<EFBFBD> ~Yt<59> \r I<EFBFBD> <EFBFBD> @䏳<> R <20> 3:<3A> ueP MS<4D> 0T<30> wW<77> X<> <58> <EFBFBD> D<EFBFBD> <44> <EFBFBD> KOU<4F> <55> <EFBFBD> <EFBFBD> ;U<> \n <EFBFBD> OY<EFBFBD> <EFBFBD> Y<EFBFBD> Q,M[\0 <EFBFBD> _<EFBFBD> D<EFBFBD> <EFBFBD> <EFBFBD> W<EFBFBD> <EFBFBD> J*<2A> \r g(]<5D> <> \r \" ZC<EFBFBD> <EFBFBD> 6u<EFBFBD> <EFBFBD> +<2B> Y<EFBFBD> <0E> Y6ô<36> 0<EFBFBD> q<EFBFBD> (<28> <> 8}<7D> <> 3AX3T<07> h 9j<39> j<> f<14> Mt<4D> PJ bqMP5><3E> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> Y<15> k%& \\ <EFBFBD> 1 d<> <64> E4<10> <20> Yn<59> <6E> <0C> \$ <<3C> U]Ӊ1<D389> mbֶ<62> ^<5E> <> <EFBFBD> <EFBFBD> <EFBFBD> \" NV<EFBFBD> <EFBFBD> p<EFBFBD> <EFBFBD> p<EFBFBD> <EFBFBD> eM<EFBFBD> <EFBFBD> <EFBFBD> W<> ܢ<EFBFBD> \\ <EFBFBD> )\n <20> \n f7 \n <EFBFBD> 2<0B> <> r 8<> <38> =Ek7tV<74> <56> <EFBFBD> <EFBFBD> 7P<37> <50> L<> <4C> a6<0E> <14> v@ '<27> 6 i<> <69> j&><3E> <> ;<3B> <> `<60> <> a \0 pڨ(<28> J<EFBFBD> <4A> )<29> \\ <EFBFBD> <EFBFBD> n<EFBFBD> <EFBFBD> Ĭ m\0 <EFBFBD> <EFBFBD> 2<EFBFBD> <04> e q J<> <4A> P<EFBFBD> <50> t<EFBFBD> <74> <EFBFBD> f j<> <6A> \" [ \0 <EFBFBD> <EFBFBD> <15> <07> X,<\\ <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <0C> <> <EFBFBD> +md<6D> <64> ~<07> <0C> <> <EFBFBD> <EFBFBD> s%o<> <6F> mn<6D> ),ׄ<> ԇ<12> \r 4<> <34> 8\r <EFBFBD> <EFBFBD> <0C> <1C> mE<6D> H]<5D> <> <EFBFBD> <EFBFBD> <EFBFBD> HW<48> M0 D<> ߀ <EFBFBD> <DF80>
lzw_decompress ( " v0<EFBFBD> <EFBFBD> F<EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> ==<3D> <> FS <09> <> _6 MƳ<4D> <C6B3> <EFBFBD> r:<3A> E<EFBFBD> CI<43> <49> o:<3A> C<11> <> Xc<58> <63> \r <EFBFBD> J(:=<3D> E<EFBFBD> <13> <> a28<03> x<EFBFBD> <78> ?<0F> '<27> i<EFBFBD> SA NN<02> <> <EFBFBD> xs<78> N B<> <42> Vl0<6C> <30> <EFBFBD> S <09> <> U l<14> (D| ҄<> <D284> P<EFBFBD> <50> ><17> E<EFBFBD> 㩶yH c h<> <68> -3 Eb<45> <62> <20> b<EFBFBD> <62> pE<70> p<EFBFBD> 9.<2E> <> <EFBFBD> <EFBFBD> ~\n <EFBFBD> ? Kb<4B> iw |<7C> `<60> <> d.<2E> x8EN<45> <4E> !<21> <> 2<> <05> 3<EFBFBD> <33> <EFBFBD> \r <EFBFBD> <1C> <> Y<EFBFBD> <59> <EFBFBD> y6 GFmY<6D> 8o7\n \r <10> 0<EFBFBD> <30> \0 <EFBFBD> Dbc<EFBFBD> !<21> Q 7 Шd8<64> <38> <EFBFBD> ~<7E> <> N)<1D> Eг `<60> Ns<4E> <73> `<60> S)<29> O<EFBFBD> <4F> <0B> <> /<2F> <<0E> x<EFBFBD> 9<EFBFBD> o<EFBFBD> <6F> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> 3 n<> <6E> 2<EFBFBD> !r<> :;<3B> +<2B> 9<EFBFBD> CȨ<43> <C8A8> <EFBFBD> \n <<3C> <> `<60> <> <EFBFBD> b<EFBFBD> \\ <EFBFBD> ?<3F> `<60> 4\r #`<60> <<3C> Be<0C> B#<1A> N <20> <> \r .D`<60> <> j<EFBFBD> 4<EFBFBD> <34> <EFBFBD> p<EFBFBD> ar<61> <72> 㢺<> ><3E> 8<EFBFBD> \$ <EFBFBD> c<EFBFBD> <EFBFBD> 1<EFBFBD> c<EFBFBD> <EFBFBD> <1D> c<EFBFBD> <63> <EFBFBD> <04> { n7<12> <> <07> <08> A<> N<15> RLi \r 1<EFBFBD> <EFBFBD> <EFBFBD> !<21> (<28> j´ <6A> +<2B> <> 62<36> X<> 8+<18> <05> <> <EFBFBD> . \r <EFBFBD> <18> <04> <> <EFBFBD> !x<> <78> <0E> h<EFBFBD> '<0C> <> <EFBFBD> 6S<36> \0 R<05> <> <EFBFBD> <EFBFBD> O<EFBFBD> \n <EFBFBD> <14> 1(W0<57> <30> <EFBFBD> <EFBFBD> 7 q<> <71> :N<> E:68n+<2B> <> մ 5_(<28> s<EFBFBD> \r <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> /m<> 6P<36> @<40> EQ<45> <51> <EFBFBD> 9\n <EFBFBD> V-<2D> <> <EFBFBD> \" <EFBFBD> . :<3A> J<EFBFBD> <4A> 8we<77> q<EFBFBD> |؇<> X<EFBFBD> ]<5D> <> Y X<> e<EFBFBD> zW<7A> <57> <20> 7<EFBFBD> <37> Z1<5A> <31> hQf<51> <66> u<EFBFBD> j<EFBFBD> 4Z{ p \\ AU<EFBFBD> J<<3C> <> k<> <6B> @<40> ɍ<EFBFBD> <C98D> @<14> }&<13> <> <EFBFBD> L7 U<> wuYh<59> <68> 2<EFBFBD> <32> @<40> u<EFBFBD> P<> 7<EFBFBD> A<EFBFBD> h<EFBFBD> <68> <EFBFBD> <EFBFBD> <EFBFBD> 3 Û<> <1E> XEͅZ<CD85> ]<5D> l<05> @Mp l v<> )<01> <20> <07> HW<48> <05> <> y ><03> Y <59> -<2D> Y<EFBFBD> <59> /<2F> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <0F> hC<68> [*<2A> <> F<EFBFBD> <46> #~<1F> !<21> `<60> \r #0P<10> C˝<43> f<03> <> <EFBFBD> <0B> <> <EFBFBD> \\ <EFBFBD> <EFBFBD> <0E> ^<5E> %B <<3C> \\ <EFBFBD> f<> ޱ<> <DEB1> <EFBFBD> <EFBFBD> <EFBFBD> &/<2F> O<EFBFBD> <4F> L\\ jF<EFBFBD> <EFBFBD> jZ<EFBFBD> 1<EFBFBD> \\ :ƴ><04> N<EFBFBD> <4E> XaF<61> A<EFBFBD> <1B> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> f<EFBFBD> h { \" s \n <EFBFBD> 64<EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <16> <> ?<05> 8<EFBFBD> ^p<15> \" 띰<EFBFBD> ȸ \\ <EFBFBD> e(<28> P<05> N<EFBFBD> <4E> q[g<> <67> r<EFBFBD> &<26> }Ph<50> <68> <EFBFBD> <EFBFBD> W<EFBFBD> <57> *<2A> <> r _s<5F> P<EFBFBD> h<EFBFBD> <68> <EFBFBD> <EFBFBD> \n <EFBFBD> <EFBFBD> <EFBFBD> om<EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> #<23> <0F> <> .<2E> \0 @<40> pdW <20> \$ Һ<EFBFBD> Q۽T l0<6C> <20> <1D> HdH<64> )<29> <> ۏ<> <0C> )P<03> <> <EFBFBD> H<EFBFBD> g<04> <> U<> <55> <EFBFBD> <EFBFBD> B<> e \r <EFBFBD> t:<3A> <> \0 ) \" <EFBFBD> t<EFBFBD> ,<2C> <> <18> <> <EFBFBD> [<5B> ( D<> O\n R8!<21> Ƭ֚<C6AC> <D69A> lA<6C> V<EFBFBD> <10> 4<03> h<EFBFBD> <1E> S q<<15> <> @}<7D> <> <EFBFBD> gK<67> ]<5D> <> <EFBFBD> ]<5D> =90<39> <30> '<27> <> <1D> <> w A <<3C> <> <EFBFBD> <1D> a<EFBFBD> ~<7E> <> W<> <57> <EFBFBD> D| A<> <41> <EFBFBD> 2<0E> X<EFBFBD> U2<55> <32> y Ŋ<> <C58A> =<05> p)<29> \0 P <0C> s<0F> <> n<EFBFBD> 3<06> <> r<EFBFBD> f \0 <EFBFBD> F<EFBFBD> <EFBFBD> <EFBFBD> v<EFBFBD> <EFBFBD> G<0C> <01> I@<40> %<25> <> <EFBFBD> +<2B> <> _I`<60> <0C> <> <EFBFBD> \r .<2E> <> N<EFBFBD> <0F> <> KI<4B> [<15> ʖSJ<53> <05> <> a Uf<55> Sz<53> <7A> <EFBFBD> M<1F> <> <EFBFBD> %<25> <> \" Q|9<04> <> Bc<42> a<EFBFBD> q \0 <EFBFBD> 8<EFBFBD> #<23> <a<> <61> :z1Uf<15> <> ><3E> Z<10> l<EFBFBD> <6C> <01> <> <EFBFBD> <EFBFBD> e5#U@iUG <47> <C282> n<EFBFBD> %Ұ s<> <73> <10> ;gxL<07> p P<> ?B<> <42> <EFBFBD> Q<EFBFBD> \\ <15> b<1F> <> 龒Q<E9BE92> =7<> :<3A> <0F> ݡQ<DDA1> \r :<3A> t<EFBFBD> <74> :y(<28> <20> \n <EFBFBD> d)<29> <07> <> \n <EFBFBD> X;<3B> <> <EFBFBD> <EFBFBD> <11> CaA<61> \r <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> P<EFBFBD> GH<EFBFBD> !<21> <> <EFBFBD> @<40> 9\n \n Al~H<> <48> <EFBFBD> V \n s<> <73> ի<EFBFBD> Ư<EFBFBD> bBr<42> <72> <EFBFBD> <05> <> <06> <> <1A> <> 3<EFBFBD> \r <EFBFBD> P<EFBFBD> %<0B> ф\r }b/<2F> Α \$ <EFBFBD> 5<> P<EFBFBD> C<EFBFBD> \" w<13> B_<42> <5F> <EFBFBD> U<> gAt<41> <74> <EFBFBD> <EFBFBD> 夅<EFBFBD> ^Q<> <51> U<EFBFBD> <01> <> j<EFBFBD> <6A> <EFBFBD> <EFBFBD> Bvh졄4<ECA184> )<29> <> +<2B> )<<3C> j ^<5E> <L<> <4C> 4U*<2A> <> <EFBFBD> Bg<42> <67> <EFBFBD> <EFBFBD> <1C> *n<> ʖ<> -<2D> <> <EFBFBD> <EFBFBD> 9 O \$ <EFBFBD> <EFBFBD> طzyM<EFBFBD> 3<0E> \\ 9<EFBFBD> <EFBFBD> <1E> . o<> <6F> <EFBFBD> <EFBFBD> <10> <> E(i<> <07> <> <0B> <> <EFBFBD> 7 tߚ<74> <DF9A> -&<26> \n j!\r <EFBFBD> <EFBFBD> y<> y<EFBFBD> D1g<31> <67> <EFBFBD> ]<5D> <> yR<79> 7\" <EFBFBD> <EFBFBD> <1D> <13> <> <EFBFBD> ~<10> <> <EFBFBD> <EFBFBD> )TZ0E9M<39> YZ t Xe !<21> f<EFBFBD> @<40> { Ȭyl 8<> ;<3B> <> <EFBFBD> R { <EFBFBD> <EFBFBD> 8<EFBFBD> Į<> e<EFBFBD> +U L<> '<27> F<> 1<EFBFBD> <04> <> 8PE5- <09> _ !<21> 7<EFBFBD> <37> <EFBFBD> [2<> J<EFBFBD> <01> ;<3B> HR<48> <52> ǹ<> 8 p痲݇@<40> <> 0,ծpsK0\r <01> 4<EFBFBD> <34> \$ sJ<73> <0E> <> 4<EFBFBD> DZ<44> <5A> I<0E> <> '\$ cL<EFBFBD> R<EFBFBD> <EFBFBD> MpY&<1E> <> <EFBFBD> <EFBFBD> i<EFBFBD> z3G<06> zҚJ%<25> <> P<> -<2D> <01> [<5B> /x<> <78> T<EFBFBD> { p<EFBFBD> <EFBFBD> z<> C<05> v<02> <05> <> :<3A> V'<27> \\ <EFBFBD> <EFBFBD> KJa<EFBFBD> <EFBFBD> M<EFBFBD> &<26> <> <EFBFBD> Ӿ\" <EFBFBD> <EFBFBD> e<13> o^Q +h^<5E> <02> iT<69> <54> 1<EFBFBD> OR<4F> l<EFBFBD> , 5[ݘ\$ <EFBFBD> <EFBFBD> )<29> <> jLƁU`<60> S<EFBFBD> `Z ^<5E> |<0F> <> r<EFBFBD> =<3D> <0F> n登<6E> <E799BB> TU 1Hyk<79> <6B> t+\0 v<1C> D<EFBFBD> \r <<3C> <> ƙ<EFBFBD> <C699> j G<> <1E> <> t<EFBFBD> *3%k<> Y ܲT *<2A> |\" C<1E> <> l hE<68> (<28> \r <EFBFBD> 8r<EFBFBD> <EFBFBD> { <EFBFBD> <18> 0<EFBFBD> <30> <EFBFBD> <EFBFBD> <EFBFBD> D<EFBFBD> _<EFBFBD> <5F> .6и<EFBFBD> ;<3B> <> <EFBFBD> <EFBFBD> rBj<1B> O'ۜ<> <DB9C> <EFBFBD> >\$ <EFBFBD> <EFBFBD> `^6<> <36> 9<EFBFBD> #<19> <> <EFBFBD> <14> 4 X<03> <> mh8:<3A> <> c<EFBFBD> <06> 0<1D> <> ;<3B> /ԉ<> <D489> <EFBFBD> <EFBFBD> ;<3B> \\ '(<28> <> <EFBFBD> t<EFBFBD> '+<0B> <1C> <> <EFBFBD> <EFBFBD> ̷<EFBFBD> ^<0B> ]<5D> <> N<EFBFBD> v<EFBFBD> <76> #<23> ,<08> v<EFBFBD> <76> <EFBFBD> O<EFBFBD> i<> ϖ<EFBFBD> ><3E> <> <S<0E> A \\ <02> \\ <EFBFBD> <EFBFBD> <EFBFBD> !<21> 3*tl`<60> u<EFBFBD> \0 p '<27> 7<EFBFBD> P<EFBFBD> 9<7F> bs<62> { <EFBFBD> v<EFBFBD> { <EFBFBD> <EFBFBD> 7<EFBFBD> \" { <EFBFBD> <EFBFBD> r<EFBFBD> a<EFBFBD> (<28> ^<5E> <> <EFBFBD> E<EFBFBD> <45> <EFBFBD> <EFBFBD> <EFBFBD> g<> <67> /<2F> <> <EFBFBD> U<EFBFBD> 9g<39> <67> <EFBFBD> /<2F> <> `<60> \n L\n <EFBFBD> )<07> <> <14> (A<> a<EFBFBD> \" <20> <03> <> <09> &<26> P<EFBFBD> <14> @O\n 師 0<> (M &<17> FJ '<27> ! <20> 0<EFBFBD> <<3C> H<EFBFBD> <48> <EFBFBD> <EFBFBD> <0E> <> <EFBFBD> *<2A> |<7C> <> *<2A> OZ<4F> m*n/b<> /<2F> <> <EFBFBD> <EFBFBD> <EFBFBD> <0C> <> .<2E> <> <EFBFBD> o \0 <EFBFBD> <EFBFBD> dn<EFBFBD> )<29> <1E> <> <EFBFBD> i<EFBFBD> :R<> <52> <EFBFBD> P2<50> m<EFBFBD> \0 /v<> OX<4F> <58> <1C> Fʳψ<CAB3> <0F> <> <EFBFBD> \" <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> 0<04> 0<08> <> <EFBFBD> <EFBFBD> <16> 0b<30> <62> g j<> <6A> \$ <EFBFBD> n<EFBFBD> 0}<05> <05> @<40> = M Ƃ 0n<30> P<EFBFBD> /p<> ot<6F> <10> <> <EFBFBD> <EFBFBD> <EFBFBD> .<12> ̽<0B> g\0 <EFBFBD> ) o<> \n 0<EFBFBD> <EFBFBD> <EFBFBD> \r F<> <46> <0B> <07> b<EFBFBD> i<EFBFBD> <69> o}\n <EFBFBD> ̯<> NQ<0B> '<0B> x<EFBFBD> Fa<46> J<04> <> <EFBFBD> <EFBFBD> L<EFBFBD> <10> <0F> <> <04> <> \r <EFBFBD> <EFBFBD> \r <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> 0<> <07> '<0C> <> <EFBFBD> d oe p<> <13> 4D<34> <44> ʐ<> q(~<7E> <> <20> \r <EFBFBD> E<10> <> pr<70> QVFH<46> l<EFBFBD> <6C> Kj<4B> <6A> <EFBFBD> N&<26> j!<21> H`<11> _bh\r 1<EFBFBD> <0C> <> n !<21> Ɏ<> z<> <7A> <EFBFBD> <13> <> <0C> \\ <0F> <> \r <EFBFBD> <07> <> <EFBFBD> `V_k<5F> <6B> \" \\ ׂ' V<05> <> \0 ʾ `A C<> <43> <EFBFBD> <EFBFBD> <18> <> V<EFBFBD> `\r %<25> <> <EFBFBD> <02> <> <EFBFBD> \r <EFBFBD> <EFBFBD> <0E> <> k@N<> <4E> <EFBFBD> <EFBFBD> B<> 횙<11> <20> !<21> \n <EFBFBD> \0 Z<EFBFBD> 6<> \$ d<EFBFBD> <EFBFBD> ,%<03> %la<19> H<EFBFBD> \n <EFBFBD> #<23> S\$ !\$ @<40> <> 2<> <32> <EFBFBD> I \$ r<EFBFBD> { !<21> <> J<EFBFBD> 2H<32> Z M \\ <EFBFBD> <EFBFBD> hb,<2C> '||cj~g<> r<EFBFBD> `<60> ļ<EFBFBD> \$ <EFBFBD> <EFBFBD> <EFBFBD> +<2B> A1<41> <31> E <1F> <> <1F> <> <<3C> L<EFBFBD> <11> \$ <EFBFBD> Y%-FD<46> <44> d<EFBFBD> L 焳<> <E784B3> \n @<40> bVf<56> <66> ;2_(<28> <> L<EFBFBD> п<EFBFBD> <05> <%@ڜ , \" <EFBFBD> d<EFBFBD> <EFBFBD> N<EFBFBD> er<EFBFBD> \0 <EFBFBD> <EFBFBD> `<60> <0E> Z<0C> <> 4<EFBFBD> 'ld9-<2D> #`<60> <> Ŗ<EFBFBD> <C596> <EFBFBD> <EFBFBD> <EFBFBD> j6<6A> ƣ<EFBFBD> v<07> <> <04> N<EFBFBD> ͐f<CD90> <66> @܆<> &<26> B\$ <0B> <> (<28> Z&<26> <> <EFBFBD> 27 8I <20> <> <EFBFBD> P\r k \\ <EFBFBD> <EFBFBD> <EFBFBD> 2`<60> \r dL b@ E<14> <> 2`P( B'<27> <0B> <> <0F> <> 0<EFBFBD> &<05> <> { <EFBFBD> <EFBFBD> <EFBFBD> :<3A> <> dB<64> 1<EFBFBD> ^؉*\r \0 c< K<> |<06> 5sZ<73> `<60> <> <EFBFBD> O3<4F> 5=@<40> 5<EFBFBD> C>@<40> W* = \0 N<g<> 6s67Sm7 u? { <&L<04> . 3~D<> <44> \r Ś<0C> x<EFBFBD> <13> ) ,r<> i n<> /<2F> <> O \0 o { 0k<EFBFBD> ]3> m<> <05> 1 \0 <EFBFBD> I@<40> 9 T34+ԙ@e<0F> GF MC<4D> \r E3<EFBFBD> Etm!<13> #1<> D @<40> H(<28> <> n <20> <> <g,V`R]@<40> <> <EFBFBD> <EFBFBD> 3Cr7s~<7E> G I<> i@ \0 v<EFBFBD> <EFBFBD> 5 \r V<EFBFBD> '<1A> <> <EFBFBD> <0C> <> <08> P<05> <> \r <EFBFBD> \$ <b<> %(<28> Dd<44> <64> PW<50> <57> <EFBFBD> <EFBFBD> b<EFBFBD> fO <20> x \0 <EFBFBD> } <20> <0B> <> lb<6C> &<26> v j 4<> LS<1A> <> ִԶ5&d sF M<> 4<EFBFBD> <18> \" .H<> M0<4D> 1u L<> \" <EFBFBD> <EFBFBD> /J`<60> { <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> xǐYu*\" U.I53Q<33> 3Q<33> <51> J<EFBFBD> <4A> g<EFBFBD> <67> 5<EFBFBD> s<> <73> <EFBFBD> &jь<6A> <D18C> u<EFBFBD> ٭ ЪG Q MTmGB<47> t l- c<> *<2A> <> \r <02> <> Z7<5A> <37> <1B> *hs/RUV<55> <56> <EFBFBD> <EFBFBD> B<EFBFBD> Nˈ <4E> <CB88> <06> <> <EFBFBD> Ԋ<> i<EFBFBD> Lk<4C> .<2E> <> <EFBFBD> t<EFBFBD> <74> 龩<EFBFBD> rYi<59> <69> <EFBFBD> -S<> <53> 3<EFBFBD> \\ <EFBFBD> T<EFBFBD> OM^<5E> G><3E> ZQj<51> <07> <> \" <EFBFBD> <EFBFBD> <EFBFBD> i<EFBFBD> <EFBFBD> MsS<EFBFBD> S\$ Ib f<> <13> <> u<EFBFBD> <75> <08> <> <EFBFBD> :<04> SB|i<> <69> Y¦<0F> <> 8 v<07> #<02> <> D<EFBFBD> 4`<60> <> .<2E> <> ^<5E> H<EFBFBD> M<EFBFBD> _ռ <5F> u<EFBFBD> <75> U<EFBFBD> z`Z<> J e<> <65> <EFBFBD> @Ce<43> <65> a<EFBFBD> \" m<> b<12> 6ԯJR<4A> <EFBFBD> <0C> T<EFBFBD> ?ԣXMZ<4D> <5A> І <EFBFBD> <D086> p<EFBFBD> <70> <0F> <> Qv<51> j<13> jV<6A> { <EFBFBD> <EFBFBD> <EFBFBD> C<EFBFBD> \r <EFBFBD> <EFBFBD> 7<16> Tʞ<54> <20> <> 5{ P<EFBFBD> <EFBFBD> ]<12> \r <EFBFBD> ?Q<> AA<41> <41> <07> <> <EFBFBD> <EFBFBD> 2V)J i<> <69> -N 9 9f<39> l J m<> <6D> ;u<> @<40> <F<> Ѡ<EFBFBD> e<EFBFBD> j<0C> <> Ħ<> I<EFBFBD> <+CW@<40> <> <18> <> <EFBFBD> Z<EFBFBD> l<EFBFBD> 1<EFBFBD> <2<> iF<69> 7` KG<4B> ~L&+N<08> <> YtWH飑w <0E> <1A> <> <19> l<EFBFBD> <6C> s'g<04> <> q+L<> zbiz<69> <7A> <EFBFBD> Ţ<EFBFBD> .Њ<> zW<7A> <57> <20> zd<06> W<EFBFBD> <57> <EFBFBD> <EFBFBD> (<17> y)v<> E4,\0 <EFBFBD> \" d<> <64> \$ B<EFBFBD> { <EFBFBD> <EFBFBD> !) 1U<31> 5b p#<23> }m =<3D> <> @<40> w<12> P\0 <EFBFBD> \r <EFBFBD> <0C> <> <EFBFBD> <EFBFBD> `O|<7C> <> <0E> <09> ɍ<EFBFBD> <C98D> <EFBFBD> <EFBFBD> Y<EFBFBD> <59> JՂ<15> E<EFBFBD> <45> Ou<4F> _<EFBFBD> \n `F`<60> }
2021-05-20 10:52:49 +02:00
get_lang (){ return 'en' ;} function
lang ( $si , $ef = null ){ if ( is_array ( $si )){ $eg = ( $ef == 1 ? 0 : 1 ); $si = $si [ $eg ];} $si = str_replace ( " %d " , " %s " , $si ); $ef = format_number ( $ef ); return
sprintf ( $si , $ef );} if ( extension_loaded ( 'pdo' )){ class
Min_PDO { var $_result , $server_info , $affected_rows , $errno , $error , $pdo ; function
__construct (){ global $b ; $eg = array_search ( " SQL " , $b -> operators ); if ( $eg !== false ) unset ( $b -> operators [ $eg ]);} function
dsn ( $nc , $V , $F , $xf = array ()){ $xf [ PDO :: ATTR_ERRMODE ] = PDO :: ERRMODE_SILENT ; $xf [ PDO :: ATTR_STATEMENT_CLASS ] = array ( 'Min_PDOStatement' ); try { $this -> pdo = new
PDO ( $nc , $V , $F , $xf );} catch ( Exception $Fc ){ auth_error ( h ( $Fc -> getMessage ()));} $this -> server_info =@ $this -> pdo -> getAttribute ( PDO :: ATTR_SERVER_VERSION );} function
quote ( $P ){ return $this -> pdo -> quote ( $P );} function
query ( $G , $Bi = false ){ $H = $this -> pdo -> query ( $G ); $this -> error = " " ; if ( ! $H ){ list (, $this -> errno , $this -> error ) = $this -> pdo -> errorInfo (); if ( ! $this -> error ) $this -> error = 'Unknown error.' ; return
false ;} $this -> store_result ( $H ); return $H ;} function
multi_query ( $G ){ return $this -> _result = $this -> query ( $G );} function
store_result ( $H = null ){ if ( ! $H ){ $H = $this -> _result ; if ( ! $H ) return
false ;} if ( $H -> columnCount ()){ $H -> num_rows = $H -> rowCount (); return $H ;} $this -> affected_rows = $H -> rowCount (); return
true ;} function
next_result (){ if ( ! $this -> _result ) return
false ; $this -> _result -> _offset = 0 ; return @ $this -> _result -> nextRowset ();} function
result ( $G , $o = 0 ){ $H = $this -> query ( $G ); if ( ! $H ) return
false ; $J = $H -> fetch (); return $J [ $o ];}} class
Min_PDOStatement
extends
PDOStatement { var $_offset = 0 , $num_rows ; function
fetch_assoc (){ return $this -> fetch ( PDO :: FETCH_ASSOC );} function
fetch_row (){ return $this -> fetch ( PDO :: FETCH_NUM );} function
fetch_field (){ $J = ( object ) $this -> getColumnMeta ( $this -> _offset ++ ); $J -> orgtable = $J -> table ; $J -> orgname = $J -> name ; $J -> charsetnr = ( in_array ( " blob " ,( array ) $J -> flags ) ? 63 : 0 ); return $J ;}}} $ic = array (); function
add_driver ( $u , $D ){ global $ic ; $ic [ $u ] = $D ;} class
Min_SQL { var $_conn ; function
__construct ( $g ){ $this -> _conn = $g ;} function
select ( $Q , $L , $Z , $qd , $zf = array (), $_ = 1 , $E = 0 , $mg = false ){ global $b , $y ; $ae = ( count ( $qd ) < count ( $L )); $G = $b -> selectQueryBuild ( $L , $Z , $qd , $zf , $_ , $E ); if ( ! $G ) $G = " SELECT " . limit (( $_GET [ " page " ] != " last " && $_ != " " && $qd && $ae && $y == " sql " ? " SQL_CALC_FOUND_ROWS " : " " ) . implode ( " , " , $L ) . " \n FROM " . table ( $Q ),( $Z ? " \n WHERE " . implode ( " AND " , $Z ) : " " ) . ( $qd && $ae ? " \n GROUP BY " . implode ( " , " , $qd ) : " " ) . ( $zf ? " \n ORDER BY " . implode ( " , " , $zf ) : " " ),( $_ != " " ? + $_ : null ),( $E ? $_ * $E : 0 ), " \n " ); $Ch = microtime ( true ); $I = $this -> _conn -> query ( $G ); if ( $mg ) echo $b -> selectQuery ( $G , $Ch , ! $I ); return $I ;} function
delete ( $Q , $wg , $_ = 0 ){ $G = " FROM " . table ( $Q ); return
queries ( " DELETE " . ( $_ ? limit1 ( $Q , $G , $wg ) : " $G $wg " ));} function
update ( $Q , $N , $wg , $_ = 0 , $hh = " \n " ){ $Ti = array (); foreach ( $N
as $z => $X ) $Ti [] = " $z = $X " ; $G = table ( $Q ) . " SET $hh " . implode ( " , $hh " , $Ti ); return
queries ( " UPDATE " . ( $_ ? limit1 ( $Q , $G , $wg , $hh ) : " $G $wg " ));} function
insert ( $Q , $N ){ return
queries ( " INSERT INTO " . table ( $Q ) . ( $N ? " ( " . implode ( " , " , array_keys ( $N )) . " ) \n VALUES ( " . implode ( " , " , $N ) . " ) " : " DEFAULT VALUES " ));} function
insertUpdate ( $Q , $K , $kg ){ return
false ;} function
begin (){ return
queries ( " BEGIN " );} function
commit (){ return
queries ( " COMMIT " );} function
rollback (){ return
queries ( " ROLLBACK " );} function
slowQuery ( $G , $ei ){} function
convertSearch ( $v , $X , $o ){ return $v ;} function
value ( $X , $o ){ return ( method_exists ( $this -> _conn , 'value' ) ? $this -> _conn -> value ( $X , $o ) : ( is_resource ( $X ) ? stream_get_contents ( $X ) : $X ));} function
quoteBinary ( $Xg ){ return
q ( $Xg );} function
warnings (){ return '' ;} function
tableHelp ( $D ){}} $ic [ " sqlite " ] = " SQLite 3 " ; $ic [ " sqlite2 " ] = " SQLite 2 " ; if ( isset ( $_GET [ " sqlite " ]) || isset ( $_GET [ " sqlite2 " ])){ define ( " DRIVER " ,( isset ( $_GET [ " sqlite " ]) ? " sqlite " : " sqlite2 " )); if ( class_exists ( isset ( $_GET [ " sqlite " ]) ? " SQLite3 " : " SQLiteDatabase " )){ if ( isset ( $_GET [ " sqlite " ])){ class
Min_SQLite { var $extension = " SQLite3 " , $server_info , $affected_rows , $errno , $error , $_link ; function
__construct ( $q ){ $this -> _link = new
SQLite3 ( $q ); $Wi = $this -> _link -> version (); $this -> server_info = $Wi [ " versionString " ];} function
query ( $G ){ $H =@ $this -> _link -> query ( $G ); $this -> error = " " ; if ( ! $H ){ $this -> errno = $this -> _link -> lastErrorCode (); $this -> error = $this -> _link -> lastErrorMsg (); return
false ;} elseif ( $H -> numColumns ()) return
new
Min_Result ( $H ); $this -> affected_rows = $this -> _link -> changes (); return
true ;} function
quote ( $P ){ return ( is_utf8 ( $P ) ? " ' " . $this -> _link -> escapeString ( $P ) . " ' " : " x' " . reset ( unpack ( 'H*' , $P )) . " ' " );} function
store_result (){ return $this -> _result ;} function
result ( $G , $o = 0 ){ $H = $this -> query ( $G ); if ( ! is_object ( $H )) return
false ; $J = $H -> _result -> fetchArray (); return $J [ $o ];}} class
Min_Result { var $_result , $_offset = 0 , $num_rows ; function
__construct ( $H ){ $this -> _result = $H ;} function
fetch_assoc (){ return $this -> _result -> fetchArray ( SQLITE3_ASSOC );} function
fetch_row (){ return $this -> _result -> fetchArray ( SQLITE3_NUM );} function
fetch_field (){ $e = $this -> _offset ++ ; $T = $this -> _result -> columnType ( $e ); return ( object ) array ( " name " => $this -> _result -> columnName ( $e ), " type " => $T , " charsetnr " => ( $T == SQLITE3_BLOB ? 63 : 0 ),);} function
__desctruct (){ return $this -> _result -> finalize ();}}} else { class
Min_SQLite { var $extension = " SQLite " , $server_info , $affected_rows , $error , $_link ; function
__construct ( $q ){ $this -> server_info = sqlite_libversion (); $this -> _link = new
SQLiteDatabase ( $q );} function
query ( $G , $Bi = false ){ $Pe = ( $Bi ? " unbufferedQuery " : " query " ); $H =@ $this -> _link -> $Pe ( $G , SQLITE_BOTH , $n ); $this -> error = " " ; if ( ! $H ){ $this -> error = $n ; return
false ;} elseif ( $H === true ){ $this -> affected_rows = $this -> changes (); return
true ;} return
new
Min_Result ( $H );} function
quote ( $P ){ return " ' " . sqlite_escape_string ( $P ) . " ' " ;} function
store_result (){ return $this -> _result ;} function
result ( $G , $o = 0 ){ $H = $this -> query ( $G ); if ( ! is_object ( $H )) return
false ; $J = $H -> _result -> fetch (); return $J [ $o ];}} class
Min_Result { var $_result , $_offset = 0 , $num_rows ; function
__construct ( $H ){ $this -> _result = $H ; if ( method_exists ( $H , 'numRows' )) $this -> num_rows = $H -> numRows ();} function
fetch_assoc (){ $J = $this -> _result -> fetch ( SQLITE_ASSOC ); if ( ! $J ) return
false ; $I = array (); foreach ( $J
as $z => $X ) $I [ idf_unescape ( $z )] = $X ; return $I ;} function
fetch_row (){ return $this -> _result -> fetch ( SQLITE_NUM );} function
fetch_field (){ $D = $this -> _result -> fieldName ( $this -> _offset ++ ); $Zf = '(\[.*]|"(?:[^"]|"")*"|(.+))' ; if ( preg_match ( " ~^( $Zf\\ .)? $Zf\ $ ~ " , $D , $C )){ $Q = ( $C [ 3 ] != " " ? $C [ 3 ] : idf_unescape ( $C [ 2 ])); $D = ( $C [ 5 ] != " " ? $C [ 5 ] : idf_unescape ( $C [ 4 ]));} return ( object ) array ( " name " => $D , " orgname " => $D , " orgtable " => $Q ,);}}}} elseif ( extension_loaded ( " pdo_sqlite " )){ class
Min_SQLite
extends
Min_PDO { var $extension = " PDO_SQLite " ; function
__construct ( $q ){ $this -> dsn ( DRIVER . " : $q " , " " , " " );}}} if ( class_exists ( " Min_SQLite " )){ class
Min_DB
extends
Min_SQLite { function
__construct (){ parent :: __construct ( " :memory: " ); $this -> query ( " PRAGMA foreign_keys = 1 " );} function
select_db ( $q ){ if ( is_readable ( $q ) && $this -> query ( " ATTACH " . $this -> quote ( preg_match ( " ~(^[/ \\ \\ ]|:)~ " , $q ) ? $q : dirname ( $_SERVER [ " SCRIPT_FILENAME " ]) . " / $q " ) . " AS a " )){ parent :: __construct ( $q ); $this -> query ( " PRAGMA foreign_keys = 1 " ); $this -> query ( " PRAGMA busy_timeout = 500 " ); return
true ;} return
false ;} function
multi_query ( $G ){ return $this -> _result = $this -> query ( $G );} function
next_result (){ return
false ;}}} class
Min_Driver
extends
Min_SQL { function
insertUpdate ( $Q , $K , $kg ){ $Ti = array (); foreach ( $K
as $N ) $Ti [] = " ( " . implode ( " , " , $N ) . " ) " ; return
queries ( " REPLACE INTO " . table ( $Q ) . " ( " . implode ( " , " , array_keys ( reset ( $K ))) . " ) VALUES \n " . implode ( " , \n " , $Ti ));} function
tableHelp ( $D ){ if ( $D == " sqlite_sequence " ) return " fileformat2.html#seqtab " ; if ( $D == " sqlite_master " ) return " fileformat2.html# $D " ;}} function
idf_escape ( $v ){ return '"' . str_replace ( '"' , '""' , $v ) . '"' ;} function
table ( $v ){ return
idf_escape ( $v );} function
connect (){ global $b ; list (,, $F ) = $b -> credentials (); if ( $F != " " ) return 'Database does not support password.' ; return
new
Min_DB ;} function
get_databases (){ return
array ();} function
limit ( $G , $Z , $_ , $hf = 0 , $hh = " " ){ return " $G $Z " . ( $_ !== null ? $hh . " LIMIT $_ " . ( $hf ? " OFFSET $hf " : " " ) : " " );} function
limit1 ( $Q , $G , $Z , $hh = " \n " ){ global $g ; return ( preg_match ( '~^INTO~' , $G ) || $g -> result ( " SELECT sqlite_compileoption_used('ENABLE_UPDATE_DELETE_LIMIT') " ) ? limit ( $G , $Z , 1 , 0 , $hh ) : " $G WHERE rowid = (SELECT rowid FROM " . table ( $Q ) . $Z . $hh . " LIMIT 1) " );} function
db_collation ( $l , $lb ){ global $g ; return $g -> result ( " PRAGMA encoding " );} function
engines (){ return
array ();} function
logged_user (){ return
get_current_user ();} function
tables_list (){ return
get_key_vals ( " SELECT name, type FROM sqlite_master WHERE type IN ('table', 'view') ORDER BY (name = 'sqlite_sequence'), name " );} function
count_tables ( $k ){ return
array ();} function
table_status ( $D = " " ){ global $g ; $I = array (); foreach ( get_rows ( " SELECT name AS Name, type AS Engine, 'rowid' AS Oid, '' AS Auto_increment FROM sqlite_master WHERE type IN ('table', 'view') " . ( $D != " " ? " AND name = " . q ( $D ) : " ORDER BY name " )) as $J ){ $J [ " Rows " ] = $g -> result ( " SELECT COUNT(*) FROM " . idf_escape ( $J [ " Name " ])); $I [ $J [ " Name " ]] = $J ;} foreach ( get_rows ( " SELECT * FROM sqlite_sequence " , null , " " ) as $J ) $I [ $J [ " name " ]][ " Auto_increment " ] = $J [ " seq " ]; return ( $D != " " ? $I [ $D ] : $I );} function
is_view ( $R ){ return $R [ " Engine " ] == " view " ;} function
fk_support ( $R ){ global $g ; return ! $g -> result ( " SELECT sqlite_compileoption_used('OMIT_FOREIGN_KEY') " );} function
fields ( $Q ){ global $g ; $I = array (); $kg = " " ; foreach ( get_rows ( " PRAGMA table_info( " . table ( $Q ) . " ) " ) as $J ){ $D = $J [ " name " ]; $T = strtolower ( $J [ " type " ]); $Wb = $J [ " dflt_value " ]; $I [ $D ] = array ( " field " => $D , " type " => ( preg_match ( '~int~i' , $T ) ? " integer " : ( preg_match ( '~char|clob|text~i' , $T ) ? " text " : ( preg_match ( '~blob~i' , $T ) ? " blob " : ( preg_match ( '~real|floa|doub~i' , $T ) ? " real " : " numeric " )))), " full_type " => $T , " default " => ( preg_match ( " ~'(.*)'~ " , $Wb , $C ) ? str_replace ( " '' " , " ' " , $C [ 1 ]) : ( $Wb == " NULL " ? null : $Wb )), " null " =>! $J [ " notnull " ], " privileges " => array ( " select " => 1 , " insert " => 1 , " update " => 1 ), " primary " => $J [ " pk " ],); if ( $J [ " pk " ]){ if ( $kg != " " ) $I [ $kg ][ " auto_increment " ] = false ; elseif ( preg_match ( '~^integer$~i' , $T )) $I [ $D ][ " auto_increment " ] = true ; $kg = $D ;}} $yh = $g -> result ( " SELECT sql FROM sqlite_master WHERE type = 'table' AND name = " . q ( $Q )); preg_match_all ( '~(("[^"]*+")+|[a-z0-9_]+)\s+text\s+COLLATE\s+(\'[^\']+\'|\S+)~i' , $yh , $Ce , PREG_SET_ORDER ); foreach ( $Ce
as $C ){ $D = str_replace ( '""' , '"' , preg_replace ( '~^"|"$~' , '' , $C [ 1 ])); if ( $I [ $D ]) $I [ $D ][ " collation " ] = trim ( $C [ 3 ], " ' " );} return $I ;} function
indexes ( $Q , $h = null ){ global $g ; if ( ! is_object ( $h )) $h = $g ; $I = array (); $yh = $h -> result ( " SELECT sql FROM sqlite_master WHERE type = 'table' AND name = " . q ( $Q )); if ( preg_match ( '~\bPRIMARY\s+KEY\s*\((([^)"]+|"[^"]*"|`[^`]*`)++)~i' , $yh , $C )){ $I [ " " ] = array ( " type " => " PRIMARY " , " columns " => array (), " lengths " => array (), " descs " => array ()); preg_match_all ( '~((("[^"]*+")+|(?:`[^`]*+`)+)|(\S+))(\s+(ASC|DESC))?(,\s*|$)~i' , $C [ 1 ], $Ce , PREG_SET_ORDER ); foreach ( $Ce
as $C ){ $I [ " " ][ " columns " ][] = idf_unescape ( $C [ 2 ]) . $C [ 4 ]; $I [ " " ][ " descs " ][] = ( preg_match ( '~DESC~i' , $C [ 5 ]) ? '1' : null );}} if ( ! $I ){ foreach ( fields ( $Q ) as $D => $o ){ if ( $o [ " primary " ]) $I [ " " ] = array ( " type " => " PRIMARY " , " columns " => array ( $D ), " lengths " => array (), " descs " => array ( null ));}} $Ah = get_key_vals ( " SELECT name, sql FROM sqlite_master WHERE type = 'index' AND tbl_name = " . q ( $Q ), $h ); foreach ( get_rows ( " PRAGMA index_list( " . table ( $Q ) . " ) " , $h ) as $J ){ $D = $J [ " name " ]; $w = array ( " type " => ( $J [ " unique " ] ? " UNIQUE " : " INDEX " )); $w [ " lengths " ] = array (); $w [ " descs " ] = array (); foreach ( get_rows ( " PRAGMA index_info( " . idf_escape ( $D ) . " ) " , $h ) as $Wg ){ $w [ " columns " ][] = $Wg [ " name " ]; $w [ " descs " ][] = null ;} if ( preg_match ( '~^CREATE( UNIQUE)? INDEX ' . preg_quote ( idf_escape ( $D ) . ' ON ' . idf_escape ( $Q ), '~' ) . ' \((.*)\)$~i' , $Ah [ $D ], $Gg )){ preg_match_all ( '/("[^"]*+")+( DESC)?/' , $Gg [ 2 ], $Ce ); foreach ( $Ce [ 2 ] as $z => $X ){ if ( $X ) $w [ " descs " ][ $z ] = '1' ;}} if ( ! $I [ " " ] || $w [ " type " ] != " UNIQUE " || $w [ " columns " ] != $I [ " " ][ " columns " ] || $w [ " descs " ] != $I [ " " ][ " descs " ] ||! preg_match ( " ~^sqlite_~ " , $D )) $I [ $D ] = $w ;} return $I ;} function
foreign_keys ( $Q ){ $I = array (); foreach ( get_rows ( " PRAGMA foreign_key_list( " . table ( $Q ) . " ) " ) as $J ){ $r =& $I [ $J [ " id " ]]; if ( ! $r ) $r = $J ; $r [ " source " ][] = $J [ " from " ]; $r [ " target " ][] = $J [ " to " ];} return $I ;} function
view ( $D ){ global $g ; return
array ( " select " => preg_replace ( '~^(?:[^`"[]+|`[^`]*`|"[^"]*")* AS\s+~iU' , '' , $g -> result ( " SELECT sql FROM sqlite_master WHERE name = " . q ( $D ))));} function
collations (){ return ( isset ( $_GET [ " create " ]) ? get_vals ( " PRAGMA collation_list " , 1 ) : array ());} function
information_schema ( $l ){ return
false ;} function
error (){ global $g ; return
h ( $g -> error );} function
check_sqlite_name ( $D ){ global $g ; $Oc = " db|sdb|sqlite " ; if ( ! preg_match ( " ~^[^ \\ 0]* \\ .( $Oc ) \$ ~ " , $D )){ $g -> error = sprintf ( 'Please use one of the extensions %s.' , str_replace ( " | " , " , " , $Oc )); return
false ;} return
true ;} function
create_database ( $l , $d ){ global $g ; if ( file_exists ( $l )){ $g -> error = 'File exists.' ; return
false ;} if ( ! check_sqlite_name ( $l )) return
false ; try { $A = new
Min_SQLite ( $l );} catch ( Exception $Fc ){ $g -> error = $Fc -> getMessage (); return
false ;} $A -> query ( 'PRAGMA encoding = "UTF-8"' ); $A -> query ( 'CREATE TABLE adminer (i)' ); $A -> query ( 'DROP TABLE adminer' ); return
true ;} function
drop_databases ( $k ){ global $g ; $g -> __construct ( " :memory: " ); foreach ( $k
as $l ){ if ( !@ unlink ( $l )){ $g -> error = 'File exists.' ; return
false ;}} return
true ;} function
rename_database ( $D , $d ){ global $g ; if ( ! check_sqlite_name ( $D )) return
false ; $g -> __construct ( " :memory: " ); $g -> error = 'File exists.' ; return @ rename ( DB , $D );} function
auto_increment (){ return " PRIMARY KEY " . ( DRIVER == " sqlite " ? " AUTOINCREMENT " : " " );} function
alter_table ( $Q , $D , $p , $fd , $rb , $yc , $d , $Ka , $Tf ){ global $g ; $Mi = ( $Q == " " || $fd ); foreach ( $p
as $o ){ if ( $o [ 0 ] != " " ||! $o [ 1 ] || $o [ 2 ]){ $Mi = true ; break ;}} $c = array (); $Hf = array (); foreach ( $p
as $o ){ if ( $o [ 1 ]){ $c [] = ( $Mi ? $o [ 1 ] : " ADD " . implode ( $o [ 1 ])); if ( $o [ 0 ] != " " ) $Hf [ $o [ 0 ]] = $o [ 1 ][ 0 ];}} if ( ! $Mi ){ foreach ( $c
as $X ){ if ( ! queries ( " ALTER TABLE " . table ( $Q ) . " $X " )) return
false ;} if ( $Q != $D &&! queries ( " ALTER TABLE " . table ( $Q ) . " RENAME TO " . table ( $D ))) return
false ;} elseif ( ! recreate_table ( $Q , $D , $c , $Hf , $fd , $Ka )) return
false ; if ( $Ka ){ queries ( " BEGIN " ); queries ( " UPDATE sqlite_sequence SET seq = $Ka WHERE name = " . q ( $D )); if ( ! $g -> affected_rows ) queries ( " INSERT INTO sqlite_sequence (name, seq) VALUES ( " . q ( $D ) . " , $Ka ) " ); queries ( " COMMIT " );} return
true ;} function
recreate_table ( $Q , $D , $p , $Hf , $fd , $Ka , $x = array ()){ global $g ; if ( $Q != " " ){ if ( ! $p ){ foreach ( fields ( $Q ) as $z => $o ){ if ( $x ) $o [ " auto_increment " ] = 0 ; $p [] = process_field ( $o , $o ); $Hf [ $z ] = idf_escape ( $z );}} $lg = false ; foreach ( $p
as $o ){ if ( $o [ 6 ]) $lg = true ;} $lc = array (); foreach ( $x
as $z => $X ){ if ( $X [ 2 ] == " DROP " ){ $lc [ $X [ 1 ]] = true ; unset ( $x [ $z ]);}} foreach ( indexes ( $Q ) as $ge => $w ){ $f = array (); foreach ( $w [ " columns " ] as $z => $e ){ if ( ! $Hf [ $e ]) continue
2 ; $f [] = $Hf [ $e ] . ( $w [ " descs " ][ $z ] ? " DESC " : " " );} if ( ! $lc [ $ge ]){ if ( $w [ " type " ] != " PRIMARY " ||! $lg ) $x [] = array ( $w [ " type " ], $ge , $f );}} foreach ( $x
as $z => $X ){ if ( $X [ 0 ] == " PRIMARY " ){ unset ( $x [ $z ]); $fd [] = " PRIMARY KEY ( " . implode ( " , " , $X [ 2 ]) . " ) " ;}} foreach ( foreign_keys ( $Q ) as $ge => $r ){ foreach ( $r [ " source " ] as $z => $e ){ if ( ! $Hf [ $e ]) continue
2 ; $r [ " source " ][ $z ] = idf_unescape ( $Hf [ $e ]);} if ( ! isset ( $fd [ " $ge " ])) $fd [] = " " . format_foreign_key ( $r );} queries ( " BEGIN " );} foreach ( $p
as $z => $o ) $p [ $z ] = " " . implode ( $o ); $p = array_merge ( $p , array_filter ( $fd )); $Yh = ( $Q == $D ? " adminer_ $D " : $D ); if ( ! queries ( " CREATE TABLE " . table ( $Yh ) . " ( \n " . implode ( " , \n " , $p ) . " \n ) " )) return
false ; if ( $Q != " " ){ if ( $Hf &&! queries ( " INSERT INTO " . table ( $Yh ) . " ( " . implode ( " , " , $Hf ) . " ) SELECT " . implode ( " , " , array_map ( 'idf_escape' , array_keys ( $Hf ))) . " FROM " . table ( $Q ))) return
false ; $zi = array (); foreach ( triggers ( $Q ) as $xi => $fi ){ $wi = trigger ( $xi ); $zi [] = " CREATE TRIGGER " . idf_escape ( $xi ) . " " . implode ( " " , $fi ) . " ON " . table ( $D ) . " \n $wi[Statement] " ;} $Ka = $Ka ? 0 : $g -> result ( " SELECT seq FROM sqlite_sequence WHERE name = " . q ( $Q )); if ( ! queries ( " DROP TABLE " . table ( $Q )) || ( $Q == $D &&! queries ( " ALTER TABLE " . table ( $Yh ) . " RENAME TO " . table ( $D ))) ||! alter_indexes ( $D , $x )) return
false ; if ( $Ka ) queries ( " UPDATE sqlite_sequence SET seq = $Ka WHERE name = " . q ( $D )); foreach ( $zi
as $wi ){ if ( ! queries ( $wi )) return
false ;} queries ( " COMMIT " );} return
true ;} function
index_sql ( $Q , $T , $D , $f ){ return " CREATE $T " . ( $T != " INDEX " ? " INDEX " : " " ) . idf_escape ( $D != " " ? $D : uniqid ( $Q . " _ " )) . " ON " . table ( $Q ) . " $f " ;} function
alter_indexes ( $Q , $c ){ foreach ( $c
as $kg ){ if ( $kg [ 0 ] == " PRIMARY " ) return
recreate_table ( $Q , $Q , array (), array (), array (), 0 , $c );} foreach ( array_reverse ( $c ) as $X ){ if ( ! queries ( $X [ 2 ] == " DROP " ? " DROP INDEX " . idf_escape ( $X [ 1 ]) : index_sql ( $Q , $X [ 0 ], $X [ 1 ], " ( " . implode ( " , " , $X [ 2 ]) . " ) " ))) return
false ;} return
true ;} function
truncate_tables ( $S ){ return
apply_queries ( " DELETE FROM " , $S );} function
drop_views ( $Yi ){ return
apply_queries ( " DROP VIEW " , $Yi );} function
drop_tables ( $S ){ return
apply_queries ( " DROP TABLE " , $S );} function
move_tables ( $S , $Yi , $Wh ){ return
false ;} function
trigger ( $D ){ global $g ; if ( $D == " " ) return
array ( " Statement " => " BEGIN \n \t ; \n END " ); $v = '(?:[^`"\s]+|`[^`]*`|"[^"]*")+' ; $yi = trigger_options (); preg_match ( " ~^CREATE \\ s+TRIGGER \\ s* $v\\s *( " . implode ( " | " , $yi [ " Timing " ]) . " ) \\ s+([a-z]+)(?: \\ s+OF \\ s+( $v ))? \\ s+ON \\ s* $v\\s *(?:FOR \\ s+EACH \\ s+ROW \\ s)?(.*)~is " , $g -> result ( " SELECT sql FROM sqlite_master WHERE type = 'trigger' AND name = " . q ( $D )), $C ); $gf = $C [ 3 ]; return
array ( " Timing " => strtoupper ( $C [ 1 ]), " Event " => strtoupper ( $C [ 2 ]) . ( $gf ? " OF " : " " ), " Of " => idf_unescape ( $gf ), " Trigger " => $D , " Statement " => $C [ 4 ],);} function
triggers ( $Q ){ $I = array (); $yi = trigger_options (); foreach ( get_rows ( " SELECT * FROM sqlite_master WHERE type = 'trigger' AND tbl_name = " . q ( $Q )) as $J ){ preg_match ( '~^CREATE\s+TRIGGER\s*(?:[^`"\s]+|`[^`]*`|"[^"]*")+\s*(' . implode ( " | " , $yi [ " Timing " ]) . ')\s*(.*?)\s+ON\b~i' , $J [ " sql " ], $C ); $I [ $J [ " name " ]] = array ( $C [ 1 ], $C [ 2 ]);} return $I ;} function
trigger_options (){ return
array ( " Timing " => array ( " BEFORE " , " AFTER " , " INSTEAD OF " ), " Event " => array ( " INSERT " , " UPDATE " , " UPDATE OF " , " DELETE " ), " Type " => array ( " FOR EACH ROW " ),);} function
begin (){ return
queries ( " BEGIN " );} function
last_id (){ global $g ; return $g -> result ( " SELECT LAST_INSERT_ROWID() " );} function
explain ( $g , $G ){ return $g -> query ( " EXPLAIN QUERY PLAN $G " );} function
found_rows ( $R , $Z ){} function
types (){ return
array ();} function
schemas (){ return
array ();} function
get_schema (){ return " " ;} function
set_schema ( $ah ){ return
true ;} function
create_sql ( $Q , $Ka , $Hh ){ global $g ; $I = $g -> result ( " SELECT sql FROM sqlite_master WHERE type IN ('table', 'view') AND name = " . q ( $Q )); foreach ( indexes ( $Q ) as $D => $w ){ if ( $D == '' ) continue ; $I .= " ; \n \n " . index_sql ( $Q , $w [ 'type' ], $D , " ( " . implode ( " , " , array_map ( 'idf_escape' , $w [ 'columns' ])) . " ) " );} return $I ;} function
truncate_sql ( $Q ){ return " DELETE FROM " . table ( $Q );} function
use_sql ( $j ){} function
trigger_sql ( $Q ){ return
implode ( get_vals ( " SELECT sql || ';; \n ' FROM sqlite_master WHERE type = 'trigger' AND tbl_name = " . q ( $Q )));} function
show_variables (){ global $g ; $I = array (); foreach ( array ( " auto_vacuum " , " cache_size " , " count_changes " , " default_cache_size " , " empty_result_callbacks " , " encoding " , " foreign_keys " , " full_column_names " , " fullfsync " , " journal_mode " , " journal_size_limit " , " legacy_file_format " , " locking_mode " , " page_size " , " max_page_count " , " read_uncommitted " , " recursive_triggers " , " reverse_unordered_selects " , " secure_delete " , " short_column_names " , " synchronous " , " temp_store " , " temp_store_directory " , " schema_version " , " integrity_check " , " quick_check " ) as $z ) $I [ $z ] = $g -> result ( " PRAGMA $z " ); return $I ;} function
show_status (){ $I = array (); foreach ( get_vals ( " PRAGMA compile_options " ) as $wf ){ list ( $z , $X ) = explode ( " = " , $wf , 2 ); $I [ $z ] = $X ;} return $I ;} function
convert_field ( $o ){} function
unconvert_field ( $o , $I ){ return $I ;} function
support ( $Tc ){ return
preg_match ( '~^(columns|database|drop_col|dump|indexes|descidx|move_col|sql|status|table|trigger|variables|view|view_trigger)$~' , $Tc );} function
driver_config (){ $U = array ( " integer " => 0 , " real " => 0 , " numeric " => 0 , " text " => 0 , " blob " => 0 ); return
array ( 'possible_drivers' => array (( isset ( $_GET [ " sqlite " ]) ? " SQLite3 " : " SQLite " ), " PDO_SQLite " ), 'jush' => " sqlite " , 'types' => $U , 'structured_types' => array_keys ( $U ), 'unsigned' => array (), 'operators' => array ( " = " , " < " , " > " , " <= " , " >= " , " != " , " LIKE " , " LIKE %% " , " IN " , " IS NULL " , " NOT LIKE " , " NOT IN " , " IS NOT NULL " , " SQL " ), 'functions' => array ( " hex " , " length " , " lower " , " round " , " unixepoch " , " upper " ), 'grouping' => array ( " avg " , " count " , " count distinct " , " group_concat " , " max " , " min " , " sum " ), 'edit_functions' => array ( array (), array ( " integer|real|numeric " => " +/- " , " text " => " || " ,)),);}} $ic [ " pgsql " ] = " PostgreSQL " ; if ( isset ( $_GET [ " pgsql " ])){ define ( " DRIVER " , " pgsql " ); if ( extension_loaded ( " pgsql " )){ class
Min_DB { var $extension = " PgSQL " , $_link , $_result , $_string , $_database = true , $server_info , $affected_rows , $error , $timeout ; function
_error ( $Ac , $n ){ if ( ini_bool ( " html_errors " )) $n = html_entity_decode ( strip_tags ( $n )); $n = preg_replace ( '~^[^:]*: ~' , '' , $n ); $this -> error = $n ;} function
connect ( $M , $V , $F ){ global $b ; $l = $b -> database (); set_error_handler ( array ( $this , '_error' )); $this -> _string = " host=' " . str_replace ( " : " , " ' port=' " , addcslashes ( $M , " ' \\ " )) . " ' user=' " . addcslashes ( $V , " ' \\ " ) . " ' password=' " . addcslashes ( $F , " ' \\ " ) . " ' " ; $this -> _link =@ pg_connect ( " $this->_string dbname=' " . ( $l != " " ? addcslashes ( $l , " ' \\ " ) : " postgres " ) . " ' " , PGSQL_CONNECT_FORCE_NEW ); if ( ! $this -> _link && $l != " " ){ $this -> _database = false ; $this -> _link =@ pg_connect ( " $this->_string dbname='postgres' " , PGSQL_CONNECT_FORCE_NEW );} restore_error_handler (); if ( $this -> _link ){ $Wi = pg_version ( $this -> _link ); $this -> server_info = $Wi [ " server " ]; pg_set_client_encoding ( $this -> _link , " UTF8 " );} return ( bool ) $this -> _link ;} function
quote ( $P ){ return " ' " . pg_escape_string ( $this -> _link , $P ) . " ' " ;} function
value ( $X , $o ){ return ( $o [ " type " ] == " bytea " && $X !== null ? pg_unescape_bytea ( $X ) : $X );} function
quoteBinary ( $P ){ return " ' " . pg_escape_bytea ( $this -> _link , $P ) . " ' " ;} function
select_db ( $j ){ global $b ; if ( $j == $b -> database ()) return $this -> _database ; $I =@ pg_connect ( " $this->_string dbname=' " . addcslashes ( $j , " ' \\ " ) . " ' " , PGSQL_CONNECT_FORCE_NEW ); if ( $I ) $this -> _link = $I ; return $I ;} function
close (){ $this -> _link =@ pg_connect ( " $this->_string dbname='postgres' " );} function
query ( $G , $Bi = false ){ $H =@ pg_query ( $this -> _link , $G ); $this -> error = " " ; if ( ! $H ){ $this -> error = pg_last_error ( $this -> _link ); $I = false ;} elseif ( ! pg_num_fields ( $H )){ $this -> affected_rows = pg_affected_rows ( $H ); $I = true ;} else $I = new
Min_Result ( $H ); if ( $this -> timeout ){ $this -> timeout = 0 ; $this -> query ( " RESET statement_timeout " );} return $I ;} function
multi_query ( $G ){ return $this -> _result = $this -> query ( $G );} function
store_result (){ return $this -> _result ;} function
next_result (){ return
false ;} function
result ( $G , $o = 0 ){ $H = $this -> query ( $G ); if ( ! $H ||! $H -> num_rows ) return
false ; return
pg_fetch_result ( $H -> _result , 0 , $o );} function
warnings (){ return
h ( pg_last_notice ( $this -> _link ));}} class
Min_Result { var $_result , $_offset = 0 , $num_rows ; function
__construct ( $H ){ $this -> _result = $H ; $this -> num_rows = pg_num_rows ( $H );} function
fetch_assoc (){ return
pg_fetch_assoc ( $this -> _result );} function
fetch_row (){ return
pg_fetch_row ( $this -> _result );} function
fetch_field (){ $e = $this -> _offset ++ ; $I = new
stdClass ; if ( function_exists ( 'pg_field_table' )) $I -> orgtable = pg_field_table ( $this -> _result , $e ); $I -> name = pg_field_name ( $this -> _result , $e ); $I -> orgname = $I -> name ; $I -> type = pg_field_type ( $this -> _result , $e ); $I -> charsetnr = ( $I -> type == " bytea " ? 63 : 0 ); return $I ;} function
__destruct (){ pg_free_result ( $this -> _result );}}} elseif ( extension_loaded ( " pdo_pgsql " )){ class
Min_DB
extends
Min_PDO { var $extension = " PDO_PgSQL " , $timeout ; function
connect ( $M , $V , $F ){ global $b ; $l = $b -> database (); $this -> dsn ( " pgsql:host=' " . str_replace ( " : " , " ' port=' " , addcslashes ( $M , " ' \\ " )) . " ' client_encoding=utf8 dbname=' " . ( $l != " " ? addcslashes ( $l , " ' \\ " ) : " postgres " ) . " ' " , $V , $F ); return
true ;} function
select_db ( $j ){ global $b ; return ( $b -> database () == $j );} function
quoteBinary ( $Xg ){ return
q ( $Xg );} function
query ( $G , $Bi = false ){ $I = parent :: query ( $G , $Bi ); if ( $this -> timeout ){ $this -> timeout = 0 ; parent :: query ( " RESET statement_timeout " );} return $I ;} function
warnings (){ return '' ;} function
close (){}}} class
Min_Driver
extends
Min_SQL { function
insertUpdate ( $Q , $K , $kg ){ global $g ; foreach ( $K
as $N ){ $Ii = array (); $Z = array (); foreach ( $N
as $z => $X ){ $Ii [] = " $z = $X " ; if ( isset ( $kg [ idf_unescape ( $z )])) $Z [] = " $z = $X " ;} if ( ! (( $Z && queries ( " UPDATE " . table ( $Q ) . " SET " . implode ( " , " , $Ii ) . " WHERE " . implode ( " AND " , $Z )) && $g -> affected_rows ) || queries ( " INSERT INTO " . table ( $Q ) . " ( " . implode ( " , " , array_keys ( $N )) . " ) VALUES ( " . implode ( " , " , $N ) . " ) " ))) return
false ;} return
true ;} function
slowQuery ( $G , $ei ){ $this -> _conn -> query ( " SET statement_timeout = " . ( 1000 * $ei )); $this -> _conn -> timeout = 1000 * $ei ; return $G ;} function
convertSearch ( $v , $X , $o ){ return ( preg_match ( '~char|text' . ( ! preg_match ( '~LIKE~' , $X [ " op " ]) ? '|date|time(stamp)?|boolean|uuid|' . number_type () : '' ) . '~' , $o [ " type " ]) ? $v : " CAST( $v AS text) " );} function
quoteBinary ( $Xg ){ return $this -> _conn -> quoteBinary ( $Xg );} function
warnings (){ return $this -> _conn -> warnings ();} function
tableHelp ( $D ){ $we = array ( " information_schema " => " infoschema " , " pg_catalog " => " catalog " ,); $A = $we [ $_GET [ " ns " ]]; if ( $A ) return " $A - " . str_replace ( " _ " , " - " , $D ) . " .html " ;}} function
idf_escape ( $v ){ return '"' . str_replace ( '"' , '""' , $v ) . '"' ;} function
table ( $v ){ return
idf_escape ( $v );} function
connect (){ global $b , $U , $Gh ; $g = new
Min_DB ; $Kb = $b -> credentials (); if ( $g -> connect ( $Kb [ 0 ], $Kb [ 1 ], $Kb [ 2 ])){ if ( min_version ( 9 , 0 , $g )){ $g -> query ( " SET application_name = 'Adminer' " ); if ( min_version ( 9.2 , 0 , $g )){ $Gh [ 'Strings' ][] = " json " ; $U [ " json " ] = 4294967295 ; if ( min_version ( 9.4 , 0 , $g )){ $Gh [ 'Strings' ][] = " jsonb " ; $U [ " jsonb " ] = 4294967295 ;}}} return $g ;} return $g -> error ;} function
get_databases (){ return
get_vals ( " SELECT datname FROM pg_database WHERE has_database_privilege(datname, 'CONNECT') ORDER BY datname " );} function
limit ( $G , $Z , $_ , $hf = 0 , $hh = " " ){ return " $G $Z " . ( $_ !== null ? $hh . " LIMIT $_ " . ( $hf ? " OFFSET $hf " : " " ) : " " );} function
limit1 ( $Q , $G , $Z , $hh = " \n " ){ return ( preg_match ( '~^INTO~' , $G ) ? limit ( $G , $Z , 1 , 0 , $hh ) : " $G " . ( is_view ( table_status1 ( $Q )) ? $Z : " WHERE ctid = (SELECT ctid FROM " . table ( $Q ) . $Z . $hh . " LIMIT 1) " ));} function
db_collation ( $l , $lb ){ global $g ; return $g -> result ( " SELECT datcollate FROM pg_database WHERE datname = " . q ( $l ));} function
engines (){ return
array ();} function
logged_user (){ global $g ; return $g -> result ( " SELECT user " );} function
tables_list (){ $G = " SELECT table_name, table_type FROM information_schema.tables WHERE table_schema = current_schema() " ; if ( support ( 'materializedview' )) $G .= "
UNION ALL
SELECT matviewname , 'MATERIALIZED VIEW'
FROM pg_matviews
WHERE schemaname = current_schema () " ; $G .= "
ORDER BY 1 " ;return
get_key_vals ( $G );} function
count_tables ( $k ){ return
array ();} function
table_status ( $D = " " ){ $I = array (); foreach ( get_rows ( " SELECT c.relname AS \" Name \" , CASE c.relkind WHEN 'r' THEN 'table' WHEN 'm' THEN 'materialized view' ELSE 'view' END AS \" Engine \" , pg_relation_size(c.oid) AS \" Data_length \" , pg_total_relation_size(c.oid) - pg_relation_size(c.oid) AS \" Index_length \" , obj_description(c.oid, 'pg_class') AS \" Comment \" , " . ( min_version ( 12 ) ? " '' " : " CASE WHEN c.relhasoids THEN 'oid' ELSE '' END " ) . " AS \" Oid \" , c.reltuples as \" Rows \" , n.nspname
FROM pg_class c
JOIN pg_namespace n ON ( n . nspname = current_schema () AND n . oid = c . relnamespace )
WHERE relkind IN ( 'r' , 'm' , 'v' , 'f' , 'p' )
" .( $D != " " ? " AND relname = " .q( $D ): " ORDER BY relname " ))as $J ) $I[$J["Name"] ]= $J ;return( $D != " " ? $I[$D] : $I );}function
is_view ( $R ){ return
in_array ( $R [ " Engine " ], array ( " view " , " materialized view " ));} function
fk_support ( $R ){ return
true ;} function
fields ( $Q ){ $I = array (); $Ba = array ( 'timestamp without time zone' => 'timestamp' , 'timestamp with time zone' => 'timestamptz' ,); foreach ( get_rows ( " SELECT a.attname AS field, format_type(a.atttypid, a.atttypmod) AS full_type, pg_get_expr(d.adbin, d.adrelid) AS default, a.attnotnull::int, col_description(c.oid, a.attnum) AS comment " . ( min_version ( 10 ) ? " , a.attidentity " : " " ) . "
FROM pg_class c
JOIN pg_namespace n ON c . relnamespace = n . oid
JOIN pg_attribute a ON c . oid = a . attrelid
LEFT JOIN pg_attrdef d ON c . oid = d . adrelid AND a . attnum = d . adnum
WHERE c . relname = " .q( $Q ). "
AND n . nspname = current_schema ()
AND NOT a . attisdropped
AND a . attnum > 0
ORDER BY a . attnum " )as $J ) { preg_match('~([^([]+)( \ ((.*) \ ))?([a-z ]+)?(( \ [[0-9]*])*) $ ~', $J["full_type"] , $C );list(, $T , $te , $J["length"] , $wa , $Ea )= $C ; $J["length"] .= $Ea ; $bb = $T . $wa ;if(isset( $Ba[$bb] )) { $J [ " type " ] = $Ba [ $bb ]; $J [ " full_type " ] = $J [ " type " ] . $te . $Ea ; } else { $J [ " type " ] = $T ; $J [ " full_type " ] = $J [ " type " ] . $te . $wa . $Ea ; } if(in_array( $J['attidentity'] ,array('a','d'))) $J['default'] ='GENERATED '.( $J['attidentity'] =='d'?'BY DEFAULT':'ALWAYS').' AS IDENTITY'; $J["null"] =! $J["attnotnull"] ; $J["auto_increment"] = $J['attidentity'] ||preg_match('~^nextval \ (~i', $J["default"] ); $J["privileges"] =array( " insert " =>1, " select " =>1, " update " =>1);if(preg_match('~(.+)::[^,)]+(.*)~', $J["default"] , $C )) $J["default"] =( $C[1] == " NULL " ?null:idf_unescape( $C[1] ). $C[2] ); $I[$J["field"] ]= $J ;}return $I ;}function
indexes ( $Q , $h = null ){ global $g ; if ( ! is_object ( $h )) $h = $g ; $I = array (); $Ph = $h -> result ( " SELECT oid FROM pg_class WHERE relnamespace = (SELECT oid FROM pg_namespace WHERE nspname = current_schema()) AND relname = " . q ( $Q )); $f = get_key_vals ( " SELECT attnum, attname FROM pg_attribute WHERE attrelid = $Ph AND attnum > 0 " , $h ); foreach ( get_rows ( " SELECT relname, indisunique::int, indisprimary::int, indkey, indoption, (indpred IS NOT NULL)::int as indispartial FROM pg_index i, pg_class ci WHERE i.indrelid = $Ph AND ci.oid = i.indexrelid " , $h ) as $J ){ $Hg = $J [ " relname " ]; $I [ $Hg ][ " type " ] = ( $J [ " indispartial " ] ? " INDEX " : ( $J [ " indisprimary " ] ? " PRIMARY " : ( $J [ " indisunique " ] ? " UNIQUE " : " INDEX " ))); $I [ $Hg ][ " columns " ] = array (); foreach ( explode ( " " , $J [ " indkey " ]) as $Pd ) $I [ $Hg ][ " columns " ][] = $f [ $Pd ]; $I [ $Hg ][ " descs " ] = array (); foreach ( explode ( " " , $J [ " indoption " ]) as $Qd ) $I [ $Hg ][ " descs " ][] = ( $Qd & 1 ? '1' : null ); $I [ $Hg ][ " lengths " ] = array ();} return $I ;} function
foreign_keys ( $Q ){ global $pf ; $I = array (); foreach ( get_rows ( " SELECT conname, condeferrable::int AS deferrable, pg_get_constraintdef(oid) AS definition
FROM pg_constraint
WHERE conrelid = ( SELECT pc . oid FROM pg_class AS pc INNER JOIN pg_namespace AS pn ON ( pn . oid = pc . relnamespace ) WHERE pc . relname = " .q( $Q ). " AND pn . nspname = current_schema ())
AND contype = 'f' :: char
ORDER BY conkey , conname " )as $J ) { if(preg_match('~FOREIGN KEY \ s* \ ((.+) \ ) \ s*REFERENCES (.+) \ ((.+) \ )(.*) $ ~iA', $J['definition'] , $C )) { $J [ 'source' ] = array_map ( 'idf_unescape' , array_map ( 'trim' , explode ( ',' , $C [ 1 ]))); if ( preg_match ( '~^(("([^"]|"")+"|[^"]+)\.)?"?("([^"]|"")+"|[^"]+)$~' , $C [ 2 ], $Be )){ $J [ 'ns' ] = idf_unescape ( $Be [ 2 ]); $J [ 'table' ] = idf_unescape ( $Be [ 4 ]); } $J['target'] =array_map('idf_unescape',array_map('trim',explode(',', $C[3] ))); $J['on_delete'] =(preg_match( " ~ ON DELETE ( $pf ) ~ " , $C[4] , $Be )? $Be[1] :'NO ACTION'); $J['on_update'] =(preg_match( " ~ ON UPDATE ( $pf ) ~ " , $C[4] , $Be )? $Be[1] :'NO ACTION'); $I[$J['conname'] ]= $J ;}}return $I ;}function
constraints ( $Q ){ global $pf ; $I = array (); foreach ( get_rows ( " SELECT conname, consrc
FROM pg_catalog . pg_constraint
INNER JOIN pg_catalog . pg_namespace ON pg_constraint . connamespace = pg_namespace . oid
INNER JOIN pg_catalog . pg_class ON pg_constraint . conrelid = pg_class . oid AND pg_constraint . connamespace = pg_class . relnamespace
WHERE pg_constraint . contype = 'c'
AND conrelid != 0 -- handle only CONSTRAINTs here , not TYPES
AND nspname = current_schema ()
AND relname = " .q( $Q ). "
ORDER BY connamespace , conname " )as $J ) $I[$J['conname'] ]= $J['consrc'] ;return $I ;}function
view ( $D ){ global $g ; return
array ( " select " => trim ( $g -> result ( " SELECT pg_get_viewdef( " . $g -> result ( " SELECT oid FROM pg_class WHERE relnamespace = (SELECT oid FROM pg_namespace WHERE nspname = current_schema()) AND relname = " . q ( $D )) . " ) " )));} function
collations (){ return
array ();} function
information_schema ( $l ){ return ( $l == " information_schema " );} function
error (){ global $g ; $I = h ( $g -> error ); if ( preg_match ( '~^(.*\n)?([^\n]*)\n( *)\^(\n.*)?$~s' , $I , $C )) $I = $C [ 1 ] . preg_replace ( '~((?:[^&]|&[^;]*;){' . strlen ( $C [ 3 ]) . '})(.*)~' , '\1<b>\2</b>' , $C [ 2 ]) . $C [ 4 ]; return
nl_br ( $I );} function
create_database ( $l , $d ){ return
queries ( " CREATE DATABASE " . idf_escape ( $l ) . ( $d ? " ENCODING " . idf_escape ( $d ) : " " ));} function
drop_databases ( $k ){ global $g ; $g -> close (); return
apply_queries ( " DROP DATABASE " , $k , 'idf_escape' );} function
rename_database ( $D , $d ){ return
queries ( " ALTER DATABASE " . idf_escape ( DB ) . " RENAME TO " . idf_escape ( $D ));} function
auto_increment (){ return " " ;} function
alter_table ( $Q , $D , $p , $fd , $rb , $yc , $d , $Ka , $Tf ){ $c = array (); $vg = array (); if ( $Q != " " && $Q != $D ) $vg [] = " ALTER TABLE " . table ( $Q ) . " RENAME TO " . table ( $D ); foreach ( $p
as $o ){ $e = idf_escape ( $o [ 0 ]); $X = $o [ 1 ]; if ( ! $X ) $c [] = " DROP $e " ; else { $Si = $X [ 5 ]; unset ( $X [ 5 ]); if ( $o [ 0 ] == " " ){ if ( isset ( $X [ 6 ])) $X [ 1 ] = ( $X [ 1 ] == " bigint " ? " big " : ( $X [ 1 ] == " smallint " ? " small " : " " )) . " serial " ; $c [] = ( $Q != " " ? " ADD " : " " ) . implode ( $X ); if ( isset ( $X [ 6 ])) $c [] = ( $Q != " " ? " ADD " : " " ) . " PRIMARY KEY ( $X[0] ) " ;} else { if ( $e != $X [ 0 ]) $vg [] = " ALTER TABLE " . table ( $D ) . " RENAME $e TO $X[0] " ; $c [] = " ALTER $e TYPE $X[1] " ; if ( ! $X [ 6 ]){ $c [] = " ALTER $e " . ( $X [ 3 ] ? " SET $X[3] " : " DROP DEFAULT " ); $c [] = " ALTER $e " . ( $X [ 2 ] == " NULL " ? " DROP NOT " : " SET " ) . $X [ 2 ];}} if ( $o [ 0 ] != " " || $Si != " " ) $vg [] = " COMMENT ON COLUMN " . table ( $D ) . " . $X[0] IS " . ( $Si != " " ? substr ( $Si , 9 ) : " '' " );}} $c = array_merge ( $c , $fd ); if ( $Q == " " ) array_unshift ( $vg , " CREATE TABLE " . table ( $D ) . " ( \n " . implode ( " , \n " , $c ) . " \n ) " ); elseif ( $c ) array_unshift ( $vg , " ALTER TABLE " . table ( $Q ) . " \n " . implode ( " , \n " , $c )); if ( $Q != " " || $rb != " " ) $vg [] = " COMMENT ON TABLE " . table ( $D ) . " IS " . q ( $rb ); if ( $Ka != " " ){} foreach ( $vg
as $G ){ if ( ! queries ( $G )) return
false ;} return
true ;} function
alter_indexes ( $Q , $c ){ $i = array (); $jc = array (); $vg = array (); foreach ( $c
as $X ){ if ( $X [ 0 ] != " INDEX " ) $i [] = ( $X [ 2 ] == " DROP " ? " \n DROP CONSTRAINT " . idf_escape ( $X [ 1 ]) : " \n ADD " . ( $X [ 1 ] != " " ? " CONSTRAINT " . idf_escape ( $X [ 1 ]) : " " ) . " $X[0] " . ( $X [ 0 ] == " PRIMARY " ? " KEY " : " " ) . " ( " . implode ( " , " , $X [ 2 ]) . " ) " ); elseif ( $X [ 2 ] == " DROP " ) $jc [] = idf_escape ( $X [ 1 ]); else $vg [] = " CREATE INDEX " . idf_escape ( $X [ 1 ] != " " ? $X [ 1 ] : uniqid ( $Q . " _ " )) . " ON " . table ( $Q ) . " ( " . implode ( " , " , $X [ 2 ]) . " ) " ;} if ( $i ) array_unshift ( $vg , " ALTER TABLE " . table ( $Q ) . implode ( " , " , $i )); if ( $jc ) array_unshift ( $vg , " DROP INDEX " . implode ( " , " , $jc )); foreach ( $vg
as $G ){ if ( ! queries ( $G )) return
false ;} return
true ;} function
truncate_tables ( $S ){ return
queries ( " TRUNCATE " . implode ( " , " , array_map ( 'table' , $S ))); return
true ;} function
drop_views ( $Yi ){ return
drop_tables ( $Yi );} function
drop_tables ( $S ){ foreach ( $S
as $Q ){ $O = table_status ( $Q ); if ( ! queries ( " DROP " . strtoupper ( $O [ " Engine " ]) . " " . table ( $Q ))) return
false ;} return
true ;} function
move_tables ( $S , $Yi , $Wh ){ foreach ( array_merge ( $S , $Yi ) as $Q ){ $O = table_status ( $Q ); if ( ! queries ( " ALTER " . strtoupper ( $O [ " Engine " ]) . " " . table ( $Q ) . " SET SCHEMA " . idf_escape ( $Wh ))) return
false ;} return
true ;} function
trigger ( $D , $Q ){ if ( $D == " " ) return
array ( " Statement " => " EXECUTE PROCEDURE () " ); $f = array (); $Z = " WHERE trigger_schema = current_schema() AND event_object_table = " . q ( $Q ) . " AND trigger_name = " . q ( $D ); foreach ( get_rows ( " SELECT * FROM information_schema.triggered_update_columns $Z " ) as $J ) $f [] = $J [ " event_object_column " ]; $I = array (); foreach ( get_rows ( 'SELECT trigger_name AS "Trigger", action_timing AS "Timing", event_manipulation AS "Event", \'FOR EACH \' || action_orientation AS "Type", action_statement AS "Statement" FROM information_schema.triggers ' . " $Z ORDER BY event_manipulation DESC " ) as $J ){ if ( $f && $J [ " Event " ] == " UPDATE " ) $J [ " Event " ] .= " OF " ; $J [ " Of " ] = implode ( " , " , $f ); if ( $I ) $J [ " Event " ] .= " OR $I[Event] " ; $I = $J ;} return $I ;} function
triggers ( $Q ){ $I = array (); foreach ( get_rows ( " SELECT * FROM information_schema.triggers WHERE trigger_schema = current_schema() AND event_object_table = " . q ( $Q )) as $J ){ $wi = trigger ( $J [ " trigger_name " ], $Q ); $I [ $wi [ " Trigger " ]] = array ( $wi [ " Timing " ], $wi [ " Event " ]);} return $I ;} function
trigger_options (){ return
array ( " Timing " => array ( " BEFORE " , " AFTER " ), " Event " => array ( " INSERT " , " UPDATE " , " UPDATE OF " , " DELETE " , " INSERT OR UPDATE " , " INSERT OR UPDATE OF " , " DELETE OR INSERT " , " DELETE OR UPDATE " , " DELETE OR UPDATE OF " , " DELETE OR INSERT OR UPDATE " , " DELETE OR INSERT OR UPDATE OF " ), " Type " => array ( " FOR EACH ROW " , " FOR EACH STATEMENT " ),);} function
routine ( $D , $T ){ $K = get_rows ( ' SELECT routine_definition AS definition , LOWER ( external_language ) AS language , *
FROM information_schema . routines
WHERE routine_schema = current_schema () AND specific_name = '.q($D));$I=$K[0];$I["returns"]=array("type"=>$I["type_udt_name"]);$I["fields"]=get_rows(' SELECT parameter_name AS field , data_type AS type , character_maximum_length AS length , parameter_mode AS inout
FROM information_schema . parameters
WHERE specific_schema = current_schema () AND specific_name = '.q($D).'
ORDER BY ordinal_position ' ); return $I ;} function
routines (){ return
get_rows ( ' SELECT specific_name AS " SPECIFIC_NAME " , routine_type AS " ROUTINE_TYPE " , routine_name AS " ROUTINE_NAME " , type_udt_name AS " DTD_IDENTIFIER "
FROM information_schema . routines
WHERE routine_schema = current_schema ()
ORDER BY SPECIFIC_NAME ' );} function
routine_languages (){ return
get_vals ( " SELECT LOWER(lanname) FROM pg_catalog.pg_language " );} function
routine_id ( $D , $J ){ $I = array (); foreach ( $J [ " fields " ] as $o ) $I [] = $o [ " type " ]; return
idf_escape ( $D ) . " ( " . implode ( " , " , $I ) . " ) " ;} function
last_id (){ return
0 ;} function
explain ( $g , $G ){ return $g -> query ( " EXPLAIN $G " );} function
found_rows ( $R , $Z ){ global $g ; if ( preg_match ( " ~ rows=([0-9]+)~ " , $g -> result ( " EXPLAIN SELECT * FROM " . idf_escape ( $R [ " Name " ]) . ( $Z ? " WHERE " . implode ( " AND " , $Z ) : " " )), $Gg )) return $Gg [ 1 ]; return
false ;} function
types (){ return
get_vals ( " SELECT typname
FROM pg_type
WHERE typnamespace = ( SELECT oid FROM pg_namespace WHERE nspname = current_schema ())
AND typtype IN ( 'b' , 'd' , 'e' )
AND typelem = 0 " );}function
schemas (){ return
get_vals ( " SELECT nspname FROM pg_namespace ORDER BY nspname " );} function
get_schema (){ global $g ; return $g -> result ( " SELECT current_schema() " );} function
set_schema ( $Zg , $h = null ){ global $g , $U , $Gh ; if ( ! $h ) $h = $g ; $I = $h -> query ( " SET search_path TO " . idf_escape ( $Zg )); foreach ( types () as $T ){ if ( ! isset ( $U [ $T ])){ $U [ $T ] = 0 ; $Gh [ 'User types' ][] = $T ;}} return $I ;} function
foreign_keys_sql ( $Q ){ $I = " " ; $O = table_status ( $Q ); $cd = foreign_keys ( $Q ); ksort ( $cd ); foreach ( $cd
as $bd => $ad ) $I .= " ALTER TABLE ONLY " . idf_escape ( $O [ 'nspname' ]) . " . " . idf_escape ( $O [ 'Name' ]) . " ADD CONSTRAINT " . idf_escape ( $bd ) . " $ad[definition] " . ( $ad [ 'deferrable' ] ? 'DEFERRABLE' : 'NOT DEFERRABLE' ) . " ; \n " ; return ( $I ? " $I\n " : $I );} function
create_sql ( $Q , $Ka , $Hh ){ global $g ; $I = '' ; $Pg = array (); $jh = array (); $O = table_status ( $Q ); if ( is_view ( $O )){ $Xi = view ( $Q ); return
rtrim ( " CREATE VIEW " . idf_escape ( $Q ) . " AS $Xi[select] " , " ; " );} $p = fields ( $Q ); $x = indexes ( $Q ); ksort ( $x ); $Ab = constraints ( $Q ); if ( ! $O || empty ( $p )) return
false ; $I = " CREATE TABLE " . idf_escape ( $O [ 'nspname' ]) . " . " . idf_escape ( $O [ 'Name' ]) . " ( \n " ; foreach ( $p
as $Vc => $o ){ $Qf = idf_escape ( $o [ 'field' ]) . ' ' . $o [ 'full_type' ] . default_value ( $o ) . ( $o [ 'attnotnull' ] ? " NOT NULL " : " " ); $Pg [] = $Qf ; if ( preg_match ( '~nextval\(\'([^\']+)\'\)~' , $o [ 'default' ], $Ce )){ $ih = $Ce [ 1 ]; $xh = reset ( get_rows ( min_version ( 10 ) ? " SELECT *, cache_size AS cache_value FROM pg_sequences WHERE schemaname = current_schema() AND sequencename = " . q ( $ih ) : " SELECT * FROM $ih " )); $jh [] = ( $Hh == " DROP+CREATE " ? " DROP SEQUENCE IF EXISTS $ih ; \n " : " " ) . " CREATE SEQUENCE $ih INCREMENT $xh[increment_by] MINVALUE $xh[min_value] MAXVALUE $xh[max_value] " . ( $Ka && $xh [ 'last_value' ] ? " START $xh[last_value] " : " " ) . " CACHE $xh[cache_value] ; " ;}} if ( ! empty ( $jh )) $I = implode ( " \n \n " , $jh ) . " \n \n $I " ; foreach ( $x
as $Kd => $w ){ switch ( $w [ 'type' ]){ case 'UNIQUE' : $Pg [] = " CONSTRAINT " . idf_escape ( $Kd ) . " UNIQUE ( " . implode ( ', ' , array_map ( 'idf_escape' , $w [ 'columns' ])) . " ) " ; break ; case 'PRIMARY' : $Pg [] = " CONSTRAINT " . idf_escape ( $Kd ) . " PRIMARY KEY ( " . implode ( ', ' , array_map ( 'idf_escape' , $w [ 'columns' ])) . " ) " ; break ;}} foreach ( $Ab
as $xb => $zb ) $Pg [] = " CONSTRAINT " . idf_escape ( $xb ) . " CHECK $zb " ; $I .= implode ( " , \n " , $Pg ) . " \n ) WITH (oids = " . ( $O [ 'Oid' ] ? 'true' : 'false' ) . " ); " ; foreach ( $x
as $Kd => $w ){ if ( $w [ 'type' ] == 'INDEX' ){ $f = array (); foreach ( $w [ 'columns' ] as $z => $X ) $f [] = idf_escape ( $X ) . ( $w [ 'descs' ][ $z ] ? " DESC " : " " ); $I .= " \n \n CREATE INDEX " . idf_escape ( $Kd ) . " ON " . idf_escape ( $O [ 'nspname' ]) . " . " . idf_escape ( $O [ 'Name' ]) . " USING btree ( " . implode ( ', ' , $f ) . " ); " ;}} if ( $O [ 'Comment' ]) $I .= " \n \n COMMENT ON TABLE " . idf_escape ( $O [ 'nspname' ]) . " . " . idf_escape ( $O [ 'Name' ]) . " IS " . q ( $O [ 'Comment' ]) . " ; " ; foreach ( $p
as $Vc => $o ){ if ( $o [ 'comment' ]) $I .= " \n \n COMMENT ON COLUMN " . idf_escape ( $O [ 'nspname' ]) . " . " . idf_escape ( $O [ 'Name' ]) . " . " . idf_escape ( $Vc ) . " IS " . q ( $o [ 'comment' ]) . " ; " ;} return
rtrim ( $I , ';' );} function
truncate_sql ( $Q ){ return " TRUNCATE " . table ( $Q );} function
trigger_sql ( $Q ){ $O = table_status ( $Q ); $I = " " ; foreach ( triggers ( $Q ) as $vi => $ui ){ $wi = trigger ( $vi , $O [ 'Name' ]); $I .= " \n CREATE TRIGGER " . idf_escape ( $wi [ 'Trigger' ]) . " $wi[Timing] $wi[Event] ON " . idf_escape ( $O [ " nspname " ]) . " . " . idf_escape ( $O [ 'Name' ]) . " $wi[Type] $wi[Statement] ;; \n " ;} return $I ;} function
use_sql ( $j ){ return " \ connect " . idf_escape ( $j );} function
show_variables (){ return
get_key_vals ( " SHOW ALL " );} function
process_list (){ return
get_rows ( " SELECT * FROM pg_stat_activity ORDER BY " . ( min_version ( 9.2 ) ? " pid " : " procpid " ));} function
show_status (){} function
convert_field ( $o ){} function
unconvert_field ( $o , $I ){ return $I ;} function
support ( $Tc ){ return
preg_match ( '~^(database|table|columns|sql|indexes|descidx|comment|view|' . ( min_version ( 9.3 ) ? 'materializedview|' : '' ) . 'scheme|routine|processlist|sequence|trigger|type|variables|drop_col|kill|dump)$~' , $Tc );} function
kill_process ( $X ){ return
queries ( " SELECT pg_terminate_backend( " . number ( $X ) . " ) " );} function
connection_id (){ return " SELECT pg_backend_pid() " ;} function
max_connections (){ global $g ; return $g -> result ( " SHOW max_connections " );} function
driver_config (){ $U = array (); $Gh = array (); foreach ( array ( 'Numbers' => array ( " smallint " => 5 , " integer " => 10 , " bigint " => 19 , " boolean " => 1 , " numeric " => 0 , " real " => 7 , " double precision " => 16 , " money " => 20 ), 'Date and time' => array ( " date " => 13 , " time " => 17 , " timestamp " => 20 , " timestamptz " => 21 , " interval " => 0 ), 'Strings' => array ( " character " => 0 , " character varying " => 0 , " text " => 0 , " tsquery " => 0 , " tsvector " => 0 , " uuid " => 0 , " xml " => 0 ), 'Binary' => array ( " bit " => 0 , " bit varying " => 0 , " bytea " => 0 ), 'Network' => array ( " cidr " => 43 , " inet " => 43 , " macaddr " => 17 , " txid_snapshot " => 0 ), 'Geometry' => array ( " box " => 0 , " circle " => 0 , " line " => 0 , " lseg " => 0 , " path " => 0 , " point " => 0 , " polygon " => 0 ),) as $z => $X ){ $U += $X ; $Gh [ $z ] = array_keys ( $X );} return
array ( 'possible_drivers' => array ( " PgSQL " , " PDO_PgSQL " ), 'jush' => " pgsql " , 'types' => $U , 'structured_types' => $Gh , 'unsigned' => array (), 'operators' => array ( " = " , " < " , " > " , " <= " , " >= " , " != " , " ~ " , " !~ " , " LIKE " , " LIKE %% " , " ILIKE " , " ILIKE %% " , " IN " , " IS NULL " , " NOT LIKE " , " NOT IN " , " IS NOT NULL " ), 'functions' => array ( " char_length " , " lower " , " round " , " to_hex " , " to_timestamp " , " upper " ), 'grouping' => array ( " avg " , " count " , " count distinct " , " max " , " min " , " sum " ), 'edit_functions' => array ( array ( " char " => " md5 " , " date|time " => " now " ,), array ( number_type () => " +/- " , " date|time " => " + interval/- interval " , " char|text " => " || " ,)),);}} $ic [ " oracle " ] = " Oracle (beta) " ; if ( isset ( $_GET [ " oracle " ])){ define ( " DRIVER " , " oracle " ); if ( extension_loaded ( " oci8 " )){ class
Min_DB { var $extension = " oci8 " , $_link , $_result , $server_info , $affected_rows , $errno , $error ; var $_current_db ; function
_error ( $Ac , $n ){ if ( ini_bool ( " html_errors " )) $n = html_entity_decode ( strip_tags ( $n )); $n = preg_replace ( '~^[^:]*: ~' , '' , $n ); $this -> error = $n ;} function
connect ( $M , $V , $F ){ $this -> _link =@ oci_new_connect ( $V , $F , $M , " AL32UTF8 " ); if ( $this -> _link ){ $this -> server_info = oci_server_version ( $this -> _link ); return
true ;} $n = oci_error (); $this -> error = $n [ " message " ]; return
false ;} function
quote ( $P ){ return " ' " . str_replace ( " ' " , " '' " , $P ) . " ' " ;} function
select_db ( $j ){ $this -> _current_db = $j ; return
true ;} function
query ( $G , $Bi = false ){ $H = oci_parse ( $this -> _link , $G ); $this -> error = " " ; if ( ! $H ){ $n = oci_error ( $this -> _link ); $this -> errno = $n [ " code " ]; $this -> error = $n [ " message " ]; return
false ;} set_error_handler ( array ( $this , '_error' )); $I =@ oci_execute ( $H ); restore_error_handler (); if ( $I ){ if ( oci_num_fields ( $H )) return
new
Min_Result ( $H ); $this -> affected_rows = oci_num_rows ( $H ); oci_free_statement ( $H );} return $I ;} function
multi_query ( $G ){ return $this -> _result = $this -> query ( $G );} function
store_result (){ return $this -> _result ;} function
next_result (){ return
false ;} function
result ( $G , $o = 1 ){ $H = $this -> query ( $G ); if ( ! is_object ( $H ) ||! oci_fetch ( $H -> _result )) return
false ; return
oci_result ( $H -> _result , $o );}} class
Min_Result { var $_result , $_offset = 1 , $num_rows ; function
__construct ( $H ){ $this -> _result = $H ;} function
_convert ( $J ){ foreach (( array ) $J
as $z => $X ){ if ( is_a ( $X , 'OCI-Lob' )) $J [ $z ] = $X -> load ();} return $J ;} function
fetch_assoc (){ return $this -> _convert ( oci_fetch_assoc ( $this -> _result ));} function
fetch_row (){ return $this -> _convert ( oci_fetch_row ( $this -> _result ));} function
fetch_field (){ $e = $this -> _offset ++ ; $I = new
stdClass ; $I -> name = oci_field_name ( $this -> _result , $e ); $I -> orgname = $I -> name ; $I -> type = oci_field_type ( $this -> _result , $e ); $I -> charsetnr = ( preg_match ( " ~raw|blob|bfile~ " , $I -> type ) ? 63 : 0 ); return $I ;} function
__destruct (){ oci_free_statement ( $this -> _result );}}} elseif ( extension_loaded ( " pdo_oci " )){ class
Min_DB
extends
Min_PDO { var $extension = " PDO_OCI " ; var $_current_db ; function
connect ( $M , $V , $F ){ $this -> dsn ( " oci:dbname=// $M ;charset=AL32UTF8 " , $V , $F ); return
true ;} function
select_db ( $j ){ $this -> _current_db = $j ; return
true ;}}} class
Min_Driver
extends
Min_SQL { function
begin (){ return
true ;} function
insertUpdate ( $Q , $K , $kg ){ global $g ; foreach ( $K
as $N ){ $Ii = array (); $Z = array (); foreach ( $N
as $z => $X ){ $Ii [] = " $z = $X " ; if ( isset ( $kg [ idf_unescape ( $z )])) $Z [] = " $z = $X " ;} if ( ! (( $Z && queries ( " UPDATE " . table ( $Q ) . " SET " . implode ( " , " , $Ii ) . " WHERE " . implode ( " AND " , $Z )) && $g -> affected_rows ) || queries ( " INSERT INTO " . table ( $Q ) . " ( " . implode ( " , " , array_keys ( $N )) . " ) VALUES ( " . implode ( " , " , $N ) . " ) " ))) return
false ;} return
true ;}} function
idf_escape ( $v ){ return '"' . str_replace ( '"' , '""' , $v ) . '"' ;} function
table ( $v ){ return
idf_escape ( $v );} function
connect (){ global $b ; $g = new
Min_DB ; $Kb = $b -> credentials (); if ( $g -> connect ( $Kb [ 0 ], $Kb [ 1 ], $Kb [ 2 ])) return $g ; return $g -> error ;} function
get_databases (){ return
get_vals ( " SELECT tablespace_name FROM user_tablespaces ORDER BY 1 " );} function
limit ( $G , $Z , $_ , $hf = 0 , $hh = " " ){ return ( $hf ? " * FROM (SELECT t.*, rownum AS rnum FROM (SELECT $G $Z ) t WHERE rownum <= " . ( $_ + $hf ) . " ) WHERE rnum > $hf " : ( $_ !== null ? " * FROM (SELECT $G $Z ) WHERE rownum <= " . ( $_ + $hf ) : " $G $Z " ));} function
limit1 ( $Q , $G , $Z , $hh = " \n " ){ return " $G $Z " ;} function
db_collation ( $l , $lb ){ global $g ; return $g -> result ( " SELECT value FROM nls_database_parameters WHERE parameter = 'NLS_CHARACTERSET' " );} function
engines (){ return
array ();} function
logged_user (){ global $g ; return $g -> result ( " SELECT USER FROM DUAL " );} function
get_current_db (){ global $g ; $l = $g -> _current_db ? $g -> _current_db : DB ; unset ( $g -> _current_db ); return $l ;} function
where_owner ( $ig , $Kf = " owner " ){ if ( ! $_GET [ " ns " ]) return '' ; return " $ig $Kf = sys_context('USERENV', 'CURRENT_SCHEMA') " ;} function
views_table ( $f ){ $Kf = where_owner ( '' ); return " (SELECT $f FROM all_views WHERE " . ( $Kf ? $Kf : " rownum < 0 " ) . " ) " ;} function
tables_list (){ $Xi = views_table ( " view_name " ); $Kf = where_owner ( " AND " ); return
get_key_vals ( " SELECT table_name, 'table' FROM all_tables WHERE tablespace_name = " . q ( DB ) . " $Kf
UNION SELECT view_name , 'view' FROM $Xi
ORDER BY 1 " );}function
count_tables ( $k ){ global $g ; $I = array (); foreach ( $k
as $l ) $I [ $l ] = $g -> result ( " SELECT COUNT(*) FROM all_tables WHERE tablespace_name = " . q ( $l )); return $I ;} function
table_status ( $D = " " ){ $I = array (); $bh = q ( $D ); $l = get_current_db (); $Xi = views_table ( " view_name " ); $Kf = where_owner ( " AND " ); foreach ( get_rows ( 'SELECT table_name "Name", \'table\' "Engine", avg_row_len * num_rows "Data_length", num_rows "Rows" FROM all_tables WHERE tablespace_name = ' . q ( $l ) . $Kf . ( $D != " " ? " AND table_name = $bh " : " " ) . "
UNION SELECT view_name , 'view' , 0 , 0 FROM $Xi " .( $D != " " ? " WHERE view_name = $bh " : " " ). "
ORDER BY 1 " )as $J ) { if( $D != " " )return $J ; $I[$J["Name"] ]= $J ;}return $I ;}function
is_view ( $R ){ return $R [ " Engine " ] == " view " ;} function
fk_support ( $R ){ return
true ;} function
fields ( $Q ){ $I = array (); $Kf = where_owner ( " AND " ); foreach ( get_rows ( " SELECT * FROM all_tab_columns WHERE table_name = " . q ( $Q ) . " $Kf ORDER BY column_id " ) as $J ){ $T = $J [ " DATA_TYPE " ]; $te = " $J[DATA_PRECISION] , $J[DATA_SCALE] " ; if ( $te == " , " ) $te = $J [ " CHAR_COL_DECL_LENGTH " ]; $I [ $J [ " COLUMN_NAME " ]] = array ( " field " => $J [ " COLUMN_NAME " ], " full_type " => $T . ( $te ? " ( $te ) " : " " ), " type " => strtolower ( $T ), " length " => $te , " default " => $J [ " DATA_DEFAULT " ], " null " => ( $J [ " NULLABLE " ] == " Y " ), " privileges " => array ( " insert " => 1 , " select " => 1 , " update " => 1 ),);} return $I ;} function
indexes ( $Q , $h = null ){ $I = array (); $Kf = where_owner ( " AND " , " aic.table_owner " ); foreach ( get_rows ( " SELECT aic.*, ac.constraint_type, atc.data_default
FROM all_ind_columns aic
LEFT JOIN all_constraints ac ON aic . index_name = ac . constraint_name AND aic . table_name = ac . table_name AND aic . index_owner = ac . owner
LEFT JOIN all_tab_cols atc ON aic . column_name = atc . column_name AND aic . table_name = atc . table_name AND aic . index_owner = atc . owner
WHERE aic . table_name = " .q( $Q ). " $Kf
ORDER BY ac . constraint_type , aic . column_position " , $h )as $J ) { $Kd = $J [ " INDEX_NAME " ]; $ob = $J [ " DATA_DEFAULT " ]; $ob = ( $ob ? trim ( $ob , '"' ) : $J [ " COLUMN_NAME " ]); $I [ $Kd ][ " type " ] = ( $J [ " CONSTRAINT_TYPE " ] == " P " ? " PRIMARY " : ( $J [ " CONSTRAINT_TYPE " ] == " U " ? " UNIQUE " : " INDEX " )); $I [ $Kd ][ " columns " ][] = $ob ; $I [ $Kd ][ " lengths " ][] = ( $J [ " CHAR_LENGTH " ] && $J [ " CHAR_LENGTH " ] != $J [ " COLUMN_LENGTH " ] ? $J [ " CHAR_LENGTH " ] : null ); $I [ $Kd ][ " descs " ][] = ( $J [ " DESCEND " ] && $J [ " DESCEND " ] == " DESC " ? '1' : null ); } return $I ;}function
view ( $D ){ $Xi = views_table ( " view_name, text " ); $K = get_rows ( 'SELECT text "select" FROM ' . $Xi . ' WHERE view_name = ' . q ( $D )); return
reset ( $K );} function
collations (){ return
array ();} function
information_schema ( $l ){ return
false ;} function
error (){ global $g ; return
h ( $g -> error );} function
explain ( $g , $G ){ $g -> query ( " EXPLAIN PLAN FOR $G " ); return $g -> query ( " SELECT * FROM plan_table " );} function
found_rows ( $R , $Z ){} function
auto_increment (){ return " " ;} function
alter_table ( $Q , $D , $p , $fd , $rb , $yc , $d , $Ka , $Tf ){ $c = $jc = array (); $Ef = ( $Q ? fields ( $Q ) : array ()); foreach ( $p
as $o ){ $X = $o [ 1 ]; if ( $X && $o [ 0 ] != " " && idf_escape ( $o [ 0 ]) != $X [ 0 ]) queries ( " ALTER TABLE " . table ( $Q ) . " RENAME COLUMN " . idf_escape ( $o [ 0 ]) . " TO $X[0] " ); $Df = $Ef [ $o [ 0 ]]; if ( $X && $Df ){ $jf = process_field ( $Df , $Df ); if ( $X [ 2 ] == $jf [ 2 ]) $X [ 2 ] = " " ;} if ( $X ) $c [] = ( $Q != " " ? ( $o [ 0 ] != " " ? " MODIFY ( " : " ADD ( " ) : " " ) . implode ( $X ) . ( $Q != " " ? " ) " : " " ); else $jc [] = idf_escape ( $o [ 0 ]);} if ( $Q == " " ) return
queries ( " CREATE TABLE " . table ( $D ) . " ( \n " . implode ( " , \n " , $c ) . " \n ) " ); return ( ! $c || queries ( " ALTER TABLE " . table ( $Q ) . " \n " . implode ( " \n " , $c ))) && ( ! $jc || queries ( " ALTER TABLE " . table ( $Q ) . " DROP ( " . implode ( " , " , $jc ) . " ) " )) && ( $Q == $D || queries ( " ALTER TABLE " . table ( $Q ) . " RENAME TO " . table ( $D )));} function
alter_indexes ( $Q , $c ){ $jc = array (); $vg = array (); foreach ( $c
as $X ){ if ( $X [ 0 ] != " INDEX " ){ $X [ 2 ] = preg_replace ( '~ DESC$~' , '' , $X [ 2 ]); $i = ( $X [ 2 ] == " DROP " ? " \n DROP CONSTRAINT " . idf_escape ( $X [ 1 ]) : " \n ADD " . ( $X [ 1 ] != " " ? " CONSTRAINT " . idf_escape ( $X [ 1 ]) : " " ) . " $X[0] " . ( $X [ 0 ] == " PRIMARY " ? " KEY " : " " ) . " ( " . implode ( " , " , $X [ 2 ]) . " ) " ); array_unshift ( $vg , " ALTER TABLE " . table ( $Q ) . $i );} elseif ( $X [ 2 ] == " DROP " ) $jc [] = idf_escape ( $X [ 1 ]); else $vg [] = " CREATE INDEX " . idf_escape ( $X [ 1 ] != " " ? $X [ 1 ] : uniqid ( $Q . " _ " )) . " ON " . table ( $Q ) . " ( " . implode ( " , " , $X [ 2 ]) . " ) " ;} if ( $jc ) array_unshift ( $vg , " DROP INDEX " . implode ( " , " , $jc )); foreach ( $vg
as $G ){ if ( ! queries ( $G )) return
false ;} return
true ;} function
foreign_keys ( $Q ){ $I = array (); $G = " SELECT c_list.CONSTRAINT_NAME as NAME,
c_src . COLUMN_NAME as SRC_COLUMN ,
c_dest . OWNER as DEST_DB ,
c_dest . TABLE_NAME as DEST_TABLE ,
c_dest . COLUMN_NAME as DEST_COLUMN ,
c_list . DELETE_RULE as ON_DELETE
FROM ALL_CONSTRAINTS c_list , ALL_CONS_COLUMNS c_src , ALL_CONS_COLUMNS c_dest
WHERE c_list . CONSTRAINT_NAME = c_src . CONSTRAINT_NAME
AND c_list . R_CONSTRAINT_NAME = c_dest . CONSTRAINT_NAME
AND c_list . CONSTRAINT_TYPE = 'R'
AND c_src . TABLE_NAME = " .q( $Q );foreach(get_rows( $G )as $J ) $I[$J['NAME'] ]=array( " db " => $J['DEST_DB'] , " table " => $J['DEST_TABLE'] , " source " =>array( $J['SRC_COLUMN'] ), " target " =>array( $J['DEST_COLUMN'] ), " on_delete " => $J['ON_DELETE'] , " on_update " =>null,);return $I ;}function
truncate_tables ( $S ){ return
apply_queries ( " TRUNCATE TABLE " , $S );} function
drop_views ( $Yi ){ return
apply_queries ( " DROP VIEW " , $Yi );} function
drop_tables ( $S ){ return
apply_queries ( " DROP TABLE " , $S );} function
last_id (){ return
0 ;} function
schemas (){ $I = get_vals ( " SELECT DISTINCT owner FROM dba_segments WHERE owner IN (SELECT username FROM dba_users WHERE default_tablespace NOT IN ('SYSTEM','SYSAUX')) ORDER BY 1 " ); return ( $I ? $I : get_vals ( " SELECT DISTINCT owner FROM all_tables WHERE tablespace_name = " . q ( DB ) . " ORDER BY 1 " ));} function
get_schema (){ global $g ; return $g -> result ( " SELECT sys_context('USERENV', 'SESSION_USER') FROM dual " );} function
set_schema ( $ah , $h = null ){ global $g ; if ( ! $h ) $h = $g ; return $h -> query ( " ALTER SESSION SET CURRENT_SCHEMA = " . idf_escape ( $ah ));} function
show_variables (){ return
get_key_vals ( 'SELECT name, display_value FROM v$parameter' );} function
process_list (){ return
get_rows ( ' SELECT sess . process AS " process " , sess . username AS " user " , sess . schemaname AS " schema " , sess . status AS " status " , sess . wait_class AS " wait_class " , sess . seconds_in_wait AS " seconds_in_wait " , sql . sql_text AS " sql_text " , sess . machine AS " machine " , sess . port AS " port "
FROM v $session sess LEFT OUTER JOIN v $sql sql
ON sql . sql_id = sess . sql_id
WHERE sess . type = \ ' USER\ '
ORDER BY PROCESS
' );} function
show_status (){ $K = get_rows ( 'SELECT * FROM v$instance' ); return
reset ( $K );} function
convert_field ( $o ){} function
unconvert_field ( $o , $I ){ return $I ;} function
support ( $Tc ){ return
preg_match ( '~^(columns|database|drop_col|indexes|descidx|processlist|scheme|sql|status|table|variables|view)$~' , $Tc );} function
driver_config (){ $U = array (); $Gh = array (); foreach ( array ( 'Numbers' => array ( " number " => 38 , " binary_float " => 12 , " binary_double " => 21 ), 'Date and time' => array ( " date " => 10 , " timestamp " => 29 , " interval year " => 12 , " interval day " => 28 ), 'Strings' => array ( " char " => 2000 , " varchar2 " => 4000 , " nchar " => 2000 , " nvarchar2 " => 4000 , " clob " => 4294967295 , " nclob " => 4294967295 ), 'Binary' => array ( " raw " => 2000 , " long raw " => 2147483648 , " blob " => 4294967295 , " bfile " => 4294967296 ),) as $z => $X ){ $U += $X ; $Gh [ $z ] = array_keys ( $X );} return
array ( 'possible_drivers' => array ( " OCI8 " , " PDO_OCI " ), 'jush' => " oracle " , 'types' => $U , 'structured_types' => $Gh , 'unsigned' => array (), 'operators' => array ( " = " , " < " , " > " , " <= " , " >= " , " != " , " LIKE " , " LIKE %% " , " IN " , " IS NULL " , " NOT LIKE " , " NOT REGEXP " , " NOT IN " , " IS NOT NULL " , " SQL " ), 'functions' => array ( " length " , " lower " , " round " , " upper " ), 'grouping' => array ( " avg " , " count " , " count distinct " , " max " , " min " , " sum " ), 'edit_functions' => array ( array ( " date " => " current_date " , " timestamp " => " current_timestamp " ,), array ( " number|float|double " => " +/- " , " date|timestamp " => " + interval/- interval " , " char|clob " => " || " ,)),);}} $ic [ " mssql " ] = " MS SQL (beta) " ; if ( isset ( $_GET [ " mssql " ])){ define ( " DRIVER " , " mssql " ); if ( extension_loaded ( " sqlsrv " )){ class
Min_DB { var $extension = " sqlsrv " , $_link , $_result , $server_info , $affected_rows , $errno , $error ; function
_get_error (){ $this -> error = " " ; foreach ( sqlsrv_errors () as $n ){ $this -> errno = $n [ " code " ]; $this -> error .= " $n[message] \n " ;} $this -> error = rtrim ( $this -> error );} function
connect ( $M , $V , $F ){ global $b ; $l = $b -> database (); $yb = array ( " UID " => $V , " PWD " => $F , " CharacterSet " => " UTF-8 " ); if ( $l != " " ) $yb [ " Database " ] = $l ; $this -> _link =@ sqlsrv_connect ( preg_replace ( '~:~' , ',' , $M ), $yb ); if ( $this -> _link ){ $Rd = sqlsrv_server_info ( $this -> _link ); $this -> server_info = $Rd [ 'SQLServerVersion' ];} else $this -> _get_error (); return ( bool ) $this -> _link ;} function
quote ( $P ){ return " ' " . str_replace ( " ' " , " '' " , $P ) . " ' " ;} function
select_db ( $j ){ return $this -> query ( " USE " . idf_escape ( $j ));} function
query ( $G , $Bi = false ){ $H = sqlsrv_query ( $this -> _link , $G ); $this -> error = " " ; if ( ! $H ){ $this -> _get_error (); return
false ;} return $this -> store_result ( $H );} function
multi_query ( $G ){ $this -> _result = sqlsrv_query ( $this -> _link , $G ); $this -> error = " " ; if ( ! $this -> _result ){ $this -> _get_error (); return
false ;} return
true ;} function
store_result ( $H = null ){ if ( ! $H ) $H = $this -> _result ; if ( ! $H ) return
false ; if ( sqlsrv_field_metadata ( $H )) return
new
Min_Result ( $H ); $this -> affected_rows = sqlsrv_rows_affected ( $H ); return
true ;} function
next_result (){ return $this -> _result ? sqlsrv_next_result ( $this -> _result ) : null ;} function
result ( $G , $o = 0 ){ $H = $this -> query ( $G ); if ( ! is_object ( $H )) return
false ; $J = $H -> fetch_row (); return $J [ $o ];}} class
Min_Result { var $_result , $_offset = 0 , $_fields , $num_rows ; function
__construct ( $H ){ $this -> _result = $H ;} function
_convert ( $J ){ foreach (( array ) $J
as $z => $X ){ if ( is_a ( $X , 'DateTime' )) $J [ $z ] = $X -> format ( " Y-m-d H:i:s " );} return $J ;} function
fetch_assoc (){ return $this -> _convert ( sqlsrv_fetch_array ( $this -> _result , SQLSRV_FETCH_ASSOC ));} function
fetch_row (){ return $this -> _convert ( sqlsrv_fetch_array ( $this -> _result , SQLSRV_FETCH_NUMERIC ));} function
fetch_field (){ if ( ! $this -> _fields ) $this -> _fields = sqlsrv_field_metadata ( $this -> _result ); $o = $this -> _fields [ $this -> _offset ++ ]; $I = new
stdClass ; $I -> name = $o [ " Name " ]; $I -> orgname = $o [ " Name " ]; $I -> type = ( $o [ " Type " ] == 1 ? 254 : 0 ); return $I ;} function
seek ( $hf ){ for ( $t = 0 ; $t < $hf ; $t ++ ) sqlsrv_fetch ( $this -> _result );} function
__destruct (){ sqlsrv_free_stmt ( $this -> _result );}}} elseif ( extension_loaded ( " mssql " )){ class
Min_DB { var $extension = " MSSQL " , $_link , $_result , $server_info , $affected_rows , $error ; function
connect ( $M , $V , $F ){ $this -> _link =@ mssql_connect ( $M , $V , $F ); if ( $this -> _link ){ $H = $this -> query ( " SELECT SERVERPROPERTY('ProductLevel'), SERVERPROPERTY('Edition') " ); if ( $H ){ $J = $H -> fetch_row (); $this -> server_info = $this -> result ( " sp_server_info 2 " , 2 ) . " [ $J[0] ] $J[1] " ;}} else $this -> error = mssql_get_last_message (); return ( bool ) $this -> _link ;} function
quote ( $P ){ return " ' " . str_replace ( " ' " , " '' " , $P ) . " ' " ;} function
select_db ( $j ){ return
mssql_select_db ( $j );} function
query ( $G , $Bi = false ){ $H =@ mssql_query ( $G , $this -> _link ); $this -> error = " " ; if ( ! $H ){ $this -> error = mssql_get_last_message (); return
false ;} if ( $H === true ){ $this -> affected_rows = mssql_rows_affected ( $this -> _link ); return
true ;} return
new
Min_Result ( $H );} function
multi_query ( $G ){ return $this -> _result = $this -> query ( $G );} function
store_result (){ return $this -> _result ;} function
next_result (){ return
mssql_next_result ( $this -> _result -> _result );} function
result ( $G , $o = 0 ){ $H = $this -> query ( $G ); if ( ! is_object ( $H )) return
false ; return
mssql_result ( $H -> _result , 0 , $o );}} class
Min_Result { var $_result , $_offset = 0 , $_fields , $num_rows ; function
__construct ( $H ){ $this -> _result = $H ; $this -> num_rows = mssql_num_rows ( $H );} function
fetch_assoc (){ return
mssql_fetch_assoc ( $this -> _result );} function
fetch_row (){ return
mssql_fetch_row ( $this -> _result );} function
num_rows (){ return
mssql_num_rows ( $this -> _result );} function
fetch_field (){ $I = mssql_fetch_field ( $this -> _result ); $I -> orgtable = $I -> table ; $I -> orgname = $I -> name ; return $I ;} function
seek ( $hf ){ mssql_data_seek ( $this -> _result , $hf );} function
__destruct (){ mssql_free_result ( $this -> _result );}}} elseif ( extension_loaded ( " pdo_dblib " )){ class
Min_DB
extends
Min_PDO { var $extension = " PDO_DBLIB " ; function
connect ( $M , $V , $F ){ $this -> dsn ( " dblib:charset=utf8;host= " . str_replace ( " : " , " ;unix_socket= " , preg_replace ( '~:(\d)~' , ';port=\1' , $M )), $V , $F ); return
true ;} function
select_db ( $j ){ return $this -> query ( " USE " . idf_escape ( $j ));}}} class
Min_Driver
extends
Min_SQL { function
insertUpdate ( $Q , $K , $kg ){ foreach ( $K
as $N ){ $Ii = array (); $Z = array (); foreach ( $N
as $z => $X ){ $Ii [] = " $z = $X " ; if ( isset ( $kg [ idf_unescape ( $z )])) $Z [] = " $z = $X " ;} if ( ! queries ( " MERGE " . table ( $Q ) . " USING (VALUES( " . implode ( " , " , $N ) . " )) AS source (c " . implode ( " , c " , range ( 1 , count ( $N ))) . " ) ON " . implode ( " AND " , $Z ) . " WHEN MATCHED THEN UPDATE SET " . implode ( " , " , $Ii ) . " WHEN NOT MATCHED THEN INSERT ( " . implode ( " , " , array_keys ( $N )) . " ) VALUES ( " . implode ( " , " , $N ) . " ); " )) return
false ;} return
true ;} function
begin (){ return
queries ( " BEGIN TRANSACTION " );}} function
idf_escape ( $v ){ return " [ " . str_replace ( " ] " , " ]] " , $v ) . " ] " ;} function
table ( $v ){ return ( $_GET [ " ns " ] != " " ? idf_escape ( $_GET [ " ns " ]) . " . " : " " ) . idf_escape ( $v );} function
connect (){ global $b ; $g = new
Min_DB ; $Kb = $b -> credentials (); if ( $g -> connect ( $Kb [ 0 ], $Kb [ 1 ], $Kb [ 2 ])) return $g ; return $g -> error ;} function
get_databases (){ return
get_vals ( " SELECT name FROM sys.databases WHERE name NOT IN ('master', 'tempdb', 'model', 'msdb') " );} function
limit ( $G , $Z , $_ , $hf = 0 , $hh = " " ){ return ( $_ !== null ? " TOP ( " . ( $_ + $hf ) . " ) " : " " ) . " $G $Z " ;} function
limit1 ( $Q , $G , $Z , $hh = " \n " ){ return
limit ( $G , $Z , 1 , 0 , $hh );} function
db_collation ( $l , $lb ){ global $g ; return $g -> result ( " SELECT collation_name FROM sys.databases WHERE name = " . q ( $l ));} function
engines (){ return
array ();} function
logged_user (){ global $g ; return $g -> result ( " SELECT SUSER_NAME() " );} function
tables_list (){ return
get_key_vals ( " SELECT name, type_desc FROM sys.all_objects WHERE schema_id = SCHEMA_ID( " . q ( get_schema ()) . " ) AND type IN ('S', 'U', 'V') ORDER BY name " );} function
count_tables ( $k ){ global $g ; $I = array (); foreach ( $k
as $l ){ $g -> select_db ( $l ); $I [ $l ] = $g -> result ( " SELECT COUNT(*) FROM INFORMATION_SCHEMA.TABLES " );} return $I ;} function
table_status ( $D = " " ){ $I = array (); foreach ( get_rows ( " SELECT ao.name AS Name, ao.type_desc AS Engine, (SELECT value FROM fn_listextendedproperty(default, 'SCHEMA', schema_name(schema_id), 'TABLE', ao.name, null, null)) AS Comment FROM sys.all_objects AS ao WHERE schema_id = SCHEMA_ID( " . q ( get_schema ()) . " ) AND type IN ('S', 'U', 'V') " . ( $D != " " ? " AND name = " . q ( $D ) : " ORDER BY name " )) as $J ){ if ( $D != " " ) return $J ; $I [ $J [ " Name " ]] = $J ;} return $I ;} function
is_view ( $R ){ return $R [ " Engine " ] == " VIEW " ;} function
fk_support ( $R ){ return
true ;} function
fields ( $Q ){ $tb = get_key_vals ( " SELECT objname, cast(value as varchar(max)) FROM fn_listextendedproperty('MS_DESCRIPTION', 'schema', " . q ( get_schema ()) . " , 'table', " . q ( $Q ) . " , 'column', NULL) " ); $I = array (); foreach ( get_rows ( " SELECT c.max_length, c.precision, c.scale, c.name, c.is_nullable, c.is_identity, c.collation_name, t.name type, CAST(d.definition as text) [default]
FROM sys . all_columns c
JOIN sys . all_objects o ON c . object_id = o . object_id
JOIN sys . types t ON c . user_type_id = t . user_type_id
LEFT JOIN sys . default_constraints d ON c . default_object_id = d . parent_column_id
WHERE o . schema_id = SCHEMA_ID ( " .q(get_schema()). " ) AND o . type IN ( 'S' , 'U' , 'V' ) AND o . name = " .q( $Q ))as $J ) { $T = $J [ " type " ]; $te = ( preg_match ( " ~char|binary~ " , $T ) ? $J [ " max_length " ] : ( $T == " decimal " ? " $J[precision] , $J[scale] " : " " )); $I [ $J [ " name " ]] = array ( " field " => $J [ " name " ], " full_type " => $T . ( $te ? " ( $te ) " : " " ), " type " => $T , " length " => $te , " default " => $J [ " default " ], " null " => $J [ " is_nullable " ], " auto_increment " => $J [ " is_identity " ], " collation " => $J [ " collation_name " ], " privileges " => array ( " insert " => 1 , " select " => 1 , " update " => 1 ), " primary " => $J [ " is_identity " ], " comment " => $tb [ $J [ " name " ]],); } return $I ;}function
indexes ( $Q , $h = null ){ $I = array (); foreach ( get_rows ( " SELECT i.name, key_ordinal, is_unique, is_primary_key, c.name AS column_name, is_descending_key
FROM sys . indexes i
INNER JOIN sys . index_columns ic ON i . object_id = ic . object_id AND i . index_id = ic . index_id
INNER JOIN sys . columns c ON ic . object_id = c . object_id AND ic . column_id = c . column_id
WHERE OBJECT_NAME ( i . object_id ) = " .q( $Q ), $h )as $J ) { $D = $J [ " name " ]; $I [ $D ][ " type " ] = ( $J [ " is_primary_key " ] ? " PRIMARY " : ( $J [ " is_unique " ] ? " UNIQUE " : " INDEX " )); $I [ $D ][ " lengths " ] = array (); $I [ $D ][ " columns " ][ $J [ " key_ordinal " ]] = $J [ " column_name " ]; $I [ $D ][ " descs " ][ $J [ " key_ordinal " ]] = ( $J [ " is_descending_key " ] ? '1' : null ); } return $I ;}function
view ( $D ){ global $g ; return
array ( " select " => preg_replace ( '~^(?:[^[]|\[[^]]*])*\s+AS\s+~isU' , '' , $g -> result ( " SELECT VIEW_DEFINITION FROM INFORMATION_SCHEMA.VIEWS WHERE TABLE_SCHEMA = SCHEMA_NAME() AND TABLE_NAME = " . q ( $D ))));} function
collations (){ $I = array (); foreach ( get_vals ( " SELECT name FROM fn_helpcollations() " ) as $d ) $I [ preg_replace ( '~_.*~' , '' , $d )][] = $d ; return $I ;} function
information_schema ( $l ){ return
false ;} function
error (){ global $g ; return
nl_br ( h ( preg_replace ( '~^(\[[^]]*])+~m' , '' , $g -> error )));} function
create_database ( $l , $d ){ return
queries ( " CREATE DATABASE " . idf_escape ( $l ) . ( preg_match ( '~^[a-z0-9_]+$~i' , $d ) ? " COLLATE $d " : " " ));} function
drop_databases ( $k ){ return
queries ( " DROP DATABASE " . implode ( " , " , array_map ( 'idf_escape' , $k )));} function
rename_database ( $D , $d ){ if ( preg_match ( '~^[a-z0-9_]+$~i' , $d )) queries ( " ALTER DATABASE " . idf_escape ( DB ) . " COLLATE $d " ); queries ( " ALTER DATABASE " . idf_escape ( DB ) . " MODIFY NAME = " . idf_escape ( $D )); return
true ;} function
auto_increment (){ return " IDENTITY " . ( $_POST [ " Auto_increment " ] != " " ? " ( " . number ( $_POST [ " Auto_increment " ]) . " ,1) " : " " ) . " PRIMARY KEY " ;} function
alter_table ( $Q , $D , $p , $fd , $rb , $yc , $d , $Ka , $Tf ){ $c = array (); $tb = array (); foreach ( $p
as $o ){ $e = idf_escape ( $o [ 0 ]); $X = $o [ 1 ]; if ( ! $X ) $c [ " DROP " ][] = " COLUMN $e " ; else { $X [ 1 ] = preg_replace ( " ~( COLLATE )'( \\ w+)'~ " , '\1\2' , $X [ 1 ]); $tb [ $o [ 0 ]] = $X [ 5 ]; unset ( $X [ 5 ]); if ( $o [ 0 ] == " " ) $c [ " ADD " ][] = " \n " . implode ( " " , $X ) . ( $Q == " " ? substr ( $fd [ $X [ 0 ]], 16 + strlen ( $X [ 0 ])) : " " ); else { unset ( $X [ 6 ]); if ( $e != $X [ 0 ]) queries ( " EXEC sp_rename " . q ( table ( $Q ) . " . $e " ) . " , " . q ( idf_unescape ( $X [ 0 ])) . " , 'COLUMN' " ); $c [ " ALTER COLUMN " . implode ( " " , $X )][] = " " ;}}} if ( $Q == " " ) return
queries ( " CREATE TABLE " . table ( $D ) . " ( " . implode ( " , " ,( array ) $c [ " ADD " ]) . " \n ) " ); if ( $Q != $D ) queries ( " EXEC sp_rename " . q ( table ( $Q )) . " , " . q ( $D )); if ( $fd ) $c [ " " ] = $fd ; foreach ( $c
as $z => $X ){ if ( ! queries ( " ALTER TABLE " . idf_escape ( $D ) . " $z " . implode ( " , " , $X ))) return
false ;} foreach ( $tb
as $z => $X ){ $rb = substr ( $X , 9 ); queries ( " EXEC sp_dropextendedproperty @name = N'MS_Description', @level0type = N'Schema', @level0name = " . q ( get_schema ()) . " , @level1type = N'Table', @level1name = " . q ( $D ) . " , @level2type = N'Column', @level2name = " . q ( $z )); queries ( " EXEC sp_addextendedproperty @name = N'MS_Description', @value = " . $rb . " , @level0type = N'Schema', @level0name = " . q ( get_schema ()) . " , @level1type = N'Table', @level1name = " . q ( $D ) . " , @level2type = N'Column', @level2name = " . q ( $z ));} return
true ;} function
alter_indexes ( $Q , $c ){ $w = array (); $jc = array (); foreach ( $c
as $X ){ if ( $X [ 2 ] == " DROP " ){ if ( $X [ 0 ] == " PRIMARY " ) $jc [] = idf_escape ( $X [ 1 ]); else $w [] = idf_escape ( $X [ 1 ]) . " ON " . table ( $Q );} elseif ( ! queries (( $X [ 0 ] != " PRIMARY " ? " CREATE $X[0] " . ( $X [ 0 ] != " INDEX " ? " INDEX " : " " ) . idf_escape ( $X [ 1 ] != " " ? $X [ 1 ] : uniqid ( $Q . " _ " )) . " ON " . table ( $Q ) : " ALTER TABLE " . table ( $Q ) . " ADD PRIMARY KEY " ) . " ( " . implode ( " , " , $X [ 2 ]) . " ) " )) return
false ;} return ( ! $w || queries ( " DROP INDEX " . implode ( " , " , $w ))) && ( ! $jc || queries ( " ALTER TABLE " . table ( $Q ) . " DROP " . implode ( " , " , $jc )));} function
last_id (){ global $g ; return $g -> result ( " SELECT SCOPE_IDENTITY() " );} function
explain ( $g , $G ){ $g -> query ( " SET SHOWPLAN_ALL ON " ); $I = $g -> query ( $G ); $g -> query ( " SET SHOWPLAN_ALL OFF " ); return $I ;} function
found_rows ( $R , $Z ){} function
foreign_keys ( $Q ){ $I = array (); foreach ( get_rows ( " EXEC sp_fkeys @fktable_name = " . q ( $Q )) as $J ){ $r =& $I [ $J [ " FK_NAME " ]]; $r [ " db " ] = $J [ " PKTABLE_QUALIFIER " ]; $r [ " table " ] = $J [ " PKTABLE_NAME " ]; $r [ " source " ][] = $J [ " FKCOLUMN_NAME " ]; $r [ " target " ][] = $J [ " PKCOLUMN_NAME " ];} return $I ;} function
truncate_tables ( $S ){ return
apply_queries ( " TRUNCATE TABLE " , $S );} function
drop_views ( $Yi ){ return
queries ( " DROP VIEW " . implode ( " , " , array_map ( 'table' , $Yi )));} function
drop_tables ( $S ){ return
queries ( " DROP TABLE " . implode ( " , " , array_map ( 'table' , $S )));} function
move_tables ( $S , $Yi , $Wh ){ return
apply_queries ( " ALTER SCHEMA " . idf_escape ( $Wh ) . " TRANSFER " , array_merge ( $S , $Yi ));} function
trigger ( $D ){ if ( $D == " " ) return
array (); $K = get_rows ( " SELECT s.name [Trigger],
CASE WHEN OBJECTPROPERTY ( s . id , 'ExecIsInsertTrigger' ) = 1 THEN 'INSERT' WHEN OBJECTPROPERTY ( s . id , 'ExecIsUpdateTrigger' ) = 1 THEN 'UPDATE' WHEN OBJECTPROPERTY ( s . id , 'ExecIsDeleteTrigger' ) = 1 THEN 'DELETE' END [ Event ],
CASE WHEN OBJECTPROPERTY ( s . id , 'ExecIsInsteadOfTrigger' ) = 1 THEN 'INSTEAD OF' ELSE 'AFTER' END [ Timing ],
c . text
FROM sysobjects s
JOIN syscomments c ON s . id = c . id
WHERE s . xtype = 'TR' AND s . name = " .q( $D )); $I =reset( $K );if( $I ) $I["Statement"] =preg_replace('~^.+ \ s+AS \ s+~isU','', $I["text"] );return $I ;}function
triggers ( $Q ){ $I = array (); foreach ( get_rows ( " SELECT sys1.name,
CASE WHEN OBJECTPROPERTY ( sys1 . id , 'ExecIsInsertTrigger' ) = 1 THEN 'INSERT' WHEN OBJECTPROPERTY ( sys1 . id , 'ExecIsUpdateTrigger' ) = 1 THEN 'UPDATE' WHEN OBJECTPROPERTY ( sys1 . id , 'ExecIsDeleteTrigger' ) = 1 THEN 'DELETE' END [ Event ],
CASE WHEN OBJECTPROPERTY ( sys1 . id , 'ExecIsInsteadOfTrigger' ) = 1 THEN 'INSTEAD OF' ELSE 'AFTER' END [ Timing ]
FROM sysobjects sys1
JOIN sysobjects sys2 ON sys1 . parent_obj = sys2 . id
WHERE sys1 . xtype = 'TR' AND sys2 . name = " .q( $Q ))as $J ) $I[$J["name"] ]=array( $J["Timing"] , $J["Event"] );return $I ;}function
trigger_options (){ return
array ( " Timing " => array ( " AFTER " , " INSTEAD OF " ), " Event " => array ( " INSERT " , " UPDATE " , " DELETE " ), " Type " => array ( " AS " ),);} function
schemas (){ return
get_vals ( " SELECT name FROM sys.schemas " );} function
get_schema (){ global $g ; if ( $_GET [ " ns " ] != " " ) return $_GET [ " ns " ]; return $g -> result ( " SELECT SCHEMA_NAME() " );} function
set_schema ( $Zg ){ return
true ;} function
use_sql ( $j ){ return " USE " . idf_escape ( $j );} function
show_variables (){ return
array ();} function
show_status (){ return
array ();} function
convert_field ( $o ){} function
unconvert_field ( $o , $I ){ return $I ;} function
support ( $Tc ){ return
preg_match ( '~^(comment|columns|database|drop_col|indexes|descidx|scheme|sql|table|trigger|view|view_trigger)$~' , $Tc );} function
driver_config (){ $U = array (); $Gh = array (); foreach ( array ( 'Numbers' => array ( " tinyint " => 3 , " smallint " => 5 , " int " => 10 , " bigint " => 20 , " bit " => 1 , " decimal " => 0 , " real " => 12 , " float " => 53 , " smallmoney " => 10 , " money " => 20 ), 'Date and time' => array ( " date " => 10 , " smalldatetime " => 19 , " datetime " => 19 , " datetime2 " => 19 , " time " => 8 , " datetimeoffset " => 10 ), 'Strings' => array ( " char " => 8000 , " varchar " => 8000 , " text " => 2147483647 , " nchar " => 4000 , " nvarchar " => 4000 , " ntext " => 1073741823 ), 'Binary' => array ( " binary " => 8000 , " varbinary " => 8000 , " image " => 2147483647 ),) as $z => $X ){ $U += $X ; $Gh [ $z ] = array_keys ( $X );} return
array ( 'possible_drivers' => array ( " SQLSRV " , " MSSQL " , " PDO_DBLIB " ), 'jush' => " mssql " , 'types' => $U , 'structured_types' => $Gh , 'unsigned' => array (), 'operators' => array ( " = " , " < " , " > " , " <= " , " >= " , " != " , " LIKE " , " LIKE %% " , " IN " , " IS NULL " , " NOT LIKE " , " NOT IN " , " IS NOT NULL " ), 'functions' => array ( " len " , " lower " , " round " , " upper " ), 'grouping' => array ( " avg " , " count " , " count distinct " , " max " , " min " , " sum " ), 'edit_functions' => array ( array ( " date|time " => " getdate " ,), array ( " int|decimal|real|float|money|datetime " => " +/- " , " char|text " => " + " ,)),);}} $ic [ " mongo " ] = " MongoDB (alpha) " ; if ( isset ( $_GET [ " mongo " ])){ define ( " DRIVER " , " mongo " ); if ( class_exists ( 'MongoDB' )){ class
Min_DB { var $extension = " Mongo " , $server_info = MongoClient :: VERSION , $error , $last_id , $_link , $_db ; function
connect ( $Ji , $xf ){ try { $this -> _link = new
MongoClient ( $Ji , $xf ); if ( $xf [ " password " ] != " " ){ $xf [ " password " ] = " " ; try { new
MongoClient ( $Ji , $xf ); $this -> error = 'Database does not support password.' ;} catch ( Exception $pc ){}}} catch ( Exception $pc ){ $this -> error = $pc -> getMessage ();}} function
query ( $G ){ return
false ;} function
select_db ( $j ){ try { $this -> _db = $this -> _link -> selectDB ( $j ); return
true ;} catch ( Exception $Fc ){ $this -> error = $Fc -> getMessage (); return
false ;}} function
quote ( $P ){ return $P ;}} class
Min_Result { var $num_rows , $_rows = array (), $_offset = 0 , $_charset = array (); function
__construct ( $H ){ foreach ( $H
as $de ){ $J = array (); foreach ( $de
as $z => $X ){ if ( is_a ( $X , 'MongoBinData' )) $this -> _charset [ $z ] = 63 ; $J [ $z ] = ( is_a ( $X , 'MongoId' ) ? " ObjectId( \" $X\ " ) " :(is_a( $X ,'MongoDate')?gmdate( " Y - m - d H : i : s " , $X->sec ). " GMT " :(is_a( $X ,'MongoBinData')? $X->bin :(is_a( $X ,'MongoRegex')? " $X " :(is_object( $X )?get_class( $X ): $X )))));} $this->_rows []= $J ;foreach( $J
as $z => $X ){ if ( ! isset ( $this -> _rows [ 0 ][ $z ])) $this -> _rows [ 0 ][ $z ] = null ;}} $this -> num_rows = count ( $this -> _rows );} function
fetch_assoc (){ $J = current ( $this -> _rows ); if ( ! $J ) return $J ; $I = array (); foreach ( $this -> _rows [ 0 ] as $z => $X ) $I [ $z ] = $J [ $z ]; next ( $this -> _rows ); return $I ;} function
fetch_row (){ $I = $this -> fetch_assoc (); if ( ! $I ) return $I ; return
array_values ( $I );} function
fetch_field (){ $he = array_keys ( $this -> _rows [ 0 ]); $D = $he [ $this -> _offset ++ ]; return ( object ) array ( 'name' => $D , 'charsetnr' => $this -> _charset [ $D ],);}} class
Min_Driver
extends
Min_SQL { public $kg = " _id " ; function
select ( $Q , $L , $Z , $qd , $zf = array (), $_ = 1 , $E = 0 , $mg = false ){ $L = ( $L == array ( " * " ) ? array () : array_fill_keys ( $L , true )); $uh = array (); foreach ( $zf
as $X ){ $X = preg_replace ( '~ DESC$~' , '' , $X , 1 , $Gb ); $uh [ $X ] = ( $Gb ? - 1 : 1 );} return
new
Min_Result ( $this -> _conn -> _db -> selectCollection ( $Q ) -> find ( array (), $L ) -> sort ( $uh ) -> limit ( $_ != " " ? + $_ : 0 ) -> skip ( $E * $_ ));} function
insert ( $Q , $N ){ try { $I = $this -> _conn -> _db -> selectCollection ( $Q ) -> insert ( $N ); $this -> _conn -> errno = $I [ 'code' ]; $this -> _conn -> error = $I [ 'err' ]; $this -> _conn -> last_id = $N [ '_id' ]; return ! $I [ 'err' ];} catch ( Exception $Fc ){ $this -> _conn -> error = $Fc -> getMessage (); return
false ;}}} function
get_databases ( $dd ){ global $g ; $I = array (); $Ub = $g -> _link -> listDBs (); foreach ( $Ub [ 'databases' ] as $l ) $I [] = $l [ 'name' ]; return $I ;} function
count_tables ( $k ){ global $g ; $I = array (); foreach ( $k
as $l ) $I [ $l ] = count ( $g -> _link -> selectDB ( $l ) -> getCollectionNames ( true )); return $I ;} function
tables_list (){ global $g ; return
array_fill_keys ( $g -> _db -> getCollectionNames ( true ), 'table' );} function
drop_databases ( $k ){ global $g ; foreach ( $k
as $l ){ $Lg = $g -> _link -> selectDB ( $l ) -> drop (); if ( ! $Lg [ 'ok' ]) return
false ;} return
true ;} function
indexes ( $Q , $h = null ){ global $g ; $I = array (); foreach ( $g -> _db -> selectCollection ( $Q ) -> getIndexInfo () as $w ){ $cc = array (); foreach ( $w [ " key " ] as $e => $T ) $cc [] = ( $T ==- 1 ? '1' : null ); $I [ $w [ " name " ]] = array ( " type " => ( $w [ " name " ] == " _id_ " ? " PRIMARY " : ( $w [ " unique " ] ? " UNIQUE " : " INDEX " )), " columns " => array_keys ( $w [ " key " ]), " lengths " => array (), " descs " => $cc ,);} return $I ;} function
fields ( $Q ){ return
fields_from_edit ();} function
found_rows ( $R , $Z ){ global $g ; return $g -> _db -> selectCollection ( $_GET [ " select " ]) -> count ( $Z );} $uf = array ( " = " );} elseif ( class_exists ( 'MongoDB\Driver\Manager' )){ class
Min_DB { var $extension = " MongoDB " , $server_info = MONGODB_VERSION , $affected_rows , $error , $last_id ; var $_link ; var $_db , $_db_name ; function
connect ( $Ji , $xf ){ $gb = 'MongoDB\Driver\Manager' ; $this -> _link = new $gb ( $Ji , $xf ); $this -> executeCommand ( 'admin' , array ( 'ping' => 1 ));} function
executeCommand ( $l , $pb ){ $gb = 'MongoDB\Driver\Command' ; try { return $this -> _link -> executeCommand ( $l , new $gb ( $pb ));} catch ( Exception $pc ){ $this -> error = $pc -> getMessage (); return
array ();}} function
executeBulkWrite ( $We , $Wa , $Hb ){ try { $Og = $this -> _link -> executeBulkWrite ( $We , $Wa ); $this -> affected_rows = $Og -> $Hb (); return
true ;} catch ( Exception $pc ){ $this -> error = $pc -> getMessage (); return
false ;}} function
query ( $G ){ return
false ;} function
select_db ( $j ){ $this -> _db_name = $j ; return
true ;} function
quote ( $P ){ return $P ;}} class
Min_Result { var $num_rows , $_rows = array (), $_offset = 0 , $_charset = array (); function
__construct ( $H ){ foreach ( $H
as $de ){ $J = array (); foreach ( $de
as $z => $X ){ if ( is_a ( $X , 'MongoDB\BSON\Binary' )) $this -> _charset [ $z ] = 63 ; $J [ $z ] = ( is_a ( $X , 'MongoDB\BSON\ObjectID' ) ? 'MongoDB\BSON\ObjectID("' . " $X\ " ) " :(is_a( $X ,'MongoDB \ BSON \ UTCDatetime')? $X->toDateTime ()->format('Y-m-d H:i:s'):(is_a( $X ,'MongoDB \ BSON \ Binary')? $X->getData ():(is_a( $X ,'MongoDB \ BSON \R egex')? " $X " :(is_object( $X )||is_array( $X )?json_encode( $X ,256): $X )))));} $this->_rows []= $J ;foreach( $J
as $z => $X ){ if ( ! isset ( $this -> _rows [ 0 ][ $z ])) $this -> _rows [ 0 ][ $z ] = null ;}} $this -> num_rows = count ( $this -> _rows );} function
fetch_assoc (){ $J = current ( $this -> _rows ); if ( ! $J ) return $J ; $I = array (); foreach ( $this -> _rows [ 0 ] as $z => $X ) $I [ $z ] = $J [ $z ]; next ( $this -> _rows ); return $I ;} function
fetch_row (){ $I = $this -> fetch_assoc (); if ( ! $I ) return $I ; return
array_values ( $I );} function
fetch_field (){ $he = array_keys ( $this -> _rows [ 0 ]); $D = $he [ $this -> _offset ++ ]; return ( object ) array ( 'name' => $D , 'charsetnr' => $this -> _charset [ $D ],);}} class
Min_Driver
extends
Min_SQL { public $kg = " _id " ; function
select ( $Q , $L , $Z , $qd , $zf = array (), $_ = 1 , $E = 0 , $mg = false ){ global $g ; $L = ( $L == array ( " * " ) ? array () : array_fill_keys ( $L , 1 )); if ( count ( $L ) &&! isset ( $L [ '_id' ])) $L [ '_id' ] = 0 ; $Z = where_to_query ( $Z ); $uh = array (); foreach ( $zf
as $X ){ $X = preg_replace ( '~ DESC$~' , '' , $X , 1 , $Gb ); $uh [ $X ] = ( $Gb ? - 1 : 1 );} if ( isset ( $_GET [ 'limit' ]) && is_numeric ( $_GET [ 'limit' ]) && $_GET [ 'limit' ] > 0 ) $_ = $_GET [ 'limit' ]; $_ = min ( 200 , max ( 1 ,( int ) $_ )); $rh = $E * $_ ; $gb = 'MongoDB\Driver\Query' ; try { return
new
Min_Result ( $g -> _link -> executeQuery ( " $g->_db_name . $Q " , new $gb ( $Z , array ( 'projection' => $L , 'limit' => $_ , 'skip' => $rh , 'sort' => $uh ))));} catch ( Exception $pc ){ $g -> error = $pc -> getMessage (); return
false ;}} function
update ( $Q , $N , $wg , $_ = 0 , $hh = " \n " ){ global $g ; $l = $g -> _db_name ; $Z = sql_query_where_parser ( $wg ); $gb = 'MongoDB\Driver\BulkWrite' ; $Wa = new $gb ( array ()); if ( isset ( $N [ '_id' ])) unset ( $N [ '_id' ]); $Ig = array (); foreach ( $N
as $z => $Y ){ if ( $Y == 'NULL' ){ $Ig [ $z ] = 1 ; unset ( $N [ $z ]);}} $Ii = array ( '$set' => $N ); if ( count ( $Ig )) $Ii [ '$unset' ] = $Ig ; $Wa -> update ( $Z , $Ii , array ( 'upsert' => false )); return $g -> executeBulkWrite ( " $l . $Q " , $Wa , 'getModifiedCount' );} function
delete ( $Q , $wg , $_ = 0 ){ global $g ; $l = $g -> _db_name ; $Z = sql_query_where_parser ( $wg ); $gb = 'MongoDB\Driver\BulkWrite' ; $Wa = new $gb ( array ()); $Wa -> delete ( $Z , array ( 'limit' => $_ )); return $g -> executeBulkWrite ( " $l . $Q " , $Wa , 'getDeletedCount' );} function
insert ( $Q , $N ){ global $g ; $l = $g -> _db_name ; $gb = 'MongoDB\Driver\BulkWrite' ; $Wa = new $gb ( array ()); if ( $N [ '_id' ] == '' ) unset ( $N [ '_id' ]); $Wa -> insert ( $N ); return $g -> executeBulkWrite ( " $l . $Q " , $Wa , 'getInsertedCount' );}} function
get_databases ( $dd ){ global $g ; $I = array (); foreach ( $g -> executeCommand ( 'admin' , array ( 'listDatabases' => 1 )) as $Ub ){ foreach ( $Ub -> databases
as $l ) $I [] = $l -> name ;} return $I ;} function
count_tables ( $k ){ $I = array (); return $I ;} function
tables_list (){ global $g ; $mb = array (); foreach ( $g -> executeCommand ( $g -> _db_name , array ( 'listCollections' => 1 )) as $H ) $mb [ $H -> name ] = 'table' ; return $mb ;} function
drop_databases ( $k ){ return
false ;} function
indexes ( $Q , $h = null ){ global $g ; $I = array (); foreach ( $g -> executeCommand ( $g -> _db_name , array ( 'listIndexes' => $Q )) as $w ){ $cc = array (); $f = array (); foreach ( get_object_vars ( $w -> key ) as $e => $T ){ $cc [] = ( $T ==- 1 ? '1' : null ); $f [] = $e ;} $I [ $w -> name ] = array ( " type " => ( $w -> name == " _id_ " ? " PRIMARY " : ( isset ( $w -> unique ) ? " UNIQUE " : " INDEX " )), " columns " => $f , " lengths " => array (), " descs " => $cc ,);} return $I ;} function
fields ( $Q ){ global $m ; $p = fields_from_edit (); if ( ! $p ){ $H = $m -> select ( $Q , array ( " * " ), null , null , array (), 10 ); if ( $H ){ while ( $J = $H -> fetch_assoc ()){ foreach ( $J
as $z => $X ){ $J [ $z ] = null ; $p [ $z ] = array ( " field " => $z , " type " => " string " , " null " => ( $z != $m -> primary ), " auto_increment " => ( $z == $m -> primary ), " privileges " => array ( " insert " => 1 , " select " => 1 , " update " => 1 ,),);}}}} return $p ;} function
found_rows ( $R , $Z ){ global $g ; $Z = where_to_query ( $Z ); $mi = $g -> executeCommand ( $g -> _db_name , array ( 'count' => $R [ 'Name' ], 'query' => $Z )) -> toArray (); return $mi [ 0 ] -> n ;} function
sql_query_where_parser ( $wg ){ $wg = preg_replace ( '~^\sWHERE \(?\(?(.+?)\)?\)?$~' , '\1' , $wg ); $ij = explode ( ' AND ' , $wg ); $jj = explode ( ') OR (' , $wg ); $Z = array (); foreach ( $ij
as $gj ) $Z [] = trim ( $gj ); if ( count ( $jj ) == 1 ) $jj = array (); elseif ( count ( $jj ) > 1 ) $Z = array (); return
where_to_query ( $Z , $jj );} function
where_to_query ( $ej = array (), $fj = array ()){ global $b ; $Pb = array (); foreach ( array ( 'and' => $ej , 'or' => $fj ) as $T => $Z ){ if ( is_array ( $Z )){ foreach ( $Z
as $Lc ){ list ( $jb , $sf , $X ) = explode ( " " , $Lc , 3 ); if ( $jb == " _id " && preg_match ( '~^(MongoDB\\\\BSON\\\\ObjectID)\("(.+)"\)$~' , $X , $C )){ list (, $gb , $X ) = $C ; $X = new $gb ( $X );} if ( ! in_array ( $sf , $b -> operators )) continue ; if ( preg_match ( '~^\(f\)(.+)~' , $sf , $C )){ $X = ( float ) $X ; $sf = $C [ 1 ];} elseif ( preg_match ( '~^\(date\)(.+)~' , $sf , $C )){ $Rb = new
DateTime ( $X ); $gb = 'MongoDB\BSON\UTCDatetime' ; $X = new $gb ( $Rb -> getTimestamp () * 1000 ); $sf = $C [ 1 ];} switch ( $sf ){ case '=' : $sf = '$eq' ; break ; case '!=' : $sf = '$ne' ; break ; case '>' : $sf = '$gt' ; break ; case '<' : $sf = '$lt' ; break ; case '>=' : $sf = '$gte' ; break ; case '<=' : $sf = '$lte' ; break ; case 'regex' : $sf = '$regex' ; break ; default : continue
2 ;} if ( $T == 'and' ) $Pb [ '$and' ][] = array ( $jb => array ( $sf => $X )); elseif ( $T == 'or' ) $Pb [ '$or' ][] = array ( $jb => array ( $sf => $X ));}}} return $Pb ;} $uf = array ( " = " , " != " , " > " , " < " , " >= " , " <= " , " regex " , " (f)= " , " (f)!= " , " (f)> " , " (f)< " , " (f)>= " , " (f)<= " , " (date)= " , " (date)!= " , " (date)> " , " (date)< " , " (date)>= " , " (date)<= " ,);} function
table ( $v ){ return $v ;} function
idf_escape ( $v ){ return $v ;} function
table_status ( $D = " " , $Sc = false ){ $I = array (); foreach ( tables_list () as $Q => $T ){ $I [ $Q ] = array ( " Name " => $Q ); if ( $D == $Q ) return $I [ $Q ];} return $I ;} function
create_database ( $l , $d ){ return
true ;} function
last_id (){ global $g ; return $g -> last_id ;} function
error (){ global $g ; return
h ( $g -> error );} function
collations (){ return
array ();} function
logged_user (){ global $b ; $Kb = $b -> credentials (); return $Kb [ 1 ];} function
connect (){ global $b ; $g = new
Min_DB ; list ( $M , $V , $F ) = $b -> credentials (); $xf = array (); if ( $V . $F != " " ){ $xf [ " username " ] = $V ; $xf [ " password " ] = $F ;} $l = $b -> database (); if ( $l != " " ) $xf [ " db " ] = $l ; if (( $Ja = getenv ( " MONGO_AUTH_SOURCE " ))) $xf [ " authSource " ] = $Ja ; $g -> connect ( " mongodb:// $M " , $xf ); if ( $g -> error ) return $g -> error ; return $g ;} function
alter_indexes ( $Q , $c ){ global $g ; foreach ( $c
as $X ){ list ( $T , $D , $N ) = $X ; if ( $N == " DROP " ) $I = $g -> _db -> command ( array ( " deleteIndexes " => $Q , " index " => $D )); else { $f = array (); foreach ( $N
as $e ){ $e = preg_replace ( '~ DESC$~' , '' , $e , 1 , $Gb ); $f [ $e ] = ( $Gb ? - 1 : 1 );} $I = $g -> _db -> selectCollection ( $Q ) -> ensureIndex ( $f , array ( " unique " => ( $T == " UNIQUE " ), " name " => $D ,));} if ( $I [ 'errmsg' ]){ $g -> error = $I [ 'errmsg' ]; return
false ;}} return
true ;} function
support ( $Tc ){ return
preg_match ( " ~database|indexes|descidx~ " , $Tc );} function
db_collation ( $l , $lb ){} function
information_schema (){} function
is_view ( $R ){} function
convert_field ( $o ){} function
unconvert_field ( $o , $I ){ return $I ;} function
foreign_keys ( $Q ){ return
array ();} function
fk_support ( $R ){} function
engines (){ return
array ();} function
alter_table ( $Q , $D , $p , $fd , $rb , $yc , $d , $Ka , $Tf ){ global $g ; if ( $Q == " " ){ $g -> _db -> createCollection ( $D ); return
true ;}} function
drop_tables ( $S ){ global $g ; foreach ( $S
as $Q ){ $Lg = $g -> _db -> selectCollection ( $Q ) -> drop (); if ( ! $Lg [ 'ok' ]) return
false ;} return
true ;} function
truncate_tables ( $S ){ global $g ; foreach ( $S
as $Q ){ $Lg = $g -> _db -> selectCollection ( $Q ) -> remove (); if ( ! $Lg [ 'ok' ]) return
false ;} return
true ;} function
driver_config (){ global $uf ; return
array ( 'possible_drivers' => array ( " mongo " , " mongodb " ), 'jush' => " mongo " , 'operators' => $uf , 'functions' => array (), 'grouping' => array (), 'edit_functions' => array ( array ( " json " )),);}} $ic [ " elastic " ] = " Elasticsearch (beta) " ; if ( isset ( $_GET [ " elastic " ])){ define ( " DRIVER " , " elastic " ); if ( function_exists ( 'json_decode' ) && ini_bool ( 'allow_url_fopen' )){ class
Min_DB { var $extension = " JSON " , $server_info , $errno , $error , $_url , $_db ; function
rootQuery ( $Xf , $Bb = array (), $Pe = 'GET' ){ @ ini_set ( 'track_errors' , 1 ); $Xc =@ file_get_contents ( " $this->_url / " . ltrim ( $Xf , '/' ), false , stream_context_create ( array ( 'http' => array ( 'method' => $Pe , 'content' => $Bb === null ? $Bb : json_encode ( $Bb ), 'header' => 'Content-Type: application/json' , 'ignore_errors' => 1 ,)))); if ( ! $Xc ){ $this -> error = $php_errormsg ; return $Xc ;} if ( ! preg_match ( '~^HTTP/[0-9.]+ 2~i' , $http_response_header [ 0 ])){ $this -> error = 'Invalid credentials.' . " $http_response_header[0] " ; return
false ;} $I = json_decode ( $Xc , true ); if ( $I === null ){ $this -> errno = json_last_error (); if ( function_exists ( 'json_last_error_msg' )) $this -> error = json_last_error_msg (); else { $_b = get_defined_constants ( true ); foreach ( $_b [ 'json' ] as $D => $Y ){ if ( $Y == $this -> errno && preg_match ( '~^JSON_ERROR_~' , $D )){ $this -> error = $D ; break ;}}}} return $I ;} function
query ( $Xf , $Bb = array (), $Pe = 'GET' ){ return $this -> rootQuery (( $this -> _db != " " ? " $this->_db / " : " / " ) . ltrim ( $Xf , '/' ), $Bb , $Pe );} function
connect ( $M , $V , $F ){ preg_match ( '~^(https?://)?(.*)~' , $M , $C ); $this -> _url = ( $C [ 1 ] ? $C [ 1 ] : " http:// " ) . " $V : $F @ $C[2] " ; $I = $this -> query ( '' ); if ( $I ) $this -> server_info = $I [ 'version' ][ 'number' ]; return ( bool ) $I ;} function
select_db ( $j ){ $this -> _db = $j ; return
true ;} function
quote ( $P ){ return $P ;}} class
Min_Result { var $num_rows , $_rows ; function
__construct ( $K ){ $this -> num_rows = count ( $K ); $this -> _rows = $K ; reset ( $this -> _rows );} function
fetch_assoc (){ $I = current ( $this -> _rows ); next ( $this -> _rows ); return $I ;} function
fetch_row (){ return
array_values ( $this -> fetch_assoc ());}}} class
Min_Driver
extends
Min_SQL { function
select ( $Q , $L , $Z , $qd , $zf = array (), $_ = 1 , $E = 0 , $mg = false ){ global $b ; $Pb = array (); $G = " $Q /_search " ; if ( $L != array ( " * " )) $Pb [ " fields " ] = $L ; if ( $zf ){ $uh = array (); foreach ( $zf
as $jb ){ $jb = preg_replace ( '~ DESC$~' , '' , $jb , 1 , $Gb ); $uh [] = ( $Gb ? array ( $jb => " desc " ) : $jb );} $Pb [ " sort " ] = $uh ;} if ( $_ ){ $Pb [ " size " ] =+ $_ ; if ( $E ) $Pb [ " from " ] = ( $E * $_ );} foreach ( $Z
as $X ){ list ( $jb , $sf , $X ) = explode ( " " , $X , 3 ); if ( $jb == " _id " ) $Pb [ " query " ][ " ids " ][ " values " ][] = $X ; elseif ( $jb . $X != " " ){ $Zh = array ( " term " => array (( $jb != " " ? $jb : " _all " ) => $X )); if ( $sf == " = " ) $Pb [ " query " ][ " filtered " ][ " filter " ][ " and " ][] = $Zh ; else $Pb [ " query " ][ " filtered " ][ " query " ][ " bool " ][ " must " ][] = $Zh ;}} if ( $Pb [ " query " ] &&! $Pb [ " query " ][ " filtered " ][ " query " ] &&! $Pb [ " query " ][ " ids " ]) $Pb [ " query " ][ " filtered " ][ " query " ] = array ( " match_all " => array ()); $Ch = microtime ( true ); $bh = $this -> _conn -> query ( $G , $Pb ); if ( $mg ) echo $b -> selectQuery ( " $G : " . json_encode ( $Pb ), $Ch , ! $bh ); if ( ! $bh ) return
false ; $I = array (); foreach ( $bh [ 'hits' ][ 'hits' ] as $Cd ){ $J = array (); if ( $L == array ( " * " )) $J [ " _id " ] = $Cd [ " _id " ]; $p = $Cd [ '_source' ]; if ( $L != array ( " * " )){ $p = array (); foreach ( $L
as $z ) $p [ $z ] = $Cd [ 'fields' ][ $z ];} foreach ( $p
as $z => $X ){ if ( $Pb [ " fields " ]) $X = $X [ 0 ]; $J [ $z ] = ( is_array ( $X ) ? json_encode ( $X ) : $X );} $I [] = $J ;} return
new
Min_Result ( $I );} function
update ( $T , $_g , $wg , $_ = 0 , $hh = " \n " ){ $Vf = preg_split ( '~ *= *~' , $wg ); if ( count ( $Vf ) == 2 ){ $u = trim ( $Vf [ 1 ]); $G = " $T / $u " ; return $this -> _conn -> query ( $G , $_g , 'POST' );} return
false ;} function
insert ( $T , $_g ){ $u = " " ; $G = " $T / $u " ; $Lg = $this -> _conn -> query ( $G , $_g , 'POST' ); $this -> _conn -> last_id = $Lg [ '_id' ]; return $Lg [ 'created' ];} function
delete ( $T , $wg , $_ = 0 ){ $Gd = array (); if ( is_array ( $_GET [ " where " ]) && $_GET [ " where " ][ " _id " ]) $Gd [] = $_GET [ " where " ][ " _id " ]; if ( is_array ( $_POST [ 'check' ])){ foreach ( $_POST [ 'check' ] as $ab ){ $Vf = preg_split ( '~ *= *~' , $ab ); if ( count ( $Vf ) == 2 ) $Gd [] = trim ( $Vf [ 1 ]);}} $this -> _conn -> affected_rows = 0 ; foreach ( $Gd
as $u ){ $G = " { $T } / { $u } " ; $Lg = $this -> _conn -> query ( $G , '{}' , 'DELETE' ); if ( is_array ( $Lg ) && $Lg [ 'found' ] == true ) $this -> _conn -> affected_rows ++ ;} return $this -> _conn -> affected_rows ;}} function
connect (){ global $b ; $g = new
Min_DB ; list ( $M , $V , $F ) = $b -> credentials (); if ( $F != " " && $g -> connect ( $M , $V , " " )) return 'Database does not support password.' ; if ( $g -> connect ( $M , $V , $F )) return $g ; return $g -> error ;} function
support ( $Tc ){ return
preg_match ( " ~database|table|columns~ " , $Tc );} function
logged_user (){ global $b ; $Kb = $b -> credentials (); return $Kb [ 1 ];} function
get_databases (){ global $g ; $I = $g -> rootQuery ( '_aliases' ); if ( $I ){ $I = array_keys ( $I ); sort ( $I , SORT_STRING );} return $I ;} function
collations (){ return
array ();} function
db_collation ( $l , $lb ){} function
engines (){ return
array ();} function
count_tables ( $k ){ global $g ; $I = array (); $H = $g -> query ( '_stats' ); if ( $H && $H [ 'indices' ]){ $Od = $H [ 'indices' ]; foreach ( $Od
as $Nd => $Dh ){ $Md = $Dh [ 'total' ][ 'indexing' ]; $I [ $Nd ] = $Md [ 'index_total' ];}} return $I ;} function
tables_list (){ global $g ; if ( min_version ( 6 )) return
array ( '_doc' => 'table' ); $I = $g -> query ( '_mapping' ); if ( $I ) $I = array_fill_keys ( array_keys ( $I [ $g -> _db ][ " mappings " ]), 'table' ); return $I ;} function
table_status ( $D = " " , $Sc = false ){ global $g ; $bh = $g -> query ( " _search " , array ( " size " => 0 , " aggregations " => array ( " count_by_type " => array ( " terms " => array ( " field " => " _type " )))), " POST " ); $I = array (); if ( $bh ){ $S = $bh [ " aggregations " ][ " count_by_type " ][ " buckets " ]; foreach ( $S
as $Q ){ $I [ $Q [ " key " ]] = array ( " Name " => $Q [ " key " ], " Engine " => " table " , " Rows " => $Q [ " doc_count " ],); if ( $D != " " && $D == $Q [ " key " ]) return $I [ $D ];}} return $I ;} function
error (){ global $g ; return
h ( $g -> error );} function
information_schema (){} function
is_view ( $R ){} function
indexes ( $Q , $h = null ){ return
array ( array ( " type " => " PRIMARY " , " columns " => array ( " _id " )),);} function
fields ( $Q ){ global $g ; $ze = array (); if ( min_version ( 6 )){ $H = $g -> query ( " _mapping " ); if ( $H ) $ze = $H [ $g -> _db ][ 'mappings' ][ 'properties' ];} else { $H = $g -> query ( " $Q /_mapping " ); if ( $H ){ $ze = $H [ $Q ][ 'properties' ]; if ( ! $ze ) $ze = $H [ $g -> _db ][ 'mappings' ][ $Q ][ 'properties' ];}} $I = array (); if ( $ze ){ foreach ( $ze
as $D => $o ){ $I [ $D ] = array ( " field " => $D , " full_type " => $o [ " type " ], " type " => $o [ " type " ], " privileges " => array ( " insert " => 1 , " select " => 1 , " update " => 1 ),); if ( $o [ " properties " ]){ unset ( $I [ $D ][ " privileges " ][ " insert " ]); unset ( $I [ $D ][ " privileges " ][ " update " ]);}}} return $I ;} function
foreign_keys ( $Q ){ return
array ();} function
table ( $v ){ return $v ;} function
idf_escape ( $v ){ return $v ;} function
convert_field ( $o ){} function
unconvert_field ( $o , $I ){ return $I ;} function
fk_support ( $R ){} function
found_rows ( $R , $Z ){ return
null ;} function
create_database ( $l ){ global $g ; return $g -> rootQuery ( urlencode ( $l ), null , 'PUT' );} function
drop_databases ( $k ){ global $g ; return $g -> rootQuery ( urlencode ( implode ( ',' , $k )), array (), 'DELETE' );} function
alter_table ( $Q , $D , $p , $fd , $rb , $yc , $d , $Ka , $Tf ){ global $g ; $sg = array (); foreach ( $p
as $Qc ){ $Vc = trim ( $Qc [ 1 ][ 0 ]); $Wc = trim ( $Qc [ 1 ][ 1 ] ? $Qc [ 1 ][ 1 ] : " text " ); $sg [ $Vc ] = array ( 'type' => $Wc );} if ( ! empty ( $sg )) $sg = array ( 'properties' => $sg ); return $g -> query ( " _mapping/ { $D } " , $sg , 'PUT' );} function
drop_tables ( $S ){ global $g ; $I = true ; foreach ( $S
as $Q ) $I = $I && $g -> query ( urlencode ( $Q ), array (), 'DELETE' ); return $I ;} function
last_id (){ global $g ; return $g -> last_id ;} function
driver_config (){ $U = array (); $Gh = array (); foreach ( array ( 'Numbers' => array ( " long " => 3 , " integer " => 5 , " short " => 8 , " byte " => 10 , " double " => 20 , " float " => 66 , " half_float " => 12 , " scaled_float " => 21 ), 'Date and time' => array ( " date " => 10 ), 'Strings' => array ( " string " => 65535 , " text " => 65535 ), 'Binary' => array ( " binary " => 255 ),) as $z => $X ){ $U += $X ; $Gh [ $z ] = array_keys ( $X );} return
array ( 'possible_drivers' => array ( " json + allow_url_fopen " ), 'jush' => " elastic " , 'operators' => array ( " = " , " query " ), 'functions' => array (), 'grouping' => array (), 'edit_functions' => array ( array ( " json " )), 'types' => $U , 'structured_types' => $Gh ,);}} class
Adminer { var $operators ; function
name (){ return " <a href='https://www.adminer.org/' " . target_blank () . " id='h1'>Adminer</a> " ;} function
credentials (){ return
array ( SERVER , $_GET [ " username " ], get_password ());} function
connectSsl (){} function
permanentLogin ( $i = false ){ return
password_file ( $i );} function
bruteForceKey (){ return $_SERVER [ " REMOTE_ADDR " ];} function
serverName ( $M ){ return
h ( $M );} function
database (){ return
DB ;} function
databases ( $dd = true ){ return
get_databases ( $dd );} function
schemas (){ return
schemas ();} function
queryTimeout (){ return
2 ;} function
headers (){} function
csp (){ return
csp ();} function
head (){ return
true ;} function
css (){ $I = array (); $q = " adminer.css " ; if ( file_exists ( $q )) $I [] = " $q ?v= " . crc32 ( file_get_contents ( $q )); return $I ;} function
loginForm (){ global $ic ; echo " <table cellspacing='0' class='layout'> \n " , $this -> loginFormField ( 'driver' , '<tr><th>' . 'System' . '<td>' , html_select ( " auth[driver] " , $ic , DRIVER , " loginDriver(this); " ) . " \n " ), $this -> loginFormField ( 'server' , '<tr><th>' . 'Server' . '<td>' , '<input name="auth[server]" value="' . h ( SERVER ) . '" title="hostname[:port]" placeholder="localhost" autocapitalize="off">' . " \n " ), $this -> loginFormField ( 'username' , '<tr><th>' . 'Username' . '<td>' , '<input name="auth[username]" id="username" value="' . h ( $_GET [ " username " ]) . '" autocomplete="username" autocapitalize="off">' . script ( " focus(qs('#username')); qs('#username').form['auth[driver]'].onchange(); " )), $this -> loginFormField ( 'password' , '<tr><th>' . 'Password' . '<td>' , '<input type="password" name="auth[password]" autocomplete="current-password">' . " \n " ), $this -> loginFormField ( 'db' , '<tr><th>' . 'Database' . '<td>' , '<input name="auth[db]" value="' . h ( $_GET [ " db " ]) . '" autocapitalize="off">' . " \n " ), " </table> \n " , " <p><input type='submit' value=' " . 'Login' . " '> \n " , checkbox ( " auth[permanent] " , 1 , $_COOKIE [ " adminer_permanent " ], 'Permanent login' ) . " \n " ;} function
loginFormField ( $D , $_d , $Y ){ return $_d . $Y ;} function
2022-03-22 10:53:12 +01:00
login ( $xe , $F ){ return true ; if ( $F == " " ) return
sprintf ( 'Adminer does not support accessing a database without a password, <a href="https://www.adminer.org/en/password/"%s>more information</a>.' , target_blank ()); return
2021-05-20 10:52:49 +02:00
true ;} function
tableName ( $Nh ){ return
h ( $Nh [ " Name " ]);} function
fieldName ( $o , $zf = 0 ){ return '<span title="' . h ( $o [ " full_type " ]) . '">' . h ( $o [ " field " ]) . '</span>' ;} function
selectLinks ( $Nh , $N = " " ){ global $y , $m ; echo '<p class="links">' ; $we = array ( " select " => 'Select data' ); if ( support ( " table " ) || support ( " indexes " )) $we [ " table " ] = 'Show structure' ; if ( support ( " table " )){ if ( is_view ( $Nh )) $we [ " view " ] = 'Alter view' ; else $we [ " create " ] = 'Alter table' ;} if ( $N !== null ) $we [ " edit " ] = 'New item' ; $D = $Nh [ " Name " ]; foreach ( $we
as $z => $X ) echo " <a href=' " . h ( ME ) . " $z = " . urlencode ( $D ) . ( $z == " edit " ? $N : " " ) . " ' " . bold ( isset ( $_GET [ $z ])) . " > $X </a> " ; echo
doc_link ( array ( $y => $m -> tableHelp ( $D )), " ? " ), " \n " ;} function
foreignKeys ( $Q ){ return
foreign_keys ( $Q );} function
backwardKeys ( $Q , $Mh ){ return
array ();} function
backwardKeysPrint ( $Na , $J ){} function
selectQuery ( $G , $Ch , $Rc = false ){ global $y , $m ; $I = " </p> \n " ; if ( ! $Rc && ( $bj = $m -> warnings ())){ $u = " warnings " ; $I = " , <a href='# $u '> " . 'Warnings' . " </a> " . script ( " qsl('a').onclick = partial(toggle, ' $u '); " , " " ) . " $I <div id=' $u ' class='hidden'> \n $bj </div> \n " ;} return " <p><code class='jush- $y '> " . h ( str_replace ( " \n " , " " , $G )) . " </code> <span class='time'>( " . format_time ( $Ch ) . " )</span> " . ( support ( " sql " ) ? " <a href=' " . h ( ME ) . " sql= " . urlencode ( $G ) . " '> " . 'Edit' . " </a> " : " " ) . $I ;} function
sqlCommandQuery ( $G ){ return
shorten_utf8 ( trim ( $G ), 1000 );} function
rowDescription ( $Q ){ return " " ;} function
rowDescriptions ( $K , $gd ){ return $K ;} function
selectLink ( $X , $o ){} function
selectVal ( $X , $A , $o , $Gf ){ $I = ( $X === null ? " <i>NULL</i> " : ( preg_match ( " ~char|binary|boolean~ " , $o [ " type " ]) &&! preg_match ( " ~var~ " , $o [ " type " ]) ? " <code> $X </code> " : $X )); if ( preg_match ( '~blob|bytea|raw|file~' , $o [ " type " ]) &&! is_utf8 ( $X )) $I = " <i> " . lang ( array ( '%d byte' , '%d bytes' ), strlen ( $Gf )) . " </i> " ; if ( preg_match ( '~json~' , $o [ " type " ])) $I = " <code class='jush-js'> $I </code> " ; return ( $A ? " <a href=' " . h ( $A ) . " ' " . ( is_url ( $A ) ? target_blank () : " " ) . " > $I </a> " : $I );} function
editVal ( $X , $o ){ return $X ;} function
tableStructurePrint ( $p ){ echo " <div class='scrollable'> \n " , " <table cellspacing='0' class='nowrap'> \n " , " <thead><tr><th> " . 'Column' . " <td> " . 'Type' . ( support ( " comment " ) ? " <td> " . 'Comment' : " " ) . " </thead> \n " ; foreach ( $p
as $o ){ echo " <tr " . odd () . " ><th> " . h ( $o [ " field " ]), " <td><span title=' " . h ( $o [ " collation " ]) . " '> " . h ( $o [ " full_type " ]) . " </span> " ,( $o [ " null " ] ? " <i>NULL</i> " : " " ),( $o [ " auto_increment " ] ? " <i> " . 'Auto Increment' . " </i> " : " " ),( isset ( $o [ " default " ]) ? " <span title=' " . 'Default value' . " '>[<b> " . h ( $o [ " default " ]) . " </b>]</span> " : " " ),( support ( " comment " ) ? " <td> " . h ( $o [ " comment " ]) : " " ), " \n " ;} echo " </table> \n " , " </div> \n " ;} function
tableIndexesPrint ( $x ){ echo " <table cellspacing='0'> \n " ; foreach ( $x
as $D => $w ){ ksort ( $w [ " columns " ]); $mg = array (); foreach ( $w [ " columns " ] as $z => $X ) $mg [] = " <i> " . h ( $X ) . " </i> " . ( $w [ " lengths " ][ $z ] ? " ( " . $w [ " lengths " ][ $z ] . " ) " : " " ) . ( $w [ " descs " ][ $z ] ? " DESC " : " " ); echo " <tr title=' " . h ( $D ) . " '><th> $w[type] <td> " . implode ( " , " , $mg ) . " \n " ;} echo " </table> \n " ;} function
selectColumnsPrint ( $L , $f ){ global $nd , $td ; print_fieldset ( " select " , 'Select' , $L ); $t = 0 ; $L [ " " ] = array (); foreach ( $L
as $z => $X ){ $X = $_GET [ " columns " ][ $z ]; $e = select_input ( " name='columns[ $t ][col]' " , $f , $X [ " col " ],( $z !== " " ? " selectFieldChange " : " selectAddRow " )); echo " <div> " . ( $nd || $td ? " <select name='columns[ $t ][fun]'> " . optionlist ( array ( - 1 => " " ) + array_filter ( array ( 'Functions' => $nd , 'Aggregation' => $td )), $X [ " fun " ]) . " </select> " . on_help ( " getTarget(event).value && getTarget(event).value.replace(/ | \$ /, '(') + ')' " , 1 ) . script ( " qsl('select').onchange = function () { helpClose(); " . ( $z !== " " ? " " : " qsl('select, input', this.parentNode).onchange(); " ) . " }; " , " " ) . " ( $e ) " : $e ) . " </div> \n " ; $t ++ ;} echo " </div></fieldset> \n " ;} function
selectSearchPrint ( $Z , $f , $x ){ print_fieldset ( " search " , 'Search' , $Z ); foreach ( $x
as $t => $w ){ if ( $w [ " type " ] == " FULLTEXT " ){ echo " <div>(<i> " . implode ( " </i>, <i> " , array_map ( 'h' , $w [ " columns " ])) . " </i>) AGAINST " , " <input type='search' name='fulltext[ $t ]' value=' " . h ( $_GET [ " fulltext " ][ $t ]) . " '> " , script ( " qsl('input').oninput = selectFieldChange; " , " " ), checkbox ( " boolean[ $t ] " , 1 , isset ( $_GET [ " boolean " ][ $t ]), " BOOL " ), " </div> \n " ;}} $Ya = " this.parentNode.firstChild.onchange(); " ; foreach ( array_merge (( array ) $_GET [ " where " ], array ( array ())) as $t => $X ){ if ( ! $X || ( " $X[col] $X[val] " != " " && in_array ( $X [ " op " ], $this -> operators ))){ echo " <div> " . select_input ( " name='where[ $t ][col]' " , $f , $X [ " col " ],( $X ? " selectFieldChange " : " selectAddRow " ), " ( " . 'anywhere' . " ) " ), html_select ( " where[ $t ][op] " , $this -> operators , $X [ " op " ], $Ya ), " <input type='search' name='where[ $t ][val]' value=' " . h ( $X [ " val " ]) . " '> " , script ( " mixin(qsl('input'), { oninput: function () { $Ya }, onkeydown: selectSearchKeydown, onsearch: selectSearchSearch}); " , " " ), " </div> \n " ;}} echo " </div></fieldset> \n " ;} function
selectOrderPrint ( $zf , $f , $x ){ print_fieldset ( " sort " , 'Sort' , $zf ); $t = 0 ; foreach (( array ) $_GET [ " order " ] as $z => $X ){ if ( $X != " " ){ echo " <div> " . select_input ( " name='order[ $t ]' " , $f , $X , " selectFieldChange " ), checkbox ( " desc[ $t ] " , 1 , isset ( $_GET [ " desc " ][ $z ]), 'descending' ) . " </div> \n " ; $t ++ ;}} echo " <div> " . select_input ( " name='order[ $t ]' " , $f , " " , " selectAddRow " ), checkbox ( " desc[ $t ] " , 1 , false , 'descending' ) . " </div> \n " , " </div></fieldset> \n " ;} function
selectLimitPrint ( $_ ){ echo " <fieldset><legend> " . 'Limit' . " </legend><div> " ; echo " <input type='number' name='limit' class='size' value=' " . h ( $_ ) . " '> " , script ( " qsl('input').oninput = selectFieldChange; " , " " ), " </div></fieldset> \n " ;} function
selectLengthPrint ( $ci ){ if ( $ci !== null ){ echo " <fieldset><legend> " . 'Text length' . " </legend><div> " , " <input type='number' name='text_length' class='size' value=' " . h ( $ci ) . " '> " , " </div></fieldset> \n " ;}} function
selectActionPrint ( $x ){ echo " <fieldset><legend> " . 'Action' . " </legend><div> " , " <input type='submit' value=' " . 'Select' . " '> " , " <span id='noindex' title=' " . 'Full table scan' . " '></span> " , " <script " . nonce () . " > \n " , " var indexColumns = " ; $f = array (); foreach ( $x
as $w ){ $Ob = reset ( $w [ " columns " ]); if ( $w [ " type " ] != " FULLTEXT " && $Ob ) $f [ $Ob ] = 1 ;} $f [ " " ] = 1 ; foreach ( $f
as $z => $X ) json_row ( $z ); echo " ; \n " , " selectFieldChange.call(qs('#form')['select']); \n " , " </script> \n " , " </div></fieldset> \n " ;} function
selectCommandPrint (){ return ! information_schema ( DB );} function
selectImportPrint (){ return ! information_schema ( DB );} function
selectEmailPrint ( $vc , $f ){} function
selectColumnsProcess ( $f , $x ){ global $nd , $td ; $L = array (); $qd = array (); foreach (( array ) $_GET [ " columns " ] as $z => $X ){ if ( $X [ " fun " ] == " count " || ( $X [ " col " ] != " " && ( ! $X [ " fun " ] || in_array ( $X [ " fun " ], $nd ) || in_array ( $X [ " fun " ], $td )))){ $L [ $z ] = apply_sql_function ( $X [ " fun " ],( $X [ " col " ] != " " ? idf_escape ( $X [ " col " ]) : " * " )); if ( ! in_array ( $X [ " fun " ], $td )) $qd [] = $L [ $z ];}} return
array ( $L , $qd );} function
selectSearchProcess ( $p , $x ){ global $g , $m ; $I = array (); foreach ( $x
as $t => $w ){ if ( $w [ " type " ] == " FULLTEXT " && $_GET [ " fulltext " ][ $t ] != " " ) $I [] = " MATCH ( " . implode ( " , " , array_map ( 'idf_escape' , $w [ " columns " ])) . " ) AGAINST ( " . q ( $_GET [ " fulltext " ][ $t ]) . ( isset ( $_GET [ " boolean " ][ $t ]) ? " IN BOOLEAN MODE " : " " ) . " ) " ;} foreach (( array ) $_GET [ " where " ] as $z => $X ){ if ( " $X[col] $X[val] " != " " && in_array ( $X [ " op " ], $this -> operators )){ $ig = " " ; $ub = " $X[op] " ; if ( preg_match ( '~IN$~' , $X [ " op " ])){ $Jd = process_length ( $X [ " val " ]); $ub .= " " . ( $Jd != " " ? $Jd : " (NULL) " );} elseif ( $X [ " op " ] == " SQL " ) $ub = " $X[val] " ; elseif ( $X [ " op " ] == " LIKE %% " ) $ub = " LIKE " . $this -> processInput ( $p [ $X [ " col " ]], " % $X[val] % " ); elseif ( $X [ " op " ] == " ILIKE %% " ) $ub = " ILIKE " . $this -> processInput ( $p [ $X [ " col " ]], " % $X[val] % " ); elseif ( $X [ " op " ] == " FIND_IN_SET " ){ $ig = " $X[op] ( " . q ( $X [ " val " ]) . " , " ; $ub = " ) " ;} elseif ( ! preg_match ( '~NULL$~' , $X [ " op " ])) $ub .= " " . $this -> processInput ( $p [ $X [ " col " ]], $X [ " val " ]); if ( $X [ " col " ] != " " ) $I [] = $ig . $m -> convertSearch ( idf_escape ( $X [ " col " ]), $X , $p [ $X [ " col " ]]) . $ub ; else { $nb = array (); foreach ( $p
as $D => $o ){ if (( preg_match ( '~^[-\d.' . ( preg_match ( '~IN$~' , $X [ " op " ]) ? ',' : '' ) . ']+$~' , $X [ " val " ]) ||! preg_match ( '~' . number_type () . '|bit~' , $o [ " type " ])) && ( ! preg_match ( " ~[ \x80 - \xFF ]~ " , $X [ " val " ]) || preg_match ( '~char|text|enum|set~' , $o [ " type " ])) && ( ! preg_match ( '~date|timestamp~' , $o [ " type " ]) || preg_match ( '~^\d+-\d+-\d+~' , $X [ " val " ]))) $nb [] = $ig . $m -> convertSearch ( idf_escape ( $D ), $X , $o ) . $ub ;} $I [] = ( $nb ? " ( " . implode ( " OR " , $nb ) . " ) " : " 1 = 0 " );}}} return $I ;} function
selectOrderProcess ( $p , $x ){ $I = array (); foreach (( array ) $_GET [ " order " ] as $z => $X ){ if ( $X != " " ) $I [] = ( preg_match ( '~^((COUNT\(DISTINCT |[A-Z0-9_]+\()(`(?:[^`]|``)+`|"(?:[^"]|"")+")\)|COUNT\(\*\))$~' , $X ) ? $X : idf_escape ( $X )) . ( isset ( $_GET [ " desc " ][ $z ]) ? " DESC " : " " );} return $I ;} function
selectLimitProcess (){ return ( isset ( $_GET [ " limit " ]) ? $_GET [ " limit " ] : " 50 " );} function
selectLengthProcess (){ return ( isset ( $_GET [ " text_length " ]) ? $_GET [ " text_length " ] : " 100 " );} function
selectEmailProcess ( $Z , $gd ){ return
false ;} function
selectQueryBuild ( $L , $Z , $qd , $zf , $_ , $E ){ return " " ;} function
2022-03-22 10:53:12 +01:00
messageQuery ( $G , $di , $Rc = false ){ global $y , $m ; restart_session (); $Ad =& get_session ( " queries " ); if ( ! $Ad [ $_GET [ " db " ]]) $Ad [ $_GET [ " db " ]] = array (); if ( strlen ( $G ) > 1e6 ) $G = preg_replace ( '~[\x80-\xFF]+$~' , '' , substr ( $G , 0 , 1e6 )) . " \n … " ; $Ad [ $_GET [ " db " ]][] = array ( $G , time (), $di ); $_h = " sql- " . count ( $Ad [ $_GET [ " db " ]]); $I = " <a href='# $_h ' class='toggle'> " . 'SQL command' . " </a> \n " ; if ( ! $Rc && ( $bj = $m -> warnings ())){ $u = " warnings- " . count ( $Ad [ $_GET [ " db " ]]); $I = " <a href='# $u ' class='toggle'> " . 'Warnings' . " </a>, $I <div id=' $u ' class='hidden'> \n $bj </div> \n " ;} return " <span class='time'> " .@ date ( " H:i:s " ) . " </span> " . " $I <div id=' $_h ' class='hidden'><pre><code class='jush- $y '> " . shorten_utf8 ( $G , 1000 ) . " </code></pre> " . ( $di ? " <span class='time'>( $di )</span> " : '' ) . ( support ( " sql " ) ? '<p><a href="' . h ( str_replace ( " db= " . urlencode ( DB ), " db= " . urlencode ( $_GET [ " db " ]), ME ) . 'sql=&history=' . ( count ( $Ad [ $_GET [ " db " ]]) - 1 )) . '">' . 'Edit' . '</a>' : '' ) . '</div>' ;} function
2021-05-20 10:52:49 +02:00
editRowPrint ( $Q , $p , $J , $Ii ){} function
editFunctions ( $o ){ global $qc ; $I = ( $o [ " null " ] ? " NULL/ " : " " ); $Ii = isset ( $_GET [ " select " ]) || where ( $_GET ); foreach ( $qc
as $z => $nd ){ if ( ! $z || ( ! isset ( $_GET [ " call " ]) && $Ii )){ foreach ( $nd
as $Zf => $X ){ if ( ! $Zf || preg_match ( " ~ $Zf ~ " , $o [ " type " ])) $I .= " / $X " ;}} if ( $z &&! preg_match ( '~set|blob|bytea|raw|file|bool~' , $o [ " type " ])) $I .= " /SQL " ;} if ( $o [ " auto_increment " ] &&! $Ii ) $I = 'Auto Increment' ; return
explode ( " / " , $I );} function
editInput ( $Q , $o , $Ha , $Y ){ if ( $o [ " type " ] == " enum " ) return ( isset ( $_GET [ " select " ]) ? " <label><input type='radio' $Ha value='-1' checked><i> " . 'original' . " </i></label> " : " " ) . ( $o [ " null " ] ? " <label><input type='radio' $Ha value='' " . ( $Y !== null || isset ( $_GET [ " select " ]) ? " " : " checked " ) . " ><i>NULL</i></label> " : " " ) . enum_input ( " radio " , $Ha , $o , $Y , 0 ); return " " ;} function
editHint ( $Q , $o , $Y ){ return " " ;} function
processInput ( $o , $Y , $s = " " ){ if ( $s == " SQL " ) return $Y ; $D = $o [ " field " ]; $I = q ( $Y ); if ( preg_match ( '~^(now|getdate|uuid)$~' , $s )) $I = " $s () " ; elseif ( preg_match ( '~^current_(date|timestamp)$~' , $s )) $I = $s ; elseif ( preg_match ( '~^([+-]|\|\|)$~' , $s )) $I = idf_escape ( $D ) . " $s $I " ; elseif ( preg_match ( '~^[+-] interval$~' , $s )) $I = idf_escape ( $D ) . " $s " . ( preg_match ( " ~^( \\ d+|'[0-9.: -]') [A-Z_]+ \$ ~i " , $Y ) ? $Y : $I ); elseif ( preg_match ( '~^(addtime|subtime|concat)$~' , $s )) $I = " $s ( " . idf_escape ( $D ) . " , $I ) " ; elseif ( preg_match ( '~^(md5|sha1|password|encrypt)$~' , $s )) $I = " $s ( $I ) " ; return
unconvert_field ( $o , $I );} function
dumpOutput (){ $I = array ( 'text' => 'open' , 'file' => 'save' ); if ( function_exists ( 'gzencode' )) $I [ 'gz' ] = 'gzip' ; return $I ;} function
dumpFormat (){ return
array ( 'sql' => 'SQL' , 'csv' => 'CSV,' , 'csv;' => 'CSV;' , 'tsv' => 'TSV' );} function
dumpDatabase ( $l ){} function
dumpTable ( $Q , $Hh , $ce = 0 ){ if ( $_POST [ " format " ] != " sql " ){ echo " \xef \xbb \xbf " ; if ( $Hh ) dump_csv ( array_keys ( fields ( $Q )));} else { if ( $ce == 2 ){ $p = array (); foreach ( fields ( $Q ) as $D => $o ) $p [] = idf_escape ( $D ) . " $o[full_type] " ; $i = " CREATE TABLE " . table ( $Q ) . " ( " . implode ( " , " , $p ) . " ) " ;} else $i = create_sql ( $Q , $_POST [ " auto_increment " ], $Hh ); set_utf8mb4 ( $i ); if ( $Hh && $i ){ if ( $Hh == " DROP+CREATE " || $ce == 1 ) echo " DROP " . ( $ce == 2 ? " VIEW " : " TABLE " ) . " IF EXISTS " . table ( $Q ) . " ; \n " ; if ( $ce == 1 ) $i = remove_definer ( $i ); echo " $i ; \n \n " ;}}} function
dumpData ( $Q , $Hh , $G ){ global $g , $y ; $Ee = ( $y == " sqlite " ? 0 : 1048576 ); if ( $Hh ){ if ( $_POST [ " format " ] == " sql " ){ if ( $Hh == " TRUNCATE+INSERT " ) echo
truncate_sql ( $Q ) . " ; \n " ; $p = fields ( $Q );} $H = $g -> query ( $G , 1 ); if ( $H ){ $Vd = " " ; $Va = " " ; $he = array (); $Jh = " " ; $Uc = ( $Q != '' ? 'fetch_assoc' : 'fetch_row' ); while ( $J = $H -> $Uc ()){ if ( ! $he ){ $Ti = array (); foreach ( $J
as $X ){ $o = $H -> fetch_field (); $he [] = $o -> name ; $z = idf_escape ( $o -> name ); $Ti [] = " $z = VALUES( $z ) " ;} $Jh = ( $Hh == " INSERT+UPDATE " ? " \n ON DUPLICATE KEY UPDATE " . implode ( " , " , $Ti ) : " " ) . " ; \n " ;} if ( $_POST [ " format " ] != " sql " ){ if ( $Hh == " table " ){ dump_csv ( $he ); $Hh = " INSERT " ;} dump_csv ( $J );} else { if ( ! $Vd ) $Vd = " INSERT INTO " . table ( $Q ) . " ( " . implode ( " , " , array_map ( 'idf_escape' , $he )) . " ) VALUES " ; foreach ( $J
as $z => $X ){ $o = $p [ $z ]; $J [ $z ] = ( $X !== null ? unconvert_field ( $o , preg_match ( number_type (), $o [ " type " ]) &&! preg_match ( '~\[~' , $o [ " full_type " ]) && is_numeric ( $X ) ? $X : q (( $X === false ? 0 : $X ))) : " NULL " );} $Xg = ( $Ee ? " \n " : " " ) . " ( " . implode ( " , \t " , $J ) . " ) " ; if ( ! $Va ) $Va = $Vd . $Xg ; elseif ( strlen ( $Va ) + 4 + strlen ( $Xg ) + strlen ( $Jh ) < $Ee ) $Va .= " , $Xg " ; else { echo $Va . $Jh ; $Va = $Vd . $Xg ;}}} if ( $Va ) echo $Va . $Jh ;} elseif ( $_POST [ " format " ] == " sql " ) echo " -- " . str_replace ( " \n " , " " , $g -> error ) . " \n " ;}} function
dumpFilename ( $Fd ){ return
friendly_url ( $Fd != " " ? $Fd : ( SERVER != " " ? SERVER : " localhost " ));} function
dumpHeaders ( $Fd , $Se = false ){ $Jf = $_POST [ " output " ]; $Mc = ( preg_match ( '~sql~' , $_POST [ " format " ]) ? " sql " : ( $Se ? " tar " : " csv " )); header ( " Content-Type: " . ( $Jf == " gz " ? " application/x-gzip " : ( $Mc == " tar " ? " application/x-tar " : ( $Mc == " sql " || $Jf != " file " ? " text/plain " : " text/csv " ) . " ; charset=utf-8 " ))); if ( $Jf == " gz " ) ob_start ( 'ob_gzencode' , 1e6 ); return $Mc ;} function
importServerPath (){ return " adminer.sql " ;} function
homepage (){ echo '<p class="links">' . ( $_GET [ " ns " ] == " " && support ( " database " ) ? '<a href="' . h ( ME ) . 'database=">' . 'Alter database' . " </a> \n " : " " ),( support ( " scheme " ) ? " <a href=' " . h ( ME ) . " scheme='> " . ( $_GET [ " ns " ] != " " ? 'Alter schema' : 'Create schema' ) . " </a> \n " : " " ),( $_GET [ " ns " ] !== " " ? '<a href="' . h ( ME ) . 'schema=">' . 'Database schema' . " </a> \n " : " " ),( support ( " privileges " ) ? " <a href=' " . h ( ME ) . " privileges='> " . 'Privileges' . " </a> \n " : " " ); return
true ;} function
navigation ( $Re ){ global $ia , $y , $ic , $g ; echo ' < h1 >
',$this->name(),' < span class = " version " > ',$ia,' </ span >
< a href = " https://www.adminer.org/#download " ',target_blank(),' id = " version " > ',(version_compare($ia,$_COOKIE["adminer_version"])<0?h($_COOKIE["adminer_version"]):""),' </ a >
</ h1 >
' ; if ( $Re == " auth " ){ $Jf = " " ; foreach (( array ) $_SESSION [ " pwds " ] as $Vi => $lh ){ foreach ( $lh
as $M => $Qi ){ foreach ( $Qi
as $V => $F ){ if ( $F !== null ){ $Ub = $_SESSION [ " db " ][ $Vi ][ $M ][ $V ]; foreach (( $Ub ? array_keys ( $Ub ) : array ( " " )) as $l ) $Jf .= " <li><a href=' " . h ( auth_url ( $Vi , $M , $V , $l )) . " '>( $ic[$Vi] ) " . h ( $V . ( $M != " " ? " @ " . $this -> serverName ( $M ) : " " ) . ( $l != " " ? " - $l " : " " )) . " </a> \n " ;}}}} if ( $Jf ) echo " <ul id='logins'> \n $Jf </ul> \n " . script ( " mixin(qs('#logins'), { onmouseover: menuOver, onmouseout: menuOut}); " );} else { $S = array (); if ( $_GET [ " ns " ] !== " " &&! $Re && DB != " " ){ $g -> select_db ( DB ); $S = table_status ( '' , true );} echo
script_src ( preg_replace ( " ~ \\ ?.*~ " , " " , ME ) . " ?file=jush.js&version=4.8.1 " ); if ( support ( " sql " )){ echo '<script' , nonce (), ' >
' ; if ( $S ){ $we = array (); foreach ( $S
as $Q => $T ) $we [] = preg_quote ( $Q , '/' ); echo " var jushLinks = { $y : [ ' " . js_escape ( ME ) . ( support ( " table " ) ? " table= " : " select= " ) . " \$ &', / \\ b( " . implode ( " | " , $we ) . " ) \\ b/g ] }; \n " ; foreach ( array ( " bac " , " bra " , " sqlite_quo " , " mssql_bra " ) as $X ) echo " jushLinks. $X = jushLinks. $y ; \n " ;} $kh = $g -> server_info ; echo 'bodyLoad(\'' ,( is_object ( $g ) ? preg_replace ( '~^(\d\.?\d).*~s' , '\1' , $kh ) : " " ), '\'' ,( preg_match ( '~MariaDB~' , $kh ) ? " , true " : " " ), ' );
</ script >
';}$this->databasesPrint($Re);if(DB==""||!$Re){echo"<p class=' links '>".(support("sql")?"<a href=' " .h(ME). " sql = '".bold(isset($_GET["sql"])&&!isset($_GET["import"])).">".' SQL command '."</a>\n<a href=' " .h(ME). " import = '".bold(isset($_GET["import"])).">".' Import '."</a>\n":"")."";if(support("dump"))echo"<a href=' " .h(ME). " dump = " .urlencode(isset( $_GET["table"] )? $_GET["table"] : $_GET["select"] ). " ' id=' dump '".bold(isset($_GET["dump"])).">".' Export '."</a>\n";}if($_GET["ns"]!==""&&!$Re&&DB!=""){echo' < a href = " '.h(ME).'create= " '.bold($_GET["create"]==="").">".' Create table '."</a>\n";if(!$S)echo"<p class=' message '>".' No tables . ' . " \n " ; else $this -> tablesPrint ( $S );}}} function
databasesPrint ( $Re ){ global $b , $g ; $k = $this -> databases (); if ( DB && $k &&! in_array ( DB , $k )) array_unshift ( $k , DB ); echo ' < form action = " " >
< p id = " dbs " >
';hidden_fields_get();$Sb=script("mixin(qsl(' select '), {onmousedown: dbMouseDown, onchange: dbChange});");echo"<span title=' " .'database'. " '>".' DB '."</span>: ".($k?"<select name=' db '>".optionlist(array(""=>"")+$k,DB)."</select>$Sb":"<input name=' db ' value=' " .h(DB). " ' autocapitalize=' off '>\n"),"<input type=' submit ' value=' " .'Use'. " '".($k?" class=' hidden '":"").">\n";if(support("scheme")){if($Re!="db"&&DB!=""&&$g->select_db(DB)){echo"<br>".' Schema '.": <select name=' ns '>".optionlist(array(""=>"")+$b->schemas(),$_GET["ns"])."</select>$Sb";if($_GET["ns"]!="")set_schema($_GET["ns"]);}}foreach(array("import","sql","schema","dump","privileges")as$X){if(isset($_GET[$X])){echo"<input type=' hidden ' name=' $X ' value=' ' > " ;break;}}echo " </ p ></ form > \n " ;}function
tablesPrint ( $S ){ echo " <ul id='tables'> " . script ( " mixin(qs('#tables'), { onmouseover: menuOver, onmouseout: menuOut}); " ); foreach ( $S
as $Q => $O ){ $D = $this -> tableName ( $O ); if ( $D != " " ){ echo '<li><a href="' . h ( ME ) . 'select=' . urlencode ( $Q ) . '"' . bold ( $_GET [ " select " ] == $Q || $_GET [ " edit " ] == $Q , " select " ) . " title=' " . 'Select data' . " '> " . 'select' . " </a> " ,( support ( " table " ) || support ( " indexes " ) ? '<a href="' . h ( ME ) . 'table=' . urlencode ( $Q ) . '"' . bold ( in_array ( $Q , array ( $_GET [ " table " ], $_GET [ " create " ], $_GET [ " indexes " ], $_GET [ " foreign " ], $_GET [ " trigger " ])),( is_view ( $O ) ? " view " : " structure " )) . " title=' " . 'Show structure' . " '> $D </a> " : " <span> $D </span> " ) . " \n " ;}} echo " </ul> \n " ;}} $b = ( function_exists ( 'adminer_object' ) ? adminer_object () : new
Adminer ); $ic = array ( " server " => " MySQL " ) + $ic ; if ( ! defined ( " DRIVER " )){ define ( " DRIVER " , " server " ); if ( extension_loaded ( " mysqli " )){ class
Min_DB
extends
MySQLi { var $extension = " MySQLi " ; function
__construct (){ parent :: init ();} function
connect ( $M = " " , $V = " " , $F = " " , $j = null , $dg = null , $th = null ){ global $b ; mysqli_report ( MYSQLI_REPORT_OFF ); list ( $Dd , $dg ) = explode ( " : " , $M , 2 ); $Bh = $b -> connectSsl (); if ( $Bh ) $this -> ssl_set ( $Bh [ 'key' ], $Bh [ 'cert' ], $Bh [ 'ca' ], '' , '' ); $I =@ $this -> real_connect (( $M != " " ? $Dd : ini_get ( " mysqli.default_host " )),( $M . $V != " " ? $V : ini_get ( " mysqli.default_user " )),( $M . $V . $F != " " ? $F : ini_get ( " mysqli.default_pw " )), $j ,( is_numeric ( $dg ) ? $dg : ini_get ( " mysqli.default_port " )),( ! is_numeric ( $dg ) ? $dg : $th ),( $Bh ? 64 : 0 )); $this -> options ( MYSQLI_OPT_LOCAL_INFILE , false ); return $I ;} function
set_charset ( $Za ){ if ( parent :: set_charset ( $Za )) return
true ; parent :: set_charset ( 'utf8' ); return $this -> query ( " SET NAMES $Za " );} function
result ( $G , $o = 0 ){ $H = $this -> query ( $G ); if ( ! $H ) return
false ; $J = $H -> fetch_array (); return $J [ $o ];} function
quote ( $P ){ return " ' " . $this -> escape_string ( $P ) . " ' " ;}}} elseif ( extension_loaded ( " mysql " ) &&! (( ini_bool ( " sql.safe_mode " ) || ini_bool ( " mysql.allow_local_infile " )) && extension_loaded ( " pdo_mysql " ))){ class
Min_DB { var $extension = " MySQL " , $server_info , $affected_rows , $errno , $error , $_link , $_result ; function
connect ( $M , $V , $F ){ if ( ini_bool ( " mysql.allow_local_infile " )){ $this -> error = sprintf ( 'Disable %s or enable %s or %s extensions.' , " 'mysql.allow_local_infile' " , " MySQLi " , " PDO_MySQL " ); return
false ;} $this -> _link =@ mysql_connect (( $M != " " ? $M : ini_get ( " mysql.default_host " )),( " $M $V " != " " ? $V : ini_get ( " mysql.default_user " )),( " $M $V $F " != " " ? $F : ini_get ( " mysql.default_password " )), true , 131072 ); if ( $this -> _link ) $this -> server_info = mysql_get_server_info ( $this -> _link ); else $this -> error = mysql_error (); return ( bool ) $this -> _link ;} function
set_charset ( $Za ){ if ( function_exists ( 'mysql_set_charset' )){ if ( mysql_set_charset ( $Za , $this -> _link )) return
true ; mysql_set_charset ( 'utf8' , $this -> _link );} return $this -> query ( " SET NAMES $Za " );} function
quote ( $P ){ return " ' " . mysql_real_escape_string ( $P , $this -> _link ) . " ' " ;} function
select_db ( $j ){ return
mysql_select_db ( $j , $this -> _link );} function
query ( $G , $Bi = false ){ $H =@ ( $Bi ? mysql_unbuffered_query ( $G , $this -> _link ) : mysql_query ( $G , $this -> _link )); $this -> error = " " ; if ( ! $H ){ $this -> errno = mysql_errno ( $this -> _link ); $this -> error = mysql_error ( $this -> _link ); return
false ;} if ( $H === true ){ $this -> affected_rows = mysql_affected_rows ( $this -> _link ); $this -> info = mysql_info ( $this -> _link ); return
true ;} return
new
Min_Result ( $H );} function
multi_query ( $G ){ return $this -> _result = $this -> query ( $G );} function
store_result (){ return $this -> _result ;} function
next_result (){ return
false ;} function
result ( $G , $o = 0 ){ $H = $this -> query ( $G ); if ( ! $H ||! $H -> num_rows ) return
false ; return
mysql_result ( $H -> _result , 0 , $o );}} class
Min_Result { var $num_rows , $_result , $_offset = 0 ; function
__construct ( $H ){ $this -> _result = $H ; $this -> num_rows = mysql_num_rows ( $H );} function
fetch_assoc (){ return
mysql_fetch_assoc ( $this -> _result );} function
fetch_row (){ return
mysql_fetch_row ( $this -> _result );} function
fetch_field (){ $I = mysql_fetch_field ( $this -> _result , $this -> _offset ++ ); $I -> orgtable = $I -> table ; $I -> orgname = $I -> name ; $I -> charsetnr = ( $I -> blob ? 63 : 0 ); return $I ;} function
__destruct (){ mysql_free_result ( $this -> _result );}}} elseif ( extension_loaded ( " pdo_mysql " )){ class
Min_DB
extends
Min_PDO { var $extension = " PDO_MySQL " ; function
connect ( $M , $V , $F ){ global $b ; $xf = array ( PDO :: MYSQL_ATTR_LOCAL_INFILE => false ); $Bh = $b -> connectSsl (); if ( $Bh ){ if ( ! empty ( $Bh [ 'key' ])) $xf [ PDO :: MYSQL_ATTR_SSL_KEY ] = $Bh [ 'key' ]; if ( ! empty ( $Bh [ 'cert' ])) $xf [ PDO :: MYSQL_ATTR_SSL_CERT ] = $Bh [ 'cert' ]; if ( ! empty ( $Bh [ 'ca' ])) $xf [ PDO :: MYSQL_ATTR_SSL_CA ] = $Bh [ 'ca' ];} $this -> dsn ( " mysql:charset=utf8;host= " . str_replace ( " : " , " ;unix_socket= " , preg_replace ( '~:(\d)~' , ';port=\1' , $M )), $V , $F , $xf ); return
true ;} function
set_charset ( $Za ){ $this -> query ( " SET NAMES $Za " );} function
select_db ( $j ){ return $this -> query ( " USE " . idf_escape ( $j ));} function
query ( $G , $Bi = false ){ $this -> pdo -> setAttribute ( PDO :: MYSQL_ATTR_USE_BUFFERED_QUERY , ! $Bi ); return
parent :: query ( $G , $Bi );}}} class
Min_Driver
extends
Min_SQL { function
insert ( $Q , $N ){ return ( $N ? parent :: insert ( $Q , $N ) : queries ( " INSERT INTO " . table ( $Q ) . " () \n VALUES () " ));} function
insertUpdate ( $Q , $K , $kg ){ $f = array_keys ( reset ( $K )); $ig = " INSERT INTO " . table ( $Q ) . " ( " . implode ( " , " , $f ) . " ) VALUES \n " ; $Ti = array (); foreach ( $f
as $z ) $Ti [ $z ] = " $z = VALUES( $z ) " ; $Jh = " \n ON DUPLICATE KEY UPDATE " . implode ( " , " , $Ti ); $Ti = array (); $te = 0 ; foreach ( $K
as $N ){ $Y = " ( " . implode ( " , " , $N ) . " ) " ; if ( $Ti && ( strlen ( $ig ) + $te + strlen ( $Y ) + strlen ( $Jh ) > 1e6 )){ if ( ! queries ( $ig . implode ( " , \n " , $Ti ) . $Jh )) return
false ; $Ti = array (); $te = 0 ;} $Ti [] = $Y ; $te += strlen ( $Y ) + 2 ;} return
queries ( $ig . implode ( " , \n " , $Ti ) . $Jh );} function
slowQuery ( $G , $ei ){ if ( min_version ( '5.7.8' , '10.1.2' )){ if ( preg_match ( '~MariaDB~' , $this -> _conn -> server_info )) return " SET STATEMENT max_statement_time= $ei FOR $G " ; elseif ( preg_match ( '~^(SELECT\b)(.+)~is' , $G , $C )) return " $C[1] /*+ MAX_EXECUTION_TIME( " . ( $ei * 1000 ) . " ) */ $C[2] " ;}} function
convertSearch ( $v , $X , $o ){ return ( preg_match ( '~char|text|enum|set~' , $o [ " type " ]) &&! preg_match ( " ~^utf8~ " , $o [ " collation " ]) && preg_match ( '~[\x80-\xFF]~' , $X [ 'val' ]) ? " CONVERT( $v USING " . charset ( $this -> _conn ) . " ) " : $v );} function
warnings (){ $H = $this -> _conn -> query ( " SHOW WARNINGS " ); if ( $H && $H -> num_rows ){ ob_start (); select ( $H ); return
ob_get_clean ();}} function
tableHelp ( $D ){ $_e = preg_match ( '~MariaDB~' , $this -> _conn -> server_info ); if ( information_schema ( DB )) return
strtolower (( $_e ? " information-schema- $D -table/ " : str_replace ( " _ " , " - " , $D ) . " -table.html " )); if ( DB == " mysql " ) return ( $_e ? " mysql $D -table/ " : " system-database.html " );}} function
idf_escape ( $v ){ return " ` " . str_replace ( " ` " , " `` " , $v ) . " ` " ;} function
table ( $v ){ return
idf_escape ( $v );} function
connect (){ global $b , $U , $Gh ; $g = new
Min_DB ; $Kb = $b -> credentials (); if ( $g -> connect ( $Kb [ 0 ], $Kb [ 1 ], $Kb [ 2 ])){ $g -> set_charset ( charset ( $g )); $g -> query ( " SET sql_quote_show_create = 1, autocommit = 1 " ); if ( min_version ( '5.7.8' , 10.2 , $g )){ $Gh [ 'Strings' ][] = " json " ; $U [ " json " ] = 4294967295 ;} return $g ;} $I = $g -> error ; if ( function_exists ( 'iconv' ) &&! is_utf8 ( $I ) && strlen ( $Xg = iconv ( " windows-1250 " , " utf-8 " , $I )) > strlen ( $I )) $I = $Xg ; return $I ;} function
get_databases ( $dd ){ $I = get_session ( " dbs " ); if ( $I === null ){ $G = ( min_version ( 5 ) ? " SELECT SCHEMA_NAME FROM information_schema.SCHEMATA ORDER BY SCHEMA_NAME " : " SHOW DATABASES " ); $I = ( $dd ? slow_query ( $G ) : get_vals ( $G )); restart_session (); set_session ( " dbs " , $I ); stop_session ();} return $I ;} function
limit ( $G , $Z , $_ , $hf = 0 , $hh = " " ){ return " $G $Z " . ( $_ !== null ? $hh . " LIMIT $_ " . ( $hf ? " OFFSET $hf " : " " ) : " " );} function
limit1 ( $Q , $G , $Z , $hh = " \n " ){ return
limit ( $G , $Z , 1 , 0 , $hh );} function
db_collation ( $l , $lb ){ global $g ; $I = null ; $i = $g -> result ( " SHOW CREATE DATABASE " . idf_escape ( $l ), 1 ); if ( preg_match ( '~ COLLATE ([^ ]+)~' , $i , $C )) $I = $C [ 1 ]; elseif ( preg_match ( '~ CHARACTER SET ([^ ]+)~' , $i , $C )) $I = $lb [ $C [ 1 ]][ - 1 ]; return $I ;} function
engines (){ $I = array (); foreach ( get_rows ( " SHOW ENGINES " ) as $J ){ if ( preg_match ( " ~YES|DEFAULT~ " , $J [ " Support " ])) $I [] = $J [ " Engine " ];} return $I ;} function
logged_user (){ global $g ; return $g -> result ( " SELECT USER() " );} function
tables_list (){ return
get_key_vals ( min_version ( 5 ) ? " SELECT TABLE_NAME, TABLE_TYPE FROM information_schema.TABLES WHERE TABLE_SCHEMA = DATABASE() ORDER BY TABLE_NAME " : " SHOW TABLES " );} function
count_tables ( $k ){ $I = array (); foreach ( $k
as $l ) $I [ $l ] = count ( get_vals ( " SHOW TABLES IN " . idf_escape ( $l ))); return $I ;} function
table_status ( $D = " " , $Sc = false ){ $I = array (); foreach ( get_rows ( $Sc && min_version ( 5 ) ? " SELECT TABLE_NAME AS Name, ENGINE AS Engine, TABLE_COMMENT AS Comment FROM information_schema.TABLES WHERE TABLE_SCHEMA = DATABASE() " . ( $D != " " ? " AND TABLE_NAME = " . q ( $D ) : " ORDER BY Name " ) : " SHOW TABLE STATUS " . ( $D != " " ? " LIKE " . q ( addcslashes ( $D , " %_ \\ " )) : " " )) as $J ){ if ( $J [ " Engine " ] == " InnoDB " ) $J [ " Comment " ] = preg_replace ( '~(?:(.+); )?InnoDB free: .*~' , '\1' , $J [ " Comment " ]); if ( ! isset ( $J [ " Engine " ])) $J [ " Comment " ] = " " ; if ( $D != " " ) return $J ; $I [ $J [ " Name " ]] = $J ;} return $I ;} function
is_view ( $R ){ return $R [ " Engine " ] === null ;} function
fk_support ( $R ){ return
preg_match ( '~InnoDB|IBMDB2I~i' , $R [ " Engine " ]) || ( preg_match ( '~NDB~i' , $R [ " Engine " ]) && min_version ( 5.6 ));} function
fields ( $Q ){ $I = array (); foreach ( get_rows ( " SHOW FULL COLUMNS FROM " . table ( $Q )) as $J ){ preg_match ( '~^([^( ]+)(?:\((.+)\))?( unsigned)?( zerofill)?$~' , $J [ " Type " ], $C ); $I [ $J [ " Field " ]] = array ( " field " => $J [ " Field " ], " full_type " => $J [ " Type " ], " type " => $C [ 1 ], " length " => $C [ 2 ], " unsigned " => ltrim ( $C [ 3 ] . $C [ 4 ]), " default " => ( $J [ " Default " ] != " " || preg_match ( " ~char|set~ " , $C [ 1 ]) ? ( preg_match ( '~text~' , $C [ 1 ]) ? stripslashes ( preg_replace ( " ~^'(.*)' \$ ~ " , '\1' , $J [ " Default " ])) : $J [ " Default " ]) : null ), " null " => ( $J [ " Null " ] == " YES " ), " auto_increment " => ( $J [ " Extra " ] == " auto_increment " ), " on_update " => ( preg_match ( '~^on update (.+)~i' , $J [ " Extra " ], $C ) ? $C [ 1 ] : " " ), " collation " => $J [ " Collation " ], " privileges " => array_flip ( preg_split ( '~, *~' , $J [ " Privileges " ])), " comment " => $J [ " Comment " ], " primary " => ( $J [ " Key " ] == " PRI " ), " generated " => preg_match ( '~^(VIRTUAL|PERSISTENT|STORED)~' , $J [ " Extra " ]),);} return $I ;} function
indexes ( $Q , $h = null ){ $I = array (); foreach ( get_rows ( " SHOW INDEX FROM " . table ( $Q ), $h ) as $J ){ $D = $J [ " Key_name " ]; $I [ $D ][ " type " ] = ( $D == " PRIMARY " ? " PRIMARY " : ( $J [ " Index_type " ] == " FULLTEXT " ? " FULLTEXT " : ( $J [ " Non_unique " ] ? ( $J [ " Index_type " ] == " SPATIAL " ? " SPATIAL " : " INDEX " ) : " UNIQUE " ))); $I [ $D ][ " columns " ][] = $J [ " Column_name " ]; $I [ $D ][ " lengths " ][] = ( $J [ " Index_type " ] == " SPATIAL " ? null : $J [ " Sub_part " ]); $I [ $D ][ " descs " ][] = null ;} return $I ;} function
foreign_keys ( $Q ){ global $g , $pf ; static $Zf = '(?:`(?:[^`]|``)+`|"(?:[^"]|"")+")' ; $I = array (); $Ib = $g -> result ( " SHOW CREATE TABLE " . table ( $Q ), 1 ); if ( $Ib ){ preg_match_all ( " ~CONSTRAINT ( $Zf ) FOREIGN KEY ? \\ (((?: $Zf ,? ?)+) \\ ) REFERENCES ( $Zf )(?: \\ .( $Zf ))? \\ (((?: $Zf ,? ?)+) \\ )(?: ON DELETE ( $pf ))?(?: ON UPDATE ( $pf ))?~ " , $Ib , $Ce , PREG_SET_ORDER ); foreach ( $Ce
as $C ){ preg_match_all ( " ~ $Zf ~ " , $C [ 2 ], $vh ); preg_match_all ( " ~ $Zf ~ " , $C [ 5 ], $Wh ); $I [ idf_unescape ( $C [ 1 ])] = array ( " db " => idf_unescape ( $C [ 4 ] != " " ? $C [ 3 ] : $C [ 4 ]), " table " => idf_unescape ( $C [ 4 ] != " " ? $C [ 4 ] : $C [ 3 ]), " source " => array_map ( 'idf_unescape' , $vh [ 0 ]), " target " => array_map ( 'idf_unescape' , $Wh [ 0 ]), " on_delete " => ( $C [ 6 ] ? $C [ 6 ] : " RESTRICT " ), " on_update " => ( $C [ 7 ] ? $C [ 7 ] : " RESTRICT " ),);}} return $I ;} function
view ( $D ){ global $g ; return
array ( " select " => preg_replace ( '~^(?:[^`]|`[^`]*`)*\s+AS\s+~isU' , '' , $g -> result ( " SHOW CREATE VIEW " . table ( $D ), 1 )));} function
collations (){ $I = array (); foreach ( get_rows ( " SHOW COLLATION " ) as $J ){ if ( $J [ " Default " ]) $I [ $J [ " Charset " ]][ - 1 ] = $J [ " Collation " ]; else $I [ $J [ " Charset " ]][] = $J [ " Collation " ];} ksort ( $I ); foreach ( $I
as $z => $X ) asort ( $I [ $z ]); return $I ;} function
information_schema ( $l ){ return ( min_version ( 5 ) && $l == " information_schema " ) || ( min_version ( 5.5 ) && $l == " performance_schema " );} function
error (){ global $g ; return
h ( preg_replace ( '~^You have an error.*syntax to use~U' , " Syntax error " , $g -> error ));} function
create_database ( $l , $d ){ return
queries ( " CREATE DATABASE " . idf_escape ( $l ) . ( $d ? " COLLATE " . q ( $d ) : " " ));} function
drop_databases ( $k ){ $I = apply_queries ( " DROP DATABASE " , $k , 'idf_escape' ); restart_session (); set_session ( " dbs " , null ); return $I ;} function
rename_database ( $D , $d ){ $I = false ; if ( create_database ( $D , $d )){ $S = array (); $Yi = array (); foreach ( tables_list () as $Q => $T ){ if ( $T == 'VIEW' ) $Yi [] = $Q ; else $S [] = $Q ;} $I = ( ! $S &&! $Yi ) || move_tables ( $S , $Yi , $D ); drop_databases ( $I ? array ( DB ) : array ());} return $I ;} function
auto_increment (){ $La = " PRIMARY KEY " ; if ( $_GET [ " create " ] != " " && $_POST [ " auto_increment_col " ]){ foreach ( indexes ( $_GET [ " create " ]) as $w ){ if ( in_array ( $_POST [ " fields " ][ $_POST [ " auto_increment_col " ]][ " orig " ], $w [ " columns " ], true )){ $La = " " ; break ;} if ( $w [ " type " ] == " PRIMARY " ) $La = " UNIQUE " ;}} return " AUTO_INCREMENT $La " ;} function
alter_table ( $Q , $D , $p , $fd , $rb , $yc , $d , $Ka , $Tf ){ $c = array (); foreach ( $p
as $o ) $c [] = ( $o [ 1 ] ? ( $Q != " " ? ( $o [ 0 ] != " " ? " CHANGE " . idf_escape ( $o [ 0 ]) : " ADD " ) : " " ) . " " . implode ( $o [ 1 ]) . ( $Q != " " ? $o [ 2 ] : " " ) : " DROP " . idf_escape ( $o [ 0 ])); $c = array_merge ( $c , $fd ); $O = ( $rb !== null ? " COMMENT= " . q ( $rb ) : " " ) . ( $yc ? " ENGINE= " . q ( $yc ) : " " ) . ( $d ? " COLLATE " . q ( $d ) : " " ) . ( $Ka != " " ? " AUTO_INCREMENT= $Ka " : " " ); if ( $Q == " " ) return
queries ( " CREATE TABLE " . table ( $D ) . " ( \n " . implode ( " , \n " , $c ) . " \n ) $O $Tf " ); if ( $Q != $D ) $c [] = " RENAME TO " . table ( $D ); if ( $O ) $c [] = ltrim ( $O ); return ( $c || $Tf ? queries ( " ALTER TABLE " . table ( $Q ) . " \n " . implode ( " , \n " , $c ) . $Tf ) : true );} function
alter_indexes ( $Q , $c ){ foreach ( $c
as $z => $X ) $c [ $z ] = ( $X [ 2 ] == " DROP " ? " \n DROP INDEX " . idf_escape ( $X [ 1 ]) : " \n ADD $X[0] " . ( $X [ 0 ] == " PRIMARY " ? " KEY " : " " ) . ( $X [ 1 ] != " " ? idf_escape ( $X [ 1 ]) . " " : " " ) . " ( " . implode ( " , " , $X [ 2 ]) . " ) " ); return
queries ( " ALTER TABLE " . table ( $Q ) . implode ( " , " , $c ));} function
truncate_tables ( $S ){ return
apply_queries ( " TRUNCATE TABLE " , $S );} function
drop_views ( $Yi ){ return
queries ( " DROP VIEW " . implode ( " , " , array_map ( 'table' , $Yi )));} function
drop_tables ( $S ){ return
queries ( " DROP TABLE " . implode ( " , " , array_map ( 'table' , $S )));} function
move_tables ( $S , $Yi , $Wh ){ global $g ; $Jg = array (); foreach ( $S
as $Q ) $Jg [] = table ( $Q ) . " TO " . idf_escape ( $Wh ) . " . " . table ( $Q ); if ( ! $Jg || queries ( " RENAME TABLE " . implode ( " , " , $Jg ))){ $Zb = array (); foreach ( $Yi
as $Q ) $Zb [ table ( $Q )] = view ( $Q ); $g -> select_db ( $Wh ); $l = idf_escape ( DB ); foreach ( $Zb
as $D => $Xi ){ if ( ! queries ( " CREATE VIEW $D AS " . str_replace ( " $l . " , " " , $Xi [ " select " ])) ||! queries ( " DROP VIEW $l . $D " )) return
false ;} return
true ;} return
false ;} function
copy_tables ( $S , $Yi , $Wh ){ queries ( " SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO' " ); foreach ( $S
as $Q ){ $D = ( $Wh == DB ? table ( " copy_ $Q " ) : idf_escape ( $Wh ) . " . " . table ( $Q )); if (( $_POST [ " overwrite " ] &&! queries ( " \n DROP TABLE IF EXISTS $D " )) ||! queries ( " CREATE TABLE $D LIKE " . table ( $Q )) ||! queries ( " INSERT INTO $D SELECT * FROM " . table ( $Q ))) return
false ; foreach ( get_rows ( " SHOW TRIGGERS LIKE " . q ( addcslashes ( $Q , " %_ \\ " ))) as $J ){ $wi = $J [ " Trigger " ]; if ( ! queries ( " CREATE TRIGGER " . ( $Wh == DB ? idf_escape ( " copy_ $wi " ) : idf_escape ( $Wh ) . " . " . idf_escape ( $wi )) . " $J[Timing] $J[Event] ON $D FOR EACH ROW \n $J[Statement] ; " )) return
false ;}} foreach ( $Yi
as $Q ){ $D = ( $Wh == DB ? table ( " copy_ $Q " ) : idf_escape ( $Wh ) . " . " . table ( $Q )); $Xi = view ( $Q ); if (( $_POST [ " overwrite " ] &&! queries ( " DROP VIEW IF EXISTS $D " )) ||! queries ( " CREATE VIEW $D AS $Xi[select] " )) return
false ;} return
true ;} function
trigger ( $D ){ if ( $D == " " ) return
array (); $K = get_rows ( " SHOW TRIGGERS WHERE `Trigger` = " . q ( $D )); return
reset ( $K );} function
triggers ( $Q ){ $I = array (); foreach ( get_rows ( " SHOW TRIGGERS LIKE " . q ( addcslashes ( $Q , " %_ \\ " ))) as $J ) $I [ $J [ " Trigger " ]] = array ( $J [ " Timing " ], $J [ " Event " ]); return $I ;} function
trigger_options (){ return
array ( " Timing " => array ( " BEFORE " , " AFTER " ), " Event " => array ( " INSERT " , " UPDATE " , " DELETE " ), " Type " => array ( " FOR EACH ROW " ),);} function
routine ( $D , $T ){ global $g , $_c , $Td , $U ; $Ba = array ( " bool " , " boolean " , " integer " , " double precision " , " real " , " dec " , " numeric " , " fixed " , " national char " , " national varchar " ); $wh = " (?: \\ s|/ \\ *[ \ s \ S]*? \\ */|(?:#|-- )[^ \n ]* \n ?|-- \r ? \n ) " ; $Ai = " (( " . implode ( " | " , array_merge ( array_keys ( $U ), $Ba )) . " ) \\ b(?: \\ s* \\ (((?:[^' \" )]| $_c )++) \\ ))? \\ s*(zerofill \\ s*)?(unsigned(?: \\ s+zerofill)?)?)(?: \\ s*(?:CHARSET|CHARACTER \\ s+SET) \\ s*[' \" ]?([^' \" \\ s,]+)[' \" ]?)? " ; $Zf = " $wh *( " . ( $T == " FUNCTION " ? " " : $Td ) . " )? \\ s*(?:`((?:[^`]|``)*)` \\ s*| \\ b( \\ S+) \\ s+) $Ai " ; $i = $g -> result ( " SHOW CREATE $T " . idf_escape ( $D ), 2 ); preg_match ( " ~ \\ (((?: $Zf\\s *,?)*) \\ ) \\ s* " . ( $T == " FUNCTION " ? " RETURNS \\ s+ $Ai\\s + " : " " ) . " (.*)~is " , $i , $C ); $p = array (); preg_match_all ( " ~ $Zf\\s *,?~is " , $C [ 1 ], $Ce , PREG_SET_ORDER ); foreach ( $Ce
as $Nf ) $p [] = array ( " field " => str_replace ( " `` " , " ` " , $Nf [ 2 ]) . $Nf [ 3 ], " type " => strtolower ( $Nf [ 5 ]), " length " => preg_replace_callback ( " ~ $_c ~s " , 'normalize_enum' , $Nf [ 6 ]), " unsigned " => strtolower ( preg_replace ( '~\s+~' , ' ' , trim ( " $Nf[8] $Nf[7] " ))), " null " => 1 , " full_type " => $Nf [ 4 ], " inout " => strtoupper ( $Nf [ 1 ]), " collation " => strtolower ( $Nf [ 9 ]),); if ( $T != " FUNCTION " ) return
array ( " fields " => $p , " definition " => $C [ 11 ]); return
array ( " fields " => $p , " returns " => array ( " type " => $C [ 12 ], " length " => $C [ 13 ], " unsigned " => $C [ 15 ], " collation " => $C [ 16 ]), " definition " => $C [ 17 ], " language " => " SQL " ,);} function
routines (){ return
get_rows ( " SELECT ROUTINE_NAME AS SPECIFIC_NAME, ROUTINE_NAME, ROUTINE_TYPE, DTD_IDENTIFIER FROM information_schema.ROUTINES WHERE ROUTINE_SCHEMA = " . q ( DB ));} function
routine_languages (){ return
array ();} function
routine_id ( $D , $J ){ return
idf_escape ( $D );} function
last_id (){ global $g ; return $g -> result ( " SELECT LAST_INSERT_ID() " );} function
explain ( $g , $G ){ return $g -> query ( " EXPLAIN " . ( min_version ( 5.1 ) &&! min_version ( 5.7 ) ? " PARTITIONS " : " " ) . $G );} function
found_rows ( $R , $Z ){ return ( $Z || $R [ " Engine " ] != " InnoDB " ? null : $R [ " Rows " ]);} function
types (){ return
array ();} function
schemas (){ return
array ();} function
get_schema (){ return " " ;} function
set_schema ( $Zg , $h = null ){ return
true ;} function
create_sql ( $Q , $Ka , $Hh ){ global $g ; $I = $g -> result ( " SHOW CREATE TABLE " . table ( $Q ), 1 ); if ( ! $Ka ) $I = preg_replace ( '~ AUTO_INCREMENT=\d+~' , '' , $I ); return $I ;} function
truncate_sql ( $Q ){ return " TRUNCATE " . table ( $Q );} function
use_sql ( $j ){ return " USE " . idf_escape ( $j );} function
trigger_sql ( $Q ){ $I = " " ; foreach ( get_rows ( " SHOW TRIGGERS LIKE " . q ( addcslashes ( $Q , " %_ \\ " )), null , " -- " ) as $J ) $I .= " \n CREATE TRIGGER " . idf_escape ( $J [ " Trigger " ]) . " $J[Timing] $J[Event] ON " . table ( $J [ " Table " ]) . " FOR EACH ROW \n $J[Statement] ;; \n " ; return $I ;} function
show_variables (){ return
get_key_vals ( " SHOW VARIABLES " );} function
process_list (){ return
get_rows ( " SHOW FULL PROCESSLIST " );} function
show_status (){ return
get_key_vals ( " SHOW STATUS " );} function
convert_field ( $o ){ if ( preg_match ( " ~binary~ " , $o [ " type " ])) return " HEX( " . idf_escape ( $o [ " field " ]) . " ) " ; if ( $o [ " type " ] == " bit " ) return " BIN( " . idf_escape ( $o [ " field " ]) . " + 0) " ; if ( preg_match ( " ~geometry|point|linestring|polygon~ " , $o [ " type " ])) return ( min_version ( 8 ) ? " ST_ " : " " ) . " AsWKT( " . idf_escape ( $o [ " field " ]) . " ) " ;} function
unconvert_field ( $o , $I ){ if ( preg_match ( " ~binary~ " , $o [ " type " ])) $I = " UNHEX( $I ) " ; if ( $o [ " type " ] == " bit " ) $I = " CONV( $I , 2, 10) + 0 " ; if ( preg_match ( " ~geometry|point|linestring|polygon~ " , $o [ " type " ])) $I = ( min_version ( 8 ) ? " ST_ " : " " ) . " GeomFromText( $I , SRID( $o[field] )) " ; return $I ;} function
support ( $Tc ){ return ! preg_match ( " ~scheme|sequence|type|view_trigger|materializedview " . ( min_version ( 8 ) ? " " : " |descidx " . ( min_version ( 5.1 ) ? " " : " |event|partitioning " . ( min_version ( 5 ) ? " " : " |routine|trigger|view " ))) . " ~ " , $Tc );} function
kill_process ( $X ){ return
queries ( " KILL " . number ( $X ));} function
connection_id (){ return " SELECT CONNECTION_ID() " ;} function
max_connections (){ global $g ; return $g -> result ( " SELECT @@max_connections " );} function
driver_config (){ $U = array (); $Gh = array (); foreach ( array ( 'Numbers' => array ( " tinyint " => 3 , " smallint " => 5 , " mediumint " => 8 , " int " => 10 , " bigint " => 20 , " decimal " => 66 , " float " => 12 , " double " => 21 ), 'Date and time' => array ( " date " => 10 , " datetime " => 19 , " timestamp " => 19 , " time " => 10 , " year " => 4 ), 'Strings' => array ( " char " => 255 , " varchar " => 65535 , " tinytext " => 255 , " text " => 65535 , " mediumtext " => 16777215 , " longtext " => 4294967295 ), 'Lists' => array ( " enum " => 65535 , " set " => 64 ), 'Binary' => array ( " bit " => 20 , " binary " => 255 , " varbinary " => 65535 , " tinyblob " => 255 , " blob " => 65535 , " mediumblob " => 16777215 , " longblob " => 4294967295 ), 'Geometry' => array ( " geometry " => 0 , " point " => 0 , " linestring " => 0 , " polygon " => 0 , " multipoint " => 0 , " multilinestring " => 0 , " multipolygon " => 0 , " geometrycollection " => 0 ),) as $z => $X ){ $U += $X ; $Gh [ $z ] = array_keys ( $X );} return
array ( 'possible_drivers' => array ( " MySQLi " , " MySQL " , " PDO_MySQL " ), 'jush' => " sql " , 'types' => $U , 'structured_types' => $Gh , 'unsigned' => array ( " unsigned " , " zerofill " , " unsigned zerofill " ), 'operators' => array ( " = " , " < " , " > " , " <= " , " >= " , " != " , " LIKE " , " LIKE %% " , " REGEXP " , " IN " , " FIND_IN_SET " , " IS NULL " , " NOT LIKE " , " NOT REGEXP " , " NOT IN " , " IS NOT NULL " , " SQL " ), 'functions' => array ( " char_length " , " date " , " from_unixtime " , " lower " , " round " , " floor " , " ceil " , " sec_to_time " , " time_to_sec " , " upper " ), 'grouping' => array ( " avg " , " count " , " count distinct " , " group_concat " , " max " , " min " , " sum " ), 'edit_functions' => array ( array ( " char " => " md5/sha1/password/encrypt/uuid " , " binary " => " md5/sha1 " , " date|time " => " now " ,), array ( number_type () => " +/- " , " date " => " + interval/- interval " , " time " => " addtime/subtime " , " char|text " => " concat " ,)),);}} $vb = driver_config (); $hg = $vb [ 'possible_drivers' ]; $y = $vb [ 'jush' ]; $U = $vb [ 'types' ]; $Gh = $vb [ 'structured_types' ]; $Hi = $vb [ 'unsigned' ]; $uf = $vb [ 'operators' ]; $nd = $vb [ 'functions' ]; $td = $vb [ 'grouping' ]; $qc = $vb [ 'edit_functions' ]; if ( $b -> operators === null ) $b -> operators = $uf ; define ( " SERVER " , $_GET [ DRIVER ]); define ( " DB " , $_GET [ " db " ]); define ( " ME " , preg_replace ( '~\?.*~' , '' , relative_uri ()) . '?' . ( sid () ? SID . '&' : '' ) . ( SERVER !== null ? DRIVER . " = " . urlencode ( SERVER ) . '&' : '' ) . ( isset ( $_GET [ " username " ]) ? " username= " . urlencode ( $_GET [ " username " ]) . '&' : '' ) . ( DB != " " ? 'db=' . urlencode ( DB ) . '&' . ( isset ( $_GET [ " ns " ]) ? " ns= " . urlencode ( $_GET [ " ns " ]) . " & " : " " ) : '' )); $ia = " 4.8.1 " ; function
page_header ( $gi , $n = " " , $Ua = array (), $hi = " " ){ global $ca , $ia , $b , $ic , $y ; page_headers (); if ( is_ajax () && $n ){ page_messages ( $n ); exit ;} $ii = $gi . ( $hi != " " ? " : $hi " : " " ); $ji = strip_tags ( $ii . ( SERVER != " " && SERVER != " localhost " ? h ( " - " . SERVER ) : " " ) . " - " . $b -> name ()); echo ' <! DOCTYPE html >
< html lang = " en " dir = " ltr " >
< meta http - equiv = " Content-Type " content = " text/html; charset=utf-8 " >
< meta name = " robots " content = " noindex " >
< title > ',$ji,' </ title >
< link rel = " stylesheet " type = " text/css " href = " ',h(preg_replace( " ~ \\ ? .*~ " , " " ,ME). " ? file = default . css & version = 4.8 . 1 " ),' " >
',script_src(preg_replace("~\\?.*~","",ME)."?file=functions.js&version=4.8.1");if($b->head()){echo' < link rel = " shortcut icon " type = " image/x-icon " href = " ',h(preg_replace( " ~ \\ ? .*~ " , " " ,ME). " ? file = favicon . ico & version = 4.8 . 1 " ),' " >
< link rel = " apple-touch-icon " href = " ',h(preg_replace( " ~ \\ ? .*~ " , " " ,ME). " ? file = favicon . ico & version = 4.8 . 1 " ),' " >
';foreach($b->css()as$Mb){echo' < link rel = " stylesheet " type = " text/css " href = " ',h( $Mb ),' " >
';}}echo'
< body class = " ltr nojs " >
';$q=get_temp_dir()."/adminer.version";if(!$_COOKIE["adminer_version"]&&function_exists(' openssl_verify ' ) && file_exists ( $q ) && filemtime ( $q ) + 86400 > time ()){ $Wi = unserialize ( file_get_contents ( $q )); $tg = " -----BEGIN PUBLIC KEY-----
MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwqWOVuF5uw7 /+ Z70djoK
RlHIZFZPO0uYRezq90 + 7 Amk + FDNd7KkL5eDve + vHRJBLAszF / 7 XKXe11xwliIsFs
DFWQlsABVZB3oisKCBEuI71J4kPH8dKGEWR9jDHFw3cWmoH3PmqImX6FISWbG3B8
h7FIx3jEaw5ckVPVTeo5JRm / 1 DZzJxjyDenXvBQ / 6 o9DgZKeNDgxwKzH + sw9 / YCO
jHnq1cFpOIISzARlrHMa / 43 YfeNRAm / tsBXjSxembBPo7aQZLAWHmaj5 + K19H10B
nCpz9Y ++ cipkVEiKRGih4ZEvjoFysEOdRLj6WiD / uUNky4xGeA6LaJqh5XpkFkcQ
fQIDAQAB
----- END PUBLIC KEY -----
" ;if(openssl_verify( $Wi["version"] ,base64_decode( $Wi["signature"] ), $tg )==1) $_COOKIE["adminer_version"] = $Wi["version"] ;}echo'<script',nonce(),'>
mixin ( document . body , { onkeydown : bodyKeydown , onclick : bodyClick ',(isset($_COOKIE["adminer_version"])?"":", onload: partial(verifyVersion, ' $ia ', ' " .js_escape(ME). " ', ' " .get_token(). " ' ) " );?>});
document . body . className = document . body . className . replace ( / nojs / , ' js' );
var offlineMessage = ' < ? php echo
js_escape ( 'You are offline.' ), ' \ ' ;
var thousandsSeparator = \ '' , js_escape ( ',' ), ' \ ' ;
</ script >
< div id = " help " class = " jush-', $y ,' jsonly hidden " ></ div >
',script("mixin(qs(' #help'), {onmouseover: function () { helpOpen = 1; }, onmouseout: helpMouseout});"),'
< div id = " content " >
';if($Ua!==null){$A=substr(preg_replace(' ~ \b ( username | db | ns ) = [ ^& ] *&~ ',' ',ME),0,-1);echo' < p id = " breadcrumb " >< a href = " '.h( $A ? $A : " . " ).' " > '.$ic[DRIVER].' </ a > & raquo ; ';$A=substr(preg_replace(' ~ \b ( db | ns ) = [ ^& ] *&~ ',' ',ME),0,-1);$M=$b->serverName(SERVER);$M=($M!=""?$M:' Server ');if($Ua===false)echo"$M\n";else{echo"<a href=' " .h( $A ). " ' accesskey=' 1 ' title=' Alt + Shift + 1 '>$M</a> » ";if($_GET["ns"]!=""||(DB!=""&&is_array($Ua)))echo' < a href = " '.h( $A . " & db = " .urlencode(DB).(support( " scheme " )? " & ns = " : " " )).' " > '.h(DB).' </ a > & raquo ; ';if(is_array($Ua)){if($_GET["ns"]!="")echo' < a href = " '.h(substr(ME,0,-1)).' " > '.h($_GET["ns"]).' </ a > & raquo ; ' ; foreach ( $Ua
as $z => $X ){ $bc = ( is_array ( $X ) ? $X [ 1 ] : h ( $X )); if ( $bc != " " ) echo " <a href=' " . h ( ME . " $z = " ) . urlencode ( is_array ( $X ) ? $X [ 0 ] : $X ) . " '> $bc </a> » " ;}} echo " $gi\n " ;}} echo " <h2> $ii </h2> \n " , " <div id='ajaxstatus' class='jsonly hidden'></div> \n " ; restart_session (); page_messages ( $n ); $k =& get_session ( " dbs " ); if ( DB != " " && $k &&! in_array ( DB , $k , true )) $k = null ; stop_session (); define ( " PAGE_HEADER " , 1 );} function
page_headers (){ global $b ; header ( " Content-Type: text/html; charset=utf-8 " ); header ( " Cache-Control: no-cache " ); header ( " X-Frame-Options: deny " ); header ( " X-XSS-Protection: 0 " ); header ( " X-Content-Type-Options: nosniff " ); header ( " Referrer-Policy: origin-when-cross-origin " ); foreach ( $b -> csp () as $Lb ){ $zd = array (); foreach ( $Lb
as $z => $X ) $zd [] = " $z $X " ; header ( " Content-Security-Policy: " . implode ( " ; " , $zd ));} $b -> headers ();} function
csp (){ return
array ( array ( " script-src " => " 'self' 'unsafe-inline' 'nonce- " . get_nonce () . " ' 'strict-dynamic' " , " connect-src " => " 'self' " , " frame-src " => " https://www.adminer.org " , " object-src " => " 'none' " , " base-uri " => " 'none' " , " form-action " => " 'self' " ,),);} function
get_nonce (){ static $bf ; if ( ! $bf ) $bf = base64_encode ( rand_string ()); return $bf ;} function
page_messages ( $n ){ $Ji = preg_replace ( '~^[^?]*~' , '' , $_SERVER [ " REQUEST_URI " ]); $Oe = $_SESSION [ " messages " ][ $Ji ]; if ( $Oe ){ echo " <div class='message'> " . implode ( " </div> \n <div class='message'> " , $Oe ) . " </div> " . script ( " messagesPrint(); " ); unset ( $_SESSION [ " messages " ][ $Ji ]);} if ( $n ) echo " <div class='error'> $n </div> \n " ;} function
page_footer ( $Re = " " ){ global $b , $ni ; echo ' </ div >
';if($Re!="auth"){echo' < form action = " " method = " post " >
< p class = " logout " >
< input type = " submit " name = " logout " value = " Logout " id = " logout " >
< input type = " hidden " name = " token " value = " ', $ni ,' " >
</ p >
</ form >
';}echo' < div id = " menu " >
';$b->navigation($Re);echo' </ div >
' , script ( " setupSubmitHighlight(document); " );} function
int32 ( $Ue ){ while ( $Ue >= 2147483648 ) $Ue -= 4294967296 ; while ( $Ue <=- 2147483649 ) $Ue += 4294967296 ; return ( int ) $Ue ;} function
long2str ( $W , $aj ){ $Xg = '' ; foreach ( $W
as $X ) $Xg .= pack ( 'V' , $X ); if ( $aj ) return
substr ( $Xg , 0 , end ( $W )); return $Xg ;} function
str2long ( $Xg , $aj ){ $W = array_values ( unpack ( 'V*' , str_pad ( $Xg , 4 * ceil ( strlen ( $Xg ) / 4 ), " \0 " ))); if ( $aj ) $W [] = strlen ( $Xg ); return $W ;} function
xxtea_mx ( $mj , $lj , $Kh , $fe ){ return
int32 ((( $mj >> 5 & 0x7FFFFFF ) ^ $lj << 2 ) + (( $lj >> 3 & 0x1FFFFFFF ) ^ $mj << 4 )) ^ int32 (( $Kh ^ $lj ) + ( $fe ^ $mj ));} function
encrypt_string ( $Fh , $z ){ if ( $Fh == " " ) return " " ; $z = array_values ( unpack ( " V* " , pack ( " H* " , md5 ( $z )))); $W = str2long ( $Fh , true ); $Ue = count ( $W ) - 1 ; $mj = $W [ $Ue ]; $lj = $W [ 0 ]; $ug = floor ( 6 + 52 / ( $Ue + 1 )); $Kh = 0 ; while ( $ug --> 0 ){ $Kh = int32 ( $Kh + 0x9E3779B9 ); $pc = $Kh >> 2 & 3 ; for ( $Lf = 0 ; $Lf < $Ue ; $Lf ++ ){ $lj = $W [ $Lf + 1 ]; $Te = xxtea_mx ( $mj , $lj , $Kh , $z [ $Lf & 3 ^ $pc ]); $mj = int32 ( $W [ $Lf ] + $Te ); $W [ $Lf ] = $mj ;} $lj = $W [ 0 ]; $Te = xxtea_mx ( $mj , $lj , $Kh , $z [ $Lf & 3 ^ $pc ]); $mj = int32 ( $W [ $Ue ] + $Te ); $W [ $Ue ] = $mj ;} return
long2str ( $W , false );} function
decrypt_string ( $Fh , $z ){ if ( $Fh == " " ) return " " ; if ( ! $z ) return
false ; $z = array_values ( unpack ( " V* " , pack ( " H* " , md5 ( $z )))); $W = str2long ( $Fh , false ); $Ue = count ( $W ) - 1 ; $mj = $W [ $Ue ]; $lj = $W [ 0 ]; $ug = floor ( 6 + 52 / ( $Ue + 1 )); $Kh = int32 ( $ug * 0x9E3779B9 ); while ( $Kh ){ $pc = $Kh >> 2 & 3 ; for ( $Lf = $Ue ; $Lf > 0 ; $Lf -- ){ $mj = $W [ $Lf - 1 ]; $Te = xxtea_mx ( $mj , $lj , $Kh , $z [ $Lf & 3 ^ $pc ]); $lj = int32 ( $W [ $Lf ] - $Te ); $W [ $Lf ] = $lj ;} $mj = $W [ $Ue ]; $Te = xxtea_mx ( $mj , $lj , $Kh , $z [ $Lf & 3 ^ $pc ]); $lj = int32 ( $W [ 0 ] - $Te ); $W [ 0 ] = $lj ; $Kh = int32 ( $Kh - 0x9E3779B9 );} return
long2str ( $W , true );} $g = '' ; $yd = $_SESSION [ " token " ]; if ( ! $yd ) $_SESSION [ " token " ] = rand ( 1 , 1e6 ); $ni = get_token (); $bg = array (); if ( $_COOKIE [ " adminer_permanent " ]){ foreach ( explode ( " " , $_COOKIE [ " adminer_permanent " ]) as $X ){ list ( $z ) = explode ( " : " , $X ); $bg [ $z ] = $X ;}} function
add_invalid_login (){ global $b ; $ld = file_open_lock ( get_temp_dir () . " /adminer.invalid " ); if ( ! $ld ) return ; $Yd = unserialize ( stream_get_contents ( $ld )); $di = time (); if ( $Yd ){ foreach ( $Yd
as $Zd => $X ){ if ( $X [ 0 ] < $di ) unset ( $Yd [ $Zd ]);}} $Xd =& $Yd [ $b -> bruteForceKey ()]; if ( ! $Xd ) $Xd = array ( $di + 30 * 60 , 0 ); $Xd [ 1 ] ++ ; file_write_unlock ( $ld , serialize ( $Yd ));} function
check_invalid_login (){ global $b ; $Yd = unserialize ( @ file_get_contents ( get_temp_dir () . " /adminer.invalid " )); $Xd = ( $Yd ? $Yd [ $b -> bruteForceKey ()] : array ()); $af = ( $Xd [ 1 ] > 29 ? $Xd [ 0 ] - time () : 0 ); if ( $af > 0 ) auth_error ( lang ( array ( 'Too many unsuccessful logins, try again in %d minute.' , 'Too many unsuccessful logins, try again in %d minutes.' ), ceil ( $af / 60 )));} $Ia = $_POST [ " auth " ]; if ( $Ia ){ session_regenerate_id (); $Vi = $Ia [ " driver " ]; $M = $Ia [ " server " ]; $V = $Ia [ " username " ]; $F = ( string ) $Ia [ " password " ]; $l = $Ia [ " db " ]; set_password ( $Vi , $M , $V , $F ); $_SESSION [ " db " ][ $Vi ][ $M ][ $V ][ $l ] = true ; if ( $Ia [ " permanent " ]){ $z = base64_encode ( $Vi ) . " - " . base64_encode ( $M ) . " - " . base64_encode ( $V ) . " - " . base64_encode ( $l ); $ng = $b -> permanentLogin ( true ); $bg [ $z ] = " $z : " . base64_encode ( $ng ? encrypt_string ( $F , $ng ) : " " ); cookie ( " adminer_permanent " , implode ( " " , $bg ));} if ( count ( $_POST ) == 1 || DRIVER != $Vi || SERVER != $M || $_GET [ " username " ] !== $V || DB != $l ) redirect ( auth_url ( $Vi , $M , $V , $l ));} elseif ( $_POST [ " logout " ] && ( ! $yd || verify_token ())){ foreach ( array ( " pwds " , " db " , " dbs " , " queries " ) as $z ) set_session ( $z , null ); unset_permanent (); redirect ( substr ( preg_replace ( '~\b(username|db|ns)=[^&]*&~' , '' , ME ), 0 , - 1 ), 'Logout successful.' . ' ' . 'Thanks for using Adminer, consider <a href="https://www.adminer.org/en/donation/">donating</a>.' );} elseif ( $bg &&! $_SESSION [ " pwds " ]){ session_regenerate_id (); $ng = $b -> permanentLogin (); foreach ( $bg
as $z => $X ){ list (, $fb ) = explode ( " : " , $X ); list ( $Vi , $M , $V , $l ) = array_map ( 'base64_decode' , explode ( " - " , $z )); set_password ( $Vi , $M , $V , decrypt_string ( base64_decode ( $fb ), $ng )); $_SESSION [ " db " ][ $Vi ][ $M ][ $V ][ $l ] = true ;}} function
unset_permanent (){ global $bg ; foreach ( $bg
as $z => $X ){ list ( $Vi , $M , $V , $l ) = array_map ( 'base64_decode' , explode ( " - " , $z )); if ( $Vi == DRIVER && $M == SERVER && $V == $_GET [ " username " ] && $l == DB ) unset ( $bg [ $z ]);} cookie ( " adminer_permanent " , implode ( " " , $bg ));} function
auth_error ( $n ){ global $b , $yd ; $mh = session_name (); if ( isset ( $_GET [ " username " ])){ header ( " HTTP/1.1 403 Forbidden " ); if (( $_COOKIE [ $mh ] || $_GET [ $mh ]) &&! $yd ) $n = 'Session expired, please login again.' ; else { restart_session (); add_invalid_login (); $F = get_password (); if ( $F !== null ){ if ( $F === false ) $n .= ( $n ? '<br>' : '' ) . sprintf ( 'Master password expired. <a href="https://www.adminer.org/en/extension/"%s>Implement</a> %s method to make it permanent.' , target_blank (), '<code>permanentLogin()</code>' ); set_password ( DRIVER , SERVER , $_GET [ " username " ], null );} unset_permanent ();}} if ( ! $_COOKIE [ $mh ] && $_GET [ $mh ] && ini_bool ( " session.use_only_cookies " )) $n = 'Session support must be enabled.' ; $Of = session_get_cookie_params (); cookie ( " adminer_key " ,( $_COOKIE [ " adminer_key " ] ? $_COOKIE [ " adminer_key " ] : rand_string ()), $Of [ " lifetime " ]); page_header ( 'Login' , $n , null ); echo " <form action='' method='post'> \n " , " <div> " ; if ( hidden_fields ( $_POST , array ( " auth " ))) echo " <p class='message'> " . 'The action will be performed after successful login with the same credentials.' . " \n " ; echo " </div> \n " ; $b -> loginForm (); echo " </form> \n " ; page_footer ( " auth " ); exit ;} if ( isset ( $_GET [ " username " ]) &&! class_exists ( " Min_DB " )){ unset ( $_SESSION [ " pwds " ][ DRIVER ]); unset_permanent (); page_header ( 'No extension' , sprintf ( 'None of the supported PHP extensions (%s) are available.' , implode ( " , " , $hg )), false ); page_footer ( " auth " ); exit ;} stop_session ( true ); if ( isset ( $_GET [ " username " ]) && is_string ( get_password ())){ list ( $Dd , $dg ) = explode ( " : " , SERVER , 2 ); if ( preg_match ( '~^\s*([-+]?\d+)~' , $dg , $C ) && ( $C [ 1 ] < 1024 || $C [ 1 ] > 65535 )) auth_error ( 'Connecting to privileged ports is not allowed.' ); check_invalid_login (); $g = connect (); $m = new
Min_Driver ( $g );} $xe = null ; if ( ! is_object ( $g ) || ( $xe = $b -> login ( $_GET [ " username " ], get_password ())) !== true ){ $n = ( is_string ( $g ) ? h ( $g ) : ( is_string ( $xe ) ? $xe : 'Invalid credentials.' )); auth_error ( $n . ( preg_match ( '~^ | $~' , get_password ()) ? '<br>' . 'There is a space in the input password which might be the cause.' : '' ));} if ( $_POST [ " logout " ] && $yd &&! verify_token ()){ page_header ( 'Logout' , 'Invalid CSRF token. Send the form again.' ); page_footer ( " db " ); exit ;} if ( $Ia && $_POST [ " token " ]) $_POST [ " token " ] = $ni ; $n = '' ; if ( $_POST ){ if ( ! verify_token ()){ $Sd = " max_input_vars " ; $Ie = ini_get ( $Sd ); if ( extension_loaded ( " suhosin " )){ foreach ( array ( " suhosin.request.max_vars " , " suhosin.post.max_vars " ) as $z ){ $X = ini_get ( $z ); if ( $X && ( ! $Ie || $X < $Ie )){ $Sd = $z ; $Ie = $X ;}}} $n = ( ! $_POST [ " token " ] && $Ie ? sprintf ( 'Maximum number of allowed fields exceeded. Please increase %s.' , " ' $Sd ' " ) : 'Invalid CSRF token. Send the form again.' . ' ' . 'If you did not send this request from Adminer then close this page.' );}} elseif ( $_SERVER [ " REQUEST_METHOD " ] == " POST " ){ $n = sprintf ( 'Too big POST data. Reduce the data or increase the %s configuration directive.' , " 'post_max_size' " ); if ( isset ( $_GET [ " sql " ])) $n .= ' ' . 'You can upload a big SQL file via FTP and import it from server.' ;} function
select ( $H , $h = null , $Bf = array (), $_ = 0 ){ global $y ; $we = array (); $x = array (); $f = array (); $Sa = array (); $U = array (); $I = array (); odd ( '' ); for ( $t = 0 ;( ! $_ || $t < $_ ) && ( $J = $H -> fetch_row ()); $t ++ ){ if ( ! $t ){ echo " <div class='scrollable'> \n " , " <table cellspacing='0' class='nowrap'> \n " , " <thead><tr> " ; for ( $ee = 0 ; $ee < count ( $J ); $ee ++ ){ $o = $H -> fetch_field (); $D = $o -> name ; $Af = $o -> orgtable ; $_f = $o -> orgname ; $I [ $o -> table ] = $Af ; if ( $Bf && $y == " sql " ) $we [ $ee ] = ( $D == " table " ? " table= " : ( $D == " possible_keys " ? " indexes= " : null )); elseif ( $Af != " " ){ if ( ! isset ( $x [ $Af ])){ $x [ $Af ] = array (); foreach ( indexes ( $Af , $h ) as $w ){ if ( $w [ " type " ] == " PRIMARY " ){ $x [ $Af ] = array_flip ( $w [ " columns " ]); break ;}} $f [ $Af ] = $x [ $Af ];} if ( isset ( $f [ $Af ][ $_f ])){ unset ( $f [ $Af ][ $_f ]); $x [ $Af ][ $_f ] = $ee ; $we [ $ee ] = $Af ;}} if ( $o -> charsetnr == 63 ) $Sa [ $ee ] = true ; $U [ $ee ] = $o -> type ; echo " <th " . ( $Af != " " || $o -> name != $_f ? " title=' " . h (( $Af != " " ? " $Af . " : " " ) . $_f ) . " ' " : " " ) . " > " . h ( $D ) . ( $Bf ? doc_link ( array ( 'sql' => " explain-output.html#explain_ " . strtolower ( $D ), 'mariadb' => " explain/#the-columns-in-explain-select " ,)) : " " );} echo " </thead> \n " ;} echo " <tr " . odd () . " > " ; foreach ( $J
as $z => $X ){ $A = " " ; if ( isset ( $we [ $z ]) &&! $f [ $we [ $z ]]){ if ( $Bf && $y == " sql " ){ $Q = $J [ array_search ( " table= " , $we )]; $A = ME . $we [ $z ] . urlencode ( $Bf [ $Q ] != " " ? $Bf [ $Q ] : $Q );} else { $A = ME . " edit= " . urlencode ( $we [ $z ]); foreach ( $x [ $we [ $z ]] as $jb => $ee ) $A .= " &where " . urlencode ( " [ " . bracket_escape ( $jb ) . " ] " ) . " = " . urlencode ( $J [ $ee ]);}} elseif ( is_url ( $X )) $A = $X ; if ( $X === null ) $X = " <i>NULL</i> " ; elseif ( $Sa [ $z ] &&! is_utf8 ( $X )) $X = " <i> " . lang ( array ( '%d byte' , '%d bytes' ), strlen ( $X )) . " </i> " ; else { $X = h ( $X ); if ( $U [ $z ] == 254 ) $X = " <code> $X </code> " ;} if ( $A ) $X = " <a href=' " . h ( $A ) . " ' " . ( is_url ( $A ) ? target_blank () : '' ) . " > $X </a> " ; echo " <td> $X " ;}} echo ( $t ? " </table> \n </div> " : " <p class='message'> " . 'No rows.' ) . " \n " ; return $I ;} function
referencable_primary ( $fh ){ $I = array (); foreach ( table_status ( '' , true ) as $Oh => $Q ){ if ( $Oh != $fh && fk_support ( $Q )){ foreach ( fields ( $Oh ) as $o ){ if ( $o [ " primary " ]){ if ( $I [ $Oh ]){ unset ( $I [ $Oh ]); break ;} $I [ $Oh ] = $o ;}}}} return $I ;} function
adminer_settings (){ parse_str ( $_COOKIE [ " adminer_settings " ], $oh ); return $oh ;} function
adminer_setting ( $z ){ $oh = adminer_settings (); return $oh [ $z ];} function
set_adminer_settings ( $oh ){ return
cookie ( " adminer_settings " , http_build_query ( $oh + adminer_settings ()));} function
textarea ( $D , $Y , $K = 10 , $nb = 80 ){ global $y ; echo " <textarea name=' $D ' rows=' $K ' cols=' $nb ' class='sqlarea jush- $y ' spellcheck='false' wrap='off'> " ; if ( is_array ( $Y )){ foreach ( $Y
as $X ) echo
h ( $X [ 0 ]) . " \n \n \n " ;} else
echo
h ( $Y ); echo " </textarea> " ;} function
edit_type ( $z , $o , $lb , $hd = array (), $Pc = array ()){ global $Gh , $U , $Hi , $pf ; $T = $o [ " type " ]; echo '<td><select name="' , h ( $z ), '[type]" class="type" aria-labelledby="label-type">' ; if ( $T &&! isset ( $U [ $T ]) &&! isset ( $hd [ $T ]) &&! in_array ( $T , $Pc )) $Pc [] = $T ; if ( $hd ) $Gh [ 'Foreign keys' ] = $hd ; echo
optionlist ( array_merge ( $Pc , $Gh ), $T ), '</select><td><input name="' , h ( $z ), '[length]" value="' , h ( $o [ " length " ]), '" size="3"' ,( ! $o [ " length " ] && preg_match ( '~var(char|binary)$~' , $T ) ? " class='required' " : " " ); echo ' aria-labelledby="label-length"><td class="options">' , " <select name=' " . h ( $z ) . " [collation]' " . ( preg_match ( '~(char|text|enum|set)$~' , $T ) ? " " : " class='hidden' " ) . '><option value="">(' . 'collation' . ')' . optionlist ( $lb , $o [ " collation " ]) . '</select>' ,( $Hi ? " <select name=' " . h ( $z ) . " [unsigned]' " . ( ! $T || preg_match ( number_type (), $T ) ? " " : " class='hidden' " ) . '><option>' . optionlist ( $Hi , $o [ " unsigned " ]) . '</select>' : '' ),( isset ( $o [ 'on_update' ]) ? " <select name=' " . h ( $z ) . " [on_update]' " . ( preg_match ( '~timestamp|datetime~' , $T ) ? " " : " class='hidden' " ) . '>' . optionlist ( array ( " " => " ( " . 'ON UPDATE' . " ) " , " CURRENT_TIMESTAMP " ),( preg_match ( '~^CURRENT_TIMESTAMP~i' , $o [ " on_update " ]) ? " CURRENT_TIMESTAMP " : $o [ " on_update " ])) . '</select>' : '' ),( $hd ? " <select name=' " . h ( $z ) . " [on_delete]' " . ( preg_match ( " ~`~ " , $T ) ? " " : " class='hidden' " ) . " ><option value=''>( " . 'ON DELETE' . " ) " . optionlist ( explode ( " | " , $pf ), $o [ " on_delete " ]) . " </select> " : " " );} function
process_length ( $te ){ global $_c ; return ( preg_match ( " ~^ \\ s* \\ (? \\ s* $_c (?: \\ s*, \\ s* $_c )*+ \\ s* \\ )? \\ s* \$ ~ " , $te ) && preg_match_all ( " ~ $_c ~ " , $te , $Ce ) ? " ( " . implode ( " , " , $Ce [ 0 ]) . " ) " : preg_replace ( '~^[0-9].*~' , '(\0)' , preg_replace ( '~[^-0-9,+()[\]]~' , '' , $te )));} function
process_type ( $o , $kb = " COLLATE " ){ global $Hi ; return " $o[type] " . process_length ( $o [ " length " ]) . ( preg_match ( number_type (), $o [ " type " ]) && in_array ( $o [ " unsigned " ], $Hi ) ? " $o[unsigned] " : " " ) . ( preg_match ( '~char|text|enum|set~' , $o [ " type " ]) && $o [ " collation " ] ? " $kb " . q ( $o [ " collation " ]) : " " );} function
process_field ( $o , $_i ){ return
array ( idf_escape ( trim ( $o [ " field " ])), process_type ( $_i ),( $o [ " null " ] ? " NULL " : " NOT NULL " ), default_value ( $o ),( preg_match ( '~timestamp|datetime~' , $o [ " type " ]) && $o [ " on_update " ] ? " ON UPDATE $o[on_update] " : " " ),( support ( " comment " ) && $o [ " comment " ] != " " ? " COMMENT " . q ( $o [ " comment " ]) : " " ),( $o [ " auto_increment " ] ? auto_increment () : null ),);} function
default_value ( $o ){ $Wb = $o [ " default " ]; return ( $Wb === null ? " " : " DEFAULT " . ( preg_match ( '~char|binary|text|enum|set~' , $o [ " type " ]) || preg_match ( '~^(?![a-z])~i' , $Wb ) ? q ( $Wb ) : $Wb ));} function
type_class ( $T ){ foreach ( array ( 'char' => 'text' , 'date' => 'time|year' , 'binary' => 'blob' , 'enum' => 'set' ,) as $z => $X ){ if ( preg_match ( " ~ $z | $X ~ " , $T )) return " class=' $z ' " ;}} function
edit_fields ( $p , $lb , $T = " TABLE " , $hd = array ()){ global $Td ; $p = array_values ( $p ); $Xb = (( $_POST ? $_POST [ " defaults " ] : adminer_setting ( " defaults " )) ? " " : " class='hidden' " ); $sb = (( $_POST ? $_POST [ " comments " ] : adminer_setting ( " comments " )) ? " " : " class='hidden' " ); echo ' < thead >< tr >
';if($T=="PROCEDURE"){echo' < td > ';}echo' < th id = " label-name " > ',($T=="TABLE"?' Column name ':' Parameter name '),' < td id = " label-type " > Type < textarea id = " enum-edit " rows = " 4 " cols = " 12 " wrap = " off " style = " display: none; " ></ textarea > ',script("qs(' #enum-edit').onblur = editingLengthBlur;"),'<td id="label-length">Length
< td > ',' Options ';if($T=="TABLE"){echo' < td id = " label-null " > NULL
< td >< input type = " radio " name = " auto_increment_col " value = " " >< acronym id = " label-ai " title = " Auto Increment " > AI </ acronym > ',doc_link(array(' sql '=>"example-auto-increment.html",' mariadb '=>"auto_increment/",' sqlite '=>"autoinc.html",' pgsql '=>"datatype.html#DATATYPE-SERIAL",' mssql '=>"ms186775.aspx",)),' < td id = " label-default " ',$Xb,' > Default value
',(support("comment")?"<td id=' label - comment '$sb>".' Comment ':"");}echo' < td > ',"<input type=' image ' class=' icon ' name=' add [ " .(support( " move_col " )?0:count( $p )). " ] ' src=' " .h(preg_replace( " ~ \\ ? .*~ " , " " ,ME). " ? file = plus . gif & version = 4.8 . 1 " ). " ' alt=' + ' title=' " .'Add next'. " '>".script("row_count = ".count($p).";"),' </ thead >
< tbody >
',script("mixin(qsl(' tbody ' ), { onclick : editingClick , onkeydown : editingKeydown , oninput : editingInput }); " );foreach( $p
as $t => $o ){ $t ++ ; $Cf = $o [( $_POST ? " orig " : " field " )]; $fc = ( isset ( $_POST [ " add " ][ $t - 1 ]) || ( isset ( $o [ " field " ]) &&! $_POST [ " drop_col " ][ $t ])) && ( support ( " drop_col " ) || $Cf == " " ); echo '<tr' ,( $fc ? " " : " style='display: none;' " ), ' >
2022-03-22 10:53:12 +01:00
',($T=="PROCEDURE"?"<td>".html_select("fields[$t][inout]",explode("|",$Td),$o["inout"]):""),' < th > ';if($fc){echo' < input name = " fields[', $t ,'][field] " value = " ',h( $o["field"] ),' " data - maxlength = " 64 " autocapitalize = " off " aria - labelledby = " label-name " > ';}echo' < input type = " hidden " name = " fields[', $t ,'][orig] " value = " ',h( $Cf ),' " > ';edit_type("fields[$t]",$o,$lb,$hd);if($T=="TABLE"){echo' < td > ',checkbox("fields[$t][null]",1,$o["null"],"","","block","label-null"),' < td >< label class = " block " >< input type = " radio " name = " auto_increment_col " value = " ', $t ,' " ';if($o["auto_increment"]){echo' checked ';}echo' aria - labelledby = " label-ai " ></ label >< td ',$Xb,' > ',checkbox("fields[$t][has_default]",1,$o["has_default"],"","","","label-default"),' < input name = " fields[', $t ,'][default] " value = " ',h( $o["default"] ),' " aria - labelledby = " label-default " > ',(support("comment")?"<td$sb><input name=' fields [ $t ][ comment ] ' value=' " .h( $o["comment"] ). " ' data-maxlength=' " .(min_version(5.5)?1024:255). " ' aria-labelledby=' label - comment '>":"");}echo"<td>",(support("move_col")?"<input type=' image ' class=' icon ' name=' add [ $t ] ' src=' " .h(preg_replace( " ~ \\ ? .*~ " , " " ,ME). " ? file = plus . gif & version = 4.8 . 1 " ). " ' alt=' + ' title=' " .'Add next'. " '> "."<input type=' image ' class=' icon ' name=' up [ $t ] ' src=' " .h(preg_replace( " ~ \\ ? .*~ " , " " ,ME). " ? file = up . gif & version = 4.8 . 1 " ). " ' alt=' ↑ ' title=' " .'Move up'. " '> "."<input type=' image ' class=' icon ' name=' down [ $t ] ' src=' " .h(preg_replace( " ~ \\ ? .*~ " , " " ,ME). " ? file = down . gif & version = 4.8 . 1 " ). " ' alt=' ↓ ' title=' " .'Move down'. " '> ":""),($Cf==""||support("drop_col")?"<input type=' image ' class=' icon ' name=' drop_col [ $t ] ' src=' " .h(preg_replace( " ~ \\ ? .*~ " , " " ,ME). " ? file = cross . gif & version = 4.8 . 1 " ). " ' alt=' x ' title=' " .'Remove'. " ' > " : " " );}}function
2021-05-20 10:52:49 +02:00
process_fields ( & $p ){ $hf = 0 ; if ( $_POST [ " up " ]){ $ne = 0 ; foreach ( $p
as $z => $o ){ if ( key ( $_POST [ " up " ]) == $z ){ unset ( $p [ $z ]); array_splice ( $p , $ne , 0 , array ( $o )); break ;} if ( isset ( $o [ " field " ])) $ne = $hf ; $hf ++ ;}} elseif ( $_POST [ " down " ]){ $jd = false ; foreach ( $p
as $z => $o ){ if ( isset ( $o [ " field " ]) && $jd ){ unset ( $p [ key ( $_POST [ " down " ])]); array_splice ( $p , $hf , 0 , array ( $jd )); break ;} if ( key ( $_POST [ " down " ]) == $z ) $jd = $o ; $hf ++ ;}} elseif ( $_POST [ " add " ]){ $p = array_values ( $p ); array_splice ( $p , key ( $_POST [ " add " ]), 0 , array ( array ()));} elseif ( ! $_POST [ " drop_col " ]) return
false ; return
true ;} function
normalize_enum ( $C ){ return " ' " . str_replace ( " ' " , " '' " , addcslashes ( stripcslashes ( str_replace ( $C [ 0 ][ 0 ] . $C [ 0 ][ 0 ], $C [ 0 ][ 0 ], substr ( $C [ 0 ], 1 , - 1 ))), '\\' )) . " ' " ;} function
grant ( $od , $pg , $f , $of ){ if ( ! $pg ) return
true ; if ( $pg == array ( " ALL PRIVILEGES " , " GRANT OPTION " )) return ( $od == " GRANT " ? queries ( " $od ALL PRIVILEGES $of WITH GRANT OPTION " ) : queries ( " $od ALL PRIVILEGES $of " ) && queries ( " $od GRANT OPTION $of " )); return
queries ( " $od " . preg_replace ( '~(GRANT OPTION)\([^)]*\)~' , '\1' , implode ( " $f , " , $pg ) . $f ) . $of );} function
drop_create ( $jc , $i , $kc , $ai , $mc , $B , $Ne , $Le , $Me , $lf , $Ye ){ if ( $_POST [ " drop " ]) query_redirect ( $jc , $B , $Ne ); elseif ( $lf == " " ) query_redirect ( $i , $B , $Me ); elseif ( $lf != $Ye ){ $Jb = queries ( $i ); queries_redirect ( $B , $Le , $Jb && queries ( $jc )); if ( $Jb ) queries ( $kc );} else
queries_redirect ( $B , $Le , queries ( $ai ) && queries ( $mc ) && queries ( $jc ) && queries ( $i ));} function
create_trigger ( $of , $J ){ global $y ; $fi = " $J[Timing] $J[Event] " . ( preg_match ( '~ OF~' , $J [ " Event " ]) ? " $J[Of] " : " " ); return " CREATE TRIGGER " . idf_escape ( $J [ " Trigger " ]) . ( $y == " mssql " ? $of . $fi : $fi . $of ) . rtrim ( " $J[Type] \n $J[Statement] " , " ; " ) . " ; " ;} function
create_routine ( $Tg , $J ){ global $Td , $y ; $N = array (); $p = ( array ) $J [ " fields " ]; ksort ( $p ); foreach ( $p
as $o ){ if ( $o [ " field " ] != " " ) $N [] = ( preg_match ( " ~^( $Td ) \$ ~ " , $o [ " inout " ]) ? " $o[inout] " : " " ) . idf_escape ( $o [ " field " ]) . process_type ( $o , " CHARACTER SET " );} $Yb = rtrim ( " \n $J[definition] " , " ; " ); return " CREATE $Tg " . idf_escape ( trim ( $J [ " name " ])) . " ( " . implode ( " , " , $N ) . " ) " . ( isset ( $_GET [ " function " ]) ? " RETURNS " . process_type ( $J [ " returns " ], " CHARACTER SET " ) : " " ) . ( $J [ " language " ] ? " LANGUAGE $J[language] " : " " ) . ( $y == " pgsql " ? " AS " . q ( $Yb ) : " $Yb ; " );} function
remove_definer ( $G ){ return
preg_replace ( '~^([A-Z =]+) DEFINER=`' . preg_replace ( '~@(.*)~' , '`@`(%|\1)' , logged_user ()) . '`~' , '\1' , $G );} function
format_foreign_key ( $r ){ global $pf ; $l = $r [ " db " ]; $cf = $r [ " ns " ]; return " FOREIGN KEY ( " . implode ( " , " , array_map ( 'idf_escape' , $r [ " source " ])) . " ) REFERENCES " . ( $l != " " && $l != $_GET [ " db " ] ? idf_escape ( $l ) . " . " : " " ) . ( $cf != " " && $cf != $_GET [ " ns " ] ? idf_escape ( $cf ) . " . " : " " ) . table ( $r [ " table " ]) . " ( " . implode ( " , " , array_map ( 'idf_escape' , $r [ " target " ])) . " ) " . ( preg_match ( " ~^( $pf ) \$ ~ " , $r [ " on_delete " ]) ? " ON DELETE $r[on_delete] " : " " ) . ( preg_match ( " ~^( $pf ) \$ ~ " , $r [ " on_update " ]) ? " ON UPDATE $r[on_update] " : " " );} function
tar_file ( $q , $ki ){ $I = pack ( " a100a8a8a8a12a12 " , $q , 644 , 0 , 0 , decoct ( $ki -> size ), decoct ( time ())); $eb = 8 * 32 ; for ( $t = 0 ; $t < strlen ( $I ); $t ++ ) $eb += ord ( $I [ $t ]); $I .= sprintf ( " %06o " , $eb ) . " \0 " ; echo $I , str_repeat ( " \0 " , 512 - strlen ( $I )); $ki -> send (); echo
str_repeat ( " \0 " , 511 - ( $ki -> size + 511 ) % 512 );} function
ini_bytes ( $Sd ){ $X = ini_get ( $Sd ); switch ( strtolower ( substr ( $X , - 1 ))){ case 'g' : $X *= 1024 ; case 'm' : $X *= 1024 ; case 'k' : $X *= 1024 ;} return $X ;} function
doc_link ( $Yf , $bi = " <sup>?</sup> " ){ global $y , $g ; $kh = $g -> server_info ; $Wi = preg_replace ( '~^(\d\.?\d).*~s' , '\1' , $kh ); $Li = array ( 'sql' => " https://dev.mysql.com/doc/refman/ $Wi /en/ " , 'sqlite' => " https://www.sqlite.org/ " , 'pgsql' => " https://www.postgresql.org/docs/ $Wi / " , 'mssql' => " https://msdn.microsoft.com/library/ " , 'oracle' => " https://www.oracle.com/pls/topic/lookup?ctx=db " . preg_replace ( '~^.* (\d+)\.(\d+)\.\d+\.\d+\.\d+.*~s' , '\1\2' , $kh ) . " &id= " ,); if ( preg_match ( '~MariaDB~' , $kh )){ $Li [ 'sql' ] = " https://mariadb.com/kb/en/library/ " ; $Yf [ 'sql' ] = ( isset ( $Yf [ 'mariadb' ]) ? $Yf [ 'mariadb' ] : str_replace ( " .html " , " / " , $Yf [ 'sql' ]));} return ( $Yf [ $y ] ? " <a href=' " . h ( $Li [ $y ] . $Yf [ $y ]) . " ' " . target_blank () . " > $bi </a> " : " " );} function
ob_gzencode ( $P ){ return
gzencode ( $P );} function
db_size ( $l ){ global $g ; if ( ! $g -> select_db ( $l )) return " ? " ; $I = 0 ; foreach ( table_status () as $R ) $I += $R [ " Data_length " ] + $R [ " Index_length " ]; return
format_number ( $I );} function
set_utf8mb4 ( $i ){ global $g ; static $N = false ; if ( ! $N && preg_match ( '~\butf8mb4~i' , $i )){ $N = true ; echo " SET NAMES " . charset ( $g ) . " ; \n \n " ;}} function
connect_error (){ global $b , $g , $ni , $n , $ic ; if ( DB != " " ){ header ( " HTTP/1.1 404 Not Found " ); page_header ( 'Database' . " : " . h ( DB ), 'Invalid database.' , true );} else { if ( $_POST [ " db " ] &&! $n ) queries_redirect ( substr ( ME , 0 , - 1 ), 'Databases have been dropped.' , drop_databases ( $_POST [ " db " ])); page_header ( 'Select database' , $n , false ); echo " <p class='links'> \n " ; foreach ( array ( 'database' => 'Create database' , 'privileges' => 'Privileges' , 'processlist' => 'Process list' , 'variables' => 'Variables' , 'status' => 'Status' ,) as $z => $X ){ if ( support ( $z )) echo " <a href=' " . h ( ME ) . " $z ='> $X </a> \n " ;} echo " <p> " . sprintf ( '%s version: %s through PHP extension %s' , $ic [ DRIVER ], " <b> " . h ( $g -> server_info ) . " </b> " , " <b> $g->extension </b> " ) . " \n " , " <p> " . sprintf ( 'Logged as: %s' , " <b> " . h ( logged_user ()) . " </b> " ) . " \n " ; $k = $b -> databases (); if ( $k ){ $ah = support ( " scheme " ); $lb = collations (); echo " <form action='' method='post'> \n " , " <table cellspacing='0' class='checkable'> \n " , script ( " mixin(qsl('table'), { onclick: tableClick, ondblclick: partialArg(tableClick, true)}); " ), " <thead><tr> " . ( support ( " database " ) ? " <td> " : " " ) . " <th> " . 'Database' . " - <a href=' " . h ( ME ) . " refresh=1'> " . 'Refresh' . " </a> " . " <td> " . 'Collation' . " <td> " . 'Tables' . " <td> " . 'Size' . " - <a href=' " . h ( ME ) . " dbsize=1'> " . 'Compute' . " </a> " . script ( " qsl('a').onclick = partial(ajaxSetHtml, ' " . js_escape ( ME ) . " script=connect'); " , " " ) . " </thead> \n " ; $k = ( $_GET [ " dbsize " ] ? count_tables ( $k ) : array_flip ( $k )); foreach ( $k
as $l => $S ){ $Sg = h ( ME ) . " db= " . urlencode ( $l ); $u = h ( " Db- " . $l ); echo " <tr " . odd () . " > " . ( support ( " database " ) ? " <td> " . checkbox ( " db[] " , $l , in_array ( $l ,( array ) $_POST [ " db " ]), " " , " " , " " , $u ) : " " ), " <th><a href=' $Sg ' id=' $u '> " . h ( $l ) . " </a> " ; $d = h ( db_collation ( $l , $lb )); echo " <td> " . ( support ( " database " ) ? " <a href=' $Sg " . ( $ah ? " &ns= " : " " ) . " &database=' title=' " . 'Alter database' . " '> $d </a> " : $d ), " <td align='right'><a href=' $Sg &schema=' id='tables- " . h ( $l ) . " ' title=' " . 'Database schema' . " '> " . ( $_GET [ " dbsize " ] ? $S : " ? " ) . " </a> " , " <td align='right' id='size- " . h ( $l ) . " '> " . ( $_GET [ " dbsize " ] ? db_size ( $l ) : " ? " ), " \n " ;} echo " </table> \n " ,( support ( " database " ) ? " <div class='footer'><div> \n " . " <fieldset><legend> " . 'Selected' . " <span id='selected'></span></legend><div> \n " . " <input type='hidden' name='all' value=''> " . script ( " qsl('input').onclick = function () { selectCount('selected', formChecked(this, /^db/)); }; " ) . " <input type='submit' name='drop' value=' " . 'Drop' . " '> " . confirm () . " \n " . " </div></fieldset> \n " . " </div></div> \n " : " " ), " <input type='hidden' name='token' value=' $ni '> \n " , " </form> \n " , script ( " tableCheck(); " );}} page_footer ( " db " );} if ( isset ( $_GET [ " status " ])) $_GET [ " variables " ] = $_GET [ " status " ]; if ( isset ( $_GET [ " import " ])) $_GET [ " sql " ] = $_GET [ " import " ]; if ( ! ( DB != " " ? $g -> select_db ( DB ) : isset ( $_GET [ " sql " ]) || isset ( $_GET [ " dump " ]) || isset ( $_GET [ " database " ]) || isset ( $_GET [ " processlist " ]) || isset ( $_GET [ " privileges " ]) || isset ( $_GET [ " user " ]) || isset ( $_GET [ " variables " ]) || $_GET [ " script " ] == " connect " || $_GET [ " script " ] == " kill " )){ if ( DB != " " || $_GET [ " refresh " ]){ restart_session (); set_session ( " dbs " , null );} connect_error (); exit ;} if ( support ( " scheme " )){ if ( DB != " " && $_GET [ " ns " ] !== " " ){ if ( ! isset ( $_GET [ " ns " ])) redirect ( preg_replace ( '~ns=[^&]*&~' , '' , ME ) . " ns= " . get_schema ()); if ( ! set_schema ( $_GET [ " ns " ])){ header ( " HTTP/1.1 404 Not Found " ); page_header ( 'Schema' . " : " . h ( $_GET [ " ns " ]), 'Invalid schema.' , true ); page_footer ( " ns " ); exit ;}}} $pf = " RESTRICT|NO ACTION|CASCADE|SET NULL|SET DEFAULT " ; class
TmpFile { var $handler ; var $size ; function
__construct (){ $this -> handler = tmpfile ();} function
write ( $Cb ){ $this -> size += strlen ( $Cb ); fwrite ( $this -> handler , $Cb );} function
send (){ fseek ( $this -> handler , 0 ); fpassthru ( $this -> handler ); fclose ( $this -> handler );}} $_c = " '(?:''|[^' \\ \\ ]| \\ \\ .)*' " ; $Td = " IN|OUT|INOUT " ; if ( isset ( $_GET [ " select " ]) && ( $_POST [ " edit " ] || $_POST [ " clone " ]) &&! $_POST [ " save " ]) $_GET [ " edit " ] = $_GET [ " select " ]; if ( isset ( $_GET [ " callf " ])) $_GET [ " call " ] = $_GET [ " callf " ]; if ( isset ( $_GET [ " function " ])) $_GET [ " procedure " ] = $_GET [ " function " ]; if ( isset ( $_GET [ " download " ])){ $a = $_GET [ " download " ]; $p = fields ( $a ); header ( " Content-Type: application/octet-stream " ); header ( " Content-Disposition: attachment; filename= " . friendly_url ( " $a - " . implode ( " _ " , $_GET [ " where " ])) . " . " . friendly_url ( $_GET [ " field " ])); $L = array ( idf_escape ( $_GET [ " field " ])); $H = $m -> select ( $a , $L , array ( where ( $_GET , $p )), $L ); $J = ( $H ? $H -> fetch_row () : array ()); echo $m -> value ( $J [ 0 ], $p [ $_GET [ " field " ]]); exit ;} elseif ( isset ( $_GET [ " table " ])){ $a = $_GET [ " table " ]; $p = fields ( $a ); if ( ! $p ) $n = error (); $R = table_status1 ( $a , true ); $D = $b -> tableName ( $R ); page_header (( $p && is_view ( $R ) ? $R [ 'Engine' ] == 'materialized view' ? 'Materialized view' : 'View' : 'Table' ) . " : " . ( $D != " " ? $D : h ( $a )), $n ); $b -> selectLinks ( $R ); $rb = $R [ " Comment " ]; if ( $rb != " " ) echo " <p class='nowrap'> " . 'Comment' . " : " . h ( $rb ) . " \n " ; if ( $p ) $b -> tableStructurePrint ( $p ); if ( ! is_view ( $R )){ if ( support ( " indexes " )){ echo " <h3 id='indexes'> " . 'Indexes' . " </h3> \n " ; $x = indexes ( $a ); if ( $x ) $b -> tableIndexesPrint ( $x ); echo '<p class="links"><a href="' . h ( ME ) . 'indexes=' . urlencode ( $a ) . '">' . 'Alter indexes' . " </a> \n " ;} if ( fk_support ( $R )){ echo " <h3 id='foreign-keys'> " . 'Foreign keys' . " </h3> \n " ; $hd = foreign_keys ( $a ); if ( $hd ){ echo " <table cellspacing='0'> \n " , " <thead><tr><th> " . 'Source' . " <td> " . 'Target' . " <td> " . 'ON DELETE' . " <td> " . 'ON UPDATE' . " <td></thead> \n " ; foreach ( $hd
as $D => $r ){ echo " <tr title=' " . h ( $D ) . " '> " , " <th><i> " . implode ( " </i>, <i> " , array_map ( 'h' , $r [ " source " ])) . " </i> " , " <td><a href=' " . h ( $r [ " db " ] != " " ? preg_replace ( '~db=[^&]*~' , " db= " . urlencode ( $r [ " db " ]), ME ) : ( $r [ " ns " ] != " " ? preg_replace ( '~ns=[^&]*~' , " ns= " . urlencode ( $r [ " ns " ]), ME ) : ME )) . " table= " . urlencode ( $r [ " table " ]) . " '> " . ( $r [ " db " ] != " " ? " <b> " . h ( $r [ " db " ]) . " </b>. " : " " ) . ( $r [ " ns " ] != " " ? " <b> " . h ( $r [ " ns " ]) . " </b>. " : " " ) . h ( $r [ " table " ]) . " </a> " , " (<i> " . implode ( " </i>, <i> " , array_map ( 'h' , $r [ " target " ])) . " </i>) " , " <td> " . h ( $r [ " on_delete " ]) . " \n " , " <td> " . h ( $r [ " on_update " ]) . " \n " , '<td><a href="' . h ( ME . 'foreign=' . urlencode ( $a ) . '&name=' . urlencode ( $D )) . '">' . 'Alter' . '</a>' ;} echo " </table> \n " ;} echo '<p class="links"><a href="' . h ( ME ) . 'foreign=' . urlencode ( $a ) . '">' . 'Add foreign key' . " </a> \n " ;}} if ( support ( is_view ( $R ) ? " view_trigger " : " trigger " )){ echo " <h3 id='triggers'> " . 'Triggers' . " </h3> \n " ; $zi = triggers ( $a ); if ( $zi ){ echo " <table cellspacing='0'> \n " ; foreach ( $zi
as $z => $X ) echo " <tr valign='top'><td> " . h ( $X [ 0 ]) . " <td> " . h ( $X [ 1 ]) . " <th> " . h ( $z ) . " <td><a href=' " . h ( ME . 'trigger=' . urlencode ( $a ) . '&name=' . urlencode ( $z )) . " '> " . 'Alter' . " </a> \n " ; echo " </table> \n " ;} echo '<p class="links"><a href="' . h ( ME ) . 'trigger=' . urlencode ( $a ) . '">' . 'Add trigger' . " </a> \n " ;}} elseif ( isset ( $_GET [ " schema " ])){ page_header ( 'Database schema' , " " , array (), h ( DB . ( $_GET [ " ns " ] ? " . $_GET[ns] " : " " ))); $Qh = array (); $Rh = array (); $ea = ( $_GET [ " schema " ] ? $_GET [ " schema " ] : $_COOKIE [ " adminer_schema- " . str_replace ( " . " , " _ " , DB )]); preg_match_all ( '~([^:]+):([-0-9.]+)x([-0-9.]+)(_|$)~' , $ea , $Ce , PREG_SET_ORDER ); foreach ( $Ce
as $t => $C ){ $Qh [ $C [ 1 ]] = array ( $C [ 2 ], $C [ 3 ]); $Rh [] = " \n \t ' " . js_escape ( $C [ 1 ]) . " ': [ $C[2] , $C[3] ] " ;} $oi = 0 ; $Pa =- 1 ; $Zg = array (); $Eg = array (); $re = array (); foreach ( table_status ( '' , true ) as $Q => $R ){ if ( is_view ( $R )) continue ; $eg = 0 ; $Zg [ $Q ][ " fields " ] = array (); foreach ( fields ( $Q ) as $D => $o ){ $eg += 1.25 ; $o [ " pos " ] = $eg ; $Zg [ $Q ][ " fields " ][ $D ] = $o ;} $Zg [ $Q ][ " pos " ] = ( $Qh [ $Q ] ? $Qh [ $Q ] : array ( $oi , 0 )); foreach ( $b -> foreignKeys ( $Q ) as $X ){ if ( ! $X [ " db " ]){ $pe = $Pa ; if ( $Qh [ $Q ][ 1 ] || $Qh [ $X [ " table " ]][ 1 ]) $pe = min ( floatval ( $Qh [ $Q ][ 1 ]), floatval ( $Qh [ $X [ " table " ]][ 1 ])) - 1 ; else $Pa -=. 1 ; while ( $re [( string ) $pe ]) $pe -=. 0001 ; $Zg [ $Q ][ " references " ][ $X [ " table " ]][( string ) $pe ] = array ( $X [ " source " ], $X [ " target " ]); $Eg [ $X [ " table " ]][ $Q ][( string ) $pe ] = $X [ " target " ]; $re [( string ) $pe ] = true ;}} $oi = max ( $oi , $Zg [ $Q ][ " pos " ][ 0 ] + 2.5 + $eg );} echo '<div id="schema" style="height: ' , $oi , ' em ; " >
< script ',nonce(),' >
qs ( \ ' #schema\').onselectstart = function () { return false; };
var tablePos = { ',implode(",",$Rh)."\n",' };
var em = qs ( \ '#schema\').offsetHeight / ' , $oi , ' ;
document . onmousemove = schemaMousemove ;
document . onmouseup = partialArg ( schemaMouseup , \ '' , js_escape ( DB ), ' \ ' );
</ script >
' ; foreach ( $Zg
as $D => $Q ){ echo " <div class='table' style='top: " . $Q [ " pos " ][ 0 ] . " em; left: " . $Q [ " pos " ][ 1 ] . " em;'> " , '<a href="' . h ( ME ) . 'table=' . urlencode ( $D ) . '"><b>' . h ( $D ) . " </b></a> " , script ( " qsl('div').onmousedown = schemaMousedown; " ); foreach ( $Q [ " fields " ] as $o ){ $X = '<span' . type_class ( $o [ " type " ]) . ' title="' . h ( $o [ " full_type " ] . ( $o [ " null " ] ? " NULL " : '' )) . '">' . h ( $o [ " field " ]) . '</span>' ; echo " <br> " . ( $o [ " primary " ] ? " <i> $X </i> " : $X );} foreach (( array ) $Q [ " references " ] as $Xh => $Fg ){ foreach ( $Fg
as $pe => $Bg ){ $qe = $pe - $Qh [ $D ][ 1 ]; $t = 0 ; foreach ( $Bg [ 0 ] as $vh ) echo " \n <div class='references' title=' " . h ( $Xh ) . " ' id='refs $pe - " . ( $t ++ ) . " ' style='left: $qe " . " em; top: " . $Q [ " fields " ][ $vh ][ " pos " ] . " em; padding-top: .5em;'><div style='border-top: 1px solid Gray; width: " . ( - $qe ) . " em;'></div></div> " ;}} foreach (( array ) $Eg [ $D ] as $Xh => $Fg ){ foreach ( $Fg
as $pe => $f ){ $qe = $pe - $Qh [ $D ][ 1 ]; $t = 0 ; foreach ( $f
as $Wh ) echo " \n <div class='references' title=' " . h ( $Xh ) . " ' id='refd $pe - " . ( $t ++ ) . " ' style='left: $qe " . " em; top: " . $Q [ " fields " ][ $Wh ][ " pos " ] . " em; height: 1.25em; background: url( " . h ( preg_replace ( " ~ \\ ?.*~ " , " " , ME ) . " ?file=arrow.gif) no-repeat right center;&version=4.8.1 " ) . " '><div style='height: .5em; border-bottom: 1px solid Gray; width: " . ( - $qe ) . " em;'></div></div> " ;}} echo " \n </div> \n " ;} foreach ( $Zg
as $D => $Q ){ foreach (( array ) $Q [ " references " ] as $Xh => $Fg ){ foreach ( $Fg
as $pe => $Bg ){ $Qe = $oi ; $Ge =- 10 ; foreach ( $Bg [ 0 ] as $z => $vh ){ $fg = $Q [ " pos " ][ 0 ] + $Q [ " fields " ][ $vh ][ " pos " ]; $gg = $Zg [ $Xh ][ " pos " ][ 0 ] + $Zg [ $Xh ][ " fields " ][ $Bg [ 1 ][ $z ]][ " pos " ]; $Qe = min ( $Qe , $fg , $gg ); $Ge = max ( $Ge , $fg , $gg );} echo " <div class='references' id='refl $pe ' style='left: $pe " . " em; top: $Qe " . " em; padding: .5em 0;'><div style='border-right: 1px solid Gray; margin-top: 1px; height: " . ( $Ge - $Qe ) . " em;'></div></div> \n " ;}}} echo ' </ div >
< p class = " links " >< a href = " ',h(ME. " schema = " .urlencode( $ea )),' " id = " schema-link " > Permanent link </ a >
';}elseif(isset($_GET["dump"])){$a=$_GET["dump"];if($_POST&&!$n){$Fb="";foreach(array("output","format","db_style","routines","events","table_style","auto_increment","triggers","data_style")as$z)$Fb.="&$z=".urlencode($_POST[$z]);cookie("adminer_export",substr($Fb,1));$S=array_flip((array)$_POST["tables"])+array_flip((array)$_POST["data"]);$Mc=dump_headers((count($S)==1?key($S):DB),(DB==""||count($S)>1));$be=preg_match(' ~ sql ~ ' , $_POST [ " format " ]); if ( $be ){ echo " -- Adminer $ia " . $ic [ DRIVER ] . " " . str_replace ( " \n " , " " , $g -> server_info ) . " dump \n \n " ; if ( $y == " sql " ){ echo " SET NAMES utf8;
SET time_zone = '+00:00' ;
SET foreign_key_checks = 0 ;
" .( $_POST["data_style"] ? " SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO' ;
" : " " ). "
" ; $g->query ( " SET time_zone = '+00:00' " ); $g->query ( " SET sql_mode = '' " );}} $Hh = $_POST["db_style"] ; $k =array(DB);if(DB== " " ) { $k = $_POST [ " databases " ]; if ( is_string ( $k )) $k = explode ( " \n " , rtrim ( str_replace ( " \r " , " " , $k ), " \n " )); } foreach((array) $k
as $l ){ $b -> dumpDatabase ( $l ); if ( $g -> select_db ( $l )){ if ( $be && preg_match ( '~CREATE~' , $Hh ) && ( $i = $g -> result ( " SHOW CREATE DATABASE " . idf_escape ( $l ), 1 ))){ set_utf8mb4 ( $i ); if ( $Hh == " DROP+CREATE " ) echo " DROP DATABASE IF EXISTS " . idf_escape ( $l ) . " ; \n " ; echo " $i ; \n " ;} if ( $be ){ if ( $Hh ) echo
use_sql ( $l ) . " ; \n \n " ; $If = " " ; if ( $_POST [ " routines " ]){ foreach ( array ( " FUNCTION " , " PROCEDURE " ) as $Tg ){ foreach ( get_rows ( " SHOW $Tg STATUS WHERE Db = " . q ( $l ), null , " -- " ) as $J ){ $i = remove_definer ( $g -> result ( " SHOW CREATE $Tg " . idf_escape ( $J [ " Name " ]), 2 )); set_utf8mb4 ( $i ); $If .= ( $Hh != 'DROP+CREATE' ? " DROP $Tg IF EXISTS " . idf_escape ( $J [ " Name " ]) . " ;; \n " : " " ) . " $i ;; \n \n " ;}}} if ( $_POST [ " events " ]){ foreach ( get_rows ( " SHOW EVENTS " , null , " -- " ) as $J ){ $i = remove_definer ( $g -> result ( " SHOW CREATE EVENT " . idf_escape ( $J [ " Name " ]), 3 )); set_utf8mb4 ( $i ); $If .= ( $Hh != 'DROP+CREATE' ? " DROP EVENT IF EXISTS " . idf_escape ( $J [ " Name " ]) . " ;; \n " : " " ) . " $i ;; \n \n " ;}} if ( $If ) echo " DELIMITER ;; \n \n $If " . " DELIMITER ; \n \n " ;} if ( $_POST [ " table_style " ] || $_POST [ " data_style " ]){ $Yi = array (); foreach ( table_status ( '' , true ) as $D => $R ){ $Q = ( DB == " " || in_array ( $D ,( array ) $_POST [ " tables " ])); $Pb = ( DB == " " || in_array ( $D ,( array ) $_POST [ " data " ])); if ( $Q || $Pb ){ if ( $Mc == " tar " ){ $ki = new
TmpFile ; ob_start ( array ( $ki , 'write' ), 1e5 );} $b -> dumpTable ( $D ,( $Q ? $_POST [ " table_style " ] : " " ),( is_view ( $R ) ? 2 : 0 )); if ( is_view ( $R )) $Yi [] = $D ; elseif ( $Pb ){ $p = fields ( $D ); $b -> dumpData ( $D , $_POST [ " data_style " ], " SELECT * " . convert_fields ( $p , $p ) . " FROM " . table ( $D ));} if ( $be && $_POST [ " triggers " ] && $Q && ( $zi = trigger_sql ( $D ))) echo " \n DELIMITER ;; \n $zi\nDELIMITER ; \n " ; if ( $Mc == " tar " ){ ob_end_flush (); tar_file (( DB != " " ? " " : " $l / " ) . " $D .csv " , $ki );} elseif ( $be ) echo " \n " ;}} if ( function_exists ( 'foreign_keys_sql' )){ foreach ( table_status ( '' , true ) as $D => $R ){ $Q = ( DB == " " || in_array ( $D ,( array ) $_POST [ " tables " ])); if ( $Q &&! is_view ( $R )) echo
foreign_keys_sql ( $D );}} foreach ( $Yi
as $Xi ) $b -> dumpTable ( $Xi , $_POST [ " table_style " ], 1 ); if ( $Mc == " tar " ) echo
pack ( " x512 " );}}} if ( $be ) echo " -- " . $g -> result ( " SELECT NOW() " ) . " \n " ; exit ;} page_header ( 'Export' , $n ,( $_GET [ " export " ] != " " ? array ( " table " => $_GET [ " export " ]) : array ()), h ( DB )); echo '
< form action = " " method = " post " >
< table cellspacing = " 0 " class = " layout " >
';$Tb=array(' ',' USE ',' DROP + CREATE ',' CREATE ');$Sh=array(' ',' DROP + CREATE ',' CREATE ');$Qb=array(' ',' TRUNCATE + INSERT ',' INSERT ');if($y=="sql")$Qb[]=' INSERT + UPDATE ';parse_str($_COOKIE["adminer_export"],$J);if(!$J)$J=array("output"=>"text","format"=>"sql","db_style"=>(DB!=""?"":"CREATE"),"table_style"=>"DROP+CREATE","data_style"=>"INSERT");if(!isset($J["events"])){$J["routines"]=$J["events"]=($_GET["dump"]=="");$J["triggers"]=$J["table_style"];}echo"<tr><th>".' Output '."<td>".html_select("output",$b->dumpOutput(),$J["output"],0)."\n";echo"<tr><th>".' Format '."<td>".html_select("format",$b->dumpFormat(),$J["format"],0)."\n";echo($y=="sqlite"?"":"<tr><th>".' Database '."<td>".html_select(' db_style ',$Tb,$J["db_style"]).(support("routine")?checkbox("routines",1,$J["routines"],' Routines '):"").(support("event")?checkbox("events",1,$J["events"],' Events '):"")),"<tr><th>".' Tables '."<td>".html_select(' table_style ',$Sh,$J["table_style"]).checkbox("auto_increment",1,$J["auto_increment"],' Auto Increment ').(support("trigger")?checkbox("triggers",1,$J["triggers"],' Triggers '):""),"<tr><th>".' Data '."<td>".html_select(' data_style ',$Qb,$J["data_style"]),' </ table >
< p >< input type = " submit " value = " Export " >
< input type = " hidden " name = " token " value = " ', $ni ,' " >
< table cellspacing = " 0 " >
',script("qsl(' table ').onclick = dumpClick;");$jg=array();if(DB!=""){$cb=($a!=""?"":" checked");echo"<thead><tr>","<th style=' text - align : left ; '><label class=' block '><input type=' checkbox ' id=' check - tables '$cb>".' Tables '."</label>".script("qs(' #check-tables').onclick = partial(formCheck, /^tables\\[/);",""),"<th style='text-align: right;'><label class='block'>".'Data'."<input type='checkbox' id='check-data'$cb></label>".script("qs('#check-data').onclick = partial(formCheck, /^data\\[/);",""),"</thead>\n";$Yi="";$Th=tables_list();foreach($Th
as $D => $T ){ $ig = preg_replace ( '~_.*~' , '' , $D ); $cb = ( $a == " " || $a == ( substr ( $a , - 1 ) == " % " ? " $ig % " : $D )); $mg = " <tr><td> " . checkbox ( " tables[] " , $D , $cb , $D , " " , " block " ); if ( $T !== null &&! preg_match ( '~table~i' , $T )) $Yi .= " $mg\n " ; else
echo " $mg <td align='right'><label class='block'><span id='Rows- " . h ( $D ) . " '></span> " . checkbox ( " data[] " , $D , $cb ) . " </label> \n " ; $jg [ $ig ] ++ ;} echo $Yi ; if ( $Th ) echo
script ( " ajaxSetHtml(' " . js_escape ( ME ) . " script=db'); " );} else { echo " <thead><tr><th style='text-align: left;'> " , " <label class='block'><input type='checkbox' id='check-databases' " . ( $a == " " ? " checked " : " " ) . " > " . 'Database' . " </label> " , script ( " qs('#check-databases').onclick = partial(formCheck, /^databases \\ [/); " , " " ), " </thead> \n " ; $k = $b -> databases (); if ( $k ){ foreach ( $k
as $l ){ if ( ! information_schema ( $l )){ $ig = preg_replace ( '~_.*~' , '' , $l ); echo " <tr><td> " . checkbox ( " databases[] " , $l , $a == " " || $a == " $ig % " , $l , " " , " block " ) . " \n " ; $jg [ $ig ] ++ ;}}} else
echo " <tr><td><textarea name='databases' rows='10' cols='20'></textarea> " ;} echo ' </ table >
</ form >
' ; $Zc = true ; foreach ( $jg
as $z => $X ){ if ( $z != " " && $X > 1 ){ echo ( $Zc ? " <p> " : " " ) . " <a href=' " . h ( ME ) . " dump= " . urlencode ( " $z % " ) . " '> " . h ( $z ) . " </a> " ; $Zc = false ;}}} elseif ( isset ( $_GET [ " privileges " ])){ page_header ( 'Privileges' ); echo '<p class="links"><a href="' . h ( ME ) . 'user=">' . 'Create user' . " </a> " ; $H = $g -> query ( " SELECT User, Host FROM mysql. " . ( DB == " " ? " user " : " db WHERE " . q ( DB ) . " LIKE Db " ) . " ORDER BY Host, User " ); $od = $H ; if ( ! $H ) $H = $g -> query ( " SELECT SUBSTRING_INDEX(CURRENT_USER, '@', 1) AS User, SUBSTRING_INDEX(CURRENT_USER, '@', -1) AS Host " ); echo " <form action=''><p> \n " ; hidden_fields_get (); echo " <input type='hidden' name='db' value=' " . h ( DB ) . " '> \n " ,( $od ? " " : " <input type='hidden' name='grant' value=''> \n " ), " <table cellspacing='0'> \n " , " <thead><tr><th> " . 'Username' . " <th> " . 'Server' . " <th></thead> \n " ; while ( $J = $H -> fetch_assoc ()) echo '<tr' . odd () . '><td>' . h ( $J [ " User " ]) . " <td> " . h ( $J [ " Host " ]) . '<td><a href="' . h ( ME . 'user=' . urlencode ( $J [ " User " ]) . '&host=' . urlencode ( $J [ " Host " ])) . '">' . 'Edit' . " </a> \n " ; if ( ! $od || DB != " " ) echo " <tr " . odd () . " ><td><input name='user' autocapitalize='off'><td><input name='host' value='localhost' autocapitalize='off'><td><input type='submit' value=' " . 'Edit' . " '> \n " ; echo " </table> \n " , " </form> \n " ;} elseif ( isset ( $_GET [ " sql " ])){ if ( ! $n && $_POST [ " export " ]){ dump_headers ( " sql " ); $b -> dumpTable ( " " , " " ); $b -> dumpData ( " " , " table " , $_POST [ " query " ]); exit ;} restart_session (); $Bd =& get_session ( " queries " ); $Ad =& $Bd [ DB ]; if ( ! $n && $_POST [ " clear " ]){ $Ad = array (); redirect ( remove_from_uri ( " history " ));} page_header (( isset ( $_GET [ " import " ]) ? 'Import' : 'SQL command' ), $n ); if ( ! $n && $_POST ){ $ld = false ; if ( ! isset ( $_GET [ " import " ])) $G = $_POST [ " query " ]; elseif ( $_POST [ " webfile " ]){ $zh = $b -> importServerPath (); $ld =@ fopen (( file_exists ( $zh ) ? $zh : " compress.zlib:// $zh .gz " ), " rb " ); $G = ( $ld ? fread ( $ld , 1e6 ) : false );} else $G = get_file ( " sql_file " , true ); if ( is_string ( $G )){ if ( function_exists ( 'memory_get_usage' )) @ ini_set ( " memory_limit " , max ( ini_bytes ( " memory_limit " ), 2 * strlen ( $G ) + memory_get_usage () + 8e6 )); if ( $G != " " && strlen ( $G ) < 1e6 ){ $ug = $G . ( preg_match ( " ~;[ \t \r \n ]* \$ ~ " , $G ) ? " " : " ; " ); if ( ! $Ad || reset ( end ( $Ad )) != $ug ){ restart_session (); $Ad [] = array ( $ug , time ()); set_session ( " queries " , $Bd ); stop_session ();}} $wh = " (?: \\ s|/ \\ *[ \ s \ S]*? \\ */|(?:#|-- )[^ \n ]* \n ?|-- \r ? \n ) " ; $ac = " ; " ; $hf = 0 ; $xc = true ; $h = connect (); if ( is_object ( $h ) && DB != " " ){ $h -> select_db ( DB ); if ( $_GET [ " ns " ] != " " ) set_schema ( $_GET [ " ns " ], $h );} $qb = 0 ; $Bc = array (); $Pf = '[\'"' . ( $y == " sql " ? '`#' : ( $y == " sqlite " ? '`[' : ( $y == " mssql " ? '[' : '' ))) . ']|/\*|-- |$' . ( $y == " pgsql " ? '|\$[^$]*\$' : '' ); $pi = microtime ( true ); parse_str ( $_COOKIE [ " adminer_export " ], $xa ); $oc = $b -> dumpFormat (); unset ( $oc [ " sql " ]); while ( $G != " " ){ if ( ! $hf && preg_match ( " ~^ $wh *+DELIMITER \\ s+( \\ S+)~i " , $G , $C )){ $ac = $C [ 1 ]; $G = substr ( $G , strlen ( $C [ 0 ]));} else { preg_match ( '(' . preg_quote ( $ac ) . " \\ s*| $Pf ) " , $G , $C , PREG_OFFSET_CAPTURE , $hf ); list ( $jd , $eg ) = $C [ 0 ]; if ( ! $jd && $ld &&! feof ( $ld )) $G .= fread ( $ld , 1e5 ); else { if ( ! $jd && rtrim ( $G ) == " " ) break ; $hf = $eg + strlen ( $jd ); if ( $jd && rtrim ( $jd ) != $ac ){ while ( preg_match ( '(' . ( $jd == '/*' ? '\*/' : ( $jd == '[' ? ']' : ( preg_match ( '~^-- |^#~' , $jd ) ? " \n " : preg_quote ( $jd ) . " | \\ \\ . " ))) . '|$)s' , $G , $C , PREG_OFFSET_CAPTURE , $hf )){ $Xg = $C [ 0 ][ 0 ]; if ( ! $Xg && $ld &&! feof ( $ld )) $G .= fread ( $ld , 1e5 ); else { $hf = $C [ 0 ][ 1 ] + strlen ( $Xg ); if ( $Xg [ 0 ] != " \\ " ) break ;}}} else { $xc = false ; $ug = substr ( $G , 0 , $eg ); $qb ++ ; $mg = " <pre id='sql- $qb '><code class='jush- $y '> " . $b -> sqlCommandQuery ( $ug ) . " </code></pre> \n " ; if ( $y == " sqlite " && preg_match ( " ~^ $wh *+ATTACH \\ b~i " , $ug , $C )){ echo $mg , " <p class='error'> " . 'ATTACH queries are not supported.' . " \n " ; $Bc [] = " <a href='#sql- $qb '> $qb </a> " ; if ( $_POST [ " error_stops " ]) break ;} else { if ( ! $_POST [ " only_errors " ]){ echo $mg ; ob_flush (); flush ();} $Ch = microtime ( true ); if ( $g -> multi_query ( $ug ) && is_object ( $h ) && preg_match ( " ~^ $wh *+USE \\ b~i " , $ug )) $h -> query ( $ug ); do { $H = $g -> store_result (); if ( $g -> error ){ echo ( $_POST [ " only_errors " ] ? $mg : " " ), " <p class='error'> " . 'Error in query' . ( $g -> errno ? " ( $g->errno ) " : " " ) . " : " . error () . " \n " ; $Bc [] = " <a href='#sql- $qb '> $qb </a> " ; if ( $_POST [ " error_stops " ]) break
2 ;} else { $di = " <span class='time'>( " . format_time ( $Ch ) . " )</span> " . ( strlen ( $ug ) < 1000 ? " <a href=' " . h ( ME ) . " sql= " . urlencode ( trim ( $ug )) . " '> " . 'Edit' . " </a> " : " " ); $za = $g -> affected_rows ; $bj = ( $_POST [ " only_errors " ] ? " " : $m -> warnings ()); $cj = " warnings- $qb " ; if ( $bj ) $di .= " , <a href='# $cj '> " . 'Warnings' . " </a> " . script ( " qsl('a').onclick = partial(toggle, ' $cj '); " , " " ); $Jc = null ; $Kc = " explain- $qb " ; if ( is_object ( $H )){ $_ = $_POST [ " limit " ]; $Bf = select ( $H , $h , array (), $_ ); if ( ! $_POST [ " only_errors " ]){ echo " <form action='' method='post'> \n " ; $df = $H -> num_rows ; echo " <p> " . ( $df ? ( $_ && $df > $_ ? sprintf ( '%d / ' , $_ ) : " " ) . lang ( array ( '%d row' , '%d rows' ), $df ) : " " ), $di ; if ( $h && preg_match ( " ~^( $wh | \\ ()*+SELECT \\ b~i " , $ug ) && ( $Jc = explain ( $h , $ug ))) echo " , <a href='# $Kc '>Explain</a> " . script ( " qsl('a').onclick = partial(toggle, ' $Kc '); " , " " ); $u = " export- $qb " ; echo " , <a href='# $u '> " . 'Export' . " </a> " . script ( " qsl('a').onclick = partial(toggle, ' $u '); " , " " ) . " <span id=' $u ' class='hidden'>: " . html_select ( " output " , $b -> dumpOutput (), $xa [ " output " ]) . " " . html_select ( " format " , $oc , $xa [ " format " ]) . " <input type='hidden' name='query' value=' " . h ( $ug ) . " '> " . " <input type='submit' name='export' value=' " . 'Export' . " '><input type='hidden' name='token' value=' $ni '></span> \n " . " </form> \n " ;}} else { if ( preg_match ( " ~^ $wh *+(CREATE|DROP|ALTER) $wh ++(DATABASE|SCHEMA) \\ b~i " , $ug )){ restart_session (); set_session ( " dbs " , null ); stop_session ();} if ( ! $_POST [ " only_errors " ]) echo " <p class='message' title=' " . h ( $g -> info ) . " '> " . lang ( array ( 'Query executed OK, %d row affected.' , 'Query executed OK, %d rows affected.' ), $za ) . " $di\n " ;} echo ( $bj ? " <div id=' $cj ' class='hidden'> \n $bj </div> \n " : " " ); if ( $Jc ){ echo " <div id=' $Kc ' class='hidden'> \n " ; select ( $Jc , $h , $Bf ); echo " </div> \n " ;}} $Ch = microtime ( true );} while ( $g -> next_result ());} $G = substr ( $G , $hf ); $hf = 0 ;}}}} if ( $xc ) echo " <p class='message'> " . 'No commands to execute.' . " \n " ; elseif ( $_POST [ " only_errors " ]){ echo " <p class='message'> " . lang ( array ( '%d query executed OK.' , '%d queries executed OK.' ), $qb - count ( $Bc )), " <span class='time'>( " . format_time ( $pi ) . " )</span> \n " ;} elseif ( $Bc && $qb > 1 ) echo " <p class='error'> " . 'Error in query' . " : " . implode ( " " , $Bc ) . " \n " ;} else
echo " <p class='error'> " . upload_error ( $G ) . " \n " ;} echo '
< form action = " " method = " post " enctype = " multipart/form-data " id = " form " >
';$Hc="<input type=' submit ' value=' " .'Execute'. " ' title=' Ctrl + Enter ' > " ;if(!isset( $_GET["import"] )) { $ug = $_GET["sql"] ;if( $_POST ) $ug = $_POST["query"] ;elseif( $_GET["history"] == " all " ) $ug = $Ad ;elseif( $_GET["history"] != " " ) $ug = $Ad[$_GET["history"] ][0];echo " < p > " ;textarea( " query " , $ug ,20);echo
script (( $_POST ? " " : " qs('textarea').focus(); \n " ) . " qs('#form').onsubmit = partial(sqlSubmit, qs('#form'), ' " . js_escape ( remove_from_uri ( " sql|limit|error_stops|only_errors|history " )) . " '); " ), " <p> $Hc\n " , 'Limit rows' . " : <input type='number' name='limit' class='size' value=' " . h ( $_POST ? $_POST [ " limit " ] : $_GET [ " limit " ]) . " '> \n " ;} else { echo " <fieldset><legend> " . 'File upload' . " </legend><div> " ; $ud = ( extension_loaded ( " zlib " ) ? " [.gz] " : " " ); echo ( ini_bool ( " file_uploads " ) ? " SQL $ud (< " . ini_get ( " upload_max_filesize " ) . " B): <input type='file' name='sql_file[]' multiple> \n $Hc " : 'File uploads are disabled.' ), " </div></fieldset> \n " ; $Id = $b -> importServerPath (); if ( $Id ){ echo " <fieldset><legend> " . 'From server' . " </legend><div> " , sprintf ( 'Webserver file %s' , " <code> " . h ( $Id ) . " $ud </code> " ), ' <input type="submit" name="webfile" value="' . 'Run file' . '">' , " </div></fieldset> \n " ;} echo " <p> " ;} echo
checkbox ( " error_stops " , 1 ,( $_POST ? $_POST [ " error_stops " ] : isset ( $_GET [ " import " ]) || $_GET [ " error_stops " ]), 'Stop on error' ) . " \n " , checkbox ( " only_errors " , 1 ,( $_POST ? $_POST [ " only_errors " ] : isset ( $_GET [ " import " ]) || $_GET [ " only_errors " ]), 'Show only errors' ) . " \n " , " <input type='hidden' name='token' value=' $ni '> \n " ; if ( ! isset ( $_GET [ " import " ]) && $Ad ){ print_fieldset ( " history " , 'History' , $_GET [ " history " ] != " " ); for ( $X = end ( $Ad ); $X ; $X = prev ( $Ad )){ $z = key ( $Ad ); list ( $ug , $di , $sc ) = $X ; echo '<a href="' . h ( ME . " sql=&history= $z " ) . '">' . 'Edit' . " </a> " . " <span class='time' title=' " .@ date ( 'Y-m-d' , $di ) . " '> " .@ date ( " H:i:s " , $di ) . " </span> " . " <code class='jush- $y '> " . shorten_utf8 ( ltrim ( str_replace ( " \n " , " " , str_replace ( " \r " , " " , preg_replace ( '~^(#|-- ).*~m' , '' , $ug )))), 80 , " </code> " ) . ( $sc ? " <span class='time'>( $sc )</span> " : " " ) . " <br> \n " ;} echo " <input type='submit' name='clear' value=' " . 'Clear' . " '> \n " , " <a href=' " . h ( ME . " sql=&history=all " ) . " '> " . 'Edit all' . " </a> \n " , " </div></fieldset> \n " ;} echo ' </ form >
' ;} elseif ( isset ( $_GET [ " edit " ])){ $a = $_GET [ " edit " ]; $p = fields ( $a ); $Z = ( isset ( $_GET [ " select " ]) ? ( $_POST [ " check " ] && count ( $_POST [ " check " ]) == 1 ? where_check ( $_POST [ " check " ][ 0 ], $p ) : " " ) : where ( $_GET , $p )); $Ii = ( isset ( $_GET [ " select " ]) ? $_POST [ " edit " ] : $Z ); foreach ( $p
as $D => $o ){ if ( ! isset ( $o [ " privileges " ][ $Ii ? " update " : " insert " ]) || $b -> fieldName ( $o ) == " " || $o [ " generated " ]) unset ( $p [ $D ]);} if ( $_POST &&! $n &&! isset ( $_GET [ " select " ])){ $B = $_POST [ " referer " ]; if ( $_POST [ " insert " ]) $B = ( $Ii ? null : $_SERVER [ " REQUEST_URI " ]); elseif ( ! preg_match ( '~^.+&select=.+$~' , $B )) $B = ME . " select= " . urlencode ( $a ); $x = indexes ( $a ); $Di = unique_array ( $_GET [ " where " ], $x ); $xg = " \n WHERE $Z " ; if ( isset ( $_POST [ " delete " ])) queries_redirect ( $B , 'Item has been deleted.' , $m -> delete ( $a , $xg , ! $Di )); else { $N = array (); foreach ( $p
as $D => $o ){ $X = process_input ( $o ); if ( $X !== false && $X !== null ) $N [ idf_escape ( $D )] = $X ;} if ( $Ii ){ if ( ! $N ) redirect ( $B ); queries_redirect ( $B , 'Item has been updated.' , $m -> update ( $a , $N , $xg , ! $Di )); if ( is_ajax ()){ page_headers (); page_messages ( $n ); exit ;}} else { $H = $m -> insert ( $a , $N ); $oe = ( $H ? last_id () : 0 ); queries_redirect ( $B , sprintf ( 'Item%s has been inserted.' ,( $oe ? " $oe " : " " )), $H );}}} $J = null ; if ( $_POST [ " save " ]) $J = ( array ) $_POST [ " fields " ]; elseif ( $Z ){ $L = array (); foreach ( $p
as $D => $o ){ if ( isset ( $o [ " privileges " ][ " select " ])){ $Fa = convert_field ( $o ); if ( $_POST [ " clone " ] && $o [ " auto_increment " ]) $Fa = " '' " ; if ( $y == " sql " && preg_match ( " ~enum|set~ " , $o [ " type " ])) $Fa = " 1* " . idf_escape ( $D ); $L [] = ( $Fa ? " $Fa AS " : " " ) . idf_escape ( $D );}} $J = array (); if ( ! support ( " table " )) $L = array ( " * " ); if ( $L ){ $H = $m -> select ( $a , $L , array ( $Z ), $L , array (),( isset ( $_GET [ " select " ]) ? 2 : 1 )); if ( ! $H ) $n = error (); else { $J = $H -> fetch_assoc (); if ( ! $J ) $J = false ;} if ( isset ( $_GET [ " select " ]) && ( ! $J || $H -> fetch_assoc ())) $J = null ;}} if ( ! support ( " table " ) &&! $p ){ if ( ! $Z ){ $H = $m -> select ( $a , array ( " * " ), $Z , array ( " * " )); $J = ( $H ? $H -> fetch_assoc () : false ); if ( ! $J ) $J = array ( $m -> primary => " " );} if ( $J ){ foreach ( $J
as $z => $X ){ if ( ! $Z ) $J [ $z ] = null ; $p [ $z ] = array ( " field " => $z , " null " => ( $z != $m -> primary ), " auto_increment " => ( $z == $m -> primary ));}}} edit_form ( $a , $p , $J , $Ii );} elseif ( isset ( $_GET [ " create " ])){ $a = $_GET [ " create " ]; $Rf = array (); foreach ( array ( 'HASH' , 'LINEAR HASH' , 'KEY' , 'LINEAR KEY' , 'RANGE' , 'LIST' ) as $z ) $Rf [ $z ] = $z ; $Dg = referencable_primary ( $a ); $hd = array (); foreach ( $Dg
as $Oh => $o ) $hd [ str_replace ( " ` " , " `` " , $Oh ) . " ` " . str_replace ( " ` " , " `` " , $o [ " field " ])] = $Oh ; $Ef = array (); $R = array (); if ( $a != " " ){ $Ef = fields ( $a ); $R = table_status ( $a ); if ( ! $R ) $n = 'No tables.' ;} $J = $_POST ; $J [ " fields " ] = ( array ) $J [ " fields " ]; if ( $J [ " auto_increment_col " ]) $J [ " fields " ][ $J [ " auto_increment_col " ]][ " auto_increment " ] = true ; if ( $_POST ) set_adminer_settings ( array ( " comments " => $_POST [ " comments " ], " defaults " => $_POST [ " defaults " ])); if ( $_POST &&! process_fields ( $J [ " fields " ]) &&! $n ){ if ( $_POST [ " drop " ]) queries_redirect ( substr ( ME , 0 , - 1 ), 'Table has been dropped.' , drop_tables ( array ( $a ))); else { $p = array (); $Ca = array (); $Mi = false ; $fd = array (); $Df = reset ( $Ef ); $Aa = " FIRST " ; foreach ( $J [ " fields " ] as $z => $o ){ $r = $hd [ $o [ " type " ]]; $_i = ( $r !== null ? $Dg [ $r ] : $o ); if ( $o [ " field " ] != " " ){ if ( ! $o [ " has_default " ]) $o [ " default " ] = null ; if ( $z == $J [ " auto_increment_col " ]) $o [ " auto_increment " ] = true ; $rg = process_field ( $o , $_i ); $Ca [] = array ( $o [ " orig " ], $rg , $Aa ); if ( ! $Df || $rg != process_field ( $Df , $Df )){ $p [] = array ( $o [ " orig " ], $rg , $Aa ); if ( $o [ " orig " ] != " " || $Aa ) $Mi = true ;} if ( $r !== null ) $fd [ idf_escape ( $o [ " field " ])] = ( $a != " " && $y != " sqlite " ? " ADD " : " " ) . format_foreign_key ( array ( 'table' => $hd [ $o [ " type " ]], 'source' => array ( $o [ " field " ]), 'target' => array ( $_i [ " field " ]), 'on_delete' => $o [ " on_delete " ],)); $Aa = " AFTER " . idf_escape ( $o [ " field " ]);} elseif ( $o [ " orig " ] != " " ){ $Mi = true ; $p [] = array ( $o [ " orig " ]);} if ( $o [ " orig " ] != " " ){ $Df = next ( $Ef ); if ( ! $Df ) $Aa = " " ;}} $Tf = " " ; if ( $Rf [ $J [ " partition_by " ]]){ $Uf = array (); if ( $J [ " partition_by " ] == 'RANGE' || $J [ " partition_by " ] == 'LIST' ){ foreach ( array_filter ( $J [ " partition_names " ]) as $z => $X ){ $Y = $J [ " partition_values " ][ $z ]; $Uf [] = " \n PARTITION " . idf_escape ( $X ) . " VALUES " . ( $J [ " partition_by " ] == 'RANGE' ? " LESS THAN " : " IN " ) . ( $Y != " " ? " ( $Y ) " : " MAXVALUE " );}} $Tf .= " \n PARTITION BY $J[partition_by] ( $J[partition] ) " . ( $Uf ? " ( " . implode ( " , " , $Uf ) . " \n ) " : ( $J [ " partitions " ] ? " PARTITIONS " . ( + $J [ " partitions " ]) : " " ));} elseif ( support ( " partitioning " ) && preg_match ( " ~partitioned~ " , $R [ " Create_options " ])) $Tf .= " \n REMOVE PARTITIONING " ; $Ke = 'Table has been altered.' ; if ( $a == " " ){ cookie ( " adminer_engine " , $J [ " Engine " ]); $Ke = 'Table has been created.' ;} $D = trim ( $J [ " name " ]); queries_redirect ( ME . ( support ( " table " ) ? " table= " : " select= " ) . urlencode ( $D ), $Ke , alter_table ( $a , $D ,( $y == " sqlite " && ( $Mi || $fd ) ? $Ca : $p ), $fd ,( $J [ " Comment " ] != $R [ " Comment " ] ? $J [ " Comment " ] : null ),( $J [ " Engine " ] && $J [ " Engine " ] != $R [ " Engine " ] ? $J [ " Engine " ] : " " ),( $J [ " Collation " ] && $J [ " Collation " ] != $R [ " Collation " ] ? $J [ " Collation " ] : " " ),( $J [ " Auto_increment " ] != " " ? number ( $J [ " Auto_increment " ]) : " " ), $Tf ));}} page_header (( $a != " " ? 'Alter table' : 'Create table' ), $n , array ( " table " => $a ), h ( $a )); if ( ! $_POST ){ $J = array ( " Engine " => $_COOKIE [ " adminer_engine " ], " fields " => array ( array ( " field " => " " , " type " => ( isset ( $U [ " int " ]) ? " int " : ( isset ( $U [ " integer " ]) ? " integer " : " " )), " on_update " => " " )), " partition_names " => array ( " " ),); if ( $a != " " ){ $J = $R ; $J [ " name " ] = $a ; $J [ " fields " ] = array (); if ( ! $_GET [ " auto_increment " ]) $J [ " Auto_increment " ] = " " ; foreach ( $Ef
as $o ){ $o [ " has_default " ] = isset ( $o [ " default " ]); $J [ " fields " ][] = $o ;} if ( support ( " partitioning " )){ $md = " FROM information_schema.PARTITIONS WHERE TABLE_SCHEMA = " . q ( DB ) . " AND TABLE_NAME = " . q ( $a ); $H = $g -> query ( " SELECT PARTITION_METHOD, PARTITION_ORDINAL_POSITION, PARTITION_EXPRESSION $md ORDER BY PARTITION_ORDINAL_POSITION DESC LIMIT 1 " ); list ( $J [ " partition_by " ], $J [ " partitions " ], $J [ " partition " ]) = $H -> fetch_row (); $Uf = get_key_vals ( " SELECT PARTITION_NAME, PARTITION_DESCRIPTION $md AND PARTITION_NAME != '' ORDER BY PARTITION_ORDINAL_POSITION " ); $Uf [ " " ] = " " ; $J [ " partition_names " ] = array_keys ( $Uf ); $J [ " partition_values " ] = array_values ( $Uf );}}} $lb = collations (); $zc = engines (); foreach ( $zc
as $yc ){ if ( ! strcasecmp ( $yc , $J [ " Engine " ])){ $J [ " Engine " ] = $yc ; break ;}} echo '
< form action = " " method = " post " id = " form " >
< p >
';if(support("columns")||$a==""){echo' Table name : < input name = " name " data - maxlength = " 64 " value = " ',h( $J["name"] ),' " autocapitalize = " off " >
' ; if ( $a == " " &&! $_POST ) echo
script ( " focus(qs('#form')['name']); " ); echo ( $zc ? " <select name='Engine'> " . optionlist ( array ( " " => " ( " . 'engine' . " ) " ) + $zc , $J [ " Engine " ]) . " </select> " . on_help ( " getTarget(event).value " , 1 ) . script ( " qsl('select').onchange = helpClose; " ) : " " ), ' ' ,( $lb &&! preg_match ( " ~sqlite|mssql~ " , $y ) ? html_select ( " Collation " , array ( " " => " ( " . 'collation' . " ) " ) + $lb , $J [ " Collation " ]) : " " ), ' < input type = " submit " value = " Save " >
';}echo'
';if(support("columns")){echo' < div class = " scrollable " >
< table cellspacing = " 0 " id = " edit-fields " class = " nowrap " >
';edit_fields($J["fields"],$lb,"TABLE",$hd);echo' </ table >
',script("editFields();"),' </ div >
< p >
Auto Increment : < input type = " number " name = " Auto_increment " size = " 6 " value = " ',h( $J["Auto_increment"] ),' " >
',checkbox("defaults",1,($_POST?$_POST["defaults"]:adminer_setting("defaults")),' Default values ',"columnShow(this.checked, 5)","jsonly"),(support("comment")?checkbox("comments",1,($_POST?$_POST["comments"]:adminer_setting("comments")),' Comment ',"editingCommentsClick(this, true);","jsonly").' < input name = " Comment " value = " '.h( $J["Comment"] ).' " data - maxlength = " '.(min_version(5.5)?2048:60).' " > ':' '),' < p >
< input type = " submit " value = " Save " >
';}echo'
';if($a!=""){echo' < input type = " submit " name = " drop " value = " Drop " > ',confirm(sprintf(' Drop % s ? ',$a));}if(support("partitioning")){$Sf=preg_match(' ~ RANGE | LIST ~ ',$J["partition_by"]);print_fieldset("partition",' Partition by ',$J["partition_by"]);echo' < p >
',"<select name=' partition_by '>".optionlist(array(""=>"")+$Rf,$J["partition_by"])."</select>".on_help("getTarget(event).value.replace(/./, ' PARTITION BY \ $ & ')",1).script("qsl(' select ').onchange = partitionByChange;"),' ( < input name = " partition " value = " ',h( $J["partition"] ),' " > )
Partitions : < input type = " number " name = " partitions " class = " size',( $Sf ||! $J["partition_by"] ? " hidden " : " " ),' " value = " ',h( $J["partitions"] ),' " >
< table cellspacing = " 0 " id = " partition-table " ',($Sf?"":" class=' hidden '"),' >
< thead >< tr >< th > Partition name < th > Values </ thead >
';foreach($J["partition_names"]as$z=>$X){echo' < tr > ',' < td >< input name = " partition_names[] " value = " '.h( $X ).' " autocapitalize = " off " > ',($z==count($J["partition_names"])-1?script("qsl(' input ').oninput = partitionNameChange;"):' '),' < td >< input name = " partition_values[] " value = " '.h( $J["partition_values"] [ $z ]).' " > ';}echo' </ table >
</ div ></ fieldset >
';}echo' < input type = " hidden " name = " token " value = " ', $ni ,' " >
</ form >
';}elseif(isset($_GET["indexes"])){$a=$_GET["indexes"];$Ld=array("PRIMARY","UNIQUE","INDEX");$R=table_status($a,true);if(preg_match(' ~ MyISAM | M ? aria '.(min_version(5.6,' 10.0 . 5 ')?' | InnoDB ':' ').' ~ i ',$R["Engine"]))$Ld[]="FULLTEXT";if(preg_match(' ~ MyISAM | M ? aria '.(min_version(5.7,' 10.2 . 2 ')?' | InnoDB ':' ').' ~ i ' , $R [ " Engine " ])) $Ld [] = " SPATIAL " ; $x = indexes ( $a ); $kg = array (); if ( $y == " mongo " ){ $kg = $x [ " _id_ " ]; unset ( $Ld [ 0 ]); unset ( $x [ " _id_ " ]);} $J = $_POST ; if ( $_POST &&! $n &&! $_POST [ " add " ] &&! $_POST [ " drop_col " ]){ $c = array (); foreach ( $J [ " indexes " ] as $w ){ $D = $w [ " name " ]; if ( in_array ( $w [ " type " ], $Ld )){ $f = array (); $ue = array (); $cc = array (); $N = array (); ksort ( $w [ " columns " ]); foreach ( $w [ " columns " ] as $z => $e ){ if ( $e != " " ){ $te = $w [ " lengths " ][ $z ]; $bc = $w [ " descs " ][ $z ]; $N [] = idf_escape ( $e ) . ( $te ? " ( " . ( + $te ) . " ) " : " " ) . ( $bc ? " DESC " : " " ); $f [] = $e ; $ue [] = ( $te ? $te : null ); $cc [] = $bc ;}} if ( $f ){ $Ic = $x [ $D ]; if ( $Ic ){ ksort ( $Ic [ " columns " ]); ksort ( $Ic [ " lengths " ]); ksort ( $Ic [ " descs " ]); if ( $w [ " type " ] == $Ic [ " type " ] && array_values ( $Ic [ " columns " ]) === $f && ( ! $Ic [ " lengths " ] || array_values ( $Ic [ " lengths " ]) === $ue ) && array_values ( $Ic [ " descs " ]) === $cc ){ unset ( $x [ $D ]); continue ;}} $c [] = array ( $w [ " type " ], $D , $N );}}} foreach ( $x
as $D => $Ic ) $c [] = array ( $Ic [ " type " ], $D , " DROP " ); if ( ! $c ) redirect ( ME . " table= " . urlencode ( $a )); queries_redirect ( ME . " table= " . urlencode ( $a ), 'Indexes have been altered.' , alter_indexes ( $a , $c ));} page_header ( 'Indexes' , $n , array ( " table " => $a ), h ( $a )); $p = array_keys ( fields ( $a )); if ( $_POST [ " add " ]){ foreach ( $J [ " indexes " ] as $z => $w ){ if ( $w [ " columns " ][ count ( $w [ " columns " ])] != " " ) $J [ " indexes " ][ $z ][ " columns " ][] = " " ;} $w = end ( $J [ " indexes " ]); if ( $w [ " type " ] || array_filter ( $w [ " columns " ], 'strlen' )) $J [ " indexes " ][] = array ( " columns " => array ( 1 => " " ));} if ( ! $J ){ foreach ( $x
as $z => $w ){ $x [ $z ][ " name " ] = $z ; $x [ $z ][ " columns " ][] = " " ;} $x [] = array ( " columns " => array ( 1 => " " )); $J [ " indexes " ] = $x ;} echo '
< form action = " " method = " post " >
< div class = " scrollable " >
< table cellspacing = " 0 " class = " nowrap " >
< thead >< tr >
< th id = " label-type " > Index Type
< th >< input type = " submit " class = " wayoff " > Column ( length )
< th id = " label-name " > Name
< th >< noscript > ',"<input type=' image ' class=' icon ' name=' add [ 0 ] ' src=' " .h(preg_replace( " ~ \\ ? .*~ " , " " ,ME). " ? file = plus . gif & version = 4.8 . 1 " ). " ' alt=' + ' title=' " .'Add next'. " '>",' </ noscript >
</ thead >
' ; if ( $kg ){ echo " <tr><td>PRIMARY<td> " ; foreach ( $kg [ " columns " ] as $z => $e ){ echo
select_input ( " disabled " , $p , $e ), " <label><input disabled type='checkbox'> " . 'descending' . " </label> " ;} echo " <td><td> \n " ;} $ee = 1 ; foreach ( $J [ " indexes " ] as $w ){ if ( ! $_POST [ " drop_col " ] || $ee != key ( $_POST [ " drop_col " ])){ echo " <tr><td> " . html_select ( " indexes[ $ee ][type] " , array ( - 1 => " " ) + $Ld , $w [ " type " ],( $ee == count ( $J [ " indexes " ]) ? " indexesAddRow.call(this); " : 1 ), " label-type " ), " <td> " ; ksort ( $w [ " columns " ]); $t = 1 ; foreach ( $w [ " columns " ] as $z => $e ){ echo " <span> " . select_input ( " name='indexes[ $ee ][columns][ $t ]' title=' " . 'Column' . " ' " ,( $p ? array_combine ( $p , $p ) : $p ), $e , " partial( " . ( $t == count ( $w [ " columns " ]) ? " indexesAddColumn " : " indexesChangeColumn " ) . " , ' " . js_escape ( $y == " sql " ? " " : $_GET [ " indexes " ] . " _ " ) . " ') " ),( $y == " sql " || $y == " mssql " ? " <input type='number' name='indexes[ $ee ][lengths][ $t ]' class='size' value=' " . h ( $w [ " lengths " ][ $z ]) . " ' title=' " . 'Length' . " '> " : " " ),( support ( " descidx " ) ? checkbox ( " indexes[ $ee ][descs][ $t ] " , 1 , $w [ " descs " ][ $z ], 'descending' ) : " " ), " </span> " ; $t ++ ;} echo " <td><input name='indexes[ $ee ][name]' value=' " . h ( $w [ " name " ]) . " ' autocapitalize='off' aria-labelledby='label-name'> \n " , " <td><input type='image' class='icon' name='drop_col[ $ee ]' src=' " . h ( preg_replace ( " ~ \\ ?.*~ " , " " , ME ) . " ?file=cross.gif&version=4.8.1 " ) . " ' alt='x' title=' " . 'Remove' . " '> " . script ( " qsl('input').onclick = partial(editingRemoveRow, 'indexes \$ 1[type]'); " );} $ee ++ ;} echo ' </ table >
</ div >
< p >
< input type = " submit " value = " Save " >
< input type = " hidden " name = " token " value = " ', $ni ,' " >
</ form >
';}elseif(isset($_GET["database"])){$J=$_POST;if($_POST&&!$n&&!isset($_POST["add_x"])){$D=trim($J["name"]);if($_POST["drop"]){$_GET["db"]="";queries_redirect(remove_from_uri("db|database"),' Database has been dropped . ',drop_databases(array(DB)));}elseif(DB!==$D){if(DB!=""){$_GET["db"]=$D;queries_redirect(preg_replace(' ~ \bdb = [ ^& ] *&~ ',' ',ME)."db=".urlencode($D),' Database has been renamed . ' , rename_database ( $D , $J [ " collation " ]));} else { $k = explode ( " \n " , str_replace ( " \r " , " " , $D )); $Ih = true ; $ne = " " ; foreach ( $k
as $l ){ if ( count ( $k ) == 1 || $l != " " ){ if ( ! create_database ( $l , $J [ " collation " ])) $Ih = false ; $ne = $l ;}} restart_session (); set_session ( " dbs " , null ); queries_redirect ( ME . " db= " . urlencode ( $ne ), 'Database has been created.' , $Ih );}} else { if ( ! $J [ " collation " ]) redirect ( substr ( ME , 0 , - 1 )); query_redirect ( " ALTER DATABASE " . idf_escape ( $D ) . ( preg_match ( '~^[a-z0-9_]+$~i' , $J [ " collation " ]) ? " COLLATE $J[collation] " : " " ), substr ( ME , 0 , - 1 ), 'Database has been altered.' );}} page_header ( DB != " " ? 'Alter database' : 'Create database' , $n , array (), h ( DB )); $lb = collations (); $D = DB ; if ( $_POST ) $D = $J [ " name " ]; elseif ( DB != " " ) $J [ " collation " ] = db_collation ( DB , $lb ); elseif ( $y == " sql " ){ foreach ( get_vals ( " SHOW GRANTS " ) as $od ){ if ( preg_match ( '~ ON (`(([^\\\\`]|``|\\\\.)*)%`\.\*)?~' , $od , $C ) && $C [ 1 ]){ $D = stripcslashes ( idf_unescape ( " ` $C[2] ` " )); break ;}}} echo '
< form action = " " method = " post " >
< p >
',($_POST["add_x"]||strpos($D,"\n")?' < textarea id = " name " name = " name " rows = " 10 " cols = " 40 " > '.h($D).' </ textarea >< br > ':' < input name = " name " id = " name " value = " '.h( $D ).' " data - maxlength = " 64 " autocapitalize = " off " > ')."\n".($lb?html_select("collation",array(""=>"(".' collation '.")")+$lb,$J["collation"]).doc_link(array(' sql '=>"charset-charsets.html",' mariadb '=>"supported-character-sets-and-collations/",' mssql '=>"ms187963.aspx",)):""),script("focus(qs(' #name'));"),'<input type="submit" value="Save">
';if(DB!="")echo"<input type=' submit ' name=' drop ' value=' " .'Drop'. " '>".confirm(sprintf(' Drop % s ? ',DB))."\n";elseif(!$_POST["add_x"]&&$_GET["db"]=="")echo"<input type=' image ' class=' icon ' name=' add ' src=' " .h(preg_replace( " ~ \\ ? .*~ " , " " ,ME). " ? file = plus . gif & version = 4.8 . 1 " ). " ' alt=' + ' title=' " .'Add next'. " '>\n";echo' < input type = " hidden " name = " token " value = " ', $ni ,' " >
</ form >
';}elseif(isset($_GET["scheme"])){$J=$_POST;if($_POST&&!$n){$A=preg_replace(' ~ ns = [ ^& ] *&~ ',' ',ME)."ns=";if($_POST["drop"])query_redirect("DROP SCHEMA ".idf_escape($_GET["ns"]),$A,' Schema has been dropped . ');else{$D=trim($J["name"]);$A.=urlencode($D);if($_GET["ns"]=="")query_redirect("CREATE SCHEMA ".idf_escape($D),$A,' Schema has been created . ');elseif($_GET["ns"]!=$D)query_redirect("ALTER SCHEMA ".idf_escape($_GET["ns"])." RENAME TO ".idf_escape($D),$A,' Schema has been altered . ' ); else
redirect ( $A );}} page_header ( $_GET [ " ns " ] != " " ? 'Alter schema' : 'Create schema' , $n ); if ( ! $J ) $J [ " name " ] = $_GET [ " ns " ]; echo '
< form action = " " method = " post " >
< p >< input name = " name " id = " name " value = " ',h( $J["name"] ),' " autocapitalize = " off " >
',script("focus(qs(' #name'));"),'<input type="submit" value="Save">
';if($_GET["ns"]!="")echo"<input type=' submit ' name=' drop ' value=' " .'Drop'. " '>".confirm(sprintf(' Drop % s ? ',$_GET["ns"]))."\n";echo' < input type = " hidden " name = " token " value = " ', $ni ,' " >
</ form >
';}elseif(isset($_GET["call"])){$da=($_GET["name"]?$_GET["name"]:$_GET["call"]);page_header(' Call '.": ".h($da),$n);$Tg=routine($_GET["call"],(isset($_GET["callf"])?"FUNCTION":"PROCEDURE"));$Jd=array();$If=array();foreach($Tg["fields"]as$t=>$o){if(substr($o["inout"],-3)=="OUT")$If[$t]="@".idf_escape($o["field"])." AS ".idf_escape($o["field"]);if(!$o["inout"]||substr($o["inout"],0,2)=="IN")$Jd[]=$t;}if(!$n&&$_POST){$Xa=array();foreach($Tg["fields"]as$z=>$o){if(in_array($z,$Jd)){$X=process_input($o);if($X===false)$X="' '";if(isset($If[$z]))$g->query("SET @".idf_escape($o["field"])." = $X");}$Xa[]=(isset($If[$z])?"@".idf_escape($o["field"]):$X);}$G=(isset($_GET["callf"])?"SELECT":"CALL")." ".table($da)."(".implode(", ",$Xa).")";$Ch=microtime(true);$H=$g->multi_query($G);$za=$g->affected_rows;echo$b->selectQuery($G,$Ch,!$H);if(!$H)echo"<p class=' error ' > " .error(). " \n " ;else { $h =connect();if(is_object( $h )) $h->select_db (DB);do { $H = $g->store_result ();if(is_object( $H ))select( $H , $h );else
echo " <p class='message'> " . lang ( array ( 'Routine has been called, %d row affected.' , 'Routine has been called, %d rows affected.' ), $za ) . " <span class='time'> " .@ date ( " H:i:s " ) . " </span> \n " ;} while ( $g -> next_result ()); if ( $If ) select ( $g -> query ( " SELECT " . implode ( " , " , $If )));}} echo '
< form action = " " method = " post " >
';if($Jd){echo"<table cellspacing=' 0 ' class=' layout ' > \n " ;foreach( $Jd
as $z ){ $o = $Tg [ " fields " ][ $z ]; $D = $o [ " field " ]; echo " <tr><th> " . $b -> fieldName ( $o ); $Y = $_POST [ " fields " ][ $D ]; if ( $Y != " " ){ if ( $o [ " type " ] == " enum " ) $Y =+ $Y ; if ( $o [ " type " ] == " set " ) $Y = array_sum ( $Y );} input ( $o , $Y ,( string ) $_POST [ " function " ][ $D ]); echo " \n " ;} echo " </table> \n " ;} echo ' < p >
< input type = " submit " value = " Call " >
< input type = " hidden " name = " token " value = " ', $ni ,' " >
</ form >
';}elseif(isset($_GET["foreign"])){$a=$_GET["foreign"];$D=$_GET["name"];$J=$_POST;if($_POST&&!$n&&!$_POST["add"]&&!$_POST["change"]&&!$_POST["change-js"]){$Ke=($_POST["drop"]?' Foreign key has been dropped . ':($D!=""?' Foreign key has been altered . ':' Foreign key has been created . '));$B=ME."table=".urlencode($a);if(!$_POST["drop"]){$J["source"]=array_filter($J["source"],' strlen ');ksort($J["source"]);$Wh=array();foreach($J["source"]as$z=>$X)$Wh[$z]=$J["target"][$z];$J["target"]=$Wh;}if($y=="sqlite")queries_redirect($B,$Ke,recreate_table($a,$a,array(),array(),array(" $D"=>($_POST["drop"]?"":" ".format_foreign_key($J)))));else{$c="ALTER TABLE ".table($a);$jc="\nDROP ".($y=="sql"?"FOREIGN KEY ":"CONSTRAINT ").idf_escape($D);if($_POST["drop"])query_redirect($c.$jc,$B,$Ke);else{query_redirect($c.($D!=""?"$jc,":"")."\nADD".format_foreign_key($J),$B,$Ke);$n=' Source and target columns must have the same data type , there must be an index on the target columns and referenced data must exist . '."<br>$n";}}}page_header(' Foreign key ',$n,array("table"=>$a),h($a));if($_POST){ksort($J["source"]);if($_POST["add"])$J["source"][]="";elseif($_POST["change"]||$_POST["change-js"])$J["target"]=array();}elseif($D!=""){$hd=foreign_keys($a);$J=$hd[$D];$J["source"][]="";}else{$J["table"]=$a;$J["source"]=array("");}echo'
< form action = " " method = " post " >
';$vh=array_keys(fields($a));if($J["db"]!="")$g->select_db($J["db"]);if($J["ns"]!="")set_schema($J["ns"]);$Cg=array_keys(array_filter(table_status(' ',true),' fk_support '));$Wh=array_keys(fields(in_array($J["table"],$Cg)?$J["table"]:reset($Cg)));$qf="this.form[' change - js '].value = ' 1 '; this.form.submit();";echo"<p>".' Target table '.": ".html_select("table",$Cg,$J["table"],$qf)."\n";if($y=="pgsql")echo' Schema '.": ".html_select("ns",$b->schemas(),$J["ns"]!=""?$J["ns"]:$_GET["ns"],$qf);elseif($y!="sqlite"){$Ub=array();foreach($b->databases()as$l){if(!information_schema($l))$Ub[]=$l;}echo' DB '.": ".html_select("db",$Ub,$J["db"]!=""?$J["db"]:$_GET["db"],$qf);}echo' < input type = " hidden " name = " change-js " value = " " >
< noscript >< p >< input type = " submit " name = " change " value = " Change " ></ noscript >
< table cellspacing = " 0 " >
< thead >< tr >< th id = " label-source " > Source < th id = " label-target " > Target </ thead >
';$ee=0;foreach($J["source"]as$z=>$X){echo"<tr>","<td>".html_select("source[".(+$z)."]",array(-1=>"")+$vh,$X,($ee==count($J["source"])-1?"foreignAddRow.call(this);":1),"label-source"),"<td>".html_select("target[".(+$z)."]",$Wh,$J["target"][$z],1,"label-target");$ee++;}echo' </ table >
< p >
ON DELETE : ',html_select("on_delete",array(-1=>"")+explode("|",$pf),$J["on_delete"]),' ON UPDATE : ',html_select("on_update",array(-1=>"")+explode("|",$pf),$J["on_update"]),doc_link(array(' sql '=>"innodb-foreign-key-constraints.html",' mariadb '=>"foreign-keys/",' pgsql '=>"sql-createtable.html#SQL-CREATETABLE-REFERENCES",' mssql '=>"ms174979.aspx",' oracle '=>"https://docs.oracle.com/cd/B19306_01/server.102/b14200/clauses002.htm#sthref2903",)),' < p >
< input type = " submit " value = " Save " >
< noscript >< p >< input type = " submit " name = " add " value = " Add column " ></ noscript >
';if($D!=""){echo' < input type = " submit " name = " drop " value = " Drop " > ',confirm(sprintf(' Drop % s ? ',$D));}echo' < input type = " hidden " name = " token " value = " ', $ni ,' " >
</ form >
';}elseif(isset($_GET["view"])){$a=$_GET["view"];$J=$_POST;$Ff="VIEW";if($y=="pgsql"&&$a!=""){$O=table_status($a);$Ff=strtoupper($O["Engine"]);}if($_POST&&!$n){$D=trim($J["name"]);$Fa=" AS\n$J[select]";$B=ME."table=".urlencode($D);$Ke=' View has been altered . ';$T=($_POST["materialized"]?"MATERIALIZED VIEW":"VIEW");if(!$_POST["drop"]&&$a==$D&&$y!="sqlite"&&$T=="VIEW"&&$Ff=="VIEW")query_redirect(($y=="mssql"?"ALTER":"CREATE OR REPLACE")." VIEW ".table($D).$Fa,$B,$Ke);else{$Yh=$D."_adminer_".uniqid();drop_create("DROP $Ff ".table($a),"CREATE $T ".table($D).$Fa,"DROP $T ".table($D),"CREATE $T ".table($Yh).$Fa,"DROP $T ".table($Yh),($_POST["drop"]?substr(ME,0,-1):$B),' View has been dropped . ',$Ke,' View has been created . ',$a,$D);}}if(!$_POST&&$a!=""){$J=view($a);$J["name"]=$a;$J["materialized"]=($Ff!="VIEW");if(!$n)$n=error();}page_header(($a!=""?' Alter view ':' Create view '),$n,array("table"=>$a),h($a));echo'
< form action = " " method = " post " >
< p > Name : < input name = " name " value = " ',h( $J["name"] ),' " data - maxlength = " 64 " autocapitalize = " off " >
',(support("materializedview")?" ".checkbox("materialized",1,$J["materialized"],' Materialized view '):""),' < p > ';textarea("select",$J["select"]);echo' < p >
< input type = " submit " value = " Save " >
';if($a!=""){echo' < input type = " submit " name = " drop " value = " Drop " > ',confirm(sprintf(' Drop % s ? ',$a));}echo' < input type = " hidden " name = " token " value = " ', $ni ,' " >
</ form >
';}elseif(isset($_GET["event"])){$aa=$_GET["event"];$Wd=array("YEAR","QUARTER","MONTH","DAY","HOUR","MINUTE","WEEK","SECOND","YEAR_MONTH","DAY_HOUR","DAY_MINUTE","DAY_SECOND","HOUR_MINUTE","HOUR_SECOND","MINUTE_SECOND");$Eh=array("ENABLED"=>"ENABLE","DISABLED"=>"DISABLE","SLAVESIDE_DISABLED"=>"DISABLE ON SLAVE");$J=$_POST;if($_POST&&!$n){if($_POST["drop"])query_redirect("DROP EVENT ".idf_escape($aa),substr(ME,0,-1),' Event has been dropped . ');elseif(in_array($J["INTERVAL_FIELD"],$Wd)&&isset($Eh[$J["STATUS"]])){$Yg="\nON SCHEDULE ".($J["INTERVAL_VALUE"]?"EVERY ".q($J["INTERVAL_VALUE"])." $J[INTERVAL_FIELD]".($J["STARTS"]?" STARTS ".q($J["STARTS"]):"").($J["ENDS"]?" ENDS ".q($J["ENDS"]):""):"AT ".q($J["STARTS"]))." ON COMPLETION".($J["ON_COMPLETION"]?"":" NOT")." PRESERVE";queries_redirect(substr(ME,0,-1),($aa!=""?' Event has been altered . ':' Event has been created . '),queries(($aa!=""?"ALTER EVENT ".idf_escape($aa).$Yg.($aa!=$J["EVENT_NAME"]?"\nRENAME TO ".idf_escape($J["EVENT_NAME"]):""):"CREATE EVENT ".idf_escape($J["EVENT_NAME"]).$Yg)."\n".$Eh[$J["STATUS"]]." COMMENT ".q($J["EVENT_COMMENT"]).rtrim(" DO\n$J[EVENT_DEFINITION]",";").";"));}}page_header(($aa!=""?' Alter event '.": ".h($aa):' Create event '),$n);if(!$J&&$aa!=""){$K=get_rows("SELECT * FROM information_schema.EVENTS WHERE EVENT_SCHEMA = ".q(DB)." AND EVENT_NAME = ".q($aa));$J=reset($K);}echo'
< form action = " " method = " post " >
< table cellspacing = " 0 " class = " layout " >
< tr >< th > Name < td >< input name = " EVENT_NAME " value = " ',h( $J["EVENT_NAME"] ),' " data - maxlength = " 64 " autocapitalize = " off " >
< tr >< th title = " datetime " > Start < td >< input name = " STARTS " value = " ',h( " $J [ EXECUTE_AT ] $J [ STARTS ] " ),' " >
< tr >< th title = " datetime " > End < td >< input name = " ENDS " value = " ',h( $J["ENDS"] ),' " >
< tr >< th > Every < td >< input type = " number " name = " INTERVAL_VALUE " value = " ',h( $J["INTERVAL_VALUE"] ),' " class = " size " > ',html_select("INTERVAL_FIELD",$Wd,$J["INTERVAL_FIELD"]),' < tr >< th > Status < td > ',html_select("STATUS",$Eh,$J["STATUS"]),' < tr >< th > Comment < td >< input name = " EVENT_COMMENT " value = " ',h( $J["EVENT_COMMENT"] ),' " data - maxlength = " 64 " >
< tr >< th >< td > ',checkbox("ON_COMPLETION","PRESERVE",$J["ON_COMPLETION"]=="PRESERVE",' On completion preserve '),' </ table >
< p > ';textarea("EVENT_DEFINITION",$J["EVENT_DEFINITION"]);echo' < p >
< input type = " submit " value = " Save " >
';if($aa!=""){echo' < input type = " submit " name = " drop " value = " Drop " > ',confirm(sprintf(' Drop % s ? ',$aa));}echo' < input type = " hidden " name = " token " value = " ', $ni ,' " >
</ form >
';}elseif(isset($_GET["procedure"])){$da=($_GET["name"]?$_GET["name"]:$_GET["procedure"]);$Tg=(isset($_GET["function"])?"FUNCTION":"PROCEDURE");$J=$_POST;$J["fields"]=(array)$J["fields"];if($_POST&&!process_fields($J["fields"])&&!$n){$Cf=routine($_GET["procedure"],$Tg);$Yh="$J[name]_adminer_".uniqid();drop_create("DROP $Tg ".routine_id($da,$Cf),create_routine($Tg,$J),"DROP $Tg ".routine_id($J["name"],$J),create_routine($Tg,array("name"=>$Yh)+$J),"DROP $Tg ".routine_id($Yh,$J),substr(ME,0,-1),' Routine has been dropped . ',' Routine has been altered . ',' Routine has been created . ',$da,$J["name"]);}page_header(($da!=""?(isset($_GET["function"])?' Alter function ':' Alter procedure ').": ".h($da):(isset($_GET["function"])?' Create function ':' Create procedure ')),$n);if(!$_POST&&$da!=""){$J=routine($_GET["procedure"],$Tg);$J["name"]=$da;}$lb=get_vals("SHOW CHARACTER SET");sort($lb);$Ug=routine_languages();echo'
< form action = " " method = " post " id = " form " >
< p > Name : < input name = " name " value = " ',h( $J["name"] ),' " data - maxlength = " 64 " autocapitalize = " off " >
',($Ug?' Language '.": ".html_select("language",$Ug,$J["language"])."\n":""),' < input type = " submit " value = " Save " >
< div class = " scrollable " >
< table cellspacing = " 0 " class = " nowrap " >
';edit_fields($J["fields"],$lb,$Tg);if(isset($_GET["function"])){echo"<tr><td>".' Return type ';edit_type("returns",$J["returns"],$lb,array(),($y=="pgsql"?array("void","trigger"):array()));}echo' </ table >
',script("editFields();"),' </ div >
< p > ';textarea("definition",$J["definition"]);echo' < p >
< input type = " submit " value = " Save " >
';if($da!=""){echo' < input type = " submit " name = " drop " value = " Drop " > ',confirm(sprintf(' Drop % s ? ',$da));}echo' < input type = " hidden " name = " token " value = " ', $ni ,' " >
</ form >
';}elseif(isset($_GET["sequence"])){$fa=$_GET["sequence"];$J=$_POST;if($_POST&&!$n){$A=substr(ME,0,-1);$D=trim($J["name"]);if($_POST["drop"])query_redirect("DROP SEQUENCE ".idf_escape($fa),$A,' Sequence has been dropped . ');elseif($fa=="")query_redirect("CREATE SEQUENCE ".idf_escape($D),$A,' Sequence has been created . ');elseif($fa!=$D)query_redirect("ALTER SEQUENCE ".idf_escape($fa)." RENAME TO ".idf_escape($D),$A,' Sequence has been altered . ' ); else
redirect ( $A );} page_header ( $fa != " " ? 'Alter sequence' . " : " . h ( $fa ) : 'Create sequence' , $n ); if ( ! $J ) $J [ " name " ] = $fa ; echo '
< form action = " " method = " post " >
< p >< input name = " name " value = " ',h( $J["name"] ),' " autocapitalize = " off " >
< input type = " submit " value = " Save " >
';if($fa!="")echo"<input type=' submit ' name=' drop ' value=' " .'Drop'. " '>".confirm(sprintf(' Drop % s ? ',$fa))."\n";echo' < input type = " hidden " name = " token " value = " ', $ni ,' " >
</ form >
';}elseif(isset($_GET["type"])){$ga=$_GET["type"];$J=$_POST;if($_POST&&!$n){$A=substr(ME,0,-1);if($_POST["drop"])query_redirect("DROP TYPE ".idf_escape($ga),$A,' Type has been dropped . ' ); else
query_redirect ( " CREATE TYPE " . idf_escape ( trim ( $J [ " name " ])) . " $J[as] " , $A , 'Type has been created.' );} page_header ( $ga != " " ? 'Alter type' . " : " . h ( $ga ) : 'Create type' , $n ); if ( ! $J ) $J [ " as " ] = " AS " ; echo '
< form action = " " method = " post " >
< p >
';if($ga!="")echo"<input type=' submit ' name=' drop ' value=' " .'Drop'. " '>".confirm(sprintf(' Drop % s ? ',$ga))."\n";else{echo"<input name=' name ' value=' " .h( $J['name'] ). " ' autocapitalize=' off '>\n";textarea("as",$J["as"]);echo"<p><input type=' submit ' value=' " .'Save'. " '>\n";}echo' < input type = " hidden " name = " token " value = " ', $ni ,' " >
</ form >
';}elseif(isset($_GET["trigger"])){$a=$_GET["trigger"];$D=$_GET["name"];$yi=trigger_options();$J=(array)trigger($D,$a)+array("Trigger"=>$a."_bi");if($_POST){if(!$n&&in_array($_POST["Timing"],$yi["Timing"])&&in_array($_POST["Event"],$yi["Event"])&&in_array($_POST["Type"],$yi["Type"])){$of=" ON ".table($a);$jc="DROP TRIGGER ".idf_escape($D).($y=="pgsql"?$of:"");$B=ME."table=".urlencode($a);if($_POST["drop"])query_redirect($jc,$B,' Trigger has been dropped . ');else{if($D!="")queries($jc);queries_redirect($B,($D!=""?' Trigger has been altered . ':' Trigger has been created . '),queries(create_trigger($of,$_POST)));if($D!="")queries(create_trigger($of,$J+array("Type"=>reset($yi["Type"]))));}}$J=$_POST;}page_header(($D!=""?' Alter trigger '.": ".h($D):' Create trigger '),$n,array("table"=>$a));echo'
< form action = " " method = " post " id = " form " >
< table cellspacing = " 0 " class = " layout " >
< tr >< th > Time < td > ',html_select("Timing",$yi["Timing"],$J["Timing"],"triggerChange(/^".preg_quote($a,"/")."_[ba][iud]$/, ' " .js_escape( $a ). " ', this.form);"),' < tr >< th > Event < td > ',html_select("Event",$yi["Event"],$J["Event"],"this.form[' Timing '].onchange();"),(in_array("UPDATE OF",$yi["Event"])?" <input name=' Of ' value=' " .h( $J["Of"] ). " ' class=' hidden '>":""),' < tr >< th > Type < td > ',html_select("Type",$yi["Type"],$J["Type"]),' </ table >
< p > Name : < input name = " Trigger " value = " ',h( $J["Trigger"] ),' " data - maxlength = " 64 " autocapitalize = " off " >
',script("qs(' #form')['Timing'].onchange();"),'<p>';textarea("Statement",$J["Statement"]);echo'<p>
< input type = " submit " value = " Save " >
';if($D!=""){echo' < input type = " submit " name = " drop " value = " Drop " > ',confirm(sprintf(' Drop % s ? ',$D));}echo' < input type = " hidden " name = " token " value = " ', $ni ,' " >
</ form >
';}elseif(isset($_GET["user"])){$ha=$_GET["user"];$pg=array(""=>array("All privileges"=>""));foreach(get_rows("SHOW PRIVILEGES")as$J){foreach(explode(",",($J["Privilege"]=="Grant option"?"":$J["Context"]))as$Db)$pg[$Db][$J["Privilege"]]=$J["Comment"];}$pg["Server Admin"]+=$pg["File access on server"];$pg["Databases"]["Create routine"]=$pg["Procedures"]["Create routine"];unset($pg["Procedures"]["Create routine"]);$pg["Columns"]=array();foreach(array("Select","Insert","Update","References")as$X)$pg["Columns"][$X]=$pg["Tables"][$X];unset($pg["Server Admin"]["Usage"]);foreach($pg["Tables"]as$z=>$X)unset($pg["Databases"][$z]);$Xe=array();if($_POST){foreach($_POST["objects"]as$z=>$X)$Xe[$X]=(array)$Xe[$X]+(array)$_POST["grants"][$z];}$pd=array();$mf="";if(isset($_GET["host"])&&($H=$g->query("SHOW GRANTS FOR ".q($ha)."@".q($_GET["host"])))){while($J=$H->fetch_row()){if(preg_match(' ~ GRANT ( .* ) ON ( .* ) TO ~ ',$J[0],$C)&&preg_match_all(' ~ * ([ ^ (,] * [ ^ ,(])( * \ ([ ^ )] + \ )) ? ~ ' , $C [ 1 ], $Ce , PREG_SET_ORDER )){ foreach ( $Ce
as $X ){ if ( $X [ 1 ] != " USAGE " ) $pd [ " $C[2] $X[2] " ][ $X [ 1 ]] = true ; if ( preg_match ( '~ WITH GRANT OPTION~' , $J [ 0 ])) $pd [ " $C[2] $X[2] " ][ " GRANT OPTION " ] = true ;}} if ( preg_match ( " ~ IDENTIFIED BY PASSWORD '([^']+)~ " , $J [ 0 ], $C )) $mf = $C [ 1 ];}} if ( $_POST &&! $n ){ $nf = ( isset ( $_GET [ " host " ]) ? q ( $ha ) . " @ " . q ( $_GET [ " host " ]) : " '' " ); if ( $_POST [ " drop " ]) query_redirect ( " DROP USER $nf " , ME . " privileges= " , 'User has been dropped.' ); else { $Ze = q ( $_POST [ " user " ]) . " @ " . q ( $_POST [ " host " ]); $Wf = $_POST [ " pass " ]; if ( $Wf != '' &&! $_POST [ " hashed " ] &&! min_version ( 8 )){ $Wf = $g -> result ( " SELECT PASSWORD( " . q ( $Wf ) . " ) " ); $n =! $Wf ;} $Jb = false ; if ( ! $n ){ if ( $nf != $Ze ){ $Jb = queries (( min_version ( 5 ) ? " CREATE USER " : " GRANT USAGE ON *.* TO " ) . " $Ze IDENTIFIED BY " . ( min_version ( 8 ) ? " " : " PASSWORD " ) . q ( $Wf )); $n =! $Jb ;} elseif ( $Wf != $mf ) queries ( " SET PASSWORD FOR $Ze = " . q ( $Wf ));} if ( ! $n ){ $Qg = array (); foreach ( $Xe
as $ff => $od ){ if ( isset ( $_GET [ " grant " ])) $od = array_filter ( $od ); $od = array_keys ( $od ); if ( isset ( $_GET [ " grant " ])) $Qg = array_diff ( array_keys ( array_filter ( $Xe [ $ff ], 'strlen' )), $od ); elseif ( $nf == $Ze ){ $kf = array_keys (( array ) $pd [ $ff ]); $Qg = array_diff ( $kf , $od ); $od = array_diff ( $od , $kf ); unset ( $pd [ $ff ]);} if ( preg_match ( '~^(.+)\s*(\(.*\))?$~U' , $ff , $C ) && ( ! grant ( " REVOKE " , $Qg , $C [ 2 ], " ON $C[1] FROM $Ze " ) ||! grant ( " GRANT " , $od , $C [ 2 ], " ON $C[1] TO $Ze " ))){ $n = true ; break ;}}} if ( ! $n && isset ( $_GET [ " host " ])){ if ( $nf != $Ze ) queries ( " DROP USER $nf " ); elseif ( ! isset ( $_GET [ " grant " ])){ foreach ( $pd
as $ff => $Qg ){ if ( preg_match ( '~^(.+)(\(.*\))?$~U' , $ff , $C )) grant ( " REVOKE " , array_keys ( $Qg ), $C [ 2 ], " ON $C[1] FROM $Ze " );}}} queries_redirect ( ME . " privileges= " ,( isset ( $_GET [ " host " ]) ? 'User has been altered.' : 'User has been created.' ), ! $n ); if ( $Jb ) $g -> query ( " DROP USER $Ze " );}} page_header (( isset ( $_GET [ " host " ]) ? 'Username' . " : " . h ( " $ha @ $_GET[host] " ) : 'Create user' ), $n , array ( " privileges " => array ( '' , 'Privileges' ))); if ( $_POST ){ $J = $_POST ; $pd = $Xe ;} else { $J = $_GET + array ( " host " => $g -> result ( " SELECT SUBSTRING_INDEX(CURRENT_USER, '@', -1) " )); $J [ " pass " ] = $mf ; if ( $mf != " " ) $J [ " hashed " ] = true ; $pd [( DB == " " || $pd ? " " : idf_escape ( addcslashes ( DB , " %_ \\ " ))) . " .* " ] = array ();} echo ' < form action = " " method = " post " >
< table cellspacing = " 0 " class = " layout " >
< tr >< th > Server < td >< input name = " host " data - maxlength = " 60 " value = " ',h( $J["host"] ),' " autocapitalize = " off " >
< tr >< th > Username < td >< input name = " user " data - maxlength = " 80 " value = " ',h( $J["user"] ),' " autocapitalize = " off " >
< tr >< th > Password < td >< input name = " pass " id = " pass " value = " ',h( $J["pass"] ),' " autocomplete = " new-password " >
' ; if ( ! $J [ " hashed " ]) echo
script ( " typePassword(qs('#pass')); " ); echo ( min_version ( 8 ) ? " " : checkbox ( " hashed " , 1 , $J [ " hashed " ], 'Hashed' , " typePassword(this.form['pass'], this.checked); " )), ' </ table >
';echo"<table cellspacing=' 0 '>\n","<thead><tr><th colspan=' 2 '>".' Privileges '.doc_link(array(' sql ' => " grant.html#priv_level " )); $t = 0 ; foreach ( $pd
as $ff => $od ){ echo '<th>' . ( $ff != " *.* " ? " <input name='objects[ $t ]' value=' " . h ( $ff ) . " ' size='10' autocapitalize='off'> " : " <input type='hidden' name='objects[ $t ]' value='*.*' size='10'>*.* " ); $t ++ ;} echo " </thead> \n " ; foreach ( array ( " " => " " , " Server Admin " => 'Server' , " Databases " => 'Database' , " Tables " => 'Table' , " Columns " => 'Column' , " Procedures " => 'Routine' ,) as $Db => $bc ){ foreach (( array ) $pg [ $Db ] as $og => $rb ){ echo " <tr " . odd () . " ><td " . ( $bc ? " > $bc <td " : " colspan='2' " ) . ' lang="en" title="' . h ( $rb ) . '">' . h ( $og ); $t = 0 ; foreach ( $pd
as $ff => $od ){ $D = " 'grants[ $t ][ " . h ( strtoupper ( $og )) . " ]' " ; $Y = $od [ strtoupper ( $og )]; if ( $Db == " Server Admin " && $ff != ( isset ( $pd [ " *.* " ]) ? " *.* " : " .* " )) echo " <td> " ; elseif ( isset ( $_GET [ " grant " ])) echo " <td><select name= $D ><option><option value='1' " . ( $Y ? " selected " : " " ) . " > " . 'Grant' . " <option value='0' " . ( $Y == " 0 " ? " selected " : " " ) . " > " . 'Revoke' . " </select> " ; else { echo " <td align='center'><label class='block'> " , " <input type='checkbox' name= $D value='1' " . ( $Y ? " checked " : " " ) . ( $og == " All privileges " ? " id='grants- $t -all'> " : " > " . ( $og == " Grant option " ? " " : script ( " qsl('input').onclick = function () { if (this.checked) formUncheck('grants- $t -all'); }; " ))), " </label> " ;} $t ++ ;}}} echo " </table> \n " , ' < p >
< input type = " submit " value = " Save " >
';if(isset($_GET["host"])){echo' < input type = " submit " name = " drop " value = " Drop " > ',confirm(sprintf(' Drop % s ? ',"$ha@$_GET[host]"));}echo' < input type = " hidden " name = " token " value = " ', $ni ,' " >
</ form >
';}elseif(isset($_GET["processlist"])){if(support("kill")){if($_POST&&!$n){$je=0;foreach((array)$_POST["kill"]as$X){if(kill_process($X))$je++;}queries_redirect(ME."processlist=",lang(array(' % d process has been killed . ',' % d processes have been killed . '),$je),$je||!$_POST["kill"]);}}page_header(' Process list ',$n);echo'
< form action = " " method = " post " >
< div class = " scrollable " >
< table cellspacing = " 0 " class = " nowrap checkable " >
',script("mixin(qsl(' table '), {onclick: tableClick, ondblclick: partialArg(tableClick, true)});");$t=-1;foreach(process_list()as$t=>$J){if(!$t){echo"<thead><tr lang=' en ' > " .(support( " kill " )? " < th > " : " " );foreach( $J
as $z => $X ) echo " <th> $z " . doc_link ( array ( 'sql' => " show-processlist.html#processlist_ " . strtolower ( $z ), 'pgsql' => " monitoring-stats.html#PG-STAT-ACTIVITY-VIEW " , 'oracle' => " REFRN30223 " ,)); echo " </thead> \n " ;} echo " <tr " . odd () . " > " . ( support ( " kill " ) ? " <td> " . checkbox ( " kill[] " , $J [ $y == " sql " ? " Id " : " pid " ], 0 ) : " " ); foreach ( $J
as $z => $X ) echo " <td> " . (( $y == " sql " && $z == " Info " && preg_match ( " ~Query|Killed~ " , $J [ " Command " ]) && $X != " " ) || ( $y == " pgsql " && $z == " current_query " && $X != " <IDLE> " ) || ( $y == " oracle " && $z == " sql_text " && $X != " " ) ? " <code class='jush- $y '> " . shorten_utf8 ( $X , 100 , " </code> " ) . ' <a href="' . h ( ME . ( $J [ " db " ] != " " ? " db= " . urlencode ( $J [ " db " ]) . " & " : " " ) . " sql= " . urlencode ( $X )) . '">' . 'Clone' . '</a>' : h ( $X )); echo " \n " ;} echo ' </ table >
</ div >
< p >
';if(support("kill")){echo($t+1)."/".sprintf(' % d in total ',max_connections()),"<p><input type=' submit ' value=' " .'Kill'. " '>\n";}echo' < input type = " hidden " name = " token " value = " ', $ni ,' " >
</ form >
' , script ( " tableCheck(); " );} elseif ( isset ( $_GET [ " select " ])){ $a = $_GET [ " select " ]; $R = table_status1 ( $a ); $x = indexes ( $a ); $p = fields ( $a ); $hd = column_foreign_keys ( $a ); $if = $R [ " Oid " ]; parse_str ( $_COOKIE [ " adminer_import " ], $ya ); $Rg = array (); $f = array (); $ci = null ; foreach ( $p
as $z => $o ){ $D = $b -> fieldName ( $o ); if ( isset ( $o [ " privileges " ][ " select " ]) && $D != " " ){ $f [ $z ] = html_entity_decode ( strip_tags ( $D ), ENT_QUOTES ); if ( is_shortable ( $o )) $ci = $b -> selectLengthProcess ();} $Rg += $o [ " privileges " ];} list ( $L , $qd ) = $b -> selectColumnsProcess ( $f , $x ); $ae = count ( $qd ) < count ( $L ); $Z = $b -> selectSearchProcess ( $p , $x ); $zf = $b -> selectOrderProcess ( $p , $x ); $_ = $b -> selectLimitProcess (); if ( $_GET [ " val " ] && is_ajax ()){ header ( " Content-Type: text/plain; charset=utf-8 " ); foreach ( $_GET [ " val " ] as $Ei => $J ){ $Fa = convert_field ( $p [ key ( $J )]); $L = array ( $Fa ? $Fa : idf_escape ( key ( $J ))); $Z [] = where_check ( $Ei , $p ); $I = $m -> select ( $a , $L , $Z , $L ); if ( $I ) echo
reset ( $I -> fetch_row ());} exit ;} $kg = $Gi = null ; foreach ( $x
as $w ){ if ( $w [ " type " ] == " PRIMARY " ){ $kg = array_flip ( $w [ " columns " ]); $Gi = ( $L ? $kg : array ()); foreach ( $Gi
as $z => $X ){ if ( in_array ( idf_escape ( $z ), $L )) unset ( $Gi [ $z ]);} break ;}} if ( $if &&! $kg ){ $kg = $Gi = array ( $if => 0 ); $x [] = array ( " type " => " PRIMARY " , " columns " => array ( $if ));} if ( $_POST &&! $n ){ $hj = $Z ; if ( ! $_POST [ " all " ] && is_array ( $_POST [ " check " ])){ $db = array (); foreach ( $_POST [ " check " ] as $ab ) $db [] = where_check ( $ab , $p ); $hj [] = " (( " . implode ( " ) OR ( " , $db ) . " )) " ;} $hj = ( $hj ? " \n WHERE " . implode ( " AND " , $hj ) : " " ); if ( $_POST [ " export " ]){ cookie ( " adminer_import " , " output= " . urlencode ( $_POST [ " output " ]) . " &format= " . urlencode ( $_POST [ " format " ])); dump_headers ( $a ); $b -> dumpTable ( $a , " " ); $md = ( $L ? implode ( " , " , $L ) : " * " ) . convert_fields ( $f , $p , $L ) . " \n FROM " . table ( $a ); $sd = ( $qd && $ae ? " \n GROUP BY " . implode ( " , " , $qd ) : " " ) . ( $zf ? " \n ORDER BY " . implode ( " , " , $zf ) : " " ); if ( ! is_array ( $_POST [ " check " ]) || $kg ) $G = " SELECT $md $hj $sd " ; else { $Ci = array (); foreach ( $_POST [ " check " ] as $X ) $Ci [] = " (SELECT " . limit ( $md , " \n WHERE " . ( $Z ? implode ( " AND " , $Z ) . " AND " : " " ) . where_check ( $X , $p ) . $sd , 1 ) . " ) " ; $G = implode ( " UNION ALL " , $Ci );} $b -> dumpData ( $a , " table " , $G ); exit ;} if ( ! $b -> selectEmailProcess ( $Z , $hd )){ if ( $_POST [ " save " ] || $_POST [ " delete " ]){ $H = true ; $za = 0 ; $N = array (); if ( ! $_POST [ " delete " ]){ foreach ( $f
as $D => $X ){ $X = process_input ( $p [ $D ]); if ( $X !== null && ( $_POST [ " clone " ] || $X !== false )) $N [ idf_escape ( $D )] = ( $X !== false ? $X : idf_escape ( $D ));}} if ( $_POST [ " delete " ] || $N ){ if ( $_POST [ " clone " ]) $G = " INTO " . table ( $a ) . " ( " . implode ( " , " , array_keys ( $N )) . " ) \n SELECT " . implode ( " , " , $N ) . " \n FROM " . table ( $a ); if ( $_POST [ " all " ] || ( $kg && is_array ( $_POST [ " check " ])) || $ae ){ $H = ( $_POST [ " delete " ] ? $m -> delete ( $a , $hj ) : ( $_POST [ " clone " ] ? queries ( " INSERT $G $hj " ) : $m -> update ( $a , $N , $hj ))); $za = $g -> affected_rows ;} else { foreach (( array ) $_POST [ " check " ] as $X ){ $dj = " \n WHERE " . ( $Z ? implode ( " AND " , $Z ) . " AND " : " " ) . where_check ( $X , $p ); $H = ( $_POST [ " delete " ] ? $m -> delete ( $a , $dj , 1 ) : ( $_POST [ " clone " ] ? queries ( " INSERT " . limit1 ( $a , $G , $dj )) : $m -> update ( $a , $N , $dj , 1 ))); if ( ! $H ) break ; $za += $g -> affected_rows ;}}} $Ke = lang ( array ( '%d item has been affected.' , '%d items have been affected.' ), $za ); if ( $_POST [ " clone " ] && $H && $za == 1 ){ $oe = last_id (); if ( $oe ) $Ke = sprintf ( 'Item%s has been inserted.' , " $oe " );} queries_redirect ( remove_from_uri ( $_POST [ " all " ] && $_POST [ " delete " ] ? " page " : " " ), $Ke , $H ); if ( ! $_POST [ " delete " ]){ edit_form ( $a , $p ,( array ) $_POST [ " fields " ], ! $_POST [ " clone " ]); page_footer (); exit ;}} elseif ( ! $_POST [ " import " ]){ if ( ! $_POST [ " val " ]) $n = 'Ctrl+click on a value to modify it.' ; else { $H = true ; $za = 0 ; foreach ( $_POST [ " val " ] as $Ei => $J ){ $N = array (); foreach ( $J
as $z => $X ){ $z = bracket_escape ( $z , 1 ); $N [ idf_escape ( $z )] = ( preg_match ( '~char|text~' , $p [ $z ][ " type " ]) || $X != " " ? $b -> processInput ( $p [ $z ], $X ) : " NULL " );} $H = $m -> update ( $a , $N , " WHERE " . ( $Z ? implode ( " AND " , $Z ) . " AND " : " " ) . where_check ( $Ei , $p ), ! $ae &&! $kg , " " ); if ( ! $H ) break ; $za += $g -> affected_rows ;} queries_redirect ( remove_from_uri (), lang ( array ( '%d item has been affected.' , '%d items have been affected.' ), $za ), $H );}} elseif ( ! is_string ( $Xc = get_file ( " csv_file " , true ))) $n = upload_error ( $Xc ); elseif ( ! preg_match ( '~~u' , $Xc )) $n = 'File must be in UTF-8 encoding.' ; else { cookie ( " adminer_import " , " output= " . urlencode ( $ya [ " output " ]) . " &format= " . urlencode ( $_POST [ " separator " ])); $H = true ; $nb = array_keys ( $p ); preg_match_all ( '~(?>"[^"]*"|[^"\r\n]+)+~' , $Xc , $Ce ); $za = count ( $Ce [ 0 ]); $m -> begin (); $hh = ( $_POST [ " separator " ] == " csv " ? " , " : ( $_POST [ " separator " ] == " tsv " ? " \t " : " ; " )); $K = array (); foreach ( $Ce [ 0 ] as $z => $X ){ preg_match_all ( " ~((?> \" [^ \" ]* \" )+|[^ $hh ]*) $hh ~ " , $X . $hh , $De ); if ( ! $z &&! array_diff ( $De [ 1 ], $nb )){ $nb = $De [ 1 ]; $za -- ;} else { $N = array (); foreach ( $De [ 1 ] as $t => $jb ) $N [ idf_escape ( $nb [ $t ])] = ( $jb == " " && $p [ $nb [ $t ]][ " null " ] ? " NULL " : q ( str_replace ( '""' , '"' , preg_replace ( '~^"|"$~' , '' , $jb )))); $K [] = $N ;}} $H = ( ! $K || $m -> insertUpdate ( $a , $K , $kg )); if ( $H ) $H = $m -> commit (); queries_redirect ( remove_from_uri ( " page " ), lang ( array ( '%d row has been imported.' , '%d rows have been imported.' ), $za ), $H ); $m -> rollback ();}}} $Oh = $b -> tableName ( $R ); if ( is_ajax ()){ page_headers (); ob_start ();} else
page_header ( 'Select' . " : $Oh " , $n ); $N = null ; if ( isset ( $Rg [ " insert " ]) ||! support ( " table " )){ $N = " " ; foreach (( array ) $_GET [ " where " ] as $X ){ if ( $hd [ $X [ " col " ]] && count ( $hd [ $X [ " col " ]]) == 1 && ( $X [ " op " ] == " = " || ( ! $X [ " op " ] &&! preg_match ( '~[_%]~' , $X [ " val " ])))) $N .= " &set " . urlencode ( " [ " . bracket_escape ( $X [ " col " ]) . " ] " ) . " = " . urlencode ( $X [ " val " ]);}} $b -> selectLinks ( $R , $N ); if ( ! $f && support ( " table " )) echo " <p class='error'> " . 'Unable to select the table' . ( $p ? " . " : " : " . error ()) . " \n " ; else { echo " <form action='' id='form'> \n " , " <div style='display: none;'> " ; hidden_fields_get (); echo ( DB != " " ? '<input type="hidden" name="db" value="' . h ( DB ) . '">' . ( isset ( $_GET [ " ns " ]) ? '<input type="hidden" name="ns" value="' . h ( $_GET [ " ns " ]) . '">' : " " ) : " " ); echo '<input type="hidden" name="select" value="' . h ( $a ) . '">' , " </div> \n " ; $b -> selectColumnsPrint ( $L , $f ); $b -> selectSearchPrint ( $Z , $f , $x ); $b -> selectOrderPrint ( $zf , $f , $x ); $b -> selectLimitPrint ( $_ ); $b -> selectLengthPrint ( $ci ); $b -> selectActionPrint ( $x ); echo " </form> \n " ; $E = $_GET [ " page " ]; if ( $E == " last " ){ $kd = $g -> result ( count_rows ( $a , $Z , $ae , $qd )); $E = floor ( max ( 0 , $kd - 1 ) / $_ );} $ch = $L ; $rd = $qd ; if ( ! $ch ){ $ch [] = " * " ; $Eb = convert_fields ( $f , $p , $L ); if ( $Eb ) $ch [] = substr ( $Eb , 2 );} foreach ( $L
as $z => $X ){ $o = $p [ idf_unescape ( $X )]; if ( $o && ( $Fa = convert_field ( $o ))) $ch [ $z ] = " $Fa AS $X " ;} if ( ! $ae && $Gi ){ foreach ( $Gi
as $z => $X ){ $ch [] = idf_escape ( $z ); if ( $rd ) $rd [] = idf_escape ( $z );}} $H = $m -> select ( $a , $ch , $Z , $rd , $zf , $_ , $E , true ); if ( ! $H ) echo " <p class='error'> " . error () . " \n " ; else { if ( $y == " mssql " && $E ) $H -> seek ( $_ * $E ); $wc = array (); echo " <form action='' method='post' enctype='multipart/form-data'> \n " ; $K = array (); while ( $J = $H -> fetch_assoc ()){ if ( $E && $y == " oracle " ) unset ( $J [ " RNUM " ]); $K [] = $J ;} if ( $_GET [ " page " ] != " last " && $_ != " " && $qd && $ae && $y == " sql " ) $kd = $g -> result ( " SELECT FOUND_ROWS() " ); if ( ! $K ) echo " <p class='message'> " . 'No rows.' . " \n " ; else { $Oa = $b -> backwardKeys ( $a , $Oh ); echo " <div class='scrollable'> " , " <table id='table' cellspacing='0' class='nowrap checkable'> " , script ( " mixin(qs('#table'), { onclick: tableClick, ondblclick: partialArg(tableClick, true), onkeydown: editingKeydown}); " ), " <thead><tr> " . ( ! $qd && $L ? " " : " <td><input type='checkbox' id='all-page' class='jsonly'> " . script ( " qs('#all-page').onclick = partial(formCheck, /check/); " , " " ) . " <a href=' " . h ( $_GET [ " modify " ] ? remove_from_uri ( " modify " ) : $_SERVER [ " REQUEST_URI " ] . " &modify=1 " ) . " '> " . 'Modify' . " </a> " ); $Ve = array (); $nd = array (); reset ( $L ); $zg = 1 ; foreach ( $K [ 0 ] as $z => $X ){ if ( ! isset ( $Gi [ $z ])){ $X = $_GET [ " columns " ][ key ( $L )]; $o = $p [ $L ? ( $X ? $X [ " col " ] : current ( $L )) : $z ]; $D = ( $o ? $b -> fieldName ( $o , $zg ) : ( $X [ " fun " ] ? " * " : $z )); if ( $D != " " ){ $zg ++ ; $Ve [ $z ] = $D ; $e = idf_escape ( $z ); $Ed = remove_from_uri ( '(order|desc)[^=]*|page' ) . '&order%5B0%5D=' . urlencode ( $z ); $bc = " &desc%5B0%5D=1 " ; echo " <th id='th[ " . h ( bracket_escape ( $z )) . " ]'> " . script ( " mixin(qsl('th'), { onmouseover: partial(columnMouse), onmouseout: partial(columnMouse, ' hidden')}); " , " " ), '<a href="' . h ( $Ed . ( $zf [ 0 ] == $e || $zf [ 0 ] == $z || ( ! $zf && $ae && $qd [ 0 ] == $e ) ? $bc : '' )) . '">' ; echo
2022-03-22 10:53:12 +01:00
apply_sql_function ( $X [ " fun " ], $D ) . " </a> " ; echo " <span class='column hidden'> " , " <a href=' " . h ( $Ed . $bc ) . " ' title=' " . 'descending' . " ' class='text'> ↓</a> " ; if ( ! $X [ " fun " ]){ echo '<a href="#fieldset-search" title="' . 'Search' . '" class="text jsonly"> =</a>' , script ( " qsl('a').onclick = partial(selectSearch, ' " . js_escape ( $z ) . " '); " );} echo " </span> " ;} $nd [ $z ] = $X [ " fun " ]; next ( $L );}} $ue = array (); if ( $_GET [ " modify " ]){ foreach ( $K
2021-05-20 10:52:49 +02:00
as $J ){ foreach ( $J
as $z => $X ) $ue [ $z ] = max ( $ue [ $z ], min ( 40 , strlen ( utf8_decode ( $X ))));}} echo ( $Oa ? " <th> " . 'Relations' : " " ) . " </thead> \n " ; if ( is_ajax ()){ if ( $_ % 2 == 1 && $E % 2 == 1 ) odd (); ob_end_clean ();} foreach ( $b -> rowDescriptions ( $K , $hd ) as $Ue => $J ){ $Di = unique_array ( $K [ $Ue ], $x ); if ( ! $Di ){ $Di = array (); foreach ( $K [ $Ue ] as $z => $X ){ if ( ! preg_match ( '~^(COUNT\((\*|(DISTINCT )?`(?:[^`]|``)+`)\)|(AVG|GROUP_CONCAT|MAX|MIN|SUM)\(`(?:[^`]|``)+`\))$~' , $z )) $Di [ $z ] = $X ;}} $Ei = " " ; foreach ( $Di
as $z => $X ){ if (( $y == " sql " || $y == " pgsql " ) && preg_match ( '~char|text|enum|set~' , $p [ $z ][ " type " ]) && strlen ( $X ) > 64 ){ $z = ( strpos ( $z , '(' ) ? $z : idf_escape ( $z )); $z = " MD5( " . ( $y != 'sql' || preg_match ( " ~^utf8~ " , $p [ $z ][ " collation " ]) ? $z : " CONVERT( $z USING " . charset ( $g ) . " ) " ) . " ) " ; $X = md5 ( $X );} $Ei .= " & " . ( $X !== null ? urlencode ( " where[ " . bracket_escape ( $z ) . " ] " ) . " = " . urlencode ( $X ) : " null%5B%5D= " . urlencode ( $z ));} echo " <tr " . odd () . " > " . ( ! $qd && $L ? " " : " <td> " . checkbox ( " check[] " , substr ( $Ei , 1 ), in_array ( substr ( $Ei , 1 ),( array ) $_POST [ " check " ])) . ( $ae || information_schema ( DB ) ? " " : " <a href=' " . h ( ME . " edit= " . urlencode ( $a ) . $Ei ) . " ' class='edit'> " . 'edit' . " </a> " )); foreach ( $J
as $z => $X ){ if ( isset ( $Ve [ $z ])){ $o = $p [ $z ]; $X = $m -> value ( $X , $o ); if ( $X != " " && ( ! isset ( $wc [ $z ]) || $wc [ $z ] != " " )) $wc [ $z ] = ( is_mail ( $X ) ? $Ve [ $z ] : " " ); $A = " " ; if ( preg_match ( '~blob|bytea|raw|file~' , $o [ " type " ]) && $X != " " ) $A = ME . 'download=' . urlencode ( $a ) . '&field=' . urlencode ( $z ) . $Ei ; if ( ! $A && $X !== null ){ foreach (( array ) $hd [ $z ] as $r ){ if ( count ( $hd [ $z ]) == 1 || end ( $r [ " source " ]) == $z ){ $A = " " ; foreach ( $r [ " source " ] as $t => $vh ) $A .= where_link ( $t , $r [ " target " ][ $t ], $K [ $Ue ][ $vh ]); $A = ( $r [ " db " ] != " " ? preg_replace ( '~([?&]db=)[^&]+~' , '\1' . urlencode ( $r [ " db " ]), ME ) : ME ) . 'select=' . urlencode ( $r [ " table " ]) . $A ; if ( $r [ " ns " ]) $A = preg_replace ( '~([?&]ns=)[^&]+~' , '\1' . urlencode ( $r [ " ns " ]), $A ); if ( count ( $r [ " source " ]) == 1 ) break ;}}} if ( $z == " COUNT(*) " ){ $A = ME . " select= " . urlencode ( $a ); $t = 0 ; foreach (( array ) $_GET [ " where " ] as $W ){ if ( ! array_key_exists ( $W [ " col " ], $Di )) $A .= where_link ( $t ++ , $W [ " col " ], $W [ " val " ], $W [ " op " ]);} foreach ( $Di
2022-03-22 10:53:12 +01:00
as $fe => $W ) $A .= where_link ( $t ++ , $fe , $W );} $X = select_value ( $X , $A , $o , $ci ); $u = h ( " val[ $Ei ][ " . bracket_escape ( $z ) . " ] " ); $Y = $_POST [ " val " ][ $Ei ][ bracket_escape ( $z )]; $rc =! is_array ( $J [ $z ]) && is_utf8 ( $X ) && $K [ $Ue ][ $z ] == $J [ $z ] &&! $nd [ $z ]; $bi = preg_match ( '~text|lob~' , $o [ " type " ]); echo " <td id=' $u ' " ; if (( $_GET [ " modify " ] && $rc ) || $Y !== null ){ $vd = h ( $Y !== null ? $Y : $J [ $z ]); echo " > " . ( $bi ? " <textarea name=' $u ' cols='30' rows=' " . ( substr_count ( $J [ $z ], " \n " ) + 1 ) . " '> $vd </textarea> " : " <input name=' $u ' value=' $vd ' size=' $ue[$z] '> " );} else { $ye = strpos ( $X , " <i>…</i> " ); echo " data-text=' " . ( $ye ? 2 : ( $bi ? 1 : 0 )) . " ' " . ( $rc ? " " : " data-warning=' " . h ( 'Use edit link to modify this value.' ) . " ' " ) . " > $X </td> " ;}}} if ( $Oa ) echo " <td> " ; $b -> backwardKeysPrint ( $Oa , $K [ $Ue ]); echo " </tr> \n " ;} if ( is_ajax ()) exit ; echo " </table> \n " , " </div> \n " ;} if ( ! is_ajax ()){ if ( $K || $E ){ $Gc = true ; if ( $_GET [ " page " ] != " last " ){ if ( $_ == " " || ( count ( $K ) < $_ && ( $K ||! $E ))) $kd = ( $E ? $E * $_ : 0 ) + count ( $K ); elseif ( $y != " sql " ||! $ae ){ $kd = ( $ae ? false : found_rows ( $R , $Z )); if ( $kd < max ( 1e4 , 2 * ( $E + 1 ) * $_ )) $kd = reset ( slow_query ( count_rows ( $a , $Z , $ae , $qd ))); else $Gc = false ;}} $Mf = ( $_ != " " && ( $kd === false || $kd > $_ || $E )); if ( $Mf ){ echo (( $kd === false ? count ( $K ) + 1 : $kd - $E * $_ ) > $_ ? '<p><a href="' . h ( remove_from_uri ( " page " ) . " &page= " . ( $E + 1 )) . '" class="loadmore">' . 'Load more data' . '</a>' . script ( " qsl('a').onclick = partial(selectLoadMore, " . ( + $_ ) . " , ' " . 'Loading' . " …'); " , " " ) : '' ), " \n " ;}} echo " <div class='footer'><div> \n " ; if ( $K || $E ){ if ( $Mf ){ $Fe = ( $kd === false ? $E + ( count ( $K ) >= $_ ? 2 : 1 ) : floor (( $kd - 1 ) / $_ )); echo " <fieldset> " ; if ( $y != " simpledb " ){ echo " <legend><a href=' " . h ( remove_from_uri ( " page " )) . " '> " . 'Page' . " </a></legend> " , script ( " qsl('a').onclick = function () { pageClick(this.href, +prompt(' " . 'Page' . " ', ' " . ( $E + 1 ) . " ')); return false; }; " ), pagination ( 0 , $E ) . ( $E > 5 ? " … " : " " ); for ( $t = max ( 1 , $E - 4 ); $t < min ( $Fe , $E + 5 ); $t ++ ) echo
pagination ( $t , $E ); if ( $Fe > 0 ){ echo ( $E + 5 < $Fe ? " … " : " " ),( $Gc && $kd !== false ? pagination ( $Fe , $E ) : " <a href=' " . h ( remove_from_uri ( " page " ) . " &page=last " ) . " ' title='~ $Fe '> " . 'last' . " </a> " );}} else { echo " <legend> " . 'Page' . " </legend> " , pagination ( 0 , $E ) . ( $E > 1 ? " … " : " " ),( $E ? pagination ( $E , $E ) : " " ),( $Fe > $E ? pagination ( $E + 1 , $E ) . ( $Fe > $E + 1 ? " … " : " " ) : " " );} echo " </fieldset> \n " ;} echo " <fieldset> " , " <legend> " . 'Whole result' . " </legend> " ; $gc = ( $Gc ? " " : " ~ " ) . $kd ; echo
2021-05-20 10:52:49 +02:00
checkbox ( " all " , 1 , 0 ,( $kd !== false ? ( $Gc ? " " : " ~ " ) . lang ( array ( '%d row' , '%d rows' ), $kd ) : " " ), " var checked = formChecked(this, /check/); selectCount('selected', this.checked ? ' $gc ' : checked); selectCount('selected2', this.checked || !checked ? ' $gc ' : checked); " ) . " \n " , " </fieldset> \n " ; if ( $b -> selectCommandPrint ()){ echo '<fieldset' ,( $_GET [ " modify " ] ? '' : ' class="jsonly"' ), ' >< legend > Modify </ legend >< div >
< input type = " submit " value = " Save " ',($_GET["modify"]?' ':' title = " '.'Ctrl+click on a value to modify it.'.' " '),' >
</ div ></ fieldset >
< fieldset >< legend > Selected < span id = " selected " ></ span ></ legend >< div >
< input type = " submit " name = " edit " value = " Edit " >
< input type = " submit " name = " clone " value = " Clone " >
< input type = " submit " name = " delete " value = " Delete " > ',confirm(),' </ div ></ fieldset >
';}$id=$b->dumpFormat();foreach((array)$_GET["columns"]as$e){if($e["fun"]){unset($id[' sql ']);break;}}if($id){print_fieldset("export",' Export '." <span id=' selected2 '></span>");$Jf=$b->dumpOutput();echo($Jf?html_select("output",$Jf,$ya["output"])." ":""),html_select("format",$id,$ya["format"])," <input type=' submit ' name=' export ' value=' " .'Export'. " '>\n","</div></fieldset>\n";}$b->selectEmailPrint(array_filter($wc,' strlen '),$f);}echo"</div></div>\n";if($b->selectImportPrint()){echo"<div>","<a href=' #import'>".'Import'."</a>",script("qsl('a').onclick = partial(toggle, 'import');",""),"<span id='import' class='hidden'>: ","<input type='file' name='csv_file'> ",html_select("separator",array("csv"=>"CSV,","csv;"=>"CSV;","tsv"=>"TSV"),$ya["format"],1);echo" <input type='submit' name='import' value='".'Import'."'>","</span>","</div>";}echo"<input type='hidden' name='token' value='$ni'>\n","</form>\n",(!$qd&&$L?"":script("tableCheck();"));}}}if(is_ajax()){ob_end_clean();exit;}}elseif(isset($_GET["variables"])){$O=isset($_GET["status"]);page_header($O?'Status':'Variables');$Ui=($O?show_status():show_variables());if(!$Ui)echo"<p class='message'>".'No rows.'."\n";else{echo"<table cellspacing='0'>\n";foreach($Ui
as $z => $X ){ echo " <tr> " , " <th><code class='jush- " . $y . ( $O ? " status " : " set " ) . " '> " . h ( $z ) . " </code> " , " <td> " . h ( $X );} echo " </table> \n " ;}} elseif ( isset ( $_GET [ " script " ])){ header ( " Content-Type: text/javascript; charset=utf-8 " ); if ( $_GET [ " script " ] == " db " ){ $Lh = array ( " Data_length " => 0 , " Index_length " => 0 , " Data_free " => 0 ); foreach ( table_status () as $D => $R ){ json_row ( " Comment- $D " , h ( $R [ " Comment " ])); if ( ! is_view ( $R )){ foreach ( array ( " Engine " , " Collation " ) as $z ) json_row ( " $z - $D " , h ( $R [ $z ])); foreach ( $Lh + array ( " Auto_increment " => 0 , " Rows " => 0 ) as $z => $X ){ if ( $R [ $z ] != " " ){ $X = format_number ( $R [ $z ]); json_row ( " $z - $D " ,( $z == " Rows " && $X && $R [ " Engine " ] == ( $yh == " pgsql " ? " table " : " InnoDB " ) ? " ~ $X " : $X )); if ( isset ( $Lh [ $z ])) $Lh [ $z ] += ( $R [ " Engine " ] != " InnoDB " || $z != " Data_free " ? $R [ $z ] : 0 );} elseif ( array_key_exists ( $z , $R )) json_row ( " $z - $D " );}}} foreach ( $Lh
as $z => $X ) json_row ( " sum- $z " , format_number ( $X )); json_row ( " " );} elseif ( $_GET [ " script " ] == " kill " ) $g -> query ( " KILL " . number ( $_POST [ " kill " ])); else { foreach ( count_tables ( $b -> databases ()) as $l => $X ){ json_row ( " tables- $l " , $X ); json_row ( " size- $l " , db_size ( $l ));} json_row ( " " );} exit ;} else { $Uh = array_merge (( array ) $_POST [ " tables " ],( array ) $_POST [ " views " ]); if ( $Uh &&! $n &&! $_POST [ " search " ]){ $H = true ; $Ke = " " ; if ( $y == " sql " && $_POST [ " tables " ] && count ( $_POST [ " tables " ]) > 1 && ( $_POST [ " drop " ] || $_POST [ " truncate " ] || $_POST [ " copy " ])) queries ( " SET foreign_key_checks = 0 " ); if ( $_POST [ " truncate " ]){ if ( $_POST [ " tables " ]) $H = truncate_tables ( $_POST [ " tables " ]); $Ke = 'Tables have been truncated.' ;} elseif ( $_POST [ " move " ]){ $H = move_tables (( array ) $_POST [ " tables " ],( array ) $_POST [ " views " ], $_POST [ " target " ]); $Ke = 'Tables have been moved.' ;} elseif ( $_POST [ " copy " ]){ $H = copy_tables (( array ) $_POST [ " tables " ],( array ) $_POST [ " views " ], $_POST [ " target " ]); $Ke = 'Tables have been copied.' ;} elseif ( $_POST [ " drop " ]){ if ( $_POST [ " views " ]) $H = drop_views ( $_POST [ " views " ]); if ( $H && $_POST [ " tables " ]) $H = drop_tables ( $_POST [ " tables " ]); $Ke = 'Tables have been dropped.' ;} elseif ( $y != " sql " ){ $H = ( $y == " sqlite " ? queries ( " VACUUM " ) : apply_queries ( " VACUUM " . ( $_POST [ " optimize " ] ? " " : " ANALYZE " ), $_POST [ " tables " ])); $Ke = 'Tables have been optimized.' ;} elseif ( ! $_POST [ " tables " ]) $Ke = 'No tables.' ; elseif ( $H = queries (( $_POST [ " optimize " ] ? " OPTIMIZE " : ( $_POST [ " check " ] ? " CHECK " : ( $_POST [ " repair " ] ? " REPAIR " : " ANALYZE " ))) . " TABLE " . implode ( " , " , array_map ( 'idf_escape' , $_POST [ " tables " ])))){ while ( $J = $H -> fetch_assoc ()) $Ke .= " <b> " . h ( $J [ " Table " ]) . " </b>: " . h ( $J [ " Msg_text " ]) . " <br> " ;} queries_redirect ( substr ( ME , 0 , - 1 ), $Ke , $H );} page_header (( $_GET [ " ns " ] == " " ? 'Database' . " : " . h ( DB ) : 'Schema' . " : " . h ( $_GET [ " ns " ])), $n , true ); if ( $b -> homepage ()){ if ( $_GET [ " ns " ] !== " " ){ echo " <h3 id='tables-views'> " . 'Tables and views' . " </h3> \n " ; $Th = tables_list (); if ( ! $Th ) echo " <p class='message'> " . 'No tables.' . " \n " ; else { echo " <form action='' method='post'> \n " ; if ( support ( " table " )){ echo " <fieldset><legend> " . 'Search data in tables' . " <span id='selected2'></span></legend><div> " , " <input type='search' name='query' value=' " . h ( $_POST [ " query " ]) . " '> " , script ( " qsl('input').onkeydown = partialArg(bodyKeydown, 'search'); " , " " ), " <input type='submit' name='search' value=' " . 'Search' . " '> \n " , " </div></fieldset> \n " ; if ( $_POST [ " search " ] && $_POST [ " query " ] != " " ){ $_GET [ " where " ][ 0 ][ " op " ] = " LIKE %% " ; search_tables ();}} echo " <div class='scrollable'> \n " , " <table cellspacing='0' class='nowrap checkable'> \n " , script ( " mixin(qsl('table'), { onclick: tableClick, ondblclick: partialArg(tableClick, true)}); " ), '<thead><tr class="wrap">' , '<td><input id="check-all" type="checkbox" class="jsonly">' . script ( " qs('#check-all').onclick = partial(formCheck, /^(tables|views) \ [/); " , " " ), '<th>' . 'Table' , '<td>' . 'Engine' . doc_link ( array ( 'sql' => 'storage-engines.html' )), '<td>' . 'Collation' . doc_link ( array ( 'sql' => 'charset-charsets.html' , 'mariadb' => 'supported-character-sets-and-collations/' )), '<td>' . 'Data Length' . doc_link ( array ( 'sql' => 'show-table-status.html' , 'pgsql' => 'functions-admin.html#FUNCTIONS-ADMIN-DBOBJECT' , 'oracle' => 'REFRN20286' )), '<td>' . 'Index Length' . doc_link ( array ( 'sql' => 'show-table-status.html' , 'pgsql' => 'functions-admin.html#FUNCTIONS-ADMIN-DBOBJECT' )), '<td>' . 'Data Free' . doc_link ( array ( 'sql' => 'show-table-status.html' )), '<td>' . 'Auto Increment' . doc_link ( array ( 'sql' => 'example-auto-increment.html' , 'mariadb' => 'auto_increment/' )), '<td>' . 'Rows' . doc_link ( array ( 'sql' => 'show-table-status.html' , 'pgsql' => 'catalog-pg-class.html#CATALOG-PG-CLASS' , 'oracle' => 'REFRN20286' )),( support ( " comment " ) ? '<td>' . 'Comment' . doc_link ( array ( 'sql' => 'show-table-status.html' , 'pgsql' => 'functions-info.html#FUNCTIONS-INFO-COMMENT-TABLE' )) : '' ), " </thead> \n " ; $S = 0 ; foreach ( $Th
as $D => $T ){ $Xi = ( $T !== null &&! preg_match ( '~table|sequence~i' , $T )); $u = h ( " Table- " . $D ); echo '<tr' . odd () . '><td>' . checkbox (( $Xi ? " views[] " : " tables[] " ), $D , in_array ( $D , $Uh , true ), " " , " " , " " , $u ), '<th>' . ( support ( " table " ) || support ( " indexes " ) ? " <a href=' " . h ( ME ) . " table= " . urlencode ( $D ) . " ' title=' " . 'Show structure' . " ' id=' $u '> " . h ( $D ) . '</a>' : h ( $D )); if ( $Xi ){ echo '<td colspan="6"><a href="' . h ( ME ) . " view= " . urlencode ( $D ) . '" title="' . 'Alter view' . '">' . ( preg_match ( '~materialized~i' , $T ) ? 'Materialized view' : 'View' ) . '</a>' , '<td align="right"><a href="' . h ( ME ) . " select= " . urlencode ( $D ) . '" title="' . 'Select data' . '">?</a>' ;} else { foreach ( array ( " Engine " => array (), " Collation " => array (), " Data_length " => array ( " create " , 'Alter table' ), " Index_length " => array ( " indexes " , 'Alter indexes' ), " Data_free " => array ( " edit " , 'New item' ), " Auto_increment " => array ( " auto_increment=1&create " , 'Alter table' ), " Rows " => array ( " select " , 'Select data' ),) as $z => $A ){ $u = " id=' $z - " . h ( $D ) . " ' " ; echo ( $A ? " <td align='right'> " . ( support ( " table " ) || $z == " Rows " || ( support ( " indexes " ) && $z != " Data_length " ) ? " <a href=' " . h ( ME . " $A[0] = " ) . urlencode ( $D ) . " ' $u title=' $A[1] '>?</a> " : " <span $u >?</span> " ) : " <td id=' $z - " . h ( $D ) . " '> " );} $S ++ ;} echo ( support ( " comment " ) ? " <td id='Comment- " . h ( $D ) . " '> " : " " );} echo " <tr><td><th> " . sprintf ( '%d in total' , count ( $Th )), " <td> " . h ( $y == " sql " ? $g -> result ( " SELECT @@default_storage_engine " ) : " " ), " <td> " . h ( db_collation ( DB , collations ())); foreach ( array ( " Data_length " , " Index_length " , " Data_free " ) as $z ) echo " <td align='right' id='sum- $z '> " ; echo " </table> \n " , " </div> \n " ; if ( ! information_schema ( DB )){ echo " <div class='footer'><div> \n " ; $Ri = " <input type='submit' value=' " . 'Vacuum' . " '> " . on_help ( " 'VACUUM' " ); $vf = " <input type='submit' name='optimize' value=' " . 'Optimize' . " '> " . on_help ( $y == " sql " ? " 'OPTIMIZE TABLE' " : " 'VACUUM OPTIMIZE' " ); echo " <fieldset><legend> " . 'Selected' . " <span id='selected'></span></legend><div> " . ( $y == " sqlite " ? $Ri : ( $y == " pgsql " ? $Ri . $vf : ( $y == " sql " ? " <input type='submit' value=' " . 'Analyze' . " '> " . on_help ( " 'ANALYZE TABLE' " ) . $vf . " <input type='submit' name='check' value=' " . 'Check' . " '> " . on_help ( " 'CHECK TABLE' " ) . " <input type='submit' name='repair' value=' " . 'Repair' . " '> " . on_help ( " 'REPAIR TABLE' " ) : " " ))) . " <input type='submit' name='truncate' value=' " . 'Truncate' . " '> " . on_help ( $y == " sqlite " ? " 'DELETE' " : " 'TRUNCATE " . ( $y == " pgsql " ? " ' " : " TABLE' " )) . confirm () . " <input type='submit' name='drop' value=' " . 'Drop' . " '> " . on_help ( " 'DROP TABLE' " ) . confirm () . " \n " ; $k = ( support ( " scheme " ) ? $b -> schemas () : $b -> databases ()); if ( count ( $k ) != 1 && $y != " sqlite " ){ $l = ( isset ( $_POST [ " target " ]) ? $_POST [ " target " ] : ( support ( " scheme " ) ? $_GET [ " ns " ] : DB )); echo " <p> " . 'Move to other database' . " : " ,( $k ? html_select ( " target " , $k , $l ) : '<input name="target" value="' . h ( $l ) . '" autocapitalize="off">' ), " <input type='submit' name='move' value=' " . 'Move' . " '> " ,( support ( " copy " ) ? " <input type='submit' name='copy' value=' " . 'Copy' . " '> " . checkbox ( " overwrite " , 1 , $_POST [ " overwrite " ], 'overwrite' ) : " " ), " \n " ;} echo " <input type='hidden' name='all' value=''> " ; echo
script ( " qsl('input').onclick = function () { selectCount('selected', formChecked(this, /^(tables|views) \ [/)); " . ( support ( " table " ) ? " selectCount('selected2', formChecked(this, /^tables \ [/) || $S ); " : " " ) . " } " ), " <input type='hidden' name='token' value=' $ni '> \n " , " </div></fieldset> \n " , " </div></div> \n " ;} echo " </form> \n " , script ( " tableCheck(); " );} echo '<p class="links"><a href="' . h ( ME ) . 'create=">' . 'Create table' . " </a> \n " ,( support ( " view " ) ? '<a href="' . h ( ME ) . 'view=">' . 'Create view' . " </a> \n " : " " ); if ( support ( " routine " )){ echo " <h3 id='routines'> " . 'Routines' . " </h3> \n " ; $Vg = routines (); if ( $Vg ){ echo " <table cellspacing='0'> \n " , '<thead><tr><th>' . 'Name' . '<td>' . 'Type' . '<td>' . 'Return type' . " <td></thead> \n " ; odd ( '' ); foreach ( $Vg
as $J ){ $D = ( $J [ " SPECIFIC_NAME " ] == $J [ " ROUTINE_NAME " ] ? " " : " &name= " . urlencode ( $J [ " ROUTINE_NAME " ])); echo '<tr' . odd () . '>' , '<th><a href="' . h ( ME . ( $J [ " ROUTINE_TYPE " ] != " PROCEDURE " ? 'callf=' : 'call=' ) . urlencode ( $J [ " SPECIFIC_NAME " ]) . $D ) . '">' . h ( $J [ " ROUTINE_NAME " ]) . '</a>' , '<td>' . h ( $J [ " ROUTINE_TYPE " ]), '<td>' . h ( $J [ " DTD_IDENTIFIER " ]), '<td><a href="' . h ( ME . ( $J [ " ROUTINE_TYPE " ] != " PROCEDURE " ? 'function=' : 'procedure=' ) . urlencode ( $J [ " SPECIFIC_NAME " ]) . $D ) . '">' . 'Alter' . " </a> " ;} echo " </table> \n " ;} echo '<p class="links">' . ( support ( " procedure " ) ? '<a href="' . h ( ME ) . 'procedure=">' . 'Create procedure' . '</a>' : '' ) . '<a href="' . h ( ME ) . 'function=">' . 'Create function' . " </a> \n " ;} if ( support ( " sequence " )){ echo " <h3 id='sequences'> " . 'Sequences' . " </h3> \n " ; $jh = get_vals ( " SELECT sequence_name FROM information_schema.sequences WHERE sequence_schema = current_schema() ORDER BY sequence_name " ); if ( $jh ){ echo " <table cellspacing='0'> \n " , " <thead><tr><th> " . 'Name' . " </thead> \n " ; odd ( '' ); foreach ( $jh
as $X ) echo " <tr " . odd () . " ><th><a href=' " . h ( ME ) . " sequence= " . urlencode ( $X ) . " '> " . h ( $X ) . " </a> \n " ; echo " </table> \n " ;} echo " <p class='links'><a href=' " . h ( ME ) . " sequence='> " . 'Create sequence' . " </a> \n " ;} if ( support ( " type " )){ echo " <h3 id='user-types'> " . 'User types' . " </h3> \n " ; $Pi = types (); if ( $Pi ){ echo " <table cellspacing='0'> \n " , " <thead><tr><th> " . 'Name' . " </thead> \n " ; odd ( '' ); foreach ( $Pi
as $X ) echo " <tr " . odd () . " ><th><a href=' " . h ( ME ) . " type= " . urlencode ( $X ) . " '> " . h ( $X ) . " </a> \n " ; echo " </table> \n " ;} echo " <p class='links'><a href=' " . h ( ME ) . " type='> " . 'Create type' . " </a> \n " ;} if ( support ( " event " )){ echo " <h3 id='events'> " . 'Events' . " </h3> \n " ; $K = get_rows ( " SHOW EVENTS " ); if ( $K ){ echo " <table cellspacing='0'> \n " , " <thead><tr><th> " . 'Name' . " <td> " . 'Schedule' . " <td> " . 'Start' . " <td> " . 'End' . " <td></thead> \n " ; foreach ( $K
as $J ){ echo " <tr> " , " <th> " . h ( $J [ " Name " ]), " <td> " . ( $J [ " Execute at " ] ? 'At given time' . " <td> " . $J [ " Execute at " ] : 'Every' . " " . $J [ " Interval value " ] . " " . $J [ " Interval field " ] . " <td> $J[Starts] " ), " <td> $J[Ends] " , '<td><a href="' . h ( ME ) . 'event=' . urlencode ( $J [ " Name " ]) . '">' . 'Alter' . '</a>' ;} echo " </table> \n " ; $Ec = $g -> result ( " SELECT @@event_scheduler " ); if ( $Ec && $Ec != " ON " ) echo " <p class='error'><code class='jush-sqlset'>event_scheduler</code>: " . h ( $Ec ) . " \n " ;} echo '<p class="links"><a href="' . h ( ME ) . 'event=">' . 'Create event' . " </a> \n " ;} if ( $Th ) echo
script ( " ajaxSetHtml(' " . js_escape ( ME ) . " script=db'); " );}}} page_footer ();