2019-12-28 19:48:41 +00:00
< ? php if ( ! function_exists ( " get_magic_quotes_runtime " )){ function get_magic_quotes_runtime (){ return false ;}} if ( ! function_exists ( " get_magic_quotes_gpc " )){ function get_magic_quotes_gpc (){ return false ;}}
2019-12-08 06:56:36 +00:00
/** 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.7 . 5
2019-12-28 19:48:41 +00:00
*/ error_reporting ( 0 ); $Vc =! preg_match ( '~^(unsafe_raw)?$~' , ini_get ( " filter.default " )); if ( $Vc || ini_get ( " filter.default_flags " )){ foreach ( array ( '_GET' , '_POST' , '_COOKIE' , '_SERVER' ) as $X ){ $Gi = filter_input_array ( constant ( " INPUT $X " ), FILTER_UNSAFE_RAW ); if ( $Gi ) $$X = $Gi ;}} if ( function_exists ( " mb_internal_encoding " )) mb_internal_encoding ( " 8bit " ); function
2019-12-08 06:56:36 +00:00
connection (){ global $g ; return $g ;} function
adminer (){ global $b ; return $b ;} function
version (){ global $ia ; return $ia ;} function
idf_unescape ( $u ){ $ne = substr ( $u , - 1 ); return
str_replace ( $ne . $ne , $ne , substr ( $u , 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
2019-12-28 19:48:41 +00:00
remove_slashes ( $qg , $Vc = false ){ if ( get_magic_quotes_gpc ()){ foreach ( $qg as $y => $x ){ foreach ( $X
2019-12-08 06:56:36 +00:00
as $de => $W ){ unset ( $qg [ $y ][ $de ]); if ( is_array ( $W )){ $qg [ $y ][ stripslashes ( $de )] = $W ; $qg [] =& $qg [ $y ][ stripslashes ( $de )];} else $qg [ $y ][ stripslashes ( $de )] = ( $Vc ? $W : stripslashes ( $W ));}}}} function
bracket_escape ( $u , $Oa = false ){ static $si = array ( ':' => ':1' , ']' => ':2' , '[' => ':3' , '"' => ':4' ); return
strtr ( $u ,( $Oa ? array_flip ( $si ) : $si ));} function
min_version ( $Yi , $Be = " " , $h = null ){ global $g ; if ( ! $h ) $h = $g ; $lh = $h -> server_info ; if ( $Be && preg_match ( '~([\d.]+)-MariaDB~' , $lh , $A )){ $lh = $A [ 1 ]; $Yi = $Be ;} return ( version_compare ( $lh , $Yi ) >= 0 );} function
charset ( $g ){ return ( min_version ( " 5.5.3 " , 0 , $g ) ? " utf8mb4 " : " utf8 " );} function
script ( $wh , $ri = " \n " ){ return " <script " . nonce () . " > $wh </script> $ri " ;} function
script_src ( $Li ){ return " <script src=' " . h ( $Li ) . " ' " . 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 ( $B , $Y , $fb , $ke = " " , $sf = " " , $kb = " " , $le = " " ){ $H = " <input type='checkbox' name=' $B ' value=' " . h ( $Y ) . " ' " . ( $fb ? " checked " : " " ) . ( $le ? " aria-labelledby=' $le ' " : " " ) . " > " . ( $sf ? script ( " qsl('input').onclick = function () { $sf }; " , " " ) : " " ); return ( $ke != " " || $kb ? " <label " . ( $kb ? " class=' $kb ' " : " " ) . " > $H " . h ( $ke ) . " </label> " : $H );} function
optionlist ( $yf , $fh = null , $Qi = false ){ $H = " " ; foreach ( $yf
as $de => $W ){ $zf = array ( $de => $W ); if ( is_array ( $W )){ $H .= '<optgroup label="' . h ( $de ) . '">' ; $zf = $W ;} foreach ( $zf
as $y => $X ) $H .= '<option' . ( $Qi || is_string ( $y ) ? ' value="' . h ( $y ) . '"' : '' ) . (( $Qi || is_string ( $y ) ? ( string ) $y : $X ) === $fh ? ' selected' : '' ) . '>' . h ( $X ); if ( is_array ( $W )) $H .= '</optgroup>' ;} return $H ;} function
html_select ( $B , $yf , $Y = " " , $rf = true , $le = " " ){ if ( $rf ) return " <select name=' " . h ( $B ) . " ' " . ( $le ? " aria-labelledby=' $le ' " : " " ) . " > " . optionlist ( $yf , $Y ) . " </select> " . ( is_string ( $rf ) ? script ( " qsl('select').onchange = function () { $rf }; " , " " ) : " " ); $H = " " ; foreach ( $yf
as $y => $X ) $H .= " <label><input type='radio' name=' " . h ( $B ) . " ' value=' " . h ( $y ) . " ' " . ( $y == $Y ? " checked " : " " ) . " > " . h ( $X ) . " </label> " ; return $H ;} function
select_input ( $Ja , $yf , $Y = " " , $rf = " " , $cg = " " ){ $Wh = ( $yf ? " select " : " input " ); return " < $Wh $Ja " . ( $yf ? " ><option value=''> $cg " . optionlist ( $yf , $Y , true ) . " </select> " : " size='10' value=' " . h ( $Y ) . " ' placeholder=' $cg '> " ) . ( $rf ? script ( " qsl(' $Wh ').onchange = $rf ; " , " " ) : " " );} function
confirm ( $Le = " " , $gh = " qsl('input') " ){ return
script ( " $gh .onclick = function () { return confirm(' " . ( $Le ? js_escape ( $Le ) : 'Are you sure?' ) . " '); }; " , " " );} function
print_fieldset ( $t , $se , $bj = false ){ echo " <fieldset><legend> " , " <a href='#fieldset- $t '> $se </a> " , script ( " qsl('a').onclick = partial(toggle, 'fieldset- $t '); " , " " ), " </legend> " , " <div id='fieldset- $t ' " . ( $bj ? " " : " class='hidden' " ) . " > \n " ;} function
bold ( $Wa , $kb = " " ){ return ( $Wa ? " class='active $kb ' " : ( $kb ? " class=' $kb ' " : " " ));} function
odd ( $H = ' class="odd"' ){ static $s = 0 ; if ( ! $H ) $s =- 1 ; return ( $s ++% 2 ? $H : '' );} function
js_escape ( $P ){ return
addcslashes ( $P , " \r \n ' \\ / " );} function
json_row ( $y , $X = null ){ static $Wc = true ; if ( $Wc ) echo " { " ; if ( $y != " " ){ echo ( $Wc ? " " : " , " ) . " \n \t \" " . addcslashes ( $y , " \r \n \t \" \\ / " ) . '": ' . ( $X !== null ? '"' . addcslashes ( $X , " \r \n \" \\ / " ) . '"' : 'null' ); $Wc = false ;} else { echo " \n } \n " ; $Wc = true ;}} function
ini_bool ( $Qd ){ $X = ini_get ( $Qd ); return ( preg_match ( '~^(on|true|yes)$~i' , $X ) || ( int ) $X );} function
sid (){ static $H ; if ( $H === null ) $H = ( SID &&! ( $_COOKIE && ini_bool ( " session.use_cookies " ))); return $H ;} function
set_password ( $Xi , $M , $V , $E ){ $_SESSION [ " pwds " ][ $Xi ][ $M ][ $V ] = ( $_COOKIE [ " adminer_key " ] && is_string ( $E ) ? array ( encrypt_string ( $E , $_COOKIE [ " adminer_key " ])) : $E );} function
get_password (){ $H = get_session ( " pwds " ); if ( is_array ( $H )) $H = ( $_COOKIE [ " adminer_key " ] ? decrypt_string ( $H [ 0 ], $_COOKIE [ " adminer_key " ]) : false ); return $H ;} function
q ( $P ){ global $g ; return $g -> quote ( $P );} function
get_vals ( $F , $e = 0 ){ global $g ; $H = array (); $G = $g -> query ( $F ); if ( is_object ( $G )){ while ( $I = $G -> fetch_row ()) $H [] = $I [ $e ];} return $H ;} function
get_key_vals ( $F , $h = null , $oh = true ){ global $g ; if ( ! is_object ( $h )) $h = $g ; $H = array (); $G = $h -> query ( $F ); if ( is_object ( $G )){ while ( $I = $G -> fetch_row ()){ if ( $oh ) $H [ $I [ 0 ]] = $I [ 1 ]; else $H [] = $I [ 0 ];}} return $H ;} function
get_rows ( $F , $h = null , $n = " <p class='error'> " ){ global $g ; $xb = ( is_object ( $h ) ? $h : $g ); $H = array (); $G = $xb -> query ( $F ); if ( is_object ( $G )){ while ( $I = $G -> fetch_assoc ()) $H [] = $I ;} elseif ( ! $G &&! is_object ( $h ) && $n && defined ( " PAGE_HEADER " )) echo $n . error () . " \n " ; return $H ;} function
unique_array ( $I , $w ){ foreach ( $w
as $v ){ if ( preg_match ( " ~PRIMARY|UNIQUE~ " , $v [ " type " ])){ $H = array (); foreach ( $v [ " columns " ] as $y ){ if ( ! isset ( $I [ $y ])) continue
2 ; $H [ $y ] = $I [ $y ];} return $H ;}}} function
escape_key ( $y ){ if ( preg_match ( '(^([\w(]+)(' . str_replace ( " _ " , " .* " , preg_quote ( idf_escape ( " _ " ))) . ')([ \w)]+)$)' , $y , $A )) return $A [ 1 ] . idf_escape ( idf_unescape ( $A [ 2 ])) . $A [ 3 ]; return
idf_escape ( $y );} function
where ( $Z , $p = array ()){ global $g , $x ; $H = array (); foreach (( array ) $Z [ " where " ] as $y => $X ){ $y = bracket_escape ( $y , 1 ); $e = escape_key ( $y ); $H [] = $e . ( $x == " sql " && is_numeric ( $X ) && preg_match ( '~\.~' , $X ) ? " LIKE " . q ( $X ) : ( $x == " mssql " ? " LIKE " . q ( preg_replace ( '~[_%[]~' , '[\0]' , $X )) : " = " . unconvert_field ( $p [ $y ], q ( $X )))); if ( $x == " sql " && preg_match ( '~char|text~' , $p [ $y ][ " type " ]) && preg_match ( " ~[^ -@]~ " , $X )) $H [] = " $e = " . q ( $X ) . " COLLATE " . charset ( $g ) . " _bin " ;} foreach (( array ) $Z [ " null " ] as $y ) $H [] = escape_key ( $y ) . " IS NULL " ; return
implode ( " AND " , $H );} function
where_check ( $X , $p = array ()){ parse_str ( $X , $db ); remove_slashes ( array ( & $db )); return
where ( $db , $p );} function
where_link ( $s , $e , $Y , $uf = " = " ){ return " &where%5B $s %5D%5Bcol%5D= " . urlencode ( $e ) . " &where%5B $s %5D%5Bop%5D= " . urlencode (( $Y !== null ? $uf : " IS NULL " )) . " &where%5B $s %5D%5Bval%5D= " . urlencode ( $Y );} function
convert_fields ( $f , $p , $K = array ()){ $H = " " ; foreach ( $f
as $y => $X ){ if ( $K &&! in_array ( idf_escape ( $y ), $K )) continue ; $Ga = convert_field ( $p [ $y ]); if ( $Ga ) $H .= " , $Ga AS " . idf_escape ( $y );} return $H ;} function
cookie ( $B , $Y , $ve = 2592000 ){ global $ba ; return
header ( " Set-Cookie: $B = " . 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 ( $bd = false ){ $Pi = ini_bool ( " session.use_cookies " ); if ( ! $Pi || $bd ){ session_write_close (); if ( $Pi &&@ ini_set ( " session.use_cookies " , false ) === false ) session_start ();}} function & get_session ( $y ){ return $_SESSION [ $y ][ DRIVER ][ SERVER ][ $_GET [ " username " ]];} function
set_session ( $y , $X ){ $_SESSION [ $y ][ DRIVER ][ SERVER ][ $_GET [ " username " ]] = $X ;} function
auth_url ( $Xi , $M , $V , $l = null ){ global $ec ; preg_match ( '~([^?]*)\??(.*)~' , remove_from_uri ( implode ( " | " , array_keys ( $ec )) . " |username| " . ( $l !== null ? " db| " : " " ) . session_name ()), $A ); return " $A[1] ? " . ( sid () ? SID . " & " : " " ) . ( $Xi != " server " || $M != " " ? urlencode ( $Xi ) . " = " . urlencode ( $M ) . " & " : " " ) . " username= " . urlencode ( $V ) . ( $l != " " ? " &db= " . urlencode ( $l ) : " " ) . ( $A [ 2 ] ? " & $A[2] " : " " );} function
is_ajax (){ return ( $_SERVER [ " HTTP_X_REQUESTED_WITH " ] == " XMLHttpRequest " );} function
redirect ( $xe , $Le = null ){ if ( $Le !== null ){ restart_session (); $_SESSION [ " messages " ][ preg_replace ( '~^[^?]*~' , '' ,( $xe !== null ? $xe : $_SERVER [ " REQUEST_URI " ]))][] = $Le ;} if ( $xe !== null ){ if ( $xe == " " ) $xe = " . " ; header ( " Location: $xe " ); exit ;}} function
query_redirect ( $F , $xe , $Le , $Bg = true , $Cc = true , $Nc = false , $ei = " " ){ global $g , $n , $b ; if ( $Cc ){ $Dh = microtime ( true ); $Nc =! $g -> query ( $F ); $ei = format_time ( $Dh );} $zh = " " ; if ( $F ) $zh = $b -> messageQuery ( $F , $ei , $Nc ); if ( $Nc ){ $n = error () . $zh . script ( " messagesPrint(); " ); return
false ;} if ( $Bg ) redirect ( $xe , $Le . $zh ); return
true ;} function
queries ( $F ){ global $g ; static $vg = array (); static $Dh ; if ( ! $Dh ) $Dh = microtime ( true ); if ( $F === null ) return
array ( implode ( " \n " , $vg ), format_time ( $Dh )); $vg [] = ( preg_match ( '~;$~' , $F ) ? " DELIMITER ;; \n $F ; \n DELIMITER " : $F ) . " ; " ; return $g -> query ( $F );} function
apply_queries ( $F , $S , $zc = 'table' ){ foreach ( $S
as $Q ){ if ( ! queries ( " $F " . $zc ( $Q ))) return
false ;} return
true ;} function
queries_redirect ( $xe , $Le , $Bg ){ list ( $vg , $ei ) = queries ( null ); return
query_redirect ( $vg , $xe , $Le , $Bg , false , ! $Bg , $ei );} function
format_time ( $Dh ){ return
sprintf ( '%.3f s' , max ( 0 , microtime ( true ) - $Dh ));} function
remove_from_uri ( $Nf = " " ){ return
substr ( preg_replace ( " ~(?<=[?&])( $Nf " . ( SID ? " " : " | " . session_name ()) . " )=[^&]*&~ " , '' , " $_SERVER[REQUEST_URI] & " ), 0 , - 1 );} function
pagination ( $D , $Kb ){ return " " . ( $D == $Kb ? $D + 1 : '<a href="' . h ( remove_from_uri ( " page " ) . ( $D ? " &page= $D " . ( $_GET [ " next " ] ? " &next= " . urlencode ( $_GET [ " next " ]) : " " ) : " " )) . '">' . ( $D + 1 ) . " </a> " );} function
get_file ( $y , $Sb = false ){ $Tc = $_FILES [ $y ]; if ( ! $Tc ) return
null ; foreach ( $Tc
as $y => $X ) $Tc [ $y ] = ( array ) $X ; $H = '' ; foreach ( $Tc [ " error " ] as $y => $n ){ if ( $n ) return $n ; $B = $Tc [ " name " ][ $y ]; $mi = $Tc [ " tmp_name " ][ $y ]; $_b = file_get_contents ( $Sb && preg_match ( '~\.gz$~' , $B ) ? " compress.zlib:// $mi " : $mi ); if ( $Sb ){ $Dh = substr ( $_b , 0 , 3 ); if ( function_exists ( " iconv " ) && preg_match ( " ~^ \xFE \xFF |^ \xFF \xFE ~ " , $Dh , $Hg )) $_b = iconv ( " utf-16 " , " utf-8 " , $_b ); elseif ( $Dh == " \xEF \xBB \xBF " ) $_b = substr ( $_b , 3 ); $H .= $_b . " \n \n " ;} else $H .= $_b ;} return $H ;} function
upload_error ( $n ){ $Ie = ( $n == UPLOAD_ERR_INI_SIZE ? ini_get ( " upload_max_filesize " ) : 0 ); return ( $n ? 'Unable to upload a file.' . ( $Ie ? " " . sprintf ( 'Maximum allowed file size is %sB.' , $Ie ) : " " ) : 'File does not exist.' );} function
repeat_pattern ( $ag , $te ){ return
str_repeat ( " $ag { 0,65535} " , $te / 65535 ) . " $ag { 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 , $Kh = " " ){ if ( ! preg_match ( " (^( " . repeat_pattern ( " [ \t \r \n - \ x { 10FFFF}] " , $te ) . " )( $ )?)u " , $P , $A )) preg_match ( " (^( " . repeat_pattern ( " [ \t \r \n -~] " , $te ) . " )( $ )?) " , $P , $A ); return
2019-12-08 10:11:37 +00:00
h ( $A [ 1 ]) . $Kh . ( isset ( $A [ 2 ]) ? " " : " <i>…</i> " );} function
2019-12-08 06:56:36 +00: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
2019-12-28 19:48:41 +00:00
hidden_fields ( $qg , $Fd = array ()){ $H = false ; foreach ( $qg as $y => $x ){ if ( ! in_array ( $y , $Fd )){ if ( is_array ( $X )){ foreach ( $X
2019-12-08 06:56:36 +00:00
as $de => $W ) $qg [ $y . " [ $de ] " ] = $W ;} else { $H = true ; echo '<input type="hidden" name="' . h ( $y ) . '" value="' . h ( $X ) . '">' ;}}} return $H ;} 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 , $Oc = false ){ $H = table_status ( $Q , $Oc ); return ( $H ? $H : array ( " Name " => $Q ));} function
column_foreign_keys ( $Q ){ global $b ; $H = array (); foreach ( $b -> foreignKeys ( $Q ) as $q ){ foreach ( $q [ " source " ] as $X ) $H [ $X ][] = $q ;} return $H ;} function
enum_input ( $T , $Ja , $o , $Y , $tc = null ){ global $b ; preg_match_all ( " ~'((?:[^']|'')*)'~ " , $o [ " length " ], $De ); $H = ( $tc !== null ? " <label><input type=' $T ' $Ja value=' $tc ' " . (( is_array ( $Y ) ? in_array ( $tc , $Y ) : $Y === 0 ) ? " checked " : " " ) . " ><i> " . 'empty' . " </i></label> " : " " ); foreach ( $De [ 1 ] as $s => $X ){ $X = stripcslashes ( str_replace ( " '' " , " ' " , $X )); $fb = ( is_int ( $Y ) ? $Y == $s + 1 : ( is_array ( $Y ) ? in_array ( $s + 1 , $Y ) : $Y === $X )); $H .= " <label><input type=' $T ' $Ja value=' " . ( $s + 1 ) . " ' " . ( $fb ? ' checked' : '' ) . '>' . h ( $b -> editVal ( $X , $o )) . '</label>' ;} return $H ;} function
input ( $o , $Y , $r ){ global $U , $b , $x ; $B = h ( bracket_escape ( $o [ " field " ])); echo " <td class='function'> " ; if ( is_array ( $Y ) &&! $r ){ $Ea = array ( $Y ); if ( version_compare ( PHP_VERSION , 5.4 ) >= 0 ) $Ea [] = JSON_PRETTY_PRINT ; $Y = call_user_func_array ( 'json_encode' , $Ea ); $r = " json " ;} $Lg = ( $x == " mssql " && $o [ " auto_increment " ]); if ( $Lg &&! $_POST [ " save " ]) $r = null ; $kd = ( isset ( $_GET [ " select " ]) || $Lg ? array ( " orig " => 'original' ) : array ()) + $b -> editFunctions ( $o ); $Ja = " name='fields[ $B ]' " ; if ( $o [ " type " ] == " enum " ) echo
h ( $kd [ " " ]) . " <td> " . $b -> editInput ( $_GET [ " edit " ], $o , $Ja , $Y ); else { $ud = ( in_array ( $r , $kd ) || isset ( $kd [ $r ])); echo ( count ( $kd ) > 1 ? " <select name='function[ $B ]'> " . optionlist ( $kd , $r === null || $ud ? $r : " " ) . " </select> " . on_help ( " getTarget(event).value.replace(/^SQL \$ /, '') " , 1 ) . script ( " qsl('select').onchange = functionChange; " , " " ) : h ( reset ( $kd ))) . '<td>' ; $Sd = $b -> editInput ( $_GET [ " edit " ], $o , $Ja , $Y ); if ( $Sd != " " ) echo $Sd ; elseif ( preg_match ( '~bool~' , $o [ " type " ])) echo " <input type='hidden' $Ja value='0'> " . " <input type='checkbox' " . ( preg_match ( '~^(1|t|true|y|yes|on)$~i' , $Y ) ? " checked='checked' " : " " ) . " $Ja value='1'> " ; elseif ( $o [ " type " ] == " set " ){ preg_match_all ( " ~'((?:[^']|'')*)'~ " , $o [ " length " ], $De ); foreach ( $De [ 1 ] as $s => $X ){ $X = stripcslashes ( str_replace ( " '' " , " ' " , $X )); $fb = ( is_int ( $Y ) ? ( $Y >> $s ) & 1 : in_array ( $X , explode ( " , " , $Y ), true )); echo " <label><input type='checkbox' name='fields[ $B ][ $s ]' value=' " . ( 1 << $s ) . " ' " . ( $fb ? ' 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- $B '> " ; elseif (( $ci = preg_match ( '~text|lob|memo~i' , $o [ " type " ])) || preg_match ( " ~ \n ~ " , $Y )){ if ( $ci && $x != " sqlite " ) $Ja .= " cols='50' rows='12' " ; else { $J = min ( 12 , substr_count ( $Y , " \n " ) + 1 ); $Ja .= " cols='30' rows=' $J ' " . ( $J == 1 ? " style='height: 1.2em;' " : " " );} echo " <textarea $Ja > " . h ( $Y ) . '</textarea>' ;} elseif ( $r == " json " || preg_match ( '~^jsonb?$~' , $o [ " type " ])) echo " <textarea $Ja cols='50' rows='12' class='jush-js'> " . h ( $Y ) . '</textarea>' ; else { $Ke = ( ! preg_match ( '~int~' , $o [ " type " ]) && preg_match ( '~^(\d+)(,(\d+))?$~' , $o [ " length " ], $A ) ? (( preg_match ( " ~binary~ " , $o [ " type " ]) ? 2 : 1 ) * $A [ 1 ] + ( $A [ 3 ] ? 1 : 0 ) + ( $A [ 2 ] &&! $o [ " unsigned " ] ? 1 : 0 )) : ( $U [ $o [ " type " ]] ? $U [ $o [ " type " ]] + ( $o [ " unsigned " ] ? 0 : 1 ) : 0 )); if ( $x == 'sql' && min_version ( 5.6 ) && preg_match ( '~time~' , $o [ " type " ])) $Ke += 7 ; echo " <input " . (( ! $ud || $r === " " ) && preg_match ( '~(?<!o)int(?!er)~' , $o [ " type " ]) &&! preg_match ( '~\[\]~' , $o [ " full_type " ]) ? " type='number' " : " " ) . " value=' " . h ( $Y ) . " ' " . ( $Ke ? " data-maxlength=' $Ke ' " : " " ) . ( preg_match ( '~char|binary~' , $o [ " type " ]) && $Ke > 20 ? " size='40' " : " " ) . " $Ja > " ;} echo $b -> editHint ( $_GET [ " edit " ], $o , $Y ); $Wc = 0 ; foreach ( $kd
as $y => $X ){ if ( $y === " " ||! $X ) break ; $Wc ++ ;} if ( $Wc ) echo
script ( " mixin(qsl('td'), { onchange: partial(skipOriginal, $Wc ), oninput: function () { this.onchange(); }}); " );}} function
process_input ( $o ){ global $b , $m ; $u = bracket_escape ( $o [ " field " ]); $r = $_POST [ " function " ][ $u ]; $Y = $_POST [ " fields " ][ $u ]; if ( $o [ " type " ] == " enum " ){ if ( $Y ==- 1 ) return
false ; if ( $Y == " " ) return " NULL " ; return + $Y ;} if ( $o [ " auto_increment " ] && $Y == " " ) return
null ; if ( $r == " orig " ) return ( preg_match ( '~^CURRENT_TIMESTAMP~i' , $o [ " on_update " ]) ? idf_escape ( $o [ " field " ]) : false ); if ( $r == " NULL " ) return " NULL " ; if ( $o [ " type " ] == " set " ) return
array_sum (( array ) $Y ); if ( $r == " json " ){ $r = " " ; $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 " )){ $Tc = get_file ( " fields- $u " ); if ( ! is_string ( $Tc )) return
false ; return $m -> quoteBinary ( $Tc );} return $b -> processInput ( $o , $Y , $r );} function
fields_from_edit (){ global $m ; $H = array (); foreach (( array ) $_POST [ " field_keys " ] as $y => $X ){ if ( $X != " " ){ $X = bracket_escape ( $X ); $_POST [ " function " ][ $X ] = $_POST [ " field_funs " ][ $y ]; $_POST [ " fields " ][ $X ] = $_POST [ " field_vals " ][ $y ];}} foreach (( array ) $_POST [ " fields " ] as $y => $X ){ $B = bracket_escape ( $y , 1 ); $H [ $B ] = array ( " field " => $B , " privileges " => array ( " insert " => 1 , " update " => 1 ), " null " => 1 , " auto_increment " => ( $y == $m -> primary ),);} return $H ;} function
search_tables (){ global $b , $g ; $_GET [ " where " ][ 0 ][ " val " ] = $_POST [ " query " ]; $ih = " <ul> \n " ; foreach ( table_status ( '' , true ) as $Q => $R ){ $B = $b -> tableName ( $R ); if ( isset ( $R [ " Engine " ]) && $B != " " && ( ! $_POST [ " tables " ] || in_array ( $Q , $_POST [ " tables " ]))){ $G = $g -> query ( " SELECT " . limit ( " 1 FROM " . table ( $Q ), " WHERE " . implode ( " AND " , $b -> selectSearchProcess ( fields ( $Q ), array ())), 1 )); if ( ! $G || $G -> 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 " ])) . " '> $B </a> " ; echo " $ih <li> " . ( $G ? $mg : " <p class='error'> $mg : " . error ()) . " \n " ; $ih = " " ;}}} echo ( $ih ? " <p class='message'> " . 'No tables.' : " </ul> " ) . " \n " ;} function
dump_headers ( $Cd , $Ue = false ){ global $b ; $H = $b -> dumpHeaders ( $Cd , $Ue ); $Kf = $_POST [ " output " ]; if ( $Kf != " text " ) header ( " Content-Disposition: attachment; filename= " . $b -> dumpFilename ( $Cd ) . " . $H " . ( $Kf != " file " &&! preg_match ( '~[^0-9a-z]~' , $Kf ) ? " . $Kf " : " " )); session_write_close (); ob_flush (); flush (); return $H ;} function
dump_csv ( $I ){ foreach ( $I
as $y => $X ){ if ( preg_match ( " ~[ \" \n ,; \t ]~ " , $X ) || $X === " " ) $I [ $y ] = '"' . str_replace ( '"' , '""' , $X ) . '"' ;} echo
implode (( $_POST [ " format " ] == " csv " ? " , " : ( $_POST [ " format " ] == " tsv " ? " \t " : " ; " )), $I ) . " \r \n " ;} function
apply_sql_function ( $r , $e ){ return ( $r ? ( $r == " unixepoch " ? " DATETIME( $e , ' $r ') " : ( $r == " count distinct " ? " COUNT(DISTINCT " : strtoupper ( " $r ( " )) . " $e ) " ) : $e );} function
get_temp_dir (){ $H = ini_get ( " upload_tmp_dir " ); if ( ! $H ){ if ( function_exists ( 'sys_get_temp_dir' )) $H = sys_get_temp_dir (); else { $Uc =@ tempnam ( " " , " " ); if ( ! $Uc ) return
false ; $H = dirname ( $Uc ); unlink ( $Uc );}} return $H ;} function
file_open_lock ( $Uc ){ $id =@ fopen ( $Uc , " r+ " ); if ( ! $id ){ $id =@ fopen ( $Uc , " w " ); if ( ! $id ) return ; chmod ( $Uc , 0660 );} flock ( $id , LOCK_EX ); return $id ;} function
file_write_unlock ( $id , $Mb ){ rewind ( $id ); fwrite ( $id , $Mb ); ftruncate ( $id , strlen ( $Mb )); flock ( $id , LOCK_UN ); fclose ( $id );} function
password_file ( $i ){ $Uc = get_temp_dir () . " /adminer.key " ; $H =@ file_get_contents ( $Uc ); if ( $H ||! $i ) return $H ; $id =@ fopen ( $Uc , " w " ); if ( $id ){ chmod ( $Uc , 0660 ); $H = rand_string (); fwrite ( $id , $H ); fclose ( $id );} return $H ;} function
rand_string (){ return
md5 ( uniqid ( mt_rand (), true ));} function
select_value ( $X , $_ , $o , $di ){ global $b ; if ( is_array ( $X )){ $H = " " ; foreach ( $X
as $de => $W ) $H .= " <tr> " . ( $X != array_values ( $X ) ? " <th> " . h ( $de ) : " " ) . " <td> " . select_value ( $W , $_ , $o , $di ); return " <table cellspacing='0'> $H </table> " ;} if ( ! $_ ) $_ = $b -> selectLink ( $X , $o ); if ( $_ === null ){ if ( is_mail ( $X )) $_ = " mailto: $X " ; if ( is_url ( $X )) $_ = $X ;} $H = $b -> editVal ( $X , $o ); if ( $H !== null ){ if ( ! is_utf8 ( $H )) $H = " \0 " ; elseif ( $di != " " && is_shortable ( $o )) $H = shorten_utf8 ( $H , max ( 0 , + $di )); else $H = h ( $H );} return $b -> selectVal ( $H , $_ , $o , $X );} function
is_mail ( $qc ){ $Ha = '[-a-z0-9!#$%&\'*+/=?^_`{|}~]' ; $dc = '[a-z0-9]([-a-z0-9]{0,61}[a-z0-9])' ; $ag = " $Ha +( \\ . $Ha +)*@( $dc ? \\ .)+ $dc " ; return
is_string ( $qc ) && preg_match ( " (^ $ag (, \\ s* $ag )* \$ )i " , $qc );} function
is_url ( $P ){ $dc = '[a-z0-9]([-a-z0-9]{0,61}[a-z0-9])' ; return
preg_match ( " ~^(https?)://( $dc ? \\ .)+ $dc (: \\ 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 , $Yd , $nd ){ global $x ; $F = " FROM " . table ( $Q ) . ( $Z ? " WHERE " . implode ( " AND " , $Z ) : " " ); return ( $Yd && ( $x == " sql " || count ( $nd ) == 1 ) ? " SELECT COUNT(DISTINCT " . implode ( " , " , $nd ) . " ) $F " : " SELECT COUNT(*) " . ( $Yd ? " FROM (SELECT 1 $F GROUP BY " . implode ( " , " , $nd ) . " ) x " : $F ));} function
slow_query ( $F ){ global $b , $oi , $m ; $l = $b -> database (); $fi = $b -> queryTimeout (); $th = $m -> slowQuery ( $F , $fi ); if ( ! $th && 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=' , $oi , ' \ ' );
}, ',1000*$fi,' );
</ script >
' ;} else $h = null ; ob_flush (); flush (); $H =@ get_key_vals (( $th ? $th : $F ), $h , false ); if ( $h ){ echo
script ( " clearTimeout(timeout); " ); ob_flush (); flush ();} return $H ;} function
get_token (){ $yg = rand ( 1 , 1e6 ); return ( $yg ^ $_SESSION [ " token " ]) . " : $yg " ;} function
verify_token (){ list ( $oi , $yg ) = explode ( " : " , $_POST [ " token " ]); return ( $yg ^ $_SESSION [ " token " ]) == $oi ;} function
lzw_decompress ( $Sa ){ $ac = 256 ; $Ta = 8 ; $mb = array (); $Ng = 0 ; $Og = 0 ; for ( $s = 0 ; $s < strlen ( $Sa ); $s ++ ){ $Ng = ( $Ng << 8 ) + ord ( $Sa [ $s ]); $Og += 8 ; if ( $Og >= $Ta ){ $Og -= $Ta ; $mb [] = $Ng >> $Og ; $Ng &= ( 1 << $Og ) - 1 ; $ac ++ ; if ( $ac >> $Ta ) $Ta ++ ;}} $Zb = range ( " \0 " , " \xFF " ); $H = " " ; foreach ( $mb
as $s => $lb ){ $pc = $Zb [ $lb ]; if ( ! isset ( $pc )) $pc = $mj . $mj [ 0 ]; $H .= $pc ; if ( $s ) $Zb [] = $mj . $pc [ 0 ]; $mj = $pc ;} return $H ;} function
on_help ( $sb , $qh = 0 ){ return
script ( " mixin(qsl('select, input'), { onmouseover: function (event) { helpMouseover.call(this, event, $sb , $qh ) }, onmouseout: helpMouseout}); " , " " );} function
edit_form ( $a , $p , $I , $Ji ){ global $b , $x , $oi , $n ; $Ph = $b -> tableName ( table_status1 ( $a , true )); page_header (( $Ji ? 'Edit' : 'Insert' ), $n , array ( " select " => array ( $a , $Ph )), $Ph ); if ( $I === 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
2019-12-08 10:11:37 +00:00
as $B => $o ){ echo " <tr><th> " . $b -> fieldName ( $o ); $Tb = $_GET [ " set " ][ bracket_escape ( $B )]; if ( $Tb === null ){ $Tb = $o [ " default " ]; if ( $o [ " type " ] == " bit " && preg_match ( " ~^b'([01]*)' \$ ~ " , $Tb , $Hg )) $Tb = $Hg [ 1 ];} $Y = ( $I !== null ? ( $I [ $B ] != " " && $x == " sql " && preg_match ( " ~enum|set~ " , $o [ " type " ]) ? ( is_array ( $I [ $B ]) ? array_sum ( $I [ $B ]) :+ $I [ $B ]) : $I [ $B ]) : ( ! $Ji && $o [ " auto_increment " ] ? " " : ( isset ( $_GET [ " select " ]) ? false : $Tb ))); if ( ! $_POST [ " save " ] && is_string ( $Y )) $Y = $b -> editVal ( $Y , $o ); $r = ( $_POST [ " save " ] ? ( string ) $_POST [ " function " ][ $B ] : ( $Ji && preg_match ( '~^CURRENT_TIMESTAMP~i' , $o [ " on_update " ]) ? " now " : ( $Y === false ? null : ( $Y !== null ? '' : 'NULL' )))); if ( preg_match ( " ~time~ " , $o [ " type " ]) && preg_match ( '~^CURRENT_TIMESTAMP~i' , $Y )){ $Y = " " ; $r = " now " ;} input ( $o , $Y , $r ); 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=' " . ( $Ji ? 'Save and continue edit' : 'Save and insert next' ) . " ' title='Ctrl+Shift+Enter'> \n " ,( $Ji ? script ( " qsl('input').onclick = function () { return !ajaxForm(this.form, ' " . 'Saving' . " …', this); }; " ) : " " );}} echo ( $Ji ? " <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 " ]), ' " >
2019-12-08 06:56:36 +00:00
< input type = " hidden " name = " save " value = " 1 " >
< input type = " hidden " name = " token " value = " ', $oi ,' " >
</ 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
2019-12-08 10:11:37 +00: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> QV<51> t/8<> c8<63> \$ \0 <04> <> <EFBFBD> <EFBFBD> R V<> I8<49> RW<52> <18> <> \n <EFBFBD> <EFBFBD> v<EFBFBD> <EFBFBD> yC<EFBFBD> <EFBFBD> -<2D> 5F<35> <46> <EFBFBD> iQ0<51> <30> _<EFBFBD> IE<49> sIR !<21> <> <EFBFBD> X k<> <04> z @<40> <> `<60> <05> <> D<EFBFBD> `D V!C<> 8<EFBFBD> <38> \r <EFBFBD> <EFBFBD> <EFBFBD> b<EFBFBD> 3<EFBFBD> !3<> @<40> 33N}<7D> ZB<5A> 3F.H}<7D> 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> ^<5E> <> <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> KF5<46> <35> <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 cMt<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> cr 8<> <38> =K 7tV<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> h<EFBFBD> <68> <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<> ߀
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> }
2019-12-08 06:56:36 +00:00
get_lang (){ return 'en' ;} function
lang ( $ti , $hf = null ){ if ( is_array ( $ti )){ $eg = ( $hf == 1 ? 0 : 1 ); $ti = $ti [ $eg ];} $ti = str_replace ( " %d " , " %s " , $ti ); $hf = format_number ( $hf ); return
sprintf ( $ti , $hf );} if ( extension_loaded ( 'pdo' )){ class
Min_PDO
extends
PDO { var $_result , $server_info , $affected_rows , $errno , $error ; function
__construct (){ global $b ; $eg = array_search ( " SQL " , $b -> operators ); if ( $eg !== false ) unset ( $b -> operators [ $eg ]);} function
dsn ( $jc , $V , $E , $yf = array ()){ try { parent :: __construct ( $jc , $V , $E , $yf );} catch ( Exception $Ac ){ auth_error ( h ( $Ac -> getMessage ()));} $this -> setAttribute ( 13 , array ( 'Min_PDOStatement' )); $this -> server_info =@ $this -> getAttribute ( 4 );} function
query ( $F , $Ci = false ){ $G = parent :: query ( $F ); $this -> error = " " ; if ( ! $G ){ list (, $this -> errno , $this -> error ) = $this -> errorInfo (); if ( ! $this -> error ) $this -> error = 'Unknown error.' ; return
false ;} $this -> store_result ( $G ); return $G ;} function
multi_query ( $F ){ return $this -> _result = $this -> query ( $F );} function
store_result ( $G = null ){ if ( ! $G ){ $G = $this -> _result ; if ( ! $G ) return
false ;} if ( $G -> columnCount ()){ $G -> num_rows = $G -> rowCount (); return $G ;} $this -> affected_rows = $G -> rowCount (); return
true ;} function
next_result (){ if ( ! $this -> _result ) return
false ; $this -> _result -> _offset = 0 ; return @ $this -> _result -> nextRowset ();} function
result ( $F , $o = 0 ){ $G = $this -> query ( $F ); if ( ! $G ) return
false ; $I = $G -> fetch (); return $I [ $o ];}} class
Min_PDOStatement
extends
PDOStatement { var $_offset = 0 , $num_rows ; function
fetch_assoc (){ return $this -> fetch ( 2 );} function
fetch_row (){ return $this -> fetch ( 3 );} function
fetch_field (){ $I = ( object ) $this -> getColumnMeta ( $this -> _offset ++ ); $I -> orgtable = $I -> table ; $I -> orgname = $I -> name ; $I -> charsetnr = ( in_array ( " blob " ,( array ) $I -> flags ) ? 63 : 0 ); return $I ;}}} $ec = array (); class
Min_SQL { var $_conn ; function
__construct ( $g ){ $this -> _conn = $g ;} function
select ( $Q , $K , $Z , $nd , $_f = array (), $z = 1 , $D = 0 , $mg = false ){ global $b , $x ; $Yd = ( count ( $nd ) < count ( $K )); $F = $b -> selectQueryBuild ( $K , $Z , $nd , $_f , $z , $D ); if ( ! $F ) $F = " SELECT " . limit (( $_GET [ " page " ] != " last " && $z != " " && $nd && $Yd && $x == " sql " ? " SQL_CALC_FOUND_ROWS " : " " ) . implode ( " , " , $K ) . " \n FROM " . table ( $Q ),( $Z ? " \n WHERE " . implode ( " AND " , $Z ) : " " ) . ( $nd && $Yd ? " \n GROUP BY " . implode ( " , " , $nd ) : " " ) . ( $_f ? " \n ORDER BY " . implode ( " , " , $_f ) : " " ),( $z != " " ? + $z : null ),( $D ? $z * $D : 0 ), " \n " ); $Dh = microtime ( true ); $H = $this -> _conn -> query ( $F ); if ( $mg ) echo $b -> selectQuery ( $F , $Dh , ! $H ); return $H ;} function
delete ( $Q , $wg , $z = 0 ){ $F = " FROM " . table ( $Q ); return
queries ( " DELETE " . ( $z ? limit1 ( $Q , $F , $wg ) : " $F $wg " ));} function
update ( $Q , $N , $wg , $z = 0 , $L = " \n " ){ $Vi = array (); foreach ( $N
as $y => $X ) $Vi [] = " $y = $X " ; $F = table ( $Q ) . " SET $L " . implode ( " , $L " , $Vi ); return
queries ( " UPDATE " . ( $z ? limit1 ( $Q , $F , $wg , $L ) : " $F $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 , $J , $kg ){ return
false ;} function
begin (){ return
queries ( " BEGIN " );} function
commit (){ return
queries ( " COMMIT " );} function
rollback (){ return
queries ( " ROLLBACK " );} function
slowQuery ( $F , $fi ){} function
convertSearch ( $u , $X , $o ){ return $u ;} 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 ( $Yg ){ return
q ( $Yg );} function
warnings (){ return '' ;} function
tableHelp ( $B ){}} $ec [ " sqlite " ] = " SQLite 3 " ; $ec [ " sqlite2 " ] = " SQLite 2 " ; if ( isset ( $_GET [ " sqlite " ]) || isset ( $_GET [ " sqlite2 " ])){ $hg = array (( isset ( $_GET [ " sqlite " ]) ? " SQLite3 " : " SQLite " ), " PDO_SQLite " ); 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 ( $Uc ){ $this -> _link = new
SQLite3 ( $Uc ); $Yi = $this -> _link -> version (); $this -> server_info = $Yi [ " versionString " ];} function
query ( $F ){ $G =@ $this -> _link -> query ( $F ); $this -> error = " " ; if ( ! $G ){ $this -> errno = $this -> _link -> lastErrorCode (); $this -> error = $this -> _link -> lastErrorMsg (); return
false ;} elseif ( $G -> numColumns ()) return
new
Min_Result ( $G ); $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 ( $F , $o = 0 ){ $G = $this -> query ( $F ); if ( ! is_object ( $G )) return
false ; $I = $G -> _result -> fetchArray (); return $I [ $o ];}} class
Min_Result { var $_result , $_offset = 0 , $num_rows ; function
__construct ( $G ){ $this -> _result = $G ;} 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 ( $Uc ){ $this -> server_info = sqlite_libversion (); $this -> _link = new
SQLiteDatabase ( $Uc );} function
query ( $F , $Ci = false ){ $Re = ( $Ci ? " unbufferedQuery " : " query " ); $G =@ $this -> _link -> $Re ( $F , SQLITE_BOTH , $n ); $this -> error = " " ; if ( ! $G ){ $this -> error = $n ; return
false ;} elseif ( $G === true ){ $this -> affected_rows = $this -> changes (); return
true ;} return
new
Min_Result ( $G );} function
quote ( $P ){ return " ' " . sqlite_escape_string ( $P ) . " ' " ;} function
store_result (){ return $this -> _result ;} function
result ( $F , $o = 0 ){ $G = $this -> query ( $F ); if ( ! is_object ( $G )) return
false ; $I = $G -> _result -> fetch (); return $I [ $o ];}} class
Min_Result { var $_result , $_offset = 0 , $num_rows ; function
__construct ( $G ){ $this -> _result = $G ; if ( method_exists ( $G , 'numRows' )) $this -> num_rows = $G -> numRows ();} function
fetch_assoc (){ $I = $this -> _result -> fetch ( SQLITE_ASSOC ); if ( ! $I ) return
false ; $H = array (); foreach ( $I
as $y => $X ) $H [( $y [ 0 ] == '"' ? idf_unescape ( $y ) : $y )] = $X ; return $H ;} function
fetch_row (){ return $this -> _result -> fetch ( SQLITE_NUM );} function
fetch_field (){ $B = $this -> _result -> fieldName ( $this -> _offset ++ ); $ag = '(\[.*]|"(?:[^"]|"")*"|(.+))' ; if ( preg_match ( " ~^( $ag\\ .)? $ag\ $ ~ " , $B , $A )){ $Q = ( $A [ 3 ] != " " ? $A [ 3 ] : idf_unescape ( $A [ 2 ])); $B = ( $A [ 5 ] != " " ? $A [ 5 ] : idf_unescape ( $A [ 4 ]));} return ( object ) array ( " name " => $B , " orgname " => $B , " orgtable " => $Q ,);}}}} elseif ( extension_loaded ( " pdo_sqlite " )){ class
Min_SQLite
extends
Min_PDO { var $extension = " PDO_SQLite " ; function
__construct ( $Uc ){ $this -> dsn ( DRIVER . " : $Uc " , " " , " " );}}} 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 ( $Uc ){ if ( is_readable ( $Uc ) && $this -> query ( " ATTACH " . $this -> quote ( preg_match ( " ~(^[/ \\ \\ ]|:)~ " , $Uc ) ? $Uc : dirname ( $_SERVER [ " SCRIPT_FILENAME " ]) . " / $Uc " ) . " AS a " )){ parent :: __construct ( $Uc ); $this -> query ( " PRAGMA foreign_keys = 1 " ); return
true ;} return
false ;} function
multi_query ( $F ){ return $this -> _result = $this -> query ( $F );} function
next_result (){ return
false ;}}} class
Min_Driver
extends
Min_SQL { function
insertUpdate ( $Q , $J , $kg ){ $Vi = array (); foreach ( $J
as $N ) $Vi [] = " ( " . implode ( " , " , $N ) . " ) " ; return
queries ( " REPLACE INTO " . table ( $Q ) . " ( " . implode ( " , " , array_keys ( reset ( $J ))) . " ) VALUES \n " . implode ( " , \n " , $Vi ));} function
tableHelp ( $B ){ if ( $B == " sqlite_sequence " ) return " fileformat2.html#seqtab " ; if ( $B == " sqlite_master " ) return " fileformat2.html# $B " ;}} function
idf_escape ( $u ){ return '"' . str_replace ( '"' , '""' , $u ) . '"' ;} function
table ( $u ){ return
idf_escape ( $u );} function
connect (){ global $b ; list (,, $E ) = $b -> credentials (); if ( $E != " " ) return 'Database does not support password.' ; return
new
Min_DB ;} function
get_databases (){ return
array ();} function
limit ( $F , $Z , $z , $C = 0 , $L = " " ){ return " $F $Z " . ( $z !== null ? $L . " LIMIT $z " . ( $C ? " OFFSET $C " : " " ) : " " );} function
limit1 ( $Q , $F , $Z , $L = " \n " ){ global $g ; return ( preg_match ( '~^INTO~' , $F ) || $g -> result ( " SELECT sqlite_compileoption_used('ENABLE_UPDATE_DELETE_LIMIT') " ) ? limit ( $F , $Z , 1 , 0 , $L ) : " $F WHERE rowid = (SELECT rowid FROM " . table ( $Q ) . $Z . $L . " LIMIT 1) " );} function
db_collation ( $l , $pb ){ 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 ( $B = " " ){ global $g ; $H = 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') " . ( $B != " " ? " AND name = " . q ( $B ) : " ORDER BY name " )) as $I ){ $I [ " Rows " ] = $g -> result ( " SELECT COUNT(*) FROM " . idf_escape ( $I [ " Name " ])); $H [ $I [ " Name " ]] = $I ;} foreach ( get_rows ( " SELECT * FROM sqlite_sequence " , null , " " ) as $I ) $H [ $I [ " name " ]][ " Auto_increment " ] = $I [ " seq " ]; return ( $B != " " ? $H [ $B ] : $H );} 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 ; $H = array (); $kg = " " ; foreach ( get_rows ( " PRAGMA table_info( " . table ( $Q ) . " ) " ) as $I ){ $B = $I [ " name " ]; $T = strtolower ( $I [ " type " ]); $Tb = $I [ " dflt_value " ]; $H [ $B ] = array ( " field " => $B , " 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 ( " ~'(.*)'~ " , $Tb , $A ) ? str_replace ( " '' " , " ' " , $A [ 1 ]) : ( $Tb == " NULL " ? null : $Tb )), " null " =>! $I [ " notnull " ], " privileges " => array ( " select " => 1 , " insert " => 1 , " update " => 1 ), " primary " => $I [ " pk " ],); if ( $I [ " pk " ]){ if ( $kg != " " ) $H [ $kg ][ " auto_increment " ] = false ; elseif ( preg_match ( '~^integer$~i' , $T )) $H [ $B ][ " auto_increment " ] = true ; $kg = $B ;}} $zh = $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' , $zh , $De , PREG_SET_ORDER ); foreach ( $De
as $A ){ $B = str_replace ( '""' , '"' , preg_replace ( '~^"|"$~' , '' , $A [ 1 ])); if ( $H [ $B ]) $H [ $B ][ " collation " ] = trim ( $A [ 3 ], " ' " );} return $H ;} function
indexes ( $Q , $h = null ){ global $g ; if ( ! is_object ( $h )) $h = $g ; $H = array (); $zh = $h -> result ( " SELECT sql FROM sqlite_master WHERE type = 'table' AND name = " . q ( $Q )); if ( preg_match ( '~\bPRIMARY\s+KEY\s*\((([^)"]+|"[^"]*"|`[^`]*`)++)~i' , $zh , $A )){ $H [ " " ] = array ( " type " => " PRIMARY " , " columns " => array (), " lengths " => array (), " descs " => array ()); preg_match_all ( '~((("[^"]*+")+|(?:`[^`]*+`)+)|(\S+))(\s+(ASC|DESC))?(,\s*|$)~i' , $A [ 1 ], $De , PREG_SET_ORDER ); foreach ( $De
as $A ){ $H [ " " ][ " columns " ][] = idf_unescape ( $A [ 2 ]) . $A [ 4 ]; $H [ " " ][ " descs " ][] = ( preg_match ( '~DESC~i' , $A [ 5 ]) ? '1' : null );}} if ( ! $H ){ foreach ( fields ( $Q ) as $B => $o ){ if ( $o [ " primary " ]) $H [ " " ] = array ( " type " => " PRIMARY " , " columns " => array ( $B ), " lengths " => array (), " descs " => array ( null ));}} $Bh = 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 $I ){ $B = $I [ " name " ]; $v = array ( " type " => ( $I [ " unique " ] ? " UNIQUE " : " INDEX " )); $v [ " lengths " ] = array (); $v [ " descs " ] = array (); foreach ( get_rows ( " PRAGMA index_info( " . idf_escape ( $B ) . " ) " , $h ) as $Xg ){ $v [ " columns " ][] = $Xg [ " name " ]; $v [ " descs " ][] = null ;} if ( preg_match ( '~^CREATE( UNIQUE)? INDEX ' . preg_quote ( idf_escape ( $B ) . ' ON ' . idf_escape ( $Q ), '~' ) . ' \((.*)\)$~i' , $Bh [ $B ], $Hg )){ preg_match_all ( '/("[^"]*+")+( DESC)?/' , $Hg [ 2 ], $De ); foreach ( $De [ 2 ] as $y => $X ){ if ( $X ) $v [ " descs " ][ $y ] = '1' ;}} if ( ! $H [ " " ] || $v [ " type " ] != " UNIQUE " || $v [ " columns " ] != $H [ " " ][ " columns " ] || $v [ " descs " ] != $H [ " " ][ " descs " ] ||! preg_match ( " ~^sqlite_~ " , $B )) $H [ $B ] = $v ;} return $H ;} function
foreign_keys ( $Q ){ $H = array (); foreach ( get_rows ( " PRAGMA foreign_key_list( " . table ( $Q ) . " ) " ) as $I ){ $q =& $H [ $I [ " id " ]]; if ( ! $q ) $q = $I ; $q [ " source " ][] = $I [ " from " ]; $q [ " target " ][] = $I [ " to " ];} return $H ;} function
view ( $B ){ global $g ; return
array ( " select " => preg_replace ( '~^(?:[^`"[]+|`[^`]*`|"[^"]*")* AS\s+~iU' , '' , $g -> result ( " SELECT sql FROM sqlite_master WHERE name = " . q ( $B ))));} 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 ( $B ){ global $g ; $Kc = " db|sdb|sqlite " ; if ( ! preg_match ( " ~^[^ \\ 0]* \\ .( $Kc ) \$ ~ " , $B )){ $g -> error = sprintf ( 'Please use one of the extensions %s.' , str_replace ( " | " , " , " , $Kc )); 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 { $_ = new
Min_SQLite ( $l );} catch ( Exception $Ac ){ $g -> error = $Ac -> getMessage (); return
false ;} $_ -> query ( 'PRAGMA encoding = "UTF-8"' ); $_ -> query ( 'CREATE TABLE adminer (i)' ); $_ -> 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 ( $B , $d ){ global $g ; if ( ! check_sqlite_name ( $B )) return
false ; $g -> __construct ( " :memory: " ); $g -> error = 'File exists.' ; return @ rename ( DB , $B );} function
auto_increment (){ return " PRIMARY KEY " . ( DRIVER == " sqlite " ? " AUTOINCREMENT " : " " );} function
alter_table ( $Q , $B , $p , $cd , $ub , $uc , $d , $Ma , $Uf ){ global $g ; $Oi = ( $Q == " " || $cd ); foreach ( $p
as $o ){ if ( $o [ 0 ] != " " ||! $o [ 1 ] || $o [ 2 ]){ $Oi = true ; break ;}} $c = array (); $If = array (); foreach ( $p
as $o ){ if ( $o [ 1 ]){ $c [] = ( $Oi ? $o [ 1 ] : " ADD " . implode ( $o [ 1 ])); if ( $o [ 0 ] != " " ) $If [ $o [ 0 ]] = $o [ 1 ][ 0 ];}} if ( ! $Oi ){ foreach ( $c
as $X ){ if ( ! queries ( " ALTER TABLE " . table ( $Q ) . " $X " )) return
false ;} if ( $Q != $B &&! queries ( " ALTER TABLE " . table ( $Q ) . " RENAME TO " . table ( $B ))) return
false ;} elseif ( ! recreate_table ( $Q , $B , $c , $If , $cd , $Ma )) return
false ; if ( $Ma ){ queries ( " BEGIN " ); queries ( " UPDATE sqlite_sequence SET seq = $Ma WHERE name = " . q ( $B )); if ( ! $g -> affected_rows ) queries ( " INSERT INTO sqlite_sequence (name, seq) VALUES ( " . q ( $B ) . " , $Ma ) " ); queries ( " COMMIT " );} return
true ;} function
recreate_table ( $Q , $B , $p , $If , $cd , $Ma , $w = array ()){ global $g ; if ( $Q != " " ){ if ( ! $p ){ foreach ( fields ( $Q ) as $y => $o ){ if ( $w ) $o [ " auto_increment " ] = 0 ; $p [] = process_field ( $o , $o ); $If [ $y ] = idf_escape ( $y );}} $lg = false ; foreach ( $p
as $o ){ if ( $o [ 6 ]) $lg = true ;} $hc = array (); foreach ( $w
as $y => $X ){ if ( $X [ 2 ] == " DROP " ){ $hc [ $X [ 1 ]] = true ; unset ( $w [ $y ]);}} foreach ( indexes ( $Q ) as $ge => $v ){ $f = array (); foreach ( $v [ " columns " ] as $y => $e ){ if ( ! $If [ $e ]) continue
2 ; $f [] = $If [ $e ] . ( $v [ " descs " ][ $y ] ? " DESC " : " " );} if ( ! $hc [ $ge ]){ if ( $v [ " type " ] != " PRIMARY " ||! $lg ) $w [] = array ( $v [ " type " ], $ge , $f );}} foreach ( $w
as $y => $X ){ if ( $X [ 0 ] == " PRIMARY " ){ unset ( $w [ $y ]); $cd [] = " PRIMARY KEY ( " . implode ( " , " , $X [ 2 ]) . " ) " ;}} foreach ( foreign_keys ( $Q ) as $ge => $q ){ foreach ( $q [ " source " ] as $y => $e ){ if ( ! $If [ $e ]) continue
2 ; $q [ " source " ][ $y ] = idf_unescape ( $If [ $e ]);} if ( ! isset ( $cd [ " $ge " ])) $cd [] = " " . format_foreign_key ( $q );} queries ( " BEGIN " );} foreach ( $p
as $y => $o ) $p [ $y ] = " " . implode ( $o ); $p = array_merge ( $p , array_filter ( $cd )); $Zh = ( $Q == $B ? " adminer_ $B " : $B ); if ( ! queries ( " CREATE TABLE " . table ( $Zh ) . " ( \n " . implode ( " , \n " , $p ) . " \n ) " )) return
false ; if ( $Q != " " ){ if ( $If &&! queries ( " INSERT INTO " . table ( $Zh ) . " ( " . implode ( " , " , $If ) . " ) SELECT " . implode ( " , " , array_map ( 'idf_escape' , array_keys ( $If ))) . " FROM " . table ( $Q ))) return
false ; $_i = array (); foreach ( triggers ( $Q ) as $yi => $gi ){ $xi = trigger ( $yi ); $_i [] = " CREATE TRIGGER " . idf_escape ( $yi ) . " " . implode ( " " , $gi ) . " ON " . table ( $B ) . " \n $xi[Statement] " ;} $Ma = $Ma ? 0 : $g -> result ( " SELECT seq FROM sqlite_sequence WHERE name = " . q ( $Q )); if ( ! queries ( " DROP TABLE " . table ( $Q )) || ( $Q == $B &&! queries ( " ALTER TABLE " . table ( $Zh ) . " RENAME TO " . table ( $B ))) ||! alter_indexes ( $B , $w )) return
false ; if ( $Ma ) queries ( " UPDATE sqlite_sequence SET seq = $Ma WHERE name = " . q ( $B )); foreach ( $_i
as $xi ){ if ( ! queries ( $xi )) return
false ;} queries ( " COMMIT " );} return
true ;} function
index_sql ( $Q , $T , $B , $f ){ return " CREATE $T " . ( $T != " INDEX " ? " INDEX " : " " ) . idf_escape ( $B != " " ? $B : 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 ( $aj ){ return
apply_queries ( " DROP VIEW " , $aj );} function
drop_tables ( $S ){ return
apply_queries ( " DROP TABLE " , $S );} function
move_tables ( $S , $aj , $Xh ){ return
false ;} function
trigger ( $B ){ global $g ; if ( $B == " " ) return
array ( " Statement " => " BEGIN \n \t ; \n END " ); $u = '(?:[^`"\s]+|`[^`]*`|"[^"]*")+' ; $zi = trigger_options (); preg_match ( " ~^CREATE \\ s+TRIGGER \\ s* $u\\s *( " . implode ( " | " , $zi [ " Timing " ]) . " ) \\ s+([a-z]+)(?: \\ s+OF \\ s+( $u ))? \\ s+ON \\ s* $u\\s *(?:FOR \\ s+EACH \\ s+ROW \\ s)?(.*)~is " , $g -> result ( " SELECT sql FROM sqlite_master WHERE type = 'trigger' AND name = " . q ( $B )), $A ); $jf = $A [ 3 ]; return
array ( " Timing " => strtoupper ( $A [ 1 ]), " Event " => strtoupper ( $A [ 2 ]) . ( $jf ? " OF " : " " ), " Of " => ( $jf [ 0 ] == '`' || $jf [ 0 ] == '"' ? idf_unescape ( $jf ) : $jf ), " Trigger " => $B , " Statement " => $A [ 4 ],);} function
triggers ( $Q ){ $H = array (); $zi = trigger_options (); foreach ( get_rows ( " SELECT * FROM sqlite_master WHERE type = 'trigger' AND tbl_name = " . q ( $Q )) as $I ){ preg_match ( '~^CREATE\s+TRIGGER\s*(?:[^`"\s]+|`[^`]*`|"[^"]*")+\s*(' . implode ( " | " , $zi [ " Timing " ]) . ')\s*(.*?)\s+ON\b~i' , $I [ " sql " ], $A ); $H [ $I [ " name " ]] = array ( $A [ 1 ], $A [ 2 ]);} return $H ;} 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 , $F ){ return $g -> query ( " EXPLAIN QUERY PLAN $F " );} function
found_rows ( $R , $Z ){} function
types (){ return
array ();} function
schemas (){ return
array ();} function
get_schema (){ return " " ;} function
set_schema ( $bh ){ return
true ;} function
create_sql ( $Q , $Ma , $Ih ){ global $g ; $H = $g -> result ( " SELECT sql FROM sqlite_master WHERE type IN ('table', 'view') AND name = " . q ( $Q )); foreach ( indexes ( $Q ) as $B => $v ){ if ( $B == '' ) continue ; $H .= " ; \n \n " . index_sql ( $Q , $v [ 'type' ], $B , " ( " . implode ( " , " , array_map ( 'idf_escape' , $v [ 'columns' ])) . " ) " );} return $H ;} 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 ; $H = 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 $y ) $H [ $y ] = $g -> result ( " PRAGMA $y " ); return $H ;} function
show_status (){ $H = array (); foreach ( get_vals ( " PRAGMA compile_options " ) as $xf ){ list ( $y , $X ) = explode ( " = " , $xf , 2 ); $H [ $y ] = $X ;} return $H ;} function
convert_field ( $o ){} function
unconvert_field ( $o , $H ){ return $H ;} function
support ( $Pc ){ return
preg_match ( '~^(columns|database|drop_col|dump|indexes|descidx|move_col|sql|status|table|trigger|variables|view|view_trigger)$~' , $Pc );} $x = " sqlite " ; $U = array ( " integer " => 0 , " real " => 0 , " numeric " => 0 , " text " => 0 , " blob " => 0 ); $Hh = array_keys ( $U ); $Ii = array (); $vf = array ( " = " , " < " , " > " , " <= " , " >= " , " != " , " LIKE " , " LIKE %% " , " IN " , " IS NULL " , " NOT LIKE " , " NOT IN " , " IS NOT NULL " , " SQL " ); $kd = array ( " hex " , " length " , " lower " , " round " , " unixepoch " , " upper " ); $qd = array ( " avg " , " count " , " count distinct " , " group_concat " , " max " , " min " , " sum " ); $mc = array ( array (), array ( " integer|real|numeric " => " +/- " , " text " => " || " ,));} $ec [ " pgsql " ] = " PostgreSQL " ; if ( isset ( $_GET [ " pgsql " ])){ $hg = array ( " PgSQL " , " PDO_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 ( $xc , $n ){ if ( ini_bool ( " html_errors " )) $n = html_entity_decode ( strip_tags ( $n )); $n = preg_replace ( '~^[^:]*: ~' , '' , $n ); $this -> error = $n ;} function
connect ( $M , $V , $E ){ global $b ; $l = $b -> database (); set_error_handler ( array ( $this , '_error' )); $this -> _string = " host=' " . str_replace ( " : " , " ' port=' " , addcslashes ( $M , " ' \\ " )) . " ' user=' " . addcslashes ( $V , " ' \\ " ) . " ' password=' " . addcslashes ( $E , " ' \\ " ) . " ' " ; $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 ){ $Yi = pg_version ( $this -> _link ); $this -> server_info = $Yi [ " 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 " ? 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 ; $H =@ pg_connect ( " $this->_string dbname=' " . addcslashes ( $j , " ' \\ " ) . " ' " , PGSQL_CONNECT_FORCE_NEW ); if ( $H ) $this -> _link = $H ; return $H ;} function
close (){ $this -> _link =@ pg_connect ( " $this->_string dbname='postgres' " );} function
query ( $F , $Ci = false ){ $G =@ pg_query ( $this -> _link , $F ); $this -> error = " " ; if ( ! $G ){ $this -> error = pg_last_error ( $this -> _link ); $H = false ;} elseif ( ! pg_num_fields ( $G )){ $this -> affected_rows = pg_affected_rows ( $G ); $H = true ;} else $H = new
Min_Result ( $G ); if ( $this -> timeout ){ $this -> timeout = 0 ; $this -> query ( " RESET statement_timeout " );} return $H ;} function
multi_query ( $F ){ return $this -> _result = $this -> query ( $F );} function
store_result (){ return $this -> _result ;} function
next_result (){ return
false ;} function
result ( $F , $o = 0 ){ $G = $this -> query ( $F ); if ( ! $G ||! $G -> num_rows ) return
false ; return
pg_fetch_result ( $G -> _result , 0 , $o );} function
warnings (){ return
h ( pg_last_notice ( $this -> _link ));}} class
Min_Result { var $_result , $_offset = 0 , $num_rows ; function
__construct ( $G ){ $this -> _result = $G ; $this -> num_rows = pg_num_rows ( $G );} function
fetch_assoc (){ return
pg_fetch_assoc ( $this -> _result );} function
fetch_row (){ return
pg_fetch_row ( $this -> _result );} function
fetch_field (){ $e = $this -> _offset ++ ; $H = new
stdClass ; if ( function_exists ( 'pg_field_table' )) $H -> orgtable = pg_field_table ( $this -> _result , $e ); $H -> name = pg_field_name ( $this -> _result , $e ); $H -> orgname = $H -> name ; $H -> type = pg_field_type ( $this -> _result , $e ); $H -> charsetnr = ( $H -> type == " bytea " ? 63 : 0 ); return $H ;} 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 , $E ){ global $b ; $l = $b -> database (); $P = " pgsql:host=' " . str_replace ( " : " , " ' port=' " , addcslashes ( $M , " ' \\ " )) . " ' options='-c client_encoding=utf8' " ; $this -> dsn ( " $P dbname=' " . ( $l != " " ? addcslashes ( $l , " ' \\ " ) : " postgres " ) . " ' " , $V , $E ); return
true ;} function
select_db ( $j ){ global $b ; return ( $b -> database () == $j );} function
quoteBinary ( $Yg ){ return
q ( $Yg );} function
query ( $F , $Ci = false ){ $H = parent :: query ( $F , $Ci ); if ( $this -> timeout ){ $this -> timeout = 0 ; parent :: query ( " RESET statement_timeout " );} return $H ;} function
warnings (){ return '' ;} function
close (){}}} class
Min_Driver
extends
Min_SQL { function
insertUpdate ( $Q , $J , $kg ){ global $g ; foreach ( $J
as $N ){ $Ji = array (); $Z = array (); foreach ( $N
as $y => $X ){ $Ji [] = " $y = $X " ; if ( isset ( $kg [ idf_unescape ( $y )])) $Z [] = " $y = $X " ;} if ( ! (( $Z && queries ( " UPDATE " . table ( $Q ) . " SET " . implode ( " , " , $Ji ) . " 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 ( $F , $fi ){ $this -> _conn -> query ( " SET statement_timeout = " . ( 1000 * $fi )); $this -> _conn -> timeout = 1000 * $fi ; return $F ;} function
convertSearch ( $u , $X , $o ){ return ( preg_match ( '~char|text' . ( ! preg_match ( '~LIKE~' , $X [ " op " ]) ? '|date|time(stamp)?|boolean|uuid|' . number_type () : '' ) . '~' , $o [ " type " ]) ? $u : " CAST( $u AS text) " );} function
quoteBinary ( $Yg ){ return $this -> _conn -> quoteBinary ( $Yg );} function
warnings (){ return $this -> _conn -> warnings ();} function
tableHelp ( $B ){ $we = array ( " information_schema " => " infoschema " , " pg_catalog " => " catalog " ,); $_ = $we [ $_GET [ " ns " ]]; if ( $_ ) return " $_ - " . str_replace ( " _ " , " - " , $B ) . " .html " ;}} function
idf_escape ( $u ){ return '"' . str_replace ( '"' , '""' , $u ) . '"' ;} function
table ( $u ){ return
idf_escape ( $u );} function
connect (){ global $b , $U , $Hh ; $g = new
Min_DB ; $Hb = $b -> credentials (); if ( $g -> connect ( $Hb [ 0 ], $Hb [ 1 ], $Hb [ 2 ])){ if ( min_version ( 9 , 0 , $g )){ $g -> query ( " SET application_name = 'Adminer' " ); if ( min_version ( 9.2 , 0 , $g )){ $Hh [ 'Strings' ][] = " json " ; $U [ " json " ] = 4294967295 ; if ( min_version ( 9.4 , 0 , $g )){ $Hh [ '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 ( $F , $Z , $z , $C = 0 , $L = " " ){ return " $F $Z " . ( $z !== null ? $L . " LIMIT $z " . ( $C ? " OFFSET $C " : " " ) : " " );} function
limit1 ( $Q , $F , $Z , $L = " \n " ){ return ( preg_match ( '~^INTO~' , $F ) ? limit ( $F , $Z , 1 , 0 , $L ) : " $F " . ( is_view ( table_status1 ( $Q )) ? $Z : " WHERE ctid = (SELECT ctid FROM " . table ( $Q ) . $Z . $L . " LIMIT 1) " ));} function
db_collation ( $l , $pb ){ global $g ; return $g -> result ( " SHOW LC_COLLATE " );} function
engines (){ return
array ();} function
logged_user (){ global $g ; return $g -> result ( " SELECT user " );} function
tables_list (){ $F = " SELECT table_name, table_type FROM information_schema.tables WHERE table_schema = current_schema() " ; if ( support ( 'materializedview' )) $F .= "
UNION ALL
SELECT matviewname , 'MATERIALIZED VIEW'
FROM pg_matviews
WHERE schemaname = current_schema () " ; $F .= "
ORDER BY 1 " ;return
get_key_vals ( $F );} function
count_tables ( $k ){ return
array ();} function
table_status ( $B = " " ){ $H = 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' )
" .( $B != " " ? " AND relname = " .q( $B ): " ORDER BY relname " ))as $I ) $H[$I["Name"] ]= $I ;return( $B != " " ? $H[$B] : $H );}function
is_view ( $R ){ return
in_array ( $R [ " Engine " ], array ( " view " , " materialized view " ));} function
fk_support ( $R ){ return
true ;} function
fields ( $Q ){ $H = array (); $Ca = array ( 'timestamp without time zone' => 'timestamp' , 'timestamp with time zone' => 'timestamptz' ,); $Dd = min_version ( 10 ) ? " (a.attidentity = 'd')::int " : '0' ; 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, $Dd AS identity
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 $I ) { preg_match('~([^([]+)( \ ((.*) \ ))?([a-z ]+)?(( \ [[0-9]*])*) $ ~', $I["full_type"] , $A );list(, $T , $te , $I["length"] , $wa , $Fa )= $A ; $I["length"] .= $Fa ; $eb = $T . $wa ;if(isset( $Ca[$eb] )) { $I [ " type " ] = $Ca [ $eb ]; $I [ " full_type " ] = $I [ " type " ] . $te . $Fa ; } else { $I [ " type " ] = $T ; $I [ " full_type " ] = $I [ " type " ] . $te . $wa . $Fa ; } if( $I['identity'] ) $I['default'] ='GENERATED BY DEFAULT AS IDENTITY'; $I["null"] =! $I["attnotnull"] ; $I["auto_increment"] = $I['identity'] ||preg_match('~^nextval \ (~i', $I["default"] ); $I["privileges"] =array( " insert " =>1, " select " =>1, " update " =>1);if(preg_match('~(.+)::[^)]+(.*)~', $I["default"] , $A )) $I["default"] =( $A[1] == " NULL " ?null:(( $A[1] [0]== " ' " ?idf_unescape( $A[1] ): $A[1] ). $A[2] )); $H[$I["field"] ]= $I ;}return $H ;}function
indexes ( $Q , $h = null ){ global $g ; if ( ! is_object ( $h )) $h = $g ; $H = array (); $Qh = $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 = $Qh 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 = $Qh AND ci.oid = i.indexrelid " , $h ) as $I ){ $Ig = $I [ " relname " ]; $H [ $Ig ][ " type " ] = ( $I [ " indispartial " ] ? " INDEX " : ( $I [ " indisprimary " ] ? " PRIMARY " : ( $I [ " indisunique " ] ? " UNIQUE " : " INDEX " ))); $H [ $Ig ][ " columns " ] = array (); foreach ( explode ( " " , $I [ " indkey " ]) as $Nd ) $H [ $Ig ][ " columns " ][] = $f [ $Nd ]; $H [ $Ig ][ " descs " ] = array (); foreach ( explode ( " " , $I [ " indoption " ]) as $Od ) $H [ $Ig ][ " descs " ][] = ( $Od & 1 ? '1' : null ); $H [ $Ig ][ " lengths " ] = array ();} return $H ;} function
foreign_keys ( $Q ){ global $qf ; $H = 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 $I ) { if(preg_match('~FOREIGN KEY \ s* \ ((.+) \ ) \ s*REFERENCES (.+) \ ((.+) \ )(.*) $ ~iA', $I['definition'] , $A )) { $I [ 'source' ] = array_map ( 'trim' , explode ( ',' , $A [ 1 ])); if ( preg_match ( '~^(("([^"]|"")+"|[^"]+)\.)?"?("([^"]|"")+"|[^"]+)$~' , $A [ 2 ], $Ce )){ $I [ 'ns' ] = str_replace ( '""' , '"' , preg_replace ( '~^"(.+)"$~' , '\1' , $Ce [ 2 ])); $I [ 'table' ] = str_replace ( '""' , '"' , preg_replace ( '~^"(.+)"$~' , '\1' , $Ce [ 4 ])); } $I['target'] =array_map('trim',explode(',', $A[3] )); $I['on_delete'] =(preg_match( " ~ ON DELETE ( $qf ) ~ " , $A[4] , $Ce )? $Ce[1] :'NO ACTION'); $I['on_update'] =(preg_match( " ~ ON UPDATE ( $qf ) ~ " , $A[4] , $Ce )? $Ce[1] :'NO ACTION'); $H[$I['conname'] ]= $I ;}}return $H ;}function
view ( $B ){ global $g ; return
array ( " select " => trim ( $g -> result ( " SELECT pg_get_viewdef( " . $g -> result ( " SELECT oid FROM pg_class WHERE relname = " . q ( $B )) . " ) " )));} function
collations (){ return
array ();} function
information_schema ( $l ){ return ( $l == " information_schema " );} function
error (){ global $g ; $H = h ( $g -> error ); if ( preg_match ( '~^(.*\n)?([^\n]*)\n( *)\^(\n.*)?$~s' , $H , $A )) $H = $A [ 1 ] . preg_replace ( '~((?:[^&]|&[^;]*;){' . strlen ( $A [ 3 ]) . '})(.*)~' , '\1<b>\2</b>' , $A [ 2 ]) . $A [ 4 ]; return
nl_br ( $H );} 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 ( $B , $d ){ return
queries ( " ALTER DATABASE " . idf_escape ( DB ) . " RENAME TO " . idf_escape ( $B ));} function
auto_increment (){ return " " ;} function
alter_table ( $Q , $B , $p , $cd , $ub , $uc , $d , $Ma , $Uf ){ $c = array (); $vg = array (); if ( $Q != " " && $Q != $B ) $vg [] = " ALTER TABLE " . table ( $Q ) . " RENAME TO " . table ( $B ); foreach ( $p
as $o ){ $e = idf_escape ( $o [ 0 ]); $X = $o [ 1 ]; if ( ! $X ) $c [] = " DROP $e " ; else { $Ui = $X [ 5 ]; unset ( $X [ 5 ]); if ( isset ( $X [ 6 ]) && $o [ 0 ] == " " ) $X [ 1 ] = ( $X [ 1 ] == " bigint " ? " big " : " " ) . " serial " ; if ( $o [ 0 ] == " " ) $c [] = ( $Q != " " ? " ADD " : " " ) . implode ( $X ); else { if ( $e != $X [ 0 ]) $vg [] = " ALTER TABLE " . table ( $B ) . " 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 ] != " " || $Ui != " " ) $vg [] = " COMMENT ON COLUMN " . table ( $B ) . " . $X[0] IS " . ( $Ui != " " ? substr ( $Ui , 9 ) : " '' " );}} $c = array_merge ( $c , $cd ); if ( $Q == " " ) array_unshift ( $vg , " CREATE TABLE " . table ( $B ) . " ( \n " . implode ( " , \n " , $c ) . " \n ) " ); elseif ( $c ) array_unshift ( $vg , " ALTER TABLE " . table ( $Q ) . " \n " . implode ( " , \n " , $c )); if ( $Q != " " || $ub != " " ) $vg [] = " COMMENT ON TABLE " . table ( $B ) . " IS " . q ( $ub ); if ( $Ma != " " ){} foreach ( $vg
as $F ){ if ( ! queries ( $F )) return
false ;} return
true ;} function
alter_indexes ( $Q , $c ){ $i = array (); $fc = 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 " ) $fc [] = 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 ( $fc ) array_unshift ( $vg , " DROP INDEX " . implode ( " , " , $fc )); foreach ( $vg
as $F ){ if ( ! queries ( $F )) return
false ;} return
true ;} function
truncate_tables ( $S ){ return
queries ( " TRUNCATE " . implode ( " , " , array_map ( 'table' , $S ))); return
true ;} function
drop_views ( $aj ){ return
drop_tables ( $aj );} 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 , $aj , $Xh ){ foreach ( array_merge ( $S , $aj ) as $Q ){ $O = table_status ( $Q ); if ( ! queries ( " ALTER " . strtoupper ( $O [ " Engine " ]) . " " . table ( $Q ) . " SET SCHEMA " . idf_escape ( $Xh ))) return
false ;} return
true ;} function
trigger ( $B , $Q = null ){ if ( $B == " " ) return
array ( " Statement " => " EXECUTE PROCEDURE () " ); if ( $Q === null ) $Q = $_GET [ 'trigger' ]; $J = get_rows ( 'SELECT t.trigger_name AS "Trigger", t.action_timing AS "Timing", (SELECT STRING_AGG(event_manipulation, \' OR \') FROM information_schema.triggers WHERE event_object_table = t.event_object_table AND trigger_name = t.trigger_name ) AS "Events", t.event_manipulation AS "Event", \'FOR EACH \' || t.action_orientation AS "Type", t.action_statement AS "Statement" FROM information_schema.triggers t WHERE t.event_object_table = ' . q ( $Q ) . ' AND t.trigger_name = ' . q ( $B )); return
reset ( $J );} function
triggers ( $Q ){ $H = array (); foreach ( get_rows ( " SELECT * FROM information_schema.triggers WHERE event_object_table = " . q ( $Q )) as $I ) $H [ $I [ " trigger_name " ]] = array ( $I [ " action_timing " ], $I [ " event_manipulation " ]); return $H ;} function
trigger_options (){ return
array ( " Timing " => array ( " BEFORE " , " AFTER " ), " Event " => array ( " INSERT " , " UPDATE " , " DELETE " ), " Type " => array ( " FOR EACH ROW " , " FOR EACH STATEMENT " ),);} function
routine ( $B , $T ){ $J = 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($B));$H=$J[0];$H["returns"]=array("type"=>$H["type_udt_name"]);$H["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($B).'
ORDER BY ordinal_position ' ); return $H ;} 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 ( $B , $I ){ $H = array (); foreach ( $I [ " fields " ] as $o ) $H [] = $o [ " type " ]; return
idf_escape ( $B ) . " ( " . implode ( " , " , $H ) . " ) " ;} function
last_id (){ return
0 ;} function
explain ( $g , $F ){ return $g -> query ( " EXPLAIN $F " );} 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 ) : " " )), $Hg )) return $Hg [ 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 ( $ah , $h = null ){ global $g , $U , $Hh ; if ( ! $h ) $h = $g ; $H = $h -> query ( " SET search_path TO " . idf_escape ( $ah )); foreach ( types () as $T ){ if ( ! isset ( $U [ $T ])){ $U [ $T ] = 0 ; $Hh [ 'User types' ][] = $T ;}} return $H ;} function
create_sql ( $Q , $Ma , $Ih ){ global $g ; $H = '' ; $Qg = array (); $kh = array (); $O = table_status ( $Q ); $p = fields ( $Q ); $w = indexes ( $Q ); ksort ( $w ); $Zc = foreign_keys ( $Q ); ksort ( $Zc ); if ( ! $O || empty ( $p )) return
false ; $H = " CREATE TABLE " . idf_escape ( $O [ 'nspname' ]) . " . " . idf_escape ( $O [ 'Name' ]) . " ( \n " ; foreach ( $p
as $Rc => $o ){ $Rf = idf_escape ( $o [ 'field' ]) . ' ' . $o [ 'full_type' ] . default_value ( $o ) . ( $o [ 'attnotnull' ] ? " NOT NULL " : " " ); $Qg [] = $Rf ; if ( preg_match ( '~nextval\(\'([^\']+)\'\)~' , $o [ 'default' ], $De )){ $jh = $De [ 1 ]; $yh = reset ( get_rows ( min_version ( 10 ) ? " SELECT *, cache_size AS cache_value FROM pg_sequences WHERE schemaname = current_schema() AND sequencename = " . q ( $jh ) : " SELECT * FROM $jh " )); $kh [] = ( $Ih == " DROP+CREATE " ? " DROP SEQUENCE IF EXISTS $jh ; \n " : " " ) . " CREATE SEQUENCE $jh INCREMENT $yh[increment_by] MINVALUE $yh[min_value] MAXVALUE $yh[max_value] START " . ( $Ma ? $yh [ 'last_value' ] : 1 ) . " CACHE $yh[cache_value] ; " ;}} if ( ! empty ( $kh )) $H = implode ( " \n \n " , $kh ) . " \n \n $H " ; foreach ( $w
as $Id => $v ){ switch ( $v [ 'type' ]){ case 'UNIQUE' : $Qg [] = " CONSTRAINT " . idf_escape ( $Id ) . " UNIQUE ( " . implode ( ', ' , array_map ( 'idf_escape' , $v [ 'columns' ])) . " ) " ; break ; case 'PRIMARY' : $Qg [] = " CONSTRAINT " . idf_escape ( $Id ) . " PRIMARY KEY ( " . implode ( ', ' , array_map ( 'idf_escape' , $v [ 'columns' ])) . " ) " ; break ;}} foreach ( $Zc
as $Yc => $Xc ) $Qg [] = " CONSTRAINT " . idf_escape ( $Yc ) . " $Xc[definition] " . ( $Xc [ 'deferrable' ] ? 'DEFERRABLE' : 'NOT DEFERRABLE' ); $H .= implode ( " , \n " , $Qg ) . " \n ) WITH (oids = " . ( $O [ 'Oid' ] ? 'true' : 'false' ) . " ); " ; foreach ( $w
as $Id => $v ){ if ( $v [ 'type' ] == 'INDEX' ){ $f = array (); foreach ( $v [ 'columns' ] as $y => $X ) $f [] = idf_escape ( $X ) . ( $v [ 'descs' ][ $y ] ? " DESC " : " " ); $H .= " \n \n CREATE INDEX " . idf_escape ( $Id ) . " ON " . idf_escape ( $O [ 'nspname' ]) . " . " . idf_escape ( $O [ 'Name' ]) . " USING btree ( " . implode ( ', ' , $f ) . " ); " ;}} if ( $O [ 'Comment' ]) $H .= " \n \n COMMENT ON TABLE " . idf_escape ( $O [ 'nspname' ]) . " . " . idf_escape ( $O [ 'Name' ]) . " IS " . q ( $O [ 'Comment' ]) . " ; " ; foreach ( $p
as $Rc => $o ){ if ( $o [ 'comment' ]) $H .= " \n \n COMMENT ON COLUMN " . idf_escape ( $O [ 'nspname' ]) . " . " . idf_escape ( $O [ 'Name' ]) . " . " . idf_escape ( $Rc ) . " IS " . q ( $o [ 'comment' ]) . " ; " ;} return
rtrim ( $H , ';' );} function
truncate_sql ( $Q ){ return " TRUNCATE " . table ( $Q );} function
trigger_sql ( $Q ){ $O = table_status ( $Q ); $H = " " ; foreach ( triggers ( $Q ) as $wi => $vi ){ $xi = trigger ( $wi , $O [ 'Name' ]); $H .= " \n CREATE TRIGGER " . idf_escape ( $xi [ 'Trigger' ]) . " $xi[Timing] $xi[Events] ON " . idf_escape ( $O [ " nspname " ]) . " . " . idf_escape ( $O [ 'Name' ]) . " $xi[Type] $xi[Statement] ;; \n " ;} return $H ;} 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 , $H ){ return $H ;} function
support ( $Pc ){ 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)$~' , $Pc );} 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 " );} $x = " pgsql " ; $U = array (); $Hh = 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 $y => $X ){ $U += $X ; $Hh [ $y ] = array_keys ( $X );} $Ii = array (); $vf = array ( " = " , " < " , " > " , " <= " , " >= " , " != " , " ~ " , " !~ " , " LIKE " , " LIKE %% " , " ILIKE " , " ILIKE %% " , " IN " , " IS NULL " , " NOT LIKE " , " NOT IN " , " IS NOT NULL " ); $kd = array ( " char_length " , " lower " , " round " , " to_hex " , " to_timestamp " , " upper " ); $qd = array ( " avg " , " count " , " count distinct " , " max " , " min " , " sum " ); $mc = array ( array ( " char " => " md5 " , " date|time " => " now " ,), array ( number_type () => " +/- " , " date|time " => " + interval/- interval " , " char|text " => " || " ,));} $ec [ " oracle " ] = " Oracle (beta) " ; if ( isset ( $_GET [ " oracle " ])){ $hg = array ( " OCI8 " , " PDO_OCI " ); define ( " DRIVER " , " oracle " ); if ( extension_loaded ( " oci8 " )){ class
Min_DB { var $extension = " oci8 " , $_link , $_result , $server_info , $affected_rows , $errno , $error ; function
_error ( $xc , $n ){ if ( ini_bool ( " html_errors " )) $n = html_entity_decode ( strip_tags ( $n )); $n = preg_replace ( '~^[^:]*: ~' , '' , $n ); $this -> error = $n ;} function
connect ( $M , $V , $E ){ $this -> _link =@ oci_new_connect ( $V , $E , $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 ){ return
true ;} function
query ( $F , $Ci = false ){ $G = oci_parse ( $this -> _link , $F ); $this -> error = " " ; if ( ! $G ){ $n = oci_error ( $this -> _link ); $this -> errno = $n [ " code " ]; $this -> error = $n [ " message " ]; return
false ;} set_error_handler ( array ( $this , '_error' )); $H =@ oci_execute ( $G ); restore_error_handler (); if ( $H ){ if ( oci_num_fields ( $G )) return
new
Min_Result ( $G ); $this -> affected_rows = oci_num_rows ( $G );} return $H ;} function
multi_query ( $F ){ return $this -> _result = $this -> query ( $F );} function
store_result (){ return $this -> _result ;} function
next_result (){ return
false ;} function
result ( $F , $o = 1 ){ $G = $this -> query ( $F ); if ( ! is_object ( $G ) ||! oci_fetch ( $G -> _result )) return
false ; return
oci_result ( $G -> _result , $o );}} class
Min_Result { var $_result , $_offset = 1 , $num_rows ; function
__construct ( $G ){ $this -> _result = $G ;} function
_convert ( $I ){ foreach (( array ) $I
as $y => $X ){ if ( is_a ( $X , 'OCI-Lob' )) $I [ $y ] = $X -> load ();} return $I ;} 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 ++ ; $H = new
stdClass ; $H -> name = oci_field_name ( $this -> _result , $e ); $H -> orgname = $H -> name ; $H -> type = oci_field_type ( $this -> _result , $e ); $H -> charsetnr = ( preg_match ( " ~raw|blob|bfile~ " , $H -> type ) ? 63 : 0 ); return $H ;} function
__destruct (){ oci_free_statement ( $this -> _result );}}} elseif ( extension_loaded ( " pdo_oci " )){ class
Min_DB
extends
Min_PDO { var $extension = " PDO_OCI " ; function
connect ( $M , $V , $E ){ $this -> dsn ( " oci:dbname=// $M ;charset=AL32UTF8 " , $V , $E ); return
true ;} function
select_db ( $j ){ return
true ;}}} class
Min_Driver
extends
Min_SQL { function
begin (){ return
true ;}} function
idf_escape ( $u ){ return '"' . str_replace ( '"' , '""' , $u ) . '"' ;} function
table ( $u ){ return
idf_escape ( $u );} function
connect (){ global $b ; $g = new
Min_DB ; $Hb = $b -> credentials (); if ( $g -> connect ( $Hb [ 0 ], $Hb [ 1 ], $Hb [ 2 ])) return $g ; return $g -> error ;} function
get_databases (){ return
get_vals ( " SELECT tablespace_name FROM user_tablespaces " );} function
limit ( $F , $Z , $z , $C = 0 , $L = " " ){ return ( $C ? " * FROM (SELECT t.*, rownum AS rnum FROM (SELECT $F $Z ) t WHERE rownum <= " . ( $z + $C ) . " ) WHERE rnum > $C " : ( $z !== null ? " * FROM (SELECT $F $Z ) WHERE rownum <= " . ( $z + $C ) : " $F $Z " ));} function
limit1 ( $Q , $F , $Z , $L = " \n " ){ return " $F $Z " ;} function
db_collation ( $l , $pb ){ 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
tables_list (){ return
get_key_vals ( " SELECT table_name, 'table' FROM all_tables WHERE tablespace_name = " . q ( DB ) . "
UNION SELECT view_name , 'view' FROM user_views
ORDER BY 1 " );}function
count_tables ( $k ){ return
array ();} function
table_status ( $B = " " ){ $H = array (); $ch = q ( $B ); 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 ( DB ) . ( $B != " " ? " AND table_name = $ch " : " " ) . "
UNION SELECT view_name , 'view' , 0 , 0 FROM user_views " .( $B != " " ? " WHERE view_name = $ch " : " " ). "
ORDER BY 1 " )as $I ) { if( $B != " " )return $I ; $H[$I["Name"] ]= $I ;}return $H ;}function
is_view ( $R ){ return $R [ " Engine " ] == " view " ;} function
fk_support ( $R ){ return
true ;} function
fields ( $Q ){ $H = array (); foreach ( get_rows ( " SELECT * FROM all_tab_columns WHERE table_name = " . q ( $Q ) . " ORDER BY column_id " ) as $I ){ $T = $I [ " DATA_TYPE " ]; $te = " $I[DATA_PRECISION] , $I[DATA_SCALE] " ; if ( $te == " , " ) $te = $I [ " DATA_LENGTH " ]; $H [ $I [ " COLUMN_NAME " ]] = array ( " field " => $I [ " COLUMN_NAME " ], " full_type " => $T . ( $te ? " ( $te ) " : " " ), " type " => strtolower ( $T ), " length " => $te , " default " => $I [ " DATA_DEFAULT " ], " null " => ( $I [ " NULLABLE " ] == " Y " ), " privileges " => array ( " insert " => 1 , " select " => 1 , " update " => 1 ),);} return $H ;} function
indexes ( $Q , $h = null ){ $H = array (); foreach ( get_rows ( " SELECT uic.*, uc.constraint_type
FROM user_ind_columns uic
LEFT JOIN user_constraints uc ON uic . index_name = uc . constraint_name AND uic . table_name = uc . table_name
WHERE uic . table_name = " .q( $Q ). "
ORDER BY uc . constraint_type , uic . column_position " , $h )as $I ) { $Id = $I [ " INDEX_NAME " ]; $H [ $Id ][ " type " ] = ( $I [ " CONSTRAINT_TYPE " ] == " P " ? " PRIMARY " : ( $I [ " CONSTRAINT_TYPE " ] == " U " ? " UNIQUE " : " INDEX " )); $H [ $Id ][ " columns " ][] = $I [ " COLUMN_NAME " ]; $H [ $Id ][ " lengths " ][] = ( $I [ " CHAR_LENGTH " ] && $I [ " CHAR_LENGTH " ] != $I [ " COLUMN_LENGTH " ] ? $I [ " CHAR_LENGTH " ] : null ); $H [ $Id ][ " descs " ][] = ( $I [ " DESCEND " ] ? '1' : null ); } return $H ;}function
view ( $B ){ $J = get_rows ( 'SELECT text "select" FROM user_views WHERE view_name = ' . q ( $B )); return
reset ( $J );} function
collations (){ return
array ();} function
information_schema ( $l ){ return
false ;} function
error (){ global $g ; return
h ( $g -> error );} function
explain ( $g , $F ){ $g -> query ( " EXPLAIN PLAN FOR $F " ); return $g -> query ( " SELECT * FROM plan_table " );} function
found_rows ( $R , $Z ){} function
alter_table ( $Q , $B , $p , $cd , $ub , $uc , $d , $Ma , $Uf ){ $c = $fc = 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] " ); if ( $X ) $c [] = ( $Q != " " ? ( $o [ 0 ] != " " ? " MODIFY ( " : " ADD ( " ) : " " ) . implode ( $X ) . ( $Q != " " ? " ) " : " " ); else $fc [] = idf_escape ( $o [ 0 ]);} if ( $Q == " " ) return
queries ( " CREATE TABLE " . table ( $B ) . " ( \n " . implode ( " , \n " , $c ) . " \n ) " ); return ( ! $c || queries ( " ALTER TABLE " . table ( $Q ) . " \n " . implode ( " \n " , $c ))) && ( ! $fc || queries ( " ALTER TABLE " . table ( $Q ) . " DROP ( " . implode ( " , " , $fc ) . " ) " )) && ( $Q == $B || queries ( " ALTER TABLE " . table ( $Q ) . " RENAME TO " . table ( $B )));} function
foreign_keys ( $Q ){ $H = array (); $F = " 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( $F )as $I ) $H[$I['NAME'] ]=array( " db " => $I['DEST_DB'] , " table " => $I['DEST_TABLE'] , " source " =>array( $I['SRC_COLUMN'] ), " target " =>array( $I['DEST_COLUMN'] ), " on_delete " => $I['ON_DELETE'] , " on_update " =>null,);return $H ;}function
truncate_tables ( $S ){ return
apply_queries ( " TRUNCATE TABLE " , $S );} function
drop_views ( $aj ){ return
apply_queries ( " DROP VIEW " , $aj );} function
drop_tables ( $S ){ return
apply_queries ( " DROP TABLE " , $S );} function
last_id (){ return
0 ;} function
schemas (){ return
get_vals ( " SELECT DISTINCT owner FROM dba_segments WHERE owner IN (SELECT username FROM dba_users WHERE default_tablespace NOT IN ('SYSTEM','SYSAUX')) " );} function
get_schema (){ global $g ; return $g -> result ( " SELECT sys_context('USERENV', 'SESSION_USER') FROM dual " );} function
set_schema ( $bh , $h = null ){ global $g ; if ( ! $h ) $h = $g ; return $h -> query ( " ALTER SESSION SET CURRENT_SCHEMA = " . idf_escape ( $bh ));} 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 (){ $J = get_rows ( 'SELECT * FROM v$instance' ); return
reset ( $J );} function
convert_field ( $o ){} function
unconvert_field ( $o , $H ){ return $H ;} function
support ( $Pc ){ return
preg_match ( '~^(columns|database|drop_col|indexes|descidx|processlist|scheme|sql|status|table|variables|view|view_trigger)$~' , $Pc );} $x = " oracle " ; $U = array (); $Hh = 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 $y => $X ){ $U += $X ; $Hh [ $y ] = array_keys ( $X );} $Ii = array (); $vf = array ( " = " , " < " , " > " , " <= " , " >= " , " != " , " LIKE " , " LIKE %% " , " IN " , " IS NULL " , " NOT LIKE " , " NOT REGEXP " , " NOT IN " , " IS NOT NULL " , " SQL " ); $kd = array ( " length " , " lower " , " round " , " upper " ); $qd = array ( " avg " , " count " , " count distinct " , " max " , " min " , " sum " ); $mc = array ( array ( " date " => " current_date " , " timestamp " => " current_timestamp " ,), array ( " number|float|double " => " +/- " , " date|timestamp " => " + interval/- interval " , " char|clob " => " || " ,));} $ec [ " mssql " ] = " MS SQL (beta) " ; if ( isset ( $_GET [ " mssql " ])){ $hg = array ( " SQLSRV " , " MSSQL " , " PDO_DBLIB " ); 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 , $E ){ global $b ; $l = $b -> database (); $yb = array ( " UID " => $V , " PWD " => $E , " CharacterSet " => " UTF-8 " ); if ( $l != " " ) $yb [ " Database " ] = $l ; $this -> _link =@ sqlsrv_connect ( preg_replace ( '~:~' , ',' , $M ), $yb ); if ( $this -> _link ){ $Pd = sqlsrv_server_info ( $this -> _link ); $this -> server_info = $Pd [ '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 ( $F , $Ci = false ){ $G = sqlsrv_query ( $this -> _link , $F ); $this -> error = " " ; if ( ! $G ){ $this -> _get_error (); return
false ;} return $this -> store_result ( $G );} function
multi_query ( $F ){ $this -> _result = sqlsrv_query ( $this -> _link , $F ); $this -> error = " " ; if ( ! $this -> _result ){ $this -> _get_error (); return
false ;} return
true ;} function
store_result ( $G = null ){ if ( ! $G ) $G = $this -> _result ; if ( ! $G ) return
false ; if ( sqlsrv_field_metadata ( $G )) return
new
Min_Result ( $G ); $this -> affected_rows = sqlsrv_rows_affected ( $G ); return
true ;} function
next_result (){ return $this -> _result ? sqlsrv_next_result ( $this -> _result ) : null ;} function
result ( $F , $o = 0 ){ $G = $this -> query ( $F ); if ( ! is_object ( $G )) return
false ; $I = $G -> fetch_row (); return $I [ $o ];}} class
Min_Result { var $_result , $_offset = 0 , $_fields , $num_rows ; function
__construct ( $G ){ $this -> _result = $G ;} function
_convert ( $I ){ foreach (( array ) $I
as $y => $X ){ if ( is_a ( $X , 'DateTime' )) $I [ $y ] = $X -> format ( " Y-m-d H:i:s " );} return $I ;} 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 ++ ]; $H = new
stdClass ; $H -> name = $o [ " Name " ]; $H -> orgname = $o [ " Name " ]; $H -> type = ( $o [ " Type " ] == 1 ? 254 : 0 ); return $H ;} function
seek ( $C ){ for ( $s = 0 ; $s < $C ; $s ++ ) 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 , $E ){ $this -> _link =@ mssql_connect ( $M , $V , $E ); if ( $this -> _link ){ $G = $this -> query ( " SELECT SERVERPROPERTY('ProductLevel'), SERVERPROPERTY('Edition') " ); if ( $G ){ $I = $G -> fetch_row (); $this -> server_info = $this -> result ( " sp_server_info 2 " , 2 ) . " [ $I[0] ] $I[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 ( $F , $Ci = false ){ $G =@ mssql_query ( $F , $this -> _link ); $this -> error = " " ; if ( ! $G ){ $this -> error = mssql_get_last_message (); return
false ;} if ( $G === true ){ $this -> affected_rows = mssql_rows_affected ( $this -> _link ); return
true ;} return
new
Min_Result ( $G );} function
multi_query ( $F ){ return $this -> _result = $this -> query ( $F );} function
store_result (){ return $this -> _result ;} function
next_result (){ return
mssql_next_result ( $this -> _result -> _result );} function
result ( $F , $o = 0 ){ $G = $this -> query ( $F ); if ( ! is_object ( $G )) return
false ; return
mssql_result ( $G -> _result , 0 , $o );}} class
Min_Result { var $_result , $_offset = 0 , $_fields , $num_rows ; function
__construct ( $G ){ $this -> _result = $G ; $this -> num_rows = mssql_num_rows ( $G );} 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 (){ $H = mssql_fetch_field ( $this -> _result ); $H -> orgtable = $H -> table ; $H -> orgname = $H -> name ; return $H ;} function
seek ( $C ){ mssql_data_seek ( $this -> _result , $C );} 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 , $E ){ $this -> dsn ( " dblib:charset=utf8;host= " . str_replace ( " : " , " ;unix_socket= " , preg_replace ( '~:(\d)~' , ';port=\1' , $M )), $V , $E ); return
true ;} function
select_db ( $j ){ return $this -> query ( " USE " . idf_escape ( $j ));}}} class
Min_Driver
extends
Min_SQL { function
insertUpdate ( $Q , $J , $kg ){ foreach ( $J
as $N ){ $Ji = array (); $Z = array (); foreach ( $N
as $y => $X ){ $Ji [] = " $y = $X " ; if ( isset ( $kg [ idf_unescape ( $y )])) $Z [] = " $y = $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 ( " , " , $Ji ) . " 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 ( $u ){ return " [ " . str_replace ( " ] " , " ]] " , $u ) . " ] " ;} function
table ( $u ){ return ( $_GET [ " ns " ] != " " ? idf_escape ( $_GET [ " ns " ]) . " . " : " " ) . idf_escape ( $u );} function
connect (){ global $b ; $g = new
Min_DB ; $Hb = $b -> credentials (); if ( $g -> connect ( $Hb [ 0 ], $Hb [ 1 ], $Hb [ 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 ( $F , $Z , $z , $C = 0 , $L = " " ){ return ( $z !== null ? " TOP ( " . ( $z + $C ) . " ) " : " " ) . " $F $Z " ;} function
limit1 ( $Q , $F , $Z , $L = " \n " ){ return
limit ( $F , $Z , 1 , 0 , $L );} function
db_collation ( $l , $pb ){ 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 ; $H = array (); foreach ( $k
as $l ){ $g -> select_db ( $l ); $H [ $l ] = $g -> result ( " SELECT COUNT(*) FROM INFORMATION_SCHEMA.TABLES " );} return $H ;} function
table_status ( $B = " " ){ $H = 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') " . ( $B != " " ? " AND name = " . q ( $B ) : " ORDER BY name " )) as $I ){ if ( $B != " " ) return $I ; $H [ $I [ " Name " ]] = $I ;} return $H ;} function
is_view ( $R ){ return $R [ " Engine " ] == " VIEW " ;} function
fk_support ( $R ){ return
true ;} function
fields ( $Q ){ $vb = get_key_vals ( " SELECT objname, cast(value as varchar) FROM fn_listextendedproperty('MS_DESCRIPTION', 'schema', " . q ( get_schema ()) . " , 'table', " . q ( $Q ) . " , 'column', NULL) " ); $H = 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 $I ) { $T = $I [ " type " ]; $te = ( preg_match ( " ~char|binary~ " , $T ) ? $I [ " max_length " ] : ( $T == " decimal " ? " $I[precision] , $I[scale] " : " " )); $H [ $I [ " name " ]] = array ( " field " => $I [ " name " ], " full_type " => $T . ( $te ? " ( $te ) " : " " ), " type " => $T , " length " => $te , " default " => $I [ " default " ], " null " => $I [ " is_nullable " ], " auto_increment " => $I [ " is_identity " ], " collation " => $I [ " collation_name " ], " privileges " => array ( " insert " => 1 , " select " => 1 , " update " => 1 ), " primary " => $I [ " is_identity " ], " comment " => $vb [ $I [ " name " ]],); } return $H ;}function
indexes ( $Q , $h = null ){ $H = 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 $I ) { $B = $I [ " name " ]; $H [ $B ][ " type " ] = ( $I [ " is_primary_key " ] ? " PRIMARY " : ( $I [ " is_unique " ] ? " UNIQUE " : " INDEX " )); $H [ $B ][ " lengths " ] = array (); $H [ $B ][ " columns " ][ $I [ " key_ordinal " ]] = $I [ " column_name " ]; $H [ $B ][ " descs " ][ $I [ " key_ordinal " ]] = ( $I [ " is_descending_key " ] ? '1' : null ); } return $H ;}function
view ( $B ){ 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 ( $B ))));} function
collations (){ $H = array (); foreach ( get_vals ( " SELECT name FROM fn_helpcollations() " ) as $d ) $H [ preg_replace ( '~_.*~' , '' , $d )][] = $d ; return $H ;} 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 ( $B , $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 ( $B )); return
true ;} function
auto_increment (){ return " IDENTITY " . ( $_POST [ " Auto_increment " ] != " " ? " ( " . number ( $_POST [ " Auto_increment " ]) . " ,1) " : " " ) . " PRIMARY KEY " ;} function
alter_table ( $Q , $B , $p , $cd , $ub , $uc , $d , $Ma , $Uf ){ $c = array (); $vb = 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 ]); $vb [ $o [ 0 ]] = $X [ 5 ]; unset ( $X [ 5 ]); if ( $o [ 0 ] == " " ) $c [ " ADD " ][] = " \n " . implode ( " " , $X ) . ( $Q == " " ? substr ( $cd [ $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 ( $B ) . " ( " . implode ( " , " ,( array ) $c [ " ADD " ]) . " \n ) " ); if ( $Q != $B ) queries ( " EXEC sp_rename " . q ( table ( $Q )) . " , " . q ( $B )); if ( $cd ) $c [ " " ] = $cd ; foreach ( $c
as $y => $X ){ if ( ! queries ( " ALTER TABLE " . idf_escape ( $B ) . " $y " . implode ( " , " , $X ))) return
false ;} foreach ( $vb
as $y => $X ){ $ub = substr ( $X , 9 ); queries ( " EXEC sp_dropextendedproperty @name = N'MS_Description', @level0type = N'Schema', @level0name = " . q ( get_schema ()) . " , @level1type = N'Table', @level1name = " . q ( $B ) . " , @level2type = N'Column', @level2name = " . q ( $y )); queries ( " EXEC sp_addextendedproperty @name = N'MS_Description', @value = " . $ub . " , @level0type = N'Schema', @level0name = " . q ( get_schema ()) . " , @level1type = N'Table', @level1name = " . q ( $B ) . " , @level2type = N'Column', @level2name = " . q ( $y ));} return
true ;} function
alter_indexes ( $Q , $c ){ $v = array (); $fc = array (); foreach ( $c
as $X ){ if ( $X [ 2 ] == " DROP " ){ if ( $X [ 0 ] == " PRIMARY " ) $fc [] = idf_escape ( $X [ 1 ]); else $v [] = 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 ( ! $v || queries ( " DROP INDEX " . implode ( " , " , $v ))) && ( ! $fc || queries ( " ALTER TABLE " . table ( $Q ) . " DROP " . implode ( " , " , $fc )));} function
last_id (){ global $g ; return $g -> result ( " SELECT SCOPE_IDENTITY() " );} function
explain ( $g , $F ){ $g -> query ( " SET SHOWPLAN_ALL ON " ); $H = $g -> query ( $F ); $g -> query ( " SET SHOWPLAN_ALL OFF " ); return $H ;} function
found_rows ( $R , $Z ){} function
foreign_keys ( $Q ){ $H = array (); foreach ( get_rows ( " EXEC sp_fkeys @fktable_name = " . q ( $Q )) as $I ){ $q =& $H [ $I [ " FK_NAME " ]]; $q [ " db " ] = $I [ " PKTABLE_QUALIFIER " ]; $q [ " table " ] = $I [ " PKTABLE_NAME " ]; $q [ " source " ][] = $I [ " FKCOLUMN_NAME " ]; $q [ " target " ][] = $I [ " PKCOLUMN_NAME " ];} return $H ;} function
truncate_tables ( $S ){ return
apply_queries ( " TRUNCATE TABLE " , $S );} function
drop_views ( $aj ){ return
queries ( " DROP VIEW " . implode ( " , " , array_map ( 'table' , $aj )));} function
drop_tables ( $S ){ return
queries ( " DROP TABLE " . implode ( " , " , array_map ( 'table' , $S )));} function
move_tables ( $S , $aj , $Xh ){ return
apply_queries ( " ALTER SCHEMA " . idf_escape ( $Xh ) . " TRANSFER " , array_merge ( $S , $aj ));} function
trigger ( $B ){ if ( $B == " " ) return
array (); $J = 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( $B )); $H =reset( $J );if( $H ) $H["Statement"] =preg_replace('~^.+ \ s+AS \ s+~isU','', $H["text"] );return $H ;}function
triggers ( $Q ){ $H = 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 $I ) $H[$I["name"] ]=array( $I["Timing"] , $I["Event"] );return $H ;}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 ( $ah ){ 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 , $H ){ return $H ;} function
support ( $Pc ){ return
preg_match ( '~^(comment|columns|database|drop_col|indexes|descidx|scheme|sql|table|trigger|view|view_trigger)$~' , $Pc );} $x = " mssql " ; $U = array (); $Hh = 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 $y => $X ){ $U += $X ; $Hh [ $y ] = array_keys ( $X );} $Ii = array (); $vf = array ( " = " , " < " , " > " , " <= " , " >= " , " != " , " LIKE " , " LIKE %% " , " IN " , " IS NULL " , " NOT LIKE " , " NOT IN " , " IS NOT NULL " ); $kd = array ( " len " , " lower " , " round " , " upper " ); $qd = array ( " avg " , " count " , " count distinct " , " max " , " min " , " sum " ); $mc = array ( array ( " date|time " => " getdate " ,), array ( " int|decimal|real|float|money|datetime " => " +/- " , " char|text " => " + " ,));} $ec [ 'firebird' ] = 'Firebird (alpha)' ; if ( isset ( $_GET [ " firebird " ])){ $hg = array ( " interbase " ); define ( " DRIVER " , " firebird " ); if ( extension_loaded ( " interbase " )){ class
Min_DB { var $extension = " Firebird " , $server_info , $affected_rows , $errno , $error , $_link , $_result ; function
connect ( $M , $V , $E ){ $this -> _link = ibase_connect ( $M , $V , $E ); if ( $this -> _link ){ $Mi = explode ( ':' , $M ); $this -> service_link = ibase_service_attach ( $Mi [ 0 ], $V , $E ); $this -> server_info = ibase_server_info ( $this -> service_link , IBASE_SVC_SERVER_VERSION );} else { $this -> errno = ibase_errcode (); $this -> error = ibase_errmsg ();} return ( bool ) $this -> _link ;} function
quote ( $P ){ return " ' " . str_replace ( " ' " , " '' " , $P ) . " ' " ;} function
select_db ( $j ){ return ( $j == " domain " );} function
query ( $F , $Ci = false ){ $G = ibase_query ( $F , $this -> _link ); if ( ! $G ){ $this -> errno = ibase_errcode (); $this -> error = ibase_errmsg (); return
false ;} $this -> error = " " ; if ( $G === true ){ $this -> affected_rows = ibase_affected_rows ( $this -> _link ); return
true ;} return
new
Min_Result ( $G );} function
multi_query ( $F ){ return $this -> _result = $this -> query ( $F );} function
store_result (){ return $this -> _result ;} function
next_result (){ return
false ;} function
result ( $F , $o = 0 ){ $G = $this -> query ( $F ); if ( ! $G ||! $G -> num_rows ) return
false ; $I = $G -> fetch_row (); return $I [ $o ];}} class
Min_Result { var $num_rows , $_result , $_offset = 0 ; function
__construct ( $G ){ $this -> _result = $G ;} function
fetch_assoc (){ return
ibase_fetch_assoc ( $this -> _result );} function
fetch_row (){ return
ibase_fetch_row ( $this -> _result );} function
fetch_field (){ $o = ibase_field_info ( $this -> _result , $this -> _offset ++ ); return ( object ) array ( 'name' => $o [ 'name' ], 'orgname' => $o [ 'name' ], 'type' => $o [ 'type' ], 'charsetnr' => $o [ 'length' ],);} function
__destruct (){ ibase_free_result ( $this -> _result );}}} class
Min_Driver
extends
Min_SQL {} function
idf_escape ( $u ){ return '"' . str_replace ( '"' , '""' , $u ) . '"' ;} function
table ( $u ){ return
idf_escape ( $u );} function
connect (){ global $b ; $g = new
Min_DB ; $Hb = $b -> credentials (); if ( $g -> connect ( $Hb [ 0 ], $Hb [ 1 ], $Hb [ 2 ])) return $g ; return $g -> error ;} function
get_databases ( $ad ){ return
array ( " domain " );} function
limit ( $F , $Z , $z , $C = 0 , $L = " " ){ $H = '' ; $H .= ( $z !== null ? $L . " FIRST $z " . ( $C ? " SKIP $C " : " " ) : " " ); $H .= " $F $Z " ; return $H ;} function
limit1 ( $Q , $F , $Z , $L = " \n " ){ return
limit ( $F , $Z , 1 , 0 , $L );} function
db_collation ( $l , $pb ){} function
engines (){ return
array ();} function
logged_user (){ global $b ; $Hb = $b -> credentials (); return $Hb [ 1 ];} function
tables_list (){ global $g ; $F = 'SELECT RDB$RELATION_NAME FROM rdb$relations WHERE rdb$system_flag = 0' ; $G = ibase_query ( $g -> _link , $F ); $H = array (); while ( $I = ibase_fetch_assoc ( $G )) $H [ $I [ 'RDB$RELATION_NAME' ]] = 'table' ; ksort ( $H ); return $H ;} function
count_tables ( $k ){ return
array ();} function
table_status ( $B = " " , $Oc = false ){ global $g ; $H = array (); $Mb = tables_list (); foreach ( $Mb
as $v => $X ){ $v = trim ( $v ); $H [ $v ] = array ( 'Name' => $v , 'Engine' => 'standard' ,); if ( $B == $v ) return $H [ $v ];} return $H ;} function
is_view ( $R ){ return
false ;} function
fk_support ( $R ){ return
preg_match ( '~InnoDB|IBMDB2I~i' , $R [ " Engine " ]);} function
fields ( $Q ){ global $g ; $H = array (); $F = ' SELECT r . RDB $FIELD_NAME AS field_name ,
r . RDB $DESCRIPTION AS field_description ,
r . RDB $DEFAULT_VALUE AS field_default_value ,
r . RDB $NULL_FLAG AS field_not_null_constraint ,
f . RDB $FIELD_LENGTH AS field_length ,
f . RDB $FIELD_PRECISION AS field_precision ,
f . RDB $FIELD_SCALE AS field_scale ,
CASE f . RDB $FIELD_TYPE
WHEN 261 THEN \ ' BLOB\ '
WHEN 14 THEN \ ' CHAR\ '
WHEN 40 THEN \ ' CSTRING\ '
WHEN 11 THEN \ ' D_FLOAT\ '
WHEN 27 THEN \ ' DOUBLE\ '
WHEN 10 THEN \ ' FLOAT\ '
WHEN 16 THEN \ ' INT64\ '
WHEN 8 THEN \ ' INTEGER\ '
WHEN 9 THEN \ ' QUAD\ '
WHEN 7 THEN \ ' SMALLINT\ '
WHEN 12 THEN \ ' DATE\ '
WHEN 13 THEN \ ' TIME\ '
WHEN 35 THEN \ ' TIMESTAMP\ '
WHEN 37 THEN \ ' VARCHAR\ '
ELSE \ ' UNKNOWN\ '
END AS field_type ,
f . RDB $FIELD_SUB_TYPE AS field_subtype ,
coll . RDB $COLLATION_NAME AS field_collation ,
cset . RDB $CHARACTER_SET_NAME AS field_charset
FROM RDB $RELATION_FIELDS r
LEFT JOIN RDB $FIELDS f ON r . RDB $FIELD_SOURCE = f . RDB $FIELD_NAME
LEFT JOIN RDB $COLLATIONS coll ON f . RDB $COLLATION_ID = coll . RDB $COLLATION_ID
LEFT JOIN RDB $CHARACTER_SETS cset ON f . RDB $CHARACTER_SET_ID = cset . RDB $CHARACTER_SET_ID
WHERE r . RDB $RELATION_NAME = '.q($Q).'
ORDER BY r . RDB $FIELD_POSITION ';$G=ibase_query($g->_link,$F);while($I=ibase_fetch_assoc($G))$H[trim($I[' FIELD_NAME '])]=array("field"=>trim($I["FIELD_NAME"]),"full_type"=>trim($I["FIELD_TYPE"]),"type"=>trim($I["FIELD_SUB_TYPE"]),"default"=>trim($I[' FIELD_DEFAULT_VALUE ']),"null"=>(trim($I["FIELD_NOT_NULL_CONSTRAINT"])=="YES"),"auto_increment"=>' 0 ' , " collation " => trim ( $I [ " FIELD_COLLATION " ]), " privileges " => array ( " insert " => 1 , " select " => 1 , " update " => 1 ), " comment " => trim ( $I [ " FIELD_DESCRIPTION " ]),); return $H ;} function
indexes ( $Q , $h = null ){ $H = array (); return $H ;} function
foreign_keys ( $Q ){ return
array ();} function
collations (){ return
array ();} function
information_schema ( $l ){ return
false ;} function
error (){ global $g ; return
h ( $g -> error );} function
types (){ return
array ();} function
schemas (){ return
array ();} function
get_schema (){ return " " ;} function
set_schema ( $ah ){ return
true ;} function
support ( $Pc ){ return
preg_match ( " ~^(columns|sql|status|table) $ ~ " , $Pc );} $x = " firebird " ; $vf = array ( " = " ); $kd = array (); $qd = array (); $mc = array ();} $ec [ " simpledb " ] = " SimpleDB " ; if ( isset ( $_GET [ " simpledb " ])){ $hg = array ( " SimpleXML + allow_url_fopen " ); define ( " DRIVER " , " simpledb " ); if ( class_exists ( 'SimpleXMLElement' ) && ini_bool ( 'allow_url_fopen' )){ class
Min_DB { var $extension = " SimpleXML " , $server_info = '2009-04-15' , $error , $timeout , $next , $affected_rows , $_result ; function
select_db ( $j ){ return ( $j == " domain " );} function
query ( $F , $Ci = false ){ $Of = array ( 'SelectExpression' => $F , 'ConsistentRead' => 'true' ); if ( $this -> next ) $Of [ 'NextToken' ] = $this -> next ; $G = sdb_request_all ( 'Select' , 'Item' , $Of , $this -> timeout ); $this -> timeout = 0 ; if ( $G === false ) return $G ; if ( preg_match ( '~^\s*SELECT\s+COUNT\(~i' , $F )){ $Lh = 0 ; foreach ( $G
as $be ) $Lh += $be -> Attribute -> Value ; $G = array (( object ) array ( 'Attribute' => array (( object ) array ( 'Name' => 'Count' , 'Value' => $Lh ,))));} return
new
Min_Result ( $G );} function
multi_query ( $F ){ return $this -> _result = $this -> query ( $F );} function
store_result (){ return $this -> _result ;} function
next_result (){ return
false ;} function
quote ( $P ){ return " ' " . str_replace ( " ' " , " '' " , $P ) . " ' " ;}} class
Min_Result { var $num_rows , $_rows = array (), $_offset = 0 ; function
__construct ( $G ){ foreach ( $G
as $be ){ $I = array (); if ( $be -> Name != '' ) $I [ 'itemName()' ] = ( string ) $be -> Name ; foreach ( $be -> Attribute
as $Ia ){ $B = $this -> _processValue ( $Ia -> Name ); $Y = $this -> _processValue ( $Ia -> Value ); if ( isset ( $I [ $B ])){ $I [ $B ] = ( array ) $I [ $B ]; $I [ $B ][] = $Y ;} else $I [ $B ] = $Y ;} $this -> _rows [] = $I ; foreach ( $I
as $y => $X ){ if ( ! isset ( $this -> _rows [ 0 ][ $y ])) $this -> _rows [ 0 ][ $y ] = null ;}} $this -> num_rows = count ( $this -> _rows );} function
_processValue ( $pc ){ return ( is_object ( $pc ) && $pc [ 'encoding' ] == 'base64' ? base64_decode ( $pc ) : ( string ) $pc );} function
fetch_assoc (){ $I = current ( $this -> _rows ); if ( ! $I ) return $I ; $H = array (); foreach ( $this -> _rows [ 0 ] as $y => $X ) $H [ $y ] = $I [ $y ]; next ( $this -> _rows ); return $H ;} function
fetch_row (){ $H = $this -> fetch_assoc (); if ( ! $H ) return $H ; return
array_values ( $H );} function
fetch_field (){ $he = array_keys ( $this -> _rows [ 0 ]); return ( object ) array ( 'name' => $he [ $this -> _offset ++ ]);}}} class
Min_Driver
extends
Min_SQL { public $kg = " itemName() " ; function
_chunkRequest ( $Ed , $va , $Of , $Ec = array ()){ global $g ; foreach ( array_chunk ( $Ed , 25 ) as $ib ){ $Pf = $Of ; foreach ( $ib
as $s => $t ){ $Pf [ " Item. $s .ItemName " ] = $t ; foreach ( $Ec
as $y => $X ) $Pf [ " Item. $s . $y " ] = $X ;} if ( ! sdb_request ( $va , $Pf )) return
false ;} $g -> affected_rows = count ( $Ed ); return
true ;} function
_extractIds ( $Q , $wg , $z ){ $H = array (); if ( preg_match_all ( " ~itemName \ ( \ ) = (('[^']*+')+)~ " , $wg , $De )) $H = array_map ( 'idf_unescape' , $De [ 1 ]); else { foreach ( sdb_request_all ( 'Select' , 'Item' , array ( 'SelectExpression' => 'SELECT itemName() FROM ' . table ( $Q ) . $wg . ( $z ? " LIMIT 1 " : " " ))) as $be ) $H [] = $be -> Name ;} return $H ;} function
select ( $Q , $K , $Z , $nd , $_f = array (), $z = 1 , $D = 0 , $mg = false ){ global $g ; $g -> next = $_GET [ " next " ]; $H = parent :: select ( $Q , $K , $Z , $nd , $_f , $z , $D , $mg ); $g -> next = 0 ; return $H ;} function
delete ( $Q , $wg , $z = 0 ){ return $this -> _chunkRequest ( $this -> _extractIds ( $Q , $wg , $z ), 'BatchDeleteAttributes' , array ( 'DomainName' => $Q ));} function
update ( $Q , $N , $wg , $z = 0 , $L = " \n " ){ $Vb = array (); $Td = array (); $s = 0 ; $Ed = $this -> _extractIds ( $Q , $wg , $z ); $t = idf_unescape ( $N [ " `itemName()` " ]); unset ( $N [ " `itemName()` " ]); foreach ( $N
as $y => $X ){ $y = idf_unescape ( $y ); if ( $X == " NULL " || ( $t != " " && array ( $t ) != $Ed )) $Vb [ " Attribute. " . count ( $Vb ) . " .Name " ] = $y ; if ( $X != " NULL " ){ foreach (( array ) $X
as $de => $W ){ $Td [ " Attribute. $s .Name " ] = $y ; $Td [ " Attribute. $s .Value " ] = ( is_array ( $X ) ? $W : idf_unescape ( $W )); if ( ! $de ) $Td [ " Attribute. $s .Replace " ] = " true " ; $s ++ ;}}} $Of = array ( 'DomainName' => $Q ); return ( ! $Td || $this -> _chunkRequest (( $t != " " ? array ( $t ) : $Ed ), 'BatchPutAttributes' , $Of , $Td )) && ( ! $Vb || $this -> _chunkRequest ( $Ed , 'BatchDeleteAttributes' , $Of , $Vb ));} function
insert ( $Q , $N ){ $Of = array ( " DomainName " => $Q ); $s = 0 ; foreach ( $N
as $B => $Y ){ if ( $Y != " NULL " ){ $B = idf_unescape ( $B ); if ( $B == " itemName() " ) $Of [ " ItemName " ] = idf_unescape ( $Y ); else { foreach (( array ) $Y
as $X ){ $Of [ " Attribute. $s .Name " ] = $B ; $Of [ " Attribute. $s .Value " ] = ( is_array ( $Y ) ? $X : idf_unescape ( $Y )); $s ++ ;}}}} return
sdb_request ( 'PutAttributes' , $Of );} function
insertUpdate ( $Q , $J , $kg ){ foreach ( $J
as $N ){ if ( ! $this -> update ( $Q , $N , " WHERE `itemName()` = " . q ( $N [ " `itemName()` " ]))) return
false ;} return
true ;} function
begin (){ return
false ;} function
commit (){ return
false ;} function
rollback (){ return
false ;} function
slowQuery ( $F , $fi ){ $this -> _conn -> timeout = $fi ; return $F ;}} function
connect (){ global $b ; list (,, $E ) = $b -> credentials (); if ( $E != " " ) return 'Database does not support password.' ; return
new
Min_DB ;} function
support ( $Pc ){ return
preg_match ( '~sql~' , $Pc );} function
logged_user (){ global $b ; $Hb = $b -> credentials (); return $Hb [ 1 ];} function
get_databases (){ return
array ( " domain " );} function
collations (){ return
array ();} function
db_collation ( $l , $pb ){} function
tables_list (){ global $g ; $H = array (); foreach ( sdb_request_all ( 'ListDomains' , 'DomainName' ) as $Q ) $H [( string ) $Q ] = 'table' ; if ( $g -> error && defined ( " PAGE_HEADER " )) echo " <p class='error'> " . error () . " \n " ; return $H ;} function
table_status ( $B = " " , $Oc = false ){ $H = array (); foreach (( $B != " " ? array ( $B => true ) : tables_list ()) as $Q => $T ){ $I = array ( " Name " => $Q , " Auto_increment " => " " ); if ( ! $Oc ){ $Qe = sdb_request ( 'DomainMetadata' , array ( 'DomainName' => $Q )); if ( $Qe ){ foreach ( array ( " Rows " => " ItemCount " , " Data_length " => " ItemNamesSizeBytes " , " Index_length " => " AttributeValuesSizeBytes " , " Data_free " => " AttributeNamesSizeBytes " ,) as $y => $X ) $I [ $y ] = ( string ) $Qe -> $X ;}} if ( $B != " " ) return $I ; $H [ $Q ] = $I ;} return $H ;} function
explain ( $g , $F ){} 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 ( " itemName() " )),);} function
fields ( $Q ){ return
fields_from_edit ();} function
foreign_keys ( $Q ){ return
array ();} function
table ( $u ){ return
idf_escape ( $u );} function
idf_escape ( $u ){ return " ` " . str_replace ( " ` " , " `` " , $u ) . " ` " ;} function
limit ( $F , $Z , $z , $C = 0 , $L = " " ){ return " $F $Z " . ( $z !== null ? $L . " LIMIT $z " : " " );} function
unconvert_field ( $o , $H ){ return $H ;} function
fk_support ( $R ){} function
engines (){ return
array ();} function
alter_table ( $Q , $B , $p , $cd , $ub , $uc , $d , $Ma , $Uf ){ return ( $Q == " " && sdb_request ( 'CreateDomain' , array ( 'DomainName' => $B )));} function
drop_tables ( $S ){ foreach ( $S
as $Q ){ if ( ! sdb_request ( 'DeleteDomain' , array ( 'DomainName' => $Q ))) return
false ;} return
true ;} function
count_tables ( $k ){ foreach ( $k
as $l ) return
array ( $l => count ( tables_list ()));} function
found_rows ( $R , $Z ){ return ( $Z ? null : $R [ " Rows " ]);} function
last_id (){} function
hmac ( $Ba , $Mb , $y , $_g = false ){ $Va = 64 ; if ( strlen ( $y ) > $Va ) $y = pack ( " H* " , $Ba ( $y )); $y = str_pad ( $y , $Va , " \0 " ); $ee = $y ^ str_repeat ( " \x36 " , $Va ); $fe = $y ^ str_repeat ( " \x5C " , $Va ); $H = $Ba ( $fe . pack ( " H* " , $Ba ( $ee . $Mb ))); if ( $_g ) $H = pack ( " H* " , $H ); return $H ;} function
sdb_request ( $va , $Of = array ()){ global $b , $g ; list ( $Ad , $Of [ 'AWSAccessKeyId' ], $dh ) = $b -> credentials (); $Of [ 'Action' ] = $va ; $Of [ 'Timestamp' ] = gmdate ( 'Y-m-d\TH:i:s+00:00' ); $Of [ 'Version' ] = '2009-04-15' ; $Of [ 'SignatureVersion' ] = 2 ; $Of [ 'SignatureMethod' ] = 'HmacSHA1' ; ksort ( $Of ); $F = '' ; foreach ( $Of
as $y => $X ) $F .= '&' . rawurlencode ( $y ) . '=' . rawurlencode ( $X ); $F = str_replace ( '%7E' , '~' , substr ( $F , 1 )); $F .= " &Signature= " . urlencode ( base64_encode ( hmac ( 'sha1' , " POST \n " . preg_replace ( '~^https?://~' , '' , $Ad ) . " \n / \n $F " , $dh , true ))); @ ini_set ( 'track_errors' , 1 ); $Tc =@ file_get_contents (( preg_match ( '~^https?://~' , $Ad ) ? $Ad : " http:// $Ad " ), false , stream_context_create ( array ( 'http' => array ( 'method' => 'POST' , 'content' => $F , 'ignore_errors' => 1 ,)))); if ( ! $Tc ){ $g -> error = $php_errormsg ; return
false ;} libxml_use_internal_errors ( true ); $nj = simplexml_load_string ( $Tc ); if ( ! $nj ){ $n = libxml_get_last_error (); $g -> error = $n -> message ; return
false ;} if ( $nj -> Errors ){ $n = $nj -> Errors -> Error ; $g -> error = " $n->Message ( $n->Code ) " ; return
false ;} $g -> error = '' ; $Wh = $va . " Result " ; return ( $nj -> $Wh ? $nj -> $Wh : true );} function
sdb_request_all ( $va , $Wh , $Of = array (), $fi = 0 ){ $H = array (); $Dh = ( $fi ? microtime ( true ) : 0 ); $z = ( preg_match ( '~LIMIT\s+(\d+)\s*$~i' , $Of [ 'SelectExpression' ], $A ) ? $A [ 1 ] : 0 ); do { $nj = sdb_request ( $va , $Of ); if ( ! $nj ) break ; foreach ( $nj -> $Wh
as $pc ) $H [] = $pc ; if ( $z && count ( $H ) >= $z ){ $_GET [ " next " ] = $nj -> NextToken ; break ;} if ( $fi && microtime ( true ) - $Dh > $fi ) return
false ; $Of [ 'NextToken' ] = $nj -> NextToken ; if ( $z ) $Of [ 'SelectExpression' ] = preg_replace ( '~\d+\s*$~' , $z - count ( $H ), $Of [ 'SelectExpression' ]);} while ( $nj -> NextToken ); return $H ;} $x = " simpledb " ; $vf = array ( " = " , " < " , " > " , " <= " , " >= " , " != " , " LIKE " , " LIKE %% " , " IN " , " IS NULL " , " NOT LIKE " , " IS NOT NULL " ); $kd = array (); $qd = array ( " count " ); $mc = array ( array ( " json " ));} $ec [ " mongo " ] = " MongoDB " ; if ( isset ( $_GET [ " mongo " ])){ $hg = array ( " mongo " , " mongodb " ); define ( " DRIVER " , " mongo " ); if ( class_exists ( 'MongoDB' )){ class
Min_DB { var $extension = " Mongo " , $server_info = MongoClient :: VERSION , $error , $last_id , $_link , $_db ; function
connect ( $Ki , $yf ){ return @ new
MongoClient ( $Ki , $yf );} function
query ( $F ){ return
false ;} function
select_db ( $j ){ try { $this -> _db = $this -> _link -> selectDB ( $j ); return
true ;} catch ( Exception $Ac ){ $this -> error = $Ac -> getMessage (); return
false ;}} function
quote ( $P ){ return $P ;}} class
Min_Result { var $num_rows , $_rows = array (), $_offset = 0 , $_charset = array (); function
__construct ( $G ){ foreach ( $G
as $be ){ $I = array (); foreach ( $be
as $y => $X ){ if ( is_a ( $X , 'MongoBinData' )) $this -> _charset [ $y ] = 63 ; $I [ $y ] = ( is_a ( $X , 'MongoId' ) ? 'ObjectId("' . strval ( $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' ) ? strval ( $X ) : ( is_object ( $X ) ? get_class ( $X ) : $X )))));} $this -> _rows [] = $I ; foreach ( $I
as $y => $X ){ if ( ! isset ( $this -> _rows [ 0 ][ $y ])) $this -> _rows [ 0 ][ $y ] = null ;}} $this -> num_rows = count ( $this -> _rows );} function
fetch_assoc (){ $I = current ( $this -> _rows ); if ( ! $I ) return $I ; $H = array (); foreach ( $this -> _rows [ 0 ] as $y => $X ) $H [ $y ] = $I [ $y ]; next ( $this -> _rows ); return $H ;} function
fetch_row (){ $H = $this -> fetch_assoc (); if ( ! $H ) return $H ; return
array_values ( $H );} function
fetch_field (){ $he = array_keys ( $this -> _rows [ 0 ]); $B = $he [ $this -> _offset ++ ]; return ( object ) array ( 'name' => $B , 'charsetnr' => $this -> _charset [ $B ],);}} class
Min_Driver
extends
Min_SQL { public $kg = " _id " ; function
select ( $Q , $K , $Z , $nd , $_f = array (), $z = 1 , $D = 0 , $mg = false ){ $K = ( $K == array ( " * " ) ? array () : array_fill_keys ( $K , true )); $vh = array (); foreach ( $_f
as $X ){ $X = preg_replace ( '~ DESC$~' , '' , $X , 1 , $Eb ); $vh [ $X ] = ( $Eb ? - 1 : 1 );} return
new
Min_Result ( $this -> _conn -> _db -> selectCollection ( $Q ) -> find ( array (), $K ) -> sort ( $vh ) -> limit ( $z != " " ? + $z : 0 ) -> skip ( $D * $z ));} function
insert ( $Q , $N ){ try { $H = $this -> _conn -> _db -> selectCollection ( $Q ) -> insert ( $N ); $this -> _conn -> errno = $H [ 'code' ]; $this -> _conn -> error = $H [ 'err' ]; $this -> _conn -> last_id = $N [ '_id' ]; return ! $H [ 'err' ];} catch ( Exception $Ac ){ $this -> _conn -> error = $Ac -> getMessage (); return
false ;}}} function
get_databases ( $ad ){ global $g ; $H = array (); $Rb = $g -> _link -> listDBs (); foreach ( $Rb [ 'databases' ] as $l ) $H [] = $l [ 'name' ]; return $H ;} function
count_tables ( $k ){ global $g ; $H = array (); foreach ( $k
as $l ) $H [ $l ] = count ( $g -> _link -> selectDB ( $l ) -> getCollectionNames ( true )); return $H ;} function
tables_list (){ global $g ; return
array_fill_keys ( $g -> _db -> getCollectionNames ( true ), 'table' );} function
drop_databases ( $k ){ global $g ; foreach ( $k
as $l ){ $Mg = $g -> _link -> selectDB ( $l ) -> drop (); if ( ! $Mg [ 'ok' ]) return
false ;} return
true ;} function
indexes ( $Q , $h = null ){ global $g ; $H = array (); foreach ( $g -> _db -> selectCollection ( $Q ) -> getIndexInfo () as $v ){ $Yb = array (); foreach ( $v [ " key " ] as $e => $T ) $Yb [] = ( $T ==- 1 ? '1' : null ); $H [ $v [ " name " ]] = array ( " type " => ( $v [ " name " ] == " _id_ " ? " PRIMARY " : ( $v [ " unique " ] ? " UNIQUE " : " INDEX " )), " columns " => array_keys ( $v [ " key " ]), " lengths " => array (), " descs " => $Yb ,);} return $H ;} function
fields ( $Q ){ return
fields_from_edit ();} function
found_rows ( $R , $Z ){ global $g ; return $g -> _db -> selectCollection ( $_GET [ " select " ]) -> count ( $Z );} $vf = array ( " = " );} elseif ( class_exists ( 'MongoDB\Driver\Manager' )){ class
Min_DB { var $extension = " MongoDB " , $server_info = MONGODB_VERSION , $error , $last_id ; var $_link ; var $_db , $_db_name ; function
connect ( $Ki , $yf ){ $kb = 'MongoDB\Driver\Manager' ; return
new $kb ( $Ki , $yf );} function
query ( $F ){ 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 ( $G ){ foreach ( $G
as $be ){ $I = array (); foreach ( $be
as $y => $X ){ if ( is_a ( $X , 'MongoDB\BSON\Binary' )) $this -> _charset [ $y ] = 63 ; $I [ $y ] = ( is_a ( $X , 'MongoDB\BSON\ObjectID' ) ? 'MongoDB\BSON\ObjectID("' . strval ( $X ) . '")' : ( is_a ( $X , 'MongoDB\BSON\UTCDatetime' ) ? $X -> toDateTime () -> format ( 'Y-m-d H:i:s' ) : ( is_a ( $X , 'MongoDB\BSON\Binary' ) ? $X -> bin : ( is_a ( $X , 'MongoDB\BSON\Regex' ) ? strval ( $X ) : ( is_object ( $X ) ? json_encode ( $X , 256 ) : $X )))));} $this -> _rows [] = $I ; foreach ( $I
as $y => $X ){ if ( ! isset ( $this -> _rows [ 0 ][ $y ])) $this -> _rows [ 0 ][ $y ] = null ;}} $this -> num_rows = $G -> count ;} function
fetch_assoc (){ $I = current ( $this -> _rows ); if ( ! $I ) return $I ; $H = array (); foreach ( $this -> _rows [ 0 ] as $y => $X ) $H [ $y ] = $I [ $y ]; next ( $this -> _rows ); return $H ;} function
fetch_row (){ $H = $this -> fetch_assoc (); if ( ! $H ) return $H ; return
array_values ( $H );} function
fetch_field (){ $he = array_keys ( $this -> _rows [ 0 ]); $B = $he [ $this -> _offset ++ ]; return ( object ) array ( 'name' => $B , 'charsetnr' => $this -> _charset [ $B ],);}} class
Min_Driver
extends
Min_SQL { public $kg = " _id " ; function
select ( $Q , $K , $Z , $nd , $_f = array (), $z = 1 , $D = 0 , $mg = false ){ global $g ; $K = ( $K == array ( " * " ) ? array () : array_fill_keys ( $K , 1 )); if ( count ( $K ) &&! isset ( $K [ '_id' ])) $K [ '_id' ] = 0 ; $Z = where_to_query ( $Z ); $vh = array (); foreach ( $_f
as $X ){ $X = preg_replace ( '~ DESC$~' , '' , $X , 1 , $Eb ); $vh [ $X ] = ( $Eb ? - 1 : 1 );} if ( isset ( $_GET [ 'limit' ]) && is_numeric ( $_GET [ 'limit' ]) && $_GET [ 'limit' ] > 0 ) $z = $_GET [ 'limit' ]; $z = min ( 200 , max ( 1 ,( int ) $z )); $sh = $D * $z ; $kb = 'MongoDB\Driver\Query' ; $F = new $kb ( $Z , array ( 'projection' => $K , 'limit' => $z , 'skip' => $sh , 'sort' => $vh )); $Pg = $g -> _link -> executeQuery ( " $g->_db_name . $Q " , $F ); return
new
Min_Result ( $Pg );} function
update ( $Q , $N , $wg , $z = 0 , $L = " \n " ){ global $g ; $l = $g -> _db_name ; $Z = sql_query_where_parser ( $wg ); $kb = 'MongoDB\Driver\BulkWrite' ; $Za = new $kb ( array ()); if ( isset ( $N [ '_id' ])) unset ( $N [ '_id' ]); $Jg = array (); foreach ( $N
as $y => $Y ){ if ( $Y == 'NULL' ){ $Jg [ $y ] = 1 ; unset ( $N [ $y ]);}} $Ji = array ( '$set' => $N ); if ( count ( $Jg )) $Ji [ '$unset' ] = $Jg ; $Za -> update ( $Z , $Ji , array ( 'upsert' => false )); $Pg = $g -> _link -> executeBulkWrite ( " $l . $Q " , $Za ); $g -> affected_rows = $Pg -> getModifiedCount (); return
true ;} function
delete ( $Q , $wg , $z = 0 ){ global $g ; $l = $g -> _db_name ; $Z = sql_query_where_parser ( $wg ); $kb = 'MongoDB\Driver\BulkWrite' ; $Za = new $kb ( array ()); $Za -> delete ( $Z , array ( 'limit' => $z )); $Pg = $g -> _link -> executeBulkWrite ( " $l . $Q " , $Za ); $g -> affected_rows = $Pg -> getDeletedCount (); return
true ;} function
insert ( $Q , $N ){ global $g ; $l = $g -> _db_name ; $kb = 'MongoDB\Driver\BulkWrite' ; $Za = new $kb ( array ()); if ( isset ( $N [ '_id' ]) && empty ( $N [ '_id' ])) unset ( $N [ '_id' ]); $Za -> insert ( $N ); $Pg = $g -> _link -> executeBulkWrite ( " $l . $Q " , $Za ); $g -> affected_rows = $Pg -> getInsertedCount (); return
true ;}} function
get_databases ( $ad ){ global $g ; $H = array (); $kb = 'MongoDB\Driver\Command' ; $sb = new $kb ( array ( 'listDatabases' => 1 )); $Pg = $g -> _link -> executeCommand ( 'admin' , $sb ); foreach ( $Pg
as $Rb ){ foreach ( $Rb -> databases
as $l ) $H [] = $l -> name ;} return $H ;} function
count_tables ( $k ){ $H = array (); return $H ;} function
tables_list (){ global $g ; $kb = 'MongoDB\Driver\Command' ; $sb = new $kb ( array ( 'listCollections' => 1 )); $Pg = $g -> _link -> executeCommand ( $g -> _db_name , $sb ); $qb = array (); foreach ( $Pg
as $G ) $qb [ $G -> name ] = 'table' ; return $qb ;} function
drop_databases ( $k ){ return
false ;} function
indexes ( $Q , $h = null ){ global $g ; $H = array (); $kb = 'MongoDB\Driver\Command' ; $sb = new $kb ( array ( 'listIndexes' => $Q )); $Pg = $g -> _link -> executeCommand ( $g -> _db_name , $sb ); foreach ( $Pg
as $v ){ $Yb = array (); $f = array (); foreach ( get_object_vars ( $v -> key ) as $e => $T ){ $Yb [] = ( $T ==- 1 ? '1' : null ); $f [] = $e ;} $H [ $v -> name ] = array ( " type " => ( $v -> name == " _id_ " ? " PRIMARY " : ( isset ( $v -> unique ) ? " UNIQUE " : " INDEX " )), " columns " => $f , " lengths " => array (), " descs " => $Yb ,);} return $H ;} function
fields ( $Q ){ $p = fields_from_edit (); if ( ! count ( $p )){ global $m ; $G = $m -> select ( $Q , array ( " * " ), null , null , array (), 10 ); while ( $I = $G -> fetch_assoc ()){ foreach ( $I
as $y => $X ){ $I [ $y ] = null ; $p [ $y ] = array ( " field " => $y , " type " => " string " , " null " => ( $y != $m -> primary ), " auto_increment " => ( $y == $m -> primary ), " privileges " => array ( " insert " => 1 , " select " => 1 , " update " => 1 ,),);}}} return $p ;} function
found_rows ( $R , $Z ){ global $g ; $Z = where_to_query ( $Z ); $kb = 'MongoDB\Driver\Command' ; $sb = new $kb ( array ( 'count' => $R [ 'Name' ], 'query' => $Z )); $Pg = $g -> _link -> executeCommand ( $g -> _db_name , $sb ); $ni = $Pg -> toArray (); return $ni [ 0 ] -> n ;} function
sql_query_where_parser ( $wg ){ $wg = trim ( preg_replace ( '/WHERE[\s]?[(]?\(?/' , '' , $wg )); $wg = preg_replace ( '/\)\)\)$/' , ')' , $wg ); $kj = explode ( ' AND ' , $wg ); $lj = explode ( ') OR (' , $wg ); $Z = array (); foreach ( $kj
as $ij ) $Z [] = trim ( $ij ); if ( count ( $lj ) == 1 ) $lj = array (); elseif ( count ( $lj ) > 1 ) $Z = array (); return
where_to_query ( $Z , $lj );} function
where_to_query ( $gj = array (), $hj = array ()){ global $b ; $Mb = array (); foreach ( array ( 'and' => $gj , 'or' => $hj ) as $T => $Z ){ if ( is_array ( $Z )){ foreach ( $Z
as $Hc ){ list ( $nb , $tf , $X ) = explode ( " " , $Hc , 3 ); if ( $nb == " _id " ){ $X = str_replace ( 'MongoDB\BSON\ObjectID("' , " " , $X ); $X = str_replace ( '")' , " " , $X ); $kb = 'MongoDB\BSON\ObjectID' ; $X = new $kb ( $X );} if ( ! in_array ( $tf , $b -> operators )) continue ; if ( preg_match ( '~^\(f\)(.+)~' , $tf , $A )){ $X = ( float ) $X ; $tf = $A [ 1 ];} elseif ( preg_match ( '~^\(date\)(.+)~' , $tf , $A )){ $Ob = new
DateTime ( $X ); $kb = 'MongoDB\BSON\UTCDatetime' ; $X = new $kb ( $Ob -> getTimestamp () * 1000 ); $tf = $A [ 1 ];} switch ( $tf ){ case '=' : $tf = '$eq' ; break ; case '!=' : $tf = '$ne' ; break ; case '>' : $tf = '$gt' ; break ; case '<' : $tf = '$lt' ; break ; case '>=' : $tf = '$gte' ; break ; case '<=' : $tf = '$lte' ; break ; case 'regex' : $tf = '$regex' ; break ; default : continue
2 ;} if ( $T == 'and' ) $Mb [ '$and' ][] = array ( $nb => array ( $tf => $X )); elseif ( $T == 'or' ) $Mb [ '$or' ][] = array ( $nb => array ( $tf => $X ));}}} return $Mb ;} $vf = array ( " = " , " != " , " > " , " < " , " >= " , " <= " , " regex " , " (f)= " , " (f)!= " , " (f)> " , " (f)< " , " (f)>= " , " (f)<= " , " (date)= " , " (date)!= " , " (date)> " , " (date)< " , " (date)>= " , " (date)<= " ,);} function
table ( $u ){ return $u ;} function
idf_escape ( $u ){ return $u ;} function
table_status ( $B = " " , $Oc = false ){ $H = array (); foreach ( tables_list () as $Q => $T ){ $H [ $Q ] = array ( " Name " => $Q ); if ( $B == $Q ) return $H [ $Q ];} return $H ;} 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 ; $Hb = $b -> credentials (); return $Hb [ 1 ];} function
connect (){ global $b ; $g = new
Min_DB ; list ( $M , $V , $E ) = $b -> credentials (); $yf = array (); if ( $V . $E != " " ){ $yf [ " username " ] = $V ; $yf [ " password " ] = $E ;} $l = $b -> database (); if ( $l != " " ) $yf [ " db " ] = $l ; if (( $La = getenv ( " MONGO_AUTH_SOURCE " ))) $yf [ " authSource " ] = $La ; try { $g -> _link = $g -> connect ( " mongodb:// $M " , $yf ); if ( $E != " " ){ $yf [ " password " ] = " " ; try { $g -> connect ( " mongodb:// $M " , $yf ); return 'Database does not support password.' ;} catch ( Exception $Ac ){}} return $g ;} catch ( Exception $Ac ){ return $Ac -> getMessage ();}} function
alter_indexes ( $Q , $c ){ global $g ; foreach ( $c
as $X ){ list ( $T , $B , $N ) = $X ; if ( $N == " DROP " ) $H = $g -> _db -> command ( array ( " deleteIndexes " => $Q , " index " => $B )); else { $f = array (); foreach ( $N
as $e ){ $e = preg_replace ( '~ DESC$~' , '' , $e , 1 , $Eb ); $f [ $e ] = ( $Eb ? - 1 : 1 );} $H = $g -> _db -> selectCollection ( $Q ) -> ensureIndex ( $f , array ( " unique " => ( $T == " UNIQUE " ), " name " => $B ,));} if ( $H [ 'errmsg' ]){ $g -> error = $H [ 'errmsg' ]; return
false ;}} return
true ;} function
support ( $Pc ){ return
preg_match ( " ~database|indexes|descidx~ " , $Pc );} function
db_collation ( $l , $pb ){} function
information_schema (){} function
is_view ( $R ){} function
convert_field ( $o ){} function
unconvert_field ( $o , $H ){ return $H ;} function
foreign_keys ( $Q ){ return
array ();} function
fk_support ( $R ){} function
engines (){ return
array ();} function
alter_table ( $Q , $B , $p , $cd , $ub , $uc , $d , $Ma , $Uf ){ global $g ; if ( $Q == " " ){ $g -> _db -> createCollection ( $B ); return
true ;}} function
drop_tables ( $S ){ global $g ; foreach ( $S
as $Q ){ $Mg = $g -> _db -> selectCollection ( $Q ) -> drop (); if ( ! $Mg [ 'ok' ]) return
false ;} return
true ;} function
truncate_tables ( $S ){ global $g ; foreach ( $S
as $Q ){ $Mg = $g -> _db -> selectCollection ( $Q ) -> remove (); if ( ! $Mg [ 'ok' ]) return
false ;} return
true ;} $x = " mongo " ; $kd = array (); $qd = array (); $mc = array ( array ( " json " ));} $ec [ " elastic " ] = " Elasticsearch (beta) " ; if ( isset ( $_GET [ " elastic " ])){ $hg = array ( " json + allow_url_fopen " ); define ( " DRIVER " , " elastic " ); if ( function_exists ( 'json_decode' ) && ini_bool ( 'allow_url_fopen' )){ class
Min_DB { var $extension = " JSON " , $server_info , $errno , $error , $_url ; function
rootQuery ( $Yf , $_b = array (), $Re = 'GET' ){ @ ini_set ( 'track_errors' , 1 ); $Tc =@ file_get_contents ( " $this->_url / " . ltrim ( $Yf , '/' ), false , stream_context_create ( array ( 'http' => array ( 'method' => $Re , 'content' => $_b === null ? $_b : json_encode ( $_b ), 'header' => 'Content-Type: application/json' , 'ignore_errors' => 1 ,)))); if ( ! $Tc ){ $this -> error = $php_errormsg ; return $Tc ;} if ( ! preg_match ( '~^HTTP/[0-9.]+ 2~i' , $http_response_header [ 0 ])){ $this -> error = $Tc ; return
false ;} $H = json_decode ( $Tc , true ); if ( $H === null ){ $this -> errno = json_last_error (); if ( function_exists ( 'json_last_error_msg' )) $this -> error = json_last_error_msg (); else { $zb = get_defined_constants ( true ); foreach ( $zb [ 'json' ] as $B => $Y ){ if ( $Y == $this -> errno && preg_match ( '~^JSON_ERROR_~' , $B )){ $this -> error = $B ; break ;}}}} return $H ;} function
query ( $Yf , $_b = array (), $Re = 'GET' ){ return $this -> rootQuery (( $this -> _db != " " ? " $this->_db / " : " / " ) . ltrim ( $Yf , '/' ), $_b , $Re );} function
connect ( $M , $V , $E ){ preg_match ( '~^(https?://)?(.*)~' , $M , $A ); $this -> _url = ( $A [ 1 ] ? $A [ 1 ] : " http:// " ) . " $V : $E @ $A[2] " ; $H = $this -> query ( '' ); if ( $H ) $this -> server_info = $H [ 'version' ][ 'number' ]; return ( bool ) $H ;} function
select_db ( $j ){ $this -> _db = $j ; return
true ;} function
quote ( $P ){ return $P ;}} class
Min_Result { var $num_rows , $_rows ; function
__construct ( $J ){ $this -> num_rows = count ( $J ); $this -> _rows = $J ; reset ( $this -> _rows );} function
fetch_assoc (){ $H = current ( $this -> _rows ); next ( $this -> _rows ); return $H ;} function
fetch_row (){ return
array_values ( $this -> fetch_assoc ());}}} class
Min_Driver
extends
Min_SQL { function
select ( $Q , $K , $Z , $nd , $_f = array (), $z = 1 , $D = 0 , $mg = false ){ global $b ; $Mb = array (); $F = " $Q /_search " ; if ( $K != array ( " * " )) $Mb [ " fields " ] = $K ; if ( $_f ){ $vh = array (); foreach ( $_f
as $nb ){ $nb = preg_replace ( '~ DESC$~' , '' , $nb , 1 , $Eb ); $vh [] = ( $Eb ? array ( $nb => " desc " ) : $nb );} $Mb [ " sort " ] = $vh ;} if ( $z ){ $Mb [ " size " ] =+ $z ; if ( $D ) $Mb [ " from " ] = ( $D * $z );} foreach ( $Z
as $X ){ list ( $nb , $tf , $X ) = explode ( " " , $X , 3 ); if ( $nb == " _id " ) $Mb [ " query " ][ " ids " ][ " values " ][] = $X ; elseif ( $nb . $X != " " ){ $ai = array ( " term " => array (( $nb != " " ? $nb : " _all " ) => $X )); if ( $tf == " = " ) $Mb [ " query " ][ " filtered " ][ " filter " ][ " and " ][] = $ai ; else $Mb [ " query " ][ " filtered " ][ " query " ][ " bool " ][ " must " ][] = $ai ;}} if ( $Mb [ " query " ] &&! $Mb [ " query " ][ " filtered " ][ " query " ] &&! $Mb [ " query " ][ " ids " ]) $Mb [ " query " ][ " filtered " ][ " query " ] = array ( " match_all " => array ()); $Dh = microtime ( true ); $ch = $this -> _conn -> query ( $F , $Mb ); if ( $mg ) echo $b -> selectQuery ( " $F : " . json_encode ( $Mb ), $Dh , ! $ch ); if ( ! $ch ) return
false ; $H = array (); foreach ( $ch [ 'hits' ][ 'hits' ] as $_d ){ $I = array (); if ( $K == array ( " * " )) $I [ " _id " ] = $_d [ " _id " ]; $p = $_d [ '_source' ]; if ( $K != array ( " * " )){ $p = array (); foreach ( $K
as $y ) $p [ $y ] = $_d [ 'fields' ][ $y ];} foreach ( $p
as $y => $X ){ if ( $Mb [ " fields " ]) $X = $X [ 0 ]; $I [ $y ] = ( is_array ( $X ) ? json_encode ( $X ) : $X );} $H [] = $I ;} return
new
Min_Result ( $H );} function
update ( $T , $Ag , $wg , $z = 0 , $L = " \n " ){ $Wf = preg_split ( '~ *= *~' , $wg ); if ( count ( $Wf ) == 2 ){ $t = trim ( $Wf [ 1 ]); $F = " $T / $t " ; return $this -> _conn -> query ( $F , $Ag , 'POST' );} return
false ;} function
insert ( $T , $Ag ){ $t = " " ; $F = " $T / $t " ; $Mg = $this -> _conn -> query ( $F , $Ag , 'POST' ); $this -> _conn -> last_id = $Mg [ '_id' ]; return $Mg [ 'created' ];} function
delete ( $T , $wg , $z = 0 ){ $Ed = array (); if ( is_array ( $_GET [ " where " ]) && $_GET [ " where " ][ " _id " ]) $Ed [] = $_GET [ " where " ][ " _id " ]; if ( is_array ( $_POST [ 'check' ])){ foreach ( $_POST [ 'check' ] as $db ){ $Wf = preg_split ( '~ *= *~' , $db ); if ( count ( $Wf ) == 2 ) $Ed [] = trim ( $Wf [ 1 ]);}} $this -> _conn -> affected_rows = 0 ; foreach ( $Ed
as $t ){ $F = " { $T } / { $t } " ; $Mg = $this -> _conn -> query ( $F , '{}' , 'DELETE' ); if ( is_array ( $Mg ) && $Mg [ 'found' ] == true ) $this -> _conn -> affected_rows ++ ;} return $this -> _conn -> affected_rows ;}} function
connect (){ global $b ; $g = new
Min_DB ; list ( $M , $V , $E ) = $b -> credentials (); if ( $E != " " && $g -> connect ( $M , $V , " " )) return 'Database does not support password.' ; if ( $g -> connect ( $M , $V , $E )) return $g ; return $g -> error ;} function
support ( $Pc ){ return
preg_match ( " ~database|table|columns~ " , $Pc );} function
logged_user (){ global $b ; $Hb = $b -> credentials (); return $Hb [ 1 ];} function
get_databases (){ global $g ; $H = $g -> rootQuery ( '_aliases' ); if ( $H ){ $H = array_keys ( $H ); sort ( $H , SORT_STRING );} return $H ;} function
collations (){ return
array ();} function
db_collation ( $l , $pb ){} function
engines (){ return
array ();} function
count_tables ( $k ){ global $g ; $H = array (); $G = $g -> query ( '_stats' ); if ( $G && $G [ 'indices' ]){ $Md = $G [ 'indices' ]; foreach ( $Md
as $Ld => $Eh ){ $Kd = $Eh [ 'total' ][ 'indexing' ]; $H [ $Ld ] = $Kd [ 'index_total' ];}} return $H ;} function
tables_list (){ global $g ; $H = $g -> query ( '_mapping' ); if ( $H ) $H = array_fill_keys ( array_keys ( $H [ $g -> _db ][ " mappings " ]), 'table' ); return $H ;} function
table_status ( $B = " " , $Oc = false ){ global $g ; $ch = $g -> query ( " _search " , array ( " size " => 0 , " aggregations " => array ( " count_by_type " => array ( " terms " => array ( " field " => " _type " )))), " POST " ); $H = array (); if ( $ch ){ $S = $ch [ " aggregations " ][ " count_by_type " ][ " buckets " ]; foreach ( $S
as $Q ){ $H [ $Q [ " key " ]] = array ( " Name " => $Q [ " key " ], " Engine " => " table " , " Rows " => $Q [ " doc_count " ],); if ( $B != " " && $B == $Q [ " key " ]) return $H [ $B ];}} return $H ;} 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 ; $G = $g -> query ( " $Q /_mapping " ); $H = array (); if ( $G ){ $_e = $G [ $Q ][ 'properties' ]; if ( ! $_e ) $_e = $G [ $g -> _db ][ 'mappings' ][ $Q ][ 'properties' ]; if ( $_e ){ foreach ( $_e
as $B => $o ){ $H [ $B ] = array ( " field " => $B , " full_type " => $o [ " type " ], " type " => $o [ " type " ], " privileges " => array ( " insert " => 1 , " select " => 1 , " update " => 1 ),); if ( $o [ " properties " ]){ unset ( $H [ $B ][ " privileges " ][ " insert " ]); unset ( $H [ $B ][ " privileges " ][ " update " ]);}}}} return $H ;} function
foreign_keys ( $Q ){ return
array ();} function
table ( $u ){ return $u ;} function
idf_escape ( $u ){ return $u ;} function
convert_field ( $o ){} function
unconvert_field ( $o , $H ){ return $H ;} 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 , $B , $p , $cd , $ub , $uc , $d , $Ma , $Uf ){ global $g ; $sg = array (); foreach ( $p
as $Mc ){ $Rc = trim ( $Mc [ 1 ][ 0 ]); $Sc = trim ( $Mc [ 1 ][ 1 ] ? $Mc [ 1 ][ 1 ] : " text " ); $sg [ $Rc ] = array ( 'type' => $Sc );} if ( ! empty ( $sg )) $sg = array ( 'properties' => $sg ); return $g -> query ( " _mapping/ { $B } " , $sg , 'PUT' );} function
drop_tables ( $S ){ global $g ; $H = true ; foreach ( $S
as $Q ) $H = $H && $g -> query ( urlencode ( $Q ), array (), 'DELETE' ); return $H ;} function
last_id (){ global $g ; return $g -> last_id ;} $x = " elastic " ; $vf = array ( " = " , " query " ); $kd = array (); $qd = array (); $mc = array ( array ( " json " )); $U = array (); $Hh = 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 $y => $X ){ $U += $X ; $Hh [ $y ] = array_keys ( $X );}} $ec [ " clickhouse " ] = " ClickHouse (alpha) " ; if ( isset ( $_GET [ " clickhouse " ])){ define ( " DRIVER " , " clickhouse " ); class
Min_DB { var $extension = " JSON " , $server_info , $errno , $_result , $error , $_url ; var $_db = 'default' ; function
rootQuery ( $l , $F ){ @ ini_set ( 'track_errors' , 1 ); $Tc =@ file_get_contents ( " $this->_url /?database= $l " , false , stream_context_create ( array ( 'http' => array ( 'method' => 'POST' , 'content' => $this -> isQuerySelectLike ( $F ) ? " $F FORMAT JSONCompact " : $F , 'header' => 'Content-type: application/x-www-form-urlencoded' , 'ignore_errors' => 1 ,)))); if ( $Tc === false ){ $this -> error = $php_errormsg ; return $Tc ;} if ( ! preg_match ( '~^HTTP/[0-9.]+ 2~i' , $http_response_header [ 0 ])){ $this -> error = $Tc ; return
false ;} $H = json_decode ( $Tc , true ); if ( $H === null ){ if ( ! $this -> isQuerySelectLike ( $F ) && $Tc === '' ) return
true ; $this -> errno = json_last_error (); if ( function_exists ( 'json_last_error_msg' )) $this -> error = json_last_error_msg (); else { $zb = get_defined_constants ( true ); foreach ( $zb [ 'json' ] as $B => $Y ){ if ( $Y == $this -> errno && preg_match ( '~^JSON_ERROR_~' , $B )){ $this -> error = $B ; break ;}}}} return
new
Min_Result ( $H );} function
isQuerySelectLike ( $F ){ return ( bool ) preg_match ( '~^(select|show)~i' , $F );} function
query ( $F ){ return $this -> rootQuery ( $this -> _db , $F );} function
connect ( $M , $V , $E ){ preg_match ( '~^(https?://)?(.*)~' , $M , $A ); $this -> _url = ( $A [ 1 ] ? $A [ 1 ] : " http:// " ) . " $V : $E @ $A[2] " ; $H = $this -> query ( 'SELECT 1' ); return ( bool ) $H ;} function
select_db ( $j ){ $this -> _db = $j ; return
true ;} function
quote ( $P ){ return " ' " . addcslashes ( $P , " \\ ' " ) . " ' " ;} function
multi_query ( $F ){ return $this -> _result = $this -> query ( $F );} function
store_result (){ return $this -> _result ;} function
next_result (){ return
false ;} function
result ( $F , $o = 0 ){ $G = $this -> query ( $F ); return $G [ 'data' ];}} class
Min_Result { var $num_rows , $_rows , $columns , $meta , $_offset = 0 ; function
__construct ( $G ){ $this -> num_rows = $G [ 'rows' ]; $this -> _rows = $G [ 'data' ]; $this -> meta = $G [ 'meta' ]; $this -> columns = array_column ( $this -> meta , 'name' ); reset ( $this -> _rows );} function
fetch_assoc (){ $I = current ( $this -> _rows ); next ( $this -> _rows ); return $I === false ? false : array_combine ( $this -> columns , $I );} function
fetch_row (){ $I = current ( $this -> _rows ); next ( $this -> _rows ); return $I ;} function
fetch_field (){ $e = $this -> _offset ++ ; $H = new
stdClass ; if ( $e < count ( $this -> columns )){ $H -> name = $this -> meta [ $e ][ 'name' ]; $H -> orgname = $H -> name ; $H -> type = $this -> meta [ $e ][ 'type' ];} return $H ;}} class
Min_Driver
extends
Min_SQL { function
delete ( $Q , $wg , $z = 0 ){ if ( $wg === '' ) $wg = 'WHERE 1=1' ; return
queries ( " ALTER TABLE " . table ( $Q ) . " DELETE $wg " );} function
update ( $Q , $N , $wg , $z = 0 , $L = " \n " ){ $Vi = array (); foreach ( $N
as $y => $X ) $Vi [] = " $y = $X " ; $F = $L . implode ( " , $L " , $Vi ); return
queries ( " ALTER TABLE " . table ( $Q ) . " UPDATE $F $wg " );}} function
idf_escape ( $u ){ return " ` " . str_replace ( " ` " , " `` " , $u ) . " ` " ;} function
table ( $u ){ return
idf_escape ( $u );} function
explain ( $g , $F ){ return '' ;} function
found_rows ( $R , $Z ){ $J = get_vals ( " SELECT COUNT(*) FROM " . idf_escape ( $R [ " Name " ]) . ( $Z ? " WHERE " . implode ( " AND " , $Z ) : " " )); return
empty ( $J ) ? false : $J [ 0 ];} function
alter_table ( $Q , $B , $p , $cd , $ub , $uc , $d , $Ma , $Uf ){ $c = $_f = array (); foreach ( $p
as $o ){ if ( $o [ 1 ][ 2 ] === " NULL " ) $o [ 1 ][ 1 ] = " Nullable( { $o [ 1 ][ 1 ] } ) " ; elseif ( $o [ 1 ][ 2 ] === ' NOT NULL' ) $o [ 1 ][ 2 ] = '' ; if ( $o [ 1 ][ 3 ]) $o [ 1 ][ 3 ] = '' ; $c [] = ( $o [ 1 ] ? ( $Q != " " ? ( $o [ 0 ] != " " ? " MODIFY COLUMN " : " ADD COLUMN " ) : " " ) . implode ( $o [ 1 ]) : " DROP COLUMN " . idf_escape ( $o [ 0 ])); $_f [] = $o [ 1 ][ 0 ];} $c = array_merge ( $c , $cd ); $O = ( $uc ? " ENGINE " . $uc : " " ); if ( $Q == " " ) return
queries ( " CREATE TABLE " . table ( $B ) . " ( \n " . implode ( " , \n " , $c ) . " \n ) $O $Uf " . ' ORDER BY (' . implode ( ',' , $_f ) . ')' ); if ( $Q != $B ){ $G = queries ( " RENAME TABLE " . table ( $Q ) . " TO " . table ( $B )); if ( $c ) $Q = $B ; else
return $G ;} if ( $O ) $c [] = ltrim ( $O ); return ( $c || $Uf ? queries ( " ALTER TABLE " . table ( $Q ) . " \n " . implode ( " , \n " , $c ) . $Uf ) : true );} function
truncate_tables ( $S ){ return
apply_queries ( " TRUNCATE TABLE " , $S );} function
drop_views ( $aj ){ return
drop_tables ( $aj );} function
drop_tables ( $S ){ return
apply_queries ( " DROP TABLE " , $S );} function
connect (){ global $b ; $g = new
Min_DB ; $Hb = $b -> credentials (); if ( $g -> connect ( $Hb [ 0 ], $Hb [ 1 ], $Hb [ 2 ])) return $g ; return $g -> error ;} function
get_databases ( $ad ){ global $g ; $G = get_rows ( 'SHOW DATABASES' ); $H = array (); foreach ( $G
as $I ) $H [] = $I [ 'name' ]; sort ( $H ); return $H ;} function
limit ( $F , $Z , $z , $C = 0 , $L = " " ){ return " $F $Z " . ( $z !== null ? $L . " LIMIT $z " . ( $C ? " , $C " : " " ) : " " );} function
limit1 ( $Q , $F , $Z , $L = " \n " ){ return
limit ( $F , $Z , 1 , 0 , $L );} function
db_collation ( $l , $pb ){} function
engines (){ return
array ( 'MergeTree' );} function
logged_user (){ global $b ; $Hb = $b -> credentials (); return $Hb [ 1 ];} function
tables_list (){ $G = get_rows ( 'SHOW TABLES' ); $H = array (); foreach ( $G
as $I ) $H [ $I [ 'name' ]] = 'table' ; ksort ( $H ); return $H ;} function
count_tables ( $k ){ return
array ();} function
table_status ( $B = " " , $Oc = false ){ global $g ; $H = array (); $S = get_rows ( " SELECT name, engine FROM system.tables WHERE database = " . q ( $g -> _db )); foreach ( $S
as $Q ){ $H [ $Q [ 'name' ]] = array ( 'Name' => $Q [ 'name' ], 'Engine' => $Q [ 'engine' ],); if ( $B === $Q [ 'name' ]) return $H [ $Q [ 'name' ]];} return $H ;} function
is_view ( $R ){ return
false ;} function
fk_support ( $R ){ return
false ;} function
convert_field ( $o ){} function
unconvert_field ( $o , $H ){ if ( in_array ( $o [ 'type' ], array ( " Int8 " , " Int16 " , " Int32 " , " Int64 " , " UInt8 " , " UInt16 " , " UInt32 " , " UInt64 " , " Float32 " , " Float64 " ))) return " to $o[type] ( $H ) " ; return $H ;} function
fields ( $Q ){ $H = array (); $G = get_rows ( " SELECT name, type, default_expression FROM system.columns WHERE " . idf_escape ( 'table' ) . " = " . q ( $Q )); foreach ( $G
as $I ){ $T = trim ( $I [ 'type' ]); $ff = strpos ( $T , 'Nullable(' ) === 0 ; $H [ trim ( $I [ 'name' ])] = array ( " field " => trim ( $I [ 'name' ]), " full_type " => $T , " type " => $T , " default " => trim ( $I [ 'default_expression' ]), " null " => $ff , " auto_increment " => '0' , " privileges " => array ( " insert " => 1 , " select " => 1 , " update " => 0 ),);} return $H ;} function
indexes ( $Q , $h = null ){ return
array ();} function
foreign_keys ( $Q ){ return
array ();} function
collations (){ return
array ();} function
information_schema ( $l ){ return
false ;} function
error (){ global $g ; return
h ( $g -> error );} function
types (){ return
array ();} function
schemas (){ return
array ();} function
get_schema (){ return " " ;} function
set_schema ( $ah ){ return
true ;} function
auto_increment (){ return '' ;} function
last_id (){ return
0 ;} function
support ( $Pc ){ return
preg_match ( " ~^(columns|sql|status|table|drop_col) $ ~ " , $Pc );} $x = " clickhouse " ; $U = array (); $Hh = array (); foreach ( array ( 'Numbers' => array ( " Int8 " => 3 , " Int16 " => 5 , " Int32 " => 10 , " Int64 " => 19 , " UInt8 " => 3 , " UInt16 " => 5 , " UInt32 " => 10 , " UInt64 " => 20 , " Float32 " => 7 , " Float64 " => 16 , 'Decimal' => 38 , 'Decimal32' => 9 , 'Decimal64' => 18 , 'Decimal128' => 38 ), 'Date and time' => array ( " Date " => 13 , " DateTime " => 20 ), 'Strings' => array ( " String " => 0 ), 'Binary' => array ( " FixedString " => 0 ),) as $y => $X ){ $U += $X ; $Hh [ $y ] = array_keys ( $X );} $Ii = array (); $vf = array ( " = " , " < " , " > " , " <= " , " >= " , " != " , " ~ " , " !~ " , " LIKE " , " LIKE %% " , " IN " , " IS NULL " , " NOT LIKE " , " NOT IN " , " IS NOT NULL " , " SQL " ); $kd = array (); $qd = array ( " avg " , " count " , " count distinct " , " max " , " min " , " sum " ); $mc = array ();} $ec = array ( " server " => " MySQL " ) + $ec ; if ( ! defined ( " DRIVER " )){ $hg = array ( " MySQLi " , " MySQL " , " PDO_MySQL " ); define ( " DRIVER " , " server " ); if ( extension_loaded ( " mysqli " )){ class
Min_DB
extends
MySQLi { var $extension = " MySQLi " ; function
__construct (){ parent :: init ();} function
connect ( $M = " " , $V = " " , $E = " " , $j = null , $dg = null , $uh = null ){ global $b ; mysqli_report ( MYSQLI_REPORT_OFF ); list ( $Ad , $dg ) = explode ( " : " , $M , 2 ); $Ch = $b -> connectSsl (); if ( $Ch ) $this -> ssl_set ( $Ch [ 'key' ], $Ch [ 'cert' ], $Ch [ 'ca' ], '' , '' ); $H =@ $this -> real_connect (( $M != " " ? $Ad : ini_get ( " mysqli.default_host " )),( $M . $V != " " ? $V : ini_get ( " mysqli.default_user " )),( $M . $V . $E != " " ? $E : ini_get ( " mysqli.default_pw " )), $j ,( is_numeric ( $dg ) ? $dg : ini_get ( " mysqli.default_port " )),( ! is_numeric ( $dg ) ? $dg : $uh ),( $Ch ? 64 : 0 )); $this -> options ( MYSQLI_OPT_LOCAL_INFILE , false ); return $H ;} function
set_charset ( $cb ){ if ( parent :: set_charset ( $cb )) return
true ; parent :: set_charset ( 'utf8' ); return $this -> query ( " SET NAMES $cb " );} function
result ( $F , $o = 0 ){ $G = $this -> query ( $F ); if ( ! $G ) return
false ; $I = $G -> fetch_array (); return $I [ $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 , $E ){ 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 $E " != " " ? $E : 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 ( $cb ){ if ( function_exists ( 'mysql_set_charset' )){ if ( mysql_set_charset ( $cb , $this -> _link )) return
true ; mysql_set_charset ( 'utf8' , $this -> _link );} return $this -> query ( " SET NAMES $cb " );} function
quote ( $P ){ return " ' " . mysql_real_escape_string ( $P , $this -> _link ) . " ' " ;} function
select_db ( $j ){ return
mysql_select_db ( $j , $this -> _link );} function
query ( $F , $Ci = false ){ $G =@ ( $Ci ? mysql_unbuffered_query ( $F , $this -> _link ) : mysql_query ( $F , $this -> _link )); $this -> error = " " ; if ( ! $G ){ $this -> errno = mysql_errno ( $this -> _link ); $this -> error = mysql_error ( $this -> _link ); return
false ;} if ( $G === true ){ $this -> affected_rows = mysql_affected_rows ( $this -> _link ); $this -> info = mysql_info ( $this -> _link ); return
true ;} return
new
Min_Result ( $G );} function
multi_query ( $F ){ return $this -> _result = $this -> query ( $F );} function
store_result (){ return $this -> _result ;} function
next_result (){ return
false ;} function
result ( $F , $o = 0 ){ $G = $this -> query ( $F ); if ( ! $G ||! $G -> num_rows ) return
false ; return
mysql_result ( $G -> _result , 0 , $o );}} class
Min_Result { var $num_rows , $_result , $_offset = 0 ; function
__construct ( $G ){ $this -> _result = $G ; $this -> num_rows = mysql_num_rows ( $G );} function
fetch_assoc (){ return
mysql_fetch_assoc ( $this -> _result );} function
fetch_row (){ return
mysql_fetch_row ( $this -> _result );} function
fetch_field (){ $H = mysql_fetch_field ( $this -> _result , $this -> _offset ++ ); $H -> orgtable = $H -> table ; $H -> orgname = $H -> name ; $H -> charsetnr = ( $H -> blob ? 63 : 0 ); return $H ;} 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 , $E ){ global $b ; $yf = array ( PDO :: MYSQL_ATTR_LOCAL_INFILE => false ); $Ch = $b -> connectSsl (); if ( $Ch ){ if ( ! empty ( $Ch [ 'key' ])) $yf [ PDO :: MYSQL_ATTR_SSL_KEY ] = $Ch [ 'key' ]; if ( ! empty ( $Ch [ 'cert' ])) $yf [ PDO :: MYSQL_ATTR_SSL_CERT ] = $Ch [ 'cert' ]; if ( ! empty ( $Ch [ 'ca' ])) $yf [ PDO :: MYSQL_ATTR_SSL_CA ] = $Ch [ 'ca' ];} $this -> dsn ( " mysql:charset=utf8;host= " . str_replace ( " : " , " ;unix_socket= " , preg_replace ( '~:(\d)~' , ';port=\1' , $M )), $V , $E , $yf ); return
true ;} function
set_charset ( $cb ){ $this -> query ( " SET NAMES $cb " );} function
select_db ( $j ){ return $this -> query ( " USE " . idf_escape ( $j ));} function
query ( $F , $Ci = false ){ $this -> setAttribute ( 1000 , ! $Ci ); return
parent :: query ( $F , $Ci );}}} 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 , $J , $kg ){ $f = array_keys ( reset ( $J )); $ig = " INSERT INTO " . table ( $Q ) . " ( " . implode ( " , " , $f ) . " ) VALUES \n " ; $Vi = array (); foreach ( $f
as $y ) $Vi [ $y ] = " $y = VALUES( $y ) " ; $Kh = " \n ON DUPLICATE KEY UPDATE " . implode ( " , " , $Vi ); $Vi = array (); $te = 0 ; foreach ( $J
as $N ){ $Y = " ( " . implode ( " , " , $N ) . " ) " ; if ( $Vi && ( strlen ( $ig ) + $te + strlen ( $Y ) + strlen ( $Kh ) > 1e6 )){ if ( ! queries ( $ig . implode ( " , \n " , $Vi ) . $Kh )) return
false ; $Vi = array (); $te = 0 ;} $Vi [] = $Y ; $te += strlen ( $Y ) + 2 ;} return
queries ( $ig . implode ( " , \n " , $Vi ) . $Kh );} function
slowQuery ( $F , $fi ){ if ( min_version ( '5.7.8' , '10.1.2' )){ if ( preg_match ( '~MariaDB~' , $this -> _conn -> server_info )) return " SET STATEMENT max_statement_time= $fi FOR $F " ; elseif ( preg_match ( '~^(SELECT\b)(.+)~is' , $F , $A )) return " $A[1] /*+ MAX_EXECUTION_TIME( " . ( $fi * 1000 ) . " ) */ $A[2] " ;}} function
convertSearch ( $u , $X , $o ){ return ( preg_match ( '~char|text|enum|set~' , $o [ " type " ]) &&! preg_match ( " ~^utf8~ " , $o [ " collation " ]) && preg_match ( '~[\x80-\xFF]~' , $X [ 'val' ]) ? " CONVERT( $u USING " . charset ( $this -> _conn ) . " ) " : $u );} function
warnings (){ $G = $this -> _conn -> query ( " SHOW WARNINGS " ); if ( $G && $G -> num_rows ){ ob_start (); select ( $G ); return
ob_get_clean ();}} function
tableHelp ( $B ){ $Ae = preg_match ( '~MariaDB~' , $this -> _conn -> server_info ); if ( information_schema ( DB )) return
strtolower (( $Ae ? " information-schema- $B -table/ " : str_replace ( " _ " , " - " , $B ) . " -table.html " )); if ( DB == " mysql " ) return ( $Ae ? " mysql $B -table/ " : " system-database.html " );}} function
idf_escape ( $u ){ return " ` " . str_replace ( " ` " , " `` " , $u ) . " ` " ;} function
table ( $u ){ return
idf_escape ( $u );} function
connect (){ global $b , $U , $Hh ; $g = new
Min_DB ; $Hb = $b -> credentials (); if ( $g -> connect ( $Hb [ 0 ], $Hb [ 1 ], $Hb [ 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 )){ $Hh [ 'Strings' ][] = " json " ; $U [ " json " ] = 4294967295 ;} return $g ;} $H = $g -> error ; if ( function_exists ( 'iconv' ) &&! is_utf8 ( $H ) && strlen ( $Yg = iconv ( " windows-1250 " , " utf-8 " , $H )) > strlen ( $H )) $H = $Yg ; return $H ;} function
get_databases ( $ad ){ $H = get_session ( " dbs " ); if ( $H === null ){ $F = ( min_version ( 5 ) ? " SELECT SCHEMA_NAME FROM information_schema.SCHEMATA ORDER BY SCHEMA_NAME " : " SHOW DATABASES " ); $H = ( $ad ? slow_query ( $F ) : get_vals ( $F )); restart_session (); set_session ( " dbs " , $H ); stop_session ();} return $H ;} function
limit ( $F , $Z , $z , $C = 0 , $L = " " ){ return " $F $Z " . ( $z !== null ? $L . " LIMIT $z " . ( $C ? " OFFSET $C " : " " ) : " " );} function
limit1 ( $Q , $F , $Z , $L = " \n " ){ return
limit ( $F , $Z , 1 , 0 , $L );} function
db_collation ( $l , $pb ){ global $g ; $H = null ; $i = $g -> result ( " SHOW CREATE DATABASE " . idf_escape ( $l ), 1 ); if ( preg_match ( '~ COLLATE ([^ ]+)~' , $i , $A )) $H = $A [ 1 ]; elseif ( preg_match ( '~ CHARACTER SET ([^ ]+)~' , $i , $A )) $H = $pb [ $A [ 1 ]][ - 1 ]; return $H ;} function
engines (){ $H = array (); foreach ( get_rows ( " SHOW ENGINES " ) as $I ){ if ( preg_match ( " ~YES|DEFAULT~ " , $I [ " Support " ])) $H [] = $I [ " Engine " ];} return $H ;} 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 ){ $H = array (); foreach ( $k
as $l ) $H [ $l ] = count ( get_vals ( " SHOW TABLES IN " . idf_escape ( $l ))); return $H ;} function
table_status ( $B = " " , $Oc = false ){ $H = array (); foreach ( get_rows ( $Oc && min_version ( 5 ) ? " SELECT TABLE_NAME AS Name, ENGINE AS Engine, TABLE_COMMENT AS Comment FROM information_schema.TABLES WHERE TABLE_SCHEMA = DATABASE() " . ( $B != " " ? " AND TABLE_NAME = " . q ( $B ) : " ORDER BY Name " ) : " SHOW TABLE STATUS " . ( $B != " " ? " LIKE " . q ( addcslashes ( $B , " %_ \\ " )) : " " )) as $I ){ if ( $I [ " Engine " ] == " InnoDB " ) $I [ " Comment " ] = preg_replace ( '~(?:(.+); )?InnoDB free: .*~' , '\1' , $I [ " Comment " ]); if ( ! isset ( $I [ " Engine " ])) $I [ " Comment " ] = " " ; if ( $B != " " ) return $I ; $H [ $I [ " Name " ]] = $I ;} return $H ;} 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 ){ $H = array (); foreach ( get_rows ( " SHOW FULL COLUMNS FROM " . table ( $Q )) as $I ){ preg_match ( '~^([^( ]+)(?:\((.+)\))?( unsigned)?( zerofill)?$~' , $I [ " Type " ], $A ); $H [ $I [ " Field " ]] = array ( " field " => $I [ " Field " ], " full_type " => $I [ " Type " ], " type " => $A [ 1 ], " length " => $A [ 2 ], " unsigned " => ltrim ( $A [ 3 ] . $A [ 4 ]), " default " => ( $I [ " Default " ] != " " || preg_match ( " ~char|set~ " , $A [ 1 ]) ? $I [ " Default " ] : null ), " null " => ( $I [ " Null " ] == " YES " ), " auto_increment " => ( $I [ " Extra " ] == " auto_increment " ), " on_update " => ( preg_match ( '~^on update (.+)~i' , $I [ " Extra " ], $A ) ? $A [ 1 ] : " " ), " collation " => $I [ " Collation " ], " privileges " => array_flip ( preg_split ( '~, *~' , $I [ " Privileges " ])), " comment " => $I [ " Comment " ], " primary " => ( $I [ " Key " ] == " PRI " ), " generated " => preg_match ( '~^(VIRTUAL|PERSISTENT|STORED)~' , $I [ " Extra " ]),);} return $H ;} function
indexes ( $Q , $h = null ){ $H = array (); foreach ( get_rows ( " SHOW INDEX FROM " . table ( $Q ), $h ) as $I ){ $B = $I [ " Key_name " ]; $H [ $B ][ " type " ] = ( $B == " PRIMARY " ? " PRIMARY " : ( $I [ " Index_type " ] == " FULLTEXT " ? " FULLTEXT " : ( $I [ " Non_unique " ] ? ( $I [ " Index_type " ] == " SPATIAL " ? " SPATIAL " : " INDEX " ) : " UNIQUE " ))); $H [ $B ][ " columns " ][] = $I [ " Column_name " ]; $H [ $B ][ " lengths " ][] = ( $I [ " Index_type " ] == " SPATIAL " ? null : $I [ " Sub_part " ]); $H [ $B ][ " descs " ][] = null ;} return $H ;} function
foreign_keys ( $Q ){ global $g , $qf ; static $ag = '(?:`(?:[^`]|``)+`|"(?:[^"]|"")+")' ; $H = array (); $Fb = $g -> result ( " SHOW CREATE TABLE " . table ( $Q ), 1 ); if ( $Fb ){ preg_match_all ( " ~CONSTRAINT ( $ag ) FOREIGN KEY ? \\ (((?: $ag ,? ?)+) \\ ) REFERENCES ( $ag )(?: \\ .( $ag ))? \\ (((?: $ag ,? ?)+) \\ )(?: ON DELETE ( $qf ))?(?: ON UPDATE ( $qf ))?~ " , $Fb , $De , PREG_SET_ORDER ); foreach ( $De
as $A ){ preg_match_all ( " ~ $ag ~ " , $A [ 2 ], $wh ); preg_match_all ( " ~ $ag ~ " , $A [ 5 ], $Xh ); $H [ idf_unescape ( $A [ 1 ])] = array ( " db " => idf_unescape ( $A [ 4 ] != " " ? $A [ 3 ] : $A [ 4 ]), " table " => idf_unescape ( $A [ 4 ] != " " ? $A [ 4 ] : $A [ 3 ]), " source " => array_map ( 'idf_unescape' , $wh [ 0 ]), " target " => array_map ( 'idf_unescape' , $Xh [ 0 ]), " on_delete " => ( $A [ 6 ] ? $A [ 6 ] : " RESTRICT " ), " on_update " => ( $A [ 7 ] ? $A [ 7 ] : " RESTRICT " ),);}} return $H ;} function
view ( $B ){ global $g ; return
array ( " select " => preg_replace ( '~^(?:[^`]|`[^`]*`)*\s+AS\s+~isU' , '' , $g -> result ( " SHOW CREATE VIEW " . table ( $B ), 1 )));} function
collations (){ $H = array (); foreach ( get_rows ( " SHOW COLLATION " ) as $I ){ if ( $I [ " Default " ]) $H [ $I [ " Charset " ]][ - 1 ] = $I [ " Collation " ]; else $H [ $I [ " Charset " ]][] = $I [ " Collation " ];} ksort ( $H ); foreach ( $H
as $y => $X ) asort ( $H [ $y ]); return $H ;} 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 ){ $H = apply_queries ( " DROP DATABASE " , $k , 'idf_escape' ); restart_session (); set_session ( " dbs " , null ); return $H ;} function
rename_database ( $B , $d ){ $H = false ; if ( create_database ( $B , $d )){ $Kg = array (); foreach ( tables_list () as $Q => $T ) $Kg [] = table ( $Q ) . " TO " . idf_escape ( $B ) . " . " . table ( $Q ); $H = ( ! $Kg || queries ( " RENAME TABLE " . implode ( " , " , $Kg ))); if ( $H ) queries ( " DROP DATABASE " . idf_escape ( DB )); restart_session (); set_session ( " dbs " , null );} return $H ;} function
auto_increment (){ $Na = " PRIMARY KEY " ; if ( $_GET [ " create " ] != " " && $_POST [ " auto_increment_col " ]){ foreach ( indexes ( $_GET [ " create " ]) as $v ){ if ( in_array ( $_POST [ " fields " ][ $_POST [ " auto_increment_col " ]][ " orig " ], $v [ " columns " ], true )){ $Na = " " ; break ;} if ( $v [ " type " ] == " PRIMARY " ) $Na = " UNIQUE " ;}} return " AUTO_INCREMENT $Na " ;} function
alter_table ( $Q , $B , $p , $cd , $ub , $uc , $d , $Ma , $Uf ){ $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 , $cd ); $O = ( $ub !== null ? " COMMENT= " . q ( $ub ) : " " ) . ( $uc ? " ENGINE= " . q ( $uc ) : " " ) . ( $d ? " COLLATE " . q ( $d ) : " " ) . ( $Ma != " " ? " AUTO_INCREMENT= $Ma " : " " ); if ( $Q == " " ) return
queries ( " CREATE TABLE " . table ( $B ) . " ( \n " . implode ( " , \n " , $c ) . " \n ) $O $Uf " ); if ( $Q != $B ) $c [] = " RENAME TO " . table ( $B ); if ( $O ) $c [] = ltrim ( $O ); return ( $c || $Uf ? queries ( " ALTER TABLE " . table ( $Q ) . " \n " . implode ( " , \n " , $c ) . $Uf ) : true );} function
alter_indexes ( $Q , $c ){ foreach ( $c
as $y => $X ) $c [ $y ] = ( $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 ( $aj ){ return
queries ( " DROP VIEW " . implode ( " , " , array_map ( 'table' , $aj )));} function
drop_tables ( $S ){ return
queries ( " DROP TABLE " . implode ( " , " , array_map ( 'table' , $S )));} function
move_tables ( $S , $aj , $Xh ){ $Kg = array (); foreach ( array_merge ( $S , $aj ) as $Q ) $Kg [] = table ( $Q ) . " TO " . idf_escape ( $Xh ) . " . " . table ( $Q ); return
queries ( " RENAME TABLE " . implode ( " , " , $Kg ));} function
copy_tables ( $S , $aj , $Xh ){ queries ( " SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO' " ); foreach ( $S
as $Q ){ $B = ( $Xh == DB ? table ( " copy_ $Q " ) : idf_escape ( $Xh ) . " . " . table ( $Q )); if (( $_POST [ " overwrite " ] &&! queries ( " \n DROP TABLE IF EXISTS $B " )) ||! queries ( " CREATE TABLE $B LIKE " . table ( $Q )) ||! queries ( " INSERT INTO $B SELECT * FROM " . table ( $Q ))) return
false ; foreach ( get_rows ( " SHOW TRIGGERS LIKE " . q ( addcslashes ( $Q , " %_ \\ " ))) as $I ){ $xi = $I [ " Trigger " ]; if ( ! queries ( " CREATE TRIGGER " . ( $Xh == DB ? idf_escape ( " copy_ $xi " ) : idf_escape ( $Xh ) . " . " . idf_escape ( $xi )) . " $I[Timing] $I[Event] ON $B FOR EACH ROW \n $I[Statement] ; " )) return
false ;}} foreach ( $aj
as $Q ){ $B = ( $Xh == DB ? table ( " copy_ $Q " ) : idf_escape ( $Xh ) . " . " . table ( $Q )); $Zi = view ( $Q ); if (( $_POST [ " overwrite " ] &&! queries ( " DROP VIEW IF EXISTS $B " )) ||! queries ( " CREATE VIEW $B AS $Zi[select] " )) return
false ;} return
true ;} function
trigger ( $B ){ if ( $B == " " ) return
array (); $J = get_rows ( " SHOW TRIGGERS WHERE `Trigger` = " . q ( $B )); return
reset ( $J );} function
triggers ( $Q ){ $H = array (); foreach ( get_rows ( " SHOW TRIGGERS LIKE " . q ( addcslashes ( $Q , " %_ \\ " ))) as $I ) $H [ $I [ " Trigger " ]] = array ( $I [ " Timing " ], $I [ " Event " ]); return $H ;} function
trigger_options (){ return
array ( " Timing " => array ( " BEFORE " , " AFTER " ), " Event " => array ( " INSERT " , " UPDATE " , " DELETE " ), " Type " => array ( " FOR EACH ROW " ),);} function
routine ( $B , $T ){ global $g , $wc , $Rd , $U ; $Ca = array ( " bool " , " boolean " , " integer " , " double precision " , " real " , " dec " , " numeric " , " fixed " , " national char " , " national varchar " ); $xh = " (?: \\ s|/ \\ *[ \ s \ S]*? \\ */|(?:#|-- )[^ \n ]* \n ?|-- \r ? \n ) " ; $Bi = " (( " . implode ( " | " , array_merge ( array_keys ( $U ), $Ca )) . " ) \\ b(?: \\ s* \\ (((?:[^' \" )]| $wc )++) \\ ))? \\ s*(zerofill \\ s*)?(unsigned(?: \\ s+zerofill)?)?)(?: \\ s*(?:CHARSET|CHARACTER \\ s+SET) \\ s*[' \" ]?([^' \" \\ s,]+)[' \" ]?)? " ; $ag = " $xh *( " . ( $T == " FUNCTION " ? " " : $Rd ) . " )? \\ s*(?:`((?:[^`]|``)*)` \\ s*| \\ b( \\ S+) \\ s+) $Bi " ; $i = $g -> result ( " SHOW CREATE $T " . idf_escape ( $B ), 2 ); preg_match ( " ~ \\ (((?: $ag\\s *,?)*) \\ ) \\ s* " . ( $T == " FUNCTION " ? " RETURNS \\ s+ $Bi\\s + " : " " ) . " (.*)~is " , $i , $A ); $p = array (); preg_match_all ( " ~ $ag\\s *,?~is " , $A [ 1 ], $De , PREG_SET_ORDER ); foreach ( $De
as $Nf ) $p [] = array ( " field " => str_replace ( " `` " , " ` " , $Nf [ 2 ]) . $Nf [ 3 ], " type " => strtolower ( $Nf [ 5 ]), " length " => preg_replace_callback ( " ~ $wc ~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 " => $A [ 11 ]); return
array ( " fields " => $p , " returns " => array ( " type " => $A [ 12 ], " length " => $A [ 13 ], " unsigned " => $A [ 15 ], " collation " => $A [ 16 ]), " definition " => $A [ 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 ( $B , $I ){ return
idf_escape ( $B );} function
last_id (){ global $g ; return $g -> result ( " SELECT LAST_INSERT_ID() " );} function
explain ( $g , $F ){ return $g -> query ( " EXPLAIN " . ( min_version ( 5.1 ) ? " PARTITIONS " : " " ) . $F );} 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 ( $ah , $h = null ){ return
true ;} function
create_sql ( $Q , $Ma , $Ih ){ global $g ; $H = $g -> result ( " SHOW CREATE TABLE " . table ( $Q ), 1 ); if ( ! $Ma ) $H = preg_replace ( '~ AUTO_INCREMENT=\d+~' , '' , $H ); return $H ;} function
truncate_sql ( $Q ){ return " TRUNCATE " . table ( $Q );} function
use_sql ( $j ){ return " USE " . idf_escape ( $j );} function
trigger_sql ( $Q ){ $H = " " ; foreach ( get_rows ( " SHOW TRIGGERS LIKE " . q ( addcslashes ( $Q , " %_ \\ " )), null , " -- " ) as $I ) $H .= " \n CREATE TRIGGER " . idf_escape ( $I [ " Trigger " ]) . " $I[Timing] $I[Event] ON " . table ( $I [ " Table " ]) . " FOR EACH ROW \n $I[Statement] ;; \n " ; return $H ;} 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 , $H ){ if ( preg_match ( " ~binary~ " , $o [ " type " ])) $H = " UNHEX( $H ) " ; if ( $o [ " type " ] == " bit " ) $H = " CONV( $H , 2, 10) + 0 " ; if ( preg_match ( " ~geometry|point|linestring|polygon~ " , $o [ " type " ])) $H = ( min_version ( 8 ) ? " ST_ " : " " ) . " GeomFromText( $H , SRID( $o[field] )) " ; return $H ;} function
support ( $Pc ){ 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 " ))) . " ~ " , $Pc );} 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 " );} $x = " sql " ; $U = array (); $Hh = 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 $y => $X ){ $U += $X ; $Hh [ $y ] = array_keys ( $X );} $Ii = array ( " unsigned " , " zerofill " , " unsigned zerofill " ); $vf = array ( " = " , " < " , " > " , " <= " , " >= " , " != " , " LIKE " , " LIKE %% " , " REGEXP " , " IN " , " FIND_IN_SET " , " IS NULL " , " NOT LIKE " , " NOT REGEXP " , " NOT IN " , " IS NOT NULL " , " SQL " ); $kd = array ( " char_length " , " date " , " from_unixtime " , " lower " , " round " , " floor " , " ceil " , " sec_to_time " , " time_to_sec " , " upper " ); $qd = array ( " avg " , " count " , " count distinct " , " group_concat " , " max " , " min " , " sum " ); $mc = 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 " ,));} define ( " SERVER " , $_GET [ DRIVER ]); define ( " DB " , $_GET [ " db " ]); define ( " ME " , str_replace ( " : " , " %3a " , preg_replace ( '~^[^?]*/([^?]*).*~' , '\1' , $_SERVER [ " REQUEST_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.7.5 " ; 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 ( $ad = true ){ return
get_databases ( $ad );} function
schemas (){ return
schemas ();} function
queryTimeout (){ return
2 ;} function
headers (){} function
csp (){ return
csp ();} function
head (){ return
true ;} function
css (){ $H = array (); $Uc = " adminer.css " ; if ( file_exists ( $Uc )) $H [] = " $Uc ?v= " . crc32 ( file_get_contents ( $Uc )); return $H ;} function
loginForm (){ global $ec ; echo " <table cellspacing='0' class='layout'> \n " , $this -> loginFormField ( 'driver' , '<tr><th>' . 'System' . '<td>' , html_select ( " auth[driver] " , $ec , 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 ( $B , $xd , $Y ){ return $xd . $Y ;} function
login ( $ye , $E ){ return
true ;} function
tableName ( $Oh ){ return
h ( $Oh [ " Name " ]);} function
fieldName ( $o , $_f = 0 ){ return '<span title="' . h ( $o [ " full_type " ]) . '">' . h ( $o [ " field " ]) . '</span>' ;} function
selectLinks ( $Oh , $N = " " ){ global $x , $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 ( $Oh )) $we [ " view " ] = 'Alter view' ; else $we [ " create " ] = 'Alter table' ;} if ( $N !== null ) $we [ " edit " ] = 'New item' ; $B = $Oh [ " Name " ]; foreach ( $we
as $y => $X ) echo " <a href=' " . h ( ME ) . " $y = " . urlencode ( $B ) . ( $y == " edit " ? $N : " " ) . " ' " . bold ( isset ( $_GET [ $y ])) . " > $X </a> " ; echo
doc_link ( array ( $x => $m -> tableHelp ( $B )), " ? " ), " \n " ;} function
foreignKeys ( $Q ){ return
foreign_keys ( $Q );} function
backwardKeys ( $Q , $Nh ){ return
array ();} function
backwardKeysPrint ( $Pa , $I ){} function
selectQuery ( $F , $Dh , $Nc = false ){ global $x , $m ; $H = " </p> \n " ; if ( ! $Nc && ( $dj = $m -> warnings ())){ $t = " warnings " ; $H = " , <a href='# $t '> " . 'Warnings' . " </a> " . script ( " qsl('a').onclick = partial(toggle, ' $t '); " , " " ) . " $H <div id=' $t ' class='hidden'> \n $dj </div> \n " ;} return " <p><code class='jush- $x '> " . h ( str_replace ( " \n " , " " , $F )) . " </code> <span class='time'>( " . format_time ( $Dh ) . " )</span> " . ( support ( " sql " ) ? " <a href=' " . h ( ME ) . " sql= " . urlencode ( $F ) . " '> " . 'Edit' . " </a> " : " " ) . $H ;} function
sqlCommandQuery ( $F ){ return
shorten_utf8 ( trim ( $F ), 1000 );} function
rowDescription ( $Q ){ return " " ;} function
rowDescriptions ( $J , $dd ){ return $J ;} function
selectLink ( $X , $o ){} function
selectVal ( $X , $_ , $o , $Hf ){ $H = ( $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 )) $H = " <i> " . lang ( array ( '%d byte' , '%d bytes' ), strlen ( $Hf )) . " </i> " ; if ( preg_match ( '~json~' , $o [ " type " ])) $H = " <code class='jush-js'> $H </code> " ; return ( $_ ? " <a href=' " . h ( $_ ) . " ' " . ( is_url ( $_ ) ? target_blank () : " " ) . " > $H </a> " : $H );} 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 ( $w ){ echo " <table cellspacing='0'> \n " ; foreach ( $w
as $B => $v ){ ksort ( $v [ " columns " ]); $mg = array (); foreach ( $v [ " columns " ] as $y => $X ) $mg [] = " <i> " . h ( $X ) . " </i> " . ( $v [ " lengths " ][ $y ] ? " ( " . $v [ " lengths " ][ $y ] . " ) " : " " ) . ( $v [ " descs " ][ $y ] ? " DESC " : " " ); echo " <tr title=' " . h ( $B ) . " '><th> $v[type] <td> " . implode ( " , " , $mg ) . " \n " ;} echo " </table> \n " ;} function
selectColumnsPrint ( $K , $f ){ global $kd , $qd ; print_fieldset ( " select " , 'Select' , $K ); $s = 0 ; $K [ " " ] = array (); foreach ( $K
as $y => $X ){ $X = $_GET [ " columns " ][ $y ]; $e = select_input ( " name='columns[ $s ][col]' " , $f , $X [ " col " ],( $y !== " " ? " selectFieldChange " : " selectAddRow " )); echo " <div> " . ( $kd || $qd ? " <select name='columns[ $s ][fun]'> " . optionlist ( array ( - 1 => " " ) + array_filter ( array ( 'Functions' => $kd , 'Aggregation' => $qd )), $X [ " fun " ]) . " </select> " . on_help ( " getTarget(event).value && getTarget(event).value.replace(/ | \$ /, '(') + ')' " , 1 ) . script ( " qsl('select').onchange = function () { helpClose(); " . ( $y !== " " ? " " : " qsl('select, input', this.parentNode).onchange(); " ) . " }; " , " " ) . " ( $e ) " : $e ) . " </div> \n " ; $s ++ ;} echo " </div></fieldset> \n " ;} function
selectSearchPrint ( $Z , $f , $w ){ print_fieldset ( " search " , 'Search' , $Z ); foreach ( $w
as $s => $v ){ if ( $v [ " type " ] == " FULLTEXT " ){ echo " <div>(<i> " . implode ( " </i>, <i> " , array_map ( 'h' , $v [ " columns " ])) . " </i>) AGAINST " , " <input type='search' name='fulltext[ $s ]' value=' " . h ( $_GET [ " fulltext " ][ $s ]) . " '> " , script ( " qsl('input').oninput = selectFieldChange; " , " " ), checkbox ( " boolean[ $s ] " , 1 , isset ( $_GET [ " boolean " ][ $s ]), " BOOL " ), " </div> \n " ;}} $bb = " this.parentNode.firstChild.onchange(); " ; foreach ( array_merge (( array ) $_GET [ " where " ], array ( array ())) as $s => $X ){ if ( ! $X || ( " $X[col] $X[val] " != " " && in_array ( $X [ " op " ], $this -> operators ))){ echo " <div> " . select_input ( " name='where[ $s ][col]' " , $f , $X [ " col " ],( $X ? " selectFieldChange " : " selectAddRow " ), " ( " . 'anywhere' . " ) " ), html_select ( " where[ $s ][op] " , $this -> operators , $X [ " op " ], $bb ), " <input type='search' name='where[ $s ][val]' value=' " . h ( $X [ " val " ]) . " '> " , script ( " mixin(qsl('input'), { oninput: function () { $bb }, onkeydown: selectSearchKeydown, onsearch: selectSearchSearch}); " , " " ), " </div> \n " ;}} echo " </div></fieldset> \n " ;} function
selectOrderPrint ( $_f , $f , $w ){ print_fieldset ( " sort " , 'Sort' , $_f ); $s = 0 ; foreach (( array ) $_GET [ " order " ] as $y => $X ){ if ( $X != " " ){ echo " <div> " . select_input ( " name='order[ $s ]' " , $f , $X , " selectFieldChange " ), checkbox ( " desc[ $s ] " , 1 , isset ( $_GET [ " desc " ][ $y ]), 'descending' ) . " </div> \n " ; $s ++ ;}} echo " <div> " . select_input ( " name='order[ $s ]' " , $f , " " , " selectAddRow " ), checkbox ( " desc[ $s ] " , 1 , false , 'descending' ) . " </div> \n " , " </div></fieldset> \n " ;} function
selectLimitPrint ( $z ){ echo " <fieldset><legend> " . 'Limit' . " </legend><div> " ; echo " <input type='number' name='limit' class='size' value=' " . h ( $z ) . " '> " , script ( " qsl('input').oninput = selectFieldChange; " , " " ), " </div></fieldset> \n " ;} function
selectLengthPrint ( $di ){ if ( $di !== null ){ echo " <fieldset><legend> " . 'Text length' . " </legend><div> " , " <input type='number' name='text_length' class='size' value=' " . h ( $di ) . " '> " , " </div></fieldset> \n " ;}} function
selectActionPrint ( $w ){ 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 ( $w
as $v ){ $Lb = reset ( $v [ " columns " ]); if ( $v [ " type " ] != " FULLTEXT " && $Lb ) $f [ $Lb ] = 1 ;} $f [ " " ] = 1 ; foreach ( $f
as $y => $X ) json_row ( $y ); 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 ( $rc , $f ){} function
selectColumnsProcess ( $f , $w ){ global $kd , $qd ; $K = array (); $nd = array (); foreach (( array ) $_GET [ " columns " ] as $y => $X ){ if ( $X [ " fun " ] == " count " || ( $X [ " col " ] != " " && ( ! $X [ " fun " ] || in_array ( $X [ " fun " ], $kd ) || in_array ( $X [ " fun " ], $qd )))){ $K [ $y ] = apply_sql_function ( $X [ " fun " ],( $X [ " col " ] != " " ? idf_escape ( $X [ " col " ]) : " * " )); if ( ! in_array ( $X [ " fun " ], $qd )) $nd [] = $K [ $y ];}} return
array ( $K , $nd );} function
selectSearchProcess ( $p , $w ){ global $g , $m ; $H = array (); foreach ( $w
as $s => $v ){ if ( $v [ " type " ] == " FULLTEXT " && $_GET [ " fulltext " ][ $s ] != " " ) $H [] = " MATCH ( " . implode ( " , " , array_map ( 'idf_escape' , $v [ " columns " ])) . " ) AGAINST ( " . q ( $_GET [ " fulltext " ][ $s ]) . ( isset ( $_GET [ " boolean " ][ $s ]) ? " IN BOOLEAN MODE " : " " ) . " ) " ;} foreach (( array ) $_GET [ " where " ] as $y => $X ){ if ( " $X[col] $X[val] " != " " && in_array ( $X [ " op " ], $this -> operators )){ $ig = " " ; $wb = " $X[op] " ; if ( preg_match ( '~IN$~' , $X [ " op " ])){ $Hd = process_length ( $X [ " val " ]); $wb .= " " . ( $Hd != " " ? $Hd : " (NULL) " );} elseif ( $X [ " op " ] == " SQL " ) $wb = " $X[val] " ; elseif ( $X [ " op " ] == " LIKE %% " ) $wb = " LIKE " . $this -> processInput ( $p [ $X [ " col " ]], " % $X[val] % " ); elseif ( $X [ " op " ] == " ILIKE %% " ) $wb = " ILIKE " . $this -> processInput ( $p [ $X [ " col " ]], " % $X[val] % " ); elseif ( $X [ " op " ] == " FIND_IN_SET " ){ $ig = " $X[op] ( " . q ( $X [ " val " ]) . " , " ; $wb = " ) " ;} elseif ( ! preg_match ( '~NULL$~' , $X [ " op " ])) $wb .= " " . $this -> processInput ( $p [ $X [ " col " ]], $X [ " val " ]); if ( $X [ " col " ] != " " ) $H [] = $ig . $m -> convertSearch ( idf_escape ( $X [ " col " ]), $X , $p [ $X [ " col " ]]) . $wb ; else { $rb = array (); foreach ( $p
as $B => $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 " ]))) $rb [] = $ig . $m -> convertSearch ( idf_escape ( $B ), $X , $o ) . $wb ;} $H [] = ( $rb ? " ( " . implode ( " OR " , $rb ) . " ) " : " 1 = 0 " );}}} return $H ;} function
selectOrderProcess ( $p , $w ){ $H = array (); foreach (( array ) $_GET [ " order " ] as $y => $X ){ if ( $X != " " ) $H [] = ( preg_match ( '~^((COUNT\(DISTINCT |[A-Z0-9_]+\()(`(?:[^`]|``)+`|"(?:[^"]|"")+")\)|COUNT\(\*\))$~' , $X ) ? $X : idf_escape ( $X )) . ( isset ( $_GET [ " desc " ][ $y ]) ? " DESC " : " " );} return $H ;} function
selectLimitProcess (){ return ( isset ( $_GET [ " limit " ]) ? $_GET [ " limit " ] : " 50 " );} function
selectLengthProcess (){ return ( isset ( $_GET [ " text_length " ]) ? $_GET [ " text_length " ] : " 100 " );} function
selectEmailProcess ( $Z , $dd ){ return
false ;} function
selectQueryBuild ( $K , $Z , $nd , $_f , $z , $D ){ return " " ;} function
2019-12-08 10:11:37 +00:00
messageQuery ( $F , $ei , $Nc = false ){ global $x , $m ; restart_session (); $yd =& get_session ( " queries " ); if ( ! $yd [ $_GET [ " db " ]]) $yd [ $_GET [ " db " ]] = array (); if ( strlen ( $F ) > 1e6 ) $F = preg_replace ( '~[\x80-\xFF]+$~' , '' , substr ( $F , 0 , 1e6 )) . " \n … " ; $yd [ $_GET [ " db " ]][] = array ( $F , time (), $ei ); $Ah = " sql- " . count ( $yd [ $_GET [ " db " ]]); $H = " <a href='# $Ah ' class='toggle'> " . 'SQL command' . " </a> \n " ; if ( ! $Nc && ( $dj = $m -> warnings ())){ $t = " warnings- " . count ( $yd [ $_GET [ " db " ]]); $H = " <a href='# $t ' class='toggle'> " . 'Warnings' . " </a>, $H <div id=' $t ' class='hidden'> \n $dj </div> \n " ;} return " <span class='time'> " .@ date ( " H:i:s " ) . " </span> " . " $H <div id=' $Ah ' class='hidden'><pre><code class='jush- $x '> " . shorten_utf8 ( $F , 1000 ) . " </code></pre> " . ( $ei ? " <span class='time'>( $ei )</span> " : '' ) . ( support ( " sql " ) ? '<p><a href="' . h ( str_replace ( " db= " . urlencode ( DB ), " db= " . urlencode ( $_GET [ " db " ]), ME ) . 'sql=&history=' . ( count ( $yd [ $_GET [ " db " ]]) - 1 )) . '">' . 'Edit' . '</a>' : '' ) . '</div>' ;} function
2019-12-08 06:56:36 +00:00
editFunctions ( $o ){ global $mc ; $H = ( $o [ " null " ] ? " NULL/ " : " " ); foreach ( $mc
as $y => $kd ){ if ( ! $y || ( ! isset ( $_GET [ " call " ]) && ( isset ( $_GET [ " select " ]) || where ( $_GET )))){ foreach ( $kd
as $ag => $X ){ if ( ! $ag || preg_match ( " ~ $ag ~ " , $o [ " type " ])) $H .= " / $X " ;} if ( $y &&! preg_match ( '~set|blob|bytea|raw|file~' , $o [ " type " ])) $H .= " /SQL " ;}} if ( $o [ " auto_increment " ] &&! isset ( $_GET [ " select " ]) &&! where ( $_GET )) $H = 'Auto Increment' ; return
explode ( " / " , $H );} function
editInput ( $Q , $o , $Ja , $Y ){ if ( $o [ " type " ] == " enum " ) return ( isset ( $_GET [ " select " ]) ? " <label><input type='radio' $Ja value='-1' checked><i> " . 'original' . " </i></label> " : " " ) . ( $o [ " null " ] ? " <label><input type='radio' $Ja value='' " . ( $Y !== null || isset ( $_GET [ " select " ]) ? " " : " checked " ) . " ><i>NULL</i></label> " : " " ) . enum_input ( " radio " , $Ja , $o , $Y , 0 ); return " " ;} function
editHint ( $Q , $o , $Y ){ return " " ;} function
processInput ( $o , $Y , $r = " " ){ if ( $r == " SQL " ) return $Y ; $B = $o [ " field " ]; $H = q ( $Y ); if ( preg_match ( '~^(now|getdate|uuid)$~' , $r )) $H = " $r () " ; elseif ( preg_match ( '~^current_(date|timestamp)$~' , $r )) $H = $r ; elseif ( preg_match ( '~^([+-]|\|\|)$~' , $r )) $H = idf_escape ( $B ) . " $r $H " ; elseif ( preg_match ( '~^[+-] interval$~' , $r )) $H = idf_escape ( $B ) . " $r " . ( preg_match ( " ~^( \\ d+|'[0-9.: -]') [A-Z_]+ \$ ~i " , $Y ) ? $Y : $H ); elseif ( preg_match ( '~^(addtime|subtime|concat)$~' , $r )) $H = " $r ( " . idf_escape ( $B ) . " , $H ) " ; elseif ( preg_match ( '~^(md5|sha1|password|encrypt)$~' , $r )) $H = " $r ( $H ) " ; return
unconvert_field ( $o , $H );} function
dumpOutput (){ $H = array ( 'text' => 'open' , 'file' => 'save' ); if ( function_exists ( 'gzencode' )) $H [ 'gz' ] = 'gzip' ; return $H ;} function
dumpFormat (){ return
array ( 'sql' => 'SQL' , 'csv' => 'CSV,' , 'csv;' => 'CSV;' , 'tsv' => 'TSV' );} function
dumpDatabase ( $l ){} function
dumpTable ( $Q , $Ih , $ae = 0 ){ if ( $_POST [ " format " ] != " sql " ){ echo " \xef \xbb \xbf " ; if ( $Ih ) dump_csv ( array_keys ( fields ( $Q )));} else { if ( $ae == 2 ){ $p = array (); foreach ( fields ( $Q ) as $B => $o ) $p [] = idf_escape ( $B ) . " $o[full_type] " ; $i = " CREATE TABLE " . table ( $Q ) . " ( " . implode ( " , " , $p ) . " ) " ;} else $i = create_sql ( $Q , $_POST [ " auto_increment " ], $Ih ); set_utf8mb4 ( $i ); if ( $Ih && $i ){ if ( $Ih == " DROP+CREATE " || $ae == 1 ) echo " DROP " . ( $ae == 2 ? " VIEW " : " TABLE " ) . " IF EXISTS " . table ( $Q ) . " ; \n " ; if ( $ae == 1 ) $i = remove_definer ( $i ); echo " $i ; \n \n " ;}}} function
dumpData ( $Q , $Ih , $F ){ global $g , $x ; $Fe = ( $x == " sqlite " ? 0 : 1048576 ); if ( $Ih ){ if ( $_POST [ " format " ] == " sql " ){ if ( $Ih == " TRUNCATE+INSERT " ) echo
truncate_sql ( $Q ) . " ; \n " ; $p = fields ( $Q );} $G = $g -> query ( $F , 1 ); if ( $G ){ $Td = " " ; $Ya = " " ; $he = array (); $Kh = " " ; $Qc = ( $Q != '' ? 'fetch_assoc' : 'fetch_row' ); while ( $I = $G -> $Qc ()){ if ( ! $he ){ $Vi = array (); foreach ( $I
as $X ){ $o = $G -> fetch_field (); $he [] = $o -> name ; $y = idf_escape ( $o -> name ); $Vi [] = " $y = VALUES( $y ) " ;} $Kh = ( $Ih == " INSERT+UPDATE " ? " \n ON DUPLICATE KEY UPDATE " . implode ( " , " , $Vi ) : " " ) . " ; \n " ;} if ( $_POST [ " format " ] != " sql " ){ if ( $Ih == " table " ){ dump_csv ( $he ); $Ih = " INSERT " ;} dump_csv ( $I );} else { if ( ! $Td ) $Td = " INSERT INTO " . table ( $Q ) . " ( " . implode ( " , " , array_map ( 'idf_escape' , $he )) . " ) VALUES " ; foreach ( $I
as $y => $X ){ $o = $p [ $y ]; $I [ $y ] = ( $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 " );} $Yg = ( $Fe ? " \n " : " " ) . " ( " . implode ( " , \t " , $I ) . " ) " ; if ( ! $Ya ) $Ya = $Td . $Yg ; elseif ( strlen ( $Ya ) + 4 + strlen ( $Yg ) + strlen ( $Kh ) < $Fe ) $Ya .= " , $Yg " ; else { echo $Ya . $Kh ; $Ya = $Td . $Yg ;}}} if ( $Ya ) echo $Ya . $Kh ;} elseif ( $_POST [ " format " ] == " sql " ) echo " -- " . str_replace ( " \n " , " " , $g -> error ) . " \n " ;}} function
dumpFilename ( $Cd ){ return
friendly_url ( $Cd != " " ? $Cd : ( SERVER != " " ? SERVER : " localhost " ));} function
dumpHeaders ( $Cd , $Ue = false ){ $Kf = $_POST [ " output " ]; $Ic = ( preg_match ( '~sql~' , $_POST [ " format " ]) ? " sql " : ( $Ue ? " tar " : " csv " )); header ( " Content-Type: " . ( $Kf == " gz " ? " application/x-gzip " : ( $Ic == " tar " ? " application/x-tar " : ( $Ic == " sql " || $Kf != " file " ? " text/plain " : " text/csv " ) . " ; charset=utf-8 " ))); if ( $Kf == " gz " ) ob_start ( 'ob_gzencode' , 1e6 ); return $Ic ;} 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 ( $Te ){ global $ia , $x , $ec , $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 ( $Te == " auth " ){ $Kf = " " ; foreach (( array ) $_SESSION [ " pwds " ] as $Xi => $mh ){ foreach ( $mh
as $M => $Si ){ foreach ( $Si
as $V => $E ){ if ( $E !== null ){ $Rb = $_SESSION [ " db " ][ $Xi ][ $M ][ $V ]; foreach (( $Rb ? array_keys ( $Rb ) : array ( " " )) as $l ) $Kf .= " <li><a href=' " . h ( auth_url ( $Xi , $M , $V , $l )) . " '>( $ec[$Xi] ) " . h ( $V . ( $M != " " ? " @ " . $this -> serverName ( $M ) : " " ) . ( $l != " " ? " - $l " : " " )) . " </a> \n " ;}}}} if ( $Kf ) echo " <ul id='logins'> \n $Kf </ul> \n " . script ( " mixin(qs('#logins'), { onmouseover: menuOver, onmouseout: menuOut}); " );} else { if ( $_GET [ " ns " ] !== " " &&! $Te && DB != " " ){ $g -> select_db ( DB ); $S = table_status ( '' , true );} echo
script_src ( preg_replace ( " ~ \\ ?.*~ " , " " , ME ) . " ?file=jush.js&version=4.7.5 " ); if ( support ( " sql " )){ echo '<script' , nonce (), ' >
' ; if ( $S ){ $we = array (); foreach ( $S
as $Q => $T ) $we [] = preg_quote ( $Q , '/' ); echo " var jushLinks = { $x : [ ' " . 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. $x ; \n " ;} $lh = $g -> server_info ; echo 'bodyLoad(\'' ,( is_object ( $g ) ? preg_replace ( '~^(\d\.?\d).*~s' , '\1' , $lh ) : " " ), '\'' ,( preg_match ( '~MariaDB~' , $lh ) ? " , true " : " " ), ' );
</ script >
';}$this->databasesPrint($Te);if(DB==""||!$Te){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"]!==""&&!$Te&&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 ( $Te ){ global $b , $g ; $k = $this -> databases (); if ( $k &&! in_array ( DB , $k )) array_unshift ( $k , DB ); echo ' < form action = " " >
< p id = " dbs " >
';hidden_fields_get();$Pb=script("mixin(qsl(' select '), {onmousedown: dbMouseDown, onchange: dbChange});");echo"<span title=' " .'database'. " '>".' DB '."</span>: ".($k?"<select name=' db '>".optionlist(array(""=>"")+$k,DB)."</select>$Pb":"<input name=' db ' value=' " .h(DB). " ' autocapitalize=' off '>\n"),"<input type=' submit ' value=' " .'Use'. " '".($k?" class=' hidden '":"").">\n";if($Te!="db"&&DB!=""&&$g->select_db(DB)){if(support("scheme")){echo"<br>".' Schema '.": <select name=' ns '>".optionlist(array(""=>"")+$b->schemas(),$_GET["ns"])."</select>$Pb";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 ){ $B = $this -> tableName ( $O ); if ( $B != " " ){ echo '<li><a href="' . h ( ME ) . 'select=' . urlencode ( $Q ) . '"' . bold ( $_GET [ " select " ] == $Q || $_GET [ " edit " ] == $Q , " select " ) . " > " . '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' . " '> $B </a> " : " <span> $B </span> " ) . " \n " ;}} echo " </ul> \n " ;}} $b = ( function_exists ( 'adminer_object' ) ? adminer_object () : new
Adminer ); if ( $b -> operators === null ) $b -> operators = $vf ; function
page_header ( $hi , $n = " " , $Xa = array (), $ii = " " ){ global $ca , $ia , $b , $ec , $x ; page_headers (); if ( is_ajax () && $n ){ page_messages ( $n ); exit ;} $ji = $hi . ( $ii != " " ? " : $ii " : " " ); $ki = strip_tags ( $ji . ( 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 > ',$ki,' </ title >
< link rel = " stylesheet " type = " text/css " href = " ',h(preg_replace( " ~ \\ ? .*~ " , " " ,ME). " ? file = default . css & version = 4.7 . 5 " ),' " >
',script_src(preg_replace("~\\?.*~","",ME)."?file=functions.js&version=4.7.5");if($b->head()){echo' < link rel = " shortcut icon " type = " image/x-icon " href = " ',h(preg_replace( " ~ \\ ? .*~ " , " " ,ME). " ? file = favicon . ico & version = 4.7 . 5 " ),' " >
< link rel = " apple-touch-icon " href = " ',h(preg_replace( " ~ \\ ? .*~ " , " " ,ME). " ? file = favicon . ico & version = 4.7 . 5 " ),' " >
';foreach($b->css()as$Jb){echo' < link rel = " stylesheet " type = " text/css " href = " ',h( $Jb ),' " >
';}}echo'
< body class = " ltr nojs " >
';$Uc=get_temp_dir()."/adminer.version";if(!$_COOKIE["adminer_version"]&&function_exists(' openssl_verify ' ) && file_exists ( $Uc ) && filemtime ( $Uc ) + 86400 > time ()){ $Yi = unserialize ( file_get_contents ( $Uc )); $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( $Yi["version"] ,base64_decode( $Yi["signature"] ), $tg )==1) $_COOKIE["adminer_version"] = $Yi["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-', $x ,' jsonly hidden " ></ div >
',script("mixin(qs(' #help'), {onmouseover: function () { helpOpen = 1; }, onmouseout: helpMouseout});"),'
< div id = " content " >
';if($Xa!==null){$_=substr(preg_replace(' ~ \b ( username | db | ns ) = [ ^& ] *&~ ',' ',ME),0,-1);echo' < p id = " breadcrumb " >< a href = " '.h( $_ ? $_ : " . " ).' " > '.$ec[DRIVER].' </ a > & raquo ; ';$_=substr(preg_replace(' ~ \b ( db | ns ) = [ ^& ] *&~ ',' ',ME),0,-1);$M=$b->serverName(SERVER);$M=($M!=""?$M:' Server ');if($Xa===false)echo"$M\n";else{echo"<a href=' " .( $_ ?h( $_ ): " . " ). " ' accesskey=' 1 ' title=' Alt + Shift + 1 '>$M</a> » ";if($_GET["ns"]!=""||(DB!=""&&is_array($Xa)))echo' < a href = " '.h( $_ . " & db = " .urlencode(DB).(support( " scheme " )? " & ns = " : " " )).' " > '.h(DB).' </ a > & raquo ; ';if(is_array($Xa)){if($_GET["ns"]!="")echo' < a href = " '.h(substr(ME,0,-1)).' " > '.h($_GET["ns"]).' </ a > & raquo ; ' ; foreach ( $Xa
as $y => $X ){ $Xb = ( is_array ( $X ) ? $X [ 1 ] : h ( $X )); if ( $Xb != " " ) echo " <a href=' " . h ( ME . " $y = " ) . urlencode ( is_array ( $X ) ? $X [ 0 ] : $X ) . " '> $Xb </a> » " ;}} echo " $hi\n " ;}} echo " <h2> $ji </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 $Ib ){ $wd = array (); foreach ( $Ib
as $y => $X ) $wd [] = " $y $X " ; header ( " Content-Security-Policy: " . implode ( " ; " , $wd ));} $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 $df ; if ( ! $df ) $df = base64_encode ( rand_string ()); return $df ;} function
page_messages ( $n ){ $Ki = preg_replace ( '~^[^?]*~' , '' , $_SERVER [ " REQUEST_URI " ]); $Pe = $_SESSION [ " messages " ][ $Ki ]; if ( $Pe ){ echo " <div class='message'> " . implode ( " </div> \n <div class='message'> " , $Pe ) . " </div> " . script ( " messagesPrint(); " ); unset ( $_SESSION [ " messages " ][ $Ki ]);} if ( $n ) echo " <div class='error'> $n </div> \n " ;} function
page_footer ( $Te = " " ){ global $b , $oi ; echo ' </ div >
';if($Te!="auth"){echo' < form action = " " method = " post " >
< p class = " logout " >
< input type = " submit " name = " logout " value = " Logout " id = " logout " >
< input type = " hidden " name = " token " value = " ', $oi ,' " >
</ p >
</ form >
';}echo' < div id = " menu " >
';$b->navigation($Te);echo' </ div >
' , script ( " setupSubmitHighlight(document); " );} function
int32 ( $We ){ while ( $We >= 2147483648 ) $We -= 4294967296 ; while ( $We <=- 2147483649 ) $We += 4294967296 ; return ( int ) $We ;} function
long2str ( $W , $cj ){ $Yg = '' ; foreach ( $W
as $X ) $Yg .= pack ( 'V' , $X ); if ( $cj ) return
substr ( $Yg , 0 , end ( $W )); return $Yg ;} function
str2long ( $Yg , $cj ){ $W = array_values ( unpack ( 'V*' , str_pad ( $Yg , 4 * ceil ( strlen ( $Yg ) / 4 ), " \0 " ))); if ( $cj ) $W [] = strlen ( $Yg ); return $W ;} function
xxtea_mx ( $pj , $oj , $Lh , $de ){ return
int32 ((( $pj >> 5 & 0x7FFFFFF ) ^ $oj << 2 ) + (( $oj >> 3 & 0x1FFFFFFF ) ^ $pj << 4 )) ^ int32 (( $Lh ^ $oj ) + ( $de ^ $pj ));} function
encrypt_string ( $Gh , $y ){ if ( $Gh == " " ) return " " ; $y = array_values ( unpack ( " V* " , pack ( " H* " , md5 ( $y )))); $W = str2long ( $Gh , true ); $We = count ( $W ) - 1 ; $pj = $W [ $We ]; $oj = $W [ 0 ]; $ug = floor ( 6 + 52 / ( $We + 1 )); $Lh = 0 ; while ( $ug --> 0 ){ $Lh = int32 ( $Lh + 0x9E3779B9 ); $lc = $Lh >> 2 & 3 ; for ( $Lf = 0 ; $Lf < $We ; $Lf ++ ){ $oj = $W [ $Lf + 1 ]; $Ve = xxtea_mx ( $pj , $oj , $Lh , $y [ $Lf & 3 ^ $lc ]); $pj = int32 ( $W [ $Lf ] + $Ve ); $W [ $Lf ] = $pj ;} $oj = $W [ 0 ]; $Ve = xxtea_mx ( $pj , $oj , $Lh , $y [ $Lf & 3 ^ $lc ]); $pj = int32 ( $W [ $We ] + $Ve ); $W [ $We ] = $pj ;} return
long2str ( $W , false );} function
decrypt_string ( $Gh , $y ){ if ( $Gh == " " ) return " " ; if ( ! $y ) return
false ; $y = array_values ( unpack ( " V* " , pack ( " H* " , md5 ( $y )))); $W = str2long ( $Gh , false ); $We = count ( $W ) - 1 ; $pj = $W [ $We ]; $oj = $W [ 0 ]; $ug = floor ( 6 + 52 / ( $We + 1 )); $Lh = int32 ( $ug * 0x9E3779B9 ); while ( $Lh ){ $lc = $Lh >> 2 & 3 ; for ( $Lf = $We ; $Lf > 0 ; $Lf -- ){ $pj = $W [ $Lf - 1 ]; $Ve = xxtea_mx ( $pj , $oj , $Lh , $y [ $Lf & 3 ^ $lc ]); $oj = int32 ( $W [ $Lf ] - $Ve ); $W [ $Lf ] = $oj ;} $pj = $W [ $We ]; $Ve = xxtea_mx ( $pj , $oj , $Lh , $y [ $Lf & 3 ^ $lc ]); $oj = int32 ( $W [ 0 ] - $Ve ); $W [ 0 ] = $oj ; $Lh = int32 ( $Lh - 0x9E3779B9 );} return
long2str ( $W , true );} $g = '' ; $vd = $_SESSION [ " token " ]; if ( ! $vd ) $_SESSION [ " token " ] = rand ( 1 , 1e6 ); $oi = get_token (); $bg = array (); if ( $_COOKIE [ " adminer_permanent " ]){ foreach ( explode ( " " , $_COOKIE [ " adminer_permanent " ]) as $X ){ list ( $y ) = explode ( " : " , $X ); $bg [ $y ] = $X ;}} function
add_invalid_login (){ global $b ; $id = file_open_lock ( get_temp_dir () . " /adminer.invalid " ); if ( ! $id ) return ; $Wd = unserialize ( stream_get_contents ( $id )); $ei = time (); if ( $Wd ){ foreach ( $Wd
as $Xd => $X ){ if ( $X [ 0 ] < $ei ) unset ( $Wd [ $Xd ]);}} $Vd =& $Wd [ $b -> bruteForceKey ()]; if ( ! $Vd ) $Vd = array ( $ei + 30 * 60 , 0 ); $Vd [ 1 ] ++ ; file_write_unlock ( $id , serialize ( $Wd ));} function
check_invalid_login (){ global $b ; $Wd = unserialize ( @ file_get_contents ( get_temp_dir () . " /adminer.invalid " )); $Vd = $Wd [ $b -> bruteForceKey ()]; $cf = ( $Vd [ 1 ] > 29 ? $Vd [ 0 ] - time () : 0 ); if ( $cf > 0 ) auth_error ( lang ( array ( 'Too many unsuccessful logins, try again in %d minute.' , 'Too many unsuccessful logins, try again in %d minutes.' ), ceil ( $cf / 60 )));} $Ka = $_POST [ " auth " ]; if ( $Ka ){ session_regenerate_id (); $Xi = $Ka [ " driver " ]; $M = $Ka [ " server " ]; $V = $Ka [ " username " ]; $E = ( string ) $Ka [ " password " ]; $l = $Ka [ " db " ]; set_password ( $Xi , $M , $V , $E ); $_SESSION [ " db " ][ $Xi ][ $M ][ $V ][ $l ] = true ; if ( $Ka [ " permanent " ]){ $y = base64_encode ( $Xi ) . " - " . base64_encode ( $M ) . " - " . base64_encode ( $V ) . " - " . base64_encode ( $l ); $ng = $b -> permanentLogin ( true ); $bg [ $y ] = " $y : " . base64_encode ( $ng ? encrypt_string ( $E , $ng ) : " " ); cookie ( " adminer_permanent " , implode ( " " , $bg ));} if ( count ( $_POST ) == 1 || DRIVER != $Xi || SERVER != $M || $_GET [ " username " ] !== $V || DB != $l ) redirect ( auth_url ( $Xi , $M , $V , $l ));} elseif ( $_POST [ " logout " ]){ if ( $vd &&! verify_token ()){ page_header ( 'Logout' , 'Invalid CSRF token. Send the form again.' ); page_footer ( " db " ); exit ;} else { foreach ( array ( " pwds " , " db " , " dbs " , " queries " ) as $y ) set_session ( $y , 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 $y => $X ){ list (, $jb ) = explode ( " : " , $X ); list ( $Xi , $M , $V , $l ) = array_map ( 'base64_decode' , explode ( " - " , $y )); set_password ( $Xi , $M , $V , decrypt_string ( base64_decode ( $jb ), $ng )); $_SESSION [ " db " ][ $Xi ][ $M ][ $V ][ $l ] = true ;}} function
unset_permanent (){ global $bg ; foreach ( $bg
as $y => $X ){ list ( $Xi , $M , $V , $l ) = array_map ( 'base64_decode' , explode ( " - " , $y )); if ( $Xi == DRIVER && $M == SERVER && $V == $_GET [ " username " ] && $l == DB ) unset ( $bg [ $y ]);} cookie ( " adminer_permanent " , implode ( " " , $bg ));} function
auth_error ( $n ){ global $b , $vd ; $nh = session_name (); if ( isset ( $_GET [ " username " ])){ header ( " HTTP/1.1 403 Forbidden " ); if (( $_COOKIE [ $nh ] || $_GET [ $nh ]) &&! $vd ) $n = 'Session expired, please login again.' ; else { restart_session (); add_invalid_login (); $E = get_password (); if ( $E !== null ){ if ( $E === false ) $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 [ $nh ] && $_GET [ $nh ] && 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 ( $Ad , $dg ) = explode ( " : " , SERVER , 2 ); if ( is_numeric ( $dg ) && $dg < 1024 ) auth_error ( 'Connecting to privileged ports is not allowed.' ); check_invalid_login (); $g = connect (); $m = new
Min_Driver ( $g );} $ye = null ; if ( ! is_object ( $g ) || ( $ye = $b -> login ( $_GET [ " username " ], get_password ())) !== true ){ $n = ( is_string ( $g ) ? h ( $g ) : ( is_string ( $ye ) ? $ye : 'Invalid credentials.' )); auth_error ( $n . ( preg_match ( '~^ | $~' , get_password ()) ? '<br>' . 'There is a space in the input password which might be the cause.' : '' ));} if ( $Ka && $_POST [ " token " ]) $_POST [ " token " ] = $oi ; $n = '' ; if ( $_POST ){ if ( ! verify_token ()){ $Qd = " max_input_vars " ; $Je = ini_get ( $Qd ); if ( extension_loaded ( " suhosin " )){ foreach ( array ( " suhosin.request.max_vars " , " suhosin.post.max_vars " ) as $y ){ $X = ini_get ( $y ); if ( $X && ( ! $Je || $X < $Je )){ $Qd = $y ; $Je = $X ;}}} $n = ( ! $_POST [ " token " ] && $Je ? sprintf ( 'Maximum number of allowed fields exceeded. Please increase %s.' , " ' $Qd ' " ) : '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 ( $G , $h = null , $Cf = array (), $z = 0 ){ global $x ; $we = array (); $w = array (); $f = array (); $Ua = array (); $U = array (); $H = array (); odd ( '' ); for ( $s = 0 ;( ! $z || $s < $z ) && ( $I = $G -> fetch_row ()); $s ++ ){ if ( ! $s ){ echo " <div class='scrollable'> \n " , " <table cellspacing='0' class='nowrap'> \n " , " <thead><tr> " ; for ( $ce = 0 ; $ce < count ( $I ); $ce ++ ){ $o = $G -> fetch_field (); $B = $o -> name ; $Bf = $o -> orgtable ; $Af = $o -> orgname ; $H [ $o -> table ] = $Bf ; if ( $Cf && $x == " sql " ) $we [ $ce ] = ( $B == " table " ? " table= " : ( $B == " possible_keys " ? " indexes= " : null )); elseif ( $Bf != " " ){ if ( ! isset ( $w [ $Bf ])){ $w [ $Bf ] = array (); foreach ( indexes ( $Bf , $h ) as $v ){ if ( $v [ " type " ] == " PRIMARY " ){ $w [ $Bf ] = array_flip ( $v [ " columns " ]); break ;}} $f [ $Bf ] = $w [ $Bf ];} if ( isset ( $f [ $Bf ][ $Af ])){ unset ( $f [ $Bf ][ $Af ]); $w [ $Bf ][ $Af ] = $ce ; $we [ $ce ] = $Bf ;}} if ( $o -> charsetnr == 63 ) $Ua [ $ce ] = true ; $U [ $ce ] = $o -> type ; echo " <th " . ( $Bf != " " || $o -> name != $Af ? " title=' " . h (( $Bf != " " ? " $Bf . " : " " ) . $Af ) . " ' " : " " ) . " > " . h ( $B ) . ( $Cf ? doc_link ( array ( 'sql' => " explain-output.html#explain_ " . strtolower ( $B ), 'mariadb' => " explain/#the-columns-in-explain-select " ,)) : " " );} echo " </thead> \n " ;} echo " <tr " . odd () . " > " ; foreach ( $I
as $y => $X ){ if ( $X === null ) $X = " <i>NULL</i> " ; elseif ( $Ua [ $y ] &&! is_utf8 ( $X )) $X = " <i> " . lang ( array ( '%d byte' , '%d bytes' ), strlen ( $X )) . " </i> " ; else { $X = h ( $X ); if ( $U [ $y ] == 254 ) $X = " <code> $X </code> " ;} if ( isset ( $we [ $y ]) &&! $f [ $we [ $y ]]){ if ( $Cf && $x == " sql " ){ $Q = $I [ array_search ( " table= " , $we )]; $_ = $we [ $y ] . urlencode ( $Cf [ $Q ] != " " ? $Cf [ $Q ] : $Q );} else { $_ = " edit= " . urlencode ( $we [ $y ]); foreach ( $w [ $we [ $y ]] as $nb => $ce ) $_ .= " &where " . urlencode ( " [ " . bracket_escape ( $nb ) . " ] " ) . " = " . urlencode ( $I [ $ce ]);} $X = " <a href=' " . h ( ME . $_ ) . " '> $X </a> " ;} echo " <td> $X " ;}} echo ( $s ? " </table> \n </div> " : " <p class='message'> " . 'No rows.' ) . " \n " ; return $H ;} function
referencable_primary ( $hh ){ $H = array (); foreach ( table_status ( '' , true ) as $Ph => $Q ){ if ( $Ph != $hh && fk_support ( $Q )){ foreach ( fields ( $Ph ) as $o ){ if ( $o [ " primary " ]){ if ( $H [ $Ph ]){ unset ( $H [ $Ph ]); break ;} $H [ $Ph ] = $o ;}}}} return $H ;} function
adminer_settings (){ parse_str ( $_COOKIE [ " adminer_settings " ], $ph ); return $ph ;} function
adminer_setting ( $y ){ $ph = adminer_settings (); return $ph [ $y ];} function
set_adminer_settings ( $ph ){ return
cookie ( " adminer_settings " , http_build_query ( $ph + adminer_settings ()));} function
textarea ( $B , $Y , $J = 10 , $rb = 80 ){ global $x ; echo " <textarea name=' $B ' rows=' $J ' cols=' $rb ' class='sqlarea jush- $x ' 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 ( $y , $o , $pb , $ed = array (), $Lc = array ()){ global $Hh , $U , $Ii , $qf ; $T = $o [ " type " ]; echo '<td><select name="' , h ( $y ), '[type]" class="type" aria-labelledby="label-type">' ; if ( $T &&! isset ( $U [ $T ]) &&! isset ( $ed [ $T ]) &&! in_array ( $T , $Lc )) $Lc [] = $T ; if ( $ed ) $Hh [ 'Foreign keys' ] = $ed ; echo
optionlist ( array_merge ( $Lc , $Hh ), $T ), '</select>' , on_help ( " getTarget(event).value " , 1 ), script ( " mixin(qsl('select'), { onfocus: function () { lastType = selectValue(this); }, onchange: editingTypeChange}); " , " " ), '<td><input name="' , h ( $y ), '[length]" value="' , h ( $o [ " length " ]), '" size="3"' ,( ! $o [ " length " ] && preg_match ( '~var(char|binary)$~' , $T ) ? " class='required' " : " " ); echo ' aria-labelledby="label-length">' , script ( " mixin(qsl('input'), { onfocus: editingLengthFocus, oninput: editingLengthChange}); " , " " ), '<td class="options">' , " <select name=' " . h ( $y ) . " [collation]' " . ( preg_match ( '~(char|text|enum|set)$~' , $T ) ? " " : " class='hidden' " ) . '><option value="">(' . 'collation' . ')' . optionlist ( $pb , $o [ " collation " ]) . '</select>' ,( $Ii ? " <select name=' " . h ( $y ) . " [unsigned]' " . ( ! $T || preg_match ( number_type (), $T ) ? " " : " class='hidden' " ) . '><option>' . optionlist ( $Ii , $o [ " unsigned " ]) . '</select>' : '' ),( isset ( $o [ 'on_update' ]) ? " <select name=' " . h ( $y ) . " [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>' : '' ),( $ed ? " <select name=' " . h ( $y ) . " [on_delete]' " . ( preg_match ( " ~`~ " , $T ) ? " " : " class='hidden' " ) . " ><option value=''>( " . 'ON DELETE' . " ) " . optionlist ( explode ( " | " , $qf ), $o [ " on_delete " ]) . " </select> " : " " );} function
process_length ( $te ){ global $wc ; return ( preg_match ( " ~^ \\ s* \\ (? \\ s* $wc (?: \\ s*, \\ s* $wc )*+ \\ s* \\ )? \\ s* \$ ~ " , $te ) && preg_match_all ( " ~ $wc ~ " , $te , $De ) ? " ( " . implode ( " , " , $De [ 0 ]) . " ) " : preg_replace ( '~^[0-9].*~' , '(\0)' , preg_replace ( '~[^-0-9,+()[\]]~' , '' , $te )));} function
process_type ( $o , $ob = " COLLATE " ){ global $Ii ; return " $o[type] " . process_length ( $o [ " length " ]) . ( preg_match ( number_type (), $o [ " type " ]) && in_array ( $o [ " unsigned " ], $Ii ) ? " $o[unsigned] " : " " ) . ( preg_match ( '~char|text|enum|set~' , $o [ " type " ]) && $o [ " collation " ] ? " $ob " . q ( $o [ " collation " ]) : " " );} function
process_field ( $o , $Ai ){ return
array ( idf_escape ( trim ( $o [ " field " ])), process_type ( $Ai ),( $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 ){ $Tb = $o [ " default " ]; return ( $Tb === null ? " " : " DEFAULT " . ( preg_match ( '~char|binary|text|enum|set~' , $o [ " type " ]) || preg_match ( '~^(?![a-z])~i' , $Tb ) ? q ( $Tb ) : $Tb ));} function
type_class ( $T ){ foreach ( array ( 'char' => 'text' , 'date' => 'time|year' , 'binary' => 'blob' , 'enum' => 'set' ,) as $y => $X ){ if ( preg_match ( " ~ $y | $X ~ " , $T )) return " class=' $y ' " ;}} function
edit_fields ( $p , $pb , $T = " TABLE " , $ed = array ()){ global $Rd ; $p = array_values ( $p ); 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 " > Default value
',(support("comment")?"<td id=' label - comment '>".' 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.7 . 5 " ). " ' alt=' + ' title=' " .'Add next'. " '>".script("row_count = ".count($p).";"),' </ thead >
< tbody >
',script("mixin(qsl(' tbody ' ), { onclick : editingClick , onkeydown : editingKeydown , oninput : editingInput }); " );foreach( $p
as $s => $o ){ $s ++ ; $Df = $o [( $_POST ? " orig " : " field " )]; $bc = ( isset ( $_POST [ " add " ][ $s - 1 ]) || ( isset ( $o [ " field " ]) &&! $_POST [ " drop_col " ][ $s ])) && ( support ( " drop_col " ) || $Df == " " ); echo '<tr' ,( $bc ? " " : " style='display: none;' " ), ' >
2019-12-08 10:11:37 +00:00
',($T=="PROCEDURE"?"<td>".html_select("fields[$s][inout]",explode("|",$Rd),$o["inout"]):""),' < th > ';if($bc){echo' < input name = " fields[', $s ,'][field] " value = " ',h( $o["field"] ),' " data - maxlength = " 64 " autocapitalize = " off " aria - labelledby = " label-name " > ',script("qsl(' input ').oninput = function () { editingNameChange.call(this);".($o["field"]!=""||count($p)>1?"":" editingAddRow.call(this);")." };","");}echo' < input type = " hidden " name = " fields[', $s ,'][orig] " value = " ',h( $Df ),' " > ';edit_type("fields[$s]",$o,$pb,$ed);if($T=="TABLE"){echo' < td > ',checkbox("fields[$s][null]",1,$o["null"],"","","block","label-null"),' < td >< label class = " block " >< input type = " radio " name = " auto_increment_col " value = " ', $s ,' " ';if($o["auto_increment"]){echo' checked ';}echo' aria - labelledby = " label-ai " ></ label >< td > ',checkbox("fields[$s][has_default]",1,$o["has_default"],"","","","label-default"),' < input name = " fields[', $s ,'][default] " value = " ',h( $o["default"] ),' " aria - labelledby = " label-default " > ',(support("comment")?"<td><input name=' fields [ $s ][ 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 [ $s ] ' src=' " .h(preg_replace( " ~ \\ ? .*~ " , " " ,ME). " ? file = plus . gif & version = 4.7 . 5 " ). " ' alt=' + ' title=' " .'Add next'. " '> "."<input type=' image ' class=' icon ' name=' up [ $s ] ' src=' " .h(preg_replace( " ~ \\ ? .*~ " , " " ,ME). " ? file = up . gif & version = 4.7 . 5 " ). " ' alt=' ↑ ' title=' " .'Move up'. " '> "."<input type=' image ' class=' icon ' name=' down [ $s ] ' src=' " .h(preg_replace( " ~ \\ ? .*~ " , " " ,ME). " ? file = down . gif & version = 4.7 . 5 " ). " ' alt=' ↓ ' title=' " .'Move down'. " '> ":""),($Df==""||support("drop_col")?"<input type=' image ' class=' icon ' name=' drop_col [ $s ] ' src=' " .h(preg_replace( " ~ \\ ? .*~ " , " " ,ME). " ? file = cross . gif & version = 4.7 . 5 " ). " ' alt=' x ' title=' " .'Remove'. " ' > " : " " );}}function
2019-12-08 06:56:36 +00:00
process_fields ( & $p ){ $C = 0 ; if ( $_POST [ " up " ]){ $ne = 0 ; foreach ( $p
as $y => $o ){ if ( key ( $_POST [ " up " ]) == $y ){ unset ( $p [ $y ]); array_splice ( $p , $ne , 0 , array ( $o )); break ;} if ( isset ( $o [ " field " ])) $ne = $C ; $C ++ ;}} elseif ( $_POST [ " down " ]){ $gd = false ; foreach ( $p
as $y => $o ){ if ( isset ( $o [ " field " ]) && $gd ){ unset ( $p [ key ( $_POST [ " down " ])]); array_splice ( $p , $C , 0 , array ( $gd )); break ;} if ( key ( $_POST [ " down " ]) == $y ) $gd = $o ; $C ++ ;}} 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 ( $A ){ return " ' " . str_replace ( " ' " , " '' " , addcslashes ( stripcslashes ( str_replace ( $A [ 0 ][ 0 ] . $A [ 0 ][ 0 ], $A [ 0 ][ 0 ], substr ( $A [ 0 ], 1 , - 1 ))), '\\' )) . " ' " ;} function
grant ( $ld , $pg , $f , $pf ){ if ( ! $pg ) return
true ; if ( $pg == array ( " ALL PRIVILEGES " , " GRANT OPTION " )) return ( $ld == " GRANT " ? queries ( " $ld ALL PRIVILEGES $pf WITH GRANT OPTION " ) : queries ( " $ld ALL PRIVILEGES $pf " ) && queries ( " $ld GRANT OPTION $pf " )); return
queries ( " $ld " . preg_replace ( '~(GRANT OPTION)\([^)]*\)~' , '\1' , implode ( " $f , " , $pg ) . $f ) . $pf );} function
drop_create ( $fc , $i , $gc , $bi , $ic , $xe , $Oe , $Me , $Ne , $mf , $Ze ){ if ( $_POST [ " drop " ]) query_redirect ( $fc , $xe , $Oe ); elseif ( $mf == " " ) query_redirect ( $i , $xe , $Ne ); elseif ( $mf != $Ze ){ $Gb = queries ( $i ); queries_redirect ( $xe , $Me , $Gb && queries ( $fc )); if ( $Gb ) queries ( $gc );} else
queries_redirect ( $xe , $Me , queries ( $bi ) && queries ( $ic ) && queries ( $fc ) && queries ( $i ));} function
create_trigger ( $pf , $I ){ global $x ; $gi = " $I[Timing] $I[Event] " . ( $I [ " Event " ] == " UPDATE OF " ? " " . idf_escape ( $I [ " Of " ]) : " " ); return " CREATE TRIGGER " . idf_escape ( $I [ " Trigger " ]) . ( $x == " mssql " ? $pf . $gi : $gi . $pf ) . rtrim ( " $I[Type] \n $I[Statement] " , " ; " ) . " ; " ;} function
create_routine ( $Ug , $I ){ global $Rd , $x ; $N = array (); $p = ( array ) $I [ " fields " ]; ksort ( $p ); foreach ( $p
as $o ){ if ( $o [ " field " ] != " " ) $N [] = ( preg_match ( " ~^( $Rd ) \$ ~ " , $o [ " inout " ]) ? " $o[inout] " : " " ) . idf_escape ( $o [ " field " ]) . process_type ( $o , " CHARACTER SET " );} $Ub = rtrim ( " \n $I[definition] " , " ; " ); return " CREATE $Ug " . idf_escape ( trim ( $I [ " name " ])) . " ( " . implode ( " , " , $N ) . " ) " . ( isset ( $_GET [ " function " ]) ? " RETURNS " . process_type ( $I [ " returns " ], " CHARACTER SET " ) : " " ) . ( $I [ " language " ] ? " LANGUAGE $I[language] " : " " ) . ( $x == " pgsql " ? " AS " . q ( $Ub ) : " $Ub ; " );} function
remove_definer ( $F ){ return
preg_replace ( '~^([A-Z =]+) DEFINER=`' . preg_replace ( '~@(.*)~' , '`@`(%|\1)' , logged_user ()) . '`~' , '\1' , $F );} function
format_foreign_key ( $q ){ global $qf ; $l = $q [ " db " ]; $ef = $q [ " ns " ]; return " FOREIGN KEY ( " . implode ( " , " , array_map ( 'idf_escape' , $q [ " source " ])) . " ) REFERENCES " . ( $l != " " && $l != $_GET [ " db " ] ? idf_escape ( $l ) . " . " : " " ) . ( $ef != " " && $ef != $_GET [ " ns " ] ? idf_escape ( $ef ) . " . " : " " ) . table ( $q [ " table " ]) . " ( " . implode ( " , " , array_map ( 'idf_escape' , $q [ " target " ])) . " ) " . ( preg_match ( " ~^( $qf ) \$ ~ " , $q [ " on_delete " ]) ? " ON DELETE $q[on_delete] " : " " ) . ( preg_match ( " ~^( $qf ) \$ ~ " , $q [ " on_update " ]) ? " ON UPDATE $q[on_update] " : " " );} function
tar_file ( $Uc , $li ){ $H = pack ( " a100a8a8a8a12a12 " , $Uc , 644 , 0 , 0 , decoct ( $li -> size ), decoct ( time ())); $hb = 8 * 32 ; for ( $s = 0 ; $s < strlen ( $H ); $s ++ ) $hb += ord ( $H [ $s ]); $H .= sprintf ( " %06o " , $hb ) . " \0 " ; echo $H , str_repeat ( " \0 " , 512 - strlen ( $H )); $li -> send (); echo
str_repeat ( " \0 " , 511 - ( $li -> size + 511 ) % 512 );} function
ini_bytes ( $Qd ){ $X = ini_get ( $Qd ); switch ( strtolower ( substr ( $X , - 1 ))){ case 'g' : $X *= 1024 ; case 'm' : $X *= 1024 ; case 'k' : $X *= 1024 ;} return $X ;} function
doc_link ( $Zf , $ci = " <sup>?</sup> " ){ global $x , $g ; $lh = $g -> server_info ; $Yi = preg_replace ( '~^(\d\.?\d).*~s' , '\1' , $lh ); $Ni = array ( 'sql' => " https://dev.mysql.com/doc/refman/ $Yi /en/ " , 'sqlite' => " https://www.sqlite.org/ " , 'pgsql' => " https://www.postgresql.org/docs/ $Yi / " , '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' , $lh ) . " &id= " ,); if ( preg_match ( '~MariaDB~' , $lh )){ $Ni [ 'sql' ] = " https://mariadb.com/kb/en/library/ " ; $Zf [ 'sql' ] = ( isset ( $Zf [ 'mariadb' ]) ? $Zf [ 'mariadb' ] : str_replace ( " .html " , " / " , $Zf [ 'sql' ]));} return ( $Zf [ $x ] ? " <a href=' $Ni[$x] $Zf[$x] ' " . target_blank () . " > $ci </a> " : " " );} function
ob_gzencode ( $P ){ return
gzencode ( $P );} function
db_size ( $l ){ global $g ; if ( ! $g -> select_db ( $l )) return " ? " ; $H = 0 ; foreach ( table_status () as $R ) $H += $R [ " Data_length " ] + $R [ " Index_length " ]; return
format_number ( $H );} 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 , $oi , $n , $ec ; 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 $y => $X ){ if ( support ( $y )) echo " <a href=' " . h ( ME ) . " $y ='> $X </a> \n " ;} echo " <p> " . sprintf ( '%s version: %s through PHP extension %s' , $ec [ 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 ){ $bh = support ( " scheme " ); $pb = 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 ){ $Tg = h ( ME ) . " db= " . urlencode ( $l ); $t = h ( " Db- " . $l ); echo " <tr " . odd () . " > " . ( support ( " database " ) ? " <td> " . checkbox ( " db[] " , $l , in_array ( $l ,( array ) $_POST [ " db " ]), " " , " " , " " , $t ) : " " ), " <th><a href=' $Tg ' id=' $t '> " . h ( $l ) . " </a> " ; $d = h ( db_collation ( $l , $pb )); echo " <td> " . ( support ( " database " ) ? " <a href=' $Tg " . ( $bh ? " &ns= " : " " ) . " &database=' title=' " . 'Alter database' . " '> $d </a> " : $d ), " <td align='right'><a href=' $Tg &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=' $oi '> \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 " ) && 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 ;}} $qf = " RESTRICT|NO ACTION|CASCADE|SET NULL|SET DEFAULT " ; class
TmpFile { var $handler ; var $size ; function
__construct (){ $this -> handler = tmpfile ();} function
write ( $Ab ){ $this -> size += strlen ( $Ab ); fwrite ( $this -> handler , $Ab );} function
send (){ fseek ( $this -> handler , 0 ); fpassthru ( $this -> handler ); fclose ( $this -> handler );}} $wc = " '(?:''|[^' \\ \\ ]| \\ \\ .)*' " ; $Rd = " 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 " ])); $K = array ( idf_escape ( $_GET [ " field " ])); $G = $m -> select ( $a , $K , array ( where ( $_GET , $p )), $K ); $I = ( $G ? $G -> fetch_row () : array ()); echo $m -> value ( $I [ 0 ], $p [ $_GET [ " field " ]]); exit ;} elseif ( isset ( $_GET [ " table " ])){ $a = $_GET [ " table " ]; $p = fields ( $a ); if ( ! $p ) $n = error (); $R = table_status1 ( $a , true ); $B = $b -> tableName ( $R ); page_header (( $p && is_view ( $R ) ? $R [ 'Engine' ] == 'materialized view' ? 'Materialized view' : 'View' : 'Table' ) . " : " . ( $B != " " ? $B : h ( $a )), $n ); $b -> selectLinks ( $R ); $ub = $R [ " Comment " ]; if ( $ub != " " ) echo " <p class='nowrap'> " . 'Comment' . " : " . h ( $ub ) . " \n " ; if ( $p ) $b -> tableStructurePrint ( $p ); if ( ! is_view ( $R )){ if ( support ( " indexes " )){ echo " <h3 id='indexes'> " . 'Indexes' . " </h3> \n " ; $w = indexes ( $a ); if ( $w ) $b -> tableIndexesPrint ( $w ); 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 " ; $ed = foreign_keys ( $a ); if ( $ed ){ echo " <table cellspacing='0'> \n " , " <thead><tr><th> " . 'Source' . " <td> " . 'Target' . " <td> " . 'ON DELETE' . " <td> " . 'ON UPDATE' . " <td></thead> \n " ; foreach ( $ed
as $B => $q ){ echo " <tr title=' " . h ( $B ) . " '> " , " <th><i> " . implode ( " </i>, <i> " , array_map ( 'h' , $q [ " source " ])) . " </i> " , " <td><a href=' " . h ( $q [ " db " ] != " " ? preg_replace ( '~db=[^&]*~' , " db= " . urlencode ( $q [ " db " ]), ME ) : ( $q [ " ns " ] != " " ? preg_replace ( '~ns=[^&]*~' , " ns= " . urlencode ( $q [ " ns " ]), ME ) : ME )) . " table= " . urlencode ( $q [ " table " ]) . " '> " . ( $q [ " db " ] != " " ? " <b> " . h ( $q [ " db " ]) . " </b>. " : " " ) . ( $q [ " ns " ] != " " ? " <b> " . h ( $q [ " ns " ]) . " </b>. " : " " ) . h ( $q [ " table " ]) . " </a> " , " (<i> " . implode ( " </i>, <i> " , array_map ( 'h' , $q [ " target " ])) . " </i>) " , " <td> " . h ( $q [ " on_delete " ]) . " \n " , " <td> " . h ( $q [ " on_update " ]) . " \n " , '<td><a href="' . h ( ME . 'foreign=' . urlencode ( $a ) . '&name=' . urlencode ( $B )) . '">' . '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 " ; $_i = triggers ( $a ); if ( $_i ){ echo " <table cellspacing='0'> \n " ; foreach ( $_i
as $y => $X ) echo " <tr valign='top'><td> " . h ( $X [ 0 ]) . " <td> " . h ( $X [ 1 ]) . " <th> " . h ( $y ) . " <td><a href=' " . h ( ME . 'trigger=' . urlencode ( $a ) . '&name=' . urlencode ( $y )) . " '> " . '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] " : " " ))); $Rh = array (); $Sh = array (); $ea = ( $_GET [ " schema " ] ? $_GET [ " schema " ] : $_COOKIE [ " adminer_schema- " . str_replace ( " . " , " _ " , DB )]); preg_match_all ( '~([^:]+):([-0-9.]+)x([-0-9.]+)(_|$)~' , $ea , $De , PREG_SET_ORDER ); foreach ( $De
as $s => $A ){ $Rh [ $A [ 1 ]] = array ( $A [ 2 ], $A [ 3 ]); $Sh [] = " \n \t ' " . js_escape ( $A [ 1 ]) . " ': [ $A[2] , $A[3] ] " ;} $pi = 0 ; $Ra =- 1 ; $ah = array (); $Fg = array (); $re = array (); foreach ( table_status ( '' , true ) as $Q => $R ){ if ( is_view ( $R )) continue ; $eg = 0 ; $ah [ $Q ][ " fields " ] = array (); foreach ( fields ( $Q ) as $B => $o ){ $eg += 1.25 ; $o [ " pos " ] = $eg ; $ah [ $Q ][ " fields " ][ $B ] = $o ;} $ah [ $Q ][ " pos " ] = ( $Rh [ $Q ] ? $Rh [ $Q ] : array ( $pi , 0 )); foreach ( $b -> foreignKeys ( $Q ) as $X ){ if ( ! $X [ " db " ]){ $pe = $Ra ; if ( $Rh [ $Q ][ 1 ] || $Rh [ $X [ " table " ]][ 1 ]) $pe = min ( floatval ( $Rh [ $Q ][ 1 ]), floatval ( $Rh [ $X [ " table " ]][ 1 ])) - 1 ; else $Ra -=. 1 ; while ( $re [( string ) $pe ]) $pe -=. 0001 ; $ah [ $Q ][ " references " ][ $X [ " table " ]][( string ) $pe ] = array ( $X [ " source " ], $X [ " target " ]); $Fg [ $X [ " table " ]][ $Q ][( string ) $pe ] = $X [ " target " ]; $re [( string ) $pe ] = true ;}} $pi = max ( $pi , $ah [ $Q ][ " pos " ][ 0 ] + 2.5 + $eg );} echo '<div id="schema" style="height: ' , $pi , ' em ; " >
< script ',nonce(),' >
qs ( \ ' #schema\').onselectstart = function () { return false; };
var tablePos = { ',implode(",",$Sh)."\n",' };
var em = qs ( \ '#schema\').offsetHeight / ' , $pi , ' ;
document . onmousemove = schemaMousemove ;
document . onmouseup = partialArg ( schemaMouseup , \ '' , js_escape ( DB ), ' \ ' );
</ script >
' ; foreach ( $ah
as $B => $Q ){ echo " <div class='table' style='top: " . $Q [ " pos " ][ 0 ] . " em; left: " . $Q [ " pos " ][ 1 ] . " em;'> " , '<a href="' . h ( ME ) . 'table=' . urlencode ( $B ) . '"><b>' . h ( $B ) . " </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 $Yh => $Gg ){ foreach ( $Gg
as $pe => $Cg ){ $qe = $pe - $Rh [ $B ][ 1 ]; $s = 0 ; foreach ( $Cg [ 0 ] as $wh ) echo " \n <div class='references' title=' " . h ( $Yh ) . " ' id='refs $pe - " . ( $s ++ ) . " ' style='left: $qe " . " em; top: " . $Q [ " fields " ][ $wh ][ " pos " ] . " em; padding-top: .5em;'><div style='border-top: 1px solid Gray; width: " . ( - $qe ) . " em;'></div></div> " ;}} foreach (( array ) $Fg [ $B ] as $Yh => $Gg ){ foreach ( $Gg
as $pe => $f ){ $qe = $pe - $Rh [ $B ][ 1 ]; $s = 0 ; foreach ( $f
as $Xh ) echo " \n <div class='references' title=' " . h ( $Yh ) . " ' id='refd $pe - " . ( $s ++ ) . " ' style='left: $qe " . " em; top: " . $Q [ " fields " ][ $Xh ][ " pos " ] . " em; height: 1.25em; background: url( " . h ( preg_replace ( " ~ \\ ?.*~ " , " " , ME ) . " ?file=arrow.gif) no-repeat right center;&version=4.7.5 " ) . " '><div style='height: .5em; border-bottom: 1px solid Gray; width: " . ( - $qe ) . " em;'></div></div> " ;}} echo " \n </div> \n " ;} foreach ( $ah
as $B => $Q ){ foreach (( array ) $Q [ " references " ] as $Yh => $Gg ){ foreach ( $Gg
as $pe => $Cg ){ $Se = $pi ; $He =- 10 ; foreach ( $Cg [ 0 ] as $y => $wh ){ $fg = $Q [ " pos " ][ 0 ] + $Q [ " fields " ][ $wh ][ " pos " ]; $gg = $ah [ $Yh ][ " pos " ][ 0 ] + $ah [ $Yh ][ " fields " ][ $Cg [ 1 ][ $y ]][ " pos " ]; $Se = min ( $Se , $fg , $gg ); $He = max ( $He , $fg , $gg );} echo " <div class='references' id='refl $pe ' style='left: $pe " . " em; top: $Se " . " em; padding: .5em 0;'><div style='border-right: 1px solid Gray; margin-top: 1px; height: " . ( $He - $Se ) . " 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){$Db="";foreach(array("output","format","db_style","routines","events","table_style","auto_increment","triggers","data_style")as$y)$Db.="&$y=".urlencode($_POST[$y]);cookie("adminer_export",substr($Db,1));$S=array_flip((array)$_POST["tables"])+array_flip((array)$_POST["data"]);$Ic=dump_headers((count($S)==1?key($S):DB),(DB==""||count($S)>1));$Zd=preg_match(' ~ sql ~ ' , $_POST [ " format " ]); if ( $Zd ){ echo " -- Adminer $ia " . $ec [ DRIVER ] . " dump \n \n " ; if ( $x == " sql " ){ echo " SET NAMES utf8;
SET time_zone = '+00:00' ;
" .( $_POST["data_style"] ? " SET foreign_key_checks = 0 ;
SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO' ;
" : " " ). "
" ; $g->query ( " SET time_zone = '+00:00' ; " );}} $Ih = $_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 ( $Zd && preg_match ( '~CREATE~' , $Ih ) && ( $i = $g -> result ( " SHOW CREATE DATABASE " . idf_escape ( $l ), 1 ))){ set_utf8mb4 ( $i ); if ( $Ih == " DROP+CREATE " ) echo " DROP DATABASE IF EXISTS " . idf_escape ( $l ) . " ; \n " ; echo " $i ; \n " ;} if ( $Zd ){ if ( $Ih ) echo
use_sql ( $l ) . " ; \n \n " ; $Jf = " " ; if ( $_POST [ " routines " ]){ foreach ( array ( " FUNCTION " , " PROCEDURE " ) as $Ug ){ foreach ( get_rows ( " SHOW $Ug STATUS WHERE Db = " . q ( $l ), null , " -- " ) as $I ){ $i = remove_definer ( $g -> result ( " SHOW CREATE $Ug " . idf_escape ( $I [ " Name " ]), 2 )); set_utf8mb4 ( $i ); $Jf .= ( $Ih != 'DROP+CREATE' ? " DROP $Ug IF EXISTS " . idf_escape ( $I [ " Name " ]) . " ;; \n " : " " ) . " $i ;; \n \n " ;}}} if ( $_POST [ " events " ]){ foreach ( get_rows ( " SHOW EVENTS " , null , " -- " ) as $I ){ $i = remove_definer ( $g -> result ( " SHOW CREATE EVENT " . idf_escape ( $I [ " Name " ]), 3 )); set_utf8mb4 ( $i ); $Jf .= ( $Ih != 'DROP+CREATE' ? " DROP EVENT IF EXISTS " . idf_escape ( $I [ " Name " ]) . " ;; \n " : " " ) . " $i ;; \n \n " ;}} if ( $Jf ) echo " DELIMITER ;; \n \n $Jf " . " DELIMITER ; \n \n " ;} if ( $_POST [ " table_style " ] || $_POST [ " data_style " ]){ $aj = array (); foreach ( table_status ( '' , true ) as $B => $R ){ $Q = ( DB == " " || in_array ( $B ,( array ) $_POST [ " tables " ])); $Mb = ( DB == " " || in_array ( $B ,( array ) $_POST [ " data " ])); if ( $Q || $Mb ){ if ( $Ic == " tar " ){ $li = new
TmpFile ; ob_start ( array ( $li , 'write' ), 1e5 );} $b -> dumpTable ( $B ,( $Q ? $_POST [ " table_style " ] : " " ),( is_view ( $R ) ? 2 : 0 )); if ( is_view ( $R )) $aj [] = $B ; elseif ( $Mb ){ $p = fields ( $B ); $b -> dumpData ( $B , $_POST [ " data_style " ], " SELECT * " . convert_fields ( $p , $p ) . " FROM " . table ( $B ));} if ( $Zd && $_POST [ " triggers " ] && $Q && ( $_i = trigger_sql ( $B ))) echo " \n DELIMITER ;; \n $_i\nDELIMITER ; \n " ; if ( $Ic == " tar " ){ ob_end_flush (); tar_file (( DB != " " ? " " : " $l / " ) . " $B .csv " , $li );} elseif ( $Zd ) echo " \n " ;}} foreach ( $aj
as $Zi ) $b -> dumpTable ( $Zi , $_POST [ " table_style " ], 1 ); if ( $Ic == " tar " ) echo
pack ( " x512 " );}}} if ( $Zd ) 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 " >
';$Qb=array(' ',' USE ',' DROP + CREATE ',' CREATE ');$Th=array(' ',' DROP + CREATE ',' CREATE ');$Nb=array(' ',' TRUNCATE + INSERT ',' INSERT ');if($x=="sql")$Nb[]=' INSERT + UPDATE ';parse_str($_COOKIE["adminer_export"],$I);if(!$I)$I=array("output"=>"text","format"=>"sql","db_style"=>(DB!=""?"":"CREATE"),"table_style"=>"DROP+CREATE","data_style"=>"INSERT");if(!isset($I["events"])){$I["routines"]=$I["events"]=($_GET["dump"]=="");$I["triggers"]=$I["table_style"];}echo"<tr><th>".' Output '."<td>".html_select("output",$b->dumpOutput(),$I["output"],0)."\n";echo"<tr><th>".' Format '."<td>".html_select("format",$b->dumpFormat(),$I["format"],0)."\n";echo($x=="sqlite"?"":"<tr><th>".' Database '."<td>".html_select(' db_style ',$Qb,$I["db_style"]).(support("routine")?checkbox("routines",1,$I["routines"],' Routines '):"").(support("event")?checkbox("events",1,$I["events"],' Events '):"")),"<tr><th>".' Tables '."<td>".html_select(' table_style ',$Th,$I["table_style"]).checkbox("auto_increment",1,$I["auto_increment"],' Auto Increment ').(support("trigger")?checkbox("triggers",1,$I["triggers"],' Triggers '):""),"<tr><th>".' Data '."<td>".html_select(' data_style ',$Nb,$I["data_style"]),' </ table >
< p >< input type = " submit " value = " Export " >
< input type = " hidden " name = " token " value = " ', $oi ,' " >
< table cellspacing = " 0 " >
',script("qsl(' table ').onclick = dumpClick;");$jg=array();if(DB!=""){$fb=($a!=""?"":" checked");echo"<thead><tr>","<th style=' text - align : left ; '><label class=' block '><input type=' checkbox ' id=' check - tables '$fb>".' 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'$fb></label>".script("qs('#check-data').onclick = partial(formCheck, /^data\\[/);",""),"</thead>\n";$aj="";$Uh=tables_list();foreach($Uh
as $B => $T ){ $ig = preg_replace ( '~_.*~' , '' , $B ); $fb = ( $a == " " || $a == ( substr ( $a , - 1 ) == " % " ? " $ig % " : $B )); $mg = " <tr><td> " . checkbox ( " tables[] " , $B , $fb , $B , " " , " block " ); if ( $T !== null &&! preg_match ( '~table~i' , $T )) $aj .= " $mg\n " ; else
echo " $mg <td align='right'><label class='block'><span id='Rows- " . h ( $B ) . " '></span> " . checkbox ( " data[] " , $B , $fb ) . " </label> \n " ; $jg [ $ig ] ++ ;} echo $aj ; if ( $Uh ) 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 >
' ; $Wc = true ; foreach ( $jg
as $y => $X ){ if ( $y != " " && $X > 1 ){ echo ( $Wc ? " <p> " : " " ) . " <a href=' " . h ( ME ) . " dump= " . urlencode ( " $y % " ) . " '> " . h ( $y ) . " </a> " ; $Wc = false ;}}} elseif ( isset ( $_GET [ " privileges " ])){ page_header ( 'Privileges' ); echo '<p class="links"><a href="' . h ( ME ) . 'user=">' . 'Create user' . " </a> " ; $G = $g -> query ( " SELECT User, Host FROM mysql. " . ( DB == " " ? " user " : " db WHERE " . q ( DB ) . " LIKE Db " ) . " ORDER BY Host, User " ); $ld = $G ; if ( ! $G ) $G = $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 " ,( $ld ? " " : " <input type='hidden' name='grant' value=''> \n " ), " <table cellspacing='0'> \n " , " <thead><tr><th> " . 'Username' . " <th> " . 'Server' . " <th></thead> \n " ; while ( $I = $G -> fetch_assoc ()) echo '<tr' . odd () . '><td>' . h ( $I [ " User " ]) . " <td> " . h ( $I [ " Host " ]) . '<td><a href="' . h ( ME . 'user=' . urlencode ( $I [ " User " ]) . '&host=' . urlencode ( $I [ " Host " ])) . '">' . 'Edit' . " </a> \n " ; if ( ! $ld || 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 (); $zd =& get_session ( " queries " ); $yd =& $zd [ DB ]; if ( ! $n && $_POST [ " clear " ]){ $yd = array (); redirect ( remove_from_uri ( " history " ));} page_header (( isset ( $_GET [ " import " ]) ? 'Import' : 'SQL command' ), $n ); if ( ! $n && $_POST ){ $id = false ; if ( ! isset ( $_GET [ " import " ])) $F = $_POST [ " query " ]; elseif ( $_POST [ " webfile " ]){ $_h = $b -> importServerPath (); $id =@ fopen (( file_exists ( $_h ) ? $_h : " compress.zlib:// $_h .gz " ), " rb " ); $F = ( $id ? fread ( $id , 1e6 ) : false );} else $F = get_file ( " sql_file " , true ); if ( is_string ( $F )){ if ( function_exists ( 'memory_get_usage' )) @ ini_set ( " memory_limit " , max ( ini_bytes ( " memory_limit " ), 2 * strlen ( $F ) + memory_get_usage () + 8e6 )); if ( $F != " " && strlen ( $F ) < 1e6 ){ $ug = $F . ( preg_match ( " ~;[ \t \r \n ]* \$ ~ " , $F ) ? " " : " ; " ); if ( ! $yd || reset ( end ( $yd )) != $ug ){ restart_session (); $yd [] = array ( $ug , time ()); set_session ( " queries " , $zd ); stop_session ();}} $xh = " (?: \\ s|/ \\ *[ \ s \ S]*? \\ */|(?:#|-- )[^ \n ]* \n ?|-- \r ? \n ) " ; $Wb = " ; " ; $C = 0 ; $tc = true ; $h = connect (); if ( is_object ( $h ) && DB != " " ){ $h -> select_db ( DB ); if ( $_GET [ " ns " ] != " " ) set_schema ( $_GET [ " ns " ], $h );} $tb = 0 ; $yc = array (); $Qf = '[\'"' . ( $x == " sql " ? '`#' : ( $x == " sqlite " ? '`[' : ( $x == " mssql " ? '[' : '' ))) . ']|/\*|-- |$' . ( $x == " pgsql " ? '|\$[^$]*\$' : '' ); $qi = microtime ( true ); parse_str ( $_COOKIE [ " adminer_export " ], $xa ); $kc = $b -> dumpFormat (); unset ( $kc [ " sql " ]); while ( $F != " " ){ if ( ! $C && preg_match ( " ~^ $xh *+DELIMITER \\ s+( \\ S+)~i " , $F , $A )){ $Wb = $A [ 1 ]; $F = substr ( $F , strlen ( $A [ 0 ]));} else { preg_match ( '(' . preg_quote ( $Wb ) . " \\ s*| $Qf ) " , $F , $A , PREG_OFFSET_CAPTURE , $C ); list ( $gd , $eg ) = $A [ 0 ]; if ( ! $gd && $id &&! feof ( $id )) $F .= fread ( $id , 1e5 ); else { if ( ! $gd && rtrim ( $F ) == " " ) break ; $C = $eg + strlen ( $gd ); if ( $gd && rtrim ( $gd ) != $Wb ){ while ( preg_match ( '(' . ( $gd == '/*' ? '\*/' : ( $gd == '[' ? ']' : ( preg_match ( '~^-- |^#~' , $gd ) ? " \n " : preg_quote ( $gd ) . " | \\ \\ . " ))) . '|$)s' , $F , $A , PREG_OFFSET_CAPTURE , $C )){ $Yg = $A [ 0 ][ 0 ]; if ( ! $Yg && $id &&! feof ( $id )) $F .= fread ( $id , 1e5 ); else { $C = $A [ 0 ][ 1 ] + strlen ( $Yg ); if ( $Yg [ 0 ] != " \\ " ) break ;}}} else { $tc = false ; $ug = substr ( $F , 0 , $eg ); $tb ++ ; $mg = " <pre id='sql- $tb '><code class='jush- $x '> " . $b -> sqlCommandQuery ( $ug ) . " </code></pre> \n " ; if ( $x == " sqlite " && preg_match ( " ~^ $xh *+ATTACH \\ b~i " , $ug , $A )){ echo $mg , " <p class='error'> " . 'ATTACH queries are not supported.' . " \n " ; $yc [] = " <a href='#sql- $tb '> $tb </a> " ; if ( $_POST [ " error_stops " ]) break ;} else { if ( ! $_POST [ " only_errors " ]){ echo $mg ; ob_flush (); flush ();} $Dh = microtime ( true ); if ( $g -> multi_query ( $ug ) && is_object ( $h ) && preg_match ( " ~^ $xh *+USE \\ b~i " , $ug )) $h -> query ( $ug ); do { $G = $g -> store_result (); if ( $g -> error ){ echo ( $_POST [ " only_errors " ] ? $mg : " " ), " <p class='error'> " . 'Error in query' . ( $g -> errno ? " ( $g->errno ) " : " " ) . " : " . error () . " \n " ; $yc [] = " <a href='#sql- $tb '> $tb </a> " ; if ( $_POST [ " error_stops " ]) break
2 ;} else { $ei = " <span class='time'>( " . format_time ( $Dh ) . " )</span> " . ( strlen ( $ug ) < 1000 ? " <a href=' " . h ( ME ) . " sql= " . urlencode ( trim ( $ug )) . " '> " . 'Edit' . " </a> " : " " ); $za = $g -> affected_rows ; $dj = ( $_POST [ " only_errors " ] ? " " : $m -> warnings ()); $ej = " warnings- $tb " ; if ( $dj ) $ei .= " , <a href='# $ej '> " . 'Warnings' . " </a> " . script ( " qsl('a').onclick = partial(toggle, ' $ej '); " , " " ); $Fc = null ; $Gc = " explain- $tb " ; if ( is_object ( $G )){ $z = $_POST [ " limit " ]; $Cf = select ( $G , $h , array (), $z ); if ( ! $_POST [ " only_errors " ]){ echo " <form action='' method='post'> \n " ; $gf = $G -> num_rows ; echo " <p> " . ( $gf ? ( $z && $gf > $z ? sprintf ( '%d / ' , $z ) : " " ) . lang ( array ( '%d row' , '%d rows' ), $gf ) : " " ), $ei ; if ( $h && preg_match ( " ~^( $xh | \\ ()*+SELECT \\ b~i " , $ug ) && ( $Fc = explain ( $h , $ug ))) echo " , <a href='# $Gc '>Explain</a> " . script ( " qsl('a').onclick = partial(toggle, ' $Gc '); " , " " ); $t = " export- $tb " ; echo " , <a href='# $t '> " . 'Export' . " </a> " . script ( " qsl('a').onclick = partial(toggle, ' $t '); " , " " ) . " <span id=' $t ' class='hidden'>: " . html_select ( " output " , $b -> dumpOutput (), $xa [ " output " ]) . " " . html_select ( " format " , $kc , $xa [ " format " ]) . " <input type='hidden' name='query' value=' " . h ( $ug ) . " '> " . " <input type='submit' name='export' value=' " . 'Export' . " '><input type='hidden' name='token' value=' $oi '></span> \n " . " </form> \n " ;}} else { if ( preg_match ( " ~^ $xh *+(CREATE|DROP|ALTER) $xh ++(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 ) . " $ei\n " ;} echo ( $dj ? " <div id=' $ej ' class='hidden'> \n $dj </div> \n " : " " ); if ( $Fc ){ echo " <div id=' $Gc ' class='hidden'> \n " ; select ( $Fc , $h , $Cf ); echo " </div> \n " ;}} $Dh = microtime ( true );} while ( $g -> next_result ());} $F = substr ( $F , $C ); $C = 0 ;}}}} if ( $tc ) 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.' ), $tb - count ( $yc )), " <span class='time'>( " . format_time ( $qi ) . " )</span> \n " ;} elseif ( $yc && $tb > 1 ) echo " <p class='error'> " . 'Error in query' . " : " . implode ( " " , $yc ) . " \n " ;} else
echo " <p class='error'> " . upload_error ( $F ) . " \n " ;} echo '
< form action = " " method = " post " enctype = " multipart/form-data " id = " form " >
';$Cc="<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 = $yd ;elseif( $_GET["history"] != " " ) $ug = $yd[$_GET["history"] ][0];echo " < p > " ;textarea( " query " , $ug ,20);echo
script (( $_POST ? " " : " qs('textarea').focus(); \n " ) . " qs('#form').onsubmit = partial(sqlSubmit, qs('#form'), ' " . remove_from_uri ( " sql|limit|error_stops|only_errors " ) . " '); " ), " <p> $Cc\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> " ; $rd = ( extension_loaded ( " zlib " ) ? " [.gz] " : " " ); echo ( ini_bool ( " file_uploads " ) ? " SQL $rd (< " . ini_get ( " upload_max_filesize " ) . " B): <input type='file' name='sql_file[]' multiple> \n $Cc " : 'File uploads are disabled.' ), " </div></fieldset> \n " ; $Gd = $b -> importServerPath (); if ( $Gd ){ echo " <fieldset><legend> " . 'From server' . " </legend><div> " , sprintf ( 'Webserver file %s' , " <code> " . h ( $Gd ) . " $rd </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 " ])), 'Stop on error' ) . " \n " , checkbox ( " only_errors " , 1 ,( $_POST ? $_POST [ " only_errors " ] : isset ( $_GET [ " import " ])), 'Show only errors' ) . " \n " , " <input type='hidden' name='token' value=' $oi '> \n " ; if ( ! isset ( $_GET [ " import " ]) && $yd ){ print_fieldset ( " history " , 'History' , $_GET [ " history " ] != " " ); for ( $X = end ( $yd ); $X ; $X = prev ( $yd )){ $y = key ( $yd ); list ( $ug , $ei , $oc ) = $X ; echo '<a href="' . h ( ME . " sql=&history= $y " ) . '">' . 'Edit' . " </a> " . " <span class='time' title=' " .@ date ( 'Y-m-d' , $ei ) . " '> " .@ date ( " H:i:s " , $ei ) . " </span> " . " <code class='jush- $x '> " . shorten_utf8 ( ltrim ( str_replace ( " \n " , " " , str_replace ( " \r " , " " , preg_replace ( '~^(#|-- ).*~m' , '' , $ug )))), 80 , " </code> " ) . ( $oc ? " <span class='time'>( $oc )</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 )); $Ji = ( isset ( $_GET [ " select " ]) ? $_POST [ " edit " ] : $Z ); foreach ( $p
as $B => $o ){ if ( ! isset ( $o [ " privileges " ][ $Ji ? " update " : " insert " ]) || $b -> fieldName ( $o ) == " " || $o [ " generated " ]) unset ( $p [ $B ]);} if ( $_POST &&! $n &&! isset ( $_GET [ " select " ])){ $xe = $_POST [ " referer " ]; if ( $_POST [ " insert " ]) $xe = ( $Ji ? null : $_SERVER [ " REQUEST_URI " ]); elseif ( ! preg_match ( '~^.+&select=.+$~' , $xe )) $xe = ME . " select= " . urlencode ( $a ); $w = indexes ( $a ); $Ei = unique_array ( $_GET [ " where " ], $w ); $xg = " \n WHERE $Z " ; if ( isset ( $_POST [ " delete " ])) queries_redirect ( $xe , 'Item has been deleted.' , $m -> delete ( $a , $xg , ! $Ei )); else { $N = array (); foreach ( $p
as $B => $o ){ $X = process_input ( $o ); if ( $X !== false && $X !== null ) $N [ idf_escape ( $B )] = $X ;} if ( $Ji ){ if ( ! $N ) redirect ( $xe ); queries_redirect ( $xe , 'Item has been updated.' , $m -> update ( $a , $N , $xg , ! $Ei )); if ( is_ajax ()){ page_headers (); page_messages ( $n ); exit ;}} else { $G = $m -> insert ( $a , $N ); $oe = ( $G ? last_id () : 0 ); queries_redirect ( $xe , sprintf ( 'Item%s has been inserted.' ,( $oe ? " $oe " : " " )), $G );}}} $I = null ; if ( $_POST [ " save " ]) $I = ( array ) $_POST [ " fields " ]; elseif ( $Z ){ $K = array (); foreach ( $p
as $B => $o ){ if ( isset ( $o [ " privileges " ][ " select " ])){ $Ga = convert_field ( $o ); if ( $_POST [ " clone " ] && $o [ " auto_increment " ]) $Ga = " '' " ; if ( $x == " sql " && preg_match ( " ~enum|set~ " , $o [ " type " ])) $Ga = " 1* " . idf_escape ( $B ); $K [] = ( $Ga ? " $Ga AS " : " " ) . idf_escape ( $B );}} $I = array (); if ( ! support ( " table " )) $K = array ( " * " ); if ( $K ){ $G = $m -> select ( $a , $K , array ( $Z ), $K , array (),( isset ( $_GET [ " select " ]) ? 2 : 1 )); if ( ! $G ) $n = error (); else { $I = $G -> fetch_assoc (); if ( ! $I ) $I = false ;} if ( isset ( $_GET [ " select " ]) && ( ! $I || $G -> fetch_assoc ())) $I = null ;}} if ( ! support ( " table " ) &&! $p ){ if ( ! $Z ){ $G = $m -> select ( $a , array ( " * " ), $Z , array ( " * " )); $I = ( $G ? $G -> fetch_assoc () : false ); if ( ! $I ) $I = array ( $m -> primary => " " );} if ( $I ){ foreach ( $I
as $y => $X ){ if ( ! $Z ) $I [ $y ] = null ; $p [ $y ] = array ( " field " => $y , " null " => ( $y != $m -> primary ), " auto_increment " => ( $y == $m -> primary ));}}} edit_form ( $a , $p , $I , $Ji );} elseif ( isset ( $_GET [ " create " ])){ $a = $_GET [ " create " ]; $Sf = array (); foreach ( array ( 'HASH' , 'LINEAR HASH' , 'KEY' , 'LINEAR KEY' , 'RANGE' , 'LIST' ) as $y ) $Sf [ $y ] = $y ; $Eg = referencable_primary ( $a ); $ed = array (); foreach ( $Eg
as $Ph => $o ) $ed [ str_replace ( " ` " , " `` " , $Ph ) . " ` " . str_replace ( " ` " , " `` " , $o [ " field " ])] = $Ph ; $Ff = array (); $R = array (); if ( $a != " " ){ $Ff = fields ( $a ); $R = table_status ( $a ); if ( ! $R ) $n = 'No tables.' ;} $I = $_POST ; $I [ " fields " ] = ( array ) $I [ " fields " ]; if ( $I [ " auto_increment_col " ]) $I [ " fields " ][ $I [ " auto_increment_col " ]][ " auto_increment " ] = true ; if ( $_POST ) set_adminer_settings ( array ( " comments " => $_POST [ " comments " ], " defaults " => $_POST [ " defaults " ])); if ( $_POST &&! process_fields ( $I [ " fields " ]) &&! $n ){ if ( $_POST [ " drop " ]) queries_redirect ( substr ( ME , 0 , - 1 ), 'Table has been dropped.' , drop_tables ( array ( $a ))); else { $p = array (); $Da = array (); $Oi = false ; $cd = array (); $Ef = reset ( $Ff ); $Aa = " FIRST " ; foreach ( $I [ " fields " ] as $y => $o ){ $q = $ed [ $o [ " type " ]]; $Ai = ( $q !== null ? $Eg [ $q ] : $o ); if ( $o [ " field " ] != " " ){ if ( ! $o [ " has_default " ]) $o [ " default " ] = null ; if ( $y == $I [ " auto_increment_col " ]) $o [ " auto_increment " ] = true ; $rg = process_field ( $o , $Ai ); $Da [] = array ( $o [ " orig " ], $rg , $Aa ); if ( $rg != process_field ( $Ef , $Ef )){ $p [] = array ( $o [ " orig " ], $rg , $Aa ); if ( $o [ " orig " ] != " " || $Aa ) $Oi = true ;} if ( $q !== null ) $cd [ idf_escape ( $o [ " field " ])] = ( $a != " " && $x != " sqlite " ? " ADD " : " " ) . format_foreign_key ( array ( 'table' => $ed [ $o [ " type " ]], 'source' => array ( $o [ " field " ]), 'target' => array ( $Ai [ " field " ]), 'on_delete' => $o [ " on_delete " ],)); $Aa = " AFTER " . idf_escape ( $o [ " field " ]);} elseif ( $o [ " orig " ] != " " ){ $Oi = true ; $p [] = array ( $o [ " orig " ]);} if ( $o [ " orig " ] != " " ){ $Ef = next ( $Ff ); if ( ! $Ef ) $Aa = " " ;}} $Uf = " " ; if ( $Sf [ $I [ " partition_by " ]]){ $Vf = array (); if ( $I [ " partition_by " ] == 'RANGE' || $I [ " partition_by " ] == 'LIST' ){ foreach ( array_filter ( $I [ " partition_names " ]) as $y => $X ){ $Y = $I [ " partition_values " ][ $y ]; $Vf [] = " \n PARTITION " . idf_escape ( $X ) . " VALUES " . ( $I [ " partition_by " ] == 'RANGE' ? " LESS THAN " : " IN " ) . ( $Y != " " ? " ( $Y ) " : " MAXVALUE " );}} $Uf .= " \n PARTITION BY $I[partition_by] ( $I[partition] ) " . ( $Vf ? " ( " . implode ( " , " , $Vf ) . " \n ) " : ( $I [ " partitions " ] ? " PARTITIONS " . ( + $I [ " partitions " ]) : " " ));} elseif ( support ( " partitioning " ) && preg_match ( " ~partitioned~ " , $R [ " Create_options " ])) $Uf .= " \n REMOVE PARTITIONING " ; $Le = 'Table has been altered.' ; if ( $a == " " ){ cookie ( " adminer_engine " , $I [ " Engine " ]); $Le = 'Table has been created.' ;} $B = trim ( $I [ " name " ]); queries_redirect ( ME . ( support ( " table " ) ? " table= " : " select= " ) . urlencode ( $B ), $Le , alter_table ( $a , $B ,( $x == " sqlite " && ( $Oi || $cd ) ? $Da : $p ), $cd ,( $I [ " Comment " ] != $R [ " Comment " ] ? $I [ " Comment " ] : null ),( $I [ " Engine " ] && $I [ " Engine " ] != $R [ " Engine " ] ? $I [ " Engine " ] : " " ),( $I [ " Collation " ] && $I [ " Collation " ] != $R [ " Collation " ] ? $I [ " Collation " ] : " " ),( $I [ " Auto_increment " ] != " " ? number ( $I [ " Auto_increment " ]) : " " ), $Uf ));}} page_header (( $a != " " ? 'Alter table' : 'Create table' ), $n , array ( " table " => $a ), h ( $a )); if ( ! $_POST ){ $I = 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 != " " ){ $I = $R ; $I [ " name " ] = $a ; $I [ " fields " ] = array (); if ( ! $_GET [ " auto_increment " ]) $I [ " Auto_increment " ] = " " ; foreach ( $Ff
as $o ){ $o [ " has_default " ] = isset ( $o [ " default " ]); $I [ " fields " ][] = $o ;} if ( support ( " partitioning " )){ $jd = " FROM information_schema.PARTITIONS WHERE TABLE_SCHEMA = " . q ( DB ) . " AND TABLE_NAME = " . q ( $a ); $G = $g -> query ( " SELECT PARTITION_METHOD, PARTITION_ORDINAL_POSITION, PARTITION_EXPRESSION $jd ORDER BY PARTITION_ORDINAL_POSITION DESC LIMIT 1 " ); list ( $I [ " partition_by " ], $I [ " partitions " ], $I [ " partition " ]) = $G -> fetch_row (); $Vf = get_key_vals ( " SELECT PARTITION_NAME, PARTITION_DESCRIPTION $jd AND PARTITION_NAME != '' ORDER BY PARTITION_ORDINAL_POSITION " ); $Vf [ " " ] = " " ; $I [ " partition_names " ] = array_keys ( $Vf ); $I [ " partition_values " ] = array_values ( $Vf );}}} $pb = collations (); $vc = engines (); foreach ( $vc
as $uc ){ if ( ! strcasecmp ( $uc , $I [ " Engine " ])){ $I [ " Engine " ] = $uc ; break ;}} echo '
< form action = " " method = " post " id = " form " >
< p >
';if(support("columns")||$a==""){echo' Table name : < input name = " name " data - maxlength = " 64 " value = " ',h( $I["name"] ),' " autocapitalize = " off " >
' ; if ( $a == " " &&! $_POST ) echo
script ( " focus(qs('#form')['name']); " ); echo ( $vc ? " <select name='Engine'> " . optionlist ( array ( " " => " ( " . 'engine' . " ) " ) + $vc , $I [ " Engine " ]) . " </select> " . on_help ( " getTarget(event).value " , 1 ) . script ( " qsl('select').onchange = helpClose; " ) : " " ), ' ' ,( $pb &&! preg_match ( " ~sqlite|mssql~ " , $x ) ? html_select ( " Collation " , array ( " " => " ( " . 'collation' . " ) " ) + $pb , $I [ " Collation " ]) : " " ), ' < input type = " submit " value = " Save " >
';}echo'
';if(support("columns")){echo' < div class = " scrollable " >
< table cellspacing = " 0 " id = " edit-fields " class = " nowrap " >
';edit_fields($I["fields"],$pb,"TABLE",$ed);echo' </ table >
</ div >
< p >
Auto Increment : < input type = " number " name = " Auto_increment " size = " 6 " value = " ',h( $I["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( $I["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")){$Tf=preg_match(' ~ RANGE | LIST ~ ',$I["partition_by"]);print_fieldset("partition",' Partition by ',$I["partition_by"]);echo' < p >
',"<select name=' partition_by '>".optionlist(array(""=>"")+$Sf,$I["partition_by"])."</select>".on_help("getTarget(event).value.replace(/./, ' PARTITION BY \ $ & ')",1).script("qsl(' select ').onchange = partitionByChange;"),' ( < input name = " partition " value = " ',h( $I["partition"] ),' " > )
Partitions : < input type = " number " name = " partitions " class = " size',( $Tf ||! $I["partition_by"] ? " hidden " : " " ),' " value = " ',h( $I["partitions"] ),' " >
< table cellspacing = " 0 " id = " partition-table " ',($Tf?"":" class=' hidden '"),' >
< thead >< tr >< th > Partition name < th > Values </ thead >
';foreach($I["partition_names"]as$y=>$X){echo' < tr > ',' < td >< input name = " partition_names[] " value = " '.h( $X ).' " autocapitalize = " off " > ',($y==count($I["partition_names"])-1?script("qsl(' input ').oninput = partitionNameChange;"):' '),' < td >< input name = " partition_values[] " value = " '.h( $I["partition_values"] [ $y ]).' " > ';}echo' </ table >
</ div ></ fieldset >
';}echo' < input type = " hidden " name = " token " value = " ', $oi ,' " >
</ form >
',script("qs(' #form')['defaults'].onclick();".(support("comment")?" editingCommentsClick(qs('#form')['comments']);":""));}elseif(isset($_GET["indexes"])){$a=$_GET["indexes"];$Jd=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"]))$Jd[]="FULLTEXT";if(preg_match('~MyISAM|M?aria'.(min_version(5.7,'10.2.2')?'|InnoDB':'').'~i',$R["Engine"]))$Jd[]="SPATIAL";$w=indexes($a);$kg=array();if($x=="mongo"){$kg=$w["_id_"];unset($Jd[0]);unset($w["_id_"]);}$I=$_POST;if($_POST&&!$n&&!$_POST["add"]&&!$_POST["drop_col"]){$c=array();foreach($I["indexes"]as$v){$B=$v["name"];if(in_array($v["type"],$Jd)){$f=array();$ue=array();$Yb=array();$N=array();ksort($v["columns"]);foreach($v["columns"]as$y=>$e){if($e!=""){$te=$v["lengths"][$y];$Xb=$v["descs"][$y];$N[]=idf_escape($e).($te?"(".(+$te).")":"").($Xb?" DESC":"");$f[]=$e;$ue[]=($te?$te:null);$Yb[]=$Xb;}}if($f){$Dc=$w[$B];if($Dc){ksort($Dc["columns"]);ksort($Dc["lengths"]);ksort($Dc["descs"]);if($v["type"]==$Dc["type"]&&array_values($Dc["columns"])===$f&&(!$Dc["lengths"]||array_values($Dc["lengths"])===$ue)&&array_values($Dc["descs"])===$Yb){unset($w[$B]);continue;}}$c[]=array($v["type"],$B,$N);}}}foreach($w
as $B => $Dc ) $c [] = array ( $Dc [ " type " ], $B , " 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 ( $I [ " indexes " ] as $y => $v ){ if ( $v [ " columns " ][ count ( $v [ " columns " ])] != " " ) $I [ " indexes " ][ $y ][ " columns " ][] = " " ;} $v = end ( $I [ " indexes " ]); if ( $v [ " type " ] || array_filter ( $v [ " columns " ], 'strlen' )) $I [ " indexes " ][] = array ( " columns " => array ( 1 => " " ));} if ( ! $I ){ foreach ( $w
as $y => $v ){ $w [ $y ][ " name " ] = $y ; $w [ $y ][ " columns " ][] = " " ;} $w [] = array ( " columns " => array ( 1 => " " )); $I [ " indexes " ] = $w ;} 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.7 . 5 " ). " ' alt=' + ' title=' " .'Add next'. " '>",' </ noscript >
</ thead >
' ; if ( $kg ){ echo " <tr><td>PRIMARY<td> " ; foreach ( $kg [ " columns " ] as $y => $e ){ echo
select_input ( " disabled " , $p , $e ), " <label><input disabled type='checkbox'> " . 'descending' . " </label> " ;} echo " <td><td> \n " ;} $ce = 1 ; foreach ( $I [ " indexes " ] as $v ){ if ( ! $_POST [ " drop_col " ] || $ce != key ( $_POST [ " drop_col " ])){ echo " <tr><td> " . html_select ( " indexes[ $ce ][type] " , array ( - 1 => " " ) + $Jd , $v [ " type " ],( $ce == count ( $I [ " indexes " ]) ? " indexesAddRow.call(this); " : 1 ), " label-type " ), " <td> " ; ksort ( $v [ " columns " ]); $s = 1 ; foreach ( $v [ " columns " ] as $y => $e ){ echo " <span> " . select_input ( " name='indexes[ $ce ][columns][ $s ]' title=' " . 'Column' . " ' " ,( $p ? array_combine ( $p , $p ) : $p ), $e , " partial( " . ( $s == count ( $v [ " columns " ]) ? " indexesAddColumn " : " indexesChangeColumn " ) . " , ' " . js_escape ( $x == " sql " ? " " : $_GET [ " indexes " ] . " _ " ) . " ') " ),( $x == " sql " || $x == " mssql " ? " <input type='number' name='indexes[ $ce ][lengths][ $s ]' class='size' value=' " . h ( $v [ " lengths " ][ $y ]) . " ' title=' " . 'Length' . " '> " : " " ),( support ( " descidx " ) ? checkbox ( " indexes[ $ce ][descs][ $s ] " , 1 , $v [ " descs " ][ $y ], 'descending' ) : " " ), " </span> " ; $s ++ ;} echo " <td><input name='indexes[ $ce ][name]' value=' " . h ( $v [ " name " ]) . " ' autocapitalize='off' aria-labelledby='label-name'> \n " , " <td><input type='image' class='icon' name='drop_col[ $ce ]' src=' " . h ( preg_replace ( " ~ \\ ?.*~ " , " " , ME ) . " ?file=cross.gif&version=4.7.5 " ) . " ' alt='x' title=' " . 'Remove' . " '> " . script ( " qsl('input').onclick = partial(editingRemoveRow, 'indexes \$ 1[type]'); " );} $ce ++ ;} echo ' </ table >
</ div >
< p >
< input type = " submit " value = " Save " >
< input type = " hidden " name = " token " value = " ', $oi ,' " >
</ form >
';}elseif(isset($_GET["database"])){$I=$_POST;if($_POST&&!$n&&!isset($_POST["add_x"])){$B=trim($I["name"]);if($_POST["drop"]){$_GET["db"]="";queries_redirect(remove_from_uri("db|database"),' Database has been dropped . ',drop_databases(array(DB)));}elseif(DB!==$B){if(DB!=""){$_GET["db"]=$B;queries_redirect(preg_replace(' ~ \bdb = [ ^& ] *&~ ',' ',ME)."db=".urlencode($B),' Database has been renamed . ' , rename_database ( $B , $I [ " collation " ]));} else { $k = explode ( " \n " , str_replace ( " \r " , " " , $B )); $Jh = true ; $ne = " " ; foreach ( $k
as $l ){ if ( count ( $k ) == 1 || $l != " " ){ if ( ! create_database ( $l , $I [ " collation " ])) $Jh = false ; $ne = $l ;}} restart_session (); set_session ( " dbs " , null ); queries_redirect ( ME . " db= " . urlencode ( $ne ), 'Database has been created.' , $Jh );}} else { if ( ! $I [ " collation " ]) redirect ( substr ( ME , 0 , - 1 )); query_redirect ( " ALTER DATABASE " . idf_escape ( $B ) . ( preg_match ( '~^[a-z0-9_]+$~i' , $I [ " collation " ]) ? " COLLATE $I[collation] " : " " ), substr ( ME , 0 , - 1 ), 'Database has been altered.' );}} page_header ( DB != " " ? 'Alter database' : 'Create database' , $n , array (), h ( DB )); $pb = collations (); $B = DB ; if ( $_POST ) $B = $I [ " name " ]; elseif ( DB != " " ) $I [ " collation " ] = db_collation ( DB , $pb ); elseif ( $x == " sql " ){ foreach ( get_vals ( " SHOW GRANTS " ) as $ld ){ if ( preg_match ( '~ ON (`(([^\\\\`]|``|\\\\.)*)%`\.\*)?~' , $ld , $A ) && $A [ 1 ]){ $B = stripcslashes ( idf_unescape ( " ` $A[2] ` " )); break ;}}} echo '
< form action = " " method = " post " >
< p >
',($_POST["add_x"]||strpos($B,"\n")?' < textarea id = " name " name = " name " rows = " 10 " cols = " 40 " > '.h($B).' </ textarea >< br > ':' < input name = " name " id = " name " value = " '.h( $B ).' " data - maxlength = " 64 " autocapitalize = " off " > ')."\n".($pb?html_select("collation",array(""=>"(".' collation '.")")+$pb,$I["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.7 . 5 " ). " ' alt=' + ' title=' " .'Add next'. " '>\n";echo' < input type = " hidden " name = " token " value = " ', $oi ,' " >
</ form >
';}elseif(isset($_GET["scheme"])){$I=$_POST;if($_POST&&!$n){$_=preg_replace(' ~ ns = [ ^& ] *&~ ',' ',ME)."ns=";if($_POST["drop"])query_redirect("DROP SCHEMA ".idf_escape($_GET["ns"]),$_,' Schema has been dropped . ');else{$B=trim($I["name"]);$_.=urlencode($B);if($_GET["ns"]=="")query_redirect("CREATE SCHEMA ".idf_escape($B),$_,' Schema has been created . ');elseif($_GET["ns"]!=$B)query_redirect("ALTER SCHEMA ".idf_escape($_GET["ns"])." RENAME TO ".idf_escape($B),$_,' Schema has been altered . ' ); else
redirect ( $_ );}} page_header ( $_GET [ " ns " ] != " " ? 'Alter schema' : 'Create schema' , $n ); if ( ! $I ) $I [ " name " ] = $_GET [ " ns " ]; echo '
< form action = " " method = " post " >
< p >< input name = " name " id = " name " value = " ',h( $I["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 = " ', $oi ,' " >
</ form >
';}elseif(isset($_GET["call"])){$da=($_GET["name"]?$_GET["name"]:$_GET["call"]);page_header(' Call '.": ".h($da),$n);$Ug=routine($_GET["call"],(isset($_GET["callf"])?"FUNCTION":"PROCEDURE"));$Hd=array();$Jf=array();foreach($Ug["fields"]as$s=>$o){if(substr($o["inout"],-3)=="OUT")$Jf[$s]="@".idf_escape($o["field"])." AS ".idf_escape($o["field"]);if(!$o["inout"]||substr($o["inout"],0,2)=="IN")$Hd[]=$s;}if(!$n&&$_POST){$ab=array();foreach($Ug["fields"]as$y=>$o){if(in_array($y,$Hd)){$X=process_input($o);if($X===false)$X="' '";if(isset($Jf[$y]))$g->query("SET @".idf_escape($o["field"])." = $X");}$ab[]=(isset($Jf[$y])?"@".idf_escape($o["field"]):$X);}$F=(isset($_GET["callf"])?"SELECT":"CALL")." ".table($da)."(".implode(", ",$ab).")";$Dh=microtime(true);$G=$g->multi_query($F);$za=$g->affected_rows;echo$b->selectQuery($F,$Dh,!$G);if(!$G)echo"<p class=' error ' > " .error(). " \n " ;else { $h =connect();if(is_object( $h )) $h->select_db (DB);do { $G = $g->store_result ();if(is_object( $G ))select( $G , $h );else
echo " <p class='message'> " . lang ( array ( 'Routine has been called, %d row affected.' , 'Routine has been called, %d rows affected.' ), $za ) . " \n " ;} while ( $g -> next_result ()); if ( $Jf ) select ( $g -> query ( " SELECT " . implode ( " , " , $Jf )));}} echo '
< form action = " " method = " post " >
';if($Hd){echo"<table cellspacing=' 0 ' class=' layout ' > \n " ;foreach( $Hd
as $y ){ $o = $Ug [ " fields " ][ $y ]; $B = $o [ " field " ]; echo " <tr><th> " . $b -> fieldName ( $o ); $Y = $_POST [ " fields " ][ $B ]; if ( $Y != " " ){ if ( $o [ " type " ] == " enum " ) $Y =+ $Y ; if ( $o [ " type " ] == " set " ) $Y = array_sum ( $Y );} input ( $o , $Y ,( string ) $_POST [ " function " ][ $B ]); echo " \n " ;} echo " </table> \n " ;} echo ' < p >
< input type = " submit " value = " Call " >
< input type = " hidden " name = " token " value = " ', $oi ,' " >
</ form >
';}elseif(isset($_GET["foreign"])){$a=$_GET["foreign"];$B=$_GET["name"];$I=$_POST;if($_POST&&!$n&&!$_POST["add"]&&!$_POST["change"]&&!$_POST["change-js"]){$Le=($_POST["drop"]?' Foreign key has been dropped . ':($B!=""?' Foreign key has been altered . ':' Foreign key has been created . '));$xe=ME."table=".urlencode($a);if(!$_POST["drop"]){$I["source"]=array_filter($I["source"],' strlen ');ksort($I["source"]);$Xh=array();foreach($I["source"]as$y=>$X)$Xh[$y]=$I["target"][$y];$I["target"]=$Xh;}if($x=="sqlite")queries_redirect($xe,$Le,recreate_table($a,$a,array(),array(),array(" $B"=>($_POST["drop"]?"":" ".format_foreign_key($I)))));else{$c="ALTER TABLE ".table($a);$fc="\nDROP ".($x=="sql"?"FOREIGN KEY ":"CONSTRAINT ").idf_escape($B);if($_POST["drop"])query_redirect($c.$fc,$xe,$Le);else{query_redirect($c.($B!=""?"$fc,":"")."\nADD".format_foreign_key($I),$xe,$Le);$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($I["source"]);if($_POST["add"])$I["source"][]="";elseif($_POST["change"]||$_POST["change-js"])$I["target"]=array();}elseif($B!=""){$ed=foreign_keys($a);$I=$ed[$B];$I["source"][]="";}else{$I["table"]=$a;$I["source"]=array("");}echo'
< form action = " " method = " post " >
';$wh=array_keys(fields($a));if($I["db"]!="")$g->select_db($I["db"]);if($I["ns"]!="")set_schema($I["ns"]);$Dg=array_keys(array_filter(table_status(' ',true),' fk_support '));$Xh=($a===$I["table"]?$wh:array_keys(fields(in_array($I["table"],$Dg)?$I["table"]:reset($Dg))));$rf="this.form[' change - js '].value = ' 1 '; this.form.submit();";echo"<p>".' Target table '.": ".html_select("table",$Dg,$I["table"],$rf)."\n";if($x=="pgsql")echo' Schema '.": ".html_select("ns",$b->schemas(),$I["ns"]!=""?$I["ns"]:$_GET["ns"],$rf);elseif($x!="sqlite"){$Rb=array();foreach($b->databases()as$l){if(!information_schema($l))$Rb[]=$l;}echo' DB '.": ".html_select("db",$Rb,$I["db"]!=""?$I["db"]:$_GET["db"],$rf);}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 >
';$ce=0;foreach($I["source"]as$y=>$X){echo"<tr>","<td>".html_select("source[".(+$y)."]",array(-1=>"")+$wh,$X,($ce==count($I["source"])-1?"foreignAddRow.call(this);":1),"label-source"),"<td>".html_select("target[".(+$y)."]",$Xh,$I["target"][$y],1,"label-target");$ce++;}echo' </ table >
< p >
ON DELETE : ',html_select("on_delete",array(-1=>"")+explode("|",$qf),$I["on_delete"]),' ON UPDATE : ',html_select("on_update",array(-1=>"")+explode("|",$qf),$I["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($B!=""){echo' < input type = " submit " name = " drop " value = " Drop " > ',confirm(sprintf(' Drop % s ? ',$B));}echo' < input type = " hidden " name = " token " value = " ', $oi ,' " >
</ form >
';}elseif(isset($_GET["view"])){$a=$_GET["view"];$I=$_POST;$Gf="VIEW";if($x=="pgsql"&&$a!=""){$O=table_status($a);$Gf=strtoupper($O["Engine"]);}if($_POST&&!$n){$B=trim($I["name"]);$Ga=" AS\n$I[select]";$xe=ME."table=".urlencode($B);$Le=' View has been altered . ';$T=($_POST["materialized"]?"MATERIALIZED VIEW":"VIEW");if(!$_POST["drop"]&&$a==$B&&$x!="sqlite"&&$T=="VIEW"&&$Gf=="VIEW")query_redirect(($x=="mssql"?"ALTER":"CREATE OR REPLACE")." VIEW ".table($B).$Ga,$xe,$Le);else{$Zh=$B."_adminer_".uniqid();drop_create("DROP $Gf ".table($a),"CREATE $T ".table($B).$Ga,"DROP $T ".table($B),"CREATE $T ".table($Zh).$Ga,"DROP $T ".table($Zh),($_POST["drop"]?substr(ME,0,-1):$xe),' View has been dropped . ',$Le,' View has been created . ',$a,$B);}}if(!$_POST&&$a!=""){$I=view($a);$I["name"]=$a;$I["materialized"]=($Gf!="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( $I["name"] ),' " data - maxlength = " 64 " autocapitalize = " off " >
',(support("materializedview")?" ".checkbox("materialized",1,$I["materialized"],' Materialized view '):""),' < p > ';textarea("select",$I["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 = " ', $oi ,' " >
</ form >
';}elseif(isset($_GET["event"])){$aa=$_GET["event"];$Ud=array("YEAR","QUARTER","MONTH","DAY","HOUR","MINUTE","WEEK","SECOND","YEAR_MONTH","DAY_HOUR","DAY_MINUTE","DAY_SECOND","HOUR_MINUTE","HOUR_SECOND","MINUTE_SECOND");$Fh=array("ENABLED"=>"ENABLE","DISABLED"=>"DISABLE","SLAVESIDE_DISABLED"=>"DISABLE ON SLAVE");$I=$_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($I["INTERVAL_FIELD"],$Ud)&&isset($Fh[$I["STATUS"]])){$Zg="\nON SCHEDULE ".($I["INTERVAL_VALUE"]?"EVERY ".q($I["INTERVAL_VALUE"])." $I[INTERVAL_FIELD]".($I["STARTS"]?" STARTS ".q($I["STARTS"]):"").($I["ENDS"]?" ENDS ".q($I["ENDS"]):""):"AT ".q($I["STARTS"]))." ON COMPLETION".($I["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).$Zg.($aa!=$I["EVENT_NAME"]?"\nRENAME TO ".idf_escape($I["EVENT_NAME"]):""):"CREATE EVENT ".idf_escape($I["EVENT_NAME"]).$Zg)."\n".$Fh[$I["STATUS"]]." COMMENT ".q($I["EVENT_COMMENT"]).rtrim(" DO\n$I[EVENT_DEFINITION]",";").";"));}}page_header(($aa!=""?' Alter event '.": ".h($aa):' Create event '),$n);if(!$I&&$aa!=""){$J=get_rows("SELECT * FROM information_schema.EVENTS WHERE EVENT_SCHEMA = ".q(DB)." AND EVENT_NAME = ".q($aa));$I=reset($J);}echo'
< form action = " " method = " post " >
< table cellspacing = " 0 " class = " layout " >
< tr >< th > Name < td >< input name = " EVENT_NAME " value = " ',h( $I["EVENT_NAME"] ),' " data - maxlength = " 64 " autocapitalize = " off " >
< tr >< th title = " datetime " > Start < td >< input name = " STARTS " value = " ',h( " $I [ EXECUTE_AT ] $I [ STARTS ] " ),' " >
< tr >< th title = " datetime " > End < td >< input name = " ENDS " value = " ',h( $I["ENDS"] ),' " >
< tr >< th > Every < td >< input type = " number " name = " INTERVAL_VALUE " value = " ',h( $I["INTERVAL_VALUE"] ),' " class = " size " > ',html_select("INTERVAL_FIELD",$Ud,$I["INTERVAL_FIELD"]),' < tr >< th > Status < td > ',html_select("STATUS",$Fh,$I["STATUS"]),' < tr >< th > Comment < td >< input name = " EVENT_COMMENT " value = " ',h( $I["EVENT_COMMENT"] ),' " data - maxlength = " 64 " >
< tr >< th >< td > ',checkbox("ON_COMPLETION","PRESERVE",$I["ON_COMPLETION"]=="PRESERVE",' On completion preserve '),' </ table >
< p > ';textarea("EVENT_DEFINITION",$I["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 = " ', $oi ,' " >
</ form >
';}elseif(isset($_GET["procedure"])){$da=($_GET["name"]?$_GET["name"]:$_GET["procedure"]);$Ug=(isset($_GET["function"])?"FUNCTION":"PROCEDURE");$I=$_POST;$I["fields"]=(array)$I["fields"];if($_POST&&!process_fields($I["fields"])&&!$n){$Df=routine($_GET["procedure"],$Ug);$Zh="$I[name]_adminer_".uniqid();drop_create("DROP $Ug ".routine_id($da,$Df),create_routine($Ug,$I),"DROP $Ug ".routine_id($I["name"],$I),create_routine($Ug,array("name"=>$Zh)+$I),"DROP $Ug ".routine_id($Zh,$I),substr(ME,0,-1),' Routine has been dropped . ',' Routine has been altered . ',' Routine has been created . ',$da,$I["name"]);}page_header(($da!=""?(isset($_GET["function"])?' Alter function ':' Alter procedure ').": ".h($da):(isset($_GET["function"])?' Create function ':' Create procedure ')),$n);if(!$_POST&&$da!=""){$I=routine($_GET["procedure"],$Ug);$I["name"]=$da;}$pb=get_vals("SHOW CHARACTER SET");sort($pb);$Vg=routine_languages();echo'
< form action = " " method = " post " id = " form " >
< p > Name : < input name = " name " value = " ',h( $I["name"] ),' " data - maxlength = " 64 " autocapitalize = " off " >
',($Vg?' Language '.": ".html_select("language",$Vg,$I["language"])."\n":""),' < input type = " submit " value = " Save " >
< div class = " scrollable " >
< table cellspacing = " 0 " class = " nowrap " >
';edit_fields($I["fields"],$pb,$Ug);if(isset($_GET["function"])){echo"<tr><td>".' Return type ';edit_type("returns",$I["returns"],$pb,array(),($x=="pgsql"?array("void","trigger"):array()));}echo' </ table >
</ div >
< p > ';textarea("definition",$I["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 = " ', $oi ,' " >
</ form >
';}elseif(isset($_GET["sequence"])){$fa=$_GET["sequence"];$I=$_POST;if($_POST&&!$n){$_=substr(ME,0,-1);$B=trim($I["name"]);if($_POST["drop"])query_redirect("DROP SEQUENCE ".idf_escape($fa),$_,' Sequence has been dropped . ');elseif($fa=="")query_redirect("CREATE SEQUENCE ".idf_escape($B),$_,' Sequence has been created . ');elseif($fa!=$B)query_redirect("ALTER SEQUENCE ".idf_escape($fa)." RENAME TO ".idf_escape($B),$_,' Sequence has been altered . ' ); else
redirect ( $_ );} page_header ( $fa != " " ? 'Alter sequence' . " : " . h ( $fa ) : 'Create sequence' , $n ); if ( ! $I ) $I [ " name " ] = $fa ; echo '
< form action = " " method = " post " >
< p >< input name = " name " value = " ',h( $I["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 = " ', $oi ,' " >
</ form >
';}elseif(isset($_GET["type"])){$ga=$_GET["type"];$I=$_POST;if($_POST&&!$n){$_=substr(ME,0,-1);if($_POST["drop"])query_redirect("DROP TYPE ".idf_escape($ga),$_,' Type has been dropped . ' ); else
query_redirect ( " CREATE TYPE " . idf_escape ( trim ( $I [ " name " ])) . " $I[as] " , $_ , 'Type has been created.' );} page_header ( $ga != " " ? 'Alter type' . " : " . h ( $ga ) : 'Create type' , $n ); if ( ! $I ) $I [ " 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( $I['name'] ). " ' autocapitalize=' off '>\n";textarea("as",$I["as"]);echo"<p><input type=' submit ' value=' " .'Save'. " '>\n";}echo' < input type = " hidden " name = " token " value = " ', $oi ,' " >
</ form >
';}elseif(isset($_GET["trigger"])){$a=$_GET["trigger"];$B=$_GET["name"];$zi=trigger_options();$I=(array)trigger($B)+array("Trigger"=>$a."_bi");if($_POST){if(!$n&&in_array($_POST["Timing"],$zi["Timing"])&&in_array($_POST["Event"],$zi["Event"])&&in_array($_POST["Type"],$zi["Type"])){$pf=" ON ".table($a);$fc="DROP TRIGGER ".idf_escape($B).($x=="pgsql"?$pf:"");$xe=ME."table=".urlencode($a);if($_POST["drop"])query_redirect($fc,$xe,' Trigger has been dropped . ');else{if($B!="")queries($fc);queries_redirect($xe,($B!=""?' Trigger has been altered . ':' Trigger has been created . '),queries(create_trigger($pf,$_POST)));if($B!="")queries(create_trigger($pf,$I+array("Type"=>reset($zi["Type"]))));}}$I=$_POST;}page_header(($B!=""?' Alter trigger '.": ".h($B):' 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",$zi["Timing"],$I["Timing"],"triggerChange(/^".preg_quote($a,"/")."_[ba][iud]$/, ' " .js_escape( $a ). " ', this.form);"),' < tr >< th > Event < td > ',html_select("Event",$zi["Event"],$I["Event"],"this.form[' Timing '].onchange();"),(in_array("UPDATE OF",$zi["Event"])?" <input name=' Of ' value=' " .h( $I["Of"] ). " ' class=' hidden '>":""),' < tr >< th > Type < td > ',html_select("Type",$zi["Type"],$I["Type"]),' </ table >
< p > Name : < input name = " Trigger " value = " ',h( $I["Trigger"] ),' " data - maxlength = " 64 " autocapitalize = " off " >
',script("qs(' #form')['Timing'].onchange();"),'<p>';textarea("Statement",$I["Statement"]);echo'<p>
< input type = " submit " value = " Save " >
';if($B!=""){echo' < input type = " submit " name = " drop " value = " Drop " > ',confirm(sprintf(' Drop % s ? ',$B));}echo' < input type = " hidden " name = " token " value = " ', $oi ,' " >
</ form >
';}elseif(isset($_GET["user"])){$ha=$_GET["user"];$pg=array(""=>array("All privileges"=>""));foreach(get_rows("SHOW PRIVILEGES")as$I){foreach(explode(",",($I["Privilege"]=="Grant option"?"":$I["Context"]))as$Bb)$pg[$Bb][$I["Privilege"]]=$I["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$y=>$X)unset($pg["Databases"][$y]);$Ye=array();if($_POST){foreach($_POST["objects"]as$y=>$X)$Ye[$X]=(array)$Ye[$X]+(array)$_POST["grants"][$y];}$md=array();$nf="";if(isset($_GET["host"])&&($G=$g->query("SHOW GRANTS FOR ".q($ha)."@".q($_GET["host"])))){while($I=$G->fetch_row()){if(preg_match(' ~ GRANT ( .* ) ON ( .* ) TO ~ ',$I[0],$A)&&preg_match_all(' ~ * ([ ^ (,] * [ ^ ,(])( * \ ([ ^ )] + \ )) ? ~ ' , $A [ 1 ], $De , PREG_SET_ORDER )){ foreach ( $De
as $X ){ if ( $X [ 1 ] != " USAGE " ) $md [ " $A[2] $X[2] " ][ $X [ 1 ]] = true ; if ( preg_match ( '~ WITH GRANT OPTION~' , $I [ 0 ])) $md [ " $A[2] $X[2] " ][ " GRANT OPTION " ] = true ;}} if ( preg_match ( " ~ IDENTIFIED BY PASSWORD '([^']+)~ " , $I [ 0 ], $A )) $nf = $A [ 1 ];}} if ( $_POST &&! $n ){ $of = ( isset ( $_GET [ " host " ]) ? q ( $ha ) . " @ " . q ( $_GET [ " host " ]) : " '' " ); if ( $_POST [ " drop " ]) query_redirect ( " DROP USER $of " , ME . " privileges= " , 'User has been dropped.' ); else { $af = q ( $_POST [ " user " ]) . " @ " . q ( $_POST [ " host " ]); $Xf = $_POST [ " pass " ]; if ( $Xf != '' &&! $_POST [ " hashed " ] &&! min_version ( 8 )){ $Xf = $g -> result ( " SELECT PASSWORD( " . q ( $Xf ) . " ) " ); $n =! $Xf ;} $Gb = false ; if ( ! $n ){ if ( $of != $af ){ $Gb = queries (( min_version ( 5 ) ? " CREATE USER " : " GRANT USAGE ON *.* TO " ) . " $af IDENTIFIED BY " . ( min_version ( 8 ) ? " " : " PASSWORD " ) . q ( $Xf )); $n =! $Gb ;} elseif ( $Xf != $nf ) queries ( " SET PASSWORD FOR $af = " . q ( $Xf ));} if ( ! $n ){ $Rg = array (); foreach ( $Ye
as $if => $ld ){ if ( isset ( $_GET [ " grant " ])) $ld = array_filter ( $ld ); $ld = array_keys ( $ld ); if ( isset ( $_GET [ " grant " ])) $Rg = array_diff ( array_keys ( array_filter ( $Ye [ $if ], 'strlen' )), $ld ); elseif ( $of == $af ){ $lf = array_keys (( array ) $md [ $if ]); $Rg = array_diff ( $lf , $ld ); $ld = array_diff ( $ld , $lf ); unset ( $md [ $if ]);} if ( preg_match ( '~^(.+)\s*(\(.*\))?$~U' , $if , $A ) && ( ! grant ( " REVOKE " , $Rg , $A [ 2 ], " ON $A[1] FROM $af " ) ||! grant ( " GRANT " , $ld , $A [ 2 ], " ON $A[1] TO $af " ))){ $n = true ; break ;}}} if ( ! $n && isset ( $_GET [ " host " ])){ if ( $of != $af ) queries ( " DROP USER $of " ); elseif ( ! isset ( $_GET [ " grant " ])){ foreach ( $md
as $if => $Rg ){ if ( preg_match ( '~^(.+)(\(.*\))?$~U' , $if , $A )) grant ( " REVOKE " , array_keys ( $Rg ), $A [ 2 ], " ON $A[1] FROM $af " );}}} queries_redirect ( ME . " privileges= " ,( isset ( $_GET [ " host " ]) ? 'User has been altered.' : 'User has been created.' ), ! $n ); if ( $Gb ) $g -> query ( " DROP USER $af " );}} page_header (( isset ( $_GET [ " host " ]) ? 'Username' . " : " . h ( " $ha @ $_GET[host] " ) : 'Create user' ), $n , array ( " privileges " => array ( '' , 'Privileges' ))); if ( $_POST ){ $I = $_POST ; $md = $Ye ;} else { $I = $_GET + array ( " host " => $g -> result ( " SELECT SUBSTRING_INDEX(CURRENT_USER, '@', -1) " )); $I [ " pass " ] = $nf ; if ( $nf != " " ) $I [ " hashed " ] = true ; $md [( DB == " " || $md ? " " : 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( $I["host"] ),' " autocapitalize = " off " >
< tr >< th > Username < td >< input name = " user " data - maxlength = " 80 " value = " ',h( $I["user"] ),' " autocapitalize = " off " >
< tr >< th > Password < td >< input name = " pass " id = " pass " value = " ',h( $I["pass"] ),' " autocomplete = " new-password " >
' ; if ( ! $I [ " hashed " ]) echo
script ( " typePassword(qs('#pass')); " ); echo ( min_version ( 8 ) ? " " : checkbox ( " hashed " , 1 , $I [ " 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 " )); $s = 0 ; foreach ( $md
as $if => $ld ){ echo '<th>' . ( $if != " *.* " ? " <input name='objects[ $s ]' value=' " . h ( $if ) . " ' size='10' autocapitalize='off'> " : " <input type='hidden' name='objects[ $s ]' value='*.*' size='10'>*.* " ); $s ++ ;} echo " </thead> \n " ; foreach ( array ( " " => " " , " Server Admin " => 'Server' , " Databases " => 'Database' , " Tables " => 'Table' , " Columns " => 'Column' , " Procedures " => 'Routine' ,) as $Bb => $Xb ){ foreach (( array ) $pg [ $Bb ] as $og => $ub ){ echo " <tr " . odd () . " ><td " . ( $Xb ? " > $Xb <td " : " colspan='2' " ) . ' lang="en" title="' . h ( $ub ) . '">' . h ( $og ); $s = 0 ; foreach ( $md
as $if => $ld ){ $B = " 'grants[ $s ][ " . h ( strtoupper ( $og )) . " ]' " ; $Y = $ld [ strtoupper ( $og )]; if ( $Bb == " Server Admin " && $if != ( isset ( $md [ " *.* " ]) ? " *.* " : " .* " )) echo " <td> " ; elseif ( isset ( $_GET [ " grant " ])) echo " <td><select name= $B ><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= $B value='1' " . ( $Y ? " checked " : " " ) . ( $og == " All privileges " ? " id='grants- $s -all'> " : " > " . ( $og == " Grant option " ? " " : script ( " qsl('input').onclick = function () { if (this.checked) formUncheck('grants- $s -all'); }; " ))), " </label> " ;} $s ++ ;}}} 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 = " ', $oi ,' " >
</ form >
';}elseif(isset($_GET["processlist"])){if(support("kill")&&$_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)});");$s=-1;foreach(process_list()as$s=>$I){if(!$s){echo"<thead><tr lang=' en ' > " .(support( " kill " )? " < th > " : " " );foreach( $I
as $y => $X ) echo " <th> $y " . doc_link ( array ( 'sql' => " show-processlist.html#processlist_ " . strtolower ( $y ), 'pgsql' => " monitoring-stats.html#PG-STAT-ACTIVITY-VIEW " , 'oracle' => " REFRN30223 " ,)); echo " </thead> \n " ;} echo " <tr " . odd () . " > " . ( support ( " kill " ) ? " <td> " . checkbox ( " kill[] " , $I [ $x == " sql " ? " Id " : " pid " ], 0 ) : " " ); foreach ( $I
as $y => $X ) echo " <td> " . (( $x == " sql " && $y == " Info " && preg_match ( " ~Query|Killed~ " , $I [ " Command " ]) && $X != " " ) || ( $x == " pgsql " && $y == " current_query " && $X != " <IDLE> " ) || ( $x == " oracle " && $y == " sql_text " && $X != " " ) ? " <code class='jush- $x '> " . shorten_utf8 ( $X , 100 , " </code> " ) . ' <a href="' . h ( ME . ( $I [ " db " ] != " " ? " db= " . urlencode ( $I [ " db " ]) . " & " : " " ) . " sql= " . urlencode ( $X )) . '">' . 'Clone' . '</a>' : h ( $X )); echo " \n " ;} echo ' </ table >
</ div >
< p >
';if(support("kill")){echo($s+1)."/".sprintf(' % d in total ',max_connections()),"<p><input type=' submit ' value=' " .'Kill'. " '>\n";}echo' < input type = " hidden " name = " token " value = " ', $oi ,' " >
</ form >
' , script ( " tableCheck(); " );} elseif ( isset ( $_GET [ " select " ])){ $a = $_GET [ " select " ]; $R = table_status1 ( $a ); $w = indexes ( $a ); $p = fields ( $a ); $ed = column_foreign_keys ( $a ); $kf = $R [ " Oid " ]; parse_str ( $_COOKIE [ " adminer_import " ], $ya ); $Sg = array (); $f = array (); $di = null ; foreach ( $p
as $y => $o ){ $B = $b -> fieldName ( $o ); if ( isset ( $o [ " privileges " ][ " select " ]) && $B != " " ){ $f [ $y ] = html_entity_decode ( strip_tags ( $B ), ENT_QUOTES ); if ( is_shortable ( $o )) $di = $b -> selectLengthProcess ();} $Sg += $o [ " privileges " ];} list ( $K , $nd ) = $b -> selectColumnsProcess ( $f , $w ); $Yd = count ( $nd ) < count ( $K ); $Z = $b -> selectSearchProcess ( $p , $w ); $_f = $b -> selectOrderProcess ( $p , $w ); $z = $b -> selectLimitProcess (); if ( $_GET [ " val " ] && is_ajax ()){ header ( " Content-Type: text/plain; charset=utf-8 " ); foreach ( $_GET [ " val " ] as $Fi => $I ){ $Ga = convert_field ( $p [ key ( $I )]); $K = array ( $Ga ? $Ga : idf_escape ( key ( $I ))); $Z [] = where_check ( $Fi , $p ); $H = $m -> select ( $a , $K , $Z , $K ); if ( $H ) echo
reset ( $H -> fetch_row ());} exit ;} $kg = $Hi = null ; foreach ( $w
as $v ){ if ( $v [ " type " ] == " PRIMARY " ){ $kg = array_flip ( $v [ " columns " ]); $Hi = ( $K ? $kg : array ()); foreach ( $Hi
as $y => $X ){ if ( in_array ( idf_escape ( $y ), $K )) unset ( $Hi [ $y ]);} break ;}} if ( $kf &&! $kg ){ $kg = $Hi = array ( $kf => 0 ); $w [] = array ( " type " => " PRIMARY " , " columns " => array ( $kf ));} if ( $_POST &&! $n ){ $jj = $Z ; if ( ! $_POST [ " all " ] && is_array ( $_POST [ " check " ])){ $gb = array (); foreach ( $_POST [ " check " ] as $db ) $gb [] = where_check ( $db , $p ); $jj [] = " (( " . implode ( " ) OR ( " , $gb ) . " )) " ;} $jj = ( $jj ? " \n WHERE " . implode ( " AND " , $jj ) : " " ); if ( $_POST [ " export " ]){ cookie ( " adminer_import " , " output= " . urlencode ( $_POST [ " output " ]) . " &format= " . urlencode ( $_POST [ " format " ])); dump_headers ( $a ); $b -> dumpTable ( $a , " " ); $jd = ( $K ? implode ( " , " , $K ) : " * " ) . convert_fields ( $f , $p , $K ) . " \n FROM " . table ( $a ); $pd = ( $nd && $Yd ? " \n GROUP BY " . implode ( " , " , $nd ) : " " ) . ( $_f ? " \n ORDER BY " . implode ( " , " , $_f ) : " " ); if ( ! is_array ( $_POST [ " check " ]) || $kg ) $F = " SELECT $jd $jj $pd " ; else { $Di = array (); foreach ( $_POST [ " check " ] as $X ) $Di [] = " (SELECT " . limit ( $jd , " \n WHERE " . ( $Z ? implode ( " AND " , $Z ) . " AND " : " " ) . where_check ( $X , $p ) . $pd , 1 ) . " ) " ; $F = implode ( " UNION ALL " , $Di );} $b -> dumpData ( $a , " table " , $F ); exit ;} if ( ! $b -> selectEmailProcess ( $Z , $ed )){ if ( $_POST [ " save " ] || $_POST [ " delete " ]){ $G = true ; $za = 0 ; $N = array (); if ( ! $_POST [ " delete " ]){ foreach ( $f
as $B => $X ){ $X = process_input ( $p [ $B ]); if ( $X !== null && ( $_POST [ " clone " ] || $X !== false )) $N [ idf_escape ( $B )] = ( $X !== false ? $X : idf_escape ( $B ));}} if ( $_POST [ " delete " ] || $N ){ if ( $_POST [ " clone " ]) $F = " INTO " . table ( $a ) . " ( " . implode ( " , " , array_keys ( $N )) . " ) \n SELECT " . implode ( " , " , $N ) . " \n FROM " . table ( $a ); if ( $_POST [ " all " ] || ( $kg && is_array ( $_POST [ " check " ])) || $Yd ){ $G = ( $_POST [ " delete " ] ? $m -> delete ( $a , $jj ) : ( $_POST [ " clone " ] ? queries ( " INSERT $F $jj " ) : $m -> update ( $a , $N , $jj ))); $za = $g -> affected_rows ;} else { foreach (( array ) $_POST [ " check " ] as $X ){ $fj = " \n WHERE " . ( $Z ? implode ( " AND " , $Z ) . " AND " : " " ) . where_check ( $X , $p ); $G = ( $_POST [ " delete " ] ? $m -> delete ( $a , $fj , 1 ) : ( $_POST [ " clone " ] ? queries ( " INSERT " . limit1 ( $a , $F , $fj )) : $m -> update ( $a , $N , $fj , 1 ))); if ( ! $G ) break ; $za += $g -> affected_rows ;}}} $Le = lang ( array ( '%d item has been affected.' , '%d items have been affected.' ), $za ); if ( $_POST [ " clone " ] && $G && $za == 1 ){ $oe = last_id (); if ( $oe ) $Le = sprintf ( 'Item%s has been inserted.' , " $oe " );} queries_redirect ( remove_from_uri ( $_POST [ " all " ] && $_POST [ " delete " ] ? " page " : " " ), $Le , $G ); 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 { $G = true ; $za = 0 ; foreach ( $_POST [ " val " ] as $Fi => $I ){ $N = array (); foreach ( $I
as $y => $X ){ $y = bracket_escape ( $y , 1 ); $N [ idf_escape ( $y )] = ( preg_match ( '~char|text~' , $p [ $y ][ " type " ]) || $X != " " ? $b -> processInput ( $p [ $y ], $X ) : " NULL " );} $G = $m -> update ( $a , $N , " WHERE " . ( $Z ? implode ( " AND " , $Z ) . " AND " : " " ) . where_check ( $Fi , $p ), ! $Yd &&! $kg , " " ); if ( ! $G ) break ; $za += $g -> affected_rows ;} queries_redirect ( remove_from_uri (), lang ( array ( '%d item has been affected.' , '%d items have been affected.' ), $za ), $G );}} elseif ( ! is_string ( $Tc = get_file ( " csv_file " , true ))) $n = upload_error ( $Tc ); elseif ( ! preg_match ( '~~u' , $Tc )) $n = 'File must be in UTF-8 encoding.' ; else { cookie ( " adminer_import " , " output= " . urlencode ( $ya [ " output " ]) . " &format= " . urlencode ( $_POST [ " separator " ])); $G = true ; $rb = array_keys ( $p ); preg_match_all ( '~(?>"[^"]*"|[^"\r\n]+)+~' , $Tc , $De ); $za = count ( $De [ 0 ]); $m -> begin (); $L = ( $_POST [ " separator " ] == " csv " ? " , " : ( $_POST [ " separator " ] == " tsv " ? " \t " : " ; " )); $J = array (); foreach ( $De [ 0 ] as $y => $X ){ preg_match_all ( " ~((?> \" [^ \" ]* \" )+|[^ $L ]*) $L ~ " , $X . $L , $Ee ); if ( ! $y &&! array_diff ( $Ee [ 1 ], $rb )){ $rb = $Ee [ 1 ]; $za -- ;} else { $N = array (); foreach ( $Ee [ 1 ] as $s => $nb ) $N [ idf_escape ( $rb [ $s ])] = ( $nb == " " && $p [ $rb [ $s ]][ " null " ] ? " NULL " : q ( str_replace ( '""' , '"' , preg_replace ( '~^"|"$~' , '' , $nb )))); $J [] = $N ;}} $G = ( ! $J || $m -> insertUpdate ( $a , $J , $kg )); if ( $G ) $G = $m -> commit (); queries_redirect ( remove_from_uri ( " page " ), lang ( array ( '%d row has been imported.' , '%d rows have been imported.' ), $za ), $G ); $m -> rollback ();}}} $Ph = $b -> tableName ( $R ); if ( is_ajax ()){ page_headers (); ob_start ();} else
page_header ( 'Select' . " : $Ph " , $n ); $N = null ; if ( isset ( $Sg [ " insert " ]) ||! support ( " table " )){ $N = " " ; foreach (( array ) $_GET [ " where " ] as $X ){ if ( $ed [ $X [ " col " ]] && count ( $ed [ $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 ( $K , $f ); $b -> selectSearchPrint ( $Z , $f , $w ); $b -> selectOrderPrint ( $_f , $f , $w ); $b -> selectLimitPrint ( $z ); $b -> selectLengthPrint ( $di ); $b -> selectActionPrint ( $w ); echo " </form> \n " ; $D = $_GET [ " page " ]; if ( $D == " last " ){ $hd = $g -> result ( count_rows ( $a , $Z , $Yd , $nd )); $D = floor ( max ( 0 , $hd - 1 ) / $z );} $eh = $K ; $od = $nd ; if ( ! $eh ){ $eh [] = " * " ; $Cb = convert_fields ( $f , $p , $K ); if ( $Cb ) $eh [] = substr ( $Cb , 2 );} foreach ( $K
as $y => $X ){ $o = $p [ idf_unescape ( $X )]; if ( $o && ( $Ga = convert_field ( $o ))) $eh [ $y ] = " $Ga AS $X " ;} if ( ! $Yd && $Hi ){ foreach ( $Hi
as $y => $X ){ $eh [] = idf_escape ( $y ); if ( $od ) $od [] = idf_escape ( $y );}} $G = $m -> select ( $a , $eh , $Z , $od , $_f , $z , $D , true ); if ( ! $G ) echo " <p class='error'> " . error () . " \n " ; else { if ( $x == " mssql " && $D ) $G -> seek ( $z * $D ); $sc = array (); echo " <form action='' method='post' enctype='multipart/form-data'> \n " ; $J = array (); while ( $I = $G -> fetch_assoc ()){ if ( $D && $x == " oracle " ) unset ( $I [ " RNUM " ]); $J [] = $I ;} if ( $_GET [ " page " ] != " last " && $z != " " && $nd && $Yd && $x == " sql " ) $hd = $g -> result ( " SELECT FOUND_ROWS() " ); if ( ! $J ) echo " <p class='message'> " . 'No rows.' . " \n " ; else { $Qa = $b -> backwardKeys ( $a , $Ph ); 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> " . ( ! $nd && $K ? " " : " <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> " ); $Xe = array (); $kd = array (); reset ( $K ); $zg = 1 ; foreach ( $J [ 0 ] as $y => $X ){ if ( ! isset ( $Hi [ $y ])){ $X = $_GET [ " columns " ][ key ( $K )]; $o = $p [ $K ? ( $X ? $X [ " col " ] : current ( $K )) : $y ]; $B = ( $o ? $b -> fieldName ( $o , $zg ) : ( $X [ " fun " ] ? " * " : $y )); if ( $B != " " ){ $zg ++ ; $Xe [ $y ] = $B ; $e = idf_escape ( $y ); $Bd = remove_from_uri ( '(order|desc)[^=]*|page' ) . '&order%5B0%5D=' . urlencode ( $y ); $Xb = " &desc%5B0%5D=1 " ; echo " <th> " . script ( " mixin(qsl('th'), { onmouseover: partial(columnMouse), onmouseout: partial(columnMouse, ' hidden')}); " , " " ), '<a href="' . h ( $Bd . ( $_f [ 0 ] == $e || $_f [ 0 ] == $y || ( ! $_f && $Yd && $nd [ 0 ] == $e ) ? $Xb : '' )) . '">' ; echo
2019-12-08 10:11:37 +00:00
apply_sql_function ( $X [ " fun " ], $B ) . " </a> " ; echo " <span class='column hidden'> " , " <a href=' " . h ( $Bd . $Xb ) . " ' 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 ( $y ) . " '); " );} echo " </span> " ;} $kd [ $y ] = $X [ " fun " ]; next ( $K );}} $ue = array (); if ( $_GET [ " modify " ]){ foreach ( $J
2019-12-08 06:56:36 +00:00
as $I ){ foreach ( $I
as $y => $X ) $ue [ $y ] = max ( $ue [ $y ], min ( 40 , strlen ( utf8_decode ( $X ))));}} echo ( $Qa ? " <th> " . 'Relations' : " " ) . " </thead> \n " ; if ( is_ajax ()){ if ( $z % 2 == 1 && $D % 2 == 1 ) odd (); ob_end_clean ();} foreach ( $b -> rowDescriptions ( $J , $ed ) as $We => $I ){ $Ei = unique_array ( $J [ $We ], $w ); if ( ! $Ei ){ $Ei = array (); foreach ( $J [ $We ] as $y => $X ){ if ( ! preg_match ( '~^(COUNT\((\*|(DISTINCT )?`(?:[^`]|``)+`)\)|(AVG|GROUP_CONCAT|MAX|MIN|SUM)\(`(?:[^`]|``)+`\))$~' , $y )) $Ei [ $y ] = $X ;}} $Fi = " " ; foreach ( $Ei
as $y => $X ){ if (( $x == " sql " || $x == " pgsql " ) && preg_match ( '~char|text|enum|set~' , $p [ $y ][ " type " ]) && strlen ( $X ) > 64 ){ $y = ( strpos ( $y , '(' ) ? $y : idf_escape ( $y )); $y = " MD5( " . ( $x != 'sql' || preg_match ( " ~^utf8~ " , $p [ $y ][ " collation " ]) ? $y : " CONVERT( $y USING " . charset ( $g ) . " ) " ) . " ) " ; $X = md5 ( $X );} $Fi .= " & " . ( $X !== null ? urlencode ( " where[ " . bracket_escape ( $y ) . " ] " ) . " = " . urlencode ( $X ) : " null%5B%5D= " . urlencode ( $y ));} echo " <tr " . odd () . " > " . ( ! $nd && $K ? " " : " <td> " . checkbox ( " check[] " , substr ( $Fi , 1 ), in_array ( substr ( $Fi , 1 ),( array ) $_POST [ " check " ])) . ( $Yd || information_schema ( DB ) ? " " : " <a href=' " . h ( ME . " edit= " . urlencode ( $a ) . $Fi ) . " ' class='edit'> " . 'edit' . " </a> " )); foreach ( $I
as $y => $X ){ if ( isset ( $Xe [ $y ])){ $o = $p [ $y ]; $X = $m -> value ( $X , $o ); if ( $X != " " && ( ! isset ( $sc [ $y ]) || $sc [ $y ] != " " )) $sc [ $y ] = ( is_mail ( $X ) ? $Xe [ $y ] : " " ); $_ = " " ; if ( preg_match ( '~blob|bytea|raw|file~' , $o [ " type " ]) && $X != " " ) $_ = ME . 'download=' . urlencode ( $a ) . '&field=' . urlencode ( $y ) . $Fi ; if ( ! $_ && $X !== null ){ foreach (( array ) $ed [ $y ] as $q ){ if ( count ( $ed [ $y ]) == 1 || end ( $q [ " source " ]) == $y ){ $_ = " " ; foreach ( $q [ " source " ] as $s => $wh ) $_ .= where_link ( $s , $q [ " target " ][ $s ], $J [ $We ][ $wh ]); $_ = ( $q [ " db " ] != " " ? preg_replace ( '~([?&]db=)[^&]+~' , '\1' . urlencode ( $q [ " db " ]), ME ) : ME ) . 'select=' . urlencode ( $q [ " table " ]) . $_ ; if ( $q [ " ns " ]) $_ = preg_replace ( '~([?&]ns=)[^&]+~' , '\1' . urlencode ( $q [ " ns " ]), $_ ); if ( count ( $q [ " source " ]) == 1 ) break ;}}} if ( $y == " COUNT(*) " ){ $_ = ME . " select= " . urlencode ( $a ); $s = 0 ; foreach (( array ) $_GET [ " where " ] as $W ){ if ( ! array_key_exists ( $W [ " col " ], $Ei )) $_ .= where_link ( $s ++ , $W [ " col " ], $W [ " val " ], $W [ " op " ]);} foreach ( $Ei
2019-12-08 10:11:37 +00:00
as $de => $W ) $_ .= where_link ( $s ++ , $de , $W );} $X = select_value ( $X , $_ , $o , $di ); $t = h ( " val[ $Fi ][ " . bracket_escape ( $y ) . " ] " ); $Y = $_POST [ " val " ][ $Fi ][ bracket_escape ( $y )]; $nc =! is_array ( $I [ $y ]) && is_utf8 ( $X ) && $J [ $We ][ $y ] == $I [ $y ] &&! $kd [ $y ]; $ci = preg_match ( '~text|lob~' , $o [ " type " ]); echo " <td id=' $t ' " ; if (( $_GET [ " modify " ] && $nc ) || $Y !== null ){ $sd = h ( $Y !== null ? $Y : $I [ $y ]); echo " > " . ( $ci ? " <textarea name=' $t ' cols='30' rows=' " . ( substr_count ( $I [ $y ], " \n " ) + 1 ) . " '> $sd </textarea> " : " <input name=' $t ' value=' $sd ' size=' $ue[$y] '> " );} else { $ze = strpos ( $X , " <i>…</i> " ); echo " data-text=' " . ( $ze ? 2 : ( $ci ? 1 : 0 )) . " ' " . ( $nc ? " " : " data-warning=' " . h ( 'Use edit link to modify this value.' ) . " ' " ) . " > $X </td> " ;}}} if ( $Qa ) echo " <td> " ; $b -> backwardKeysPrint ( $Qa , $J [ $We ]); echo " </tr> \n " ;} if ( is_ajax ()) exit ; echo " </table> \n " , " </div> \n " ;} if ( ! is_ajax ()){ if ( $J || $D ){ $Bc = true ; if ( $_GET [ " page " ] != " last " ){ if ( $z == " " || ( count ( $J ) < $z && ( $J ||! $D ))) $hd = ( $D ? $D * $z : 0 ) + count ( $J ); elseif ( $x != " sql " ||! $Yd ){ $hd = ( $Yd ? false : found_rows ( $R , $Z )); if ( $hd < max ( 1e4 , 2 * ( $D + 1 ) * $z )) $hd = reset ( slow_query ( count_rows ( $a , $Z , $Yd , $nd ))); else $Bc = false ;}} $Mf = ( $z != " " && ( $hd === false || $hd > $z || $D )); if ( $Mf ){ echo (( $hd === false ? count ( $J ) + 1 : $hd - $D * $z ) > $z ? '<p><a href="' . h ( remove_from_uri ( " page " ) . " &page= " . ( $D + 1 )) . '" class="loadmore">' . 'Load more data' . '</a>' . script ( " qsl('a').onclick = partial(selectLoadMore, " . ( + $z ) . " , ' " . 'Loading' . " …'); " , " " ) : '' ), " \n " ;}} echo " <div class='footer'><div> \n " ; if ( $J || $D ){ if ( $Mf ){ $Ge = ( $hd === false ? $D + ( count ( $J ) >= $z ? 2 : 1 ) : floor (( $hd - 1 ) / $z )); echo " <fieldset> " ; if ( $x != " simpledb " ){ echo " <legend><a href=' " . h ( remove_from_uri ( " page " )) . " '> " . 'Page' . " </a></legend> " , script ( " qsl('a').onclick = function () { pageClick(this.href, +prompt(' " . 'Page' . " ', ' " . ( $D + 1 ) . " ')); return false; }; " ), pagination ( 0 , $D ) . ( $D > 5 ? " … " : " " ); for ( $s = max ( 1 , $D - 4 ); $s < min ( $Ge , $D + 5 ); $s ++ ) echo
pagination ( $s , $D ); if ( $Ge > 0 ){ echo ( $D + 5 < $Ge ? " … " : " " ),( $Bc && $hd !== false ? pagination ( $Ge , $D ) : " <a href=' " . h ( remove_from_uri ( " page " ) . " &page=last " ) . " ' title='~ $Ge '> " . 'last' . " </a> " );}} else { echo " <legend> " . 'Page' . " </legend> " , pagination ( 0 , $D ) . ( $D > 1 ? " … " : " " ),( $D ? pagination ( $D , $D ) : " " ),( $Ge > $D ? pagination ( $D + 1 , $D ) . ( $Ge > $D + 1 ? " … " : " " ) : " " );} echo " </fieldset> \n " ;} echo " <fieldset> " , " <legend> " . 'Whole result' . " </legend> " ; $cc = ( $Bc ? " " : " ~ " ) . $hd ; echo
2019-12-08 06:56:36 +00:00
checkbox ( " all " , 1 , 0 ,( $hd !== false ? ( $Bc ? " " : " ~ " ) . lang ( array ( '%d row' , '%d rows' ), $hd ) : " " ), " var checked = formChecked(this, /check/); selectCount('selected', this.checked ? ' $cc ' : checked); selectCount('selected2', this.checked || !checked ? ' $cc ' : 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 >
';}$fd=$b->dumpFormat();foreach((array)$_GET["columns"]as$e){if($e["fun"]){unset($fd[' sql ']);break;}}if($fd){print_fieldset("export",' Export '." <span id=' selected2 '></span>");$Kf=$b->dumpOutput();echo($Kf?html_select("output",$Kf,$ya["output"])." ":""),html_select("format",$fd,$ya["format"])," <input type=' submit ' name=' export ' value=' " .'Export'. " '>\n","</div></fieldset>\n";}$b->selectEmailPrint(array_filter($sc,' 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='$oi'>\n","</form>\n",(!$nd&&$K?"":script("tableCheck();"));}}}if(is_ajax()){ob_end_clean();exit;}}elseif(isset($_GET["variables"])){$O=isset($_GET["status"]);page_header($O?'Status':'Variables');$Wi=($O?show_status():show_variables());if(!$Wi)echo"<p class='message'>".'No rows.'."\n";else{echo"<table cellspacing='0'>\n";foreach($Wi
as $y => $X ){ echo " <tr> " , " <th><code class='jush- " . $x . ( $O ? " status " : " set " ) . " '> " . h ( $y ) . " </code> " , " <td> " . h ( $X );} echo " </table> \n " ;}} elseif ( isset ( $_GET [ " script " ])){ header ( " Content-Type: text/javascript; charset=utf-8 " ); if ( $_GET [ " script " ] == " db " ){ $Mh = array ( " Data_length " => 0 , " Index_length " => 0 , " Data_free " => 0 ); foreach ( table_status () as $B => $R ){ json_row ( " Comment- $B " , h ( $R [ " Comment " ])); if ( ! is_view ( $R )){ foreach ( array ( " Engine " , " Collation " ) as $y ) json_row ( " $y - $B " , h ( $R [ $y ])); foreach ( $Mh + array ( " Auto_increment " => 0 , " Rows " => 0 ) as $y => $X ){ if ( $R [ $y ] != " " ){ $X = format_number ( $R [ $y ]); json_row ( " $y - $B " ,( $y == " Rows " && $X && $R [ " Engine " ] == ( $zh == " pgsql " ? " table " : " InnoDB " ) ? " ~ $X " : $X )); if ( isset ( $Mh [ $y ])) $Mh [ $y ] += ( $R [ " Engine " ] != " InnoDB " || $y != " Data_free " ? $R [ $y ] : 0 );} elseif ( array_key_exists ( $y , $R )) json_row ( " $y - $B " );}}} foreach ( $Mh
as $y => $X ) json_row ( " sum- $y " , 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 { $Vh = array_merge (( array ) $_POST [ " tables " ],( array ) $_POST [ " views " ]); if ( $Vh &&! $n &&! $_POST [ " search " ]){ $G = true ; $Le = " " ; if ( $x == " 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 " ]) $G = truncate_tables ( $_POST [ " tables " ]); $Le = 'Tables have been truncated.' ;} elseif ( $_POST [ " move " ]){ $G = move_tables (( array ) $_POST [ " tables " ],( array ) $_POST [ " views " ], $_POST [ " target " ]); $Le = 'Tables have been moved.' ;} elseif ( $_POST [ " copy " ]){ $G = copy_tables (( array ) $_POST [ " tables " ],( array ) $_POST [ " views " ], $_POST [ " target " ]); $Le = 'Tables have been copied.' ;} elseif ( $_POST [ " drop " ]){ if ( $_POST [ " views " ]) $G = drop_views ( $_POST [ " views " ]); if ( $G && $_POST [ " tables " ]) $G = drop_tables ( $_POST [ " tables " ]); $Le = 'Tables have been dropped.' ;} elseif ( $x != " sql " ){ $G = ( $x == " sqlite " ? queries ( " VACUUM " ) : apply_queries ( " VACUUM " . ( $_POST [ " optimize " ] ? " " : " ANALYZE " ), $_POST [ " tables " ])); $Le = 'Tables have been optimized.' ;} elseif ( ! $_POST [ " tables " ]) $Le = 'No tables.' ; elseif ( $G = queries (( $_POST [ " optimize " ] ? " OPTIMIZE " : ( $_POST [ " check " ] ? " CHECK " : ( $_POST [ " repair " ] ? " REPAIR " : " ANALYZE " ))) . " TABLE " . implode ( " , " , array_map ( 'idf_escape' , $_POST [ " tables " ])))){ while ( $I = $G -> fetch_assoc ()) $Le .= " <b> " . h ( $I [ " Table " ]) . " </b>: " . h ( $I [ " Msg_text " ]) . " <br> " ;} queries_redirect ( substr ( ME , 0 , - 1 ), $Le , $G );} 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 " ; $Uh = tables_list (); if ( ! $Uh ) 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 ( $Uh
as $B => $T ){ $Zi = ( $T !== null &&! preg_match ( '~table~i' , $T )); $t = h ( " Table- " . $B ); echo '<tr' . odd () . '><td>' . checkbox (( $Zi ? " views[] " : " tables[] " ), $B , in_array ( $B , $Vh , true ), " " , " " , " " , $t ), '<th>' . ( support ( " table " ) || support ( " indexes " ) ? " <a href=' " . h ( ME ) . " table= " . urlencode ( $B ) . " ' title=' " . 'Show structure' . " ' id=' $t '> " . h ( $B ) . '</a>' : h ( $B )); if ( $Zi ){ echo '<td colspan="6"><a href="' . h ( ME ) . " view= " . urlencode ( $B ) . '" title="' . 'Alter view' . '">' . ( preg_match ( '~materialized~i' , $T ) ? 'Materialized view' : 'View' ) . '</a>' , '<td align="right"><a href="' . h ( ME ) . " select= " . urlencode ( $B ) . '" 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 $y => $_ ){ $t = " id=' $y - " . h ( $B ) . " ' " ; echo ( $_ ? " <td align='right'> " . ( support ( " table " ) || $y == " Rows " || ( support ( " indexes " ) && $y != " Data_length " ) ? " <a href=' " . h ( ME . " $_[0] = " ) . urlencode ( $B ) . " ' $t title=' $_[1] '>?</a> " : " <span $t >?</span> " ) : " <td id=' $y - " . h ( $B ) . " '> " );} $S ++ ;} echo ( support ( " comment " ) ? " <td id='Comment- " . h ( $B ) . " '> " : " " );} echo " <tr><td><th> " . sprintf ( '%d in total' , count ( $Uh )), " <td> " . h ( $x == " sql " ? $g -> result ( " SELECT @@storage_engine " ) : " " ), " <td> " . h ( db_collation ( DB , collations ())); foreach ( array ( " Data_length " , " Index_length " , " Data_free " ) as $y ) echo " <td align='right' id='sum- $y '> " ; echo " </table> \n " , " </div> \n " ; if ( ! information_schema ( DB )){ echo " <div class='footer'><div> \n " ; $Ti = " <input type='submit' value=' " . 'Vacuum' . " '> " . on_help ( " 'VACUUM' " ); $wf = " <input type='submit' name='optimize' value=' " . 'Optimize' . " '> " . on_help ( $x == " sql " ? " 'OPTIMIZE TABLE' " : " 'VACUUM OPTIMIZE' " ); echo " <fieldset><legend> " . 'Selected' . " <span id='selected'></span></legend><div> " . ( $x == " sqlite " ? $Ti : ( $x == " pgsql " ? $Ti . $wf : ( $x == " sql " ? " <input type='submit' value=' " . 'Analyze' . " '> " . on_help ( " 'ANALYZE TABLE' " ) . $wf . " <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 ( $x == " sqlite " ? " 'DELETE' " : " 'TRUNCATE " . ( $x == " 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 && $x != " 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=' $oi '> \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 " ; $Wg = routines (); if ( $Wg ){ echo " <table cellspacing='0'> \n " , '<thead><tr><th>' . 'Name' . '<td>' . 'Type' . '<td>' . 'Return type' . " <td></thead> \n " ; odd ( '' ); foreach ( $Wg
as $I ){ $B = ( $I [ " SPECIFIC_NAME " ] == $I [ " ROUTINE_NAME " ] ? " " : " &name= " . urlencode ( $I [ " ROUTINE_NAME " ])); echo '<tr' . odd () . '>' , '<th><a href="' . h ( ME . ( $I [ " ROUTINE_TYPE " ] != " PROCEDURE " ? 'callf=' : 'call=' ) . urlencode ( $I [ " SPECIFIC_NAME " ]) . $B ) . '">' . h ( $I [ " ROUTINE_NAME " ]) . '</a>' , '<td>' . h ( $I [ " ROUTINE_TYPE " ]), '<td>' . h ( $I [ " DTD_IDENTIFIER " ]), '<td><a href="' . h ( ME . ( $I [ " ROUTINE_TYPE " ] != " PROCEDURE " ? 'function=' : 'procedure=' ) . urlencode ( $I [ " SPECIFIC_NAME " ]) . $B ) . '">' . '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 " ; $kh = get_vals ( " SELECT sequence_name FROM information_schema.sequences WHERE sequence_schema = current_schema() ORDER BY sequence_name " ); if ( $kh ){ echo " <table cellspacing='0'> \n " , " <thead><tr><th> " . 'Name' . " </thead> \n " ; odd ( '' ); foreach ( $kh
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 " ; $Ri = types (); if ( $Ri ){ echo " <table cellspacing='0'> \n " , " <thead><tr><th> " . 'Name' . " </thead> \n " ; odd ( '' ); foreach ( $Ri
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 " ; $J = get_rows ( " SHOW EVENTS " ); if ( $J ){ echo " <table cellspacing='0'> \n " , " <thead><tr><th> " . 'Name' . " <td> " . 'Schedule' . " <td> " . 'Start' . " <td> " . 'End' . " <td></thead> \n " ; foreach ( $J
as $I ){ echo " <tr> " , " <th> " . h ( $I [ " Name " ]), " <td> " . ( $I [ " Execute at " ] ? 'At given time' . " <td> " . $I [ " Execute at " ] : 'Every' . " " . $I [ " Interval value " ] . " " . $I [ " Interval field " ] . " <td> $I[Starts] " ), " <td> $I[Ends] " , '<td><a href="' . h ( ME ) . 'event=' . urlencode ( $I [ " Name " ]) . '">' . 'Alter' . '</a>' ;} echo " </table> \n " ; $_c = $g -> result ( " SELECT @@event_scheduler " ); if ( $_c && $_c != " ON " ) echo " <p class='error'><code class='jush-sqlset'>event_scheduler</code>: " . h ( $_c ) . " \n " ;} echo '<p class="links"><a href="' . h ( ME ) . 'event=">' . 'Create event' . " </a> \n " ;} if ( $Uh ) echo
script ( " ajaxSetHtml(' " . js_escape ( ME ) . " script=db'); " );}}} page_footer ();