2018-12-15 21:22:00 +00:00
< ? php
/** Adminer - Compact database management
* @ link https :// www . adminer . org /
* @ author Jakub Vrana , https :// www . vrana . cz /
* @ copyright 2007 Jakub Vrana
* @ license https :// www . apache . org / licenses / LICENSE - 2.0 Apache License , Version 2.0
* @ license https :// www . gnu . org / licenses / gpl - 2.0 . html GNU General Public License , version 2 ( one or other )
2019-02-03 12:13:26 +00:00
* @ version 4.7 . 1
*/ error_reporting ( 6135 ); $Tc =! preg_match ( '~^(unsafe_raw)?$~' , ini_get ( " filter.default " )); if ( $Tc || ini_get ( " filter.default_flags " )){ foreach ( array ( '_GET' , '_POST' , '_COOKIE' , '_SERVER' ) as $X ){ $Ei = filter_input_array ( constant ( " INPUT $X " ), FILTER_UNSAFE_RAW ); if ( $Ei ) $$X = $Ei ;}} if ( function_exists ( " mb_internal_encoding " )) mb_internal_encoding ( " 8bit " ); function
2018-12-15 21:22:00 +00:00
connection (){ global $g ; return $g ;} function
adminer (){ global $b ; return $b ;} function
version (){ global $ia ; return $ia ;} function
2019-02-03 12:13:26 +00:00
idf_unescape ( $v ){ $le = substr ( $v , - 1 ); return
str_replace ( $le . $le , $le , substr ( $v , 1 , - 1 ));} function
2018-12-15 21:22:00 +00:00
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-02-03 12:13:26 +00:00
remove_slashes ( $ng , $Tc = false ){ if ( get_magic_quotes_gpc ()){ while ( list ( $z , $X ) = each ( $ng )){ foreach ( $X
as $be => $W ){ unset ( $ng [ $z ][ $be ]); if ( is_array ( $W )){ $ng [ $z ][ stripslashes ( $be )] = $W ; $ng [] =& $ng [ $z ][ stripslashes ( $be )];} else $ng [ $z ][ stripslashes ( $be )] = ( $Tc ? $W : stripslashes ( $W ));}}}} function
bracket_escape ( $v , $Na = false ){ static $qi = array ( ':' => ':1' , ']' => ':2' , '[' => ':3' , '"' => ':4' ); return
strtr ( $v ,( $Na ? array_flip ( $qi ) : $qi ));} function
min_version ( $Vi , $_e = " " , $h = null ){ global $g ; if ( ! $h ) $h = $g ; $ih = $h -> server_info ; if ( $_e && preg_match ( '~([\d.]+)-MariaDB~' , $ih , $B )){ $ih = $B [ 1 ]; $Vi = $_e ;} return ( version_compare ( $ih , $Vi ) >= 0 );} function
2018-12-15 21:22:00 +00:00
charset ( $g ){ return ( min_version ( " 5.5.3 " , 0 , $g ) ? " utf8mb4 " : " utf8 " );} function
script ( $th , $pi = " \n " ){ return " <script " . nonce () . " > $th </script> $pi " ;} function
script_src ( $Ji ){ return " <script src=' " . h ( $Ji ) . " ' " . 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
2019-02-03 12:13:26 +00:00
checkbox ( $C , $Y , $eb , $ie = " " , $pf = " " , $jb = " " , $je = " " ){ $I = " <input type='checkbox' name=' $C ' value=' " . h ( $Y ) . " ' " . ( $eb ? " checked " : " " ) . ( $je ? " aria-labelledby=' $je ' " : " " ) . " > " . ( $pf ? script ( " qsl('input').onclick = function () { $pf }; " , " " ) : " " ); return ( $ie != " " || $jb ? " <label " . ( $jb ? " class=' $jb ' " : " " ) . " > $I " . h ( $ie ) . " </label> " : $I );} function
optionlist ( $vf , $ch = null , $Ni = false ){ $I = " " ; foreach ( $vf
as $be => $W ){ $wf = array ( $be => $W ); if ( is_array ( $W )){ $I .= '<optgroup label="' . h ( $be ) . '">' ; $wf = $W ;} foreach ( $wf
as $z => $X ) $I .= '<option' . ( $Ni || is_string ( $z ) ? ' value="' . h ( $z ) . '"' : '' ) . (( $Ni || is_string ( $z ) ? ( string ) $z : $X ) === $ch ? ' selected' : '' ) . '>' . h ( $X ); if ( is_array ( $W )) $I .= '</optgroup>' ;} return $I ;} function
html_select ( $C , $vf , $Y = " " , $of = true , $je = " " ){ if ( $of ) return " <select name=' " . h ( $C ) . " ' " . ( $je ? " aria-labelledby=' $je ' " : " " ) . " > " . optionlist ( $vf , $Y ) . " </select> " . ( is_string ( $of ) ? script ( " qsl('select').onchange = function () { $of }; " , " " ) : " " ); $I = " " ; foreach ( $vf
as $z => $X ) $I .= " <label><input type='radio' name=' " . h ( $C ) . " ' value=' " . h ( $z ) . " ' " . ( $z == $Y ? " checked " : " " ) . " > " . h ( $X ) . " </label> " ; return $I ;} function
select_input ( $Ja , $vf , $Y = " " , $of = " " , $Zf = " " ){ $Uh = ( $vf ? " select " : " input " ); return " < $Uh $Ja " . ( $vf ? " ><option value=''> $Zf " . optionlist ( $vf , $Y , true ) . " </select> " : " size='10' value=' " . h ( $Y ) . " ' placeholder=' $Zf '> " ) . ( $of ? script ( " qsl(' $Uh ').onchange = $of ; " , " " ) : " " );} function
confirm ( $Je = " " , $dh = " qsl('input') " ){ return
script ( " $dh .onclick = function () { return confirm(' " . ( $Je ? js_escape ( $Je ) : 'Are you sure?' ) . " '); }; " , " " );} function
print_fieldset ( $u , $qe , $Yi = false ){ echo " <fieldset><legend> " , " <a href='#fieldset- $u '> $qe </a> " , script ( " qsl('a').onclick = partial(toggle, 'fieldset- $u '); " , " " ), " </legend> " , " <div id='fieldset- $u ' " . ( $Yi ? " " : " class='hidden' " ) . " > \n " ;} function
2018-12-15 21:22:00 +00:00
bold ( $Va , $jb = " " ){ return ( $Va ? " class='active $jb ' " : ( $jb ? " class=' $jb ' " : " " ));} function
2019-02-03 12:13:26 +00:00
odd ( $I = ' class="odd"' ){ static $t = 0 ; if ( ! $I ) $t =- 1 ; return ( $t ++% 2 ? $I : '' );} function
2018-12-15 21:22:00 +00:00
js_escape ( $P ){ return
addcslashes ( $P , " \r \n ' \\ / " );} function
2019-02-03 12:13:26 +00:00
json_row ( $z , $X = null ){ static $Uc = true ; if ( $Uc ) echo " { " ; if ( $z != " " ){ echo ( $Uc ? " " : " , " ) . " \n \t \" " . addcslashes ( $z , " \r \n \t \" \\ / " ) . '": ' . ( $X !== null ? '"' . addcslashes ( $X , " \r \n \" \\ / " ) . '"' : 'null' ); $Uc = false ;} else { echo " \n } \n " ; $Uc = true ;}} function
ini_bool ( $Od ){ $X = ini_get ( $Od ); return ( preg_match ( '~^(on|true|yes)$~i' , $X ) || ( int ) $X );} function
2018-12-15 21:22:00 +00:00
sid (){ static $I ; if ( $I === null ) $I = ( SID &&! ( $_COOKIE && ini_bool ( " session.use_cookies " ))); return $I ;} function
set_password ( $Ui , $N , $V , $F ){ $_SESSION [ " pwds " ][ $Ui ][ $N ][ $V ] = ( $_COOKIE [ " adminer_key " ] && is_string ( $F ) ? array ( encrypt_string ( $F , $_COOKIE [ " adminer_key " ])) : $F );} function
get_password (){ $I = get_session ( " pwds " ); if ( is_array ( $I )) $I = ( $_COOKIE [ " adminer_key " ] ? decrypt_string ( $I [ 0 ], $_COOKIE [ " adminer_key " ]) : false ); return $I ;} function
q ( $P ){ global $g ; return $g -> quote ( $P );} function
get_vals ( $G , $e = 0 ){ global $g ; $I = array (); $H = $g -> query ( $G ); if ( is_object ( $H )){ while ( $J = $H -> fetch_row ()) $I [] = $J [ $e ];} return $I ;} function
2019-02-03 12:13:26 +00:00
get_key_vals ( $G , $h = null , $lh = true ){ global $g ; if ( ! is_object ( $h )) $h = $g ; $I = array (); $H = $h -> query ( $G ); if ( is_object ( $H )){ while ( $J = $H -> fetch_row ()){ if ( $lh ) $I [ $J [ 0 ]] = $J [ 1 ]; else $I [] = $J [ 0 ];}} return $I ;} function
get_rows ( $G , $h = null , $o = " <p class='error'> " ){ global $g ; $vb = ( is_object ( $h ) ? $h : $g ); $I = array (); $H = $vb -> query ( $G ); if ( is_object ( $H )){ while ( $J = $H -> fetch_assoc ()) $I [] = $J ;} elseif ( ! $H &&! is_object ( $h ) && $o && defined ( " PAGE_HEADER " )) echo $o . error () . " \n " ; return $I ;} function
unique_array ( $J , $x ){ foreach ( $x
as $w ){ if ( preg_match ( " ~PRIMARY|UNIQUE~ " , $w [ " type " ])){ $I = array (); foreach ( $w [ " columns " ] as $z ){ if ( ! isset ( $J [ $z ])) continue
2 ; $I [ $z ] = $J [ $z ];} return $I ;}}} function
escape_key ( $z ){ if ( preg_match ( '(^([\w(]+)(' . str_replace ( " _ " , " .* " , preg_quote ( idf_escape ( " _ " ))) . ')([ \w)]+)$)' , $z , $B )) return $B [ 1 ] . idf_escape ( idf_unescape ( $B [ 2 ])) . $B [ 3 ]; return
idf_escape ( $z );} function
where ( $Z , $q = array ()){ global $g , $y ; $I = array (); foreach (( array ) $Z [ " where " ] as $z => $X ){ $z = bracket_escape ( $z , 1 ); $e = escape_key ( $z ); $I [] = $e . ( $y == " sql " && preg_match ( '~^[0-9]*\.[0-9]*$~' , $X ) ? " LIKE " . q ( addcslashes ( $X , " %_ \\ " )) : ( $y == " mssql " ? " LIKE " . q ( preg_replace ( '~[_%[]~' , '[\0]' , $X )) : " = " . unconvert_field ( $q [ $z ], q ( $X )))); if ( $y == " sql " && preg_match ( '~char|text~' , $q [ $z ][ " type " ]) && preg_match ( " ~[^ -@]~ " , $X )) $I [] = " $e = " . q ( $X ) . " COLLATE " . charset ( $g ) . " _bin " ;} foreach (( array ) $Z [ " null " ] as $z ) $I [] = escape_key ( $z ) . " IS NULL " ; return
2018-12-15 21:22:00 +00:00
implode ( " AND " , $I );} function
2019-02-03 12:13:26 +00:00
where_check ( $X , $q = array ()){ parse_str ( $X , $cb ); remove_slashes ( array ( & $cb )); return
where ( $cb , $q );} function
where_link ( $t , $e , $Y , $rf = " = " ){ return " &where%5B $t %5D%5Bcol%5D= " . urlencode ( $e ) . " &where%5B $t %5D%5Bop%5D= " . urlencode (( $Y !== null ? $rf : " IS NULL " )) . " &where%5B $t %5D%5Bval%5D= " . urlencode ( $Y );} function
convert_fields ( $f , $q , $L = array ()){ $I = " " ; foreach ( $f
as $z => $X ){ if ( $L &&! in_array ( idf_escape ( $z ), $L )) continue ; $Ga = convert_field ( $q [ $z ]); if ( $Ga ) $I .= " , $Ga AS " . idf_escape ( $z );} return $I ;} function
cookie ( $C , $Y , $te = 2592000 ){ global $ba ; return
header ( " Set-Cookie: $C = " . urlencode ( $Y ) . ( $te ? " ; expires= " . gmdate ( " D, d M Y H:i:s " , time () + $te ) . " GMT " : " " ) . " ; path= " . preg_replace ( '~\?.*~' , '' , $_SERVER [ " REQUEST_URI " ]) . ( $ba ? " ; secure " : " " ) . " ; HttpOnly; SameSite=lax " , false );} function
2018-12-15 21:22:00 +00:00
restart_session (){ if ( ! ini_bool ( " session.use_cookies " )) session_start ();} function
2019-02-03 12:13:26 +00:00
stop_session ( $Zc = false ){ if ( ! ini_bool ( " session.use_cookies " ) || ( $Zc &&@ ini_set ( " session.use_cookies " , false ) !== false )) session_write_close ();} function & get_session ( $z ){ return $_SESSION [ $z ][ DRIVER ][ SERVER ][ $_GET [ " username " ]];} function
set_session ( $z , $X ){ $_SESSION [ $z ][ DRIVER ][ SERVER ][ $_GET [ " username " ]] = $X ;} function
auth_url ( $Ui , $N , $V , $m = null ){ global $cc ; preg_match ( '~([^?]*)\??(.*)~' , remove_from_uri ( implode ( " | " , array_keys ( $cc )) . " |username| " . ( $m !== null ? " db| " : " " ) . session_name ()), $B ); return " $B[1] ? " . ( sid () ? SID . " & " : " " ) . ( $Ui != " server " || $N != " " ? urlencode ( $Ui ) . " = " . urlencode ( $N ) . " & " : " " ) . " username= " . urlencode ( $V ) . ( $m != " " ? " &db= " . urlencode ( $m ) : " " ) . ( $B [ 2 ] ? " & $B[2] " : " " );} function
2018-12-15 21:22:00 +00:00
is_ajax (){ return ( $_SERVER [ " HTTP_X_REQUESTED_WITH " ] == " XMLHttpRequest " );} function
2019-02-03 12:13:26 +00:00
redirect ( $ve , $Je = null ){ if ( $Je !== null ){ restart_session (); $_SESSION [ " messages " ][ preg_replace ( '~^[^?]*~' , '' ,( $ve !== null ? $ve : $_SERVER [ " REQUEST_URI " ]))][] = $Je ;} if ( $ve !== null ){ if ( $ve == " " ) $ve = " . " ; header ( " Location: $ve " ); exit ;}} function
query_redirect ( $G , $ve , $Je , $zg = true , $Ac = true , $Lc = false , $ci = " " ){ global $g , $o , $b ; if ( $Ac ){ $Ah = microtime ( true ); $Lc =! $g -> query ( $G ); $ci = format_time ( $Ah );} $wh = " " ; if ( $G ) $wh = $b -> messageQuery ( $G , $ci , $Lc ); if ( $Lc ){ $o = error () . $wh . script ( " messagesPrint(); " ); return
false ;} if ( $zg ) redirect ( $ve , $Je . $wh ); return
2018-12-15 21:22:00 +00:00
true ;} function
2019-02-03 12:13:26 +00:00
queries ( $G ){ global $g ; static $sg = array (); static $Ah ; if ( ! $Ah ) $Ah = microtime ( true ); if ( $G === null ) return
array ( implode ( " \n " , $sg ), format_time ( $Ah )); $sg [] = ( preg_match ( '~;$~' , $G ) ? " DELIMITER ;; \n $G ; \n DELIMITER " : $G ) . " ; " ; return $g -> query ( $G );} function
apply_queries ( $G , $S , $xc = 'table' ){ foreach ( $S
as $Q ){ if ( ! queries ( " $G " . $xc ( $Q ))) return
2018-12-15 21:22:00 +00:00
false ;} return
true ;} function
2019-02-03 12:13:26 +00:00
queries_redirect ( $ve , $Je , $zg ){ list ( $sg , $ci ) = queries ( null ); return
query_redirect ( $sg , $ve , $Je , $zg , false , ! $zg , $ci );} function
2018-12-15 21:22:00 +00:00
format_time ( $Ah ){ return
sprintf ( '%.3f s' , max ( 0 , microtime ( true ) - $Ah ));} function
2019-02-03 12:13:26 +00:00
remove_from_uri ( $Kf = " " ){ return
substr ( preg_replace ( " ~(?<=[?&])( $Kf " . ( SID ? " " : " | " . session_name ()) . " )=[^&]*&~ " , '' , " $_SERVER[REQUEST_URI] & " ), 0 , - 1 );} function
pagination ( $E , $Hb ){ return " " . ( $E == $Hb ? $E + 1 : '<a href="' . h ( remove_from_uri ( " page " ) . ( $E ? " &page= $E " . ( $_GET [ " next " ] ? " &next= " . urlencode ( $_GET [ " next " ]) : " " ) : " " )) . '">' . ( $E + 1 ) . " </a> " );} function
get_file ( $z , $Pb = false ){ $Rc = $_FILES [ $z ]; if ( ! $Rc ) return
null ; foreach ( $Rc
as $z => $X ) $Rc [ $z ] = ( array ) $X ; $I = '' ; foreach ( $Rc [ " error " ] as $z => $o ){ if ( $o ) return $o ; $C = $Rc [ " name " ][ $z ]; $ki = $Rc [ " tmp_name " ][ $z ]; $yb = file_get_contents ( $Pb && preg_match ( '~\.gz$~' , $C ) ? " compress.zlib:// $ki " : $ki ); if ( $Pb ){ $Ah = substr ( $yb , 0 , 3 ); if ( function_exists ( " iconv " ) && preg_match ( " ~^ \xFE \xFF |^ \xFF \xFE ~ " , $Ah , $Eg )) $yb = iconv ( " utf-16 " , " utf-8 " , $yb ); elseif ( $Ah == " \xEF \xBB \xBF " ) $yb = substr ( $yb , 3 ); $I .= $yb . " \n \n " ;} else $I .= $yb ;} return $I ;} function
upload_error ( $o ){ $Ge = ( $o == UPLOAD_ERR_INI_SIZE ? ini_get ( " upload_max_filesize " ) : 0 ); return ( $o ? 'Unable to upload a file.' . ( $Ge ? " " . sprintf ( 'Maximum allowed file size is %sB.' , $Ge ) : " " ) : 'File does not exist.' );} function
repeat_pattern ( $Xf , $re ){ return
str_repeat ( " $Xf { 0,65535} " , $re / 65535 ) . " $Xf { 0, " . ( $re % 65535 ) . " } " ;} function
2018-12-15 21:22:00 +00:00
is_utf8 ( $X ){ return ( preg_match ( '~~u' , $X ) &&! preg_match ( '~[\0-\x8\xB\xC\xE-\x1F]~' , $X ));} function
2019-02-03 12:13:26 +00:00
shorten_utf8 ( $P , $re = 80 , $Ih = " " ){ if ( ! preg_match ( " (^( " . repeat_pattern ( " [ \t \r \n - \ x { 10FFFF}] " , $re ) . " )( $ )?)u " , $P , $B )) preg_match ( " (^( " . repeat_pattern ( " [ \t \r \n -~] " , $re ) . " )( $ )?) " , $P , $B ); return
h ( $B [ 1 ]) . $Ih . ( isset ( $B [ 2 ]) ? " " : " <i>…</i> " );} function
2018-12-15 21:22:00 +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-02-03 12:13:26 +00:00
hidden_fields ( $ng , $Dd = array ()){ $I = false ; while ( list ( $z , $X ) = each ( $ng )){ if ( ! in_array ( $z , $Dd )){ if ( is_array ( $X )){ foreach ( $X
as $be => $W ) $ng [ $z . " [ $be ] " ] = $W ;} else { $I = true ; echo '<input type="hidden" name="' . h ( $z ) . '" value="' . h ( $X ) . '">' ;}}} return $I ;} function
2018-12-15 21:22:00 +00:00
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
2019-02-03 12:13:26 +00:00
table_status1 ( $Q , $Mc = false ){ $I = table_status ( $Q , $Mc ); return ( $I ? $I : array ( " Name " => $Q ));} function
column_foreign_keys ( $Q ){ global $b ; $I = array (); foreach ( $b -> foreignKeys ( $Q ) as $r ){ foreach ( $r [ " source " ] as $X ) $I [ $X ][] = $r ;} return $I ;} function
enum_input ( $T , $Ja , $p , $Y , $rc = null ){ global $b ; preg_match_all ( " ~'((?:[^']|'')*)'~ " , $p [ " length " ], $Be ); $I = ( $rc !== null ? " <label><input type=' $T ' $Ja value=' $rc ' " . (( is_array ( $Y ) ? in_array ( $rc , $Y ) : $Y === 0 ) ? " checked " : " " ) . " ><i> " . 'empty' . " </i></label> " : " " ); foreach ( $Be [ 1 ] as $t => $X ){ $X = stripcslashes ( str_replace ( " '' " , " ' " , $X )); $eb = ( is_int ( $Y ) ? $Y == $t + 1 : ( is_array ( $Y ) ? in_array ( $t + 1 , $Y ) : $Y === $X )); $I .= " <label><input type=' $T ' $Ja value=' " . ( $t + 1 ) . " ' " . ( $eb ? ' checked' : '' ) . '>' . h ( $b -> editVal ( $X , $p )) . '</label>' ;} return $I ;} function
input ( $p , $Y , $s ){ global $U , $b , $y ; $C = h ( bracket_escape ( $p [ " field " ])); echo " <td class='function'> " ; if ( is_array ( $Y ) &&! $s ){ $Ea = array ( $Y ); if ( version_compare ( PHP_VERSION , 5.4 ) >= 0 ) $Ea [] = JSON_PRETTY_PRINT ; $Y = call_user_func_array ( 'json_encode' , $Ea ); $s = " json " ;} $Ig = ( $y == " mssql " && $p [ " auto_increment " ]); if ( $Ig &&! $_POST [ " save " ]) $s = null ; $id = ( isset ( $_GET [ " select " ]) || $Ig ? array ( " orig " => 'original' ) : array ()) + $b -> editFunctions ( $p ); $Ja = " name='fields[ $C ]' " ; if ( $p [ " type " ] == " enum " ) echo
h ( $id [ " " ]) . " <td> " . $b -> editInput ( $_GET [ " edit " ], $p , $Ja , $Y ); else { $sd = ( in_array ( $s , $id ) || isset ( $id [ $s ])); echo ( count ( $id ) > 1 ? " <select name='function[ $C ]'> " . optionlist ( $id , $s === null || $sd ? $s : " " ) . " </select> " . on_help ( " getTarget(event).value.replace(/^SQL \$ /, '') " , 1 ) . script ( " qsl('select').onchange = functionChange; " , " " ) : h ( reset ( $id ))) . '<td>' ; $Qd = $b -> editInput ( $_GET [ " edit " ], $p , $Ja , $Y ); if ( $Qd != " " ) echo $Qd ; elseif ( preg_match ( '~bool~' , $p [ " 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 ( $p [ " type " ] == " set " ){ preg_match_all ( " ~'((?:[^']|'')*)'~ " , $p [ " length " ], $Be ); foreach ( $Be [ 1 ] as $t => $X ){ $X = stripcslashes ( str_replace ( " '' " , " ' " , $X )); $eb = ( is_int ( $Y ) ? ( $Y >> $t ) & 1 : in_array ( $X , explode ( " , " , $Y ), true )); echo " <label><input type='checkbox' name='fields[ $C ][ $t ]' value=' " . ( 1 << $t ) . " ' " . ( $eb ? ' checked' : '' ) . " > " . h ( $b -> editVal ( $X , $p )) . '</label>' ;}} elseif ( preg_match ( '~blob|bytea|raw|file~' , $p [ " type " ]) && ini_bool ( " file_uploads " )) echo " <input type='file' name='fields- $C '> " ; elseif (( $ai = preg_match ( '~text|lob~' , $p [ " type " ])) || preg_match ( " ~ \n ~ " , $Y )){ if ( $ai && $y != " sqlite " ) $Ja .= " cols='50' rows='12' " ; else { $K = min ( 12 , substr_count ( $Y , " \n " ) + 1 ); $Ja .= " cols='30' rows=' $K ' " . ( $K == 1 ? " style='height: 1.2em;' " : " " );} echo " <textarea $Ja > " . h ( $Y ) . '</textarea>' ;} elseif ( $s == " json " || preg_match ( '~^jsonb?$~' , $p [ " type " ])) echo " <textarea $Ja cols='50' rows='12' class='jush-js'> " . h ( $Y ) . '</textarea>' ; else { $Ie = ( ! preg_match ( '~int~' , $p [ " type " ]) && preg_match ( '~^(\d+)(,(\d+))?$~' , $p [ " length " ], $B ) ? (( preg_match ( " ~binary~ " , $p [ " type " ]) ? 2 : 1 ) * $B [ 1 ] + ( $B [ 3 ] ? 1 : 0 ) + ( $B [ 2 ] &&! $p [ " unsigned " ] ? 1 : 0 )) : ( $U [ $p [ " type " ]] ? $U [ $p [ " type " ]] + ( $p [ " unsigned " ] ? 0 : 1 ) : 0 )); if ( $y == 'sql' && min_version ( 5.6 ) && preg_match ( '~time~' , $p [ " type " ])) $Ie += 7 ; echo " <input " . (( ! $sd || $s === " " ) && preg_match ( '~(?<!o)int(?!er)~' , $p [ " type " ]) &&! preg_match ( '~\[\]~' , $p [ " full_type " ]) ? " type='number' " : " " ) . " value=' " . h ( $Y ) . " ' " . ( $Ie ? " data-maxlength=' $Ie ' " : " " ) . ( preg_match ( '~char|binary~' , $p [ " type " ]) && $Ie > 20 ? " size='40' " : " " ) . " $Ja > " ;} echo $b -> editHint ( $_GET [ " edit " ], $p , $Y ); $Uc = 0 ; foreach ( $id
as $z => $X ){ if ( $z === " " ||! $X ) break ; $Uc ++ ;} if ( $Uc ) echo
script ( " mixin(qsl('td'), { onchange: partial(skipOriginal, $Uc ), oninput: function () { this.onchange(); }}); " );}} function
process_input ( $p ){ global $b , $n ; $v = bracket_escape ( $p [ " field " ]); $s = $_POST [ " function " ][ $v ]; $Y = $_POST [ " fields " ][ $v ]; if ( $p [ " type " ] == " enum " ){ if ( $Y ==- 1 ) return
false ; if ( $Y == " " ) return " NULL " ; return + $Y ;} if ( $p [ " auto_increment " ] && $Y == " " ) return
null ; if ( $s == " orig " ) return ( preg_match ( '~^CURRENT_TIMESTAMP~i' , $p [ " on_update " ]) ? idf_escape ( $p [ " field " ]) : false ); if ( $s == " NULL " ) return " NULL " ; if ( $p [ " type " ] == " set " ) return
array_sum (( array ) $Y ); if ( $s == " json " ){ $s = " " ; $Y = json_decode ( $Y , true ); if ( ! is_array ( $Y )) return
false ; return $Y ;} if ( preg_match ( '~blob|bytea|raw|file~' , $p [ " type " ]) && ini_bool ( " file_uploads " )){ $Rc = get_file ( " fields- $v " ); if ( ! is_string ( $Rc )) return
false ; return $n -> quoteBinary ( $Rc );} return $b -> processInput ( $p , $Y , $s );} function
fields_from_edit (){ global $n ; $I = array (); foreach (( array ) $_POST [ " field_keys " ] as $z => $X ){ if ( $X != " " ){ $X = bracket_escape ( $X ); $_POST [ " function " ][ $X ] = $_POST [ " field_funs " ][ $z ]; $_POST [ " fields " ][ $X ] = $_POST [ " field_vals " ][ $z ];}} foreach (( array ) $_POST [ " fields " ] as $z => $X ){ $C = bracket_escape ( $z , 1 ); $I [ $C ] = array ( " field " => $C , " privileges " => array ( " insert " => 1 , " update " => 1 ), " null " => 1 , " auto_increment " => ( $z == $n -> primary ),);} return $I ;} function
search_tables (){ global $b , $g ; $_GET [ " where " ][ 0 ][ " val " ] = $_POST [ " query " ]; $fh = " <ul> \n " ; foreach ( table_status ( '' , true ) as $Q => $R ){ $C = $b -> tableName ( $R ); if ( isset ( $R [ " Engine " ]) && $C != " " && ( ! $_POST [ " tables " ] || in_array ( $Q , $_POST [ " tables " ]))){ $H = $g -> query ( " SELECT " . limit ( " 1 FROM " . table ( $Q ), " WHERE " . implode ( " AND " , $b -> selectSearchProcess ( fields ( $Q ), array ())), 1 )); if ( ! $H || $H -> fetch_row ()){ $jg = " <a href=' " . h ( ME . " select= " . urlencode ( $Q ) . " &where[0][op]= " . urlencode ( $_GET [ " where " ][ 0 ][ " op " ]) . " &where[0][val]= " . urlencode ( $_GET [ " where " ][ 0 ][ " val " ])) . " '> $C </a> " ; echo " $fh <li> " . ( $H ? $jg : " <p class='error'> $jg : " . error ()) . " \n " ; $fh = " " ;}}} echo ( $fh ? " <p class='message'> " . 'No tables.' : " </ul> " ) . " \n " ;} function
dump_headers ( $Ad , $Se = false ){ global $b ; $I = $b -> dumpHeaders ( $Ad , $Se ); $Hf = $_POST [ " output " ]; if ( $Hf != " text " ) header ( " Content-Disposition: attachment; filename= " . $b -> dumpFilename ( $Ad ) . " . $I " . ( $Hf != " file " &&! preg_match ( '~[^0-9a-z]~' , $Hf ) ? " . $Hf " : " " )); session_write_close (); ob_flush (); flush (); return $I ;} function
2018-12-15 21:22:00 +00:00
dump_csv ( $J ){ foreach ( $J
2019-02-03 12:13:26 +00:00
as $z => $X ){ if ( preg_match ( " ~[ \" \n ,; \t ]~ " , $X ) || $X === " " ) $J [ $z ] = '"' . str_replace ( '"' , '""' , $X ) . '"' ;} echo
2018-12-15 21:22:00 +00:00
implode (( $_POST [ " format " ] == " csv " ? " , " : ( $_POST [ " format " ] == " tsv " ? " \t " : " ; " )), $J ) . " \r \n " ;} function
2019-02-03 12:13:26 +00:00
apply_sql_function ( $s , $e ){ return ( $s ? ( $s == " unixepoch " ? " DATETIME( $e , ' $s ') " : ( $s == " count distinct " ? " COUNT(DISTINCT " : strtoupper ( " $s ( " )) . " $e ) " ) : $e );} function
get_temp_dir (){ $I = ini_get ( " upload_tmp_dir " ); if ( ! $I ){ if ( function_exists ( 'sys_get_temp_dir' )) $I = sys_get_temp_dir (); else { $Sc =@ tempnam ( " " , " " ); if ( ! $Sc ) return
false ; $I = dirname ( $Sc ); unlink ( $Sc );}} return $I ;} function
file_open_lock ( $Sc ){ $gd =@ fopen ( $Sc , " r+ " ); if ( ! $gd ){ $gd =@ fopen ( $Sc , " w " ); if ( ! $gd ) return ; chmod ( $Sc , 0660 );} flock ( $gd , LOCK_EX ); return $gd ;} function
file_write_unlock ( $gd , $Jb ){ rewind ( $gd ); fwrite ( $gd , $Jb ); ftruncate ( $gd , strlen ( $Jb )); flock ( $gd , LOCK_UN ); fclose ( $gd );} function
password_file ( $i ){ $Sc = get_temp_dir () . " /adminer.key " ; $I =@ file_get_contents ( $Sc ); if ( $I ||! $i ) return $I ; $gd =@ fopen ( $Sc , " w " ); if ( $gd ){ chmod ( $Sc , 0660 ); $I = rand_string (); fwrite ( $gd , $I ); fclose ( $gd );} return $I ;} function
2018-12-15 21:22:00 +00:00
rand_string (){ return
md5 ( uniqid ( mt_rand (), true ));} function
2019-02-03 12:13:26 +00:00
select_value ( $X , $A , $p , $bi ){ global $b ; if ( is_array ( $X )){ $I = " " ; foreach ( $X
as $be => $W ) $I .= " <tr> " . ( $X != array_values ( $X ) ? " <th> " . h ( $be ) : " " ) . " <td> " . select_value ( $W , $A , $p , $bi ); return " <table cellspacing='0'> $I </table> " ;} if ( ! $A ) $A = $b -> selectLink ( $X , $p ); if ( $A === null ){ if ( is_mail ( $X )) $A = " mailto: $X " ; if ( is_url ( $X )) $A = $X ;} $I = $b -> editVal ( $X , $p ); if ( $I !== null ){ if ( ! is_utf8 ( $I )) $I = " \0 " ; elseif ( $bi != " " && is_shortable ( $p )) $I = shorten_utf8 ( $I , max ( 0 , + $bi )); else $I = h ( $I );} return $b -> selectVal ( $I , $A , $p , $X );} function
is_mail ( $oc ){ $Ha = '[-a-z0-9!#$%&\'*+/=?^_`{|}~]' ; $bc = '[a-z0-9]([-a-z0-9]{0,61}[a-z0-9])' ; $Xf = " $Ha +( \\ . $Ha +)*@( $bc ? \\ .)+ $bc " ; return
is_string ( $oc ) && preg_match ( " (^ $Xf (, \\ s* $Xf )* \$ )i " , $oc );} function
is_url ( $P ){ $bc = '[a-z0-9]([-a-z0-9]{0,61}[a-z0-9])' ; return
preg_match ( " ~^(https?)://( $bc ? \\ .)+ $bc (: \\ d+)?(/.*)?( \\ ?.*)?(#.*)? \$ ~i " , $P );} function
is_shortable ( $p ){ return
preg_match ( '~char|text|json|lob|geometry|point|linestring|polygon|string|bytea~' , $p [ " type " ]);} function
count_rows ( $Q , $Z , $Wd , $ld ){ global $y ; $G = " FROM " . table ( $Q ) . ( $Z ? " WHERE " . implode ( " AND " , $Z ) : " " ); return ( $Wd && ( $y == " sql " || count ( $ld ) == 1 ) ? " SELECT COUNT(DISTINCT " . implode ( " , " , $ld ) . " ) $G " : " SELECT COUNT(*) " . ( $Wd ? " FROM (SELECT 1 $G GROUP BY " . implode ( " , " , $ld ) . " ) x " : $G ));} function
slow_query ( $G ){ global $b , $mi , $n ; $m = $b -> database (); $di = $b -> queryTimeout (); $qh = $n -> slowQuery ( $G , $di ); if ( ! $qh && support ( " kill " ) && is_object ( $h = connect ()) && ( $m == " " || $h -> select_db ( $m ))){ $ge = $h -> result ( connection_id ()); echo '<script' , nonce (), ' >
2018-12-15 21:22:00 +00:00
var timeout = setTimeout ( function () {
ajax ( \ '' , js_escape ( ME ), ' script = kill\ ' , function () {
2019-02-03 12:13:26 +00:00
}, \ 'kill=' , $ge , '&token=' , $mi , ' \ ' );
2018-12-15 21:22:00 +00:00
}, ',1000*$di,' );
</ script >
' ;} else $h = null ; ob_flush (); flush (); $I =@ get_key_vals (( $qh ? $qh : $G ), $h , false ); if ( $h ){ echo
script ( " clearTimeout(timeout); " ); ob_flush (); flush ();} return $I ;} function
2019-02-03 12:13:26 +00:00
get_token (){ $vg = rand ( 1 , 1e6 ); return ( $vg ^ $_SESSION [ " token " ]) . " : $vg " ;} function
verify_token (){ list ( $mi , $vg ) = explode ( " : " , $_POST [ " token " ]); return ( $vg ^ $_SESSION [ " token " ]) == $mi ;} function
lzw_decompress ( $Ra ){ $Xb = 256 ; $Sa = 8 ; $lb = array (); $Kg = 0 ; $Lg = 0 ; for ( $t = 0 ; $t < strlen ( $Ra ); $t ++ ){ $Kg = ( $Kg << 8 ) + ord ( $Ra [ $t ]); $Lg += 8 ; if ( $Lg >= $Sa ){ $Lg -= $Sa ; $lb [] = $Kg >> $Lg ; $Kg &= ( 1 << $Lg ) - 1 ; $Xb ++ ; if ( $Xb >> $Sa ) $Sa ++ ;}} $Wb = range ( " \0 " , " \xFF " ); $I = " " ; foreach ( $lb
as $t => $kb ){ $nc = $Wb [ $kb ]; if ( ! isset ( $nc )) $nc = $jj . $jj [ 0 ]; $I .= $nc ; if ( $t ) $Wb [] = $jj . $nc [ 0 ]; $jj = $nc ;} return $I ;} function
2018-12-15 21:22:00 +00:00
on_help ( $rb , $nh = 0 ){ return
script ( " mixin(qsl('select, input'), { onmouseover: function (event) { helpMouseover.call(this, event, $rb , $nh ) }, onmouseout: helpMouseout}); " , " " );} function
2019-02-03 12:13:26 +00:00
edit_form ( $a , $q , $J , $Hi ){ global $b , $y , $mi , $o ; $Nh = $b -> tableName ( table_status1 ( $a , true )); page_header (( $Hi ? 'Edit' : 'Insert' ), $o , array ( " select " => array ( $a , $Nh )), $Nh ); if ( $J === false ) echo " <p class='error'> " . 'No rows.' . " \n " ; echo ' < form action = " " method = " post " enctype = " multipart/form-data " id = " form " >
';if(!$q)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( $q
as $C => $p ){ echo " <tr><th> " . $b -> fieldName ( $p ); $Qb = $_GET [ " set " ][ bracket_escape ( $C )]; if ( $Qb === null ){ $Qb = $p [ " default " ]; if ( $p [ " type " ] == " bit " && preg_match ( " ~^b'([01]*)' \$ ~ " , $Qb , $Eg )) $Qb = $Eg [ 1 ];} $Y = ( $J !== null ? ( $J [ $C ] != " " && $y == " sql " && preg_match ( " ~enum|set~ " , $p [ " type " ]) ? ( is_array ( $J [ $C ]) ? array_sum ( $J [ $C ]) :+ $J [ $C ]) : $J [ $C ]) : ( ! $Hi && $p [ " auto_increment " ] ? " " : ( isset ( $_GET [ " select " ]) ? false : $Qb ))); if ( ! $_POST [ " save " ] && is_string ( $Y )) $Y = $b -> editVal ( $Y , $p ); $s = ( $_POST [ " save " ] ? ( string ) $_POST [ " function " ][ $C ] : ( $Hi && preg_match ( '~^CURRENT_TIMESTAMP~i' , $p [ " on_update " ]) ? " now " : ( $Y === false ? null : ( $Y !== null ? '' : 'NULL' )))); if ( preg_match ( " ~time~ " , $p [ " type " ]) && preg_match ( '~^CURRENT_TIMESTAMP~i' , $Y )){ $Y = " " ; $s = " now " ;} input ( $p , $Y , $s ); echo " \n " ;} if ( ! support ( " table " )) echo " <tr> " . " <th><input name='field_keys[]'> " . script ( " qsl('input').oninput = fieldChange; " ) . " <td class='function'> " . html_select ( " field_funs[] " , $b -> editFunctions ( array ( " null " => isset ( $_GET [ " select " ])))) . " <td><input name='field_vals[]'> " . " \n " ; echo " </table> \n " ;} echo " <p> \n " ; if ( $q ){ echo " <input type='submit' value=' " . 'Save' . " '> \n " ; if ( ! isset ( $_GET [ " select " ])){ echo " <input type='submit' name='insert' value=' " . ( $Hi ? 'Save and continue edit' : 'Save and insert next' ) . " ' title='Ctrl+Shift+Enter'> \n " ,( $Hi ? script ( " qsl('input').onclick = function () { return !ajaxForm(this.form, ' " . 'Saving' . " …', this); }; " ) : " " );}} echo ( $Hi ? " <input type='submit' name='delete' value=' " . 'Delete' . " '> " . confirm () . " \n " : ( $_POST ||! $q ? " " : 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 " ]), ' " >
2018-12-15 21:22:00 +00:00
< input type = " hidden " name = " save " value = " 1 " >
< input type = " hidden " name = " token " value = " ', $mi ,' " >
</ 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
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
2019-02-03 12:13:26 +00:00
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> <07> <> <EFBFBD> Fé<46> vt2<74> <0E> <> !<21> r0<72> <30> <EFBFBD> <EFBFBD> t~<7E> U<1D> '3M<33> <4D> W<EFBFBD> B<EFBFBD> 'c<> P<EFBFBD> :6T \r c<EFBFBD> A<EFBFBD> zr _<> WK<57> \r -<2D> VNFS%~<7E> c<EFBFBD> <63> <EFBFBD> &<26> \\ ^<5E> r<EFBFBD> <72> <EFBFBD> <EFBFBD> u<> ŎÞ<C58E> ً4'7k<37> <6B> <EFBFBD> <EFBFBD> <EFBFBD> Q<EFBFBD> <51> h<16> 'g \r FB \r y T7SS<53> P<EFBFBD> 1=Ǥ cI<63> <49> :<18> d<EFBFBD> <64> m><3E> S8 L<> J<EFBFBD> <4A> t. M<> <01> <> ϋ`'C<> <43> <EFBFBD> <EFBFBD> 8 89<38> <39> <11> Q<7F> <51> <EFBFBD> <EFBFBD> 2<EFBFBD> #8А <38> <D090> <EFBFBD> <EFBFBD> 6 m<> <6D> <11> <> j<1E> <> h<EFBFBD> <<3C> <> <EFBFBD> <EFBFBD> <EFBFBD> 9/<2F> <> <EFBFBD> :<0E> J<EFBFBD> )ʂ<> \0 d >! \0 Z<18> <0F> v<EFBFBD> <76> n<EFBFBD> <6E> <EFBFBD> <EFBFBD> o(<28> <> <EFBFBD> <EFBFBD> k<EFBFBD> 7<EFBFBD> <37> s<EFBFBD> <73> ><3E> <0B> <> !<21> R \" *nS<6E> \0 @P \" <03> <> <EFBFBD> (<28> # [<5B> <> <0F> @g<0C> o<EFBFBD> <01> <> zn<7A> 9k<39> 8<18> n<EFBFBD> <6E> <10> 1<EFBFBD> I *<2A> <> =<3D> n<EFBFBD> <6E> <EFBFBD> <0E> <> <EFBFBD> 0<EFBFBD> c(<28> ;<3B> à<EFBFBD> <C3A0> !<21> <> <EFBFBD> *c<> <63> >Ύ<> E7D<37> LJ<4C> <4A> 1<EFBFBD> <31> <16> <> `<60> 8(<28> <> 3M<33> <4D> \" <EFBFBD> 39<EFBFBD> ?E<0C> e =Ҭ<> ~<7E> <> <EFBFBD> <1B> <1C> <> Ӹ7;<3B> C<EFBFBD> <05> <> <EFBFBD> E\r d!)<29> a *<2A> 5ajo\0 <EFBFBD> #`<60> 38<33> \0 <EFBFBD> <EFBFBD> ]<5D> e<EFBFBD> <65> <EFBFBD> <EFBFBD> 2<EFBFBD> mk<18> <0E> e]<5D> <> <EFBFBD> AZs<5A> StZ<74> Z!)BR<42> G+<2B> #Jv2(<28> <> <EFBFBD> <EFBFBD> c<> 4<<3C> #sB<73> 0<EFBFBD> <30> <EFBFBD> 6YL\r <EFBFBD> =<3D> <> <EFBFBD> [<5B> 73<37> <33> <<3C> :<3A> <> bx<62> <78> J= m_ <20> <> <EFBFBD> f<EFBFBD> l<> <19> t<EFBFBD> <74> I<EFBFBD> <49> H<EFBFBD> 3<EFBFBD> x*<2A> <> <EFBFBD> 6`t6<74> <36> %<25> U<> L<EFBFBD> eق<65> <<05> \0 <EFBFBD> A Q<P<:<3A> #u/<2F> :T\\ ><3E> <> -<2D> xJ<78> ͍ QH \n j<> L+ j<> z<EFBFBD> <7A> <EFBFBD> 7<EFBFBD> <37> <EFBFBD> `<60> <> <EFBFBD> <EFBFBD> \n k<EFBFBD> <EFBFBD> '<27> N<EFBFBD> vX><3E> C-T˩<54> <CBA9> <EFBFBD> <EFBFBD> <EFBFBD> 4*L<> %Cj>7ߨ<37> ި<03> <> <EFBFBD> `<60> <> <17> ;y<> <79> <EFBFBD> q<EFBFBD> r<EFBFBD> 3 #<23> <> } :#n<> \r <EFBFBD> <EFBFBD> ^<18> =C<> Aܸ<41> Ǝ<EFBFBD> s&8<> <38> K&<26> <> *0<> <30> t<EFBFBD> S<EFBFBD> <53> <EFBFBD> =<3D> [<5B> <> :<1D> \\ ]<5D> E<45> /O<> >^ ]<5D> ø<> <<3C> <> <EFBFBD> <EFBFBD> gZ<01> V<EFBFBD> <56> q <10> <> <EFBFBD> <EFBFBD> <EFBFBD> <20> <> x \\ <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> \" J<EFBFBD> \\ î<EFBFBD> <EFBFBD> ##<23> <> <EFBFBD> D<EFBFBD> <44> x6<06> <> <EFBFBD> 5x<19> <> <05> <> <EFBFBD> <EFBFBD> <EFBFBD> \r H<> l <20> <> <EFBFBD> <EFBFBD> b<> <62> r<EFBFBD> 7<EFBFBD> <37> 6<EFBFBD> <36> <EFBFBD> j|<7C> <> <EFBFBD> <04> ۖ*<2A> F Aq uvyO<79> <4F> WeM<65> <02> <1A> <> D.F<> <46> :R<> \$ -<2D> <> <1F> <> T !<21> DS`<60> 8D<38> ~<7E> <> A`(<28> em<65> <6D> <EFBFBD> <EFBFBD> <EFBFBD> T@O1@<40> <> X<EFBFBD> <58> <EFBFBD> \n Lp<4C> <70> <EFBFBD> P<EFBFBD> <50> <EFBFBD> <EFBFBD> <EFBFBD> m<EFBFBD> y f<> <0B> ) <01> <> <EFBFBD> G SEI<45> <49> <02> x C(s(a<> ?\$ `tE<10> n<EFBFBD> <6E> <EFBFBD> <EFBFBD> ,<2C> <> \$ a<> <61> U>,<2C> В \$ Z<EFBFBD> kDm,G \0 <EFBFBD> <19> \\ <EFBFBD> <EFBFBD> i<EFBFBD> <15> %ʹ <11> n<> <6E> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <18> <> g<EFBFBD> <67> <1B> b y`<60> <> Ԇ<EFBFBD> W<EFBFBD> <57> 䗗<> _C<5F> <43> T\n i<04> <> H %<25> da<08> <> i<EFBFBD> 7<EFBFBD> At<41> ,<2C> <> J<EFBFBD> X4n<34> <6E> <EFBFBD> <EFBFBD> 0 o<6F> 9g \n zm<EFBFBD> M%`<60> 'I<> <49> <EFBFBD> О -<2D> <> <EFBFBD> <01> 7:p<> 3 p<> <08> Q<EFBFBD> rED<45> <44> <EFBFBD> <EFBFBD> <1B> <> b2 ]<5D> PF<50> <46> <EFBFBD> <EFBFBD> >e<> <65> <EFBFBD> 3j \n <EFBFBD> ߰t !<21> ?4f<34> tK ;<3B> <> \r Ξи<EFBFBD> !<21> o<10> u<> ?<3F> <> <EFBFBD> Ph<50> <68> <EFBFBD> 0uIC}'~<7E> <> 2<EFBFBD> v<EFBFBD> Q<EFBFBD> <51> <EFBFBD> 8)<29> <> <EFBFBD> 7<EFBFBD> DI<44> =<3D> <> y&<26> <> ea<65> s *hɕjl A<> (<0F> <> \" <EFBFBD> \\ <EFBFBD> <EFBFBD> m^i<> <69> M)<29> <> ^<5E> |~<7E> l<EFBFBD> <6C> #!Y<1A> f8 1RS<16> <> <EFBFBD> <EFBFBD> !<21> <> <EFBFBD> 62P<32> C<> <43> l&<26> <> <11> xd!<01> |<7C> <> 9<EFBFBD> `<60> _OY<4F> =<3D> <> G<06> [E<> -eL<65> CvT<76> )<29> @<12> j -5<> <06> <> pSg<14> .<2E> G=<3D> <> <EFBFBD> ZE<0E> <> \$ \0 <EFBFBD> ц Kj<4B> U<EFBFBD> <55> \$ <EFBFBD> <14> <> G' I<> P<EFBFBD> <50> ~<06> ځ<> ;<3B> <> hNێG%*<2A> Rj<52> <6A> X[<5B> X Pf^<5E> <> |<13> <> T!<21> *N<> <4E> І <EFBFBD> \r U<EFBFBD> <EFBFBD> ^q1V!<21> <> Uz,<2C> I|7<> 7<EFBFBD> r,<2C> <> <EFBFBD> 7<EFBFBD> <37> <EFBFBD> ľB<C4BE> <42> <EFBFBD> ;<3B> +<2B> <> <EFBFBD> ߕ<0B> A<EFBFBD> p<EFBFBD> <70> <1A> <> ^<5E> <1C> <> ~ ؼ W!3 P<> I8]<5D> <> v<EFBFBD> J<EFBFBD> <4A> f<EFBFBD> q<EFBFBD> |,<2C> <> <EFBFBD> 9W<39> f` \0 <EFBFBD> q<EFBFBD> A<EFBFBD> w E<> <45> <EFBFBD> մ<> F<EFBFBD> <46> <EFBFBD> <EFBFBD> T<EFBFBD> <54> QՑG<D591> <47> <EFBFBD> \$ 0Ǔʠ#<23> %B y7r<37> i { e<EFBFBD> Q<EFBFBD> <13> <05> <> d<EFBFBD> <64> <EFBFBD> LJ <20> B 4 ;ks(<28> 0ݎ<30> =<3D> 1r)_<<3C> <0F> <> ;̹<> <CCB9> S<EFBFBD> <53> r<7F> &Y<> ,h,<2C> <> iiك<69> <D983> b<EFBFBD> ̢A<CCA2> <41> <20> <> G<16> <> L<EFBFBD> <4C> z2p(<28> <> <EFBFBD> <EFBFBD> <13> <> <EFBFBD> 0<EFBFBD> <30> <EFBFBD> <EFBFBD> <EFBFBD> L <09> <> S<EFBFBD> <53> <EFBFBD> <EFBFBD> E<EFBFBD> <45> <EFBFBD> <<3C> <> <EFBFBD> }_# \\ f<18> <> d aʄ<61> K<EFBFBD> 3<> Y|V+<03> l@<40> 0`;<3B> <> <EFBFBD> Lh<4C> <68> <EFBFBD> <EFBFBD> ޯj'<27> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> ƙ<> Y<1B> +<2B> <> QZ-i<> <69> <11> yv<79> <76> I<EFBFBD> 5ړ0O|<7C> P<EFBFBD> ]F<46> <DC8F> <EFBFBD> <EFBFBD> <EFBFBD> \0 <EFBFBD> <EFBFBD> <EFBFBD> 2<EFBFBD> D9͢<EFBFBD> <EFBFBD> <EFBFBD> n/ χQس&<26> <> I^<05> =<02> l<EFBFBD> <6C> qfI<66> <49> = <20> ]xqGR<47> F <46> e<> 7<EFBFBD> <37> )<29> <> 9*<2A> :B<> b<EFBFBD> >a<> z<EFBFBD> -<2D> <> <EFBFBD> 2.<2E> <> <04> <> b{ <EFBFBD> <EFBFBD> 4#<23> <> <EFBFBD> <11> <13> Uᓍ<55> L7-<2D> <EFBFBD> v/;<3B> 5<EFBFBD> <35> <EFBFBD> <EFBFBD> u<EFBFBD> <75> <EFBFBD> H<EFBFBD> <08> &<26> #<23> <> <EFBFBD> j<16> `<60> G<> 8<EFBFBD> <20> 7p<37> <70> <1D> ҠYC<59> <43> ~<7E> <> :<06> @<10> <> EU<45> J<> <1F> ;v7v]<5D> J'<27> <17> <15> q1<1D> <> <02> El<45> <6C> І i<D086> <69> <EFBFBD> <EFBFBD> <01> /<2F> <> { k<<3C> <> ֡M<D6A1> po<70> }<7D> <11> <02> <> <EFBFBD> <16> ٞ,<2C> d æ<> _uӗ<75> <D397> <1F> p<EFBFBD> u<75> <DEBD> <EFBFBD> <EFBFBD> <EFBFBD> =<3D> <> <EFBFBD> tn<74> <6E> <1D> <09> <> <EFBFBD> <EFBFBD> ~<7E> Lx<4C> <78> <EFBFBD> <1D> <> { k<> <6B> ߇<EFBFBD> <DF87> <EFBFBD> \r j~<7E> P+<2B> <> <EFBFBD> 0<EFBFBD> u<EFBFBD> ow<6F> yu \$ <01> <> ߷<03> \n d<0C> <> m<EFBFBD> Zd<0E> <> 8i`<60> =<3D> <> g<EFBFBD> <<3C> <> <EFBFBD> ۓ<EFBFBD> <DB93> ͈*+ 3j<33> <6A> <EFBFBD> <EFBFBD> <[<5B> \0 <EFBFBD> <EFBFBD> <02> /PͭB<CDAD> <42> r<EFBFBD> <72> <EFBFBD> `<60> `<60> #x<> +B?#<23> ^;Ob\r <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> 4<EFBFBD> <EFBFBD> \n <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> 0\n <EFBFBD> <EFBFBD> <0E> <14> 0<04> \\ <EFBFBD> 0><3E> <> P<EFBFBD> @<40> <0F> <> 2<EFBFBD> l<EFBFBD> <6C> j<EFBFBD> O<EFBFBD> <0C> <> <EFBFBD> <EFBFBD> (_<> <<3C> <> W\$ <EFBFBD> g<> <67> <EFBFBD> G<03> tא@<40> l.<2E> h<EFBFBD> Siƾ<69> <C6BE> PH<50> \n <EFBFBD> J<0E> <> <EFBFBD> <EFBFBD> <EFBFBD> LD<06> h6ł<36> ¶B <09> <0C> r<0E> <> <0B> \r <EFBFBD> 6<> n<EFBFBD> <6E> <EFBFBD> <0C> <> 0<> F<> p-<2D> <> \r <EFBFBD> <EFBFBD> \r \0 <EFBFBD> <0B> <> q<0E> <10> <> #q `<60> <10> <05> #E<11> ( q }<7D> з<02> <> <EFBFBD> <EFBFBD> <11> 4@<40> <14> <0B> <> <EFBFBD> <EFBFBD> f|\0 ` `f<> *<2A> <> `<60> <16> `<60> <> <EFBFBD> QRv<52> <76> y<17> <> \r <EFBFBD> -<0F> B<05> <0C> y 7<17> &<26> @<40> <0B> <> <11> <> <EFBFBD> <EFBFBD> <EFBFBD> <11> <> `<60> <17> <> <11> _I<0C> <0C> 1<> <31> @` )l<> <6C> <EFBFBD> x<0B> <> )<29> Q<10> <> <EFBFBD> q<EFBFBD> <19> <> )<29> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> 1s Q ey qw 1<> <1E> <> <1F> A 2 <20> <> *<2A> <> <EFBFBD> <EFBFBD> q wg>C<0E> <> B<EFBFBD> ȺA*<2A> ~p<> P<> O`<60> C<> \$ <EFBFBD> <18> <> <0E> <> 2M%<25> ƐR<0E> W<1A> <> %RO&2S\r <EFBFBD> k<1D> ؍ <10> ~<7E> /<16> j<08> <> P<> \$ @<40> <> <EFBFBD> _)rw&<26> O Rq%<25> <> *rm)<29> <> '<27> O'<27> 1'R<> ( 5(I<> r: im,<2C> <> <1F> l<EFBFBD> Q0 \0 <EFBFBD> <19> D<EFBFBD> <02> <13> '%r<> -<2D> <> =<3D> <> <EFBFBD> r<EFBFBD> '2K/<2F> X@`<60> <> <EFBFBD> :, #*ҥ+RY 3<1E> ~<7E> <> E<> <45> <10> <08> 23'-Q*\r `<60> 113s;&cq10<31> 4<06> .<2E> A2<41> 32@7 *2f`<60> <> <EFBFBD> -Q!<19> E<18> &<26> 6<> %<1C> <> 7<EFBFBD> b<> 6<EFBFBD> <36> %Ӏ <0B> <> <EFBFBD> ӏ 1<D38F> <10> <> <0C> y9<79> [7Qu9Ӡ <39> s<EFBFBD> 7ө<1F> <> \r <EFBFBD> ;<13> 4<EFBFBD> <34> ;ӣ!s<> !c\\ e<> ;1 <Sq<10> <> =s<> 52<35> ,<2C> j S<> )<10> ]<5D> <> <0B> <> mp&Q'<<3C> <> @1<> 0\" <EFBFBD> :hЙ<68> <D099> <EFBFBD> <10> <18> ԖRʘi<CA98> <0F> .J<> .<2E> B<EFBFBD> Q&<26> <> \n <EFBFBD> 0<> 5<> <35> ;<1E> <> j<EFBFBD> <6A> D<EFBFBD> <44> 9-\r \" S<EFBFBD> <EFBFBD> <EFBFBD> 1@<40> e s<> Eq<45> e<EFBFBD> &<26> T.<2E> *<2A> L<02> <> i 3<> :<3A> <> E<EFBFBD> <45> H<EFBFBD> <48> <02> Gͮ<47> (<28> rEI J<> i!4Y<0E> yJԗK<13> Kt<4B> ;<3B> <> T.<2E> Ä)<03> <> <EFBFBD> <EFBFBD> o) |<7C> P;.<2E> <0E> <> <0F> <> <EFBFBD> <14> \n l<EFBFBD> <EFBFBD> *ε<> <CEB5> j<> <6A> <EFBFBD> |<7C> <> O<> l<EFBFBD> B<EFBFBD> .h<> .<2E> <> <EFBFBD> <EFBFBD> A<14> \r Æ.<2E> 88<14> 2t<32> #<23> <> o<EFBFBD> ANb<4E> N<EFBFBD> ?<14> !<21> <> OB<4F> O<EFBFBD> ,d<> <64> *<2A> " );} 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> <4F> er<65> x<EFBFBD> 9<1E> *ź<> <C5BA> n3<6E> \r щv<D189> C<EFBFBD> <43> `<60> <> <EFBFBD> 2G%<25> Y<EFBFBD> <59> <EFBFBD> <05> <> 1<EFBFBD> <31> f<EFBFBD> <66> <EFBFBD> Ȃl<C882> <6C> 1<EFBFBD> \n y<> *pC\r \$ <EFBFBD> n<EFBFBD> T<EFBFBD> <EFBFBD> 3=\\ <EFBFBD> r9 O\" <EFBFBD> <09> <> l<<3C> \r <EFBFBD> \\ <EFBFBD> <EFBFBD> I,<2C> s\n A<EFBFBD> <EFBFBD> e h +M<> <4D> !<21> q0<71> <30> f<EFBFBD> `(<28> N { c<EFBFBD> <EFBFBD> +w<> <77> <EFBFBD> Y<EFBFBD> <59> p٧ 3<D9A7> 3<EFBFBD> <1A> +I<> <49> j<EFBFBD> <6A> <EFBFBD> <EFBFBD> <EFBFBD> k<EFBFBD> <6B> n<EFBFBD> q<EFBFBD> <18> <> z i#^r<> <72> <EFBFBD> <1E> <> 3<EFBFBD> <33> <EFBFBD> <EFBFBD> [<5B> <> <EFBFBD> o;<3B> <> (<28> <> 6<> #<23> Ґ<EFBFBD> <D290> \" : cz>ߣC2v<32> CX<43> <<3C> P<EFBFBD> <0C> c*5 \n <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> /<2F> P97<39> |F<> <0F> c0<63> <30> <EFBFBD> <EFBFBD> <EFBFBD> !<21> <> <08> <> !<21> <> <EFBFBD> !<21> <> \n Z %<25> ć#CH<43> !<21> <> r8<72> \$ <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> ,<2C> Rܔ2<DC94> <32> <EFBFBD> ^0<> <30> @<40> 2<EFBFBD> <32> (<28> 8 8P/<0F> <> <EFBFBD> ݄<EFBFBD> \\ <EFBFBD> \$ La \\ <EFBFBD> ; c<> H<14> <> HX<13> <> <EFBFBD> \n ʃt<CA83> <74> <07> 8A<<3C> s Z<04> *<2A> ;I<> <49> 3<EFBFBD> <33> @<40> 2<<3C> <> <1A> !A8G<<3C> j<04> -K<> ({ * \r <EFBFBD> <EFBFBD> a1<EFBFBD> <EFBFBD> <EFBFBD> N4Tc\" \\ <13> !=1^<0C> <> <EFBFBD> M9O<39> :<3A> ; j<> <6A> \r <EFBFBD> X<EFBFBD> <EFBFBD> L#H<> 7<05> #Tݪ/-<2D> <> <07> p<EFBFBD> ;<3B> B \n <05> 2!<21> <> <EFBFBD> t]apΎ<70> <CE8E> \0 R<15> C<EFBFBD> v<1D> M<EFBFBD> I, \r <EFBFBD> <EFBFBD> <EFBFBD> \0 Hv<EFBFBD> <EFBFBD> ? kT<6B> 4<EFBFBD> <34> <EFBFBD> <EFBFBD> uٱ<75> ;&<26> <> <EFBFBD> +&<26> <> <EFBFBD> <EFBFBD> <EFBFBD> \r <EFBFBD> X<EFBFBD> <EFBFBD> <EFBFBD> bu 4 ݡi8 8<> 2B<10> /⃖4<E28396> <07> <> N 8A<38> A)52<35> <32> <EFBFBD> <EFBFBD> <08> <> 2<EFBFBD> <32> s<EFBFBD> 8<EFBFBD> <38> 5<> <35> <EFBFBD> p<EFBFBD> WC@<40> :<03> t<17> 㾴<EFBFBD> e<EFBFBD> <65> h\" #8_<38> <5F> cp^<1F> <> <EFBFBD> I]OH<4F> <48> : zd<7A> 3g<33> (<28> <> <EFBFBD> Ök<C396> <6B> <EFBFBD> \\ 6<EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> 2<EFBFBD> ږ<EFBFBD> <EFBFBD> i<EFBFBD> <18> 7<EFBFBD> <10> <> ] \r <EFBFBD> xO<EFBFBD> n<EFBFBD> p<EFBFBD> <<3C> <> p<EFBFBD> Q<EFBFBD> U<EFBFBD> n<EFBFBD> <6E> |@<40> <> <EFBFBD> #G 3<> <33> 8b A<> <41> 6<EFBFBD> 2<EFBFBD> 67%#<23> \\ 8 \r <EFBFBD> <18> 2<EFBFBD> c\r <EFBFBD> ݟk<DD9F> <0C> .(<28> <09> <> -<2D> J;<3B> <> <EFBFBD> <EFBFBD> <20> <> L<EFBFBD> <4C> <20> <0C> <> W<EFBFBD> <57> 㧓ѥɤ<D1A5> <C9A4> <EFBFBD> <EFBFBD> <EFBFBD> n<EFBFBD> <6E> ҧ<EFBFBD> <D2A7> <EFBFBD> M<EFBFBD> <4D> 9ZН s]<5D> z<EFBFBD> <7A> <EFBFBD> <EFBFBD> y^[<5B> <> 4-<2D> U\0 t a<> <1E> 62^<5E> <> . `<60> <17> <> .C<> j<EFBFBD> [ᄠ% Q \0 ` d<> M8<4D> <38> <EFBFBD> <EFBFBD> <EFBFBD> \$ O0`4<05> <> <EFBFBD> \n \0 a \r A<EFBFBD> <<02> @<40> <> <EFBFBD> <EFBFBD> \r !<21> :<03> BA<42> 9<EFBFBD> ? h><3E> Ǻ<0B> <> ~ ̌<> 6Ȉh<14> =<0C> -<12> A 7X<37> <58> և \\ <1A> \r <EFBFBD> <EFBFBD> Q<蚧 q<> '!XΓ2<CE93> T <20> !<21> D\r <EFBFBD> <13> , K<> \" <EFBFBD> %<01> H<EFBFBD> qR\r <EFBFBD> ̠<EFBFBD> <08> C =<3D> <> <EFBFBD> <17> <> <16> <> <11> < c<> \n #<<3C> 5<EFBFBD> M<EFBFBD> <20> E<EFBFBD> <45> y<EFBFBD> <79> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> o \" <EFBFBD> cJKL2<03> &<26> <> e R<> <52> W<> AΐTw<54> ё;<3B> J<02> <> <EFBFBD> \\ `)5<> <35> ޜB<DE9C> q hT3<54> <33> R <19> ' \r + \" :<3A> <> <EFBFBD> <EFBFBD> <08> .<2E> <01> ZM'|<7C> et:3%L<> <4C> # f!<0E> h<EFBFBD> ׀ e<> <65> <EFBFBD> <12> + ļ<> N<EFBFBD> <4E> <09> <> _<15> CX<43> <58> G<EFBFBD> <47> 1<EFBFBD> <31> i-ãz<C3A3> \$ <EFBFBD> oK@O@T<> =&<26> 0<> \$ <09> DA<44> <41> <EFBFBD> <EFBFBD> <EFBFBD> D<EFBFBD> <44> SJ<53> x9 ׁFȈm l<> <6C> p<> Gխ<1C> T<EFBFBD> 6Rf<52> @<40> a<EFBFBD> \r s<EFBFBD> R<> Fgih]<5D> <> f<EFBFBD> .<2E> 7+<2B> <n hh<68> * <20> SH P]<5D> : Ғ<> <D292> a \" <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> 2<> & R<> )<29> B<EFBFBD> Pʙ<50> H/<0B> <03> f { r|<15> 0^<19> hCA<43> 0<EFBFBD> @<40> M<EFBFBD> <4D> <EFBFBD> 2<EFBFBD> B<> @<40> <> z<EFBFBD> U<EFBFBD> <55> <EFBFBD> O<EFBFBD> <4F> <EFBFBD> Cpp<70> <70> \\ <EFBFBD> L<EFBFBD> %<25> <> 𛄒y<F09B8492> <79> odå<64> <C3A5> <EFBFBD> p 3<> <10> <> 7E<37> <45> <10> <> A\\ <0B> <> <EFBFBD> K<EFBFBD> <4B> Xn<58> <6E> i.<2E> Z<EFBFBD> <5A> <20> <15> <> s<0E> <> G<> m^<5E> tI<74> Y<> J<EFBFBD> <4A> ٱ<EFBFBD> G1<47> <31> R<EFBFBD> <52> D<EFBFBD> <44> c<EFBFBD> <63> <EFBFBD> 6<EFBFBD> t Mi h<> <68> 9<EFBFBD> <39> 9g<39> <67> q<07> RL<52> <4C> Mj-T Q<> 6i<36> G_!<21> <> .<2E> h<EFBFBD> v<EFBFBD> <76> cN<63> <4E> <EFBFBD> <EFBFBD> <EFBFBD> ^<5E> <> 0w@n|<7C> <> <EFBFBD> V<EFBFBD> ܫ<EFBFBD> AЭ<41> <D0AD> 3<EFBFBD> [<5B> <> ]<13> s7<73> G<EFBFBD> P@ :<0C> 1т<31> b<> <20> <> ݟ<EFBFBD> <DD9F> <EFBFBD> w<EFBFBD> (i<> <69> :<3A> <02> z\\ <EFBFBD> <EFBFBD> ;<02> <> <EFBFBD> A<EFBFBD> PU T^<5E> ]9<> `UX+U<> <55> <EFBFBD> Q+<2B> <12> b<EFBFBD> <62> <18> *ϔ s<> <73> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> [<5B> ۉxk<78> F*<2A> <> <EFBFBD> ݧ_w.<2E> <1F> 6~<7E> b<EFBFBD> <62> mK<6D> <4B> sI<73> MK<4D> }<7D> <> ҥ<17> <> <EFBFBD> eHɲ<48> d<EFBFBD> *md<6D> l<EFBFBD> Q<EFBFBD> <51> eH<14> 2<EFBFBD> ԍL<D48D> <04> <> a҂<61> =<18> <> s<EFBFBD> P<EFBFBD> aM\" ap<61> <70> : <<1E> <> <EFBFBD> GB<0C> \r 2Yt x& L }}<7D> <> A<EFBFBD> ԱN<0E> GЬ za<7A> <61> D 4<> t<EFBFBD> 4 Q<> vS<76> ùS \r <EFBFBD> ;U<11> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> ~<7E> pB<70> <42> { <EFBFBD> <EFBFBD> <EFBFBD> ,<2C> <> <EFBFBD> O<EFBFBD> <4F> t;<05> J<EFBFBD> <4A> ZC,&Y<07> :Y\" <EFBFBD> #<23> <> <EFBFBD> <EFBFBD> <EFBFBD> t :\n <EFBFBD> h8r<EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> n<EFBFBD> <EFBFBD> <EFBFBD> h><0F> <> >Z<> <5A> `&<26> a<EFBFBD> pY+<2B> x<EFBFBD> U<> <55> A<> <?<3F> <> PxWա <> W<EFBFBD> i<> <69> .<2E> \r `<60> \$ ,<2C> <> <EFBFBD> Ҿ<EFBFBD> <D2BE> V<10> ]<5D> Z r<> <72> <14> H<> <48> 5<EFBFBD> f \\ <EFBFBD> - K Ʃ<> v<07> <> Z<EFBFBD> <5A> <EFBFBD> A<EFBFBD> <41> (<28> { 3<08> o<EFBFBD> <6F> <EFBFBD> <EFBFBD> l.<2E> <> <EFBFBD> J<EFBFBD> <4A> .<2E> \\ t2<EFBFBD> ;<3B> <> <EFBFBD> 2 \0 <EFBFBD> <EFBFBD> >c+<05> |<7C> <> * ;-0<> n<EFBFBD> <6E> [<0B> t @<40> ڕ<EFBFBD> <DA95> <1D> =c Q\n . z<> <7A> <EFBFBD> wC&<26> <> @<40> <> <EFBFBD> F<EFBFBD> <46> <03> <> <EFBFBD> ' cBS 7_*rs Ѩ<> ? j<> 3 @<40> <> <EFBFBD> <EFBFBD> !<21> .@ 7<7F> s<EFBFBD> ]Ӫ<> L<EFBFBD> G<CE81> <47> @<40> <> _<EFBFBD> q<EFBFBD> <71> <EFBFBD> &u<> <14> <> t<EFBFBD> \n Վ<EFBFBD> L<EFBFBD> E<EFBFBD> T<11> <> <EFBFBD> }gG<67> <47> <EFBFBD> <EFBFBD> w<EFBFBD> o<EFBFBD> (*<2A> <> <EFBFBD> <EFBFBD> <EFBFBD> A<EFBFBD> <41> -<2D> <> <EFBFBD> <EFBFBD> <EFBFBD> 3<EFBFBD> mk<6D> <6B> <EFBFBD> <EFBFBD> <EFBFBD> פ<EFBFBD> <D7A4> t<> <74> S<EFBFBD> <53> <EFBFBD> (<28> d<EFBFBD> <64> A<EFBFBD> ~<7E> x \n <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> k<EFBFBD> ϣ:D<> <44> +<2B> <> g<> <0C> h14 <20> <> \n .<2E> <> d<64> <EAAB96> <EFBFBD> <0C> <> <EFBFBD> <EFBFBD> A lY<6C> <0E> j<EFBFBD> <6A> <EFBFBD> <EFBFBD> jJ<6A> <4A> <EFBFBD> PN+b<> D<> j<EFBFBD> <6A> <03> <05> <> <0B> D<0B> <> P<EFBFBD> <50> <04> LQ`O f<> <66> @<40> }<7D> (<28> <> <EFBFBD> 6<EFBFBD> ^ nB<6E> 4<> `<60> e<EFBFBD> <65> \n <EFBFBD> <EFBFBD> <09> trp !<21> lV<6C> '<07> } b<> *<2A> r%|\n r\r #<23> <> <EFBFBD> @w<02> <> -<2D> T.Vv<56> 8<EFBFBD> <38> <EFBFBD> \n mF<EFBFBD> /<2F> p<> <70> `<60> Y0<59> <30> <EFBFBD> <0E> <> <04> <> P \r 8<0C> Y\r <EFBFBD> <EFBFBD> ݤ<EFBFBD> <09> Q<0E> <> <0E> %E<> /@]\0 <EFBFBD> <0C> { @<40> Q<EFBFBD> <51> <EFBFBD> \0 bR M \r <EFBFBD> <EFBFBD> '|<0C> <> %0SDr<44> <02> <0E> <> f/<10> <> <EFBFBD> <EFBFBD> b:ܭ<13> <> <EFBFBD> <EFBFBD> <EFBFBD> %߀ <> 3H<33> x\0 <EFBFBD> l\0 <EFBFBD> <0C> <> <09> <0E> W<15> <> %<25> \n <EFBFBD> 8\r \0 }<15> D<EFBFBD> <44> <EFBFBD> 1d#<23> x<0C> <> .<2E> jEoHrǢl b<0C> <> <EFBFBD> %t<> <74> 4<EFBFBD> p<EFBFBD> <70> <EFBFBD> %<25> 4<EFBFBD> <34> <EFBFBD> k<> z 2 \r <EFBFBD> <EFBFBD> `<60> W@ <> %\r J<EFBFBD> 1<EFBFBD> <EFBFBD> X<EFBFBD> <EFBFBD> <EFBFBD> 1<EFBFBD> D 6!<21> <16> <> <EFBFBD> *<2A> <1C> <> { 4<E<> <45> k.m<> 4<EFBFBD> <34> <02> <0E> \r \n <EFBFBD> ^i<04> <> <EFBFBD> <20> <> !n<> <1E> !2\$ <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <1E> (<28> f<EFBFBD> <66> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> k><3E> <> <EFBFBD> <EFBFBD> <EFBFBD> N<EFBFBD> <4E> 5\$ <EFBFBD> <EFBFBD> <EFBFBD> 2T<EFBFBD> ,<2C> LĂ<4C> <20> Z @<40> <> *<2A> `^P<> P %5%<25> t<EFBFBD> H<EFBFBD> W<EFBFBD> <57> on<6F> <6E> <EFBFBD> E#f<> <66> <EFBFBD> <<3C> 2@ K:<3A> o<EFBFBD> <6F> <EFBFBD> <EFBFBD> <EFBFBD> Ϧ<EFBFBD> -<2D> <> 2\\ W i+f<> &<04> <03> g&<26> n<EFBFBD> L<EFBFBD> 'e<04> |<7C> <> <EFBFBD> <EFBFBD> nK<6E> 2<EFBFBD> rڶ<72> p<EFBFBD> *.<2E> n<1A> <> <EFBFBD> <EFBFBD> <0E> <> <EFBFBD> <EFBFBD> *<2A> +<2B> t<EFBFBD> Bg * <20> <06> Q<EFBFBD> 1+)1h<31> <68> <EFBFBD> ^<5E> `Q#<23> ؎<EFBFBD> n*h<06> <> <EFBFBD> v<EFBFBD> B<EFBFBD> <12> \0 \\ F \n <EFBFBD> W<EFBFBD> r f\$ <EFBFBD> =4\$ G4ed<07> b<11> :J^!<21> 0<EFBFBD> <30> _<1B> <> <01> %2<> <32> 6<EFBFBD> .F<> <46> <1B> Һ<EFBFBD> EQ<45> <19> <> <EFBFBD> <EFBFBD> dts \" <EFBFBD> <12> <> <EFBFBD> <EFBFBD> B(<28> `<60> \r <EFBFBD> <EFBFBD> <EFBFBD> c<EFBFBD> R<EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> V<EFBFBD> <EFBFBD> <EFBFBD> <04> <> X<EFBFBD> <58> :R<> *2E*s<> \$ <EFBFBD> <EFBFBD> +<0E> :bXl<58> <6C> tb<15> <> -<2D> S><3E> <> -<2D> d<EFBFBD> =<3D> <> \$ S<EFBFBD> \$ <EFBFBD> 2<EFBFBD> ʁ7<EFBFBD> j<EFBFBD> \" [ ́ \" <EFBFBD> <EFBFBD> ]<5D> [6<> <36> SE_><3E> q.\$ @z`<60> ;<3B> 4<EFBFBD> 3ʼ <0B> CS<43> *<2A> <> [<5B> <> <0E> { DO<EFBFBD> ު CJj峚P<E5B39A> : '<27> <> <EFBFBD> ȕ QEӖ<45> <D396> ` %r<> <72> <EFBFBD> 7<EFBFBD> <37> G+hW4E*<2A> <> #TuF j<> \n <EFBFBD> e<EFBFBD> D<EFBFBD> ^<5E> s<EFBFBD> <73> r .<05> <> <EFBFBD> R k<> <04> z @<40> <> @<40> <05> <> D<EFBFBD> `C<> V!C<> <43> <05> \0 <EFBFBD> <EFBFBD> ۊ )3<<3C> <> Q4 @<40> 3SP<53> <50> ZB<5A> 5F<35> L<EFBFBD> <4C> ~G<> 5<1D> <> <EFBFBD> :<3A> <> <EFBFBD> 5\$ X<EFBFBD> <EFBFBD> <EFBFBD> }ƞ f<> <66> <EFBFBD> I<1D> <0C> <> 3S8<53> \0 XԂtd<EFBFBD> < \n btN<14> Q<> ; \r <1E> <> H<EFBFBD> <48> P<EFBFBD> \0 <EFBFBD> <0E> &\n <EFBFBD> <EFBFBD> <EFBFBD> \$ V<EFBFBD> \r :<3A> \0 ]V5gV<67> <56> <EFBFBD> D `<60> N1:<3A> SS4Q<34> 4<EFBFBD> N<0F> <> 5u<35> 5<EFBFBD> `x <09> <5_FH<46> <48> <EFBFBD> }7<> <37> )<29> SV<53> <56> Ğ#<23> |<7C> <> < ռ <> ˰<EFBFBD> <CBB0> <EFBFBD> \\ <EFBFBD> <EFBFBD> -<2D> z2<7A> \0 <EFBFBD> #<23> WJU6kv<6B> <76> <EFBFBD> #<23> <> \r <EFBFBD> 췐<EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> U<EFBFBD> <EFBFBD> i<EFBFBD> <EFBFBD> _<EFBFBD> <EFBFBD> ^<5E> UVJ|Y.<2E> <> ɛ\0 u,<2C> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> _UQD#<23> ZJu<4A> Xt<58> <13> _<> &JO,Du `N \r 5<EFBFBD> <EFBFBD> `<60> }ZQM^m<> P<EFBFBD> G[<5B> <> a<0C> b<EFBFBD> N 䞮<> <E49EAE> re<72> \n <EFBFBD> <EFBFBD> %<25> 4<EFBFBD> <34> o_(<28> ^<5E> q @Y6 t;I\n G SM<53> 3<EFBFBD> <33> ^SAY H<07> h B<> <16> 5<EFBFBD> f N ?Nj W U<> J<EFBFBD> <4A> <EFBFBD> <EFBFBD> ֯Yֳke \" \\ B1<04> 0<10> <20> en<65> <6E> <0C> *<<3C> O`S<> L<EFBFBD> \n <EFBFBD> <16> . g<05> 5Zj<0C> \0 R \$ <EFBFBD> h<EFBFBD> <EFBFBD> n<> [<5B> \\ <EFBFBD> <EFBFBD> <EFBFBD> r<15> <> <EFBFBD> ,<2C> 4<> <34> <EFBFBD> <0C> <> cP<63> p<EFBFBD> q @R<0B> rw><3E> wCK<43> <4B> t<EFBFBD> <74> }5_uvh<76> <14> ` /<2F> <> <EFBFBD> <EFBFBD> \$ <EFBFBD> <EFBFBD> J )<29> R<EFBFBD> 2Du73<37> d\r <EFBFBD> ;<3B> <> w<EFBFBD> <77> <0C> H<> I_\" 4<EFBFBD> r<> <72> <EFBFBD> <EFBFBD> <EFBFBD> Ͽ+<2B> <> &0><0B> _- e qeD<65> <44> V<EFBFBD> <56> n<EFBFBD> <6E> f<> h<EFBFBD> <68> \" Z<EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> Z<07> W<> 6 \\ L<EFBFBD> <0C> <> <EFBFBD> ke&<26> ~<7E> <> <0C> <> <EFBFBD> <EFBFBD> i \$ ϰ<EFBFBD> Mr<EFBFBD> i*<2A> <> <EFBFBD> <EFBFBD> <EFBFBD> \0 <0B> .Q,<2C> <> 8\r <EFBFBD> <EFBFBD> <0C> \$ K<EFBFBD> <EFBFBD> Y<EFBFBD> <20> io<69>
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> }
2018-12-15 21:22:00 +00:00
get_lang (){ return 'en' ;} function
2019-02-03 12:13:26 +00:00
lang ( $ri , $ef = null ){ if ( is_array ( $ri )){ $bg = ( $ef == 1 ? 0 : 1 ); $ri = $ri [ $bg ];} $ri = str_replace ( " %d " , " %s " , $ri ); $ef = format_number ( $ef ); return
sprintf ( $ri , $ef );} if ( extension_loaded ( 'pdo' )){ class
2018-12-15 21:22:00 +00:00
Min_PDO
extends
PDO { var $_result , $server_info , $affected_rows , $errno , $error ; function
2019-02-03 12:13:26 +00:00
__construct (){ global $b ; $bg = array_search ( " SQL " , $b -> operators ); if ( $bg !== false ) unset ( $b -> operators [ $bg ]);} function
dsn ( $hc , $V , $F , $vf = array ()){ try { parent :: __construct ( $hc , $V , $F , $vf );} catch ( Exception $zc ){ auth_error ( h ( $zc -> getMessage ()));} $this -> setAttribute ( 13 , array ( 'Min_PDOStatement' )); $this -> server_info =@ $this -> getAttribute ( 4 );} function
2018-12-15 21:22:00 +00:00
query ( $G , $Ai = false ){ $H = parent :: query ( $G ); $this -> error = " " ; if ( ! $H ){ list (, $this -> errno , $this -> error ) = $this -> errorInfo (); if ( ! $this -> error ) $this -> error = 'Unknown error.' ; return
false ;} $this -> store_result ( $H ); return $H ;} function
multi_query ( $G ){ return $this -> _result = $this -> query ( $G );} function
store_result ( $H = null ){ if ( ! $H ){ $H = $this -> _result ; if ( ! $H ) return
false ;} if ( $H -> columnCount ()){ $H -> num_rows = $H -> rowCount (); return $H ;} $this -> affected_rows = $H -> rowCount (); return
true ;} function
next_result (){ if ( ! $this -> _result ) return
false ; $this -> _result -> _offset = 0 ; return @ $this -> _result -> nextRowset ();} function
2019-02-03 12:13:26 +00:00
result ( $G , $p = 0 ){ $H = $this -> query ( $G ); if ( ! $H ) return
false ; $J = $H -> fetch (); return $J [ $p ];}} class
2018-12-15 21:22:00 +00:00
Min_PDOStatement
extends
PDOStatement { var $_offset = 0 , $num_rows ; function
fetch_assoc (){ return $this -> fetch ( 2 );} function
fetch_row (){ return $this -> fetch ( 3 );} function
2019-02-03 12:13:26 +00:00
fetch_field (){ $J = ( object ) $this -> getColumnMeta ( $this -> _offset ++ ); $J -> orgtable = $J -> table ; $J -> orgname = $J -> name ; $J -> charsetnr = ( in_array ( " blob " ,( array ) $J -> flags ) ? 63 : 0 ); return $J ;}}} $cc = array (); class
2018-12-15 21:22:00 +00:00
Min_SQL { var $_conn ; function
__construct ( $g ){ $this -> _conn = $g ;} function
2019-02-03 12:13:26 +00:00
select ( $Q , $L , $Z , $ld , $xf = array (), $_ = 1 , $E = 0 , $jg = false ){ global $b , $y ; $Wd = ( count ( $ld ) < count ( $L )); $G = $b -> selectQueryBuild ( $L , $Z , $ld , $xf , $_ , $E ); if ( ! $G ) $G = " SELECT " . limit (( $_GET [ " page " ] != " last " && $_ != " " && $ld && $Wd && $y == " sql " ? " SQL_CALC_FOUND_ROWS " : " " ) . implode ( " , " , $L ) . " \n FROM " . table ( $Q ),( $Z ? " \n WHERE " . implode ( " AND " , $Z ) : " " ) . ( $ld && $Wd ? " \n GROUP BY " . implode ( " , " , $ld ) : " " ) . ( $xf ? " \n ORDER BY " . implode ( " , " , $xf ) : " " ),( $_ != " " ? + $_ : null ),( $E ? $_ * $E : 0 ), " \n " ); $Ah = microtime ( true ); $I = $this -> _conn -> query ( $G ); if ( $jg ) echo $b -> selectQuery ( $G , $Ah , ! $I ); return $I ;} function
delete ( $Q , $tg , $_ = 0 ){ $G = " FROM " . table ( $Q ); return
queries ( " DELETE " . ( $_ ? limit1 ( $Q , $G , $tg ) : " $G $tg " ));} function
update ( $Q , $O , $tg , $_ = 0 , $M = " \n " ){ $Si = array (); foreach ( $O
as $z => $X ) $Si [] = " $z = $X " ; $G = table ( $Q ) . " SET $M " . implode ( " , $M " , $Si ); return
queries ( " UPDATE " . ( $_ ? limit1 ( $Q , $G , $tg , $M ) : " $G $tg " ));} function
2018-12-15 21:22:00 +00:00
insert ( $Q , $O ){ return
queries ( " INSERT INTO " . table ( $Q ) . ( $O ? " ( " . implode ( " , " , array_keys ( $O )) . " ) \n VALUES ( " . implode ( " , " , $O ) . " ) " : " DEFAULT VALUES " ));} function
2019-02-03 12:13:26 +00:00
insertUpdate ( $Q , $K , $hg ){ return
2018-12-15 21:22:00 +00:00
false ;} function
begin (){ return
queries ( " BEGIN " );} function
commit (){ return
queries ( " COMMIT " );} function
rollback (){ return
queries ( " ROLLBACK " );} function
slowQuery ( $G , $di ){} function
2019-02-03 12:13:26 +00:00
convertSearch ( $v , $X , $p ){ return $v ;} function
value ( $X , $p ){ return ( method_exists ( $this -> _conn , 'value' ) ? $this -> _conn -> value ( $X , $p ) : ( is_resource ( $X ) ? stream_get_contents ( $X ) : $X ));} function
quoteBinary ( $Vg ){ return
q ( $Vg );} function
2018-12-15 21:22:00 +00:00
warnings (){ return '' ;} function
2019-02-03 12:13:26 +00:00
tableHelp ( $C ){}} $cc [ " sqlite " ] = " SQLite 3 " ; $cc [ " sqlite2 " ] = " SQLite 2 " ; if ( isset ( $_GET [ " sqlite " ]) || isset ( $_GET [ " sqlite2 " ])){ $eg = 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
2018-12-15 21:22:00 +00:00
Min_SQLite { var $extension = " SQLite3 " , $server_info , $affected_rows , $errno , $error , $_link ; function
2019-02-03 12:13:26 +00:00
__construct ( $Sc ){ $this -> _link = new
SQLite3 ( $Sc ); $Vi = $this -> _link -> version (); $this -> server_info = $Vi [ " versionString " ];} function
2018-12-15 21:22:00 +00:00
query ( $G ){ $H =@ $this -> _link -> query ( $G ); $this -> error = " " ; if ( ! $H ){ $this -> errno = $this -> _link -> lastErrorCode (); $this -> error = $this -> _link -> lastErrorMsg (); return
false ;} elseif ( $H -> numColumns ()) return
new
Min_Result ( $H ); $this -> affected_rows = $this -> _link -> changes (); return
true ;} function
quote ( $P ){ return ( is_utf8 ( $P ) ? " ' " . $this -> _link -> escapeString ( $P ) . " ' " : " x' " . reset ( unpack ( 'H*' , $P )) . " ' " );} function
store_result (){ return $this -> _result ;} function
2019-02-03 12:13:26 +00:00
result ( $G , $p = 0 ){ $H = $this -> query ( $G ); if ( ! is_object ( $H )) return
false ; $J = $H -> _result -> fetchArray (); return $J [ $p ];}} class
2018-12-15 21:22:00 +00:00
Min_Result { var $_result , $_offset = 0 , $num_rows ; function
__construct ( $H ){ $this -> _result = $H ;} function
fetch_assoc (){ return $this -> _result -> fetchArray ( SQLITE3_ASSOC );} function
fetch_row (){ return $this -> _result -> fetchArray ( SQLITE3_NUM );} function
fetch_field (){ $e = $this -> _offset ++ ; $T = $this -> _result -> columnType ( $e ); return ( object ) array ( " name " => $this -> _result -> columnName ( $e ), " type " => $T , " charsetnr " => ( $T == SQLITE3_BLOB ? 63 : 0 ),);} function
__desctruct (){ return $this -> _result -> finalize ();}}} else { class
Min_SQLite { var $extension = " SQLite " , $server_info , $affected_rows , $error , $_link ; function
2019-02-03 12:13:26 +00:00
__construct ( $Sc ){ $this -> server_info = sqlite_libversion (); $this -> _link = new
SQLiteDatabase ( $Sc );} function
query ( $G , $Ai = false ){ $Pe = ( $Ai ? " unbufferedQuery " : " query " ); $H =@ $this -> _link -> $Pe ( $G , SQLITE_BOTH , $o ); $this -> error = " " ; if ( ! $H ){ $this -> error = $o ; return
2018-12-15 21:22:00 +00:00
false ;} elseif ( $H === true ){ $this -> affected_rows = $this -> changes (); return
true ;} return
new
Min_Result ( $H );} function
quote ( $P ){ return " ' " . sqlite_escape_string ( $P ) . " ' " ;} function
store_result (){ return $this -> _result ;} function
2019-02-03 12:13:26 +00:00
result ( $G , $p = 0 ){ $H = $this -> query ( $G ); if ( ! is_object ( $H )) return
false ; $J = $H -> _result -> fetch (); return $J [ $p ];}} class
2018-12-15 21:22:00 +00:00
Min_Result { var $_result , $_offset = 0 , $num_rows ; function
__construct ( $H ){ $this -> _result = $H ; if ( method_exists ( $H , 'numRows' )) $this -> num_rows = $H -> numRows ();} function
fetch_assoc (){ $J = $this -> _result -> fetch ( SQLITE_ASSOC ); if ( ! $J ) return
false ; $I = array (); foreach ( $J
2019-02-03 12:13:26 +00:00
as $z => $X ) $I [( $z [ 0 ] == '"' ? idf_unescape ( $z ) : $z )] = $X ; return $I ;} function
2018-12-15 21:22:00 +00:00
fetch_row (){ return $this -> _result -> fetch ( SQLITE_NUM );} function
2019-02-03 12:13:26 +00:00
fetch_field (){ $C = $this -> _result -> fieldName ( $this -> _offset ++ ); $Xf = '(\[.*]|"(?:[^"]|"")*"|(.+))' ; if ( preg_match ( " ~^( $Xf\\ .)? $Xf\ $ ~ " , $C , $B )){ $Q = ( $B [ 3 ] != " " ? $B [ 3 ] : idf_unescape ( $B [ 2 ])); $C = ( $B [ 5 ] != " " ? $B [ 5 ] : idf_unescape ( $B [ 4 ]));} return ( object ) array ( " name " => $C , " orgname " => $C , " orgtable " => $Q ,);}}}} elseif ( extension_loaded ( " pdo_sqlite " )){ class
2018-12-15 21:22:00 +00:00
Min_SQLite
extends
Min_PDO { var $extension = " PDO_SQLite " ; function
2019-02-03 12:13:26 +00:00
__construct ( $Sc ){ $this -> dsn ( DRIVER . " : $Sc " , " " , " " );}}} if ( class_exists ( " Min_SQLite " )){ class
2018-12-15 21:22:00 +00:00
Min_DB
extends
Min_SQLite { function
__construct (){ parent :: __construct ( " :memory: " ); $this -> query ( " PRAGMA foreign_keys = 1 " );} function
2019-02-03 12:13:26 +00:00
select_db ( $Sc ){ if ( is_readable ( $Sc ) && $this -> query ( " ATTACH " . $this -> quote ( preg_match ( " ~(^[/ \\ \\ ]|:)~ " , $Sc ) ? $Sc : dirname ( $_SERVER [ " SCRIPT_FILENAME " ]) . " / $Sc " ) . " AS a " )){ parent :: __construct ( $Sc ); $this -> query ( " PRAGMA foreign_keys = 1 " ); return
2018-12-15 21:22:00 +00:00
true ;} return
false ;} function
multi_query ( $G ){ return $this -> _result = $this -> query ( $G );} function
next_result (){ return
false ;}}} class
Min_Driver
extends
Min_SQL { function
2019-02-03 12:13:26 +00:00
insertUpdate ( $Q , $K , $hg ){ $Si = array (); foreach ( $K
2018-12-15 21:22:00 +00:00
as $O ) $Si [] = " ( " . implode ( " , " , $O ) . " ) " ; return
queries ( " REPLACE INTO " . table ( $Q ) . " ( " . implode ( " , " , array_keys ( reset ( $K ))) . " ) VALUES \n " . implode ( " , \n " , $Si ));} function
tableHelp ( $C ){ if ( $C == " sqlite_sequence " ) return " fileformat2.html#seqtab " ; if ( $C == " sqlite_master " ) return " fileformat2.html# $C " ;}} function
2019-02-03 12:13:26 +00:00
idf_escape ( $v ){ return '"' . str_replace ( '"' , '""' , $v ) . '"' ;} function
table ( $v ){ return
idf_escape ( $v );} function
2018-12-15 21:22:00 +00:00
connect (){ global $b ; list (,, $F ) = $b -> credentials (); if ( $F != " " ) return 'Database does not support password.' ; return
new
Min_DB ;} function
get_databases (){ return
array ();} function
2019-02-03 12:13:26 +00:00
limit ( $G , $Z , $_ , $D = 0 , $M = " " ){ return " $G $Z " . ( $_ !== null ? $M . " LIMIT $_ " . ( $D ? " OFFSET $D " : " " ) : " " );} function
2018-12-15 21:22:00 +00:00
limit1 ( $Q , $G , $Z , $M = " \n " ){ global $g ; return ( preg_match ( '~^INTO~' , $G ) || $g -> result ( " SELECT sqlite_compileoption_used('ENABLE_UPDATE_DELETE_LIMIT') " ) ? limit ( $G , $Z , 1 , 0 , $M ) : " $G WHERE rowid = (SELECT rowid FROM " . table ( $Q ) . $Z . $M . " LIMIT 1) " );} function
2019-02-03 12:13:26 +00:00
db_collation ( $m , $ob ){ global $g ; return $g -> result ( " PRAGMA encoding " );} function
2018-12-15 21:22:00 +00:00
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
2019-02-03 12:13:26 +00:00
count_tables ( $l ){ return
2018-12-15 21:22:00 +00:00
array ();} function
table_status ( $C = " " ){ global $g ; $I = array (); foreach ( get_rows ( " SELECT name AS Name, type AS Engine, 'rowid' AS Oid, '' AS Auto_increment FROM sqlite_master WHERE type IN ('table', 'view') " . ( $C != " " ? " AND name = " . q ( $C ) : " ORDER BY name " )) as $J ){ $J [ " Rows " ] = $g -> result ( " SELECT COUNT(*) FROM " . idf_escape ( $J [ " Name " ])); $I [ $J [ " Name " ]] = $J ;} foreach ( get_rows ( " SELECT * FROM sqlite_sequence " , null , " " ) as $J ) $I [ $J [ " name " ]][ " Auto_increment " ] = $J [ " seq " ]; return ( $C != " " ? $I [ $C ] : $I );} function
is_view ( $R ){ return $R [ " Engine " ] == " view " ;} function
fk_support ( $R ){ global $g ; return ! $g -> result ( " SELECT sqlite_compileoption_used('OMIT_FOREIGN_KEY') " );} function
2019-02-03 12:13:26 +00:00
fields ( $Q ){ global $g ; $I = array (); $hg = " " ; foreach ( get_rows ( " PRAGMA table_info( " . table ( $Q ) . " ) " ) as $J ){ $C = $J [ " name " ]; $T = strtolower ( $J [ " type " ]); $Qb = $J [ " dflt_value " ]; $I [ $C ] = array ( " field " => $C , " 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 ( " ~'(.*)'~ " , $Qb , $B ) ? str_replace ( " '' " , " ' " , $B [ 1 ]) : ( $Qb == " NULL " ? null : $Qb )), " null " =>! $J [ " notnull " ], " privileges " => array ( " select " => 1 , " insert " => 1 , " update " => 1 ), " primary " => $J [ " pk " ],); if ( $J [ " pk " ]){ if ( $hg != " " ) $I [ $hg ][ " auto_increment " ] = false ; elseif ( preg_match ( '~^integer$~i' , $T )) $I [ $C ][ " auto_increment " ] = true ; $hg = $C ;}} $wh = $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' , $wh , $Be , PREG_SET_ORDER ); foreach ( $Be
2018-12-15 21:22:00 +00:00
as $B ){ $C = str_replace ( '""' , '"' , preg_replace ( '~^"|"$~' , '' , $B [ 1 ])); if ( $I [ $C ]) $I [ $C ][ " collation " ] = trim ( $B [ 3 ], " ' " );} return $I ;} function
2019-02-03 12:13:26 +00:00
indexes ( $Q , $h = null ){ global $g ; if ( ! is_object ( $h )) $h = $g ; $I = array (); $wh = $h -> result ( " SELECT sql FROM sqlite_master WHERE type = 'table' AND name = " . q ( $Q )); if ( preg_match ( '~\bPRIMARY\s+KEY\s*\((([^)"]+|"[^"]*"|`[^`]*`)++)~i' , $wh , $B )){ $I [ " " ] = array ( " type " => " PRIMARY " , " columns " => array (), " lengths " => array (), " descs " => array ()); preg_match_all ( '~((("[^"]*+")+|(?:`[^`]*+`)+)|(\S+))(\s+(ASC|DESC))?(,\s*|$)~i' , $B [ 1 ], $Be , PREG_SET_ORDER ); foreach ( $Be
as $B ){ $I [ " " ][ " columns " ][] = idf_unescape ( $B [ 2 ]) . $B [ 4 ]; $I [ " " ][ " descs " ][] = ( preg_match ( '~DESC~i' , $B [ 5 ]) ? '1' : null );}} if ( ! $I ){ foreach ( fields ( $Q ) as $C => $p ){ if ( $p [ " primary " ]) $I [ " " ] = array ( " type " => " PRIMARY " , " columns " => array ( $C ), " lengths " => array (), " descs " => array ( null ));}} $zh = get_key_vals ( " SELECT name, sql FROM sqlite_master WHERE type = 'index' AND tbl_name = " . q ( $Q ), $h ); foreach ( get_rows ( " PRAGMA index_list( " . table ( $Q ) . " ) " , $h ) as $J ){ $C = $J [ " name " ]; $w = array ( " type " => ( $J [ " unique " ] ? " UNIQUE " : " INDEX " )); $w [ " lengths " ] = array (); $w [ " descs " ] = array (); foreach ( get_rows ( " PRAGMA index_info( " . idf_escape ( $C ) . " ) " , $h ) as $Ug ){ $w [ " columns " ][] = $Ug [ " name " ]; $w [ " descs " ][] = null ;} if ( preg_match ( '~^CREATE( UNIQUE)? INDEX ' . preg_quote ( idf_escape ( $C ) . ' ON ' . idf_escape ( $Q ), '~' ) . ' \((.*)\)$~i' , $zh [ $C ], $Eg )){ preg_match_all ( '/("[^"]*+")+( DESC)?/' , $Eg [ 2 ], $Be ); foreach ( $Be [ 2 ] as $z => $X ){ if ( $X ) $w [ " descs " ][ $z ] = '1' ;}} if ( ! $I [ " " ] || $w [ " type " ] != " UNIQUE " || $w [ " columns " ] != $I [ " " ][ " columns " ] || $w [ " descs " ] != $I [ " " ][ " descs " ] ||! preg_match ( " ~^sqlite_~ " , $C )) $I [ $C ] = $w ;} return $I ;} function
foreign_keys ( $Q ){ $I = array (); foreach ( get_rows ( " PRAGMA foreign_key_list( " . table ( $Q ) . " ) " ) as $J ){ $r =& $I [ $J [ " id " ]]; if ( ! $r ) $r = $J ; $r [ " source " ][] = $J [ " from " ]; $r [ " target " ][] = $J [ " to " ];} return $I ;} function
2018-12-15 21:22:00 +00:00
view ( $C ){ global $g ; return
array ( " select " => preg_replace ( '~^(?:[^`"[]+|`[^`]*`|"[^"]*")* AS\s+~iU' , '' , $g -> result ( " SELECT sql FROM sqlite_master WHERE name = " . q ( $C ))));} function
collations (){ return ( isset ( $_GET [ " create " ]) ? get_vals ( " PRAGMA collation_list " , 1 ) : array ());} function
2019-02-03 12:13:26 +00:00
information_schema ( $m ){ return
2018-12-15 21:22:00 +00:00
false ;} function
error (){ global $g ; return
h ( $g -> error );} function
2019-02-03 12:13:26 +00:00
check_sqlite_name ( $C ){ global $g ; $Ic = " db|sdb|sqlite " ; if ( ! preg_match ( " ~^[^ \\ 0]* \\ .( $Ic ) \$ ~ " , $C )){ $g -> error = sprintf ( 'Please use one of the extensions %s.' , str_replace ( " | " , " , " , $Ic )); return
2018-12-15 21:22:00 +00:00
false ;} return
true ;} function
2019-02-03 12:13:26 +00:00
create_database ( $m , $d ){ global $g ; if ( file_exists ( $m )){ $g -> error = 'File exists.' ; return
false ;} if ( ! check_sqlite_name ( $m )) return
false ; try { $A = new
Min_SQLite ( $m );} catch ( Exception $zc ){ $g -> error = $zc -> getMessage (); return
false ;} $A -> query ( 'PRAGMA encoding = "UTF-8"' ); $A -> query ( 'CREATE TABLE adminer (i)' ); $A -> query ( 'DROP TABLE adminer' ); return
2018-12-15 21:22:00 +00:00
true ;} function
2019-02-03 12:13:26 +00:00
drop_databases ( $l ){ global $g ; $g -> __construct ( " :memory: " ); foreach ( $l
as $m ){ if ( !@ unlink ( $m )){ $g -> error = 'File exists.' ; return
2018-12-15 21:22:00 +00:00
false ;}} return
true ;} function
rename_database ( $C , $d ){ global $g ; if ( ! check_sqlite_name ( $C )) return
false ; $g -> __construct ( " :memory: " ); $g -> error = 'File exists.' ; return @ rename ( DB , $C );} function
auto_increment (){ return " PRIMARY KEY " . ( DRIVER == " sqlite " ? " AUTOINCREMENT " : " " );} function
2019-02-03 12:13:26 +00:00
alter_table ( $Q , $C , $q , $ad , $tb , $sc , $d , $La , $Rf ){ $Mi = ( $Q == " " || $ad ); foreach ( $q
as $p ){ if ( $p [ 0 ] != " " ||! $p [ 1 ] || $p [ 2 ]){ $Mi = true ; break ;}} $c = array (); $Ff = array (); foreach ( $q
as $p ){ if ( $p [ 1 ]){ $c [] = ( $Mi ? $p [ 1 ] : " ADD " . implode ( $p [ 1 ])); if ( $p [ 0 ] != " " ) $Ff [ $p [ 0 ]] = $p [ 1 ][ 0 ];}} if ( ! $Mi ){ foreach ( $c
2018-12-15 21:22:00 +00:00
as $X ){ if ( ! queries ( " ALTER TABLE " . table ( $Q ) . " $X " )) return
false ;} if ( $Q != $C &&! queries ( " ALTER TABLE " . table ( $Q ) . " RENAME TO " . table ( $C ))) return
2019-02-03 12:13:26 +00:00
false ;} elseif ( ! recreate_table ( $Q , $C , $c , $Ff , $ad )) return
2018-12-15 21:22:00 +00:00
false ; if ( $La ) queries ( " UPDATE sqlite_sequence SET seq = $La WHERE name = " . q ( $C )); return
true ;} function
2019-02-03 12:13:26 +00:00
recreate_table ( $Q , $C , $q , $Ff , $ad , $x = array ()){ if ( $Q != " " ){ if ( ! $q ){ foreach ( fields ( $Q ) as $z => $p ){ if ( $x ) $p [ " auto_increment " ] = 0 ; $q [] = process_field ( $p , $p ); $Ff [ $z ] = idf_escape ( $z );}} $ig = false ; foreach ( $q
as $p ){ if ( $p [ 6 ]) $ig = true ;} $fc = array (); foreach ( $x
as $z => $X ){ if ( $X [ 2 ] == " DROP " ){ $fc [ $X [ 1 ]] = true ; unset ( $x [ $z ]);}} foreach ( indexes ( $Q ) as $ee => $w ){ $f = array (); foreach ( $w [ " columns " ] as $z => $e ){ if ( ! $Ff [ $e ]) continue
2 ; $f [] = $Ff [ $e ] . ( $w [ " descs " ][ $z ] ? " DESC " : " " );} if ( ! $fc [ $ee ]){ if ( $w [ " type " ] != " PRIMARY " ||! $ig ) $x [] = array ( $w [ " type " ], $ee , $f );}} foreach ( $x
as $z => $X ){ if ( $X [ 0 ] == " PRIMARY " ){ unset ( $x [ $z ]); $ad [] = " PRIMARY KEY ( " . implode ( " , " , $X [ 2 ]) . " ) " ;}} foreach ( foreign_keys ( $Q ) as $ee => $r ){ foreach ( $r [ " source " ] as $z => $e ){ if ( ! $Ff [ $e ]) continue
2 ; $r [ " source " ][ $z ] = idf_unescape ( $Ff [ $e ]);} if ( ! isset ( $ad [ " $ee " ])) $ad [] = " " . format_foreign_key ( $r );} queries ( " BEGIN " );} foreach ( $q
as $z => $p ) $q [ $z ] = " " . implode ( $p ); $q = array_merge ( $q , array_filter ( $ad )); if ( ! queries ( " CREATE TABLE " . table ( $Q != " " ? " adminer_ $C " : $C ) . " ( \n " . implode ( " , \n " , $q ) . " \n ) " )) return
false ; if ( $Q != " " ){ if ( $Ff &&! queries ( " INSERT INTO " . table ( " adminer_ $C " ) . " ( " . implode ( " , " , $Ff ) . " ) SELECT " . implode ( " , " , array_map ( 'idf_escape' , array_keys ( $Ff ))) . " FROM " . table ( $Q ))) return
2018-12-15 21:22:00 +00:00
false ; $yi = array (); foreach ( triggers ( $Q ) as $wi => $ei ){ $vi = trigger ( $wi ); $yi [] = " CREATE TRIGGER " . idf_escape ( $wi ) . " " . implode ( " " , $ei ) . " ON " . table ( $C ) . " \n $vi[Statement] " ;} if ( ! queries ( " DROP TABLE " . table ( $Q ))) return
2019-02-03 12:13:26 +00:00
false ; queries ( " ALTER TABLE " . table ( " adminer_ $C " ) . " RENAME TO " . table ( $C )); if ( ! alter_indexes ( $C , $x )) return
2018-12-15 21:22:00 +00:00
false ; foreach ( $yi
as $vi ){ if ( ! queries ( $vi )) return
false ;} queries ( " COMMIT " );} return
true ;} function
index_sql ( $Q , $T , $C , $f ){ return " CREATE $T " . ( $T != " INDEX " ? " INDEX " : " " ) . idf_escape ( $C != " " ? $C : uniqid ( $Q . " _ " )) . " ON " . table ( $Q ) . " $f " ;} function
alter_indexes ( $Q , $c ){ foreach ( $c
2019-02-03 12:13:26 +00:00
as $hg ){ if ( $hg [ 0 ] == " PRIMARY " ) return
2018-12-15 21:22:00 +00:00
recreate_table ( $Q , $Q , array (), array (), array (), $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 ( $Xi ){ return
apply_queries ( " DROP VIEW " , $Xi );} function
drop_tables ( $S ){ return
apply_queries ( " DROP TABLE " , $S );} function
move_tables ( $S , $Xi , $Vh ){ return
false ;} function
trigger ( $C ){ global $g ; if ( $C == " " ) return
2019-02-03 12:13:26 +00:00
array ( " Statement " => " BEGIN \n \t ; \n END " ); $v = '(?:[^`"\s]+|`[^`]*`|"[^"]*")+' ; $xi = trigger_options (); preg_match ( " ~^CREATE \\ s+TRIGGER \\ s* $v\\s *( " . implode ( " | " , $xi [ " Timing " ]) . " ) \\ s+([a-z]+)(?: \\ s+OF \\ s+( $v ))? \\ s+ON \\ s* $v\\s *(?:FOR \\ s+EACH \\ s+ROW \\ s)?(.*)~is " , $g -> result ( " SELECT sql FROM sqlite_master WHERE type = 'trigger' AND name = " . q ( $C )), $B ); $gf = $B [ 3 ]; return
array ( " Timing " => strtoupper ( $B [ 1 ]), " Event " => strtoupper ( $B [ 2 ]) . ( $gf ? " OF " : " " ), " Of " => ( $gf [ 0 ] == '`' || $gf [ 0 ] == '"' ? idf_unescape ( $gf ) : $gf ), " Trigger " => $C , " Statement " => $B [ 4 ],);} function
2018-12-15 21:22:00 +00:00
triggers ( $Q ){ $I = array (); $xi = trigger_options (); foreach ( get_rows ( " SELECT * FROM sqlite_master WHERE type = 'trigger' AND tbl_name = " . q ( $Q )) as $J ){ preg_match ( '~^CREATE\s+TRIGGER\s*(?:[^`"\s]+|`[^`]*`|"[^"]*")+\s*(' . implode ( " | " , $xi [ " Timing " ]) . ')\s*(.*)\s+ON\b~iU' , $J [ " sql " ], $B ); $I [ $J [ " name " ]] = array ( $B [ 1 ], $B [ 2 ]);} return $I ;} function
trigger_options (){ return
array ( " Timing " => array ( " BEFORE " , " AFTER " , " INSTEAD OF " ), " Event " => array ( " INSERT " , " UPDATE " , " UPDATE OF " , " DELETE " ), " Type " => array ( " FOR EACH ROW " ),);} function
begin (){ return
queries ( " BEGIN " );} function
last_id (){ global $g ; return $g -> result ( " SELECT LAST_INSERT_ROWID() " );} function
explain ( $g , $G ){ return $g -> query ( " EXPLAIN QUERY PLAN $G " );} function
found_rows ( $R , $Z ){} function
types (){ return
array ();} function
schemas (){ return
array ();} function
get_schema (){ return " " ;} function
2019-02-03 12:13:26 +00:00
set_schema ( $Yg ){ return
2018-12-15 21:22:00 +00:00
true ;} function
2019-02-03 12:13:26 +00:00
create_sql ( $Q , $La , $Gh ){ global $g ; $I = $g -> result ( " SELECT sql FROM sqlite_master WHERE type IN ('table', 'view') AND name = " . q ( $Q )); foreach ( indexes ( $Q ) as $C => $w ){ if ( $C == '' ) continue ; $I .= " ; \n \n " . index_sql ( $Q , $w [ 'type' ], $C , " ( " . implode ( " , " , array_map ( 'idf_escape' , $w [ 'columns' ])) . " ) " );} return $I ;} function
2018-12-15 21:22:00 +00:00
truncate_sql ( $Q ){ return " DELETE FROM " . table ( $Q );} function
2019-02-03 12:13:26 +00:00
use_sql ( $k ){} function
2018-12-15 21:22:00 +00:00
trigger_sql ( $Q ){ return
implode ( get_vals ( " SELECT sql || ';; \n ' FROM sqlite_master WHERE type = 'trigger' AND tbl_name = " . q ( $Q )));} function
2019-02-03 12:13:26 +00:00
show_variables (){ global $g ; $I = array (); foreach ( array ( " auto_vacuum " , " cache_size " , " count_changes " , " default_cache_size " , " empty_result_callbacks " , " encoding " , " foreign_keys " , " full_column_names " , " fullfsync " , " journal_mode " , " journal_size_limit " , " legacy_file_format " , " locking_mode " , " page_size " , " max_page_count " , " read_uncommitted " , " recursive_triggers " , " reverse_unordered_selects " , " secure_delete " , " short_column_names " , " synchronous " , " temp_store " , " temp_store_directory " , " schema_version " , " integrity_check " , " quick_check " ) as $z ) $I [ $z ] = $g -> result ( " PRAGMA $z " ); return $I ;} function
show_status (){ $I = array (); foreach ( get_vals ( " PRAGMA compile_options " ) as $uf ){ list ( $z , $X ) = explode ( " = " , $uf , 2 ); $I [ $z ] = $X ;} return $I ;} function
convert_field ( $p ){} function
unconvert_field ( $p , $I ){ return $I ;} function
support ( $Nc ){ return
preg_match ( '~^(columns|database|drop_col|dump|indexes|descidx|move_col|sql|status|table|trigger|variables|view|view_trigger)$~' , $Nc );} $y = " sqlite " ; $U = array ( " integer " => 0 , " real " => 0 , " numeric " => 0 , " text " => 0 , " blob " => 0 ); $Fh = array_keys ( $U ); $Gi = array (); $sf = array ( " = " , " < " , " > " , " <= " , " >= " , " != " , " LIKE " , " LIKE %% " , " IN " , " IS NULL " , " NOT LIKE " , " NOT IN " , " IS NOT NULL " , " SQL " ); $id = array ( " hex " , " length " , " lower " , " round " , " unixepoch " , " upper " ); $od = array ( " avg " , " count " , " count distinct " , " group_concat " , " max " , " min " , " sum " ); $kc = array ( array (), array ( " integer|real|numeric " => " +/- " , " text " => " || " ,));} $cc [ " pgsql " ] = " PostgreSQL " ; if ( isset ( $_GET [ " pgsql " ])){ $eg = array ( " PgSQL " , " PDO_PgSQL " ); define ( " DRIVER " , " pgsql " ); if ( extension_loaded ( " pgsql " )){ class
2018-12-15 21:22:00 +00:00
Min_DB { var $extension = " PgSQL " , $_link , $_result , $_string , $_database = true , $server_info , $affected_rows , $error , $timeout ; function
2019-02-03 12:13:26 +00:00
_error ( $vc , $o ){ if ( ini_bool ( " html_errors " )) $o = html_entity_decode ( strip_tags ( $o )); $o = preg_replace ( '~^[^:]*: ~' , '' , $o ); $this -> error = $o ;} function
connect ( $N , $V , $F ){ global $b ; $m = $b -> database (); set_error_handler ( array ( $this , '_error' )); $this -> _string = " host=' " . str_replace ( " : " , " ' port=' " , addcslashes ( $N , " ' \\ " )) . " ' user=' " . addcslashes ( $V , " ' \\ " ) . " ' password=' " . addcslashes ( $F , " ' \\ " ) . " ' " ; $this -> _link =@ pg_connect ( " $this->_string dbname=' " . ( $m != " " ? addcslashes ( $m , " ' \\ " ) : " postgres " ) . " ' " , PGSQL_CONNECT_FORCE_NEW ); if ( ! $this -> _link && $m != " " ){ $this -> _database = false ; $this -> _link =@ pg_connect ( " $this->_string dbname='postgres' " , PGSQL_CONNECT_FORCE_NEW );} restore_error_handler (); if ( $this -> _link ){ $Vi = pg_version ( $this -> _link ); $this -> server_info = $Vi [ " server " ]; pg_set_client_encoding ( $this -> _link , " UTF8 " );} return ( bool ) $this -> _link ;} function
2018-12-15 21:22:00 +00:00
quote ( $P ){ return " ' " . pg_escape_string ( $this -> _link , $P ) . " ' " ;} function
2019-02-03 12:13:26 +00:00
value ( $X , $p ){ return ( $p [ " type " ] == " bytea " ? pg_unescape_bytea ( $X ) : $X );} function
2018-12-15 21:22:00 +00:00
quoteBinary ( $P ){ return " ' " . pg_escape_bytea ( $this -> _link , $P ) . " ' " ;} function
2019-02-03 12:13:26 +00:00
select_db ( $k ){ global $b ; if ( $k == $b -> database ()) return $this -> _database ; $I =@ pg_connect ( " $this->_string dbname=' " . addcslashes ( $k , " ' \\ " ) . " ' " , PGSQL_CONNECT_FORCE_NEW ); if ( $I ) $this -> _link = $I ; return $I ;} function
2018-12-15 21:22:00 +00:00
close (){ $this -> _link =@ pg_connect ( " $this->_string dbname='postgres' " );} function
query ( $G , $Ai = false ){ $H =@ pg_query ( $this -> _link , $G ); $this -> error = " " ; if ( ! $H ){ $this -> error = pg_last_error ( $this -> _link ); $I = false ;} elseif ( ! pg_num_fields ( $H )){ $this -> affected_rows = pg_affected_rows ( $H ); $I = true ;} else $I = new
Min_Result ( $H ); if ( $this -> timeout ){ $this -> timeout = 0 ; $this -> query ( " RESET statement_timeout " );} return $I ;} function
multi_query ( $G ){ return $this -> _result = $this -> query ( $G );} function
store_result (){ return $this -> _result ;} function
next_result (){ return
false ;} function
2019-02-03 12:13:26 +00:00
result ( $G , $p = 0 ){ $H = $this -> query ( $G ); if ( ! $H ||! $H -> num_rows ) return
2018-12-15 21:22:00 +00:00
false ; return
2019-02-03 12:13:26 +00:00
pg_fetch_result ( $H -> _result , 0 , $p );} function
2018-12-15 21:22:00 +00:00
warnings (){ return
h ( pg_last_notice ( $this -> _link ));}} class
Min_Result { var $_result , $_offset = 0 , $num_rows ; function
__construct ( $H ){ $this -> _result = $H ; $this -> num_rows = pg_num_rows ( $H );} function
fetch_assoc (){ return
pg_fetch_assoc ( $this -> _result );} function
fetch_row (){ return
pg_fetch_row ( $this -> _result );} function
fetch_field (){ $e = $this -> _offset ++ ; $I = new
stdClass ; if ( function_exists ( 'pg_field_table' )) $I -> orgtable = pg_field_table ( $this -> _result , $e ); $I -> name = pg_field_name ( $this -> _result , $e ); $I -> orgname = $I -> name ; $I -> type = pg_field_type ( $this -> _result , $e ); $I -> charsetnr = ( $I -> type == " bytea " ? 63 : 0 ); return $I ;} function
__destruct (){ pg_free_result ( $this -> _result );}}} elseif ( extension_loaded ( " pdo_pgsql " )){ class
Min_DB
extends
Min_PDO { var $extension = " PDO_PgSQL " , $timeout ; function
2019-02-03 12:13:26 +00:00
connect ( $N , $V , $F ){ global $b ; $m = $b -> database (); $P = " pgsql:host=' " . str_replace ( " : " , " ' port=' " , addcslashes ( $N , " ' \\ " )) . " ' options='-c client_encoding=utf8' " ; $this -> dsn ( " $P dbname=' " . ( $m != " " ? addcslashes ( $m , " ' \\ " ) : " postgres " ) . " ' " , $V , $F ); return
2018-12-15 21:22:00 +00:00
true ;} function
2019-02-03 12:13:26 +00:00
select_db ( $k ){ global $b ; return ( $b -> database () == $k );} function
quoteBinary ( $Vg ){ return
q ( $Vg );} function
2018-12-15 21:22:00 +00:00
query ( $G , $Ai = false ){ $I = parent :: query ( $G , $Ai ); if ( $this -> timeout ){ $this -> timeout = 0 ; parent :: query ( " RESET statement_timeout " );} return $I ;} function
warnings (){ return '' ;} function
close (){}}} class
Min_Driver
extends
Min_SQL { function
2019-02-03 12:13:26 +00:00
insertUpdate ( $Q , $K , $hg ){ global $g ; foreach ( $K
2018-12-15 21:22:00 +00:00
as $O ){ $Hi = array (); $Z = array (); foreach ( $O
2019-02-03 12:13:26 +00:00
as $z => $X ){ $Hi [] = " $z = $X " ; if ( isset ( $hg [ idf_unescape ( $z )])) $Z [] = " $z = $X " ;} if ( ! (( $Z && queries ( " UPDATE " . table ( $Q ) . " SET " . implode ( " , " , $Hi ) . " WHERE " . implode ( " AND " , $Z )) && $g -> affected_rows ) || queries ( " INSERT INTO " . table ( $Q ) . " ( " . implode ( " , " , array_keys ( $O )) . " ) VALUES ( " . implode ( " , " , $O ) . " ) " ))) return
2018-12-15 21:22:00 +00:00
false ;} return
true ;} function
slowQuery ( $G , $di ){ $this -> _conn -> query ( " SET statement_timeout = " . ( 1000 * $di )); $this -> _conn -> timeout = 1000 * $di ; return $G ;} function
2019-02-03 12:13:26 +00:00
convertSearch ( $v , $X , $p ){ return ( preg_match ( '~char|text' . ( ! preg_match ( '~LIKE~' , $X [ " op " ]) ? '|date|time(stamp)?|boolean|uuid|' . number_type () : '' ) . '~' , $p [ " type " ]) ? $v : " CAST( $v AS text) " );} function
quoteBinary ( $Vg ){ return $this -> _conn -> quoteBinary ( $Vg );} function
2018-12-15 21:22:00 +00:00
warnings (){ return $this -> _conn -> warnings ();} function
2019-02-03 12:13:26 +00:00
tableHelp ( $C ){ $ue = array ( " information_schema " => " infoschema " , " pg_catalog " => " catalog " ,); $A = $ue [ $_GET [ " ns " ]]; if ( $A ) return " $A - " . str_replace ( " _ " , " - " , $C ) . " .html " ;}} function
idf_escape ( $v ){ return '"' . str_replace ( '"' , '""' , $v ) . '"' ;} function
table ( $v ){ return
idf_escape ( $v );} function
2018-12-15 21:22:00 +00:00
connect (){ global $b , $U , $Fh ; $g = new
2019-02-03 12:13:26 +00:00
Min_DB ; $j = $b -> credentials (); if ( $g -> connect ( $j [ 0 ], $j [ 1 ], $j [ 2 ])){ if ( min_version ( 9 , 0 , $g )){ $g -> query ( " SET application_name = 'Adminer' " ); if ( min_version ( 9.2 , 0 , $g )){ $Fh [ 'Strings' ][] = " json " ; $U [ " json " ] = 4294967295 ; if ( min_version ( 9.4 , 0 , $g )){ $Fh [ 'Strings' ][] = " jsonb " ; $U [ " jsonb " ] = 4294967295 ;}}} return $g ;} return $g -> error ;} function
2018-12-15 21:22:00 +00:00
get_databases (){ return
get_vals ( " SELECT datname FROM pg_database WHERE has_database_privilege(datname, 'CONNECT') ORDER BY datname " );} function
2019-02-03 12:13:26 +00:00
limit ( $G , $Z , $_ , $D = 0 , $M = " " ){ return " $G $Z " . ( $_ !== null ? $M . " LIMIT $_ " . ( $D ? " OFFSET $D " : " " ) : " " );} function
2018-12-15 21:22:00 +00:00
limit1 ( $Q , $G , $Z , $M = " \n " ){ return ( preg_match ( '~^INTO~' , $G ) ? limit ( $G , $Z , 1 , 0 , $M ) : " $G " . ( is_view ( table_status1 ( $Q )) ? $Z : " WHERE ctid = (SELECT ctid FROM " . table ( $Q ) . $Z . $M . " LIMIT 1) " ));} function
2019-02-03 12:13:26 +00:00
db_collation ( $m , $ob ){ global $g ; return $g -> result ( " SHOW LC_COLLATE " );} function
2018-12-15 21:22:00 +00:00
engines (){ return
array ();} function
logged_user (){ global $g ; return $g -> result ( " SELECT user " );} function
tables_list (){ $G = " SELECT table_name, table_type FROM information_schema.tables WHERE table_schema = current_schema() " ; if ( support ( 'materializedview' )) $G .= "
UNION ALL
SELECT matviewname , 'MATERIALIZED VIEW'
FROM pg_matviews
WHERE schemaname = current_schema () " ; $G .= "
ORDER BY 1 " ;return
get_key_vals ( $G );} function
2019-02-03 12:13:26 +00:00
count_tables ( $l ){ return
2018-12-15 21:22:00 +00:00
array ();} function
table_status ( $C = " " ){ $I = array (); foreach ( get_rows ( " SELECT c.relname AS \" Name \" , CASE c.relkind WHEN 'r' THEN 'table' WHEN 'm' THEN 'materialized view' ELSE 'view' END AS \" Engine \" , pg_relation_size(c.oid) AS \" Data_length \" , pg_total_relation_size(c.oid) - pg_relation_size(c.oid) AS \" Index_length \" , obj_description(c.oid, 'pg_class') AS \" Comment \" , 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' )
" .( $C != " " ? " AND relname = " .q( $C ): " ORDER BY relname " ))as $J ) $I[$J["Name"] ]= $J ;return( $C != " " ? $I[$C] : $I );}function
is_view ( $R ){ return
in_array ( $R [ " Engine " ], array ( " view " , " materialized view " ));} function
fk_support ( $R ){ return
true ;} function
2019-02-03 12:13:26 +00:00
fields ( $Q ){ $I = array (); $Ca = array ( 'timestamp without time zone' => 'timestamp' , 'timestamp with time zone' => 'timestamptz' ,); $Bd = 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, d.adsrc AS default, a.attnotnull::int, col_description(c.oid, a.attnum) AS comment, $Bd AS identity
2018-12-15 21:22:00 +00:00
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
2019-02-03 12:13:26 +00:00
ORDER BY a . attnum " )as $J ) { preg_match('~([^([]+)( \ ((.*) \ ))?([a-z ]+)?(( \ [[0-9]*])*) $ ~', $J["full_type"] , $B );list(, $T , $re , $J["length"] , $wa , $Fa )= $B ; $J["length"] .= $Fa ; $db = $T . $wa ;if(isset( $Ca[$db] )) { $J [ " type " ] = $Ca [ $db ]; $J [ " full_type " ] = $J [ " type " ] . $re . $Fa ; } else { $J [ " type " ] = $T ; $J [ " full_type " ] = $J [ " type " ] . $re . $wa . $Fa ; } if( $J['identity'] ) $J['default'] ='GENERATED BY DEFAULT AS IDENTITY'; $J["null"] =! $J["attnotnull"] ; $J["auto_increment"] = $J['identity'] ||preg_match('~^nextval \ (~i', $J["default"] ); $J["privileges"] =array( " insert " =>1, " select " =>1, " update " =>1);if(preg_match('~(.+)::[^)]+(.*)~', $J["default"] , $B )) $J["default"] =( $B[1] == " NULL " ?null:(( $B[1] [0]== " ' " ?idf_unescape( $B[1] ): $B[1] ). $B[2] )); $I[$J["field"] ]= $J ;}return $I ;}function
indexes ( $Q , $h = null ){ global $g ; if ( ! is_object ( $h )) $h = $g ; $I = array (); $Oh = $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 = $Oh 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 = $Oh AND ci.oid = i.indexrelid " , $h ) as $J ){ $Fg = $J [ " relname " ]; $I [ $Fg ][ " type " ] = ( $J [ " indispartial " ] ? " INDEX " : ( $J [ " indisprimary " ] ? " PRIMARY " : ( $J [ " indisunique " ] ? " UNIQUE " : " INDEX " ))); $I [ $Fg ][ " columns " ] = array (); foreach ( explode ( " " , $J [ " indkey " ]) as $Ld ) $I [ $Fg ][ " columns " ][] = $f [ $Ld ]; $I [ $Fg ][ " descs " ] = array (); foreach ( explode ( " " , $J [ " indoption " ]) as $Md ) $I [ $Fg ][ " descs " ][] = ( $Md & 1 ? '1' : null ); $I [ $Fg ][ " lengths " ] = array ();} return $I ;} function
foreign_keys ( $Q ){ global $nf ; $I = array (); foreach ( get_rows ( " SELECT conname, condeferrable::int AS deferrable, pg_get_constraintdef(oid) AS definition
2018-12-15 21:22:00 +00:00
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
2019-02-03 12:13:26 +00:00
ORDER BY conkey , conname " )as $J ) { if(preg_match('~FOREIGN KEY \ s* \ ((.+) \ ) \ s*REFERENCES (.+) \ ((.+) \ )(.*) $ ~iA', $J['definition'] , $B )) { $J [ 'source' ] = array_map ( 'trim' , explode ( ',' , $B [ 1 ])); if ( preg_match ( '~^(("([^"]|"")+"|[^"]+)\.)?"?("([^"]|"")+"|[^"]+)$~' , $B [ 2 ], $Ae )){ $J [ 'ns' ] = str_replace ( '""' , '"' , preg_replace ( '~^"(.+)"$~' , '\1' , $Ae [ 2 ])); $J [ 'table' ] = str_replace ( '""' , '"' , preg_replace ( '~^"(.+)"$~' , '\1' , $Ae [ 4 ])); } $J['target'] =array_map('trim',explode(',', $B[3] )); $J['on_delete'] =(preg_match( " ~ ON DELETE ( $nf ) ~ " , $B[4] , $Ae )? $Ae[1] :'NO ACTION'); $J['on_update'] =(preg_match( " ~ ON UPDATE ( $nf ) ~ " , $B[4] , $Ae )? $Ae[1] :'NO ACTION'); $I[$J['conname'] ]= $J ;}}return $I ;}function
2018-12-15 21:22:00 +00:00
view ( $C ){ global $g ; return
array ( " select " => trim ( $g -> result ( " SELECT view_definition
FROM information_schema . views
WHERE table_schema = current_schema () AND table_name = " .q( $C ))));}function
collations (){ return
array ();} function
2019-02-03 12:13:26 +00:00
information_schema ( $m ){ return ( $m == " information_schema " );} function
2018-12-15 21:22:00 +00:00
error (){ global $g ; $I = h ( $g -> error ); if ( preg_match ( '~^(.*\n)?([^\n]*)\n( *)\^(\n.*)?$~s' , $I , $B )) $I = $B [ 1 ] . preg_replace ( '~((?:[^&]|&[^;]*;){' . strlen ( $B [ 3 ]) . '})(.*)~' , '\1<b>\2</b>' , $B [ 2 ]) . $B [ 4 ]; return
nl_br ( $I );} function
2019-02-03 12:13:26 +00:00
create_database ( $m , $d ){ return
queries ( " CREATE DATABASE " . idf_escape ( $m ) . ( $d ? " ENCODING " . idf_escape ( $d ) : " " ));} function
drop_databases ( $l ){ global $g ; $g -> close (); return
apply_queries ( " DROP DATABASE " , $l , 'idf_escape' );} function
2018-12-15 21:22:00 +00:00
rename_database ( $C , $d ){ return
queries ( " ALTER DATABASE " . idf_escape ( DB ) . " RENAME TO " . idf_escape ( $C ));} function
auto_increment (){ return " " ;} function
2019-02-03 12:13:26 +00:00
alter_table ( $Q , $C , $q , $ad , $tb , $sc , $d , $La , $Rf ){ $c = array (); $sg = array (); foreach ( $q
as $p ){ $e = idf_escape ( $p [ 0 ]); $X = $p [ 1 ]; if ( ! $X ) $c [] = " DROP $e " ; else { $Ri = $X [ 5 ]; unset ( $X [ 5 ]); if ( isset ( $X [ 6 ]) && $p [ 0 ] == " " ) $X [ 1 ] = ( $X [ 1 ] == " bigint " ? " big " : " " ) . " serial " ; if ( $p [ 0 ] == " " ) $c [] = ( $Q != " " ? " ADD " : " " ) . implode ( $X ); else { if ( $e != $X [ 0 ]) $sg [] = " ALTER TABLE " . table ( $Q ) . " 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 ( $p [ 0 ] != " " || $Ri != " " ) $sg [] = " COMMENT ON COLUMN " . table ( $Q ) . " . $X[0] IS " . ( $Ri != " " ? substr ( $Ri , 9 ) : " '' " );}} $c = array_merge ( $c , $ad ); if ( $Q == " " ) array_unshift ( $sg , " CREATE TABLE " . table ( $C ) . " ( \n " . implode ( " , \n " , $c ) . " \n ) " ); elseif ( $c ) array_unshift ( $sg , " ALTER TABLE " . table ( $Q ) . " \n " . implode ( " , \n " , $c )); if ( $Q != " " && $Q != $C ) $sg [] = " ALTER TABLE " . table ( $Q ) . " RENAME TO " . table ( $C ); if ( $Q != " " || $tb != " " ) $sg [] = " COMMENT ON TABLE " . table ( $C ) . " IS " . q ( $tb ); if ( $La != " " ){} foreach ( $sg
2018-12-15 21:22:00 +00:00
as $G ){ if ( ! queries ( $G )) return
false ;} return
true ;} function
2019-02-03 12:13:26 +00:00
alter_indexes ( $Q , $c ){ $i = array (); $dc = array (); $sg = 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 " ) $dc [] = idf_escape ( $X [ 1 ]); else $sg [] = " CREATE INDEX " . idf_escape ( $X [ 1 ] != " " ? $X [ 1 ] : uniqid ( $Q . " _ " )) . " ON " . table ( $Q ) . " ( " . implode ( " , " , $X [ 2 ]) . " ) " ;} if ( $i ) array_unshift ( $sg , " ALTER TABLE " . table ( $Q ) . implode ( " , " , $i )); if ( $dc ) array_unshift ( $sg , " DROP INDEX " . implode ( " , " , $dc )); foreach ( $sg
2018-12-15 21:22:00 +00:00
as $G ){ if ( ! queries ( $G )) return
false ;} return
true ;} function
truncate_tables ( $S ){ return
queries ( " TRUNCATE " . implode ( " , " , array_map ( 'table' , $S ))); return
true ;} function
drop_views ( $Xi ){ return
drop_tables ( $Xi );} function
drop_tables ( $S ){ foreach ( $S
as $Q ){ $Ch = table_status ( $Q ); if ( ! queries ( " DROP " . strtoupper ( $Ch [ " Engine " ]) . " " . table ( $Q ))) return
false ;} return
true ;} function
move_tables ( $S , $Xi , $Vh ){ foreach ( array_merge ( $S , $Xi ) as $Q ){ $Ch = table_status ( $Q ); if ( ! queries ( " ALTER " . strtoupper ( $Ch [ " Engine " ]) . " " . table ( $Q ) . " SET SCHEMA " . idf_escape ( $Vh ))) return
false ;} return
true ;} function
trigger ( $C , $Q = null ){ if ( $C == " " ) return
array ( " Statement " => " EXECUTE PROCEDURE () " ); if ( $Q === null ) $Q = $_GET [ 'trigger' ]; $K = 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 ( $C )); return
reset ( $K );} function
triggers ( $Q ){ $I = array (); foreach ( get_rows ( " SELECT * FROM information_schema.triggers WHERE event_object_table = " . q ( $Q )) as $J ) $I [ $J [ " trigger_name " ]] = array ( $J [ " action_timing " ], $J [ " event_manipulation " ]); return $I ;} function
trigger_options (){ return
array ( " Timing " => array ( " BEFORE " , " AFTER " ), " Event " => array ( " INSERT " , " UPDATE " , " DELETE " ), " Type " => array ( " FOR EACH ROW " , " FOR EACH STATEMENT " ),);} function
routine ( $C , $T ){ $K = get_rows ( ' SELECT routine_definition AS definition , LOWER ( external_language ) AS language , *
FROM information_schema . routines
WHERE routine_schema = current_schema () AND specific_name = '.q($C));$I=$K[0];$I["returns"]=array("type"=>$I["type_udt_name"]);$I["fields"]=get_rows(' SELECT parameter_name AS field , data_type AS type , character_maximum_length AS length , parameter_mode AS inout
FROM information_schema . parameters
WHERE specific_schema = current_schema () AND specific_name = '.q($C).'
ORDER BY ordinal_position ' ); return $I ;} function
routines (){ return
get_rows ( ' SELECT specific_name AS " SPECIFIC_NAME " , routine_type AS " ROUTINE_TYPE " , routine_name AS " ROUTINE_NAME " , type_udt_name AS " DTD_IDENTIFIER "
FROM information_schema . routines
WHERE routine_schema = current_schema ()
ORDER BY SPECIFIC_NAME ' );} function
routine_languages (){ return
get_vals ( " SELECT LOWER(lanname) FROM pg_catalog.pg_language " );} function
2019-02-03 12:13:26 +00:00
routine_id ( $C , $J ){ $I = array (); foreach ( $J [ " fields " ] as $p ) $I [] = $p [ " type " ]; return
2018-12-15 21:22:00 +00:00
idf_escape ( $C ) . " ( " . implode ( " , " , $I ) . " ) " ;} function
last_id (){ return
0 ;} function
explain ( $g , $G ){ return $g -> query ( " EXPLAIN $G " );} function
2019-02-03 12:13:26 +00:00
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 ) : " " )), $Eg )) return $Eg [ 1 ]; return
2018-12-15 21:22:00 +00:00
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
2019-02-03 12:13:26 +00:00
set_schema ( $Xg ){ global $g , $U , $Fh ; $I = $g -> query ( " SET search_path TO " . idf_escape ( $Xg )); foreach ( types () as $T ){ if ( ! isset ( $U [ $T ])){ $U [ $T ] = 0 ; $Fh [ 'User types' ][] = $T ;}} return $I ;} function
create_sql ( $Q , $La , $Gh ){ global $g ; $I = '' ; $Ng = array (); $hh = array (); $Ch = table_status ( $Q ); $q = fields ( $Q ); $x = indexes ( $Q ); ksort ( $x ); $Xc = foreign_keys ( $Q ); ksort ( $Xc ); if ( ! $Ch || empty ( $q )) return
false ; $I = " CREATE TABLE " . idf_escape ( $Ch [ 'nspname' ]) . " . " . idf_escape ( $Ch [ 'Name' ]) . " ( \n " ; foreach ( $q
as $Pc => $p ){ $Of = idf_escape ( $p [ 'field' ]) . ' ' . $p [ 'full_type' ] . default_value ( $p ) . ( $p [ 'attnotnull' ] ? " NOT NULL " : " " ); $Ng [] = $Of ; if ( preg_match ( '~nextval\(\'([^\']+)\'\)~' , $p [ 'default' ], $Be )){ $gh = $Be [ 1 ]; $vh = reset ( get_rows ( min_version ( 10 ) ? " SELECT *, cache_size AS cache_value FROM pg_sequences WHERE schemaname = current_schema() AND sequencename = " . q ( $gh ) : " SELECT * FROM $gh " )); $hh [] = ( $Gh == " DROP+CREATE " ? " DROP SEQUENCE IF EXISTS $gh ; \n " : " " ) . " CREATE SEQUENCE $gh INCREMENT $vh[increment_by] MINVALUE $vh[min_value] MAXVALUE $vh[max_value] START " . ( $La ? $vh [ 'last_value' ] : 1 ) . " CACHE $vh[cache_value] ; " ;}} if ( ! empty ( $hh )) $I = implode ( " \n \n " , $hh ) . " \n \n $I " ; foreach ( $x
as $Gd => $w ){ switch ( $w [ 'type' ]){ case 'UNIQUE' : $Ng [] = " CONSTRAINT " . idf_escape ( $Gd ) . " UNIQUE ( " . implode ( ', ' , array_map ( 'idf_escape' , $w [ 'columns' ])) . " ) " ; break ; case 'PRIMARY' : $Ng [] = " CONSTRAINT " . idf_escape ( $Gd ) . " PRIMARY KEY ( " . implode ( ', ' , array_map ( 'idf_escape' , $w [ 'columns' ])) . " ) " ; break ;}} foreach ( $Xc
as $Wc => $Vc ) $Ng [] = " CONSTRAINT " . idf_escape ( $Wc ) . " $Vc[definition] " . ( $Vc [ 'deferrable' ] ? 'DEFERRABLE' : 'NOT DEFERRABLE' ); $I .= implode ( " , \n " , $Ng ) . " \n ) WITH (oids = " . ( $Ch [ 'Oid' ] ? 'true' : 'false' ) . " ); " ; foreach ( $x
as $Gd => $w ){ if ( $w [ 'type' ] == 'INDEX' ){ $f = array (); foreach ( $w [ 'columns' ] as $z => $X ) $f [] = idf_escape ( $X ) . ( $w [ 'descs' ][ $z ] ? " DESC " : " " ); $I .= " \n \n CREATE INDEX " . idf_escape ( $Gd ) . " ON " . idf_escape ( $Ch [ 'nspname' ]) . " . " . idf_escape ( $Ch [ 'Name' ]) . " USING btree ( " . implode ( ', ' , $f ) . " ); " ;}} if ( $Ch [ 'Comment' ]) $I .= " \n \n COMMENT ON TABLE " . idf_escape ( $Ch [ 'nspname' ]) . " . " . idf_escape ( $Ch [ 'Name' ]) . " IS " . q ( $Ch [ 'Comment' ]) . " ; " ; foreach ( $q
as $Pc => $p ){ if ( $p [ 'comment' ]) $I .= " \n \n COMMENT ON COLUMN " . idf_escape ( $Ch [ 'nspname' ]) . " . " . idf_escape ( $Ch [ 'Name' ]) . " . " . idf_escape ( $Pc ) . " IS " . q ( $p [ 'comment' ]) . " ; " ;} return
2018-12-15 21:22:00 +00:00
rtrim ( $I , ';' );} function
truncate_sql ( $Q ){ return " TRUNCATE " . table ( $Q );} function
trigger_sql ( $Q ){ $Ch = table_status ( $Q ); $I = " " ; foreach ( triggers ( $Q ) as $ui => $ti ){ $vi = trigger ( $ui , $Ch [ 'Name' ]); $I .= " \n CREATE TRIGGER " . idf_escape ( $vi [ 'Trigger' ]) . " $vi[Timing] $vi[Events] ON " . idf_escape ( $Ch [ " nspname " ]) . " . " . idf_escape ( $Ch [ 'Name' ]) . " $vi[Type] $vi[Statement] ;; \n " ;} return $I ;} function
2019-02-03 12:13:26 +00:00
use_sql ( $k ){ return " \ connect " . idf_escape ( $k );} function
2018-12-15 21:22:00 +00:00
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
2019-02-03 12:13:26 +00:00
convert_field ( $p ){} function
unconvert_field ( $p , $I ){ return $I ;} function
support ( $Nc ){ 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)$~' , $Nc );} function
2018-12-15 21:22:00 +00:00
kill_process ( $X ){ return
queries ( " SELECT pg_terminate_backend( " . number ( $X ) . " ) " );} function
connection_id (){ return " SELECT pg_backend_pid() " ;} function
2019-02-03 12:13:26 +00:00
max_connections (){ global $g ; return $g -> result ( " SHOW max_connections " );} $y = " pgsql " ; $U = array (); $Fh = array (); foreach ( array ( 'Numbers' => array ( " smallint " => 5 , " integer " => 10 , " bigint " => 19 , " boolean " => 1 , " numeric " => 0 , " real " => 7 , " double precision " => 16 , " money " => 20 ), 'Date and time' => array ( " date " => 13 , " time " => 17 , " timestamp " => 20 , " timestamptz " => 21 , " interval " => 0 ), 'Strings' => array ( " character " => 0 , " character varying " => 0 , " text " => 0 , " tsquery " => 0 , " tsvector " => 0 , " uuid " => 0 , " xml " => 0 ), 'Binary' => array ( " bit " => 0 , " bit varying " => 0 , " bytea " => 0 ), 'Network' => array ( " cidr " => 43 , " inet " => 43 , " macaddr " => 17 , " txid_snapshot " => 0 ), 'Geometry' => array ( " box " => 0 , " circle " => 0 , " line " => 0 , " lseg " => 0 , " path " => 0 , " point " => 0 , " polygon " => 0 ),) as $z => $X ){ $U += $X ; $Fh [ $z ] = array_keys ( $X );} $Gi = array (); $sf = array ( " = " , " < " , " > " , " <= " , " >= " , " != " , " ~ " , " !~ " , " LIKE " , " LIKE %% " , " ILIKE " , " ILIKE %% " , " IN " , " IS NULL " , " NOT LIKE " , " NOT IN " , " IS NOT NULL " ); $id = array ( " char_length " , " lower " , " round " , " to_hex " , " to_timestamp " , " upper " ); $od = array ( " avg " , " count " , " count distinct " , " max " , " min " , " sum " ); $kc = array ( array ( " char " => " md5 " , " date|time " => " now " ,), array ( number_type () => " +/- " , " date|time " => " + interval/- interval " , " char|text " => " || " ,));} $cc [ " oracle " ] = " Oracle (beta) " ; if ( isset ( $_GET [ " oracle " ])){ $eg = array ( " OCI8 " , " PDO_OCI " ); define ( " DRIVER " , " oracle " ); if ( extension_loaded ( " oci8 " )){ class
2018-12-15 21:22:00 +00:00
Min_DB { var $extension = " oci8 " , $_link , $_result , $server_info , $affected_rows , $errno , $error ; function
2019-02-03 12:13:26 +00:00
_error ( $vc , $o ){ if ( ini_bool ( " html_errors " )) $o = html_entity_decode ( strip_tags ( $o )); $o = preg_replace ( '~^[^:]*: ~' , '' , $o ); $this -> error = $o ;} function
2018-12-15 21:22:00 +00:00
connect ( $N , $V , $F ){ $this -> _link =@ oci_new_connect ( $V , $F , $N , " AL32UTF8 " ); if ( $this -> _link ){ $this -> server_info = oci_server_version ( $this -> _link ); return
2019-02-03 12:13:26 +00:00
true ;} $o = oci_error (); $this -> error = $o [ " message " ]; return
2018-12-15 21:22:00 +00:00
false ;} function
quote ( $P ){ return " ' " . str_replace ( " ' " , " '' " , $P ) . " ' " ;} function
2019-02-03 12:13:26 +00:00
select_db ( $k ){ return
2018-12-15 21:22:00 +00:00
true ;} function
2019-02-03 12:13:26 +00:00
query ( $G , $Ai = false ){ $H = oci_parse ( $this -> _link , $G ); $this -> error = " " ; if ( ! $H ){ $o = oci_error ( $this -> _link ); $this -> errno = $o [ " code " ]; $this -> error = $o [ " message " ]; return
2018-12-15 21:22:00 +00:00
false ;} set_error_handler ( array ( $this , '_error' )); $I =@ oci_execute ( $H ); restore_error_handler (); if ( $I ){ if ( oci_num_fields ( $H )) return
new
Min_Result ( $H ); $this -> affected_rows = oci_num_rows ( $H );} return $I ;} function
multi_query ( $G ){ return $this -> _result = $this -> query ( $G );} function
store_result (){ return $this -> _result ;} function
next_result (){ return
false ;} function
2019-02-03 12:13:26 +00:00
result ( $G , $p = 1 ){ $H = $this -> query ( $G ); if ( ! is_object ( $H ) ||! oci_fetch ( $H -> _result )) return
2018-12-15 21:22:00 +00:00
false ; return
2019-02-03 12:13:26 +00:00
oci_result ( $H -> _result , $p );}} class
2018-12-15 21:22:00 +00:00
Min_Result { var $_result , $_offset = 1 , $num_rows ; function
__construct ( $H ){ $this -> _result = $H ;} function
_convert ( $J ){ foreach (( array ) $J
2019-02-03 12:13:26 +00:00
as $z => $X ){ if ( is_a ( $X , 'OCI-Lob' )) $J [ $z ] = $X -> load ();} return $J ;} function
2018-12-15 21:22:00 +00:00
fetch_assoc (){ return $this -> _convert ( oci_fetch_assoc ( $this -> _result ));} function
fetch_row (){ return $this -> _convert ( oci_fetch_row ( $this -> _result ));} function
fetch_field (){ $e = $this -> _offset ++ ; $I = new
stdClass ; $I -> name = oci_field_name ( $this -> _result , $e ); $I -> orgname = $I -> name ; $I -> type = oci_field_type ( $this -> _result , $e ); $I -> charsetnr = ( preg_match ( " ~raw|blob|bfile~ " , $I -> type ) ? 63 : 0 ); return $I ;} function
__destruct (){ oci_free_statement ( $this -> _result );}}} elseif ( extension_loaded ( " pdo_oci " )){ class
Min_DB
extends
Min_PDO { var $extension = " PDO_OCI " ; function
connect ( $N , $V , $F ){ $this -> dsn ( " oci:dbname=// $N ;charset=AL32UTF8 " , $V , $F ); return
true ;} function
2019-02-03 12:13:26 +00:00
select_db ( $k ){ return
2018-12-15 21:22:00 +00:00
true ;}}} class
Min_Driver
extends
Min_SQL { function
begin (){ return
true ;}} function
2019-02-03 12:13:26 +00:00
idf_escape ( $v ){ return '"' . str_replace ( '"' , '""' , $v ) . '"' ;} function
table ( $v ){ return
idf_escape ( $v );} function
2018-12-15 21:22:00 +00:00
connect (){ global $b ; $g = new
2019-02-03 12:13:26 +00:00
Min_DB ; $j = $b -> credentials (); if ( $g -> connect ( $j [ 0 ], $j [ 1 ], $j [ 2 ])) return $g ; return $g -> error ;} function
2018-12-15 21:22:00 +00:00
get_databases (){ return
get_vals ( " SELECT tablespace_name FROM user_tablespaces " );} function
2019-02-03 12:13:26 +00:00
limit ( $G , $Z , $_ , $D = 0 , $M = " " ){ return ( $D ? " * FROM (SELECT t.*, rownum AS rnum FROM (SELECT $G $Z ) t WHERE rownum <= " . ( $_ + $D ) . " ) WHERE rnum > $D " : ( $_ !== null ? " * FROM (SELECT $G $Z ) WHERE rownum <= " . ( $_ + $D ) : " $G $Z " ));} function
2018-12-15 21:22:00 +00:00
limit1 ( $Q , $G , $Z , $M = " \n " ){ return " $G $Z " ;} function
2019-02-03 12:13:26 +00:00
db_collation ( $m , $ob ){ global $g ; return $g -> result ( " SELECT value FROM nls_database_parameters WHERE parameter = 'NLS_CHARACTERSET' " );} function
2018-12-15 21:22:00 +00:00
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
2019-02-03 12:13:26 +00:00
count_tables ( $l ){ return
2018-12-15 21:22:00 +00:00
array ();} function
2019-02-03 12:13:26 +00:00
table_status ( $C = " " ){ $I = array (); $Zg = q ( $C ); 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 ) . ( $C != " " ? " AND table_name = $Zg " : " " ) . "
UNION SELECT view_name , 'view' , 0 , 0 FROM user_views " .( $C != " " ? " WHERE view_name = $Zg " : " " ). "
2018-12-15 21:22:00 +00:00
ORDER BY 1 " )as $J ) { if( $C != " " )return $J ; $I[$J["Name"] ]= $J ;}return $I ;}function
is_view ( $R ){ return $R [ " Engine " ] == " view " ;} function
fk_support ( $R ){ return
true ;} function
2019-02-03 12:13:26 +00:00
fields ( $Q ){ $I = array (); foreach ( get_rows ( " SELECT * FROM all_tab_columns WHERE table_name = " . q ( $Q ) . " ORDER BY column_id " ) as $J ){ $T = $J [ " DATA_TYPE " ]; $re = " $J[DATA_PRECISION] , $J[DATA_SCALE] " ; if ( $re == " , " ) $re = $J [ " DATA_LENGTH " ]; $I [ $J [ " COLUMN_NAME " ]] = array ( " field " => $J [ " COLUMN_NAME " ], " full_type " => $T . ( $re ? " ( $re ) " : " " ), " type " => strtolower ( $T ), " length " => $re , " default " => $J [ " DATA_DEFAULT " ], " null " => ( $J [ " NULLABLE " ] == " Y " ), " privileges " => array ( " insert " => 1 , " select " => 1 , " update " => 1 ),);} return $I ;} function
2018-12-15 21:22:00 +00:00
indexes ( $Q , $h = null ){ $I = 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 ). "
2019-02-03 12:13:26 +00:00
ORDER BY uc . constraint_type , uic . column_position " , $h )as $J ) { $Gd = $J [ " INDEX_NAME " ]; $I [ $Gd ][ " type " ] = ( $J [ " CONSTRAINT_TYPE " ] == " P " ? " PRIMARY " : ( $J [ " CONSTRAINT_TYPE " ] == " U " ? " UNIQUE " : " INDEX " )); $I [ $Gd ][ " columns " ][] = $J [ " COLUMN_NAME " ]; $I [ $Gd ][ " lengths " ][] = ( $J [ " CHAR_LENGTH " ] && $J [ " CHAR_LENGTH " ] != $J [ " COLUMN_LENGTH " ] ? $J [ " CHAR_LENGTH " ] : null ); $I [ $Gd ][ " descs " ][] = ( $J [ " DESCEND " ] ? '1' : null ); } return $I ;}function
2018-12-15 21:22:00 +00:00
view ( $C ){ $K = get_rows ( 'SELECT text "select" FROM user_views WHERE view_name = ' . q ( $C )); return
reset ( $K );} function
collations (){ return
array ();} function
2019-02-03 12:13:26 +00:00
information_schema ( $m ){ return
2018-12-15 21:22:00 +00:00
false ;} function
error (){ global $g ; return
h ( $g -> error );} function
explain ( $g , $G ){ $g -> query ( " EXPLAIN PLAN FOR $G " ); return $g -> query ( " SELECT * FROM plan_table " );} function
found_rows ( $R , $Z ){} function
2019-02-03 12:13:26 +00:00
alter_table ( $Q , $C , $q , $ad , $tb , $sc , $d , $La , $Rf ){ $c = $dc = array (); foreach ( $q
as $p ){ $X = $p [ 1 ]; if ( $X && $p [ 0 ] != " " && idf_escape ( $p [ 0 ]) != $X [ 0 ]) queries ( " ALTER TABLE " . table ( $Q ) . " RENAME COLUMN " . idf_escape ( $p [ 0 ]) . " TO $X[0] " ); if ( $X ) $c [] = ( $Q != " " ? ( $p [ 0 ] != " " ? " MODIFY ( " : " ADD ( " ) : " " ) . implode ( $X ) . ( $Q != " " ? " ) " : " " ); else $dc [] = idf_escape ( $p [ 0 ]);} if ( $Q == " " ) return
queries ( " CREATE TABLE " . table ( $C ) . " ( \n " . implode ( " , \n " , $c ) . " \n ) " ); return ( ! $c || queries ( " ALTER TABLE " . table ( $Q ) . " \n " . implode ( " \n " , $c ))) && ( ! $dc || queries ( " ALTER TABLE " . table ( $Q ) . " DROP ( " . implode ( " , " , $dc ) . " ) " )) && ( $Q == $C || queries ( " ALTER TABLE " . table ( $Q ) . " RENAME TO " . table ( $C )));} function
2018-12-15 21:22:00 +00:00
foreign_keys ( $Q ){ $I = array (); $G = " SELECT c_list.CONSTRAINT_NAME as NAME,
c_src . COLUMN_NAME as SRC_COLUMN ,
c_dest . OWNER as DEST_DB ,
c_dest . TABLE_NAME as DEST_TABLE ,
c_dest . COLUMN_NAME as DEST_COLUMN ,
c_list . DELETE_RULE as ON_DELETE
FROM ALL_CONSTRAINTS c_list , ALL_CONS_COLUMNS c_src , ALL_CONS_COLUMNS c_dest
WHERE c_list . CONSTRAINT_NAME = c_src . CONSTRAINT_NAME
AND c_list . R_CONSTRAINT_NAME = c_dest . CONSTRAINT_NAME
AND c_list . CONSTRAINT_TYPE = 'R'
AND c_src . TABLE_NAME = " .q( $Q );foreach(get_rows( $G )as $J ) $I[$J['NAME'] ]=array( " db " => $J['DEST_DB'] , " table " => $J['DEST_TABLE'] , " source " =>array( $J['SRC_COLUMN'] ), " target " =>array( $J['DEST_COLUMN'] ), " on_delete " => $J['ON_DELETE'] , " on_update " =>null,);return $I ;}function
truncate_tables ( $S ){ return
apply_queries ( " TRUNCATE TABLE " , $S );} function
drop_views ( $Xi ){ return
apply_queries ( " DROP VIEW " , $Xi );} 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
2019-02-03 12:13:26 +00:00
set_schema ( $Yg ){ global $g ; return $g -> query ( " ALTER SESSION SET CURRENT_SCHEMA = " . idf_escape ( $Yg ));} function
2018-12-15 21:22:00 +00:00
show_variables (){ return
get_key_vals ( 'SELECT name, display_value FROM v$parameter' );} function
process_list (){ return
get_rows ( ' SELECT sess . process AS " process " , sess . username AS " user " , sess . schemaname AS " schema " , sess . status AS " status " , sess . wait_class AS " wait_class " , sess . seconds_in_wait AS " seconds_in_wait " , sql . sql_text AS " sql_text " , sess . machine AS " machine " , sess . port AS " port "
FROM v $session sess LEFT OUTER JOIN v $sql sql
ON sql . sql_id = sess . sql_id
WHERE sess . type = \ ' USER\ '
ORDER BY PROCESS
' );} function
show_status (){ $K = get_rows ( 'SELECT * FROM v$instance' ); return
reset ( $K );} function
2019-02-03 12:13:26 +00:00
convert_field ( $p ){} function
unconvert_field ( $p , $I ){ return $I ;} function
support ( $Nc ){ return
preg_match ( '~^(columns|database|drop_col|indexes|descidx|processlist|scheme|sql|status|table|variables|view|view_trigger)$~' , $Nc );} $y = " oracle " ; $U = array (); $Fh = array (); foreach ( array ( 'Numbers' => array ( " number " => 38 , " binary_float " => 12 , " binary_double " => 21 ), 'Date and time' => array ( " date " => 10 , " timestamp " => 29 , " interval year " => 12 , " interval day " => 28 ), 'Strings' => array ( " char " => 2000 , " varchar2 " => 4000 , " nchar " => 2000 , " nvarchar2 " => 4000 , " clob " => 4294967295 , " nclob " => 4294967295 ), 'Binary' => array ( " raw " => 2000 , " long raw " => 2147483648 , " blob " => 4294967295 , " bfile " => 4294967296 ),) as $z => $X ){ $U += $X ; $Fh [ $z ] = array_keys ( $X );} $Gi = array (); $sf = array ( " = " , " < " , " > " , " <= " , " >= " , " != " , " LIKE " , " LIKE %% " , " IN " , " IS NULL " , " NOT LIKE " , " NOT REGEXP " , " NOT IN " , " IS NOT NULL " , " SQL " ); $id = array ( " length " , " lower " , " round " , " upper " ); $od = array ( " avg " , " count " , " count distinct " , " max " , " min " , " sum " ); $kc = array ( array ( " date " => " current_date " , " timestamp " => " current_timestamp " ,), array ( " number|float|double " => " +/- " , " date|timestamp " => " + interval/- interval " , " char|clob " => " || " ,));} $cc [ " mssql " ] = " MS SQL (beta) " ; if ( isset ( $_GET [ " mssql " ])){ $eg = array ( " SQLSRV " , " MSSQL " , " PDO_DBLIB " ); define ( " DRIVER " , " mssql " ); if ( extension_loaded ( " sqlsrv " )){ class
2018-12-15 21:22:00 +00:00
Min_DB { var $extension = " sqlsrv " , $_link , $_result , $server_info , $affected_rows , $errno , $error ; function
2019-02-03 12:13:26 +00:00
_get_error (){ $this -> error = " " ; foreach ( sqlsrv_errors () as $o ){ $this -> errno = $o [ " code " ]; $this -> error .= " $o[message] \n " ;} $this -> error = rtrim ( $this -> error );} function
connect ( $N , $V , $F ){ global $b ; $m = $b -> database (); $wb = array ( " UID " => $V , " PWD " => $F , " CharacterSet " => " UTF-8 " ); if ( $m != " " ) $wb [ " Database " ] = $m ; $this -> _link =@ sqlsrv_connect ( preg_replace ( '~:~' , ',' , $N ), $wb ); if ( $this -> _link ){ $Nd = sqlsrv_server_info ( $this -> _link ); $this -> server_info = $Nd [ 'SQLServerVersion' ];} else $this -> _get_error (); return ( bool ) $this -> _link ;} function
2018-12-15 21:22:00 +00:00
quote ( $P ){ return " ' " . str_replace ( " ' " , " '' " , $P ) . " ' " ;} function
2019-02-03 12:13:26 +00:00
select_db ( $k ){ return $this -> query ( " USE " . idf_escape ( $k ));} function
2018-12-15 21:22:00 +00:00
query ( $G , $Ai = false ){ $H = sqlsrv_query ( $this -> _link , $G ); $this -> error = " " ; if ( ! $H ){ $this -> _get_error (); return
false ;} return $this -> store_result ( $H );} function
multi_query ( $G ){ $this -> _result = sqlsrv_query ( $this -> _link , $G ); $this -> error = " " ; if ( ! $this -> _result ){ $this -> _get_error (); return
false ;} return
true ;} function
store_result ( $H = null ){ if ( ! $H ) $H = $this -> _result ; if ( ! $H ) return
false ; if ( sqlsrv_field_metadata ( $H )) return
new
Min_Result ( $H ); $this -> affected_rows = sqlsrv_rows_affected ( $H ); return
true ;} function
next_result (){ return $this -> _result ? sqlsrv_next_result ( $this -> _result ) : null ;} function
2019-02-03 12:13:26 +00:00
result ( $G , $p = 0 ){ $H = $this -> query ( $G ); if ( ! is_object ( $H )) return
false ; $J = $H -> fetch_row (); return $J [ $p ];}} class
2018-12-15 21:22:00 +00:00
Min_Result { var $_result , $_offset = 0 , $_fields , $num_rows ; function
__construct ( $H ){ $this -> _result = $H ;} function
_convert ( $J ){ foreach (( array ) $J
2019-02-03 12:13:26 +00:00
as $z => $X ){ if ( is_a ( $X , 'DateTime' )) $J [ $z ] = $X -> format ( " Y-m-d H:i:s " );} return $J ;} function
2018-12-15 21:22:00 +00:00
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
2019-02-03 12:13:26 +00:00
fetch_field (){ if ( ! $this -> _fields ) $this -> _fields = sqlsrv_field_metadata ( $this -> _result ); $p = $this -> _fields [ $this -> _offset ++ ]; $I = new
stdClass ; $I -> name = $p [ " Name " ]; $I -> orgname = $p [ " Name " ]; $I -> type = ( $p [ " Type " ] == 1 ? 254 : 0 ); return $I ;} function
seek ( $D ){ for ( $t = 0 ; $t < $D ; $t ++ ) sqlsrv_fetch ( $this -> _result );} function
2018-12-15 21:22:00 +00:00
__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 ( $N , $V , $F ){ $this -> _link =@ mssql_connect ( $N , $V , $F ); if ( $this -> _link ){ $H = $this -> query ( " SELECT SERVERPROPERTY('ProductLevel'), SERVERPROPERTY('Edition') " ); if ( $H ){ $J = $H -> fetch_row (); $this -> server_info = $this -> result ( " sp_server_info 2 " , 2 ) . " [ $J[0] ] $J[1] " ;}} else $this -> error = mssql_get_last_message (); return ( bool ) $this -> _link ;} function
quote ( $P ){ return " ' " . str_replace ( " ' " , " '' " , $P ) . " ' " ;} function
2019-02-03 12:13:26 +00:00
select_db ( $k ){ return
mssql_select_db ( $k );} function
2018-12-15 21:22:00 +00:00
query ( $G , $Ai = false ){ $H =@ mssql_query ( $G , $this -> _link ); $this -> error = " " ; if ( ! $H ){ $this -> error = mssql_get_last_message (); return
false ;} if ( $H === true ){ $this -> affected_rows = mssql_rows_affected ( $this -> _link ); return
true ;} return
new
Min_Result ( $H );} function
multi_query ( $G ){ return $this -> _result = $this -> query ( $G );} function
store_result (){ return $this -> _result ;} function
next_result (){ return
mssql_next_result ( $this -> _result -> _result );} function
2019-02-03 12:13:26 +00:00
result ( $G , $p = 0 ){ $H = $this -> query ( $G ); if ( ! is_object ( $H )) return
2018-12-15 21:22:00 +00:00
false ; return
2019-02-03 12:13:26 +00:00
mssql_result ( $H -> _result , 0 , $p );}} class
2018-12-15 21:22:00 +00:00
Min_Result { var $_result , $_offset = 0 , $_fields , $num_rows ; function
__construct ( $H ){ $this -> _result = $H ; $this -> num_rows = mssql_num_rows ( $H );} function
fetch_assoc (){ return
mssql_fetch_assoc ( $this -> _result );} function
fetch_row (){ return
mssql_fetch_row ( $this -> _result );} function
num_rows (){ return
mssql_num_rows ( $this -> _result );} function
fetch_field (){ $I = mssql_fetch_field ( $this -> _result ); $I -> orgtable = $I -> table ; $I -> orgname = $I -> name ; return $I ;} function
seek ( $D ){ mssql_data_seek ( $this -> _result , $D );} function
__destruct (){ mssql_free_result ( $this -> _result );}}} elseif ( extension_loaded ( " pdo_dblib " )){ class
Min_DB
extends
Min_PDO { var $extension = " PDO_DBLIB " ; function
connect ( $N , $V , $F ){ $this -> dsn ( " dblib:charset=utf8;host= " . str_replace ( " : " , " ;unix_socket= " , preg_replace ( '~:(\d)~' , ';port=\1' , $N )), $V , $F ); return
true ;} function
2019-02-03 12:13:26 +00:00
select_db ( $k ){ return $this -> query ( " USE " . idf_escape ( $k ));}}} class
2018-12-15 21:22:00 +00:00
Min_Driver
extends
Min_SQL { function
2019-02-03 12:13:26 +00:00
insertUpdate ( $Q , $K , $hg ){ foreach ( $K
2018-12-15 21:22:00 +00:00
as $O ){ $Hi = array (); $Z = array (); foreach ( $O
2019-02-03 12:13:26 +00:00
as $z => $X ){ $Hi [] = " $z = $X " ; if ( isset ( $hg [ idf_unescape ( $z )])) $Z [] = " $z = $X " ;} if ( ! queries ( " MERGE " . table ( $Q ) . " USING (VALUES( " . implode ( " , " , $O ) . " )) AS source (c " . implode ( " , c " , range ( 1 , count ( $O ))) . " ) ON " . implode ( " AND " , $Z ) . " WHEN MATCHED THEN UPDATE SET " . implode ( " , " , $Hi ) . " WHEN NOT MATCHED THEN INSERT ( " . implode ( " , " , array_keys ( $O )) . " ) VALUES ( " . implode ( " , " , $O ) . " ); " )) return
2018-12-15 21:22:00 +00:00
false ;} return
true ;} function
begin (){ return
queries ( " BEGIN TRANSACTION " );}} function
2019-02-03 12:13:26 +00:00
idf_escape ( $v ){ return " [ " . str_replace ( " ] " , " ]] " , $v ) . " ] " ;} function
table ( $v ){ return ( $_GET [ " ns " ] != " " ? idf_escape ( $_GET [ " ns " ]) . " . " : " " ) . idf_escape ( $v );} function
2018-12-15 21:22:00 +00:00
connect (){ global $b ; $g = new
2019-02-03 12:13:26 +00:00
Min_DB ; $j = $b -> credentials (); if ( $g -> connect ( $j [ 0 ], $j [ 1 ], $j [ 2 ])) return $g ; return $g -> error ;} function
2018-12-15 21:22:00 +00:00
get_databases (){ return
get_vals ( " SELECT name FROM sys.databases WHERE name NOT IN ('master', 'tempdb', 'model', 'msdb') " );} function
2019-02-03 12:13:26 +00:00
limit ( $G , $Z , $_ , $D = 0 , $M = " " ){ return ( $_ !== null ? " TOP ( " . ( $_ + $D ) . " ) " : " " ) . " $G $Z " ;} function
2018-12-15 21:22:00 +00:00
limit1 ( $Q , $G , $Z , $M = " \n " ){ return
limit ( $G , $Z , 1 , 0 , $M );} function
2019-02-03 12:13:26 +00:00
db_collation ( $m , $ob ){ global $g ; return $g -> result ( " SELECT collation_name FROM sys.databases WHERE name = " . q ( $m ));} function
2018-12-15 21:22:00 +00:00
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
2019-02-03 12:13:26 +00:00
count_tables ( $l ){ global $g ; $I = array (); foreach ( $l
as $m ){ $g -> select_db ( $m ); $I [ $m ] = $g -> result ( " SELECT COUNT(*) FROM INFORMATION_SCHEMA.TABLES " );} return $I ;} function
2018-12-15 21:22:00 +00:00
table_status ( $C = " " ){ $I = array (); foreach ( get_rows ( " SELECT name AS Name, type_desc AS Engine FROM sys.all_objects WHERE schema_id = SCHEMA_ID( " . q ( get_schema ()) . " ) AND type IN ('S', 'U', 'V') " . ( $C != " " ? " AND name = " . q ( $C ) : " ORDER BY name " )) as $J ){ if ( $C != " " ) return $J ; $I [ $J [ " Name " ]] = $J ;} return $I ;} function
is_view ( $R ){ return $R [ " Engine " ] == " VIEW " ;} function
fk_support ( $R ){ return
true ;} function
fields ( $Q ){ $I = array (); 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
2019-02-03 12:13:26 +00:00
WHERE o . schema_id = SCHEMA_ID ( " .q(get_schema()). " ) AND o . type IN ( 'S' , 'U' , 'V' ) AND o . name = " .q( $Q ))as $J ) { $T = $J [ " type " ]; $re = ( preg_match ( " ~char|binary~ " , $T ) ? $J [ " max_length " ] : ( $T == " decimal " ? " $J[precision] , $J[scale] " : " " )); $I [ $J [ " name " ]] = array ( " field " => $J [ " name " ], " full_type " => $T . ( $re ? " ( $re ) " : " " ), " type " => $T , " length " => $re , " default " => $J [ " default " ], " null " => $J [ " is_nullable " ], " auto_increment " => $J [ " is_identity " ], " collation " => $J [ " collation_name " ], " privileges " => array ( " insert " => 1 , " select " => 1 , " update " => 1 ), " primary " => $J [ " is_identity " ],); } return $I ;}function
2018-12-15 21:22:00 +00:00
indexes ( $Q , $h = null ){ $I = array (); foreach ( get_rows ( " SELECT i.name, key_ordinal, is_unique, is_primary_key, c.name AS column_name, is_descending_key
FROM sys . indexes i
INNER JOIN sys . index_columns ic ON i . object_id = ic . object_id AND i . index_id = ic . index_id
INNER JOIN sys . columns c ON ic . object_id = c . object_id AND ic . column_id = c . column_id
WHERE OBJECT_NAME ( i . object_id ) = " .q( $Q ), $h )as $J ) { $C = $J [ " name " ]; $I [ $C ][ " type " ] = ( $J [ " is_primary_key " ] ? " PRIMARY " : ( $J [ " is_unique " ] ? " UNIQUE " : " INDEX " )); $I [ $C ][ " lengths " ] = array (); $I [ $C ][ " columns " ][ $J [ " key_ordinal " ]] = $J [ " column_name " ]; $I [ $C ][ " descs " ][ $J [ " key_ordinal " ]] = ( $J [ " is_descending_key " ] ? '1' : null ); } return $I ;}function
view ( $C ){ 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 ( $C ))));} function
collations (){ $I = array (); foreach ( get_vals ( " SELECT name FROM fn_helpcollations() " ) as $d ) $I [ preg_replace ( '~_.*~' , '' , $d )][] = $d ; return $I ;} function
2019-02-03 12:13:26 +00:00
information_schema ( $m ){ return
2018-12-15 21:22:00 +00:00
false ;} function
error (){ global $g ; return
nl_br ( h ( preg_replace ( '~^(\[[^]]*])+~m' , '' , $g -> error )));} function
2019-02-03 12:13:26 +00:00
create_database ( $m , $d ){ return
queries ( " CREATE DATABASE " . idf_escape ( $m ) . ( preg_match ( '~^[a-z0-9_]+$~i' , $d ) ? " COLLATE $d " : " " ));} function
drop_databases ( $l ){ return
queries ( " DROP DATABASE " . implode ( " , " , array_map ( 'idf_escape' , $l )));} function
2018-12-15 21:22:00 +00:00
rename_database ( $C , $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 ( $C )); return
true ;} function
auto_increment (){ return " IDENTITY " . ( $_POST [ " Auto_increment " ] != " " ? " ( " . number ( $_POST [ " Auto_increment " ]) . " ,1) " : " " ) . " PRIMARY KEY " ;} function
2019-02-03 12:13:26 +00:00
alter_table ( $Q , $C , $q , $ad , $tb , $sc , $d , $La , $Rf ){ $c = array (); foreach ( $q
as $p ){ $e = idf_escape ( $p [ 0 ]); $X = $p [ 1 ]; if ( ! $X ) $c [ " DROP " ][] = " COLUMN $e " ; else { $X [ 1 ] = preg_replace ( " ~( COLLATE )'( \\ w+)'~ " , '\1\2' , $X [ 1 ]); if ( $p [ 0 ] == " " ) $c [ " ADD " ][] = " \n " . implode ( " " , $X ) . ( $Q == " " ? substr ( $ad [ $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 ( $C ) . " ( " . implode ( " , " ,( array ) $c [ " ADD " ]) . " \n ) " ); if ( $Q != $C ) queries ( " EXEC sp_rename " . q ( table ( $Q )) . " , " . q ( $C )); if ( $ad ) $c [ " " ] = $ad ; foreach ( $c
as $z => $X ){ if ( ! queries ( " ALTER TABLE " . idf_escape ( $C ) . " $z " . implode ( " , " , $X ))) return
2018-12-15 21:22:00 +00:00
false ;} return
true ;} function
2019-02-03 12:13:26 +00:00
alter_indexes ( $Q , $c ){ $w = array (); $dc = array (); foreach ( $c
as $X ){ if ( $X [ 2 ] == " DROP " ){ if ( $X [ 0 ] == " PRIMARY " ) $dc [] = idf_escape ( $X [ 1 ]); else $w [] = idf_escape ( $X [ 1 ]) . " ON " . table ( $Q );} elseif ( ! queries (( $X [ 0 ] != " PRIMARY " ? " CREATE $X[0] " . ( $X [ 0 ] != " INDEX " ? " INDEX " : " " ) . idf_escape ( $X [ 1 ] != " " ? $X [ 1 ] : uniqid ( $Q . " _ " )) . " ON " . table ( $Q ) : " ALTER TABLE " . table ( $Q ) . " ADD PRIMARY KEY " ) . " ( " . implode ( " , " , $X [ 2 ]) . " ) " )) return
false ;} return ( ! $w || queries ( " DROP INDEX " . implode ( " , " , $w ))) && ( ! $dc || queries ( " ALTER TABLE " . table ( $Q ) . " DROP " . implode ( " , " , $dc )));} function
2018-12-15 21:22:00 +00:00
last_id (){ global $g ; return $g -> result ( " SELECT SCOPE_IDENTITY() " );} function
explain ( $g , $G ){ $g -> query ( " SET SHOWPLAN_ALL ON " ); $I = $g -> query ( $G ); $g -> query ( " SET SHOWPLAN_ALL OFF " ); return $I ;} function
found_rows ( $R , $Z ){} function
2019-02-03 12:13:26 +00:00
foreign_keys ( $Q ){ $I = array (); foreach ( get_rows ( " EXEC sp_fkeys @fktable_name = " . q ( $Q )) as $J ){ $r =& $I [ $J [ " FK_NAME " ]]; $r [ " table " ] = $J [ " PKTABLE_NAME " ]; $r [ " source " ][] = $J [ " FKCOLUMN_NAME " ]; $r [ " target " ][] = $J [ " PKCOLUMN_NAME " ];} return $I ;} function
2018-12-15 21:22:00 +00:00
truncate_tables ( $S ){ return
apply_queries ( " TRUNCATE TABLE " , $S );} function
drop_views ( $Xi ){ return
queries ( " DROP VIEW " . implode ( " , " , array_map ( 'table' , $Xi )));} function
drop_tables ( $S ){ return
queries ( " DROP TABLE " . implode ( " , " , array_map ( 'table' , $S )));} function
move_tables ( $S , $Xi , $Vh ){ return
apply_queries ( " ALTER SCHEMA " . idf_escape ( $Vh ) . " TRANSFER " , array_merge ( $S , $Xi ));} function
trigger ( $C ){ if ( $C == " " ) return
array (); $K = get_rows ( " SELECT s.name [Trigger],
CASE WHEN OBJECTPROPERTY ( s . id , 'ExecIsInsertTrigger' ) = 1 THEN 'INSERT' WHEN OBJECTPROPERTY ( s . id , 'ExecIsUpdateTrigger' ) = 1 THEN 'UPDATE' WHEN OBJECTPROPERTY ( s . id , 'ExecIsDeleteTrigger' ) = 1 THEN 'DELETE' END [ Event ],
CASE WHEN OBJECTPROPERTY ( s . id , 'ExecIsInsteadOfTrigger' ) = 1 THEN 'INSTEAD OF' ELSE 'AFTER' END [ Timing ],
c . text
FROM sysobjects s
JOIN syscomments c ON s . id = c . id
WHERE s . xtype = 'TR' AND s . name = " .q( $C )); $I =reset( $K );if( $I ) $I["Statement"] =preg_replace('~^.+ \ s+AS \ s+~isU','', $I["text"] );return $I ;}function
triggers ( $Q ){ $I = array (); foreach ( get_rows ( " SELECT sys1.name,
CASE WHEN OBJECTPROPERTY ( sys1 . id , 'ExecIsInsertTrigger' ) = 1 THEN 'INSERT' WHEN OBJECTPROPERTY ( sys1 . id , 'ExecIsUpdateTrigger' ) = 1 THEN 'UPDATE' WHEN OBJECTPROPERTY ( sys1 . id , 'ExecIsDeleteTrigger' ) = 1 THEN 'DELETE' END [ Event ],
CASE WHEN OBJECTPROPERTY ( sys1 . id , 'ExecIsInsteadOfTrigger' ) = 1 THEN 'INSTEAD OF' ELSE 'AFTER' END [ Timing ]
FROM sysobjects sys1
JOIN sysobjects sys2 ON sys1 . parent_obj = sys2 . id
WHERE sys1 . xtype = 'TR' AND sys2 . name = " .q( $Q ))as $J ) $I[$J["name"] ]=array( $J["Timing"] , $J["Event"] );return $I ;}function
trigger_options (){ return
array ( " Timing " => array ( " AFTER " , " INSTEAD OF " ), " Event " => array ( " INSERT " , " UPDATE " , " DELETE " ), " Type " => array ( " AS " ),);} function
schemas (){ return
get_vals ( " SELECT name FROM sys.schemas " );} function
get_schema (){ global $g ; if ( $_GET [ " ns " ] != " " ) return $_GET [ " ns " ]; return $g -> result ( " SELECT SCHEMA_NAME() " );} function
2019-02-03 12:13:26 +00:00
set_schema ( $Xg ){ return
2018-12-15 21:22:00 +00:00
true ;} function
2019-02-03 12:13:26 +00:00
use_sql ( $k ){ return " USE " . idf_escape ( $k );} function
2018-12-15 21:22:00 +00:00
show_variables (){ return
array ();} function
show_status (){ return
array ();} function
2019-02-03 12:13:26 +00:00
convert_field ( $p ){} function
unconvert_field ( $p , $I ){ return $I ;} function
support ( $Nc ){ return
preg_match ( '~^(columns|database|drop_col|indexes|descidx|scheme|sql|table|trigger|view|view_trigger)$~' , $Nc );} $y = " mssql " ; $U = array (); $Fh = array (); foreach ( array ( 'Numbers' => array ( " tinyint " => 3 , " smallint " => 5 , " int " => 10 , " bigint " => 20 , " bit " => 1 , " decimal " => 0 , " real " => 12 , " float " => 53 , " smallmoney " => 10 , " money " => 20 ), 'Date and time' => array ( " date " => 10 , " smalldatetime " => 19 , " datetime " => 19 , " datetime2 " => 19 , " time " => 8 , " datetimeoffset " => 10 ), 'Strings' => array ( " char " => 8000 , " varchar " => 8000 , " text " => 2147483647 , " nchar " => 4000 , " nvarchar " => 4000 , " ntext " => 1073741823 ), 'Binary' => array ( " binary " => 8000 , " varbinary " => 8000 , " image " => 2147483647 ),) as $z => $X ){ $U += $X ; $Fh [ $z ] = array_keys ( $X );} $Gi = array (); $sf = array ( " = " , " < " , " > " , " <= " , " >= " , " != " , " LIKE " , " LIKE %% " , " IN " , " IS NULL " , " NOT LIKE " , " NOT IN " , " IS NOT NULL " ); $id = array ( " len " , " lower " , " round " , " upper " ); $od = array ( " avg " , " count " , " count distinct " , " max " , " min " , " sum " ); $kc = array ( array ( " date|time " => " getdate " ,), array ( " int|decimal|real|float|money|datetime " => " +/- " , " char|text " => " + " ,));} $cc [ 'firebird' ] = 'Firebird (alpha)' ; if ( isset ( $_GET [ " firebird " ])){ $eg = array ( " interbase " ); define ( " DRIVER " , " firebird " ); if ( extension_loaded ( " interbase " )){ class
2018-12-15 21:22:00 +00:00
Min_DB { var $extension = " Firebird " , $server_info , $affected_rows , $errno , $error , $_link , $_result ; function
connect ( $N , $V , $F ){ $this -> _link = ibase_connect ( $N , $V , $F ); if ( $this -> _link ){ $Ki = explode ( ':' , $N ); $this -> service_link = ibase_service_attach ( $Ki [ 0 ], $V , $F ); $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
2019-02-03 12:13:26 +00:00
select_db ( $k ){ return ( $k == " domain " );} function
2018-12-15 21:22:00 +00:00
query ( $G , $Ai = false ){ $H = ibase_query ( $G , $this -> _link ); if ( ! $H ){ $this -> errno = ibase_errcode (); $this -> error = ibase_errmsg (); return
false ;} $this -> error = " " ; if ( $H === true ){ $this -> affected_rows = ibase_affected_rows ( $this -> _link ); return
true ;} return
new
Min_Result ( $H );} function
multi_query ( $G ){ return $this -> _result = $this -> query ( $G );} function
store_result (){ return $this -> _result ;} function
next_result (){ return
false ;} function
2019-02-03 12:13:26 +00:00
result ( $G , $p = 0 ){ $H = $this -> query ( $G ); if ( ! $H ||! $H -> num_rows ) return
false ; $J = $H -> fetch_row (); return $J [ $p ];}} class
2018-12-15 21:22:00 +00:00
Min_Result { var $num_rows , $_result , $_offset = 0 ; function
__construct ( $H ){ $this -> _result = $H ;} function
fetch_assoc (){ return
ibase_fetch_assoc ( $this -> _result );} function
fetch_row (){ return
ibase_fetch_row ( $this -> _result );} function
2019-02-03 12:13:26 +00:00
fetch_field (){ $p = ibase_field_info ( $this -> _result , $this -> _offset ++ ); return ( object ) array ( 'name' => $p [ 'name' ], 'orgname' => $p [ 'name' ], 'type' => $p [ 'type' ], 'charsetnr' => $p [ 'length' ],);} function
2018-12-15 21:22:00 +00:00
__destruct (){ ibase_free_result ( $this -> _result );}}} class
Min_Driver
extends
Min_SQL {} function
2019-02-03 12:13:26 +00:00
idf_escape ( $v ){ return '"' . str_replace ( '"' , '""' , $v ) . '"' ;} function
table ( $v ){ return
idf_escape ( $v );} function
2018-12-15 21:22:00 +00:00
connect (){ global $b ; $g = new
2019-02-03 12:13:26 +00:00
Min_DB ; $j = $b -> credentials (); if ( $g -> connect ( $j [ 0 ], $j [ 1 ], $j [ 2 ])) return $g ; return $g -> error ;} function
get_databases ( $Yc ){ return
2018-12-15 21:22:00 +00:00
array ( " domain " );} function
2019-02-03 12:13:26 +00:00
limit ( $G , $Z , $_ , $D = 0 , $M = " " ){ $I = '' ; $I .= ( $_ !== null ? $M . " FIRST $_ " . ( $D ? " SKIP $D " : " " ) : " " ); $I .= " $G $Z " ; return $I ;} function
2018-12-15 21:22:00 +00:00
limit1 ( $Q , $G , $Z , $M = " \n " ){ return
limit ( $G , $Z , 1 , 0 , $M );} function
2019-02-03 12:13:26 +00:00
db_collation ( $m , $ob ){} function
2018-12-15 21:22:00 +00:00
engines (){ return
array ();} function
2019-02-03 12:13:26 +00:00
logged_user (){ global $b ; $j = $b -> credentials (); return $j [ 1 ];} function
2018-12-15 21:22:00 +00:00
tables_list (){ global $g ; $G = 'SELECT RDB$RELATION_NAME FROM rdb$relations WHERE rdb$system_flag = 0' ; $H = ibase_query ( $g -> _link , $G ); $I = array (); while ( $J = ibase_fetch_assoc ( $H )) $I [ $J [ 'RDB$RELATION_NAME' ]] = 'table' ; ksort ( $I ); return $I ;} function
2019-02-03 12:13:26 +00:00
count_tables ( $l ){ return
2018-12-15 21:22:00 +00:00
array ();} function
2019-02-03 12:13:26 +00:00
table_status ( $C = " " , $Mc = false ){ global $g ; $I = array (); $Jb = tables_list (); foreach ( $Jb
as $w => $X ){ $w = trim ( $w ); $I [ $w ] = array ( 'Name' => $w , 'Engine' => 'standard' ,); if ( $C == $w ) return $I [ $w ];} return $I ;} function
2018-12-15 21:22:00 +00:00
is_view ( $R ){ return
false ;} function
fk_support ( $R ){ return
preg_match ( '~InnoDB|IBMDB2I~i' , $R [ " Engine " ]);} function
fields ( $Q ){ global $g ; $I = array (); $G = ' 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 ';$H=ibase_query($g->_link,$G);while($J=ibase_fetch_assoc($H))$I[trim($J[' FIELD_NAME '])]=array("field"=>trim($J["FIELD_NAME"]),"full_type"=>trim($J["FIELD_TYPE"]),"type"=>trim($J["FIELD_SUB_TYPE"]),"default"=>trim($J[' FIELD_DEFAULT_VALUE ']),"null"=>(trim($J["FIELD_NOT_NULL_CONSTRAINT"])=="YES"),"auto_increment"=>' 0 ' , " collation " => trim ( $J [ " FIELD_COLLATION " ]), " privileges " => array ( " insert " => 1 , " select " => 1 , " update " => 1 ), " comment " => trim ( $J [ " FIELD_DESCRIPTION " ]),); return $I ;} function
indexes ( $Q , $h = null ){ $I = array (); return $I ;} function
foreign_keys ( $Q ){ return
array ();} function
collations (){ return
array ();} function
2019-02-03 12:13:26 +00:00
information_schema ( $m ){ return
2018-12-15 21:22:00 +00:00
false ;} function
error (){ global $g ; return
h ( $g -> error );} function
types (){ return
array ();} function
schemas (){ return
array ();} function
get_schema (){ return " " ;} function
2019-02-03 12:13:26 +00:00
set_schema ( $Xg ){ return
2018-12-15 21:22:00 +00:00
true ;} function
2019-02-03 12:13:26 +00:00
support ( $Nc ){ return
preg_match ( " ~^(columns|sql|status|table) $ ~ " , $Nc );} $y = " firebird " ; $sf = array ( " = " ); $id = array (); $od = array (); $kc = array ();} $cc [ " simpledb " ] = " SimpleDB " ; if ( isset ( $_GET [ " simpledb " ])){ $eg = array ( " SimpleXML + allow_url_fopen " ); define ( " DRIVER " , " simpledb " ); if ( class_exists ( 'SimpleXMLElement' ) && ini_bool ( 'allow_url_fopen' )){ class
2018-12-15 21:22:00 +00:00
Min_DB { var $extension = " SimpleXML " , $server_info = '2009-04-15' , $error , $timeout , $next , $affected_rows , $_result ; function
2019-02-03 12:13:26 +00:00
select_db ( $k ){ return ( $k == " domain " );} function
query ( $G , $Ai = false ){ $Lf = array ( 'SelectExpression' => $G , 'ConsistentRead' => 'true' ); if ( $this -> next ) $Lf [ 'NextToken' ] = $this -> next ; $H = sdb_request_all ( 'Select' , 'Item' , $Lf , $this -> timeout ); $this -> timeout = 0 ; if ( $H === false ) return $H ; if ( preg_match ( '~^\s*SELECT\s+COUNT\(~i' , $G )){ $Jh = 0 ; foreach ( $H
as $Zd ) $Jh += $Zd -> Attribute -> Value ; $H = array (( object ) array ( 'Attribute' => array (( object ) array ( 'Name' => 'Count' , 'Value' => $Jh ,))));} return
2018-12-15 21:22:00 +00:00
new
Min_Result ( $H );} function
multi_query ( $G ){ return $this -> _result = $this -> query ( $G );} function
store_result (){ return $this -> _result ;} function
next_result (){ return
false ;} function
quote ( $P ){ return " ' " . str_replace ( " ' " , " '' " , $P ) . " ' " ;}} class
Min_Result { var $num_rows , $_rows = array (), $_offset = 0 ; function
__construct ( $H ){ foreach ( $H
2019-02-03 12:13:26 +00:00
as $Zd ){ $J = array (); if ( $Zd -> Name != '' ) $J [ 'itemName()' ] = ( string ) $Zd -> Name ; foreach ( $Zd -> Attribute
2018-12-15 21:22:00 +00:00
as $Ia ){ $C = $this -> _processValue ( $Ia -> Name ); $Y = $this -> _processValue ( $Ia -> Value ); if ( isset ( $J [ $C ])){ $J [ $C ] = ( array ) $J [ $C ]; $J [ $C ][] = $Y ;} else $J [ $C ] = $Y ;} $this -> _rows [] = $J ; foreach ( $J
2019-02-03 12:13:26 +00:00
as $z => $X ){ if ( ! isset ( $this -> _rows [ 0 ][ $z ])) $this -> _rows [ 0 ][ $z ] = null ;}} $this -> num_rows = count ( $this -> _rows );} function
_processValue ( $nc ){ return ( is_object ( $nc ) && $nc [ 'encoding' ] == 'base64' ? base64_decode ( $nc ) : ( string ) $nc );} function
fetch_assoc (){ $J = current ( $this -> _rows ); if ( ! $J ) return $J ; $I = array (); foreach ( $this -> _rows [ 0 ] as $z => $X ) $I [ $z ] = $J [ $z ]; next ( $this -> _rows ); return $I ;} function
2018-12-15 21:22:00 +00:00
fetch_row (){ $I = $this -> fetch_assoc (); if ( ! $I ) return $I ; return
array_values ( $I );} function
2019-02-03 12:13:26 +00:00
fetch_field (){ $fe = array_keys ( $this -> _rows [ 0 ]); return ( object ) array ( 'name' => $fe [ $this -> _offset ++ ]);}}} class
2018-12-15 21:22:00 +00:00
Min_Driver
extends
2019-02-03 12:13:26 +00:00
Min_SQL { public $hg = " itemName() " ; function
_chunkRequest ( $Cd , $va , $Lf , $Cc = array ()){ global $g ; foreach ( array_chunk ( $Cd , 25 ) as $hb ){ $Mf = $Lf ; foreach ( $hb
as $t => $u ){ $Mf [ " Item. $t .ItemName " ] = $u ; foreach ( $Cc
as $z => $X ) $Mf [ " Item. $t . $z " ] = $X ;} if ( ! sdb_request ( $va , $Mf )) return
false ;} $g -> affected_rows = count ( $Cd ); return
2018-12-15 21:22:00 +00:00
true ;} function
2019-02-03 12:13:26 +00:00
_extractIds ( $Q , $tg , $_ ){ $I = array (); if ( preg_match_all ( " ~itemName \ ( \ ) = (('[^']*+')+)~ " , $tg , $Be )) $I = array_map ( 'idf_unescape' , $Be [ 1 ]); else { foreach ( sdb_request_all ( 'Select' , 'Item' , array ( 'SelectExpression' => 'SELECT itemName() FROM ' . table ( $Q ) . $tg . ( $_ ? " LIMIT 1 " : " " ))) as $Zd ) $I [] = $Zd -> Name ;} return $I ;} function
select ( $Q , $L , $Z , $ld , $xf = array (), $_ = 1 , $E = 0 , $jg = false ){ global $g ; $g -> next = $_GET [ " next " ]; $I = parent :: select ( $Q , $L , $Z , $ld , $xf , $_ , $E , $jg ); $g -> next = 0 ; return $I ;} function
delete ( $Q , $tg , $_ = 0 ){ return $this -> _chunkRequest ( $this -> _extractIds ( $Q , $tg , $_ ), 'BatchDeleteAttributes' , array ( 'DomainName' => $Q ));} function
update ( $Q , $O , $tg , $_ = 0 , $M = " \n " ){ $Sb = array (); $Rd = array (); $t = 0 ; $Cd = $this -> _extractIds ( $Q , $tg , $_ ); $u = idf_unescape ( $O [ " `itemName()` " ]); unset ( $O [ " `itemName()` " ]); foreach ( $O
as $z => $X ){ $z = idf_unescape ( $z ); if ( $X == " NULL " || ( $u != " " && array ( $u ) != $Cd )) $Sb [ " Attribute. " . count ( $Sb ) . " .Name " ] = $z ; if ( $X != " NULL " ){ foreach (( array ) $X
as $be => $W ){ $Rd [ " Attribute. $t .Name " ] = $z ; $Rd [ " Attribute. $t .Value " ] = ( is_array ( $X ) ? $W : idf_unescape ( $W )); if ( ! $be ) $Rd [ " Attribute. $t .Replace " ] = " true " ; $t ++ ;}}} $Lf = array ( 'DomainName' => $Q ); return ( ! $Rd || $this -> _chunkRequest (( $u != " " ? array ( $u ) : $Cd ), 'BatchPutAttributes' , $Lf , $Rd )) && ( ! $Sb || $this -> _chunkRequest ( $Cd , 'BatchDeleteAttributes' , $Lf , $Sb ));} function
insert ( $Q , $O ){ $Lf = array ( " DomainName " => $Q ); $t = 0 ; foreach ( $O
as $C => $Y ){ if ( $Y != " NULL " ){ $C = idf_unescape ( $C ); if ( $C == " itemName() " ) $Lf [ " ItemName " ] = idf_unescape ( $Y ); else { foreach (( array ) $Y
as $X ){ $Lf [ " Attribute. $t .Name " ] = $C ; $Lf [ " Attribute. $t .Value " ] = ( is_array ( $Y ) ? $X : idf_unescape ( $Y )); $t ++ ;}}}} return
sdb_request ( 'PutAttributes' , $Lf );} function
insertUpdate ( $Q , $K , $hg ){ foreach ( $K
2018-12-15 21:22:00 +00:00
as $O ){ if ( ! $this -> update ( $Q , $O , " WHERE `itemName()` = " . q ( $O [ " `itemName()` " ]))) return
false ;} return
true ;} function
begin (){ return
false ;} function
commit (){ return
false ;} function
rollback (){ return
false ;} function
slowQuery ( $G , $di ){ $this -> _conn -> timeout = $di ; return $G ;}} function
connect (){ global $b ; list (,, $F ) = $b -> credentials (); if ( $F != " " ) return 'Database does not support password.' ; return
new
Min_DB ;} function
2019-02-03 12:13:26 +00:00
support ( $Nc ){ return
preg_match ( '~sql~' , $Nc );} function
logged_user (){ global $b ; $j = $b -> credentials (); return $j [ 1 ];} function
2018-12-15 21:22:00 +00:00
get_databases (){ return
array ( " domain " );} function
collations (){ return
array ();} function
2019-02-03 12:13:26 +00:00
db_collation ( $m , $ob ){} function
2018-12-15 21:22:00 +00:00
tables_list (){ global $g ; $I = array (); foreach ( sdb_request_all ( 'ListDomains' , 'DomainName' ) as $Q ) $I [( string ) $Q ] = 'table' ; if ( $g -> error && defined ( " PAGE_HEADER " )) echo " <p class='error'> " . error () . " \n " ; return $I ;} function
2019-02-03 12:13:26 +00:00
table_status ( $C = " " , $Mc = false ){ $I = array (); foreach (( $C != " " ? array ( $C => true ) : tables_list ()) as $Q => $T ){ $J = array ( " Name " => $Q , " Auto_increment " => " " ); if ( ! $Mc ){ $Oe = sdb_request ( 'DomainMetadata' , array ( 'DomainName' => $Q )); if ( $Oe ){ foreach ( array ( " Rows " => " ItemCount " , " Data_length " => " ItemNamesSizeBytes " , " Index_length " => " AttributeValuesSizeBytes " , " Data_free " => " AttributeNamesSizeBytes " ,) as $z => $X ) $J [ $z ] = ( string ) $Oe -> $X ;}} if ( $C != " " ) return $J ; $I [ $Q ] = $J ;} return $I ;} function
2018-12-15 21:22:00 +00:00
explain ( $g , $G ){} 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
2019-02-03 12:13:26 +00:00
table ( $v ){ return
idf_escape ( $v );} function
idf_escape ( $v ){ return " ` " . str_replace ( " ` " , " `` " , $v ) . " ` " ;} function
limit ( $G , $Z , $_ , $D = 0 , $M = " " ){ return " $G $Z " . ( $_ !== null ? $M . " LIMIT $_ " : " " );} function
unconvert_field ( $p , $I ){ return $I ;} function
2018-12-15 21:22:00 +00:00
fk_support ( $R ){} function
engines (){ return
array ();} function
2019-02-03 12:13:26 +00:00
alter_table ( $Q , $C , $q , $ad , $tb , $sc , $d , $La , $Rf ){ return ( $Q == " " && sdb_request ( 'CreateDomain' , array ( 'DomainName' => $C )));} function
2018-12-15 21:22:00 +00:00
drop_tables ( $S ){ foreach ( $S
as $Q ){ if ( ! sdb_request ( 'DeleteDomain' , array ( 'DomainName' => $Q ))) return
false ;} return
true ;} function
2019-02-03 12:13:26 +00:00
count_tables ( $l ){ foreach ( $l
as $m ) return
array ( $m => count ( tables_list ()));} function
2018-12-15 21:22:00 +00:00
found_rows ( $R , $Z ){ return ( $Z ? null : $R [ " Rows " ]);} function
last_id (){} function
2019-02-03 12:13:26 +00:00
hmac ( $Ba , $Jb , $z , $xg = false ){ $Ua = 64 ; if ( strlen ( $z ) > $Ua ) $z = pack ( " H* " , $Ba ( $z )); $z = str_pad ( $z , $Ua , " \0 " ); $ce = $z ^ str_repeat ( " \x36 " , $Ua ); $de = $z ^ str_repeat ( " \x5C " , $Ua ); $I = $Ba ( $de . pack ( " H* " , $Ba ( $ce . $Jb ))); if ( $xg ) $I = pack ( " H* " , $I ); return $I ;} function
sdb_request ( $va , $Lf = array ()){ global $b , $g ; list ( $zd , $Lf [ 'AWSAccessKeyId' ], $ah ) = $b -> credentials (); $Lf [ 'Action' ] = $va ; $Lf [ 'Timestamp' ] = gmdate ( 'Y-m-d\TH:i:s+00:00' ); $Lf [ 'Version' ] = '2009-04-15' ; $Lf [ 'SignatureVersion' ] = 2 ; $Lf [ 'SignatureMethod' ] = 'HmacSHA1' ; ksort ( $Lf ); $G = '' ; foreach ( $Lf
as $z => $X ) $G .= '&' . rawurlencode ( $z ) . '=' . rawurlencode ( $X ); $G = str_replace ( '%7E' , '~' , substr ( $G , 1 )); $G .= " &Signature= " . urlencode ( base64_encode ( hmac ( 'sha1' , " POST \n " . preg_replace ( '~^https?://~' , '' , $zd ) . " \n / \n $G " , $ah , true ))); @ ini_set ( 'track_errors' , 1 ); $Rc =@ file_get_contents (( preg_match ( '~^https?://~' , $zd ) ? $zd : " http:// $zd " ), false , stream_context_create ( array ( 'http' => array ( 'method' => 'POST' , 'content' => $G , 'ignore_errors' => 1 ,)))); if ( ! $Rc ){ $g -> error = $php_errormsg ; return
false ;} libxml_use_internal_errors ( true ); $kj = simplexml_load_string ( $Rc ); if ( ! $kj ){ $o = libxml_get_last_error (); $g -> error = $o -> message ; return
false ;} if ( $kj -> Errors ){ $o = $kj -> Errors -> Error ; $g -> error = " $o->Message ( $o->Code ) " ; return
2018-12-15 21:22:00 +00:00
false ;} $g -> error = '' ; $Uh = $va . " Result " ; return ( $kj -> $Uh ? $kj -> $Uh : true );} function
2019-02-03 12:13:26 +00:00
sdb_request_all ( $va , $Uh , $Lf = array (), $di = 0 ){ $I = array (); $Ah = ( $di ? microtime ( true ) : 0 ); $_ = ( preg_match ( '~LIMIT\s+(\d+)\s*$~i' , $Lf [ 'SelectExpression' ], $B ) ? $B [ 1 ] : 0 ); do { $kj = sdb_request ( $va , $Lf ); if ( ! $kj ) break ; foreach ( $kj -> $Uh
as $nc ) $I [] = $nc ; if ( $_ && count ( $I ) >= $_ ){ $_GET [ " next " ] = $kj -> NextToken ; break ;} if ( $di && microtime ( true ) - $Ah > $di ) return
false ; $Lf [ 'NextToken' ] = $kj -> NextToken ; if ( $_ ) $Lf [ 'SelectExpression' ] = preg_replace ( '~\d+\s*$~' , $_ - count ( $I ), $Lf [ 'SelectExpression' ]);} while ( $kj -> NextToken ); return $I ;} $y = " simpledb " ; $sf = array ( " = " , " < " , " > " , " <= " , " >= " , " != " , " LIKE " , " LIKE %% " , " IN " , " IS NULL " , " NOT LIKE " , " IS NOT NULL " ); $id = array (); $od = array ( " count " ); $kc = array ( array ( " json " ));} $cc [ " mongo " ] = " MongoDB " ; if ( isset ( $_GET [ " mongo " ])){ $eg = array ( " mongo " , " mongodb " ); define ( " DRIVER " , " mongo " ); if ( class_exists ( 'MongoDB' )){ class
2018-12-15 21:22:00 +00:00
Min_DB { var $extension = " Mongo " , $server_info = MongoClient :: VERSION , $error , $last_id , $_link , $_db ; function
2019-02-03 12:13:26 +00:00
connect ( $Ii , $vf ){ return @ new
MongoClient ( $Ii , $vf );} function
2018-12-15 21:22:00 +00:00
query ( $G ){ return
false ;} function
2019-02-03 12:13:26 +00:00
select_db ( $k ){ try { $this -> _db = $this -> _link -> selectDB ( $k ); return
true ;} catch ( Exception $zc ){ $this -> error = $zc -> getMessage (); return
2018-12-15 21:22:00 +00:00
false ;}} function
quote ( $P ){ return $P ;}} class
Min_Result { var $num_rows , $_rows = array (), $_offset = 0 , $_charset = array (); function
__construct ( $H ){ foreach ( $H
2019-02-03 12:13:26 +00:00
as $Zd ){ $J = array (); foreach ( $Zd
as $z => $X ){ if ( is_a ( $X , 'MongoBinData' )) $this -> _charset [ $z ] = 63 ; $J [ $z ] = ( 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 [] = $J ; foreach ( $J
as $z => $X ){ if ( ! isset ( $this -> _rows [ 0 ][ $z ])) $this -> _rows [ 0 ][ $z ] = null ;}} $this -> num_rows = count ( $this -> _rows );} function
fetch_assoc (){ $J = current ( $this -> _rows ); if ( ! $J ) return $J ; $I = array (); foreach ( $this -> _rows [ 0 ] as $z => $X ) $I [ $z ] = $J [ $z ]; next ( $this -> _rows ); return $I ;} function
2018-12-15 21:22:00 +00:00
fetch_row (){ $I = $this -> fetch_assoc (); if ( ! $I ) return $I ; return
array_values ( $I );} function
2019-02-03 12:13:26 +00:00
fetch_field (){ $fe = array_keys ( $this -> _rows [ 0 ]); $C = $fe [ $this -> _offset ++ ]; return ( object ) array ( 'name' => $C , 'charsetnr' => $this -> _charset [ $C ],);}} class
2018-12-15 21:22:00 +00:00
Min_Driver
extends
2019-02-03 12:13:26 +00:00
Min_SQL { public $hg = " _id " ; function
select ( $Q , $L , $Z , $ld , $xf = array (), $_ = 1 , $E = 0 , $jg = false ){ $L = ( $L == array ( " * " ) ? array () : array_fill_keys ( $L , true )); $sh = array (); foreach ( $xf
as $X ){ $X = preg_replace ( '~ DESC$~' , '' , $X , 1 , $Cb ); $sh [ $X ] = ( $Cb ? - 1 : 1 );} return
2018-12-15 21:22:00 +00:00
new
2019-02-03 12:13:26 +00:00
Min_Result ( $this -> _conn -> _db -> selectCollection ( $Q ) -> find ( array (), $L ) -> sort ( $sh ) -> limit ( $_ != " " ? + $_ : 0 ) -> skip ( $E * $_ ));} function
insert ( $Q , $O ){ try { $I = $this -> _conn -> _db -> selectCollection ( $Q ) -> insert ( $O ); $this -> _conn -> errno = $I [ 'code' ]; $this -> _conn -> error = $I [ 'err' ]; $this -> _conn -> last_id = $O [ '_id' ]; return ! $I [ 'err' ];} catch ( Exception $zc ){ $this -> _conn -> error = $zc -> getMessage (); return
2018-12-15 21:22:00 +00:00
false ;}}} function
2019-02-03 12:13:26 +00:00
get_databases ( $Yc ){ global $g ; $I = array (); $Ob = $g -> _link -> listDBs (); foreach ( $Ob [ 'databases' ] as $m ) $I [] = $m [ 'name' ]; return $I ;} function
count_tables ( $l ){ global $g ; $I = array (); foreach ( $l
as $m ) $I [ $m ] = count ( $g -> _link -> selectDB ( $m ) -> getCollectionNames ( true )); return $I ;} function
2018-12-15 21:22:00 +00:00
tables_list (){ global $g ; return
array_fill_keys ( $g -> _db -> getCollectionNames ( true ), 'table' );} function
2019-02-03 12:13:26 +00:00
drop_databases ( $l ){ global $g ; foreach ( $l
as $m ){ $Jg = $g -> _link -> selectDB ( $m ) -> drop (); if ( ! $Jg [ 'ok' ]) return
2018-12-15 21:22:00 +00:00
false ;} return
true ;} function
2019-02-03 12:13:26 +00:00
indexes ( $Q , $h = null ){ global $g ; $I = array (); foreach ( $g -> _db -> selectCollection ( $Q ) -> getIndexInfo () as $w ){ $Vb = array (); foreach ( $w [ " key " ] as $e => $T ) $Vb [] = ( $T ==- 1 ? '1' : null ); $I [ $w [ " name " ]] = array ( " type " => ( $w [ " name " ] == " _id_ " ? " PRIMARY " : ( $w [ " unique " ] ? " UNIQUE " : " INDEX " )), " columns " => array_keys ( $w [ " key " ]), " lengths " => array (), " descs " => $Vb ,);} return $I ;} function
2018-12-15 21:22:00 +00:00
fields ( $Q ){ return
fields_from_edit ();} function
2019-02-03 12:13:26 +00:00
found_rows ( $R , $Z ){ global $g ; return $g -> _db -> selectCollection ( $_GET [ " select " ]) -> count ( $Z );} $sf = array ( " = " );} elseif ( class_exists ( 'MongoDB\Driver\Manager' )){ class
2018-12-15 21:22:00 +00:00
Min_DB { var $extension = " MongoDB " , $server_info = MONGODB_VERSION , $error , $last_id ; var $_link ; var $_db , $_db_name ; function
2019-02-03 12:13:26 +00:00
connect ( $Ii , $vf ){ $jb = 'MongoDB\Driver\Manager' ; return
new $jb ( $Ii , $vf );} function
2018-12-15 21:22:00 +00:00
query ( $G ){ return
false ;} function
2019-02-03 12:13:26 +00:00
select_db ( $k ){ $this -> _db_name = $k ; return
2018-12-15 21:22:00 +00:00
true ;} function
quote ( $P ){ return $P ;}} class
Min_Result { var $num_rows , $_rows = array (), $_offset = 0 , $_charset = array (); function
__construct ( $H ){ foreach ( $H
2019-02-03 12:13:26 +00:00
as $Zd ){ $J = array (); foreach ( $Zd
as $z => $X ){ if ( is_a ( $X , 'MongoDB\BSON\Binary' )) $this -> _charset [ $z ] = 63 ; $J [ $z ] = ( is_a ( $X , 'MongoDB\BSON\ObjectID' ) ? 'MongoDB\BSON\ObjectID("' . 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 [] = $J ; foreach ( $J
as $z => $X ){ if ( ! isset ( $this -> _rows [ 0 ][ $z ])) $this -> _rows [ 0 ][ $z ] = null ;}} $this -> num_rows = $H -> count ;} function
fetch_assoc (){ $J = current ( $this -> _rows ); if ( ! $J ) return $J ; $I = array (); foreach ( $this -> _rows [ 0 ] as $z => $X ) $I [ $z ] = $J [ $z ]; next ( $this -> _rows ); return $I ;} function
2018-12-15 21:22:00 +00:00
fetch_row (){ $I = $this -> fetch_assoc (); if ( ! $I ) return $I ; return
array_values ( $I );} function
2019-02-03 12:13:26 +00:00
fetch_field (){ $fe = array_keys ( $this -> _rows [ 0 ]); $C = $fe [ $this -> _offset ++ ]; return ( object ) array ( 'name' => $C , 'charsetnr' => $this -> _charset [ $C ],);}} class
2018-12-15 21:22:00 +00:00
Min_Driver
extends
2019-02-03 12:13:26 +00:00
Min_SQL { public $hg = " _id " ; function
select ( $Q , $L , $Z , $ld , $xf = array (), $_ = 1 , $E = 0 , $jg = false ){ global $g ; $L = ( $L == array ( " * " ) ? array () : array_fill_keys ( $L , 1 )); if ( count ( $L ) &&! isset ( $L [ '_id' ])) $L [ '_id' ] = 0 ; $Z = where_to_query ( $Z ); $sh = array (); foreach ( $xf
as $X ){ $X = preg_replace ( '~ DESC$~' , '' , $X , 1 , $Cb ); $sh [ $X ] = ( $Cb ? - 1 : 1 );} if ( isset ( $_GET [ 'limit' ]) && is_numeric ( $_GET [ 'limit' ]) && $_GET [ 'limit' ] > 0 ) $_ = $_GET [ 'limit' ]; $_ = min ( 200 , max ( 1 ,( int ) $_ )); $ph = $E * $_ ; $jb = 'MongoDB\Driver\Query' ; $G = new $jb ( $Z , array ( 'projection' => $L , 'limit' => $_ , 'skip' => $ph , 'sort' => $sh )); $Mg = $g -> _link -> executeQuery ( " $g->_db_name . $Q " , $G ); return
2018-12-15 21:22:00 +00:00
new
2019-02-03 12:13:26 +00:00
Min_Result ( $Mg );} function
update ( $Q , $O , $tg , $_ = 0 , $M = " \n " ){ global $g ; $m = $g -> _db_name ; $Z = sql_query_where_parser ( $tg ); $jb = 'MongoDB\Driver\BulkWrite' ; $Ya = new $jb ( array ()); if ( isset ( $O [ '_id' ])) unset ( $O [ '_id' ]); $Gg = array (); foreach ( $O
as $z => $Y ){ if ( $Y == 'NULL' ){ $Gg [ $z ] = 1 ; unset ( $O [ $z ]);}} $Hi = array ( '$set' => $O ); if ( count ( $Gg )) $Hi [ '$unset' ] = $Gg ; $Ya -> update ( $Z , $Hi , array ( 'upsert' => false )); $Mg = $g -> _link -> executeBulkWrite ( " $m . $Q " , $Ya ); $g -> affected_rows = $Mg -> getModifiedCount (); return
2018-12-15 21:22:00 +00:00
true ;} function
2019-02-03 12:13:26 +00:00
delete ( $Q , $tg , $_ = 0 ){ global $g ; $m = $g -> _db_name ; $Z = sql_query_where_parser ( $tg ); $jb = 'MongoDB\Driver\BulkWrite' ; $Ya = new $jb ( array ()); $Ya -> delete ( $Z , array ( 'limit' => $_ )); $Mg = $g -> _link -> executeBulkWrite ( " $m . $Q " , $Ya ); $g -> affected_rows = $Mg -> getDeletedCount (); return
2018-12-15 21:22:00 +00:00
true ;} function
2019-02-03 12:13:26 +00:00
insert ( $Q , $O ){ global $g ; $m = $g -> _db_name ; $jb = 'MongoDB\Driver\BulkWrite' ; $Ya = new $jb ( array ()); if ( isset ( $O [ '_id' ]) && empty ( $O [ '_id' ])) unset ( $O [ '_id' ]); $Ya -> insert ( $O ); $Mg = $g -> _link -> executeBulkWrite ( " $m . $Q " , $Ya ); $g -> affected_rows = $Mg -> getInsertedCount (); return
2018-12-15 21:22:00 +00:00
true ;}} function
2019-02-03 12:13:26 +00:00
get_databases ( $Yc ){ global $g ; $I = array (); $jb = 'MongoDB\Driver\Command' ; $rb = new $jb ( array ( 'listDatabases' => 1 )); $Mg = $g -> _link -> executeCommand ( 'admin' , $rb ); foreach ( $Mg
as $Ob ){ foreach ( $Ob -> databases
as $m ) $I [] = $m -> name ;} return $I ;} function
count_tables ( $l ){ $I = array (); return $I ;} function
tables_list (){ global $g ; $jb = 'MongoDB\Driver\Command' ; $rb = new $jb ( array ( 'listCollections' => 1 )); $Mg = $g -> _link -> executeCommand ( $g -> _db_name , $rb ); $pb = array (); foreach ( $Mg
2018-12-15 21:22:00 +00:00
as $H ) $pb [ $H -> name ] = 'table' ; return $pb ;} function
2019-02-03 12:13:26 +00:00
drop_databases ( $l ){ return
2018-12-15 21:22:00 +00:00
false ;} function
2019-02-03 12:13:26 +00:00
indexes ( $Q , $h = null ){ global $g ; $I = array (); $jb = 'MongoDB\Driver\Command' ; $rb = new $jb ( array ( 'listIndexes' => $Q )); $Mg = $g -> _link -> executeCommand ( $g -> _db_name , $rb ); foreach ( $Mg
as $w ){ $Vb = array (); $f = array (); foreach ( get_object_vars ( $w -> key ) as $e => $T ){ $Vb [] = ( $T ==- 1 ? '1' : null ); $f [] = $e ;} $I [ $w -> name ] = array ( " type " => ( $w -> name == " _id_ " ? " PRIMARY " : ( isset ( $w -> unique ) ? " UNIQUE " : " INDEX " )), " columns " => $f , " lengths " => array (), " descs " => $Vb ,);} return $I ;} function
fields ( $Q ){ $q = fields_from_edit (); if ( ! count ( $q )){ global $n ; $H = $n -> select ( $Q , array ( " * " ), null , null , array (), 10 ); while ( $J = $H -> fetch_assoc ()){ foreach ( $J
as $z => $X ){ $J [ $z ] = null ; $q [ $z ] = array ( " field " => $z , " type " => " string " , " null " => ( $z != $n -> primary ), " auto_increment " => ( $z == $n -> primary ), " privileges " => array ( " insert " => 1 , " select " => 1 , " update " => 1 ,),);}}} return $q ;} function
found_rows ( $R , $Z ){ global $g ; $Z = where_to_query ( $Z ); $jb = 'MongoDB\Driver\Command' ; $rb = new $jb ( array ( 'count' => $R [ 'Name' ], 'query' => $Z )); $Mg = $g -> _link -> executeCommand ( $g -> _db_name , $rb ); $li = $Mg -> toArray (); return $li [ 0 ] -> n ;} function
sql_query_where_parser ( $tg ){ $tg = trim ( preg_replace ( '/WHERE[\s]?[(]?\(?/' , '' , $tg )); $tg = preg_replace ( '/\)\)\)$/' , ')' , $tg ); $hj = explode ( ' AND ' , $tg ); $ij = explode ( ') OR (' , $tg ); $Z = array (); foreach ( $hj
2018-12-15 21:22:00 +00:00
as $fj ) $Z [] = trim ( $fj ); if ( count ( $ij ) == 1 ) $ij = array (); elseif ( count ( $ij ) > 1 ) $Z = array (); return
where_to_query ( $Z , $ij );} function
2019-02-03 12:13:26 +00:00
where_to_query ( $dj = array (), $ej = array ()){ global $b ; $Jb = array (); foreach ( array ( 'and' => $dj , 'or' => $ej ) as $T => $Z ){ if ( is_array ( $Z )){ foreach ( $Z
as $Fc ){ list ( $mb , $qf , $X ) = explode ( " " , $Fc , 3 ); if ( $mb == " _id " ){ $X = str_replace ( 'MongoDB\BSON\ObjectID("' , " " , $X ); $X = str_replace ( '")' , " " , $X ); $jb = 'MongoDB\BSON\ObjectID' ; $X = new $jb ( $X );} if ( ! in_array ( $qf , $b -> operators )) continue ; if ( preg_match ( '~^\(f\)(.+)~' , $qf , $B )){ $X = ( float ) $X ; $qf = $B [ 1 ];} elseif ( preg_match ( '~^\(date\)(.+)~' , $qf , $B )){ $Lb = new
DateTime ( $X ); $jb = 'MongoDB\BSON\UTCDatetime' ; $X = new $jb ( $Lb -> getTimestamp () * 1000 ); $qf = $B [ 1 ];} switch ( $qf ){ case '=' : $qf = '$eq' ; break ; case '!=' : $qf = '$ne' ; break ; case '>' : $qf = '$gt' ; break ; case '<' : $qf = '$lt' ; break ; case '>=' : $qf = '$gte' ; break ; case '<=' : $qf = '$lte' ; break ; case 'regex' : $qf = '$regex' ; break ; default : continue
2 ;} if ( $T == 'and' ) $Jb [ '$and' ][] = array ( $mb => array ( $qf => $X )); elseif ( $T == 'or' ) $Jb [ '$or' ][] = array ( $mb => array ( $qf => $X ));}}} return $Jb ;} $sf = array ( " = " , " != " , " > " , " < " , " >= " , " <= " , " regex " , " (f)= " , " (f)!= " , " (f)> " , " (f)< " , " (f)>= " , " (f)<= " , " (date)= " , " (date)!= " , " (date)> " , " (date)< " , " (date)>= " , " (date)<= " ,);} function
table ( $v ){ return $v ;} function
idf_escape ( $v ){ return $v ;} function
table_status ( $C = " " , $Mc = false ){ $I = array (); foreach ( tables_list () as $Q => $T ){ $I [ $Q ] = array ( " Name " => $Q ); if ( $C == $Q ) return $I [ $Q ];} return $I ;} function
create_database ( $m , $d ){ return
2018-12-15 21:22:00 +00:00
true ;} function
last_id (){ global $g ; return $g -> last_id ;} function
error (){ global $g ; return
h ( $g -> error );} function
collations (){ return
array ();} function
2019-02-03 12:13:26 +00:00
logged_user (){ global $b ; $j = $b -> credentials (); return $j [ 1 ];} function
2018-12-15 21:22:00 +00:00
connect (){ global $b ; $g = new
2019-02-03 12:13:26 +00:00
Min_DB ; list ( $N , $V , $F ) = $b -> credentials (); $vf = array (); if ( $V . $F != " " ){ $vf [ " username " ] = $V ; $vf [ " password " ] = $F ;} $m = $b -> database (); if ( $m != " " ) $vf [ " db " ] = $m ; try { $g -> _link = $g -> connect ( " mongodb:// $N " , $vf ); if ( $F != " " ){ $vf [ " password " ] = " " ; try { $g -> connect ( " mongodb:// $N " , $vf ); return 'Database does not support password.' ;} catch ( Exception $zc ){}} return $g ;} catch ( Exception $zc ){ return $zc -> getMessage ();}} function
2018-12-15 21:22:00 +00:00
alter_indexes ( $Q , $c ){ global $g ; foreach ( $c
as $X ){ list ( $T , $C , $O ) = $X ; if ( $O == " DROP " ) $I = $g -> _db -> command ( array ( " deleteIndexes " => $Q , " index " => $C )); else { $f = array (); foreach ( $O
2019-02-03 12:13:26 +00:00
as $e ){ $e = preg_replace ( '~ DESC$~' , '' , $e , 1 , $Cb ); $f [ $e ] = ( $Cb ? - 1 : 1 );} $I = $g -> _db -> selectCollection ( $Q ) -> ensureIndex ( $f , array ( " unique " => ( $T == " UNIQUE " ), " name " => $C ,));} if ( $I [ 'errmsg' ]){ $g -> error = $I [ 'errmsg' ]; return
2018-12-15 21:22:00 +00:00
false ;}} return
true ;} function
2019-02-03 12:13:26 +00:00
support ( $Nc ){ return
preg_match ( " ~database|indexes|descidx~ " , $Nc );} function
db_collation ( $m , $ob ){} function
2018-12-15 21:22:00 +00:00
information_schema (){} function
is_view ( $R ){} function
2019-02-03 12:13:26 +00:00
convert_field ( $p ){} function
unconvert_field ( $p , $I ){ return $I ;} function
2018-12-15 21:22:00 +00:00
foreign_keys ( $Q ){ return
array ();} function
fk_support ( $R ){} function
engines (){ return
array ();} function
2019-02-03 12:13:26 +00:00
alter_table ( $Q , $C , $q , $ad , $tb , $sc , $d , $La , $Rf ){ global $g ; if ( $Q == " " ){ $g -> _db -> createCollection ( $C ); return
2018-12-15 21:22:00 +00:00
true ;}} function
drop_tables ( $S ){ global $g ; foreach ( $S
2019-02-03 12:13:26 +00:00
as $Q ){ $Jg = $g -> _db -> selectCollection ( $Q ) -> drop (); if ( ! $Jg [ 'ok' ]) return
2018-12-15 21:22:00 +00:00
false ;} return
true ;} function
truncate_tables ( $S ){ global $g ; foreach ( $S
2019-02-03 12:13:26 +00:00
as $Q ){ $Jg = $g -> _db -> selectCollection ( $Q ) -> remove (); if ( ! $Jg [ 'ok' ]) return
2018-12-15 21:22:00 +00:00
false ;} return
2019-02-03 12:13:26 +00:00
true ;} $y = " mongo " ; $id = array (); $od = array (); $kc = array ( array ( " json " ));} $cc [ " elastic " ] = " Elasticsearch (beta) " ; if ( isset ( $_GET [ " elastic " ])){ $eg = array ( " json + allow_url_fopen " ); define ( " DRIVER " , " elastic " ); if ( function_exists ( 'json_decode' ) && ini_bool ( 'allow_url_fopen' )){ class
2018-12-15 21:22:00 +00:00
Min_DB { var $extension = " JSON " , $server_info , $errno , $error , $_url ; function
2019-02-03 12:13:26 +00:00
rootQuery ( $Vf , $yb = array (), $Pe = 'GET' ){ @ ini_set ( 'track_errors' , 1 ); $Rc =@ file_get_contents ( " $this->_url / " . ltrim ( $Vf , '/' ), false , stream_context_create ( array ( 'http' => array ( 'method' => $Pe , 'content' => $yb === null ? $yb : json_encode ( $yb ), 'header' => 'Content-Type: application/json' , 'ignore_errors' => 1 ,)))); if ( ! $Rc ){ $this -> error = $php_errormsg ; return $Rc ;} if ( ! preg_match ( '~^HTTP/[0-9.]+ 2~i' , $http_response_header [ 0 ])){ $this -> error = $Rc ; return
false ;} $I = json_decode ( $Rc , true ); if ( $I === null ){ $this -> errno = json_last_error (); if ( function_exists ( 'json_last_error_msg' )) $this -> error = json_last_error_msg (); else { $xb = get_defined_constants ( true ); foreach ( $xb [ 'json' ] as $C => $Y ){ if ( $Y == $this -> errno && preg_match ( '~^JSON_ERROR_~' , $C )){ $this -> error = $C ; break ;}}}} return $I ;} function
query ( $Vf , $yb = array (), $Pe = 'GET' ){ return $this -> rootQuery (( $this -> _db != " " ? " $this->_db / " : " / " ) . ltrim ( $Vf , '/' ), $yb , $Pe );} function
2018-12-15 21:22:00 +00:00
connect ( $N , $V , $F ){ preg_match ( '~^(https?://)?(.*)~' , $N , $B ); $this -> _url = ( $B [ 1 ] ? $B [ 1 ] : " http:// " ) . " $V : $F @ $B[2] " ; $I = $this -> query ( '' ); if ( $I ) $this -> server_info = $I [ 'version' ][ 'number' ]; return ( bool ) $I ;} function
2019-02-03 12:13:26 +00:00
select_db ( $k ){ $this -> _db = $k ; return
2018-12-15 21:22:00 +00:00
true ;} function
quote ( $P ){ return $P ;}} class
Min_Result { var $num_rows , $_rows ; function
__construct ( $K ){ $this -> num_rows = count ( $this -> _rows ); $this -> _rows = $K ; reset ( $this -> _rows );} function
fetch_assoc (){ $I = current ( $this -> _rows ); next ( $this -> _rows ); return $I ;} function
fetch_row (){ return
array_values ( $this -> fetch_assoc ());}}} class
Min_Driver
extends
Min_SQL { function
2019-02-03 12:13:26 +00:00
select ( $Q , $L , $Z , $ld , $xf = array (), $_ = 1 , $E = 0 , $jg = false ){ global $b ; $Jb = array (); $G = " $Q /_search " ; if ( $L != array ( " * " )) $Jb [ " fields " ] = $L ; if ( $xf ){ $sh = array (); foreach ( $xf
as $mb ){ $mb = preg_replace ( '~ DESC$~' , '' , $mb , 1 , $Cb ); $sh [] = ( $Cb ? array ( $mb => " desc " ) : $mb );} $Jb [ " sort " ] = $sh ;} if ( $_ ){ $Jb [ " size " ] =+ $_ ; if ( $E ) $Jb [ " from " ] = ( $E * $_ );} foreach ( $Z
as $X ){ list ( $mb , $qf , $X ) = explode ( " " , $X , 3 ); if ( $mb == " _id " ) $Jb [ " query " ][ " ids " ][ " values " ][] = $X ; elseif ( $mb . $X != " " ){ $Yh = array ( " term " => array (( $mb != " " ? $mb : " _all " ) => $X )); if ( $qf == " = " ) $Jb [ " query " ][ " filtered " ][ " filter " ][ " and " ][] = $Yh ; else $Jb [ " query " ][ " filtered " ][ " query " ][ " bool " ][ " must " ][] = $Yh ;}} if ( $Jb [ " query " ] &&! $Jb [ " query " ][ " filtered " ][ " query " ] &&! $Jb [ " query " ][ " ids " ]) $Jb [ " query " ][ " filtered " ][ " query " ] = array ( " match_all " => array ()); $Ah = microtime ( true ); $Zg = $this -> _conn -> query ( $G , $Jb ); if ( $jg ) echo $b -> selectQuery ( " $G : " . print_r ( $Jb , true ), $Ah , ! $Zg ); if ( ! $Zg ) return
false ; $I = array (); foreach ( $Zg [ 'hits' ][ 'hits' ] as $yd ){ $J = array (); if ( $L == array ( " * " )) $J [ " _id " ] = $yd [ " _id " ]; $q = $yd [ '_source' ]; if ( $L != array ( " * " )){ $q = array (); foreach ( $L
as $z ) $q [ $z ] = $yd [ 'fields' ][ $z ];} foreach ( $q
as $z => $X ){ if ( $Jb [ " fields " ]) $X = $X [ 0 ]; $J [ $z ] = ( is_array ( $X ) ? json_encode ( $X ) : $X );} $I [] = $J ;} return
2018-12-15 21:22:00 +00:00
new
Min_Result ( $I );} function
2019-02-03 12:13:26 +00:00
update ( $T , $yg , $tg , $_ = 0 , $M = " \n " ){ $Tf = preg_split ( '~ *= *~' , $tg ); if ( count ( $Tf ) == 2 ){ $u = trim ( $Tf [ 1 ]); $G = " $T / $u " ; return $this -> _conn -> query ( $G , $yg , 'POST' );} return
2018-12-15 21:22:00 +00:00
false ;} function
2019-02-03 12:13:26 +00:00
insert ( $T , $yg ){ $u = " " ; $G = " $T / $u " ; $Jg = $this -> _conn -> query ( $G , $yg , 'POST' ); $this -> _conn -> last_id = $Jg [ '_id' ]; return $Jg [ 'created' ];} function
delete ( $T , $tg , $_ = 0 ){ $Cd = array (); if ( is_array ( $_GET [ " where " ]) && $_GET [ " where " ][ " _id " ]) $Cd [] = $_GET [ " where " ][ " _id " ]; if ( is_array ( $_POST [ 'check' ])){ foreach ( $_POST [ 'check' ] as $cb ){ $Tf = preg_split ( '~ *= *~' , $cb ); if ( count ( $Tf ) == 2 ) $Cd [] = trim ( $Tf [ 1 ]);}} $this -> _conn -> affected_rows = 0 ; foreach ( $Cd
as $u ){ $G = " { $T } / { $u } " ; $Jg = $this -> _conn -> query ( $G , '{}' , 'DELETE' ); if ( is_array ( $Jg ) && $Jg [ 'found' ] == true ) $this -> _conn -> affected_rows ++ ;} return $this -> _conn -> affected_rows ;}} function
2018-12-15 21:22:00 +00:00
connect (){ global $b ; $g = new
Min_DB ; list ( $N , $V , $F ) = $b -> credentials (); if ( $F != " " && $g -> connect ( $N , $V , " " )) return 'Database does not support password.' ; if ( $g -> connect ( $N , $V , $F )) return $g ; return $g -> error ;} function
2019-02-03 12:13:26 +00:00
support ( $Nc ){ return
preg_match ( " ~database|table|columns~ " , $Nc );} function
logged_user (){ global $b ; $j = $b -> credentials (); return $j [ 1 ];} function
2018-12-15 21:22:00 +00:00
get_databases (){ global $g ; $I = $g -> rootQuery ( '_aliases' ); if ( $I ){ $I = array_keys ( $I ); sort ( $I , SORT_STRING );} return $I ;} function
collations (){ return
array ();} function
2019-02-03 12:13:26 +00:00
db_collation ( $m , $ob ){} function
2018-12-15 21:22:00 +00:00
engines (){ return
array ();} function
2019-02-03 12:13:26 +00:00
count_tables ( $l ){ global $g ; $I = array (); $H = $g -> query ( '_stats' ); if ( $H && $H [ 'indices' ]){ $Kd = $H [ 'indices' ]; foreach ( $Kd
as $Jd => $Bh ){ $Id = $Bh [ 'total' ][ 'indexing' ]; $I [ $Jd ] = $Id [ 'index_total' ];}} return $I ;} function
2018-12-15 21:22:00 +00:00
tables_list (){ global $g ; $I = $g -> query ( '_mapping' ); if ( $I ) $I = array_fill_keys ( array_keys ( $I [ $g -> _db ][ " mappings " ]), 'table' ); return $I ;} function
2019-02-03 12:13:26 +00:00
table_status ( $C = " " , $Mc = false ){ global $g ; $Zg = $g -> query ( " _search " , array ( " size " => 0 , " aggregations " => array ( " count_by_type " => array ( " terms " => array ( " field " => " _type " )))), " POST " ); $I = array (); if ( $Zg ){ $S = $Zg [ " aggregations " ][ " count_by_type " ][ " buckets " ]; foreach ( $S
2018-12-15 21:22:00 +00:00
as $Q ){ $I [ $Q [ " key " ]] = array ( " Name " => $Q [ " key " ], " Engine " => " table " , " Rows " => $Q [ " doc_count " ],); if ( $C != " " && $C == $Q [ " key " ]) return $I [ $C ];}} return $I ;} function
error (){ global $g ; return
h ( $g -> error );} function
information_schema (){} function
is_view ( $R ){} function
indexes ( $Q , $h = null ){ return
array ( array ( " type " => " PRIMARY " , " columns " => array ( " _id " )),);} function
2019-02-03 12:13:26 +00:00
fields ( $Q ){ global $g ; $H = $g -> query ( " $Q /_mapping " ); $I = array (); if ( $H ){ $ye = $H [ $Q ][ 'properties' ]; if ( ! $ye ) $ye = $H [ $g -> _db ][ 'mappings' ][ $Q ][ 'properties' ]; if ( $ye ){ foreach ( $ye
as $C => $p ){ $I [ $C ] = array ( " field " => $C , " full_type " => $p [ " type " ], " type " => $p [ " type " ], " privileges " => array ( " insert " => 1 , " select " => 1 , " update " => 1 ),); if ( $p [ " properties " ]){ unset ( $I [ $C ][ " privileges " ][ " insert " ]); unset ( $I [ $C ][ " privileges " ][ " update " ]);}}}} return $I ;} function
2018-12-15 21:22:00 +00:00
foreign_keys ( $Q ){ return
array ();} function
2019-02-03 12:13:26 +00:00
table ( $v ){ return $v ;} function
idf_escape ( $v ){ return $v ;} function
convert_field ( $p ){} function
unconvert_field ( $p , $I ){ return $I ;} function
2018-12-15 21:22:00 +00:00
fk_support ( $R ){} function
found_rows ( $R , $Z ){ return
null ;} function
2019-02-03 12:13:26 +00:00
create_database ( $m ){ global $g ; return $g -> rootQuery ( urlencode ( $m ), null , 'PUT' );} function
drop_databases ( $l ){ global $g ; return $g -> rootQuery ( urlencode ( implode ( ',' , $l )), array (), 'DELETE' );} function
alter_table ( $Q , $C , $q , $ad , $tb , $sc , $d , $La , $Rf ){ global $g ; $pg = array (); foreach ( $q
as $Kc ){ $Pc = trim ( $Kc [ 1 ][ 0 ]); $Qc = trim ( $Kc [ 1 ][ 1 ] ? $Kc [ 1 ][ 1 ] : " text " ); $pg [ $Pc ] = array ( 'type' => $Qc );} if ( ! empty ( $pg )) $pg = array ( 'properties' => $pg ); return $g -> query ( " _mapping/ { $C } " , $pg , 'PUT' );} function
2018-12-15 21:22:00 +00:00
drop_tables ( $S ){ global $g ; $I = true ; foreach ( $S
as $Q ) $I = $I && $g -> query ( urlencode ( $Q ), array (), 'DELETE' ); return $I ;} function
2019-02-03 12:13:26 +00:00
last_id (){ global $g ; return $g -> last_id ;} $y = " elastic " ; $sf = array ( " = " , " query " ); $id = array (); $od = array (); $kc = array ( array ( " json " )); $U = array (); $Fh = array (); foreach ( array ( 'Numbers' => array ( " long " => 3 , " integer " => 5 , " short " => 8 , " byte " => 10 , " double " => 20 , " float " => 66 , " half_float " => 12 , " scaled_float " => 21 ), 'Date and time' => array ( " date " => 10 ), 'Strings' => array ( " string " => 65535 , " text " => 65535 ), 'Binary' => array ( " binary " => 255 ),) as $z => $X ){ $U += $X ; $Fh [ $z ] = array_keys ( $X );}} $cc [ " clickhouse " ] = " ClickHouse (alpha) " ; if ( isset ( $_GET [ " clickhouse " ])){ define ( " DRIVER " , " clickhouse " ); class
2018-12-15 21:22:00 +00:00
Min_DB { var $extension = " JSON " , $server_info , $errno , $_result , $error , $_url ; var $_db = 'default' ; function
2019-02-03 12:13:26 +00:00
rootQuery ( $m , $G ){ @ ini_set ( 'track_errors' , 1 ); $Rc =@ file_get_contents ( " $this->_url /?database= $m " , false , stream_context_create ( array ( 'http' => array ( 'method' => 'POST' , 'content' => $this -> isQuerySelectLike ( $G ) ? " $G FORMAT JSONCompact " : $G , 'header' => 'Content-type: application/x-www-form-urlencoded' , 'ignore_errors' => 1 ,)))); if ( $Rc === false ){ $this -> error = $php_errormsg ; return $Rc ;} if ( ! preg_match ( '~^HTTP/[0-9.]+ 2~i' , $http_response_header [ 0 ])){ $this -> error = $Rc ; return
false ;} $I = json_decode ( $Rc , true ); if ( $I === null ){ $this -> errno = json_last_error (); if ( function_exists ( 'json_last_error_msg' )) $this -> error = json_last_error_msg (); else { $xb = get_defined_constants ( true ); foreach ( $xb [ 'json' ] as $C => $Y ){ if ( $Y == $this -> errno && preg_match ( '~^JSON_ERROR_~' , $C )){ $this -> error = $C ; break ;}}}} return
2018-12-15 21:22:00 +00:00
new
Min_Result ( $I );} function
isQuerySelectLike ( $G ){ return ( bool ) preg_match ( '~^(select|show)~i' , $G );} function
query ( $G ){ return $this -> rootQuery ( $this -> _db , $G );} function
connect ( $N , $V , $F ){ preg_match ( '~^(https?://)?(.*)~' , $N , $B ); $this -> _url = ( $B [ 1 ] ? $B [ 1 ] : " http:// " ) . " $V : $F @ $B[2] " ; $I = $this -> query ( 'SELECT 1' ); return ( bool ) $I ;} function
2019-02-03 12:13:26 +00:00
select_db ( $k ){ $this -> _db = $k ; return
2018-12-15 21:22:00 +00:00
true ;} function
quote ( $P ){ return " ' " . addcslashes ( $P , " \\ ' " ) . " ' " ;} function
multi_query ( $G ){ return $this -> _result = $this -> query ( $G );} function
store_result (){ return $this -> _result ;} function
next_result (){ return
false ;} function
2019-02-03 12:13:26 +00:00
result ( $G , $p = 0 ){ $H = $this -> query ( $G ); return $H [ 'data' ];}} class
2018-12-15 21:22:00 +00:00
Min_Result { var $num_rows , $_rows , $columns , $meta , $_offset = 0 ; function
__construct ( $H ){ $this -> num_rows = $H [ 'rows' ]; $this -> _rows = $H [ 'data' ]; $this -> meta = $H [ 'meta' ]; $this -> columns = array_column ( $this -> meta , 'name' ); reset ( $this -> _rows );} function
fetch_assoc (){ $J = current ( $this -> _rows ); next ( $this -> _rows ); return $J === false ? false : array_combine ( $this -> columns , $J );} function
fetch_row (){ $J = current ( $this -> _rows ); next ( $this -> _rows ); return $J ;} function
fetch_field (){ $e = $this -> _offset ++ ; $I = new
stdClass ; if ( $e < count ( $this -> columns )){ $I -> name = $this -> meta [ $e ][ 'name' ]; $I -> orgname = $I -> name ; $I -> type = $this -> meta [ $e ][ 'type' ];} return $I ;}} class
Min_Driver
extends
Min_SQL { function
2019-02-03 12:13:26 +00:00
delete ( $Q , $tg , $_ = 0 ){ return
queries ( " ALTER TABLE " . table ( $Q ) . " DELETE $tg " );} function
update ( $Q , $O , $tg , $_ = 0 , $M = " \n " ){ $Si = array (); foreach ( $O
as $z => $X ) $Si [] = " $z = $X " ; $G = $M . implode ( " , $M " , $Si ); return
queries ( " ALTER TABLE " . table ( $Q ) . " UPDATE $G $tg " );}} function
idf_escape ( $v ){ return " ` " . str_replace ( " ` " , " `` " , $v ) . " ` " ;} function
table ( $v ){ return
idf_escape ( $v );} function
2018-12-15 21:22:00 +00:00
explain ( $g , $G ){ return '' ;} function
found_rows ( $R , $Z ){ $K = get_vals ( " SELECT COUNT(*) FROM " . idf_escape ( $R [ " Name " ]) . ( $Z ? " WHERE " . implode ( " AND " , $Z ) : " " )); return
empty ( $K ) ? false : $K [ 0 ];} function
2019-02-03 12:13:26 +00:00
alter_table ( $Q , $C , $q , $ad , $tb , $sc , $d , $La , $Rf ){ foreach ( $q
as $p ){ if ( $p [ 1 ][ 2 ] === " NULL " ) $p [ 1 ][ 1 ] = " Nullable( { $p [ 1 ][ 1 ] } ) " ; unset ( $p [ 1 ][ 2 ]);}} function
2018-12-15 21:22:00 +00:00
truncate_tables ( $S ){ return
apply_queries ( " TRUNCATE TABLE " , $S );} function
drop_views ( $Xi ){ return
drop_tables ( $Xi );} function
drop_tables ( $S ){ return
apply_queries ( " DROP TABLE " , $S );} function
connect (){ global $b ; $g = new
2019-02-03 12:13:26 +00:00
Min_DB ; $j = $b -> credentials (); if ( $g -> connect ( $j [ 0 ], $j [ 1 ], $j [ 2 ])) return $g ; return $g -> error ;} function
get_databases ( $Yc ){ global $g ; $H = get_rows ( 'SHOW DATABASES' ); $I = array (); foreach ( $H
2018-12-15 21:22:00 +00:00
as $J ) $I [] = $J [ 'name' ]; sort ( $I ); return $I ;} function
2019-02-03 12:13:26 +00:00
limit ( $G , $Z , $_ , $D = 0 , $M = " " ){ return " $G $Z " . ( $_ !== null ? $M . " LIMIT $_ " . ( $D ? " , $D " : " " ) : " " );} function
2018-12-15 21:22:00 +00:00
limit1 ( $Q , $G , $Z , $M = " \n " ){ return
limit ( $G , $Z , 1 , 0 , $M );} function
2019-02-03 12:13:26 +00:00
db_collation ( $m , $ob ){} function
2018-12-15 21:22:00 +00:00
engines (){ return
array ( 'MergeTree' );} function
2019-02-03 12:13:26 +00:00
logged_user (){ global $b ; $j = $b -> credentials (); return $j [ 1 ];} function
2018-12-15 21:22:00 +00:00
tables_list (){ $H = get_rows ( 'SHOW TABLES' ); $I = array (); foreach ( $H
as $J ) $I [ $J [ 'name' ]] = 'table' ; ksort ( $I ); return $I ;} function
2019-02-03 12:13:26 +00:00
count_tables ( $l ){ return
2018-12-15 21:22:00 +00:00
array ();} function
2019-02-03 12:13:26 +00:00
table_status ( $C = " " , $Mc = false ){ global $g ; $I = array (); $S = get_rows ( " SELECT name, engine FROM system.tables WHERE database = " . q ( $g -> _db )); foreach ( $S
2018-12-15 21:22:00 +00:00
as $Q ){ $I [ $Q [ 'name' ]] = array ( 'Name' => $Q [ 'name' ], 'Engine' => $Q [ 'engine' ],); if ( $C === $Q [ 'name' ]) return $I [ $Q [ 'name' ]];} return $I ;} function
is_view ( $R ){ return
false ;} function
fk_support ( $R ){ return
false ;} function
2019-02-03 12:13:26 +00:00
convert_field ( $p ){} function
unconvert_field ( $p , $I ){ if ( in_array ( $p [ 'type' ], array ( " Int8 " , " Int16 " , " Int32 " , " Int64 " , " UInt8 " , " UInt16 " , " UInt32 " , " UInt64 " , " Float32 " , " Float64 " ))) return " to $p[type] ( $I ) " ; return $I ;} function
2018-12-15 21:22:00 +00:00
fields ( $Q ){ $I = array (); $H = get_rows ( " SELECT name, type, default_expression FROM system.columns WHERE " . idf_escape ( 'table' ) . " = " . q ( $Q )); foreach ( $H
2019-02-03 12:13:26 +00:00
as $J ){ $T = trim ( $J [ 'type' ]); $cf = strpos ( $T , 'Nullable(' ) === 0 ; $I [ trim ( $J [ 'name' ])] = array ( " field " => trim ( $J [ 'name' ]), " full_type " => $T , " type " => $T , " default " => trim ( $J [ 'default_expression' ]), " null " => $cf , " auto_increment " => '0' , " privileges " => array ( " insert " => 1 , " select " => 1 , " update " => 0 ),);} return $I ;} function
2018-12-15 21:22:00 +00:00
indexes ( $Q , $h = null ){ return
array ();} function
foreign_keys ( $Q ){ return
array ();} function
collations (){ return
array ();} function
2019-02-03 12:13:26 +00:00
information_schema ( $m ){ return
2018-12-15 21:22:00 +00:00
false ;} function
error (){ global $g ; return
h ( $g -> error );} function
types (){ return
array ();} function
schemas (){ return
array ();} function
get_schema (){ return " " ;} function
2019-02-03 12:13:26 +00:00
set_schema ( $Xg ){ return
2018-12-15 21:22:00 +00:00
true ;} function
auto_increment (){ return '' ;} function
last_id (){ return
0 ;} function
2019-02-03 12:13:26 +00:00
support ( $Nc ){ return
preg_match ( " ~^(columns|sql|status|table) $ ~ " , $Nc );} $y = " clickhouse " ; $U = array (); $Fh = 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 $z => $X ){ $U += $X ; $Fh [ $z ] = array_keys ( $X );} $Gi = array (); $sf = array ( " = " , " < " , " > " , " <= " , " >= " , " != " , " ~ " , " !~ " , " LIKE " , " LIKE %% " , " IN " , " IS NULL " , " NOT LIKE " , " NOT IN " , " IS NOT NULL " , " SQL " ); $id = array (); $od = array ( " avg " , " count " , " count distinct " , " max " , " min " , " sum " ); $kc = array ();} $cc = array ( " server " => " MySQL " ) + $cc ; if ( ! defined ( " DRIVER " )){ $eg = array ( " MySQLi " , " MySQL " , " PDO_MySQL " ); define ( " DRIVER " , " server " ); if ( extension_loaded ( " mysqli " )){ class
2018-12-15 21:22:00 +00:00
Min_DB
extends
MySQLi { var $extension = " MySQLi " ; function
__construct (){ parent :: init ();} function
2019-02-03 12:13:26 +00:00
connect ( $N = " " , $V = " " , $F = " " , $k = null , $ag = null , $rh = null ){ global $b ; mysqli_report ( MYSQLI_REPORT_OFF ); list ( $zd , $ag ) = explode ( " : " , $N , 2 ); $_h = $b -> connectSsl (); if ( $_h ) $this -> ssl_set ( $_h [ 'key' ], $_h [ 'cert' ], $_h [ 'ca' ], '' , '' ); $I =@ $this -> real_connect (( $N != " " ? $zd : ini_get ( " mysqli.default_host " )),( $N . $V != " " ? $V : ini_get ( " mysqli.default_user " )),( $N . $V . $F != " " ? $F : ini_get ( " mysqli.default_pw " )), $k ,( is_numeric ( $ag ) ? $ag : ini_get ( " mysqli.default_port " )),( ! is_numeric ( $ag ) ? $ag : $rh ),( $_h ? 64 : 0 )); $this -> options ( MYSQLI_OPT_LOCAL_INFILE , false ); return $I ;} function
2018-12-15 21:22:00 +00:00
set_charset ( $bb ){ if ( parent :: set_charset ( $bb )) return
true ; parent :: set_charset ( 'utf8' ); return $this -> query ( " SET NAMES $bb " );} function
2019-02-03 12:13:26 +00:00
result ( $G , $p = 0 ){ $H = $this -> query ( $G ); if ( ! $H ) return
false ; $J = $H -> fetch_array (); return $J [ $p ];} function
2018-12-15 21:22:00 +00:00
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 ( $N , $V , $F ){ if ( ini_bool ( " mysql.allow_local_infile " )){ $this -> error = sprintf ( 'Disable %s or enable %s or %s extensions.' , " 'mysql.allow_local_infile' " , " MySQLi " , " PDO_MySQL " ); return
false ;} $this -> _link =@ mysql_connect (( $N != " " ? $N : ini_get ( " mysql.default_host " )),( " $N $V " != " " ? $V : ini_get ( " mysql.default_user " )),( " $N $V $F " != " " ? $F : ini_get ( " mysql.default_password " )), true , 131072 ); if ( $this -> _link ) $this -> server_info = mysql_get_server_info ( $this -> _link ); else $this -> error = mysql_error (); return ( bool ) $this -> _link ;} function
set_charset ( $bb ){ if ( function_exists ( 'mysql_set_charset' )){ if ( mysql_set_charset ( $bb , $this -> _link )) return
true ; mysql_set_charset ( 'utf8' , $this -> _link );} return $this -> query ( " SET NAMES $bb " );} function
quote ( $P ){ return " ' " . mysql_real_escape_string ( $P , $this -> _link ) . " ' " ;} function
2019-02-03 12:13:26 +00:00
select_db ( $k ){ return
mysql_select_db ( $k , $this -> _link );} function
2018-12-15 21:22:00 +00:00
query ( $G , $Ai = false ){ $H =@ ( $Ai ? mysql_unbuffered_query ( $G , $this -> _link ) : mysql_query ( $G , $this -> _link )); $this -> error = " " ; if ( ! $H ){ $this -> errno = mysql_errno ( $this -> _link ); $this -> error = mysql_error ( $this -> _link ); return
false ;} if ( $H === true ){ $this -> affected_rows = mysql_affected_rows ( $this -> _link ); $this -> info = mysql_info ( $this -> _link ); return
true ;} return
new
Min_Result ( $H );} function
multi_query ( $G ){ return $this -> _result = $this -> query ( $G );} function
store_result (){ return $this -> _result ;} function
next_result (){ return
false ;} function
2019-02-03 12:13:26 +00:00
result ( $G , $p = 0 ){ $H = $this -> query ( $G ); if ( ! $H ||! $H -> num_rows ) return
2018-12-15 21:22:00 +00:00
false ; return
2019-02-03 12:13:26 +00:00
mysql_result ( $H -> _result , 0 , $p );}} class
2018-12-15 21:22:00 +00:00
Min_Result { var $num_rows , $_result , $_offset = 0 ; function
__construct ( $H ){ $this -> _result = $H ; $this -> num_rows = mysql_num_rows ( $H );} function
fetch_assoc (){ return
mysql_fetch_assoc ( $this -> _result );} function
fetch_row (){ return
mysql_fetch_row ( $this -> _result );} function
fetch_field (){ $I = mysql_fetch_field ( $this -> _result , $this -> _offset ++ ); $I -> orgtable = $I -> table ; $I -> orgname = $I -> name ; $I -> charsetnr = ( $I -> blob ? 63 : 0 ); return $I ;} function
__destruct (){ mysql_free_result ( $this -> _result );}}} elseif ( extension_loaded ( " pdo_mysql " )){ class
Min_DB
extends
Min_PDO { var $extension = " PDO_MySQL " ; function
2019-02-03 12:13:26 +00:00
connect ( $N , $V , $F ){ global $b ; $vf = array ( PDO :: MYSQL_ATTR_LOCAL_INFILE => false ); $_h = $b -> connectSsl (); if ( $_h ) $vf += array ( PDO :: MYSQL_ATTR_SSL_KEY => $_h [ 'key' ], PDO :: MYSQL_ATTR_SSL_CERT => $_h [ 'cert' ], PDO :: MYSQL_ATTR_SSL_CA => $_h [ 'ca' ],); $this -> dsn ( " mysql:charset=utf8;host= " . str_replace ( " : " , " ;unix_socket= " , preg_replace ( '~:(\d)~' , ';port=\1' , $N )), $V , $F , $vf ); return
2018-12-15 21:22:00 +00:00
true ;} function
set_charset ( $bb ){ $this -> query ( " SET NAMES $bb " );} function
2019-02-03 12:13:26 +00:00
select_db ( $k ){ return $this -> query ( " USE " . idf_escape ( $k ));} function
2018-12-15 21:22:00 +00:00
query ( $G , $Ai = false ){ $this -> setAttribute ( 1000 , ! $Ai ); return
parent :: query ( $G , $Ai );}}} class
Min_Driver
extends
Min_SQL { function
insert ( $Q , $O ){ return ( $O ? parent :: insert ( $Q , $O ) : queries ( " INSERT INTO " . table ( $Q ) . " () \n VALUES () " ));} function
2019-02-03 12:13:26 +00:00
insertUpdate ( $Q , $K , $hg ){ $f = array_keys ( reset ( $K )); $fg = " INSERT INTO " . table ( $Q ) . " ( " . implode ( " , " , $f ) . " ) VALUES \n " ; $Si = array (); foreach ( $f
as $z ) $Si [ $z ] = " $z = VALUES( $z ) " ; $Ih = " \n ON DUPLICATE KEY UPDATE " . implode ( " , " , $Si ); $Si = array (); $re = 0 ; foreach ( $K
as $O ){ $Y = " ( " . implode ( " , " , $O ) . " ) " ; if ( $Si && ( strlen ( $fg ) + $re + strlen ( $Y ) + strlen ( $Ih ) > 1e6 )){ if ( ! queries ( $fg . implode ( " , \n " , $Si ) . $Ih )) return
false ; $Si = array (); $re = 0 ;} $Si [] = $Y ; $re += strlen ( $Y ) + 2 ;} return
queries ( $fg . implode ( " , \n " , $Si ) . $Ih );} function
2018-12-15 21:22:00 +00:00
slowQuery ( $G , $di ){ if ( min_version ( '5.7.8' , '10.1.2' )){ if ( preg_match ( '~MariaDB~' , $this -> _conn -> server_info )) return " SET STATEMENT max_statement_time= $di FOR $G " ; elseif ( preg_match ( '~^(SELECT\b)(.+)~is' , $G , $B )) return " $B[1] /*+ MAX_EXECUTION_TIME( " . ( $di * 1000 ) . " ) */ $B[2] " ;}} function
2019-02-03 12:13:26 +00:00
convertSearch ( $v , $X , $p ){ return ( preg_match ( '~char|text|enum|set~' , $p [ " type " ]) &&! preg_match ( " ~^utf8~ " , $p [ " collation " ]) && preg_match ( '~[\x80-\xFF]~' , $X [ 'val' ]) ? " CONVERT( $v USING " . charset ( $this -> _conn ) . " ) " : $v );} function
2018-12-15 21:22:00 +00:00
warnings (){ $H = $this -> _conn -> query ( " SHOW WARNINGS " ); if ( $H && $H -> num_rows ){ ob_start (); select ( $H ); return
ob_get_clean ();}} function
2019-02-03 12:13:26 +00:00
tableHelp ( $C ){ $ze = preg_match ( '~MariaDB~' , $this -> _conn -> server_info ); if ( information_schema ( DB )) return
strtolower (( $ze ? " information-schema- $C -table/ " : str_replace ( " _ " , " - " , $C ) . " -table.html " )); if ( DB == " mysql " ) return ( $ze ? " mysql $C -table/ " : " system-database.html " );}} function
idf_escape ( $v ){ return " ` " . str_replace ( " ` " , " `` " , $v ) . " ` " ;} function
table ( $v ){ return
idf_escape ( $v );} function
2018-12-15 21:22:00 +00:00
connect (){ global $b , $U , $Fh ; $g = new
2019-02-03 12:13:26 +00:00
Min_DB ; $j = $b -> credentials (); if ( $g -> connect ( $j [ 0 ], $j [ 1 ], $j [ 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 )){ $Fh [ 'Strings' ][] = " json " ; $U [ " json " ] = 4294967295 ;} return $g ;} $I = $g -> error ; if ( function_exists ( 'iconv' ) &&! is_utf8 ( $I ) && strlen ( $Vg = iconv ( " windows-1250 " , " utf-8 " , $I )) > strlen ( $I )) $I = $Vg ; return $I ;} function
get_databases ( $Yc ){ $I = get_session ( " dbs " ); if ( $I === null ){ $G = ( min_version ( 5 ) ? " SELECT SCHEMA_NAME FROM information_schema.SCHEMATA ORDER BY SCHEMA_NAME " : " SHOW DATABASES " ); $I = ( $Yc ? slow_query ( $G ) : get_vals ( $G )); restart_session (); set_session ( " dbs " , $I ); stop_session ();} return $I ;} function
limit ( $G , $Z , $_ , $D = 0 , $M = " " ){ return " $G $Z " . ( $_ !== null ? $M . " LIMIT $_ " . ( $D ? " OFFSET $D " : " " ) : " " );} function
2018-12-15 21:22:00 +00:00
limit1 ( $Q , $G , $Z , $M = " \n " ){ return
limit ( $G , $Z , 1 , 0 , $M );} function
2019-02-03 12:13:26 +00:00
db_collation ( $m , $ob ){ global $g ; $I = null ; $i = $g -> result ( " SHOW CREATE DATABASE " . idf_escape ( $m ), 1 ); if ( preg_match ( '~ COLLATE ([^ ]+)~' , $i , $B )) $I = $B [ 1 ]; elseif ( preg_match ( '~ CHARACTER SET ([^ ]+)~' , $i , $B )) $I = $ob [ $B [ 1 ]][ - 1 ]; return $I ;} function
2018-12-15 21:22:00 +00:00
engines (){ $I = array (); foreach ( get_rows ( " SHOW ENGINES " ) as $J ){ if ( preg_match ( " ~YES|DEFAULT~ " , $J [ " Support " ])) $I [] = $J [ " Engine " ];} return $I ;} function
logged_user (){ global $g ; return $g -> result ( " SELECT USER() " );} function
tables_list (){ return
get_key_vals ( min_version ( 5 ) ? " SELECT TABLE_NAME, TABLE_TYPE FROM information_schema.TABLES WHERE TABLE_SCHEMA = DATABASE() ORDER BY TABLE_NAME " : " SHOW TABLES " );} function
2019-02-03 12:13:26 +00:00
count_tables ( $l ){ $I = array (); foreach ( $l
as $m ) $I [ $m ] = count ( get_vals ( " SHOW TABLES IN " . idf_escape ( $m ))); return $I ;} function
table_status ( $C = " " , $Mc = false ){ $I = array (); foreach ( get_rows ( $Mc && min_version ( 5 ) ? " SELECT TABLE_NAME AS Name, ENGINE AS Engine, TABLE_COMMENT AS Comment FROM information_schema.TABLES WHERE TABLE_SCHEMA = DATABASE() " . ( $C != " " ? " AND TABLE_NAME = " . q ( $C ) : " ORDER BY Name " ) : " SHOW TABLE STATUS " . ( $C != " " ? " LIKE " . q ( addcslashes ( $C , " %_ \\ " )) : " " )) as $J ){ if ( $J [ " Engine " ] == " InnoDB " ) $J [ " Comment " ] = preg_replace ( '~(?:(.+); )?InnoDB free: .*~' , '\1' , $J [ " Comment " ]); if ( ! isset ( $J [ " Engine " ])) $J [ " Comment " ] = " " ; if ( $C != " " ) return $J ; $I [ $J [ " Name " ]] = $J ;} return $I ;} function
2018-12-15 21:22:00 +00:00
is_view ( $R ){ return $R [ " Engine " ] === null ;} function
fk_support ( $R ){ return
preg_match ( '~InnoDB|IBMDB2I~i' , $R [ " Engine " ]) || ( preg_match ( '~NDB~i' , $R [ " Engine " ]) && min_version ( 5.6 ));} function
fields ( $Q ){ $I = array (); foreach ( get_rows ( " SHOW FULL COLUMNS FROM " . table ( $Q )) as $J ){ preg_match ( '~^([^( ]+)(?:\((.+)\))?( unsigned)?( zerofill)?$~' , $J [ " Type " ], $B ); $I [ $J [ " Field " ]] = array ( " field " => $J [ " Field " ], " full_type " => $J [ " Type " ], " type " => $B [ 1 ], " length " => $B [ 2 ], " unsigned " => ltrim ( $B [ 3 ] . $B [ 4 ]), " default " => ( $J [ " Default " ] != " " || preg_match ( " ~char|set~ " , $B [ 1 ]) ? $J [ " Default " ] : null ), " null " => ( $J [ " Null " ] == " YES " ), " auto_increment " => ( $J [ " Extra " ] == " auto_increment " ), " on_update " => ( preg_match ( '~^on update (.+)~i' , $J [ " Extra " ], $B ) ? $B [ 1 ] : " " ), " collation " => $J [ " Collation " ], " privileges " => array_flip ( preg_split ( '~, *~' , $J [ " Privileges " ])), " comment " => $J [ " Comment " ], " primary " => ( $J [ " Key " ] == " PRI " ),);} return $I ;} function
indexes ( $Q , $h = null ){ $I = array (); foreach ( get_rows ( " SHOW INDEX FROM " . table ( $Q ), $h ) as $J ){ $C = $J [ " Key_name " ]; $I [ $C ][ " type " ] = ( $C == " PRIMARY " ? " PRIMARY " : ( $J [ " Index_type " ] == " FULLTEXT " ? " FULLTEXT " : ( $J [ " Non_unique " ] ? ( $J [ " Index_type " ] == " SPATIAL " ? " SPATIAL " : " INDEX " ) : " UNIQUE " ))); $I [ $C ][ " columns " ][] = $J [ " Column_name " ]; $I [ $C ][ " lengths " ][] = ( $J [ " Index_type " ] == " SPATIAL " ? null : $J [ " Sub_part " ]); $I [ $C ][ " descs " ][] = null ;} return $I ;} function
2019-02-03 12:13:26 +00:00
foreign_keys ( $Q ){ global $g , $nf ; static $Xf = '(?:`(?:[^`]|``)+`)|(?:"(?:[^"]|"")+")' ; $I = array (); $Db = $g -> result ( " SHOW CREATE TABLE " . table ( $Q ), 1 ); if ( $Db ){ preg_match_all ( " ~CONSTRAINT ( $Xf ) FOREIGN KEY ? \\ (((?: $Xf ,? ?)+) \\ ) REFERENCES ( $Xf )(?: \\ .( $Xf ))? \\ (((?: $Xf ,? ?)+) \\ )(?: ON DELETE ( $nf ))?(?: ON UPDATE ( $nf ))?~ " , $Db , $Be , PREG_SET_ORDER ); foreach ( $Be
as $B ){ preg_match_all ( " ~ $Xf ~ " , $B [ 2 ], $th ); preg_match_all ( " ~ $Xf ~ " , $B [ 5 ], $Vh ); $I [ idf_unescape ( $B [ 1 ])] = array ( " db " => idf_unescape ( $B [ 4 ] != " " ? $B [ 3 ] : $B [ 4 ]), " table " => idf_unescape ( $B [ 4 ] != " " ? $B [ 4 ] : $B [ 3 ]), " source " => array_map ( 'idf_unescape' , $th [ 0 ]), " target " => array_map ( 'idf_unescape' , $Vh [ 0 ]), " on_delete " => ( $B [ 6 ] ? $B [ 6 ] : " RESTRICT " ), " on_update " => ( $B [ 7 ] ? $B [ 7 ] : " RESTRICT " ),);}} return $I ;} function
2018-12-15 21:22:00 +00:00
view ( $C ){ global $g ; return
array ( " select " => preg_replace ( '~^(?:[^`]|`[^`]*`)*\s+AS\s+~isU' , '' , $g -> result ( " SHOW CREATE VIEW " . table ( $C ), 1 )));} function
collations (){ $I = array (); foreach ( get_rows ( " SHOW COLLATION " ) as $J ){ if ( $J [ " Default " ]) $I [ $J [ " Charset " ]][ - 1 ] = $J [ " Collation " ]; else $I [ $J [ " Charset " ]][] = $J [ " Collation " ];} ksort ( $I ); foreach ( $I
2019-02-03 12:13:26 +00:00
as $z => $X ) asort ( $I [ $z ]); return $I ;} function
information_schema ( $m ){ return ( min_version ( 5 ) && $m == " information_schema " ) || ( min_version ( 5.5 ) && $m == " performance_schema " );} function
2018-12-15 21:22:00 +00:00
error (){ global $g ; return
h ( preg_replace ( '~^You have an error.*syntax to use~U' , " Syntax error " , $g -> error ));} function
2019-02-03 12:13:26 +00:00
create_database ( $m , $d ){ return
queries ( " CREATE DATABASE " . idf_escape ( $m ) . ( $d ? " COLLATE " . q ( $d ) : " " ));} function
drop_databases ( $l ){ $I = apply_queries ( " DROP DATABASE " , $l , 'idf_escape' ); restart_session (); set_session ( " dbs " , null ); return $I ;} function
rename_database ( $C , $d ){ $I = false ; if ( create_database ( $C , $d )){ $Hg = array (); foreach ( tables_list () as $Q => $T ) $Hg [] = table ( $Q ) . " TO " . idf_escape ( $C ) . " . " . table ( $Q ); $I = ( ! $Hg || queries ( " RENAME TABLE " . implode ( " , " , $Hg ))); if ( $I ) queries ( " DROP DATABASE " . idf_escape ( DB )); restart_session (); set_session ( " dbs " , null );} return $I ;} function
auto_increment (){ $Ma = " PRIMARY KEY " ; if ( $_GET [ " create " ] != " " && $_POST [ " auto_increment_col " ]){ foreach ( indexes ( $_GET [ " create " ]) as $w ){ if ( in_array ( $_POST [ " fields " ][ $_POST [ " auto_increment_col " ]][ " orig " ], $w [ " columns " ], true )){ $Ma = " " ; break ;} if ( $w [ " type " ] == " PRIMARY " ) $Ma = " UNIQUE " ;}} return " AUTO_INCREMENT $Ma " ;} function
alter_table ( $Q , $C , $q , $ad , $tb , $sc , $d , $La , $Rf ){ $c = array (); foreach ( $q
as $p ) $c [] = ( $p [ 1 ] ? ( $Q != " " ? ( $p [ 0 ] != " " ? " CHANGE " . idf_escape ( $p [ 0 ]) : " ADD " ) : " " ) . " " . implode ( $p [ 1 ]) . ( $Q != " " ? $p [ 2 ] : " " ) : " DROP " . idf_escape ( $p [ 0 ])); $c = array_merge ( $c , $ad ); $Ch = ( $tb !== null ? " COMMENT= " . q ( $tb ) : " " ) . ( $sc ? " ENGINE= " . q ( $sc ) : " " ) . ( $d ? " COLLATE " . q ( $d ) : " " ) . ( $La != " " ? " AUTO_INCREMENT= $La " : " " ); if ( $Q == " " ) return
queries ( " CREATE TABLE " . table ( $C ) . " ( \n " . implode ( " , \n " , $c ) . " \n ) $Ch $Rf " ); if ( $Q != $C ) $c [] = " RENAME TO " . table ( $C ); if ( $Ch ) $c [] = ltrim ( $Ch ); return ( $c || $Rf ? queries ( " ALTER TABLE " . table ( $Q ) . " \n " . implode ( " , \n " , $c ) . $Rf ) : true );} function
2018-12-15 21:22:00 +00:00
alter_indexes ( $Q , $c ){ foreach ( $c
2019-02-03 12:13:26 +00:00
as $z => $X ) $c [ $z ] = ( $X [ 2 ] == " DROP " ? " \n DROP INDEX " . idf_escape ( $X [ 1 ]) : " \n ADD $X[0] " . ( $X [ 0 ] == " PRIMARY " ? " KEY " : " " ) . ( $X [ 1 ] != " " ? idf_escape ( $X [ 1 ]) . " " : " " ) . " ( " . implode ( " , " , $X [ 2 ]) . " ) " ); return
2018-12-15 21:22:00 +00:00
queries ( " ALTER TABLE " . table ( $Q ) . implode ( " , " , $c ));} function
truncate_tables ( $S ){ return
apply_queries ( " TRUNCATE TABLE " , $S );} function
drop_views ( $Xi ){ return
queries ( " DROP VIEW " . implode ( " , " , array_map ( 'table' , $Xi )));} function
drop_tables ( $S ){ return
queries ( " DROP TABLE " . implode ( " , " , array_map ( 'table' , $S )));} function
2019-02-03 12:13:26 +00:00
move_tables ( $S , $Xi , $Vh ){ $Hg = array (); foreach ( array_merge ( $S , $Xi ) as $Q ) $Hg [] = table ( $Q ) . " TO " . idf_escape ( $Vh ) . " . " . table ( $Q ); return
queries ( " RENAME TABLE " . implode ( " , " , $Hg ));} function
2018-12-15 21:22:00 +00:00
copy_tables ( $S , $Xi , $Vh ){ queries ( " SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO' " ); foreach ( $S
as $Q ){ $C = ( $Vh == DB ? table ( " copy_ $Q " ) : idf_escape ( $Vh ) . " . " . table ( $Q )); if ( ! queries ( " CREATE TABLE $C LIKE " . table ( $Q )) ||! queries ( " INSERT INTO $C SELECT * FROM " . table ( $Q ))) return
false ; foreach ( get_rows ( " SHOW TRIGGERS LIKE " . q ( addcslashes ( $Q , " %_ \\ " ))) as $J ){ $vi = $J [ " Trigger " ]; if ( ! queries ( " CREATE TRIGGER " . ( $Vh == DB ? idf_escape ( " copy_ $vi " ) : idf_escape ( $Vh ) . " . " . idf_escape ( $vi )) . " $J[Timing] $J[Event] ON $C FOR EACH ROW \n $J[Statement] ; " )) return
false ;}} foreach ( $Xi
as $Q ){ $C = ( $Vh == DB ? table ( " copy_ $Q " ) : idf_escape ( $Vh ) . " . " . table ( $Q )); $Wi = view ( $Q ); if ( ! queries ( " CREATE VIEW $C AS $Wi[select] " )) return
false ;} return
true ;} function
trigger ( $C ){ if ( $C == " " ) return
array (); $K = get_rows ( " SHOW TRIGGERS WHERE `Trigger` = " . q ( $C )); return
reset ( $K );} function
triggers ( $Q ){ $I = array (); foreach ( get_rows ( " SHOW TRIGGERS LIKE " . q ( addcslashes ( $Q , " %_ \\ " ))) as $J ) $I [ $J [ " Trigger " ]] = array ( $J [ " Timing " ], $J [ " Event " ]); return $I ;} function
trigger_options (){ return
array ( " Timing " => array ( " BEFORE " , " AFTER " ), " Event " => array ( " INSERT " , " UPDATE " , " DELETE " ), " Type " => array ( " FOR EACH ROW " ),);} function
2019-02-03 12:13:26 +00:00
routine ( $C , $T ){ global $g , $uc , $Pd , $U ; $Ca = array ( " bool " , " boolean " , " integer " , " double precision " , " real " , " dec " , " numeric " , " fixed " , " national char " , " national varchar " ); $uh = " (?: \\ s|/ \\ *[ \ s \ S]*? \\ */|(?:#|-- )[^ \n ]* \n ?|-- \r ? \n ) " ; $_i = " (( " . implode ( " | " , array_merge ( array_keys ( $U ), $Ca )) . " ) \\ b(?: \\ s* \\ (((?:[^' \" )]| $uc )++) \\ ))? \\ s*(zerofill \\ s*)?(unsigned(?: \\ s+zerofill)?)?)(?: \\ s*(?:CHARSET|CHARACTER \\ s+SET) \\ s*[' \" ]?([^' \" \\ s,]+)[' \" ]?)? " ; $Xf = " $uh *( " . ( $T == " FUNCTION " ? " " : $Pd ) . " )? \\ s*(?:`((?:[^`]|``)*)` \\ s*| \\ b( \\ S+) \\ s+) $_i " ; $i = $g -> result ( " SHOW CREATE $T " . idf_escape ( $C ), 2 ); preg_match ( " ~ \\ (((?: $Xf\\s *,?)*) \\ ) \\ s* " . ( $T == " FUNCTION " ? " RETURNS \\ s+ $_i\\s + " : " " ) . " (.*)~is " , $i , $B ); $q = array (); preg_match_all ( " ~ $Xf\\s *,?~is " , $B [ 1 ], $Be , PREG_SET_ORDER ); foreach ( $Be
as $Kf ){ $C = str_replace ( " `` " , " ` " , $Kf [ 2 ]) . $Kf [ 3 ]; $q [] = array ( " field " => $C , " type " => strtolower ( $Kf [ 5 ]), " length " => preg_replace_callback ( " ~ $uc ~s " , 'normalize_enum' , $Kf [ 6 ]), " unsigned " => strtolower ( preg_replace ( '~\s+~' , ' ' , trim ( " $Kf[8] $Kf[7] " ))), " null " => 1 , " full_type " => $Kf [ 4 ], " inout " => strtoupper ( $Kf [ 1 ]), " collation " => strtolower ( $Kf [ 9 ]),);} if ( $T != " FUNCTION " ) return
array ( " fields " => $q , " definition " => $B [ 11 ]); return
array ( " fields " => $q , " returns " => array ( " type " => $B [ 12 ], " length " => $B [ 13 ], " unsigned " => $B [ 15 ], " collation " => $B [ 16 ]), " definition " => $B [ 17 ], " language " => " SQL " ,);} function
2018-12-15 21:22:00 +00:00
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 ( $C , $J ){ return
idf_escape ( $C );} function
last_id (){ global $g ; return $g -> result ( " SELECT LAST_INSERT_ID() " );} function
explain ( $g , $G ){ return $g -> query ( " EXPLAIN " . ( min_version ( 5.1 ) ? " PARTITIONS " : " " ) . $G );} function
found_rows ( $R , $Z ){ return ( $Z || $R [ " Engine " ] != " InnoDB " ? null : $R [ " Rows " ]);} function
types (){ return
array ();} function
schemas (){ return
array ();} function
get_schema (){ return " " ;} function
2019-02-03 12:13:26 +00:00
set_schema ( $Xg ){ return
2018-12-15 21:22:00 +00:00
true ;} function
create_sql ( $Q , $La , $Gh ){ global $g ; $I = $g -> result ( " SHOW CREATE TABLE " . table ( $Q ), 1 ); if ( ! $La ) $I = preg_replace ( '~ AUTO_INCREMENT=\d+~' , '' , $I ); return $I ;} function
truncate_sql ( $Q ){ return " TRUNCATE " . table ( $Q );} function
2019-02-03 12:13:26 +00:00
use_sql ( $k ){ return " USE " . idf_escape ( $k );} function
2018-12-15 21:22:00 +00:00
trigger_sql ( $Q ){ $I = " " ; foreach ( get_rows ( " SHOW TRIGGERS LIKE " . q ( addcslashes ( $Q , " %_ \\ " )), null , " -- " ) as $J ) $I .= " \n CREATE TRIGGER " . idf_escape ( $J [ " Trigger " ]) . " $J[Timing] $J[Event] ON " . table ( $J [ " Table " ]) . " FOR EACH ROW \n $J[Statement] ;; \n " ; return $I ;} function
show_variables (){ return
get_key_vals ( " SHOW VARIABLES " );} function
process_list (){ return
get_rows ( " SHOW FULL PROCESSLIST " );} function
show_status (){ return
get_key_vals ( " SHOW STATUS " );} function
2019-02-03 12:13:26 +00:00
convert_field ( $p ){ if ( preg_match ( " ~binary~ " , $p [ " type " ])) return " HEX( " . idf_escape ( $p [ " field " ]) . " ) " ; if ( $p [ " type " ] == " bit " ) return " BIN( " . idf_escape ( $p [ " field " ]) . " + 0) " ; if ( preg_match ( " ~geometry|point|linestring|polygon~ " , $p [ " type " ])) return ( min_version ( 8 ) ? " ST_ " : " " ) . " AsWKT( " . idf_escape ( $p [ " field " ]) . " ) " ;} function
unconvert_field ( $p , $I ){ if ( preg_match ( " ~binary~ " , $p [ " type " ])) $I = " UNHEX( $I ) " ; if ( $p [ " type " ] == " bit " ) $I = " CONV( $I , 2, 10) + 0 " ; if ( preg_match ( " ~geometry|point|linestring|polygon~ " , $p [ " type " ])) $I = ( min_version ( 8 ) ? " ST_ " : " " ) . " GeomFromText( $I ) " ; return $I ;} function
support ( $Nc ){ 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 " ))) . " ~ " , $Nc );} function
2018-12-15 21:22:00 +00:00
kill_process ( $X ){ return
queries ( " KILL " . number ( $X ));} function
connection_id (){ return " SELECT CONNECTION_ID() " ;} function
2019-02-03 12:13:26 +00:00
max_connections (){ global $g ; return $g -> result ( " SELECT @@max_connections " );} $y = " sql " ; $U = array (); $Fh = array (); foreach ( array ( 'Numbers' => array ( " tinyint " => 3 , " smallint " => 5 , " mediumint " => 8 , " int " => 10 , " bigint " => 20 , " decimal " => 66 , " float " => 12 , " double " => 21 ), 'Date and time' => array ( " date " => 10 , " datetime " => 19 , " timestamp " => 19 , " time " => 10 , " year " => 4 ), 'Strings' => array ( " char " => 255 , " varchar " => 65535 , " tinytext " => 255 , " text " => 65535 , " mediumtext " => 16777215 , " longtext " => 4294967295 ), 'Lists' => array ( " enum " => 65535 , " set " => 64 ), 'Binary' => array ( " bit " => 20 , " binary " => 255 , " varbinary " => 65535 , " tinyblob " => 255 , " blob " => 65535 , " mediumblob " => 16777215 , " longblob " => 4294967295 ), 'Geometry' => array ( " geometry " => 0 , " point " => 0 , " linestring " => 0 , " polygon " => 0 , " multipoint " => 0 , " multilinestring " => 0 , " multipolygon " => 0 , " geometrycollection " => 0 ),) as $z => $X ){ $U += $X ; $Fh [ $z ] = array_keys ( $X );} $Gi = array ( " unsigned " , " zerofill " , " unsigned zerofill " ); $sf = array ( " = " , " < " , " > " , " <= " , " >= " , " != " , " LIKE " , " LIKE %% " , " REGEXP " , " IN " , " FIND_IN_SET " , " IS NULL " , " NOT LIKE " , " NOT REGEXP " , " NOT IN " , " IS NOT NULL " , " SQL " ); $id = array ( " char_length " , " date " , " from_unixtime " , " lower " , " round " , " floor " , " ceil " , " sec_to_time " , " time_to_sec " , " upper " ); $od = array ( " avg " , " count " , " count distinct " , " group_concat " , " max " , " min " , " sum " ); $kc = 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 " , 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.1 " ; class
2018-12-15 21:22:00 +00:00
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 ( $N ){ return
h ( $N );} function
database (){ return
DB ;} function
2019-02-03 12:13:26 +00:00
databases ( $Yc = true ){ return
get_databases ( $Yc );} function
2018-12-15 21:22:00 +00:00
schemas (){ return
schemas ();} function
queryTimeout (){ return
2 ;} function
headers (){} function
csp (){ return
csp ();} function
head (){ return
true ;} function
2019-02-03 12:13:26 +00:00
css (){ $I = array (); $Sc = " adminer.css " ; if ( file_exists ( $Sc )) $I [] = $Sc ; return $I ;} function
loginForm (){ global $cc ; echo " <table cellspacing='0' class='layout'> \n " , $this -> loginFormField ( 'driver' , '<tr><th>' . 'System' . '<td>' , html_select ( " auth[driver] " , $cc , 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 ( $C , $vd , $Y ){ return $vd . $Y ;} function
login ( $we , $F ){ return
2018-12-15 21:22:00 +00:00
true ;} function
tableName ( $Mh ){ return
h ( $Mh [ " Name " ]);} function
2019-02-03 12:13:26 +00:00
fieldName ( $p , $xf = 0 ){ return '<span title="' . h ( $p [ " full_type " ]) . '">' . h ( $p [ " field " ]) . '</span>' ;} function
selectLinks ( $Mh , $O = " " ){ global $y , $n ; echo '<p class="links">' ; $ue = array ( " select " => 'Select data' ); if ( support ( " table " ) || support ( " indexes " )) $ue [ " table " ] = 'Show structure' ; if ( support ( " table " )){ if ( is_view ( $Mh )) $ue [ " view " ] = 'Alter view' ; else $ue [ " create " ] = 'Alter table' ;} if ( $O !== null ) $ue [ " edit " ] = 'New item' ; $C = $Mh [ " Name " ]; foreach ( $ue
as $z => $X ) echo " <a href=' " . h ( ME ) . " $z = " . urlencode ( $C ) . ( $z == " edit " ? $O : " " ) . " ' " . bold ( isset ( $_GET [ $z ])) . " > $X </a> " ; echo
doc_link ( array ( $y => $n -> tableHelp ( $C )), " ? " ), " \n " ;} function
2018-12-15 21:22:00 +00:00
foreignKeys ( $Q ){ return
foreign_keys ( $Q );} function
backwardKeys ( $Q , $Lh ){ return
array ();} function
backwardKeysPrint ( $Oa , $J ){} function
2019-02-03 12:13:26 +00:00
selectQuery ( $G , $Ah , $Lc = false ){ global $y , $n ; $I = " </p> \n " ; if ( ! $Lc && ( $aj = $n -> warnings ())){ $u = " warnings " ; $I = " , <a href='# $u '> " . 'Warnings' . " </a> " . script ( " qsl('a').onclick = partial(toggle, ' $u '); " , " " ) . " $I <div id=' $u ' class='hidden'> \n $aj </div> \n " ;} return " <p><code class='jush- $y '> " . h ( str_replace ( " \n " , " " , $G )) . " </code> <span class='time'>( " . format_time ( $Ah ) . " )</span> " . ( support ( " sql " ) ? " <a href=' " . h ( ME ) . " sql= " . urlencode ( $G ) . " '> " . 'Edit' . " </a> " : " " ) . $I ;} function
2018-12-15 21:22:00 +00:00
sqlCommandQuery ( $G ){ return
shorten_utf8 ( trim ( $G ), 1000 );} function
rowDescription ( $Q ){ return " " ;} function
2019-02-03 12:13:26 +00:00
rowDescriptions ( $K , $bd ){ return $K ;} function
selectLink ( $X , $p ){} function
selectVal ( $X , $A , $p , $Ef ){ $I = ( $X === null ? " <i>NULL</i> " : ( preg_match ( " ~char|binary|boolean~ " , $p [ " type " ]) &&! preg_match ( " ~var~ " , $p [ " type " ]) ? " <code> $X </code> " : $X )); if ( preg_match ( '~blob|bytea|raw|file~' , $p [ " type " ]) &&! is_utf8 ( $X )) $I = " <i> " . lang ( array ( '%d byte' , '%d bytes' ), strlen ( $Ef )) . " </i> " ; if ( preg_match ( '~json~' , $p [ " type " ])) $I = " <code class='jush-js'> $I </code> " ; return ( $A ? " <a href=' " . h ( $A ) . " ' " . ( is_url ( $A ) ? target_blank () : " " ) . " > $I </a> " : $I );} function
editVal ( $X , $p ){ return $X ;} function
tableStructurePrint ( $q ){ echo " <div class='scrollable'> \n " , " <table cellspacing='0' class='nowrap'> \n " , " <thead><tr><th> " . 'Column' . " <td> " . 'Type' . ( support ( " comment " ) ? " <td> " . 'Comment' : " " ) . " </thead> \n " ; foreach ( $q
as $p ){ echo " <tr " . odd () . " ><th> " . h ( $p [ " field " ]), " <td><span title=' " . h ( $p [ " collation " ]) . " '> " . h ( $p [ " full_type " ]) . " </span> " ,( $p [ " null " ] ? " <i>NULL</i> " : " " ),( $p [ " auto_increment " ] ? " <i> " . 'Auto Increment' . " </i> " : " " ),( isset ( $p [ " default " ]) ? " <span title=' " . 'Default value' . " '>[<b> " . h ( $p [ " default " ]) . " </b>]</span> " : " " ),( support ( " comment " ) ? " <td> " . h ( $p [ " comment " ]) : " " ), " \n " ;} echo " </table> \n " , " </div> \n " ;} function
tableIndexesPrint ( $x ){ echo " <table cellspacing='0'> \n " ; foreach ( $x
as $C => $w ){ ksort ( $w [ " columns " ]); $jg = array (); foreach ( $w [ " columns " ] as $z => $X ) $jg [] = " <i> " . h ( $X ) . " </i> " . ( $w [ " lengths " ][ $z ] ? " ( " . $w [ " lengths " ][ $z ] . " ) " : " " ) . ( $w [ " descs " ][ $z ] ? " DESC " : " " ); echo " <tr title=' " . h ( $C ) . " '><th> $w[type] <td> " . implode ( " , " , $jg ) . " \n " ;} echo " </table> \n " ;} function
selectColumnsPrint ( $L , $f ){ global $id , $od ; print_fieldset ( " select " , 'Select' , $L ); $t = 0 ; $L [ " " ] = array (); foreach ( $L
as $z => $X ){ $X = $_GET [ " columns " ][ $z ]; $e = select_input ( " name='columns[ $t ][col]' " , $f , $X [ " col " ],( $z !== " " ? " selectFieldChange " : " selectAddRow " )); echo " <div> " . ( $id || $od ? " <select name='columns[ $t ][fun]'> " . optionlist ( array ( - 1 => " " ) + array_filter ( array ( 'Functions' => $id , 'Aggregation' => $od )), $X [ " fun " ]) . " </select> " . on_help ( " getTarget(event).value && getTarget(event).value.replace(/ | \$ /, '(') + ')' " , 1 ) . script ( " qsl('select').onchange = function () { helpClose(); " . ( $z !== " " ? " " : " qsl('select, input', this.parentNode).onchange(); " ) . " }; " , " " ) . " ( $e ) " : $e ) . " </div> \n " ; $t ++ ;} echo " </div></fieldset> \n " ;} function
selectSearchPrint ( $Z , $f , $x ){ print_fieldset ( " search " , 'Search' , $Z ); foreach ( $x
as $t => $w ){ if ( $w [ " type " ] == " FULLTEXT " ){ echo " <div>(<i> " . implode ( " </i>, <i> " , array_map ( 'h' , $w [ " columns " ])) . " </i>) AGAINST " , " <input type='search' name='fulltext[ $t ]' value=' " . h ( $_GET [ " fulltext " ][ $t ]) . " '> " , script ( " qsl('input').oninput = selectFieldChange; " , " " ), checkbox ( " boolean[ $t ] " , 1 , isset ( $_GET [ " boolean " ][ $t ]), " BOOL " ), " </div> \n " ;}} $ab = " this.parentNode.firstChild.onchange(); " ; foreach ( array_merge (( array ) $_GET [ " where " ], array ( array ())) as $t => $X ){ if ( ! $X || ( " $X[col] $X[val] " != " " && in_array ( $X [ " op " ], $this -> operators ))){ echo " <div> " . select_input ( " name='where[ $t ][col]' " , $f , $X [ " col " ],( $X ? " selectFieldChange " : " selectAddRow " ), " ( " . 'anywhere' . " ) " ), html_select ( " where[ $t ][op] " , $this -> operators , $X [ " op " ], $ab ), " <input type='search' name='where[ $t ][val]' value=' " . h ( $X [ " val " ]) . " '> " , script ( " mixin(qsl('input'), { oninput: function () { $ab }, onkeydown: selectSearchKeydown, onsearch: selectSearchSearch}); " , " " ), " </div> \n " ;}} echo " </div></fieldset> \n " ;} function
selectOrderPrint ( $xf , $f , $x ){ print_fieldset ( " sort " , 'Sort' , $xf ); $t = 0 ; foreach (( array ) $_GET [ " order " ] as $z => $X ){ if ( $X != " " ){ echo " <div> " . select_input ( " name='order[ $t ]' " , $f , $X , " selectFieldChange " ), checkbox ( " desc[ $t ] " , 1 , isset ( $_GET [ " desc " ][ $z ]), 'descending' ) . " </div> \n " ; $t ++ ;}} echo " <div> " . select_input ( " name='order[ $t ]' " , $f , " " , " selectAddRow " ), checkbox ( " desc[ $t ] " , 1 , false , 'descending' ) . " </div> \n " , " </div></fieldset> \n " ;} function
selectLimitPrint ( $_ ){ echo " <fieldset><legend> " . 'Limit' . " </legend><div> " ; echo " <input type='number' name='limit' class='size' value=' " . h ( $_ ) . " '> " , script ( " qsl('input').oninput = selectFieldChange; " , " " ), " </div></fieldset> \n " ;} function
2018-12-15 21:22:00 +00:00
selectLengthPrint ( $bi ){ if ( $bi !== null ){ echo " <fieldset><legend> " . 'Text length' . " </legend><div> " , " <input type='number' name='text_length' class='size' value=' " . h ( $bi ) . " '> " , " </div></fieldset> \n " ;}} function
2019-02-03 12:13:26 +00:00
selectActionPrint ( $x ){ echo " <fieldset><legend> " . 'Action' . " </legend><div> " , " <input type='submit' value=' " . 'Select' . " '> " , " <span id='noindex' title=' " . 'Full table scan' . " '></span> " , " <script " . nonce () . " > \n " , " var indexColumns = " ; $f = array (); foreach ( $x
as $w ){ $Ib = reset ( $w [ " columns " ]); if ( $w [ " type " ] != " FULLTEXT " && $Ib ) $f [ $Ib ] = 1 ;} $f [ " " ] = 1 ; foreach ( $f
as $z => $X ) json_row ( $z ); echo " ; \n " , " selectFieldChange.call(qs('#form')['select']); \n " , " </script> \n " , " </div></fieldset> \n " ;} function
2018-12-15 21:22:00 +00:00
selectCommandPrint (){ return ! information_schema ( DB );} function
selectImportPrint (){ return ! information_schema ( DB );} function
2019-02-03 12:13:26 +00:00
selectEmailPrint ( $pc , $f ){} function
selectColumnsProcess ( $f , $x ){ global $id , $od ; $L = array (); $ld = array (); foreach (( array ) $_GET [ " columns " ] as $z => $X ){ if ( $X [ " fun " ] == " count " || ( $X [ " col " ] != " " && ( ! $X [ " fun " ] || in_array ( $X [ " fun " ], $id ) || in_array ( $X [ " fun " ], $od )))){ $L [ $z ] = apply_sql_function ( $X [ " fun " ],( $X [ " col " ] != " " ? idf_escape ( $X [ " col " ]) : " * " )); if ( ! in_array ( $X [ " fun " ], $od )) $ld [] = $L [ $z ];}} return
array ( $L , $ld );} function
selectSearchProcess ( $q , $x ){ global $g , $n ; $I = array (); foreach ( $x
as $t => $w ){ if ( $w [ " type " ] == " FULLTEXT " && $_GET [ " fulltext " ][ $t ] != " " ) $I [] = " MATCH ( " . implode ( " , " , array_map ( 'idf_escape' , $w [ " columns " ])) . " ) AGAINST ( " . q ( $_GET [ " fulltext " ][ $t ]) . ( isset ( $_GET [ " boolean " ][ $t ]) ? " IN BOOLEAN MODE " : " " ) . " ) " ;} foreach (( array ) $_GET [ " where " ] as $z => $X ){ if ( " $X[col] $X[val] " != " " && in_array ( $X [ " op " ], $this -> operators )){ $fg = " " ; $ub = " $X[op] " ; if ( preg_match ( '~IN$~' , $X [ " op " ])){ $Fd = process_length ( $X [ " val " ]); $ub .= " " . ( $Fd != " " ? $Fd : " (NULL) " );} elseif ( $X [ " op " ] == " SQL " ) $ub = " $X[val] " ; elseif ( $X [ " op " ] == " LIKE %% " ) $ub = " LIKE " . $this -> processInput ( $q [ $X [ " col " ]], " % $X[val] % " ); elseif ( $X [ " op " ] == " ILIKE %% " ) $ub = " ILIKE " . $this -> processInput ( $q [ $X [ " col " ]], " % $X[val] % " ); elseif ( $X [ " op " ] == " FIND_IN_SET " ){ $fg = " $X[op] ( " . q ( $X [ " val " ]) . " , " ; $ub = " ) " ;} elseif ( ! preg_match ( '~NULL$~' , $X [ " op " ])) $ub .= " " . $this -> processInput ( $q [ $X [ " col " ]], $X [ " val " ]); if ( $X [ " col " ] != " " ) $I [] = $fg . $n -> convertSearch ( idf_escape ( $X [ " col " ]), $X , $q [ $X [ " col " ]]) . $ub ; else { $qb = array (); foreach ( $q
as $C => $p ){ if (( preg_match ( '~^[-\d.' . ( preg_match ( '~IN$~' , $X [ " op " ]) ? ',' : '' ) . ']+$~' , $X [ " val " ]) ||! preg_match ( '~' . number_type () . '|bit~' , $p [ " type " ])) && ( ! preg_match ( " ~[ \x80 - \xFF ]~ " , $X [ " val " ]) || preg_match ( '~char|text|enum|set~' , $p [ " type " ]))) $qb [] = $fg . $n -> convertSearch ( idf_escape ( $C ), $X , $p ) . $ub ;} $I [] = ( $qb ? " ( " . implode ( " OR " , $qb ) . " ) " : " 1 = 0 " );}}} return $I ;} function
selectOrderProcess ( $q , $x ){ $I = array (); foreach (( array ) $_GET [ " order " ] as $z => $X ){ if ( $X != " " ) $I [] = ( preg_match ( '~^((COUNT\(DISTINCT |[A-Z0-9_]+\()(`(?:[^`]|``)+`|"(?:[^"]|"")+")\)|COUNT\(\*\))$~' , $X ) ? $X : idf_escape ( $X )) . ( isset ( $_GET [ " desc " ][ $z ]) ? " DESC " : " " );} return $I ;} function
2018-12-15 21:22:00 +00:00
selectLimitProcess (){ return ( isset ( $_GET [ " limit " ]) ? $_GET [ " limit " ] : " 50 " );} function
selectLengthProcess (){ return ( isset ( $_GET [ " text_length " ]) ? $_GET [ " text_length " ] : " 100 " );} function
2019-02-03 12:13:26 +00:00
selectEmailProcess ( $Z , $bd ){ return
2018-12-15 21:22:00 +00:00
false ;} function
2019-02-03 12:13:26 +00:00
selectQueryBuild ( $L , $Z , $ld , $xf , $_ , $E ){ return " " ;} function
messageQuery ( $G , $ci , $Lc = false ){ global $y , $n ; restart_session (); $wd =& get_session ( " queries " ); if ( ! $wd [ $_GET [ " db " ]]) $wd [ $_GET [ " db " ]] = array (); if ( strlen ( $G ) > 1e6 ) $G = preg_replace ( '~[\x80-\xFF]+$~' , '' , substr ( $G , 0 , 1e6 )) . " \n … " ; $wd [ $_GET [ " db " ]][] = array ( $G , time (), $ci ); $yh = " sql- " . count ( $wd [ $_GET [ " db " ]]); $I = " <a href='# $yh ' class='toggle'> " . 'SQL command' . " </a> \n " ; if ( ! $Lc && ( $aj = $n -> warnings ())){ $u = " warnings- " . count ( $wd [ $_GET [ " db " ]]); $I = " <a href='# $u ' class='toggle'> " . 'Warnings' . " </a>, $I <div id=' $u ' class='hidden'> \n $aj </div> \n " ;} return " <span class='time'> " .@ date ( " H:i:s " ) . " </span> " . " $I <div id=' $yh ' class='hidden'><pre><code class='jush- $y '> " . shorten_utf8 ( $G , 1000 ) . " </code></pre> " . ( $ci ? " <span class='time'>( $ci )</span> " : '' ) . ( support ( " sql " ) ? '<p><a href="' . h ( str_replace ( " db= " . urlencode ( DB ), " db= " . urlencode ( $_GET [ " db " ]), ME ) . 'sql=&history=' . ( count ( $wd [ $_GET [ " db " ]]) - 1 )) . '">' . 'Edit' . '</a>' : '' ) . '</div>' ;} function
editFunctions ( $p ){ global $kc ; $I = ( $p [ " null " ] ? " NULL/ " : " " ); foreach ( $kc
as $z => $id ){ if ( ! $z || ( ! isset ( $_GET [ " call " ]) && ( isset ( $_GET [ " select " ]) || where ( $_GET )))){ foreach ( $id
as $Xf => $X ){ if ( ! $Xf || preg_match ( " ~ $Xf ~ " , $p [ " type " ])) $I .= " / $X " ;} if ( $z &&! preg_match ( '~set|blob|bytea|raw|file~' , $p [ " type " ])) $I .= " /SQL " ;}} if ( $p [ " auto_increment " ] &&! isset ( $_GET [ " select " ]) &&! where ( $_GET )) $I = 'Auto Increment' ; return
2018-12-15 21:22:00 +00:00
explode ( " / " , $I );} function
2019-02-03 12:13:26 +00:00
editInput ( $Q , $p , $Ja , $Y ){ if ( $p [ " type " ] == " enum " ) return ( isset ( $_GET [ " select " ]) ? " <label><input type='radio' $Ja value='-1' checked><i> " . 'original' . " </i></label> " : " " ) . ( $p [ " null " ] ? " <label><input type='radio' $Ja value='' " . ( $Y !== null || isset ( $_GET [ " select " ]) ? " " : " checked " ) . " ><i>NULL</i></label> " : " " ) . enum_input ( " radio " , $Ja , $p , $Y , 0 ); return " " ;} function
editHint ( $Q , $p , $Y ){ return " " ;} function
processInput ( $p , $Y , $s = " " ){ if ( $s == " SQL " ) return $Y ; $C = $p [ " field " ]; $I = q ( $Y ); if ( preg_match ( '~^(now|getdate|uuid)$~' , $s )) $I = " $s () " ; elseif ( preg_match ( '~^current_(date|timestamp)$~' , $s )) $I = $s ; elseif ( preg_match ( '~^([+-]|\|\|)$~' , $s )) $I = idf_escape ( $C ) . " $s $I " ; elseif ( preg_match ( '~^[+-] interval$~' , $s )) $I = idf_escape ( $C ) . " $s " . ( preg_match ( " ~^( \\ d+|'[0-9.: -]') [A-Z_]+ \$ ~i " , $Y ) ? $Y : $I ); elseif ( preg_match ( '~^(addtime|subtime|concat)$~' , $s )) $I = " $s ( " . idf_escape ( $C ) . " , $I ) " ; elseif ( preg_match ( '~^(md5|sha1|password|encrypt)$~' , $s )) $I = " $s ( $I ) " ; return
unconvert_field ( $p , $I );} function
2018-12-15 21:22:00 +00:00
dumpOutput (){ $I = array ( 'text' => 'open' , 'file' => 'save' ); if ( function_exists ( 'gzencode' )) $I [ 'gz' ] = 'gzip' ; return $I ;} function
dumpFormat (){ return
array ( 'sql' => 'SQL' , 'csv' => 'CSV,' , 'csv;' => 'CSV;' , 'tsv' => 'TSV' );} function
2019-02-03 12:13:26 +00:00
dumpDatabase ( $m ){} function
dumpTable ( $Q , $Gh , $Yd = 0 ){ if ( $_POST [ " format " ] != " sql " ){ echo " \xef \xbb \xbf " ; if ( $Gh ) dump_csv ( array_keys ( fields ( $Q )));} else { if ( $Yd == 2 ){ $q = array (); foreach ( fields ( $Q ) as $C => $p ) $q [] = idf_escape ( $C ) . " $p[full_type] " ; $i = " CREATE TABLE " . table ( $Q ) . " ( " . implode ( " , " , $q ) . " ) " ;} else $i = create_sql ( $Q , $_POST [ " auto_increment " ], $Gh ); set_utf8mb4 ( $i ); if ( $Gh && $i ){ if ( $Gh == " DROP+CREATE " || $Yd == 1 ) echo " DROP " . ( $Yd == 2 ? " VIEW " : " TABLE " ) . " IF EXISTS " . table ( $Q ) . " ; \n " ; if ( $Yd == 1 ) $i = remove_definer ( $i ); echo " $i ; \n \n " ;}}} function
dumpData ( $Q , $Gh , $G ){ global $g , $y ; $De = ( $y == " sqlite " ? 0 : 1048576 ); if ( $Gh ){ if ( $_POST [ " format " ] == " sql " ){ if ( $Gh == " TRUNCATE+INSERT " ) echo
truncate_sql ( $Q ) . " ; \n " ; $q = fields ( $Q );} $H = $g -> query ( $G , 1 ); if ( $H ){ $Rd = " " ; $Xa = " " ; $fe = array (); $Ih = " " ; $Oc = ( $Q != '' ? 'fetch_assoc' : 'fetch_row' ); while ( $J = $H -> $Oc ()){ if ( ! $fe ){ $Si = array (); foreach ( $J
as $X ){ $p = $H -> fetch_field (); $fe [] = $p -> name ; $z = idf_escape ( $p -> name ); $Si [] = " $z = VALUES( $z ) " ;} $Ih = ( $Gh == " INSERT+UPDATE " ? " \n ON DUPLICATE KEY UPDATE " . implode ( " , " , $Si ) : " " ) . " ; \n " ;} if ( $_POST [ " format " ] != " sql " ){ if ( $Gh == " table " ){ dump_csv ( $fe ); $Gh = " INSERT " ;} dump_csv ( $J );} else { if ( ! $Rd ) $Rd = " INSERT INTO " . table ( $Q ) . " ( " . implode ( " , " , array_map ( 'idf_escape' , $fe )) . " ) VALUES " ; foreach ( $J
as $z => $X ){ $p = $q [ $z ]; $J [ $z ] = ( $X !== null ? unconvert_field ( $p , preg_match ( number_type (), $p [ " type " ]) && $X != '' &&! preg_match ( '~\[~' , $p [ " full_type " ]) ? $X : q (( $X === false ? 0 : $X ))) : " NULL " );} $Vg = ( $De ? " \n " : " " ) . " ( " . implode ( " , \t " , $J ) . " ) " ; if ( ! $Xa ) $Xa = $Rd . $Vg ; elseif ( strlen ( $Xa ) + 4 + strlen ( $Vg ) + strlen ( $Ih ) < $De ) $Xa .= " , $Vg " ; else { echo $Xa . $Ih ; $Xa = $Rd . $Vg ;}}} if ( $Xa ) echo $Xa . $Ih ;} elseif ( $_POST [ " format " ] == " sql " ) echo " -- " . str_replace ( " \n " , " " , $g -> error ) . " \n " ;}} function
dumpFilename ( $Ad ){ return
friendly_url ( $Ad != " " ? $Ad : ( SERVER != " " ? SERVER : " localhost " ));} function
dumpHeaders ( $Ad , $Se = false ){ $Hf = $_POST [ " output " ]; $Gc = ( preg_match ( '~sql~' , $_POST [ " format " ]) ? " sql " : ( $Se ? " tar " : " csv " )); header ( " Content-Type: " . ( $Hf == " gz " ? " application/x-gzip " : ( $Gc == " tar " ? " application/x-tar " : ( $Gc == " sql " || $Hf != " file " ? " text/plain " : " text/csv " ) . " ; charset=utf-8 " ))); if ( $Hf == " gz " ) ob_start ( 'ob_gzencode' , 1e6 ); return $Gc ;} function
2018-12-15 21:22:00 +00:00
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
2019-02-03 12:13:26 +00:00
navigation ( $Re ){ global $ia , $y , $cc , $g ; echo ' < h1 >
2018-12-15 21:22:00 +00:00
',$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 >
2019-02-03 12:13:26 +00:00
' ; if ( $Re == " auth " ){ $Uc = true ; foreach (( array ) $_SESSION [ " pwds " ] as $Ui => $jh ){ foreach ( $jh
2018-12-15 21:22:00 +00:00
as $N => $Pi ){ foreach ( $Pi
2019-02-03 12:13:26 +00:00
as $V => $F ){ if ( $F !== null ){ if ( $Uc ){ echo " <ul id='logins'> " . script ( " mixin(qs('#logins'), { onmouseover: menuOver, onmouseout: menuOut}); " ); $Uc = false ;} $Ob = $_SESSION [ " db " ][ $Ui ][ $N ][ $V ]; foreach (( $Ob ? array_keys ( $Ob ) : array ( " " )) as $m ) echo " <li><a href=' " . h ( auth_url ( $Ui , $N , $V , $m )) . " '>( $cc[$Ui] ) " . h ( $V . ( $N != " " ? " @ " . $this -> serverName ( $N ) : " " ) . ( $m != " " ? " - $m " : " " )) . " </a> \n " ;}}}}} else { if ( $_GET [ " ns " ] !== " " &&! $Re && DB != " " ){ $g -> select_db ( DB ); $S = table_status ( '' , true );} echo
script_src ( preg_replace ( " ~ \\ ?.*~ " , " " , ME ) . " ?file=jush.js&version=4.7.1 " ); if ( support ( " sql " )){ echo '<script' , nonce (), ' >
' ; if ( $S ){ $ue = array (); foreach ( $S
as $Q => $T ) $ue [] = preg_quote ( $Q , '/' ); echo " var jushLinks = { $y : [ ' " . js_escape ( ME ) . ( support ( " table " ) ? " table= " : " select= " ) . " \$ &', / \\ b( " . implode ( " | " , $ue ) . " ) \\ b/g ] }; \n " ; foreach ( array ( " bac " , " bra " , " sqlite_quo " , " mssql_bra " ) as $X ) echo " jushLinks. $X = jushLinks. $y ; \n " ;} $ih = $g -> server_info ; echo 'bodyLoad(\'' ,( is_object ( $g ) ? preg_replace ( '~^(\d\.?\d).*~s' , '\1' , $ih ) : " " ), '\'' ,( preg_match ( '~MariaDB~' , $ih ) ? " , true " : " " ), ' );
2018-12-15 21:22:00 +00:00
</ script >
2019-02-03 12:13:26 +00:00
';}$this->databasesPrint($Re);if(DB==""||!$Re){echo"<p class=' links '>".(support("sql")?"<a href=' " .h(ME). " sql = '".bold(isset($_GET["sql"])&&!isset($_GET["import"])).">".' SQL command '."</a>\n<a href=' " .h(ME). " import = '".bold(isset($_GET["import"])).">".' Import '."</a>\n":"")."";if(support("dump"))echo"<a href=' " .h(ME). " dump = " .urlencode(isset( $_GET["table"] )? $_GET["table"] : $_GET["select"] ). " ' id=' dump '".bold(isset($_GET["dump"])).">".' Export '."</a>\n";}if($_GET["ns"]!==""&&!$Re&&DB!=""){echo' < a href = " '.h(ME).'create= " '.bold($_GET["create"]==="").">".' Create table '."</a>\n";if(!$S)echo"<p class=' message '>".' No tables . ' . " \n " ; else $this -> tablesPrint ( $S );}}} function
databasesPrint ( $Re ){ global $b , $g ; $l = $this -> databases (); if ( $l &&! in_array ( DB , $l )) array_unshift ( $l , DB ); echo ' < form action = " " >
2018-12-15 21:22:00 +00:00
< p id = " dbs " >
2019-02-03 12:13:26 +00:00
';hidden_fields_get();$Mb=script("mixin(qsl(' select '), {onmousedown: dbMouseDown, onchange: dbChange});");echo"<span title=' " .'database'. " '>".' DB '."</span>: ".($l?"<select name=' db '>".optionlist(array(""=>"")+$l,DB)."</select>$Mb":"<input name=' db ' value=' " .h(DB). " ' autocapitalize=' off '>\n"),"<input type=' submit ' value=' " .'Use'. " '".($l?" class=' hidden '":"").">\n";if($Re!="db"&&DB!=""&&$g->select_db(DB)){if(support("scheme")){echo"<br>".' Schema '.": <select name=' ns '>".optionlist(array(""=>"")+$b->schemas(),$_GET["ns"])."</select>$Mb";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
2018-12-15 21:22:00 +00:00
tablesPrint ( $S ){ echo " <ul id='tables'> " . script ( " mixin(qs('#tables'), { onmouseover: menuOver, onmouseout: menuOut}); " ); foreach ( $S
as $Q => $Ch ){ $C = $this -> tableName ( $Ch ); if ( $C != " " ){ 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 ( $Ch ) ? " view " : " structure " )) . " title=' " . 'Show structure' . " '> $C </a> " : " <span> $C </span> " ) . " \n " ;}} echo " </ul> \n " ;}} $b = ( function_exists ( 'adminer_object' ) ? adminer_object () : new
2019-02-03 12:13:26 +00:00
Adminer ); if ( $b -> operators === null ) $b -> operators = $sf ; function
page_header ( $fi , $o = " " , $Wa = array (), $gi = " " ){ global $ca , $ia , $b , $cc , $y ; page_headers (); if ( is_ajax () && $o ){ page_messages ( $o ); exit ;} $hi = $fi . ( $gi != " " ? " : $gi " : " " ); $ii = strip_tags ( $hi . ( SERVER != " " && SERVER != " localhost " ? h ( " - " . SERVER ) : " " ) . " - " . $b -> name ()); echo ' <! DOCTYPE html >
2018-12-15 21:22:00 +00:00
< html lang = " en " dir = " ltr " >
< meta http - equiv = " Content-Type " content = " text/html; charset=utf-8 " >
< meta name = " robots " content = " noindex " >
< title > ',$ii,' </ title >
2019-02-03 12:13:26 +00:00
< link rel = " stylesheet " type = " text/css " href = " ',h(preg_replace( " ~ \\ ? .*~ " , " " ,ME). " ? file = default . css & version = 4.7 . 1 " ),' " >
',script_src(preg_replace("~\\?.*~","",ME)."?file=functions.js&version=4.7.1");if($b->head()){echo' < link rel = " shortcut icon " type = " image/x-icon " href = " ',h(preg_replace( " ~ \\ ? .*~ " , " " ,ME). " ? file = favicon . ico & version = 4.7 . 1 " ),' " >
< link rel = " apple-touch-icon " href = " ',h(preg_replace( " ~ \\ ? .*~ " , " " ,ME). " ? file = favicon . ico & version = 4.7 . 1 " ),' " >
';foreach($b->css()as$Gb){echo' < link rel = " stylesheet " type = " text/css " href = " ',h( $Gb ),' " >
2018-12-15 21:22:00 +00:00
';}}echo'
< body class = " ltr nojs " >
2019-02-03 12:13:26 +00:00
';$Sc=get_temp_dir()."/adminer.version";if(!$_COOKIE["adminer_version"]&&function_exists(' openssl_verify ' ) && file_exists ( $Sc ) && filemtime ( $Sc ) + 86400 > time ()){ $Vi = unserialize ( file_get_contents ( $Sc )); $qg = " -----BEGIN PUBLIC KEY-----
2018-12-15 21:22:00 +00:00
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 -----
2019-02-03 12:13:26 +00:00
" ;if(openssl_verify( $Vi["version"] ,base64_decode( $Vi["signature"] ), $qg )==1) $_COOKIE["adminer_version"] = $Vi["version"] ;}echo'<script',nonce(),'>
2018-12-15 21:22:00 +00:00
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 >
2019-02-03 12:13:26 +00:00
< div id = " help " class = " jush-', $y ,' jsonly hidden " ></ div >
2018-12-15 21:22:00 +00:00
',script("mixin(qs(' #help'), {onmouseover: function () { helpOpen = 1; }, onmouseout: helpMouseout});"),'
< div id = " content " >
2019-02-03 12:13:26 +00:00
';if($Wa!==null){$A=substr(preg_replace(' ~ \b ( username | db | ns ) = [ ^& ] *&~ ',' ',ME),0,-1);echo' < p id = " breadcrumb " >< a href = " '.h( $A ? $A : " . " ).' " > '.$cc[DRIVER].' </ a > & raquo ; ';$A=substr(preg_replace(' ~ \b ( db | ns ) = [ ^& ] *&~ ',' ',ME),0,-1);$N=$b->serverName(SERVER);$N=($N!=""?$N:' Server ');if($Wa===false)echo"$N\n";else{echo"<a href=' " .( $A ?h( $A ): " . " ). " ' accesskey=' 1 ' title=' Alt + Shift + 1 '>$N</a> » ";if($_GET["ns"]!=""||(DB!=""&&is_array($Wa)))echo' < a href = " '.h( $A . " & db = " .urlencode(DB).(support( " scheme " )? " & ns = " : " " )).' " > '.h(DB).' </ a > & raquo ; ';if(is_array($Wa)){if($_GET["ns"]!="")echo' < a href = " '.h(substr(ME,0,-1)).' " > '.h($_GET["ns"]).' </ a > & raquo ; ' ; foreach ( $Wa
as $z => $X ){ $Ub = ( is_array ( $X ) ? $X [ 1 ] : h ( $X )); if ( $Ub != " " ) echo " <a href=' " . h ( ME . " $z = " ) . urlencode ( is_array ( $X ) ? $X [ 0 ] : $X ) . " '> $Ub </a> » " ;}} echo " $fi\n " ;}} echo " <h2> $hi </h2> \n " , " <div id='ajaxstatus' class='jsonly hidden'></div> \n " ; restart_session (); page_messages ( $o ); $l =& get_session ( " dbs " ); if ( DB != " " && $l &&! in_array ( DB , $l , true )) $l = 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 $Fb ){ $ud = array (); foreach ( $Fb
as $z => $X ) $ud [] = " $z $X " ; header ( " Content-Security-Policy: " . implode ( " ; " , $ud ));} $b -> headers ();} function
2018-12-15 21:22:00 +00:00
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
2019-02-03 12:13:26 +00:00
get_nonce (){ static $bf ; if ( ! $bf ) $bf = base64_encode ( rand_string ()); return $bf ;} function
page_messages ( $o ){ $Ii = preg_replace ( '~^[^?]*~' , '' , $_SERVER [ " REQUEST_URI " ]); $Ne = $_SESSION [ " messages " ][ $Ii ]; if ( $Ne ){ echo " <div class='message'> " . implode ( " </div> \n <div class='message'> " , $Ne ) . " </div> " . script ( " messagesPrint(); " ); unset ( $_SESSION [ " messages " ][ $Ii ]);} if ( $o ) echo " <div class='error'> $o </div> \n " ;} function
page_footer ( $Re = " " ){ global $b , $mi ; echo ' </ div >
2018-12-15 21:22:00 +00:00
2019-02-03 12:13:26 +00:00
';if($Re!="auth"){echo' < form action = " " method = " post " >
2018-12-15 21:22:00 +00:00
< p class = " logout " >
< input type = " submit " name = " logout " value = " Logout " id = " logout " >
< input type = " hidden " name = " token " value = " ', $mi ,' " >
</ p >
</ form >
';}echo' < div id = " menu " >
2019-02-03 12:13:26 +00:00
';$b->navigation($Re);echo' </ div >
2018-12-15 21:22:00 +00:00
' , script ( " setupSubmitHighlight(document); " );} function
2019-02-03 12:13:26 +00:00
int32 ( $Ue ){ while ( $Ue >= 2147483648 ) $Ue -= 4294967296 ; while ( $Ue <=- 2147483649 ) $Ue += 4294967296 ; return ( int ) $Ue ;} function
long2str ( $W , $Zi ){ $Vg = '' ; foreach ( $W
as $X ) $Vg .= pack ( 'V' , $X ); if ( $Zi ) return
substr ( $Vg , 0 , end ( $W )); return $Vg ;} function
str2long ( $Vg , $Zi ){ $W = array_values ( unpack ( 'V*' , str_pad ( $Vg , 4 * ceil ( strlen ( $Vg ) / 4 ), " \0 " ))); if ( $Zi ) $W [] = strlen ( $Vg ); return $W ;} function
xxtea_mx ( $mj , $lj , $Jh , $be ){ return
int32 ((( $mj >> 5 & 0x7FFFFFF ) ^ $lj << 2 ) + (( $lj >> 3 & 0x1FFFFFFF ) ^ $mj << 4 )) ^ int32 (( $Jh ^ $lj ) + ( $be ^ $mj ));} function
encrypt_string ( $Eh , $z ){ if ( $Eh == " " ) return " " ; $z = array_values ( unpack ( " V* " , pack ( " H* " , md5 ( $z )))); $W = str2long ( $Eh , true ); $Ue = count ( $W ) - 1 ; $mj = $W [ $Ue ]; $lj = $W [ 0 ]; $rg = floor ( 6 + 52 / ( $Ue + 1 )); $Jh = 0 ; while ( $rg --> 0 ){ $Jh = int32 ( $Jh + 0x9E3779B9 ); $jc = $Jh >> 2 & 3 ; for ( $If = 0 ; $If < $Ue ; $If ++ ){ $lj = $W [ $If + 1 ]; $Te = xxtea_mx ( $mj , $lj , $Jh , $z [ $If & 3 ^ $jc ]); $mj = int32 ( $W [ $If ] + $Te ); $W [ $If ] = $mj ;} $lj = $W [ 0 ]; $Te = xxtea_mx ( $mj , $lj , $Jh , $z [ $If & 3 ^ $jc ]); $mj = int32 ( $W [ $Ue ] + $Te ); $W [ $Ue ] = $mj ;} return
2018-12-15 21:22:00 +00:00
long2str ( $W , false );} function
2019-02-03 12:13:26 +00:00
decrypt_string ( $Eh , $z ){ if ( $Eh == " " ) return " " ; if ( ! $z ) return
false ; $z = array_values ( unpack ( " V* " , pack ( " H* " , md5 ( $z )))); $W = str2long ( $Eh , false ); $Ue = count ( $W ) - 1 ; $mj = $W [ $Ue ]; $lj = $W [ 0 ]; $rg = floor ( 6 + 52 / ( $Ue + 1 )); $Jh = int32 ( $rg * 0x9E3779B9 ); while ( $Jh ){ $jc = $Jh >> 2 & 3 ; for ( $If = $Ue ; $If > 0 ; $If -- ){ $mj = $W [ $If - 1 ]; $Te = xxtea_mx ( $mj , $lj , $Jh , $z [ $If & 3 ^ $jc ]); $lj = int32 ( $W [ $If ] - $Te ); $W [ $If ] = $lj ;} $mj = $W [ $Ue ]; $Te = xxtea_mx ( $mj , $lj , $Jh , $z [ $If & 3 ^ $jc ]); $lj = int32 ( $W [ 0 ] - $Te ); $W [ 0 ] = $lj ; $Jh = int32 ( $Jh - 0x9E3779B9 );} return
long2str ( $W , true );} $g = '' ; $td = $_SESSION [ " token " ]; if ( ! $td ) $_SESSION [ " token " ] = rand ( 1 , 1e6 ); $mi = get_token (); $Yf = array (); if ( $_COOKIE [ " adminer_permanent " ]){ foreach ( explode ( " " , $_COOKIE [ " adminer_permanent " ]) as $X ){ list ( $z ) = explode ( " : " , $X ); $Yf [ $z ] = $X ;}} function
add_invalid_login (){ global $b ; $gd = file_open_lock ( get_temp_dir () . " /adminer.invalid " ); if ( ! $gd ) return ; $Ud = unserialize ( stream_get_contents ( $gd )); $ci = time (); if ( $Ud ){ foreach ( $Ud
as $Vd => $X ){ if ( $X [ 0 ] < $ci ) unset ( $Ud [ $Vd ]);}} $Td =& $Ud [ $b -> bruteForceKey ()]; if ( ! $Td ) $Td = array ( $ci + 30 * 60 , 0 ); $Td [ 1 ] ++ ; file_write_unlock ( $gd , serialize ( $Ud ));} function
check_invalid_login (){ global $b ; $Ud = unserialize ( @ file_get_contents ( get_temp_dir () . " /adminer.invalid " )); $Td = $Ud [ $b -> bruteForceKey ()]; $af = ( $Td [ 1 ] > 29 ? $Td [ 0 ] - time () : 0 ); if ( $af > 0 ) auth_error ( lang ( array ( 'Too many unsuccessful logins, try again in %d minute.' , 'Too many unsuccessful logins, try again in %d minutes.' ), ceil ( $af / 60 )));} $Ka = $_POST [ " auth " ]; if ( $Ka ){ session_regenerate_id (); $Ui = $Ka [ " driver " ]; $N = $Ka [ " server " ]; $V = $Ka [ " username " ]; $F = ( string ) $Ka [ " password " ]; $m = $Ka [ " db " ]; set_password ( $Ui , $N , $V , $F ); $_SESSION [ " db " ][ $Ui ][ $N ][ $V ][ $m ] = true ; if ( $Ka [ " permanent " ]){ $z = base64_encode ( $Ui ) . " - " . base64_encode ( $N ) . " - " . base64_encode ( $V ) . " - " . base64_encode ( $m ); $kg = $b -> permanentLogin ( true ); $Yf [ $z ] = " $z : " . base64_encode ( $kg ? encrypt_string ( $F , $kg ) : " " ); cookie ( " adminer_permanent " , implode ( " " , $Yf ));} if ( count ( $_POST ) == 1 || DRIVER != $Ui || SERVER != $N || $_GET [ " username " ] !== $V || DB != $m ) redirect ( auth_url ( $Ui , $N , $V , $m ));} elseif ( $_POST [ " logout " ]){ if ( $td &&! verify_token ()){ page_header ( 'Logout' , 'Invalid CSRF token. Send the form again.' ); page_footer ( " db " ); exit ;} else { foreach ( array ( " pwds " , " db " , " dbs " , " queries " ) as $z ) set_session ( $z , null ); unset_permanent (); redirect ( substr ( preg_replace ( '~\b(username|db|ns)=[^&]*&~' , '' , ME ), 0 , - 1 ), 'Logout successful.' . ' ' . 'Thanks for using Adminer, consider <a href="https://www.adminer.org/en/donation/">donating</a>.' );}} elseif ( $Yf &&! $_SESSION [ " pwds " ]){ session_regenerate_id (); $kg = $b -> permanentLogin (); foreach ( $Yf
as $z => $X ){ list (, $ib ) = explode ( " : " , $X ); list ( $Ui , $N , $V , $m ) = array_map ( 'base64_decode' , explode ( " - " , $z )); set_password ( $Ui , $N , $V , decrypt_string ( base64_decode ( $ib ), $kg )); $_SESSION [ " db " ][ $Ui ][ $N ][ $V ][ $m ] = true ;}} function
unset_permanent (){ global $Yf ; foreach ( $Yf
as $z => $X ){ list ( $Ui , $N , $V , $m ) = array_map ( 'base64_decode' , explode ( " - " , $z )); if ( $Ui == DRIVER && $N == SERVER && $V == $_GET [ " username " ] && $m == DB ) unset ( $Yf [ $z ]);} cookie ( " adminer_permanent " , implode ( " " , $Yf ));} function
auth_error ( $o ){ global $b , $td ; $kh = session_name (); if ( isset ( $_GET [ " username " ])){ header ( " HTTP/1.1 403 Forbidden " ); if (( $_COOKIE [ $kh ] || $_GET [ $kh ]) &&! $td ) $o = 'Session expired, please login again.' ; else { restart_session (); add_invalid_login (); $F = get_password (); if ( $F !== null ){ if ( $F === false ) $o .= '<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 [ $kh ] && $_GET [ $kh ] && ini_bool ( " session.use_only_cookies " )) $o = 'Session support must be enabled.' ; $Lf = session_get_cookie_params (); cookie ( " adminer_key " ,( $_COOKIE [ " adminer_key " ] ? $_COOKIE [ " adminer_key " ] : rand_string ()), $Lf [ " lifetime " ]); page_header ( 'Login' , $o , 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 ( " , " , $eg )), false ); page_footer ( " auth " ); exit ;} stop_session ( true ); if ( isset ( $_GET [ " username " ])){ list ( $zd , $ag ) = explode ( " : " , SERVER , 2 ); if ( is_numeric ( $ag ) && $ag < 1024 ) auth_error ( 'Connecting to privileged ports is not allowed.' ); check_invalid_login (); $g = connect (); $n = new
Min_Driver ( $g );} $we = null ; if ( ! is_object ( $g ) || ( $we = $b -> login ( $_GET [ " username " ], get_password ())) !== true ){ $o = ( is_string ( $g ) ? h ( $g ) : ( is_string ( $we ) ? $we : 'Invalid credentials.' )); auth_error ( $o . ( preg_match ( '~^ | $~' , get_password ()) ? '<br>' . 'There is a space in the input password which might be the cause.' : '' ));} if ( $Ka && $_POST [ " token " ]) $_POST [ " token " ] = $mi ; $o = '' ; if ( $_POST ){ if ( ! verify_token ()){ $Od = " max_input_vars " ; $He = ini_get ( $Od ); if ( extension_loaded ( " suhosin " )){ foreach ( array ( " suhosin.request.max_vars " , " suhosin.post.max_vars " ) as $z ){ $X = ini_get ( $z ); if ( $X && ( ! $He || $X < $He )){ $Od = $z ; $He = $X ;}}} $o = ( ! $_POST [ " token " ] && $He ? sprintf ( 'Maximum number of allowed fields exceeded. Please increase %s.' , " ' $Od ' " ) : '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 " ){ $o = sprintf ( 'Too big POST data. Reduce the data or increase the %s configuration directive.' , " 'post_max_size' " ); if ( isset ( $_GET [ " sql " ])) $o .= ' ' . 'You can upload a big SQL file via FTP and import it from server.' ;} function
select ( $H , $h = null , $_f = array (), $_ = 0 ){ global $y ; $ue = array (); $x = array (); $f = array (); $Ta = array (); $U = array (); $I = array (); odd ( '' ); for ( $t = 0 ;( ! $_ || $t < $_ ) && ( $J = $H -> fetch_row ()); $t ++ ){ if ( ! $t ){ echo " <div class='scrollable'> \n " , " <table cellspacing='0' class='nowrap'> \n " , " <thead><tr> " ; for ( $ae = 0 ; $ae < count ( $J ); $ae ++ ){ $p = $H -> fetch_field (); $C = $p -> name ; $zf = $p -> orgtable ; $yf = $p -> orgname ; $I [ $p -> table ] = $zf ; if ( $_f && $y == " sql " ) $ue [ $ae ] = ( $C == " table " ? " table= " : ( $C == " possible_keys " ? " indexes= " : null )); elseif ( $zf != " " ){ if ( ! isset ( $x [ $zf ])){ $x [ $zf ] = array (); foreach ( indexes ( $zf , $h ) as $w ){ if ( $w [ " type " ] == " PRIMARY " ){ $x [ $zf ] = array_flip ( $w [ " columns " ]); break ;}} $f [ $zf ] = $x [ $zf ];} if ( isset ( $f [ $zf ][ $yf ])){ unset ( $f [ $zf ][ $yf ]); $x [ $zf ][ $yf ] = $ae ; $ue [ $ae ] = $zf ;}} if ( $p -> charsetnr == 63 ) $Ta [ $ae ] = true ; $U [ $ae ] = $p -> type ; echo " <th " . ( $zf != " " || $p -> name != $yf ? " title=' " . h (( $zf != " " ? " $zf . " : " " ) . $yf ) . " ' " : " " ) . " > " . h ( $C ) . ( $_f ? doc_link ( array ( 'sql' => " explain-output.html#explain_ " . strtolower ( $C ), 'mariadb' => " explain/#the-columns-in-explain-select " ,)) : " " );} echo " </thead> \n " ;} echo " <tr " . odd () . " > " ; foreach ( $J
as $z => $X ){ if ( $X === null ) $X = " <i>NULL</i> " ; elseif ( $Ta [ $z ] &&! is_utf8 ( $X )) $X = " <i> " . lang ( array ( '%d byte' , '%d bytes' ), strlen ( $X )) . " </i> " ; else { $X = h ( $X ); if ( $U [ $z ] == 254 ) $X = " <code> $X </code> " ;} if ( isset ( $ue [ $z ]) &&! $f [ $ue [ $z ]]){ if ( $_f && $y == " sql " ){ $Q = $J [ array_search ( " table= " , $ue )]; $A = $ue [ $z ] . urlencode ( $_f [ $Q ] != " " ? $_f [ $Q ] : $Q );} else { $A = " edit= " . urlencode ( $ue [ $z ]); foreach ( $x [ $ue [ $z ]] as $mb => $ae ) $A .= " &where " . urlencode ( " [ " . bracket_escape ( $mb ) . " ] " ) . " = " . urlencode ( $J [ $ae ]);} $X = " <a href=' " . h ( ME . $A ) . " '> $X </a> " ;} echo " <td> $X " ;}} echo ( $t ? " </table> \n </div> " : " <p class='message'> " . 'No rows.' ) . " \n " ; return $I ;} function
referencable_primary ( $eh ){ $I = array (); foreach ( table_status ( '' , true ) as $Nh => $Q ){ if ( $Nh != $eh && fk_support ( $Q )){ foreach ( fields ( $Nh ) as $p ){ if ( $p [ " primary " ]){ if ( $I [ $Nh ]){ unset ( $I [ $Nh ]); break ;} $I [ $Nh ] = $p ;}}}} return $I ;} function
adminer_settings (){ parse_str ( $_COOKIE [ " adminer_settings " ], $mh ); return $mh ;} function
adminer_setting ( $z ){ $mh = adminer_settings (); return $mh [ $z ];} function
set_adminer_settings ( $mh ){ return
cookie ( " adminer_settings " , http_build_query ( $mh + adminer_settings ()));} function
textarea ( $C , $Y , $K = 10 , $qb = 80 ){ global $y ; echo " <textarea name=' $C ' rows=' $K ' cols=' $qb ' class='sqlarea jush- $y ' spellcheck='false' wrap='off'> " ; if ( is_array ( $Y )){ foreach ( $Y
2018-12-15 21:22:00 +00:00
as $X ) echo
h ( $X [ 0 ]) . " \n \n \n " ;} else
echo
h ( $Y ); echo " </textarea> " ;} function
2019-02-03 12:13:26 +00:00
edit_type ( $z , $p , $ob , $cd = array (), $Jc = array ()){ global $Fh , $U , $Gi , $nf ; $T = $p [ " type " ]; echo '<td><select name="' , h ( $z ), '[type]" class="type" aria-labelledby="label-type">' ; if ( $T &&! isset ( $U [ $T ]) &&! isset ( $cd [ $T ]) &&! in_array ( $T , $Jc )) $Jc [] = $T ; if ( $cd ) $Fh [ 'Foreign keys' ] = $cd ; echo
optionlist ( array_merge ( $Jc , $Fh ), $T ), ' </ select >
',on_help("getTarget(event).value",1),script("mixin(qsl(' select '), {onfocus: function () { lastType = selectValue(this); }, onchange: editingTypeChange});",""),' < td >< input name = " ',h( $z ),'[length] " value = " ',h( $p["length"] ),' " size = " 3 " ',(!$p["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( $z ). " [ collation ] '".(preg_match(' ~ ( char | text | enum | set ) $ ~ ',$T)?"":" class=' hidden '").' >< option value = " " > ( '.' collation '.' ) '.optionlist($ob,$p["collation"]).' </ select > ',($Gi?"<select name=' " .h( $z ). " [ unsigned ] '".(!$T||preg_match(number_type(),$T)?"":" class=' hidden '").' >< option > '.optionlist($Gi,$p["unsigned"]).' </ select > ':' '),(isset($p[' on_update '])?"<select name=' " .h( $z ). " [ on_update ] '".(preg_match(' ~ timestamp | datetime ~ ',$T)?"":" class=' hidden '").' > '.optionlist(array(""=>"(".' ON UPDATE '.")","CURRENT_TIMESTAMP"),(preg_match(' ~^ CURRENT_TIMESTAMP ~ i ',$p["on_update"])?"CURRENT_TIMESTAMP":$p["on_update"])).' </ select > ':' '),($cd?"<select name=' " .h( $z ). " [ on_delete ] '".(preg_match("~`~",$T)?"":" class=' hidden '")."><option value=' '>(".' ON DELETE ' . " ) " . optionlist ( explode ( " | " , $nf ), $p [ " on_delete " ]) . " </select> " : " " );} function
process_length ( $re ){ global $uc ; return ( preg_match ( " ~^ \\ s* \\ (? \\ s* $uc (?: \\ s*, \\ s* $uc )*+ \\ s* \\ )? \\ s* \$ ~ " , $re ) && preg_match_all ( " ~ $uc ~ " , $re , $Be ) ? " ( " . implode ( " , " , $Be [ 0 ]) . " ) " : preg_replace ( '~^[0-9].*~' , '(\0)' , preg_replace ( '~[^-0-9,+()[\]]~' , '' , $re )));} function
process_type ( $p , $nb = " COLLATE " ){ global $Gi ; return " $p[type] " . process_length ( $p [ " length " ]) . ( preg_match ( number_type (), $p [ " type " ]) && in_array ( $p [ " unsigned " ], $Gi ) ? " $p[unsigned] " : " " ) . ( preg_match ( '~char|text|enum|set~' , $p [ " type " ]) && $p [ " collation " ] ? " $nb " . q ( $p [ " collation " ]) : " " );} function
process_field ( $p , $zi ){ return
array ( idf_escape ( trim ( $p [ " field " ])), process_type ( $zi ),( $p [ " null " ] ? " NULL " : " NOT NULL " ), default_value ( $p ),( preg_match ( '~timestamp|datetime~' , $p [ " type " ]) && $p [ " on_update " ] ? " ON UPDATE $p[on_update] " : " " ),( support ( " comment " ) && $p [ " comment " ] != " " ? " COMMENT " . q ( $p [ " comment " ]) : " " ),( $p [ " auto_increment " ] ? auto_increment () : null ),);} function
default_value ( $p ){ $Qb = $p [ " default " ]; return ( $Qb === null ? " " : " DEFAULT " . ( preg_match ( '~char|binary|text|enum|set~' , $p [ " type " ]) || preg_match ( '~^(?![a-z])~i' , $Qb ) ? q ( $Qb ) : $Qb ));} function
type_class ( $T ){ foreach ( array ( 'char' => 'text' , 'date' => 'time|year' , 'binary' => 'blob' , 'enum' => 'set' ,) as $z => $X ){ if ( preg_match ( " ~ $z | $X ~ " , $T )) return " class=' $z ' " ;}} function
edit_fields ( $q , $ob , $T = " TABLE " , $cd = array ()){ global $Pd ; $q = array_values ( $q ); echo ' < thead >< tr >
2018-12-15 21:22:00 +00:00
';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
2019-02-03 12:13:26 +00:00
',(support("comment")?"<td id=' label - comment '>".' Comment ':"");}echo' < td > ',"<input type=' image ' class=' icon ' name=' add [ " .(support( " move_col " )?0:count( $q )). " ] ' src=' " .h(preg_replace( " ~ \\ ? .*~ " , " " ,ME). " ? file = plus . gif & version = 4.7 . 1 " ). " ' alt=' + ' title=' " .'Add next'. " '>".script("row_count = ".count($q).";"),' </ thead >
2018-12-15 21:22:00 +00:00
< tbody >
2019-02-03 12:13:26 +00:00
',script("mixin(qsl(' tbody ' ), { onclick : editingClick , onkeydown : editingKeydown , oninput : editingInput }); " );foreach( $q
as $t => $p ){ $t ++ ; $Af = $p [( $_POST ? " orig " : " field " )]; $Yb = ( isset ( $_POST [ " add " ][ $t - 1 ]) || ( isset ( $p [ " field " ]) &&! $_POST [ " drop_col " ][ $t ])) && ( support ( " drop_col " ) || $Af == " " ); echo '<tr' ,( $Yb ? " " : " style='display: none;' " ), ' >
',($T=="PROCEDURE"?"<td>".html_select("fields[$t][inout]",explode("|",$Pd),$p["inout"]):""),' < th > ';if($Yb){echo' < input name = " fields[', $t ,'][field] " value = " ',h( $p["field"] ),' " data - maxlength = " 64 " autocapitalize = " off " aria - labelledby = " label-name " > ',script("qsl(' input ').oninput = function () { editingNameChange.call(this);".($p["field"]!=""||count($q)>1?"":" editingAddRow.call(this);")." };","");}echo' < input type = " hidden " name = " fields[', $t ,'][orig] " value = " ',h( $Af ),' " >
';edit_type("fields[$t]",$p,$ob,$cd);if($T=="TABLE"){echo' < td > ',checkbox("fields[$t][null]",1,$p["null"],"","","block","label-null"),' < td >< label class = " block " >< input type = " radio " name = " auto_increment_col " value = " ', $t ,' " ';if($p["auto_increment"]){echo' checked ';}echo' aria - labelledby = " label-ai " ></ label >< td > ',checkbox("fields[$t][has_default]",1,$p["has_default"],"","","","label-default"),' < input name = " fields[', $t ,'][default] " value = " ',h( $p["default"] ),' " aria - labelledby = " label-default " > ',(support("comment")?"<td><input name=' fields [ $t ][ comment ] ' value=' " .h( $p["comment"] ). " ' data-maxlength=' " .(min_version(5.5)?1024:255). " ' aria-labelledby=' label - comment '>":"");}echo"<td>",(support("move_col")?"<input type=' image ' class=' icon ' name=' add [ $t ] ' src=' " .h(preg_replace( " ~ \\ ? .*~ " , " " ,ME). " ? file = plus . gif & version = 4.7 . 1 " ). " ' alt=' + ' title=' " .'Add next'. " '> "."<input type=' image ' class=' icon ' name=' up [ $t ] ' src=' " .h(preg_replace( " ~ \\ ? .*~ " , " " ,ME). " ? file = up . gif & version = 4.7 . 1 " ). " ' alt=' ↑ ' title=' " .'Move up'. " '> "."<input type=' image ' class=' icon ' name=' down [ $t ] ' src=' " .h(preg_replace( " ~ \\ ? .*~ " , " " ,ME). " ? file = down . gif & version = 4.7 . 1 " ). " ' alt=' ↓ ' title=' " .'Move down'. " '> ":""),($Af==""||support("drop_col")?"<input type=' image ' class=' icon ' name=' drop_col [ $t ] ' src=' " .h(preg_replace( " ~ \\ ? .*~ " , " " ,ME). " ? file = cross . gif & version = 4.7 . 1 " ). " ' alt=' x ' title=' " .'Remove'. " ' > " : " " );}}function
process_fields ( & $q ){ $D = 0 ; if ( $_POST [ " up " ]){ $le = 0 ; foreach ( $q
as $z => $p ){ if ( key ( $_POST [ " up " ]) == $z ){ unset ( $q [ $z ]); array_splice ( $q , $le , 0 , array ( $p )); break ;} if ( isset ( $p [ " field " ])) $le = $D ; $D ++ ;}} elseif ( $_POST [ " down " ]){ $ed = false ; foreach ( $q
as $z => $p ){ if ( isset ( $p [ " field " ]) && $ed ){ unset ( $q [ key ( $_POST [ " down " ])]); array_splice ( $q , $D , 0 , array ( $ed )); break ;} if ( key ( $_POST [ " down " ]) == $z ) $ed = $p ; $D ++ ;}} elseif ( $_POST [ " add " ]){ $q = array_values ( $q ); array_splice ( $q , key ( $_POST [ " add " ]), 0 , array ( array ()));} elseif ( ! $_POST [ " drop_col " ]) return
2018-12-15 21:22:00 +00:00
false ; return
true ;} function
normalize_enum ( $B ){ return " ' " . str_replace ( " ' " , " '' " , addcslashes ( stripcslashes ( str_replace ( $B [ 0 ][ 0 ] . $B [ 0 ][ 0 ], $B [ 0 ][ 0 ], substr ( $B [ 0 ], 1 , - 1 ))), '\\' )) . " ' " ;} function
2019-02-03 12:13:26 +00:00
grant ( $jd , $mg , $f , $mf ){ if ( ! $mg ) return
true ; if ( $mg == array ( " ALL PRIVILEGES " , " GRANT OPTION " )) return ( $jd == " GRANT " ? queries ( " $jd ALL PRIVILEGES $mf WITH GRANT OPTION " ) : queries ( " $jd ALL PRIVILEGES $mf " ) && queries ( " $jd GRANT OPTION $mf " )); return
queries ( " $jd " . preg_replace ( '~(GRANT OPTION)\([^)]*\)~' , '\1' , implode ( " $f , " , $mg ) . $f ) . $mf );} function
drop_create ( $dc , $i , $ec , $Zh , $gc , $ve , $Me , $Ke , $Le , $jf , $Xe ){ if ( $_POST [ " drop " ]) query_redirect ( $dc , $ve , $Me ); elseif ( $jf == " " ) query_redirect ( $i , $ve , $Le ); elseif ( $jf != $Xe ){ $Eb = queries ( $i ); queries_redirect ( $ve , $Ke , $Eb && queries ( $dc )); if ( $Eb ) queries ( $ec );} else
queries_redirect ( $ve , $Ke , queries ( $Zh ) && queries ( $gc ) && queries ( $dc ) && queries ( $i ));} function
create_trigger ( $mf , $J ){ global $y ; $ei = " $J[Timing] $J[Event] " . ( $J [ " Event " ] == " UPDATE OF " ? " " . idf_escape ( $J [ " Of " ]) : " " ); return " CREATE TRIGGER " . idf_escape ( $J [ " Trigger " ]) . ( $y == " mssql " ? $mf . $ei : $ei . $mf ) . rtrim ( " $J[Type] \n $J[Statement] " , " ; " ) . " ; " ;} function
create_routine ( $Rg , $J ){ global $Pd , $y ; $O = array (); $q = ( array ) $J [ " fields " ]; ksort ( $q ); foreach ( $q
as $p ){ if ( $p [ " field " ] != " " ) $O [] = ( preg_match ( " ~^( $Pd ) \$ ~ " , $p [ " inout " ]) ? " $p[inout] " : " " ) . idf_escape ( $p [ " field " ]) . process_type ( $p , " CHARACTER SET " );} $Rb = rtrim ( " \n $J[definition] " , " ; " ); return " CREATE $Rg " . idf_escape ( trim ( $J [ " name " ])) . " ( " . implode ( " , " , $O ) . " ) " . ( isset ( $_GET [ " function " ]) ? " RETURNS " . process_type ( $J [ " returns " ], " CHARACTER SET " ) : " " ) . ( $J [ " language " ] ? " LANGUAGE $J[language] " : " " ) . ( $y == " pgsql " ? " AS " . q ( $Rb ) : " $Rb ; " );} function
2018-12-15 21:22:00 +00:00
remove_definer ( $G ){ return
preg_replace ( '~^([A-Z =]+) DEFINER=`' . preg_replace ( '~@(.*)~' , '`@`(%|\1)' , logged_user ()) . '`~' , '\1' , $G );} function
2019-02-03 12:13:26 +00:00
format_foreign_key ( $r ){ global $nf ; return " FOREIGN KEY ( " . implode ( " , " , array_map ( 'idf_escape' , $r [ " source " ])) . " ) REFERENCES " . table ( $r [ " table " ]) . " ( " . implode ( " , " , array_map ( 'idf_escape' , $r [ " target " ])) . " ) " . ( preg_match ( " ~^( $nf ) \$ ~ " , $r [ " on_delete " ]) ? " ON DELETE $r[on_delete] " : " " ) . ( preg_match ( " ~^( $nf ) \$ ~ " , $r [ " on_update " ]) ? " ON UPDATE $r[on_update] " : " " );} function
tar_file ( $Sc , $ji ){ $I = pack ( " a100a8a8a8a12a12 " , $Sc , 644 , 0 , 0 , decoct ( $ji -> size ), decoct ( time ())); $gb = 8 * 32 ; for ( $t = 0 ; $t < strlen ( $I ); $t ++ ) $gb += ord ( $I [ $t ]); $I .= sprintf ( " %06o " , $gb ) . " \0 " ; echo $I , str_repeat ( " \0 " , 512 - strlen ( $I )); $ji -> send (); echo
2018-12-15 21:22:00 +00:00
str_repeat ( " \0 " , 511 - ( $ji -> size + 511 ) % 512 );} function
2019-02-03 12:13:26 +00:00
ini_bytes ( $Od ){ $X = ini_get ( $Od ); switch ( strtolower ( substr ( $X , - 1 ))){ case 'g' : $X *= 1024 ; case 'm' : $X *= 1024 ; case 'k' : $X *= 1024 ;} return $X ;} function
doc_link ( $Wf , $ai = " <sup>?</sup> " ){ global $y , $g ; $ih = $g -> server_info ; $Vi = preg_replace ( '~^(\d\.?\d).*~s' , '\1' , $ih ); $Li = array ( 'sql' => " https://dev.mysql.com/doc/refman/ $Vi /en/ " , 'sqlite' => " https://www.sqlite.org/ " , 'pgsql' => " https://www.postgresql.org/docs/ $Vi /static/ " , 'mssql' => " https://msdn.microsoft.com/library/ " , 'oracle' => " https://download.oracle.com/docs/cd/B19306_01/server.102/b14200/ " ,); if ( preg_match ( '~MariaDB~' , $ih )){ $Li [ 'sql' ] = " https://mariadb.com/kb/en/library/ " ; $Wf [ 'sql' ] = ( isset ( $Wf [ 'mariadb' ]) ? $Wf [ 'mariadb' ] : str_replace ( " .html " , " / " , $Wf [ 'sql' ]));} return ( $Wf [ $y ] ? " <a href=' $Li[$y] $Wf[$y] ' " . target_blank () . " > $ai </a> " : " " );} function
2018-12-15 21:22:00 +00:00
ob_gzencode ( $P ){ return
gzencode ( $P );} function
2019-02-03 12:13:26 +00:00
db_size ( $m ){ global $g ; if ( ! $g -> select_db ( $m )) return " ? " ; $I = 0 ; foreach ( table_status () as $R ) $I += $R [ " Data_length " ] + $R [ " Index_length " ]; return
2018-12-15 21:22:00 +00:00
format_number ( $I );} function
set_utf8mb4 ( $i ){ global $g ; static $O = false ; if ( ! $O && preg_match ( '~\butf8mb4~i' , $i )){ $O = true ; echo " SET NAMES " . charset ( $g ) . " ; \n \n " ;}} function
2019-02-03 12:13:26 +00:00
connect_error (){ global $b , $g , $mi , $o , $cc ; if ( DB != " " ){ header ( " HTTP/1.1 404 Not Found " ); page_header ( 'Database' . " : " . h ( DB ), 'Invalid database.' , true );} else { if ( $_POST [ " db " ] &&! $o ) queries_redirect ( substr ( ME , 0 , - 1 ), 'Databases have been dropped.' , drop_databases ( $_POST [ " db " ])); page_header ( 'Select database' , $o , false ); echo " <p class='links'> \n " ; foreach ( array ( 'database' => 'Create database' , 'privileges' => 'Privileges' , 'processlist' => 'Process list' , 'variables' => 'Variables' , 'status' => 'Status' ,) as $z => $X ){ if ( support ( $z )) echo " <a href=' " . h ( ME ) . " $z ='> $X </a> \n " ;} echo " <p> " . sprintf ( '%s version: %s through PHP extension %s' , $cc [ DRIVER ], " <b> " . h ( $g -> server_info ) . " </b> " , " <b> $g->extension </b> " ) . " \n " , " <p> " . sprintf ( 'Logged as: %s' , " <b> " . h ( logged_user ()) . " </b> " ) . " \n " ; $l = $b -> databases (); if ( $l ){ $Yg = support ( " scheme " ); $ob = 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 " ; $l = ( $_GET [ " dbsize " ] ? count_tables ( $l ) : array_flip ( $l )); foreach ( $l
as $m => $S ){ $Qg = h ( ME ) . " db= " . urlencode ( $m ); $u = h ( " Db- " . $m ); echo " <tr " . odd () . " > " . ( support ( " database " ) ? " <td> " . checkbox ( " db[] " , $m , in_array ( $m ,( array ) $_POST [ " db " ]), " " , " " , " " , $u ) : " " ), " <th><a href=' $Qg ' id=' $u '> " . h ( $m ) . " </a> " ; $d = h ( db_collation ( $m , $ob )); echo " <td> " . ( support ( " database " ) ? " <a href=' $Qg " . ( $Yg ? " &ns= " : " " ) . " &database=' title=' " . 'Alter database' . " '> $d </a> " : $d ), " <td align='right'><a href=' $Qg &schema=' id='tables- " . h ( $m ) . " ' title=' " . 'Database schema' . " '> " . ( $_GET [ " dbsize " ] ? $S : " ? " ) . " </a> " , " <td align='right' id='size- " . h ( $m ) . " '> " . ( $_GET [ " dbsize " ] ? db_size ( $m ) : " ? " ), " \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=' $mi '> \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 ;}} $nf = " RESTRICT|NO ACTION|CASCADE|SET NULL|SET DEFAULT " ; class
2018-12-15 21:22:00 +00:00
TmpFile { var $handler ; var $size ; function
__construct (){ $this -> handler = tmpfile ();} function
2019-02-03 12:13:26 +00:00
write ( $zb ){ $this -> size += strlen ( $zb ); fwrite ( $this -> handler , $zb );} function
send (){ fseek ( $this -> handler , 0 ); fpassthru ( $this -> handler ); fclose ( $this -> handler );}} $uc = " '(?:''|[^' \\ \\ ]| \\ \\ .)*' " ; $Pd = " 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 " ]; $q = fields ( $a ); header ( " Content-Type: application/octet-stream " ); header ( " Content-Disposition: attachment; filename= " . friendly_url ( " $a - " . implode ( " _ " , $_GET [ " where " ])) . " . " . friendly_url ( $_GET [ " field " ])); $L = array ( idf_escape ( $_GET [ " field " ])); $H = $n -> select ( $a , $L , array ( where ( $_GET , $q )), $L ); $J = ( $H ? $H -> fetch_row () : array ()); echo $n -> value ( $J [ 0 ], $q [ $_GET [ " field " ]]); exit ;} elseif ( isset ( $_GET [ " table " ])){ $a = $_GET [ " table " ]; $q = fields ( $a ); if ( ! $q ) $o = error (); $R = table_status1 ( $a , true ); $C = $b -> tableName ( $R ); page_header (( $q && is_view ( $R ) ? $R [ 'Engine' ] == 'materialized view' ? 'Materialized view' : 'View' : 'Table' ) . " : " . ( $C != " " ? $C : h ( $a )), $o ); $b -> selectLinks ( $R ); $tb = $R [ " Comment " ]; if ( $tb != " " ) echo " <p class='nowrap'> " . 'Comment' . " : " . h ( $tb ) . " \n " ; if ( $q ) $b -> tableStructurePrint ( $q ); if ( ! is_view ( $R )){ if ( support ( " indexes " )){ echo " <h3 id='indexes'> " . 'Indexes' . " </h3> \n " ; $x = indexes ( $a ); if ( $x ) $b -> tableIndexesPrint ( $x ); echo '<p class="links"><a href="' . h ( ME ) . 'indexes=' . urlencode ( $a ) . '">' . 'Alter indexes' . " </a> \n " ;} if ( fk_support ( $R )){ echo " <h3 id='foreign-keys'> " . 'Foreign keys' . " </h3> \n " ; $cd = foreign_keys ( $a ); if ( $cd ){ echo " <table cellspacing='0'> \n " , " <thead><tr><th> " . 'Source' . " <td> " . 'Target' . " <td> " . 'ON DELETE' . " <td> " . 'ON UPDATE' . " <td></thead> \n " ; foreach ( $cd
as $C => $r ){ echo " <tr title=' " . h ( $C ) . " '> " , " <th><i> " . implode ( " </i>, <i> " , array_map ( 'h' , $r [ " source " ])) . " </i> " , " <td><a href=' " . h ( $r [ " db " ] != " " ? preg_replace ( '~db=[^&]*~' , " db= " . urlencode ( $r [ " db " ]), ME ) : ( $r [ " ns " ] != " " ? preg_replace ( '~ns=[^&]*~' , " ns= " . urlencode ( $r [ " ns " ]), ME ) : ME )) . " table= " . urlencode ( $r [ " table " ]) . " '> " . ( $r [ " db " ] != " " ? " <b> " . h ( $r [ " db " ]) . " </b>. " : " " ) . ( $r [ " ns " ] != " " ? " <b> " . h ( $r [ " ns " ]) . " </b>. " : " " ) . h ( $r [ " table " ]) . " </a> " , " (<i> " . implode ( " </i>, <i> " , array_map ( 'h' , $r [ " target " ])) . " </i>) " , " <td> " . h ( $r [ " on_delete " ]) . " \n " , " <td> " . h ( $r [ " on_update " ]) . " \n " , '<td><a href="' . h ( ME . 'foreign=' . urlencode ( $a ) . '&name=' . urlencode ( $C )) . '">' . '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 " ; $yi = triggers ( $a ); if ( $yi ){ echo " <table cellspacing='0'> \n " ; foreach ( $yi
as $z => $X ) echo " <tr valign='top'><td> " . h ( $X [ 0 ]) . " <td> " . h ( $X [ 1 ]) . " <th> " . h ( $z ) . " <td><a href=' " . h ( ME . 'trigger=' . urlencode ( $a ) . '&name=' . urlencode ( $z )) . " '> " . 'Alter' . " </a> \n " ; echo " </table> \n " ;} echo '<p class="links"><a href="' . h ( ME ) . 'trigger=' . urlencode ( $a ) . '">' . 'Add trigger' . " </a> \n " ;}} elseif ( isset ( $_GET [ " schema " ])){ page_header ( 'Database schema' , " " , array (), h ( DB . ( $_GET [ " ns " ] ? " . $_GET[ns] " : " " ))); $Ph = array (); $Qh = array (); $ea = ( $_GET [ " schema " ] ? $_GET [ " schema " ] : $_COOKIE [ " adminer_schema- " . str_replace ( " . " , " _ " , DB )]); preg_match_all ( '~([^:]+):([-0-9.]+)x([-0-9.]+)(_|$)~' , $ea , $Be , PREG_SET_ORDER ); foreach ( $Be
as $t => $B ){ $Ph [ $B [ 1 ]] = array ( $B [ 2 ], $B [ 3 ]); $Qh [] = " \n \t ' " . js_escape ( $B [ 1 ]) . " ': [ $B[2] , $B[3] ] " ;} $ni = 0 ; $Qa =- 1 ; $Xg = array (); $Cg = array (); $pe = array (); foreach ( table_status ( '' , true ) as $Q => $R ){ if ( is_view ( $R )) continue ; $bg = 0 ; $Xg [ $Q ][ " fields " ] = array (); foreach ( fields ( $Q ) as $C => $p ){ $bg += 1.25 ; $p [ " pos " ] = $bg ; $Xg [ $Q ][ " fields " ][ $C ] = $p ;} $Xg [ $Q ][ " pos " ] = ( $Ph [ $Q ] ? $Ph [ $Q ] : array ( $ni , 0 )); foreach ( $b -> foreignKeys ( $Q ) as $X ){ if ( ! $X [ " db " ]){ $ne = $Qa ; if ( $Ph [ $Q ][ 1 ] || $Ph [ $X [ " table " ]][ 1 ]) $ne = min ( floatval ( $Ph [ $Q ][ 1 ]), floatval ( $Ph [ $X [ " table " ]][ 1 ])) - 1 ; else $Qa -=. 1 ; while ( $pe [( string ) $ne ]) $ne -=. 0001 ; $Xg [ $Q ][ " references " ][ $X [ " table " ]][( string ) $ne ] = array ( $X [ " source " ], $X [ " target " ]); $Cg [ $X [ " table " ]][ $Q ][( string ) $ne ] = $X [ " target " ]; $pe [( string ) $ne ] = true ;}} $ni = max ( $ni , $Xg [ $Q ][ " pos " ][ 0 ] + 2.5 + $bg );} echo '<div id="schema" style="height: ' , $ni , ' em ; " >
2018-12-15 21:22:00 +00:00
< script ',nonce(),' >
qs ( \ ' #schema\').onselectstart = function () { return false; };
var tablePos = { ',implode(",",$Qh)."\n",' };
var em = qs ( \ '#schema\').offsetHeight / ' , $ni , ' ;
document . onmousemove = schemaMousemove ;
document . onmouseup = partialArg ( schemaMouseup , \ '' , js_escape ( DB ), ' \ ' );
</ script >
2019-02-03 12:13:26 +00:00
' ; foreach ( $Xg
as $C => $Q ){ echo " <div class='table' style='top: " . $Q [ " pos " ][ 0 ] . " em; left: " . $Q [ " pos " ][ 1 ] . " em;'> " , '<a href="' . h ( ME ) . 'table=' . urlencode ( $C ) . '"><b>' . h ( $C ) . " </b></a> " , script ( " qsl('div').onmousedown = schemaMousedown; " ); foreach ( $Q [ " fields " ] as $p ){ $X = '<span' . type_class ( $p [ " type " ]) . ' title="' . h ( $p [ " full_type " ] . ( $p [ " null " ] ? " NULL " : '' )) . '">' . h ( $p [ " field " ]) . '</span>' ; echo " <br> " . ( $p [ " primary " ] ? " <i> $X </i> " : $X );} foreach (( array ) $Q [ " references " ] as $Wh => $Dg ){ foreach ( $Dg
as $ne => $_g ){ $oe = $ne - $Ph [ $C ][ 1 ]; $t = 0 ; foreach ( $_g [ 0 ] as $th ) echo " \n <div class='references' title=' " . h ( $Wh ) . " ' id='refs $ne - " . ( $t ++ ) . " ' style='left: $oe " . " em; top: " . $Q [ " fields " ][ $th ][ " pos " ] . " em; padding-top: .5em;'><div style='border-top: 1px solid Gray; width: " . ( - $oe ) . " em;'></div></div> " ;}} foreach (( array ) $Cg [ $C ] as $Wh => $Dg ){ foreach ( $Dg
as $ne => $f ){ $oe = $ne - $Ph [ $C ][ 1 ]; $t = 0 ; foreach ( $f
as $Vh ) echo " \n <div class='references' title=' " . h ( $Wh ) . " ' id='refd $ne - " . ( $t ++ ) . " ' style='left: $oe " . " em; top: " . $Q [ " fields " ][ $Vh ][ " pos " ] . " em; height: 1.25em; background: url( " . h ( preg_replace ( " ~ \\ ?.*~ " , " " , ME ) . " ?file=arrow.gif) no-repeat right center;&version=4.7.1 " ) . " '><div style='height: .5em; border-bottom: 1px solid Gray; width: " . ( - $oe ) . " em;'></div></div> " ;}} echo " \n </div> \n " ;} foreach ( $Xg
as $C => $Q ){ foreach (( array ) $Q [ " references " ] as $Wh => $Dg ){ foreach ( $Dg
as $ne => $_g ){ $Qe = $ni ; $Fe =- 10 ; foreach ( $_g [ 0 ] as $z => $th ){ $cg = $Q [ " pos " ][ 0 ] + $Q [ " fields " ][ $th ][ " pos " ]; $dg = $Xg [ $Wh ][ " pos " ][ 0 ] + $Xg [ $Wh ][ " fields " ][ $_g [ 1 ][ $z ]][ " pos " ]; $Qe = min ( $Qe , $cg , $dg ); $Fe = max ( $Fe , $cg , $dg );} echo " <div class='references' id='refl $ne ' style='left: $ne " . " em; top: $Qe " . " em; padding: .5em 0;'><div style='border-right: 1px solid Gray; margin-top: 1px; height: " . ( $Fe - $Qe ) . " em;'></div></div> \n " ;}}} echo ' </ div >
2018-12-15 21:22:00 +00:00
< p class = " links " >< a href = " ',h(ME. " schema = " .urlencode( $ea )),' " id = " schema-link " > Permanent link </ a >
2019-02-03 12:13:26 +00:00
';}elseif(isset($_GET["dump"])){$a=$_GET["dump"];if($_POST&&!$o){$Bb="";foreach(array("output","format","db_style","routines","events","table_style","auto_increment","triggers","data_style")as$z)$Bb.="&$z=".urlencode($_POST[$z]);cookie("adminer_export",substr($Bb,1));$S=array_flip((array)$_POST["tables"])+array_flip((array)$_POST["data"]);$Gc=dump_headers((count($S)==1?key($S):DB),(DB==""||count($S)>1));$Xd=preg_match(' ~ sql ~ ' , $_POST [ " format " ]); if ( $Xd ){ echo " -- Adminer $ia " . $cc [ DRIVER ] . " dump \n \n " ; if ( $y == " sql " ){ echo " SET NAMES utf8;
2018-12-15 21:22:00 +00:00
SET time_zone = '+00:00' ;
" .( $_POST["data_style"] ? " SET foreign_key_checks = 0 ;
SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO' ;
" : " " ). "
2019-02-03 12:13:26 +00:00
" ; $g->query ( " SET time_zone = '+00:00' ; " );}} $Gh = $_POST["db_style"] ; $l =array(DB);if(DB== " " ) { $l = $_POST [ " databases " ]; if ( is_string ( $l )) $l = explode ( " \n " , rtrim ( str_replace ( " \r " , " " , $l ), " \n " )); } foreach((array) $l
as $m ){ $b -> dumpDatabase ( $m ); if ( $g -> select_db ( $m )){ if ( $Xd && preg_match ( '~CREATE~' , $Gh ) && ( $i = $g -> result ( " SHOW CREATE DATABASE " . idf_escape ( $m ), 1 ))){ set_utf8mb4 ( $i ); if ( $Gh == " DROP+CREATE " ) echo " DROP DATABASE IF EXISTS " . idf_escape ( $m ) . " ; \n " ; echo " $i ; \n " ;} if ( $Xd ){ if ( $Gh ) echo
use_sql ( $m ) . " ; \n \n " ; $Gf = " " ; if ( $_POST [ " routines " ]){ foreach ( array ( " FUNCTION " , " PROCEDURE " ) as $Rg ){ foreach ( get_rows ( " SHOW $Rg STATUS WHERE Db = " . q ( $m ), null , " -- " ) as $J ){ $i = remove_definer ( $g -> result ( " SHOW CREATE $Rg " . idf_escape ( $J [ " Name " ]), 2 )); set_utf8mb4 ( $i ); $Gf .= ( $Gh != 'DROP+CREATE' ? " DROP $Rg IF EXISTS " . idf_escape ( $J [ " Name " ]) . " ;; \n " : " " ) . " $i ;; \n \n " ;}}} if ( $_POST [ " events " ]){ foreach ( get_rows ( " SHOW EVENTS " , null , " -- " ) as $J ){ $i = remove_definer ( $g -> result ( " SHOW CREATE EVENT " . idf_escape ( $J [ " Name " ]), 3 )); set_utf8mb4 ( $i ); $Gf .= ( $Gh != 'DROP+CREATE' ? " DROP EVENT IF EXISTS " . idf_escape ( $J [ " Name " ]) . " ;; \n " : " " ) . " $i ;; \n \n " ;}} if ( $Gf ) echo " DELIMITER ;; \n \n $Gf " . " DELIMITER ; \n \n " ;} if ( $_POST [ " table_style " ] || $_POST [ " data_style " ]){ $Xi = array (); foreach ( table_status ( '' , true ) as $C => $R ){ $Q = ( DB == " " || in_array ( $C ,( array ) $_POST [ " tables " ])); $Jb = ( DB == " " || in_array ( $C ,( array ) $_POST [ " data " ])); if ( $Q || $Jb ){ if ( $Gc == " tar " ){ $ji = new
TmpFile ; ob_start ( array ( $ji , 'write' ), 1e5 );} $b -> dumpTable ( $C ,( $Q ? $_POST [ " table_style " ] : " " ),( is_view ( $R ) ? 2 : 0 )); if ( is_view ( $R )) $Xi [] = $C ; elseif ( $Jb ){ $q = fields ( $C ); $b -> dumpData ( $C , $_POST [ " data_style " ], " SELECT * " . convert_fields ( $q , $q ) . " FROM " . table ( $C ));} if ( $Xd && $_POST [ " triggers " ] && $Q && ( $yi = trigger_sql ( $C ))) echo " \n DELIMITER ;; \n $yi\nDELIMITER ; \n " ; if ( $Gc == " tar " ){ ob_end_flush (); tar_file (( DB != " " ? " " : " $m / " ) . " $C .csv " , $ji );} elseif ( $Xd ) echo " \n " ;}} foreach ( $Xi
as $Wi ) $b -> dumpTable ( $Wi , $_POST [ " table_style " ], 1 ); if ( $Gc == " tar " ) echo
pack ( " x512 " );}}} if ( $Xd ) echo " -- " . $g -> result ( " SELECT NOW() " ) . " \n " ; exit ;} page_header ( 'Export' , $o ,( $_GET [ " export " ] != " " ? array ( " table " => $_GET [ " export " ]) : array ()), h ( DB )); echo '
2018-12-15 21:22:00 +00:00
< form action = " " method = " post " >
< table cellspacing = " 0 " class = " layout " >
2019-02-03 12:13:26 +00:00
';$Nb=array(' ',' USE ',' DROP + CREATE ',' CREATE ');$Rh=array(' ',' DROP + CREATE ',' CREATE ');$Kb=array(' ',' TRUNCATE + INSERT ',' INSERT ');if($y=="sql")$Kb[]=' INSERT + UPDATE ';parse_str($_COOKIE["adminer_export"],$J);if(!$J)$J=array("output"=>"text","format"=>"sql","db_style"=>(DB!=""?"":"CREATE"),"table_style"=>"DROP+CREATE","data_style"=>"INSERT");if(!isset($J["events"])){$J["routines"]=$J["events"]=($_GET["dump"]=="");$J["triggers"]=$J["table_style"];}echo"<tr><th>".' Output '."<td>".html_select("output",$b->dumpOutput(),$J["output"],0)."\n";echo"<tr><th>".' Format '."<td>".html_select("format",$b->dumpFormat(),$J["format"],0)."\n";echo($y=="sqlite"?"":"<tr><th>".' Database '."<td>".html_select(' db_style ',$Nb,$J["db_style"]).(support("routine")?checkbox("routines",1,$J["routines"],' Routines '):"").(support("event")?checkbox("events",1,$J["events"],' Events '):"")),"<tr><th>".' Tables '."<td>".html_select(' table_style ',$Rh,$J["table_style"]).checkbox("auto_increment",1,$J["auto_increment"],' Auto Increment ').(support("trigger")?checkbox("triggers",1,$J["triggers"],' Triggers '):""),"<tr><th>".' Data '."<td>".html_select(' data_style ',$Kb,$J["data_style"]),' </ table >
2018-12-15 21:22:00 +00:00
< p >< input type = " submit " value = " Export " >
< input type = " hidden " name = " token " value = " ', $mi ,' " >
< table cellspacing = " 0 " >
2019-02-03 12:13:26 +00:00
',script("qsl(' table ').onclick = dumpClick;");$gg=array();if(DB!=""){$eb=($a!=""?"":" checked");echo"<thead><tr>","<th style=' text - align : left ; '><label class=' block '><input type=' checkbox ' id=' check - tables '$eb>".' 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'$eb></label>".script("qs('#check-data').onclick = partial(formCheck, /^data\\[/);",""),"</thead>\n";$Xi="";$Sh=tables_list();foreach($Sh
as $C => $T ){ $fg = preg_replace ( '~_.*~' , '' , $C ); $eb = ( $a == " " || $a == ( substr ( $a , - 1 ) == " % " ? " $fg % " : $C )); $jg = " <tr><td> " . checkbox ( " tables[] " , $C , $eb , $C , " " , " block " ); if ( $T !== null &&! preg_match ( '~table~i' , $T )) $Xi .= " $jg\n " ; else
echo " $jg <td align='right'><label class='block'><span id='Rows- " . h ( $C ) . " '></span> " . checkbox ( " data[] " , $C , $eb ) . " </label> \n " ; $gg [ $fg ] ++ ;} echo $Xi ; if ( $Sh ) 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 " ; $l = $b -> databases (); if ( $l ){ foreach ( $l
as $m ){ if ( ! information_schema ( $m )){ $fg = preg_replace ( '~_.*~' , '' , $m ); echo " <tr><td> " . checkbox ( " databases[] " , $m , $a == " " || $a == " $fg % " , $m , " " , " block " ) . " \n " ; $gg [ $fg ] ++ ;}}} else
2018-12-15 21:22:00 +00:00
echo " <tr><td><textarea name='databases' rows='10' cols='20'></textarea> " ;} echo ' </ table >
</ form >
2019-02-03 12:13:26 +00:00
' ; $Uc = true ; foreach ( $gg
as $z => $X ){ if ( $z != " " && $X > 1 ){ echo ( $Uc ? " <p> " : " " ) . " <a href=' " . h ( ME ) . " dump= " . urlencode ( " $z % " ) . " '> " . h ( $z ) . " </a> " ; $Uc = false ;}}} elseif ( isset ( $_GET [ " privileges " ])){ page_header ( 'Privileges' ); echo '<p class="links"><a href="' . h ( ME ) . 'user=">' . 'Create user' . " </a> " ; $H = $g -> query ( " SELECT User, Host FROM mysql. " . ( DB == " " ? " user " : " db WHERE " . q ( DB ) . " LIKE Db " ) . " ORDER BY Host, User " ); $jd = $H ; if ( ! $H ) $H = $g -> query ( " SELECT SUBSTRING_INDEX(CURRENT_USER, '@', 1) AS User, SUBSTRING_INDEX(CURRENT_USER, '@', -1) AS Host " ); echo " <form action=''><p> \n " ; hidden_fields_get (); echo " <input type='hidden' name='db' value=' " . h ( DB ) . " '> \n " ,( $jd ? " " : " <input type='hidden' name='grant' value=''> \n " ), " <table cellspacing='0'> \n " , " <thead><tr><th> " . 'Username' . " <th> " . 'Server' . " <th></thead> \n " ; while ( $J = $H -> fetch_assoc ()) echo '<tr' . odd () . '><td>' . h ( $J [ " User " ]) . " <td> " . h ( $J [ " Host " ]) . '<td><a href="' . h ( ME . 'user=' . urlencode ( $J [ " User " ]) . '&host=' . urlencode ( $J [ " Host " ])) . '">' . 'Edit' . " </a> \n " ; if ( ! $jd || 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 ( ! $o && $_POST [ " export " ]){ dump_headers ( " sql " ); $b -> dumpTable ( " " , " " ); $b -> dumpData ( " " , " table " , $_POST [ " query " ]); exit ;} restart_session (); $xd =& get_session ( " queries " ); $wd =& $xd [ DB ]; if ( ! $o && $_POST [ " clear " ]){ $wd = array (); redirect ( remove_from_uri ( " history " ));} page_header (( isset ( $_GET [ " import " ]) ? 'Import' : 'SQL command' ), $o ); if ( ! $o && $_POST ){ $gd = false ; if ( ! isset ( $_GET [ " import " ])) $G = $_POST [ " query " ]; elseif ( $_POST [ " webfile " ]){ $xh = $b -> importServerPath (); $gd =@ fopen (( file_exists ( $xh ) ? $xh : " compress.zlib:// $xh .gz " ), " rb " ); $G = ( $gd ? fread ( $gd , 1e6 ) : false );} else $G = get_file ( " sql_file " , true ); if ( is_string ( $G )){ if ( function_exists ( 'memory_get_usage' )) @ ini_set ( " memory_limit " , max ( ini_bytes ( " memory_limit " ), 2 * strlen ( $G ) + memory_get_usage () + 8e6 )); if ( $G != " " && strlen ( $G ) < 1e6 ){ $rg = $G . ( preg_match ( " ~;[ \t \r \n ]* \$ ~ " , $G ) ? " " : " ; " ); if ( ! $wd || reset ( end ( $wd )) != $rg ){ restart_session (); $wd [] = array ( $rg , time ()); set_session ( " queries " , $xd ); stop_session ();}} $uh = " (?: \\ s|/ \\ *[ \ s \ S]*? \\ */|(?:#|-- )[^ \n ]* \n ?|-- \r ? \n ) " ; $Tb = " ; " ; $D = 0 ; $rc = true ; $h = connect (); if ( is_object ( $h ) && DB != " " ) $h -> select_db ( DB ); $sb = 0 ; $wc = array (); $Nf = '[\'"' . ( $y == " sql " ? '`#' : ( $y == " sqlite " ? '`[' : ( $y == " mssql " ? '[' : '' ))) . ']|/\*|-- |$' . ( $y == " pgsql " ? '|\$[^$]*\$' : '' ); $oi = microtime ( true ); parse_str ( $_COOKIE [ " adminer_export " ], $xa ); $ic = $b -> dumpFormat (); unset ( $ic [ " sql " ]); while ( $G != " " ){ if ( ! $D && preg_match ( " ~^ $uh *+DELIMITER \\ s+( \\ S+)~i " , $G , $B )){ $Tb = $B [ 1 ]; $G = substr ( $G , strlen ( $B [ 0 ]));} else { preg_match ( '(' . preg_quote ( $Tb ) . " \\ s*| $Nf ) " , $G , $B , PREG_OFFSET_CAPTURE , $D ); list ( $ed , $bg ) = $B [ 0 ]; if ( ! $ed && $gd &&! feof ( $gd )) $G .= fread ( $gd , 1e5 ); else { if ( ! $ed && rtrim ( $G ) == " " ) break ; $D = $bg + strlen ( $ed ); if ( $ed && rtrim ( $ed ) != $Tb ){ while ( preg_match ( '(' . ( $ed == '/*' ? '\*/' : ( $ed == '[' ? ']' : ( preg_match ( '~^-- |^#~' , $ed ) ? " \n " : preg_quote ( $ed ) . " | \\ \\ . " ))) . '|$)s' , $G , $B , PREG_OFFSET_CAPTURE , $D )){ $Vg = $B [ 0 ][ 0 ]; if ( ! $Vg && $gd &&! feof ( $gd )) $G .= fread ( $gd , 1e5 ); else { $D = $B [ 0 ][ 1 ] + strlen ( $Vg ); if ( $Vg [ 0 ] != " \\ " ) break ;}}} else { $rc = false ; $rg = substr ( $G , 0 , $bg ); $sb ++ ; $jg = " <pre id='sql- $sb '><code class='jush- $y '> " . $b -> sqlCommandQuery ( $rg ) . " </code></pre> \n " ; if ( $y == " sqlite " && preg_match ( " ~^ $uh *+ATTACH \\ b~i " , $rg , $B )){ echo $jg , " <p class='error'> " . 'ATTACH queries are not supported.' . " \n " ; $wc [] = " <a href='#sql- $sb '> $sb </a> " ; if ( $_POST [ " error_stops " ]) break ;} else { if ( ! $_POST [ " only_errors " ]){ echo $jg ; ob_flush (); flush ();} $Ah = microtime ( true ); if ( $g -> multi_query ( $rg ) && is_object ( $h ) && preg_match ( " ~^ $uh *+USE \\ b~i " , $rg )) $h -> query ( $rg ); do { $H = $g -> store_result (); if ( $g -> error ){ echo ( $_POST [ " only_errors " ] ? $jg : " " ), " <p class='error'> " . 'Error in query' . ( $g -> errno ? " ( $g->errno ) " : " " ) . " : " . error () . " \n " ; $wc [] = " <a href='#sql- $sb '> $sb </a> " ; if ( $_POST [ " error_stops " ]) break
2 ;} else { $ci = " <span class='time'>( " . format_time ( $Ah ) . " )</span> " . ( strlen ( $rg ) < 1000 ? " <a href=' " . h ( ME ) . " sql= " . urlencode ( trim ( $rg )) . " '> " . 'Edit' . " </a> " : " " ); $za = $g -> affected_rows ; $aj = ( $_POST [ " only_errors " ] ? " " : $n -> warnings ()); $bj = " warnings- $sb " ; if ( $aj ) $ci .= " , <a href='# $bj '> " . 'Warnings' . " </a> " . script ( " qsl('a').onclick = partial(toggle, ' $bj '); " , " " ); $Dc = null ; $Ec = " explain- $sb " ; if ( is_object ( $H )){ $_ = $_POST [ " limit " ]; $_f = select ( $H , $h , array (), $_ ); if ( ! $_POST [ " only_errors " ]){ echo " <form action='' method='post'> \n " ; $df = $H -> num_rows ; echo " <p> " . ( $df ? ( $_ && $df > $_ ? sprintf ( '%d / ' , $_ ) : " " ) . lang ( array ( '%d row' , '%d rows' ), $df ) : " " ), $ci ; if ( $h && preg_match ( " ~^( $uh | \\ ()*+SELECT \\ b~i " , $rg ) && ( $Dc = explain ( $h , $rg ))) echo " , <a href='# $Ec '>Explain</a> " . script ( " qsl('a').onclick = partial(toggle, ' $Ec '); " , " " ); $u = " export- $sb " ; echo " , <a href='# $u '> " . 'Export' . " </a> " . script ( " qsl('a').onclick = partial(toggle, ' $u '); " , " " ) . " <span id=' $u ' class='hidden'>: " . html_select ( " output " , $b -> dumpOutput (), $xa [ " output " ]) . " " . html_select ( " format " , $ic , $xa [ " format " ]) . " <input type='hidden' name='query' value=' " . h ( $rg ) . " '> " . " <input type='submit' name='export' value=' " . 'Export' . " '><input type='hidden' name='token' value=' $mi '></span> \n " . " </form> \n " ;}} else { if ( preg_match ( " ~^ $uh *+(CREATE|DROP|ALTER) $uh ++(DATABASE|SCHEMA) \\ b~i " , $rg )){ 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 ) . " $ci\n " ;} echo ( $aj ? " <div id=' $bj ' class='hidden'> \n $aj </div> \n " : " " ); if ( $Dc ){ echo " <div id=' $Ec ' class='hidden'> \n " ; select ( $Dc , $h , $_f ); echo " </div> \n " ;}} $Ah = microtime ( true );} while ( $g -> next_result ());} $G = substr ( $G , $D ); $D = 0 ;}}}} if ( $rc ) 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.' ), $sb - count ( $wc )), " <span class='time'>( " . format_time ( $oi ) . " )</span> \n " ;} elseif ( $wc && $sb > 1 ) echo " <p class='error'> " . 'Error in query' . " : " . implode ( " " , $wc ) . " \n " ;} else
2018-12-15 21:22:00 +00:00
echo " <p class='error'> " . upload_error ( $G ) . " \n " ;} echo '
< form action = " " method = " post " enctype = " multipart/form-data " id = " form " >
2019-02-03 12:13:26 +00:00
';$Ac="<input type=' submit ' value=' " .'Execute'. " ' title=' Ctrl + Enter ' > " ;if(!isset( $_GET["import"] )) { $rg = $_GET["sql"] ;if( $_POST ) $rg = $_POST["query"] ;elseif( $_GET["history"] == " all " ) $rg = $wd ;elseif( $_GET["history"] != " " ) $rg = $wd[$_GET["history"] ][0];echo " < p > " ;textarea( " query " , $rg ,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> $Ac\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> " ; $pd = ( extension_loaded ( " zlib " ) ? " [.gz] " : " " ); echo ( ini_bool ( " file_uploads " ) ? " SQL $pd (< " . ini_get ( " upload_max_filesize " ) . " B): <input type='file' name='sql_file[]' multiple> \n $Ac " : 'File uploads are disabled.' ), " </div></fieldset> \n " ; $Ed = $b -> importServerPath (); if ( $Ed ){ echo " <fieldset><legend> " . 'From server' . " </legend><div> " , sprintf ( 'Webserver file %s' , " <code> " . h ( $Ed ) . " $pd </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=' $mi '> \n " ; if ( ! isset ( $_GET [ " import " ]) && $wd ){ print_fieldset ( " history " , 'History' , $_GET [ " history " ] != " " ); for ( $X = end ( $wd ); $X ; $X = prev ( $wd )){ $z = key ( $wd ); list ( $rg , $ci , $mc ) = $X ; echo '<a href="' . h ( ME . " sql=&history= $z " ) . '">' . 'Edit' . " </a> " . " <span class='time' title=' " .@ date ( 'Y-m-d' , $ci ) . " '> " .@ date ( " H:i:s " , $ci ) . " </span> " . " <code class='jush- $y '> " . shorten_utf8 ( ltrim ( str_replace ( " \n " , " " , str_replace ( " \r " , " " , preg_replace ( '~^(#|-- ).*~m' , '' , $rg )))), 80 , " </code> " ) . ( $mc ? " <span class='time'>( $mc )</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 " ]; $q = fields ( $a ); $Z = ( isset ( $_GET [ " select " ]) ? ( $_POST [ " check " ] && count ( $_POST [ " check " ]) == 1 ? where_check ( $_POST [ " check " ][ 0 ], $q ) : " " ) : where ( $_GET , $q )); $Hi = ( isset ( $_GET [ " select " ]) ? $_POST [ " edit " ] : $Z ); foreach ( $q
as $C => $p ){ if ( ! isset ( $p [ " privileges " ][ $Hi ? " update " : " insert " ]) || $b -> fieldName ( $p ) == " " ) unset ( $q [ $C ]);} if ( $_POST &&! $o &&! isset ( $_GET [ " select " ])){ $ve = $_POST [ " referer " ]; if ( $_POST [ " insert " ]) $ve = ( $Hi ? null : $_SERVER [ " REQUEST_URI " ]); elseif ( ! preg_match ( '~^.+&select=.+$~' , $ve )) $ve = ME . " select= " . urlencode ( $a ); $x = indexes ( $a ); $Ci = unique_array ( $_GET [ " where " ], $x ); $ug = " \n WHERE $Z " ; if ( isset ( $_POST [ " delete " ])) queries_redirect ( $ve , 'Item has been deleted.' , $n -> delete ( $a , $ug , ! $Ci )); else { $O = array (); foreach ( $q
as $C => $p ){ $X = process_input ( $p ); if ( $X !== false && $X !== null ) $O [ idf_escape ( $C )] = $X ;} if ( $Hi ){ if ( ! $O ) redirect ( $ve ); queries_redirect ( $ve , 'Item has been updated.' , $n -> update ( $a , $O , $ug , ! $Ci )); if ( is_ajax ()){ page_headers (); page_messages ( $o ); exit ;}} else { $H = $n -> insert ( $a , $O ); $me = ( $H ? last_id () : 0 ); queries_redirect ( $ve , sprintf ( 'Item%s has been inserted.' ,( $me ? " $me " : " " )), $H );}}} $J = null ; if ( $_POST [ " save " ]) $J = ( array ) $_POST [ " fields " ]; elseif ( $Z ){ $L = array (); foreach ( $q
as $C => $p ){ if ( isset ( $p [ " privileges " ][ " select " ])){ $Ga = convert_field ( $p ); if ( $_POST [ " clone " ] && $p [ " auto_increment " ]) $Ga = " '' " ; if ( $y == " sql " && preg_match ( " ~enum|set~ " , $p [ " type " ])) $Ga = " 1* " . idf_escape ( $C ); $L [] = ( $Ga ? " $Ga AS " : " " ) . idf_escape ( $C );}} $J = array (); if ( ! support ( " table " )) $L = array ( " * " ); if ( $L ){ $H = $n -> select ( $a , $L , array ( $Z ), $L , array (),( isset ( $_GET [ " select " ]) ? 2 : 1 )); if ( ! $H ) $o = error (); else { $J = $H -> fetch_assoc (); if ( ! $J ) $J = false ;} if ( isset ( $_GET [ " select " ]) && ( ! $J || $H -> fetch_assoc ())) $J = null ;}} if ( ! support ( " table " ) &&! $q ){ if ( ! $Z ){ $H = $n -> select ( $a , array ( " * " ), $Z , array ( " * " )); $J = ( $H ? $H -> fetch_assoc () : false ); if ( ! $J ) $J = array ( $n -> primary => " " );} if ( $J ){ foreach ( $J
as $z => $X ){ if ( ! $Z ) $J [ $z ] = null ; $q [ $z ] = array ( " field " => $z , " null " => ( $z != $n -> primary ), " auto_increment " => ( $z == $n -> primary ));}}} edit_form ( $a , $q , $J , $Hi );} elseif ( isset ( $_GET [ " create " ])){ $a = $_GET [ " create " ]; $Pf = array (); foreach ( array ( 'HASH' , 'LINEAR HASH' , 'KEY' , 'LINEAR KEY' , 'RANGE' , 'LIST' ) as $z ) $Pf [ $z ] = $z ; $Bg = referencable_primary ( $a ); $cd = array (); foreach ( $Bg
as $Nh => $p ) $cd [ str_replace ( " ` " , " `` " , $Nh ) . " ` " . str_replace ( " ` " , " `` " , $p [ " field " ])] = $Nh ; $Cf = array (); $R = array (); if ( $a != " " ){ $Cf = fields ( $a ); $R = table_status ( $a ); if ( ! $R ) $o = 'No tables.' ;} $J = $_POST ; $J [ " fields " ] = ( array ) $J [ " fields " ]; if ( $J [ " auto_increment_col " ]) $J [ " fields " ][ $J [ " auto_increment_col " ]][ " auto_increment " ] = true ; if ( $_POST ) set_adminer_settings ( array ( " comments " => $_POST [ " comments " ], " defaults " => $_POST [ " defaults " ])); if ( $_POST &&! process_fields ( $J [ " fields " ]) &&! $o ){ if ( $_POST [ " drop " ]) queries_redirect ( substr ( ME , 0 , - 1 ), 'Table has been dropped.' , drop_tables ( array ( $a ))); else { $q = array (); $Da = array (); $Mi = false ; $ad = array (); $Bf = reset ( $Cf ); $Aa = " FIRST " ; foreach ( $J [ " fields " ] as $z => $p ){ $r = $cd [ $p [ " type " ]]; $zi = ( $r !== null ? $Bg [ $r ] : $p ); if ( $p [ " field " ] != " " ){ if ( ! $p [ " has_default " ]) $p [ " default " ] = null ; if ( $z == $J [ " auto_increment_col " ]) $p [ " auto_increment " ] = true ; $og = process_field ( $p , $zi ); $Da [] = array ( $p [ " orig " ], $og , $Aa ); if ( $og != process_field ( $Bf , $Bf )){ $q [] = array ( $p [ " orig " ], $og , $Aa ); if ( $p [ " orig " ] != " " || $Aa ) $Mi = true ;} if ( $r !== null ) $ad [ idf_escape ( $p [ " field " ])] = ( $a != " " && $y != " sqlite " ? " ADD " : " " ) . format_foreign_key ( array ( 'table' => $cd [ $p [ " type " ]], 'source' => array ( $p [ " field " ]), 'target' => array ( $zi [ " field " ]), 'on_delete' => $p [ " on_delete " ],)); $Aa = " AFTER " . idf_escape ( $p [ " field " ]);} elseif ( $p [ " orig " ] != " " ){ $Mi = true ; $q [] = array ( $p [ " orig " ]);} if ( $p [ " orig " ] != " " ){ $Bf = next ( $Cf ); if ( ! $Bf ) $Aa = " " ;}} $Rf = " " ; if ( $Pf [ $J [ " partition_by " ]]){ $Sf = array (); if ( $J [ " partition_by " ] == 'RANGE' || $J [ " partition_by " ] == 'LIST' ){ foreach ( array_filter ( $J [ " partition_names " ]) as $z => $X ){ $Y = $J [ " partition_values " ][ $z ]; $Sf [] = " \n PARTITION " . idf_escape ( $X ) . " VALUES " . ( $J [ " partition_by " ] == 'RANGE' ? " LESS THAN " : " IN " ) . ( $Y != " " ? " ( $Y ) " : " MAXVALUE " );}} $Rf .= " \n PARTITION BY $J[partition_by] ( $J[partition] ) " . ( $Sf ? " ( " . implode ( " , " , $Sf ) . " \n ) " : ( $J [ " partitions " ] ? " PARTITIONS " . ( + $J [ " partitions " ]) : " " ));} elseif ( support ( " partitioning " ) && preg_match ( " ~partitioned~ " , $R [ " Create_options " ])) $Rf .= " \n REMOVE PARTITIONING " ; $Je = 'Table has been altered.' ; if ( $a == " " ){ cookie ( " adminer_engine " , $J [ " Engine " ]); $Je = 'Table has been created.' ;} $C = trim ( $J [ " name " ]); queries_redirect ( ME . ( support ( " table " ) ? " table= " : " select= " ) . urlencode ( $C ), $Je , alter_table ( $a , $C ,( $y == " sqlite " && ( $Mi || $ad ) ? $Da : $q ), $ad ,( $J [ " Comment " ] != $R [ " Comment " ] ? $J [ " Comment " ] : null ),( $J [ " Engine " ] && $J [ " Engine " ] != $R [ " Engine " ] ? $J [ " Engine " ] : " " ),( $J [ " Collation " ] && $J [ " Collation " ] != $R [ " Collation " ] ? $J [ " Collation " ] : " " ),( $J [ " Auto_increment " ] != " " ? number ( $J [ " Auto_increment " ]) : " " ), $Rf ));}} page_header (( $a != " " ? 'Alter table' : 'Create table' ), $o , array ( " table " => $a ), h ( $a )); if ( ! $_POST ){ $J = array ( " Engine " => $_COOKIE [ " adminer_engine " ], " fields " => array ( array ( " field " => " " , " type " => ( isset ( $U [ " int " ]) ? " int " : ( isset ( $U [ " integer " ]) ? " integer " : " " )), " on_update " => " " )), " partition_names " => array ( " " ),); if ( $a != " " ){ $J = $R ; $J [ " name " ] = $a ; $J [ " fields " ] = array (); if ( ! $_GET [ " auto_increment " ]) $J [ " Auto_increment " ] = " " ; foreach ( $Cf
as $p ){ $p [ " has_default " ] = isset ( $p [ " default " ]); $J [ " fields " ][] = $p ;} if ( support ( " partitioning " )){ $hd = " FROM information_schema.PARTITIONS WHERE TABLE_SCHEMA = " . q ( DB ) . " AND TABLE_NAME = " . q ( $a ); $H = $g -> query ( " SELECT PARTITION_METHOD, PARTITION_ORDINAL_POSITION, PARTITION_EXPRESSION $hd ORDER BY PARTITION_ORDINAL_POSITION DESC LIMIT 1 " ); list ( $J [ " partition_by " ], $J [ " partitions " ], $J [ " partition " ]) = $H -> fetch_row (); $Sf = get_key_vals ( " SELECT PARTITION_NAME, PARTITION_DESCRIPTION $hd AND PARTITION_NAME != '' ORDER BY PARTITION_ORDINAL_POSITION " ); $Sf [ " " ] = " " ; $J [ " partition_names " ] = array_keys ( $Sf ); $J [ " partition_values " ] = array_values ( $Sf );}}} $ob = collations (); $tc = engines (); foreach ( $tc
as $sc ){ if ( ! strcasecmp ( $sc , $J [ " Engine " ])){ $J [ " Engine " ] = $sc ; break ;}} echo '
2018-12-15 21:22:00 +00:00
< form action = " " method = " post " id = " form " >
< p >
';if(support("columns")||$a==""){echo' Table name : < input name = " name " data - maxlength = " 64 " value = " ',h( $J["name"] ),' " autocapitalize = " off " >
' ; if ( $a == " " &&! $_POST ) echo
2019-02-03 12:13:26 +00:00
script ( " focus(qs('#form')['name']); " ); echo ( $tc ? " <select name='Engine'> " . optionlist ( array ( " " => " ( " . 'engine' . " ) " ) + $tc , $J [ " Engine " ]) . " </select> " . on_help ( " getTarget(event).value " , 1 ) . script ( " qsl('select').onchange = helpClose; " ) : " " ), ' ' ,( $ob &&! preg_match ( " ~sqlite|mssql~ " , $y ) ? html_select ( " Collation " , array ( " " => " ( " . 'collation' . " ) " ) + $ob , $J [ " Collation " ]) : " " ), ' < input type = " submit " value = " Save " >
2018-12-15 21:22:00 +00:00
';}echo'
';if(support("columns")){echo' < div class = " scrollable " >
< table cellspacing = " 0 " id = " edit-fields " class = " nowrap " >
2019-02-03 12:13:26 +00:00
';edit_fields($J["fields"],$ob,"TABLE",$cd);echo' </ table >
2018-12-15 21:22:00 +00:00
</ div >
< p >
Auto Increment : < input type = " number " name = " Auto_increment " size = " 6 " value = " ',h( $J["Auto_increment"] ),' " >
2019-02-03 12:13:26 +00:00
',checkbox("defaults",1,($_POST?$_POST["defaults"]:adminer_setting("defaults")),' Default values ',"columnShow(this.checked, 5)","jsonly"),(support("comment")?checkbox("comments",1,($_POST?$_POST["comments"]:adminer_setting("comments")),' Comment ',"editingCommentsClick(this, true);","jsonly").' < input name = " Comment " value = " '.h( $J["Comment"] ).' " data - maxlength = " '.(min_version(5.5)?2048:60).' " > ':' '),' < p >
2018-12-15 21:22:00 +00:00
< input type = " submit " value = " Save " >
';}echo'
2019-02-03 12:13:26 +00:00
';if($a!=""){echo' < input type = " submit " name = " drop " value = " Drop " > ',confirm(sprintf(' Drop % s ? ',$a));}if(support("partitioning")){$Qf=preg_match(' ~ RANGE | LIST ~ ',$J["partition_by"]);print_fieldset("partition",' Partition by ',$J["partition_by"]);echo' < p >
',"<select name=' partition_by '>".optionlist(array(""=>"")+$Pf,$J["partition_by"])."</select>".on_help("getTarget(event).value.replace(/./, ' PARTITION BY \ $ & ')",1).script("qsl(' select ').onchange = partitionByChange;"),' ( < input name = " partition " value = " ',h( $J["partition"] ),' " > )
Partitions : < input type = " number " name = " partitions " class = " size',( $Qf ||! $J["partition_by"] ? " hidden " : " " ),' " value = " ',h( $J["partitions"] ),' " >
< table cellspacing = " 0 " id = " partition-table " ',($Qf?"":" class=' hidden '"),' >
2018-12-15 21:22:00 +00:00
< thead >< tr >< th > Partition name < th > Values </ thead >
2019-02-03 12:13:26 +00:00
';foreach($J["partition_names"]as$z=>$X){echo' < tr > ',' < td >< input name = " partition_names[] " value = " '.h( $X ).' " autocapitalize = " off " > ',($z==count($J["partition_names"])-1?script("qsl(' input ').oninput = partitionNameChange;"):' '),' < td >< input name = " partition_values[] " value = " '.h( $J["partition_values"] [ $z ]).' " > ';}echo' </ table >
2018-12-15 21:22:00 +00:00
</ div ></ fieldset >
';}echo' < input type = " hidden " name = " token " value = " ', $mi ,' " >
</ form >
2019-02-03 12:13:26 +00:00
',script("qs(' #form')['defaults'].onclick();".(support("comment")?" editingCommentsClick(qs('#form')['comments']);":""));}elseif(isset($_GET["indexes"])){$a=$_GET["indexes"];$Hd=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"]))$Hd[]="FULLTEXT";if(preg_match('~MyISAM|M?aria'.(min_version(5.7,'10.2.2')?'|InnoDB':'').'~i',$R["Engine"]))$Hd[]="SPATIAL";$x=indexes($a);$hg=array();if($y=="mongo"){$hg=$x["_id_"];unset($Hd[0]);unset($x["_id_"]);}$J=$_POST;if($_POST&&!$o&&!$_POST["add"]&&!$_POST["drop_col"]){$c=array();foreach($J["indexes"]as$w){$C=$w["name"];if(in_array($w["type"],$Hd)){$f=array();$se=array();$Vb=array();$O=array();ksort($w["columns"]);foreach($w["columns"]as$z=>$e){if($e!=""){$re=$w["lengths"][$z];$Ub=$w["descs"][$z];$O[]=idf_escape($e).($re?"(".(+$re).")":"").($Ub?" DESC":"");$f[]=$e;$se[]=($re?$re:null);$Vb[]=$Ub;}}if($f){$Bc=$x[$C];if($Bc){ksort($Bc["columns"]);ksort($Bc["lengths"]);ksort($Bc["descs"]);if($w["type"]==$Bc["type"]&&array_values($Bc["columns"])===$f&&(!$Bc["lengths"]||array_values($Bc["lengths"])===$se)&&array_values($Bc["descs"])===$Vb){unset($x[$C]);continue;}}$c[]=array($w["type"],$C,$O);}}}foreach($x
as $C => $Bc ) $c [] = array ( $Bc [ " type " ], $C , " 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' , $o , array ( " table " => $a ), h ( $a )); $q = array_keys ( fields ( $a )); if ( $_POST [ " add " ]){ foreach ( $J [ " indexes " ] as $z => $w ){ if ( $w [ " columns " ][ count ( $w [ " columns " ])] != " " ) $J [ " indexes " ][ $z ][ " columns " ][] = " " ;} $w = end ( $J [ " indexes " ]); if ( $w [ " type " ] || array_filter ( $w [ " columns " ], 'strlen' )) $J [ " indexes " ][] = array ( " columns " => array ( 1 => " " ));} if ( ! $J ){ foreach ( $x
as $z => $w ){ $x [ $z ][ " name " ] = $z ; $x [ $z ][ " columns " ][] = " " ;} $x [] = array ( " columns " => array ( 1 => " " )); $J [ " indexes " ] = $x ;} echo '
2018-12-15 21:22:00 +00:00
< 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
2019-02-03 12:13:26 +00:00
< th >< noscript > ',"<input type=' image ' class=' icon ' name=' add [ 0 ] ' src=' " .h(preg_replace( " ~ \\ ? .*~ " , " " ,ME). " ? file = plus . gif & version = 4.7 . 1 " ). " ' alt=' + ' title=' " .'Add next'. " '>",' </ noscript >
2018-12-15 21:22:00 +00:00
</ thead >
2019-02-03 12:13:26 +00:00
' ; if ( $hg ){ echo " <tr><td>PRIMARY<td> " ; foreach ( $hg [ " columns " ] as $z => $e ){ echo
select_input ( " disabled " , $q , $e ), " <label><input disabled type='checkbox'> " . 'descending' . " </label> " ;} echo " <td><td> \n " ;} $ae = 1 ; foreach ( $J [ " indexes " ] as $w ){ if ( ! $_POST [ " drop_col " ] || $ae != key ( $_POST [ " drop_col " ])){ echo " <tr><td> " . html_select ( " indexes[ $ae ][type] " , array ( - 1 => " " ) + $Hd , $w [ " type " ],( $ae == count ( $J [ " indexes " ]) ? " indexesAddRow.call(this); " : 1 ), " label-type " ), " <td> " ; ksort ( $w [ " columns " ]); $t = 1 ; foreach ( $w [ " columns " ] as $z => $e ){ echo " <span> " . select_input ( " name='indexes[ $ae ][columns][ $t ]' title=' " . 'Column' . " ' " ,( $q ? array_combine ( $q , $q ) : $q ), $e , " partial( " . ( $t == count ( $w [ " columns " ]) ? " indexesAddColumn " : " indexesChangeColumn " ) . " , ' " . js_escape ( $y == " sql " ? " " : $_GET [ " indexes " ] . " _ " ) . " ') " ),( $y == " sql " || $y == " mssql " ? " <input type='number' name='indexes[ $ae ][lengths][ $t ]' class='size' value=' " . h ( $w [ " lengths " ][ $z ]) . " ' title=' " . 'Length' . " '> " : " " ),( support ( " descidx " ) ? checkbox ( " indexes[ $ae ][descs][ $t ] " , 1 , $w [ " descs " ][ $z ], 'descending' ) : " " ), " </span> " ; $t ++ ;} echo " <td><input name='indexes[ $ae ][name]' value=' " . h ( $w [ " name " ]) . " ' autocapitalize='off' aria-labelledby='label-name'> \n " , " <td><input type='image' class='icon' name='drop_col[ $ae ]' src=' " . h ( preg_replace ( " ~ \\ ?.*~ " , " " , ME ) . " ?file=cross.gif&version=4.7.1 " ) . " ' alt='x' title=' " . 'Remove' . " '> " . script ( " qsl('input').onclick = partial(editingRemoveRow, 'indexes \$ 1[type]'); " );} $ae ++ ;} echo ' </ table >
2018-12-15 21:22:00 +00:00
</ div >
< p >
< input type = " submit " value = " Save " >
< input type = " hidden " name = " token " value = " ', $mi ,' " >
</ form >
2019-02-03 12:13:26 +00:00
';}elseif(isset($_GET["database"])){$J=$_POST;if($_POST&&!$o&&!isset($_POST["add_x"])){$C=trim($J["name"]);if($_POST["drop"]){$_GET["db"]="";queries_redirect(remove_from_uri("db|database"),' Database has been dropped . ',drop_databases(array(DB)));}elseif(DB!==$C){if(DB!=""){$_GET["db"]=$C;queries_redirect(preg_replace(' ~ \bdb = [ ^& ] *&~ ',' ',ME)."db=".urlencode($C),' Database has been renamed . ' , rename_database ( $C , $J [ " collation " ]));} else { $l = explode ( " \n " , str_replace ( " \r " , " " , $C )); $Hh = true ; $le = " " ; foreach ( $l
as $m ){ if ( count ( $l ) == 1 || $m != " " ){ if ( ! create_database ( $m , $J [ " collation " ])) $Hh = false ; $le = $m ;}} restart_session (); set_session ( " dbs " , null ); queries_redirect ( ME . " db= " . urlencode ( $le ), 'Database has been created.' , $Hh );}} else { if ( ! $J [ " collation " ]) redirect ( substr ( ME , 0 , - 1 )); query_redirect ( " ALTER DATABASE " . idf_escape ( $C ) . ( preg_match ( '~^[a-z0-9_]+$~i' , $J [ " collation " ]) ? " COLLATE $J[collation] " : " " ), substr ( ME , 0 , - 1 ), 'Database has been altered.' );}} page_header ( DB != " " ? 'Alter database' : 'Create database' , $o , array (), h ( DB )); $ob = collations (); $C = DB ; if ( $_POST ) $C = $J [ " name " ]; elseif ( DB != " " ) $J [ " collation " ] = db_collation ( DB , $ob ); elseif ( $y == " sql " ){ foreach ( get_vals ( " SHOW GRANTS " ) as $jd ){ if ( preg_match ( '~ ON (`(([^\\\\`]|``|\\\\.)*)%`\.\*)?~' , $jd , $B ) && $B [ 1 ]){ $C = stripcslashes ( idf_unescape ( " ` $B[2] ` " )); break ;}}} echo '
2018-12-15 21:22:00 +00:00
< form action = " " method = " post " >
< p >
',($_POST["add_x"]||strpos($C,"\n")?' < textarea id = " name " name = " name " rows = " 10 " cols = " 40 " > '.h($C).' </ textarea >< br > ':' < input name = " name " id = " name " value = " '.h( $C ).' " data - maxlength = " 64 " autocapitalize = " off " > ')."\n".($ob?html_select("collation",array(""=>"(".' collation '.")")+$ob,$J["collation"]).doc_link(array(' sql '=>"charset-charsets.html",' mariadb '=>"supported-character-sets-and-collations/",' mssql '=>"ms187963.aspx",)):""),script("focus(qs(' #name'));"),'<input type="submit" value="Save">
2019-02-03 12:13:26 +00:00
';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 . 1 " ). " ' alt=' + ' title=' " .'Add next'. " '>\n";echo' < input type = " hidden " name = " token " value = " ', $mi ,' " >
2018-12-15 21:22:00 +00:00
</ form >
2019-02-03 12:13:26 +00:00
';}elseif(isset($_GET["scheme"])){$J=$_POST;if($_POST&&!$o){$A=preg_replace(' ~ ns = [ ^& ] *&~ ',' ',ME)."ns=";if($_POST["drop"])query_redirect("DROP SCHEMA ".idf_escape($_GET["ns"]),$A,' Schema has been dropped . ');else{$C=trim($J["name"]);$A.=urlencode($C);if($_GET["ns"]=="")query_redirect("CREATE SCHEMA ".idf_escape($C),$A,' Schema has been created . ');elseif($_GET["ns"]!=$C)query_redirect("ALTER SCHEMA ".idf_escape($_GET["ns"])." RENAME TO ".idf_escape($C),$A,' Schema has been altered . ' ); else
redirect ( $A );}} page_header ( $_GET [ " ns " ] != " " ? 'Alter schema' : 'Create schema' , $o ); if ( ! $J ) $J [ " name " ] = $_GET [ " ns " ]; echo '
2018-12-15 21:22:00 +00:00
< form action = " " method = " post " >
< p >< input name = " name " id = " name " value = " ',h( $J["name"] ),' " autocapitalize = " off " >
',script("focus(qs(' #name'));"),'<input type="submit" value="Save">
';if($_GET["ns"]!="")echo"<input type=' submit ' name=' drop ' value=' " .'Drop'. " '>".confirm(sprintf(' Drop % s ? ',$_GET["ns"]))."\n";echo' < input type = " hidden " name = " token " value = " ', $mi ,' " >
</ form >
2019-02-03 12:13:26 +00:00
';}elseif(isset($_GET["call"])){$da=($_GET["name"]?$_GET["name"]:$_GET["call"]);page_header(' Call '.": ".h($da),$o);$Rg=routine($_GET["call"],(isset($_GET["callf"])?"FUNCTION":"PROCEDURE"));$Fd=array();$Gf=array();foreach($Rg["fields"]as$t=>$p){if(substr($p["inout"],-3)=="OUT")$Gf[$t]="@".idf_escape($p["field"])." AS ".idf_escape($p["field"]);if(!$p["inout"]||substr($p["inout"],0,2)=="IN")$Fd[]=$t;}if(!$o&&$_POST){$Za=array();foreach($Rg["fields"]as$z=>$p){if(in_array($z,$Fd)){$X=process_input($p);if($X===false)$X="' '";if(isset($Gf[$z]))$g->query("SET @".idf_escape($p["field"])." = $X");}$Za[]=(isset($Gf[$z])?"@".idf_escape($p["field"]):$X);}$G=(isset($_GET["callf"])?"SELECT":"CALL")." ".table($da)."(".implode(", ",$Za).")";$Ah=microtime(true);$H=$g->multi_query($G);$za=$g->affected_rows;echo$b->selectQuery($G,$Ah,!$H);if(!$H)echo"<p class=' error ' > " .error(). " \n " ;else { $h =connect();if(is_object( $h )) $h->select_db (DB);do { $H = $g->store_result ();if(is_object( $H ))select( $H , $h );else
echo " <p class='message'> " . lang ( array ( 'Routine has been called, %d row affected.' , 'Routine has been called, %d rows affected.' ), $za ) . " \n " ;} while ( $g -> next_result ()); if ( $Gf ) select ( $g -> query ( " SELECT " . implode ( " , " , $Gf )));}} echo '
2018-12-15 21:22:00 +00:00
< form action = " " method = " post " >
2019-02-03 12:13:26 +00:00
';if($Fd){echo"<table cellspacing=' 0 ' class=' layout ' > \n " ;foreach( $Fd
as $z ){ $p = $Rg [ " fields " ][ $z ]; $C = $p [ " field " ]; echo " <tr><th> " . $b -> fieldName ( $p ); $Y = $_POST [ " fields " ][ $C ]; if ( $Y != " " ){ if ( $p [ " type " ] == " enum " ) $Y =+ $Y ; if ( $p [ " type " ] == " set " ) $Y = array_sum ( $Y );} input ( $p , $Y ,( string ) $_POST [ " function " ][ $C ]); echo " \n " ;} echo " </table> \n " ;} echo ' < p >
2018-12-15 21:22:00 +00:00
< input type = " submit " value = " Call " >
< input type = " hidden " name = " token " value = " ', $mi ,' " >
</ form >
2019-02-03 12:13:26 +00:00
';}elseif(isset($_GET["foreign"])){$a=$_GET["foreign"];$C=$_GET["name"];$J=$_POST;if($_POST&&!$o&&!$_POST["add"]&&!$_POST["change"]&&!$_POST["change-js"]){$Je=($_POST["drop"]?' Foreign key has been dropped . ':($C!=""?' Foreign key has been altered . ':' Foreign key has been created . '));$ve=ME."table=".urlencode($a);if(!$_POST["drop"]){$J["source"]=array_filter($J["source"],' strlen ');ksort($J["source"]);$Vh=array();foreach($J["source"]as$z=>$X)$Vh[$z]=$J["target"][$z];$J["target"]=$Vh;}if($y=="sqlite")queries_redirect($ve,$Je,recreate_table($a,$a,array(),array(),array(" $C"=>($_POST["drop"]?"":" ".format_foreign_key($J)))));else{$c="ALTER TABLE ".table($a);$dc="\nDROP ".($y=="sql"?"FOREIGN KEY ":"CONSTRAINT ").idf_escape($C);if($_POST["drop"])query_redirect($c.$dc,$ve,$Je);else{query_redirect($c.($C!=""?"$dc,":"")."\nADD".format_foreign_key($J),$ve,$Je);$o=' 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>$o";}}}page_header(' Foreign key ',$o,array("table"=>$a),h($a));if($_POST){ksort($J["source"]);if($_POST["add"])$J["source"][]="";elseif($_POST["change"]||$_POST["change-js"])$J["target"]=array();}elseif($C!=""){$cd=foreign_keys($a);$J=$cd[$C];$J["source"][]="";}else{$J["table"]=$a;$J["source"]=array("");}$th=array_keys(fields($a));$Vh=($a===$J["table"]?$th:array_keys(fields($J["table"])));$Ag=array_keys(array_filter(table_status(' ',true),' fk_support '));echo'
2018-12-15 21:22:00 +00:00
< form action = " " method = " post " >
< p >
';if($J["db"]==""&&$J["ns"]==""){echo' Target table :
2019-02-03 12:13:26 +00:00
',html_select("table",$Ag,$J["table"],"this.form[' change - js '].value = ' 1 '; this.form.submit();"),' < input type = " hidden " name = " change-js " value = " " >
2018-12-15 21:22:00 +00:00
< 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 >
2019-02-03 12:13:26 +00:00
';$ae=0;foreach($J["source"]as$z=>$X){echo"<tr>","<td>".html_select("source[".(+$z)."]",array(-1=>"")+$th,$X,($ae==count($J["source"])-1?"foreignAddRow.call(this);":1),"label-source"),"<td>".html_select("target[".(+$z)."]",$Vh,$J["target"][$z],1,"label-target");$ae++;}echo' </ table >
2018-12-15 21:22:00 +00:00
< p >
2019-02-03 12:13:26 +00:00
ON DELETE : ',html_select("on_delete",array(-1=>"")+explode("|",$nf),$J["on_delete"]),' ON UPDATE : ',html_select("on_update",array(-1=>"")+explode("|",$nf),$J["on_update"]),doc_link(array(' sql '=>"innodb-foreign-key-constraints.html",' mariadb '=>"foreign-keys/",' pgsql '=>"sql-createtable.html#SQL-CREATETABLE-REFERENCES",' mssql '=>"ms174979.aspx",' oracle '=>"clauses002.htm#sthref2903",)),' < p >
2018-12-15 21:22:00 +00:00
< input type = " submit " value = " Save " >
< noscript >< p >< input type = " submit " name = " add " value = " Add column " ></ noscript >
';}if($C!=""){echo' < input type = " submit " name = " drop " value = " Drop " > ',confirm(sprintf(' Drop % s ? ',$C));}echo' < input type = " hidden " name = " token " value = " ', $mi ,' " >
</ form >
2019-02-03 12:13:26 +00:00
';}elseif(isset($_GET["view"])){$a=$_GET["view"];$J=$_POST;$Df="VIEW";if($y=="pgsql"&&$a!=""){$Ch=table_status($a);$Df=strtoupper($Ch["Engine"]);}if($_POST&&!$o){$C=trim($J["name"]);$Ga=" AS\n$J[select]";$ve=ME."table=".urlencode($C);$Je=' View has been altered . ';$T=($_POST["materialized"]?"MATERIALIZED VIEW":"VIEW");if(!$_POST["drop"]&&$a==$C&&$y!="sqlite"&&$T=="VIEW"&&$Df=="VIEW")query_redirect(($y=="mssql"?"ALTER":"CREATE OR REPLACE")." VIEW ".table($C).$Ga,$ve,$Je);else{$Xh=$C."_adminer_".uniqid();drop_create("DROP $Df ".table($a),"CREATE $T ".table($C).$Ga,"DROP $T ".table($C),"CREATE $T ".table($Xh).$Ga,"DROP $T ".table($Xh),($_POST["drop"]?substr(ME,0,-1):$ve),' View has been dropped . ',$Je,' View has been created . ',$a,$C);}}if(!$_POST&&$a!=""){$J=view($a);$J["name"]=$a;$J["materialized"]=($Df!="VIEW");if(!$o)$o=error();}page_header(($a!=""?' Alter view ':' Create view '),$o,array("table"=>$a),h($a));echo'
2018-12-15 21:22:00 +00:00
< form action = " " method = " post " >
< p > Name : < input name = " name " value = " ',h( $J["name"] ),' " data - maxlength = " 64 " autocapitalize = " off " >
',(support("materializedview")?" ".checkbox("materialized",1,$J["materialized"],' Materialized view '):""),' < p > ';textarea("select",$J["select"]);echo' < p >
< input type = " submit " value = " Save " >
';if($a!=""){echo' < input type = " submit " name = " drop " value = " Drop " > ',confirm(sprintf(' Drop % s ? ',$a));}echo' < input type = " hidden " name = " token " value = " ', $mi ,' " >
</ form >
2019-02-03 12:13:26 +00:00
';}elseif(isset($_GET["event"])){$aa=$_GET["event"];$Sd=array("YEAR","QUARTER","MONTH","DAY","HOUR","MINUTE","WEEK","SECOND","YEAR_MONTH","DAY_HOUR","DAY_MINUTE","DAY_SECOND","HOUR_MINUTE","HOUR_SECOND","MINUTE_SECOND");$Dh=array("ENABLED"=>"ENABLE","DISABLED"=>"DISABLE","SLAVESIDE_DISABLED"=>"DISABLE ON SLAVE");$J=$_POST;if($_POST&&!$o){if($_POST["drop"])query_redirect("DROP EVENT ".idf_escape($aa),substr(ME,0,-1),' Event has been dropped . ');elseif(in_array($J["INTERVAL_FIELD"],$Sd)&&isset($Dh[$J["STATUS"]])){$Wg="\nON SCHEDULE ".($J["INTERVAL_VALUE"]?"EVERY ".q($J["INTERVAL_VALUE"])." $J[INTERVAL_FIELD]".($J["STARTS"]?" STARTS ".q($J["STARTS"]):"").($J["ENDS"]?" ENDS ".q($J["ENDS"]):""):"AT ".q($J["STARTS"]))." ON COMPLETION".($J["ON_COMPLETION"]?"":" NOT")." PRESERVE";queries_redirect(substr(ME,0,-1),($aa!=""?' Event has been altered . ':' Event has been created . '),queries(($aa!=""?"ALTER EVENT ".idf_escape($aa).$Wg.($aa!=$J["EVENT_NAME"]?"\nRENAME TO ".idf_escape($J["EVENT_NAME"]):""):"CREATE EVENT ".idf_escape($J["EVENT_NAME"]).$Wg)."\n".$Dh[$J["STATUS"]]." COMMENT ".q($J["EVENT_COMMENT"]).rtrim(" DO\n$J[EVENT_DEFINITION]",";").";"));}}page_header(($aa!=""?' Alter event '.": ".h($aa):' Create event '),$o);if(!$J&&$aa!=""){$K=get_rows("SELECT * FROM information_schema.EVENTS WHERE EVENT_SCHEMA = ".q(DB)." AND EVENT_NAME = ".q($aa));$J=reset($K);}echo'
2018-12-15 21:22:00 +00:00
< form action = " " method = " post " >
< table cellspacing = " 0 " class = " layout " >
< tr >< th > Name < td >< input name = " EVENT_NAME " value = " ',h( $J["EVENT_NAME"] ),' " data - maxlength = " 64 " autocapitalize = " off " >
< tr >< th title = " datetime " > Start < td >< input name = " STARTS " value = " ',h( " $J [ EXECUTE_AT ] $J [ STARTS ] " ),' " >
< tr >< th title = " datetime " > End < td >< input name = " ENDS " value = " ',h( $J["ENDS"] ),' " >
2019-02-03 12:13:26 +00:00
< tr >< th > Every < td >< input type = " number " name = " INTERVAL_VALUE " value = " ',h( $J["INTERVAL_VALUE"] ),' " class = " size " > ',html_select("INTERVAL_FIELD",$Sd,$J["INTERVAL_FIELD"]),' < tr >< th > Status < td > ',html_select("STATUS",$Dh,$J["STATUS"]),' < tr >< th > Comment < td >< input name = " EVENT_COMMENT " value = " ',h( $J["EVENT_COMMENT"] ),' " data - maxlength = " 64 " >
2018-12-15 21:22:00 +00:00
< tr >< th >< td > ',checkbox("ON_COMPLETION","PRESERVE",$J["ON_COMPLETION"]=="PRESERVE",' On completion preserve '),' </ table >
< p > ';textarea("EVENT_DEFINITION",$J["EVENT_DEFINITION"]);echo' < p >
< input type = " submit " value = " Save " >
';if($aa!=""){echo' < input type = " submit " name = " drop " value = " Drop " > ',confirm(sprintf(' Drop % s ? ',$aa));}echo' < input type = " hidden " name = " token " value = " ', $mi ,' " >
</ form >
2019-02-03 12:13:26 +00:00
';}elseif(isset($_GET["procedure"])){$da=($_GET["name"]?$_GET["name"]:$_GET["procedure"]);$Rg=(isset($_GET["function"])?"FUNCTION":"PROCEDURE");$J=$_POST;$J["fields"]=(array)$J["fields"];if($_POST&&!process_fields($J["fields"])&&!$o){$Af=routine($_GET["procedure"],$Rg);$Xh="$J[name]_adminer_".uniqid();drop_create("DROP $Rg ".routine_id($da,$Af),create_routine($Rg,$J),"DROP $Rg ".routine_id($J["name"],$J),create_routine($Rg,array("name"=>$Xh)+$J),"DROP $Rg ".routine_id($Xh,$J),substr(ME,0,-1),' Routine has been dropped . ',' Routine has been altered . ',' Routine has been created . ',$da,$J["name"]);}page_header(($da!=""?(isset($_GET["function"])?' Alter function ':' Alter procedure ').": ".h($da):(isset($_GET["function"])?' Create function ':' Create procedure ')),$o);if(!$_POST&&$da!=""){$J=routine($_GET["procedure"],$Rg);$J["name"]=$da;}$ob=get_vals("SHOW CHARACTER SET");sort($ob);$Sg=routine_languages();echo'
2018-12-15 21:22:00 +00:00
< form action = " " method = " post " id = " form " >
< p > Name : < input name = " name " value = " ',h( $J["name"] ),' " data - maxlength = " 64 " autocapitalize = " off " >
2019-02-03 12:13:26 +00:00
',($Sg?' Language '.": ".html_select("language",$Sg,$J["language"])."\n":""),' < input type = " submit " value = " Save " >
2018-12-15 21:22:00 +00:00
< div class = " scrollable " >
< table cellspacing = " 0 " class = " nowrap " >
2019-02-03 12:13:26 +00:00
';edit_fields($J["fields"],$ob,$Rg);if(isset($_GET["function"])){echo"<tr><td>".' Return type ';edit_type("returns",$J["returns"],$ob,array(),($y=="pgsql"?array("void","trigger"):array()));}echo' </ table >
2018-12-15 21:22:00 +00:00
</ div >
< p > ';textarea("definition",$J["definition"]);echo' < p >
< input type = " submit " value = " Save " >
';if($da!=""){echo' < input type = " submit " name = " drop " value = " Drop " > ',confirm(sprintf(' Drop % s ? ',$da));}echo' < input type = " hidden " name = " token " value = " ', $mi ,' " >
</ form >
2019-02-03 12:13:26 +00:00
';}elseif(isset($_GET["sequence"])){$fa=$_GET["sequence"];$J=$_POST;if($_POST&&!$o){$A=substr(ME,0,-1);$C=trim($J["name"]);if($_POST["drop"])query_redirect("DROP SEQUENCE ".idf_escape($fa),$A,' Sequence has been dropped . ');elseif($fa=="")query_redirect("CREATE SEQUENCE ".idf_escape($C),$A,' Sequence has been created . ');elseif($fa!=$C)query_redirect("ALTER SEQUENCE ".idf_escape($fa)." RENAME TO ".idf_escape($C),$A,' Sequence has been altered . ' ); else
redirect ( $A );} page_header ( $fa != " " ? 'Alter sequence' . " : " . h ( $fa ) : 'Create sequence' , $o ); if ( ! $J ) $J [ " name " ] = $fa ; echo '
2018-12-15 21:22:00 +00:00
< form action = " " method = " post " >
< p >< input name = " name " value = " ',h( $J["name"] ),' " autocapitalize = " off " >
< input type = " submit " value = " Save " >
';if($fa!="")echo"<input type=' submit ' name=' drop ' value=' " .'Drop'. " '>".confirm(sprintf(' Drop % s ? ',$fa))."\n";echo' < input type = " hidden " name = " token " value = " ', $mi ,' " >
</ form >
2019-02-03 12:13:26 +00:00
';}elseif(isset($_GET["type"])){$ga=$_GET["type"];$J=$_POST;if($_POST&&!$o){$A=substr(ME,0,-1);if($_POST["drop"])query_redirect("DROP TYPE ".idf_escape($ga),$A,' Type has been dropped . ' ); else
query_redirect ( " CREATE TYPE " . idf_escape ( trim ( $J [ " name " ])) . " $J[as] " , $A , 'Type has been created.' );} page_header ( $ga != " " ? 'Alter type' . " : " . h ( $ga ) : 'Create type' , $o ); if ( ! $J ) $J [ " as " ] = " AS " ; echo '
2018-12-15 21:22:00 +00:00
< form action = " " method = " post " >
< p >
';if($ga!="")echo"<input type=' submit ' name=' drop ' value=' " .'Drop'. " '>".confirm(sprintf(' Drop % s ? ',$ga))."\n";else{echo"<input name=' name ' value=' " .h( $J['name'] ). " ' autocapitalize=' off '>\n";textarea("as",$J["as"]);echo"<p><input type=' submit ' value=' " .'Save'. " '>\n";}echo' < input type = " hidden " name = " token " value = " ', $mi ,' " >
</ form >
2019-02-03 12:13:26 +00:00
';}elseif(isset($_GET["trigger"])){$a=$_GET["trigger"];$C=$_GET["name"];$xi=trigger_options();$J=(array)trigger($C)+array("Trigger"=>$a."_bi");if($_POST){if(!$o&&in_array($_POST["Timing"],$xi["Timing"])&&in_array($_POST["Event"],$xi["Event"])&&in_array($_POST["Type"],$xi["Type"])){$mf=" ON ".table($a);$dc="DROP TRIGGER ".idf_escape($C).($y=="pgsql"?$mf:"");$ve=ME."table=".urlencode($a);if($_POST["drop"])query_redirect($dc,$ve,' Trigger has been dropped . ');else{if($C!="")queries($dc);queries_redirect($ve,($C!=""?' Trigger has been altered . ':' Trigger has been created . '),queries(create_trigger($mf,$_POST)));if($C!="")queries(create_trigger($mf,$J+array("Type"=>reset($xi["Type"]))));}}$J=$_POST;}page_header(($C!=""?' Alter trigger '.": ".h($C):' Create trigger '),$o,array("table"=>$a));echo'
2018-12-15 21:22:00 +00:00
< form action = " " method = " post " id = " form " >
< table cellspacing = " 0 " class = " layout " >
< tr >< th > Time < td > ',html_select("Timing",$xi["Timing"],$J["Timing"],"triggerChange(/^".preg_quote($a,"/")."_[ba][iud]$/, ' " .js_escape( $a ). " ', this.form);"),' < tr >< th > Event < td > ',html_select("Event",$xi["Event"],$J["Event"],"this.form[' Timing '].onchange();"),(in_array("UPDATE OF",$xi["Event"])?" <input name=' Of ' value=' " .h( $J["Of"] ). " ' class=' hidden '>":""),' < tr >< th > Type < td > ',html_select("Type",$xi["Type"],$J["Type"]),' </ table >
< p > Name : < input name = " Trigger " value = " ',h( $J["Trigger"] ),' " data - maxlength = " 64 " autocapitalize = " off " >
',script("qs(' #form')['Timing'].onchange();"),'<p>';textarea("Statement",$J["Statement"]);echo'<p>
< input type = " submit " value = " Save " >
';if($C!=""){echo' < input type = " submit " name = " drop " value = " Drop " > ',confirm(sprintf(' Drop % s ? ',$C));}echo' < input type = " hidden " name = " token " value = " ', $mi ,' " >
</ form >
2019-02-03 12:13:26 +00:00
';}elseif(isset($_GET["user"])){$ha=$_GET["user"];$mg=array(""=>array("All privileges"=>""));foreach(get_rows("SHOW PRIVILEGES")as$J){foreach(explode(",",($J["Privilege"]=="Grant option"?"":$J["Context"]))as$_b)$mg[$_b][$J["Privilege"]]=$J["Comment"];}$mg["Server Admin"]+=$mg["File access on server"];$mg["Databases"]["Create routine"]=$mg["Procedures"]["Create routine"];unset($mg["Procedures"]["Create routine"]);$mg["Columns"]=array();foreach(array("Select","Insert","Update","References")as$X)$mg["Columns"][$X]=$mg["Tables"][$X];unset($mg["Server Admin"]["Usage"]);foreach($mg["Tables"]as$z=>$X)unset($mg["Databases"][$z]);$We=array();if($_POST){foreach($_POST["objects"]as$z=>$X)$We[$X]=(array)$We[$X]+(array)$_POST["grants"][$z];}$kd=array();$kf="";if(isset($_GET["host"])&&($H=$g->query("SHOW GRANTS FOR ".q($ha)."@".q($_GET["host"])))){while($J=$H->fetch_row()){if(preg_match(' ~ GRANT ( .* ) ON ( .* ) TO ~ ',$J[0],$B)&&preg_match_all(' ~ * ([ ^ (,] * [ ^ ,(])( * \ ([ ^ )] + \ )) ? ~ ' , $B [ 1 ], $Be , PREG_SET_ORDER )){ foreach ( $Be
as $X ){ if ( $X [ 1 ] != " USAGE " ) $kd [ " $B[2] $X[2] " ][ $X [ 1 ]] = true ; if ( preg_match ( '~ WITH GRANT OPTION~' , $J [ 0 ])) $kd [ " $B[2] $X[2] " ][ " GRANT OPTION " ] = true ;}} if ( preg_match ( " ~ IDENTIFIED BY PASSWORD '([^']+)~ " , $J [ 0 ], $B )) $kf = $B [ 1 ];}} if ( $_POST &&! $o ){ $lf = ( isset ( $_GET [ " host " ]) ? q ( $ha ) . " @ " . q ( $_GET [ " host " ]) : " '' " ); if ( $_POST [ " drop " ]) query_redirect ( " DROP USER $lf " , ME . " privileges= " , 'User has been dropped.' ); else { $Ye = q ( $_POST [ " user " ]) . " @ " . q ( $_POST [ " host " ]); $Uf = $_POST [ " pass " ]; if ( $Uf != '' &&! $_POST [ " hashed " ]){ $Uf = $g -> result ( " SELECT PASSWORD( " . q ( $Uf ) . " ) " ); $o =! $Uf ;} $Eb = false ; if ( ! $o ){ if ( $lf != $Ye ){ $Eb = queries (( min_version ( 5 ) ? " CREATE USER " : " GRANT USAGE ON *.* TO " ) . " $Ye IDENTIFIED BY PASSWORD " . q ( $Uf )); $o =! $Eb ;} elseif ( $Uf != $kf ) queries ( " SET PASSWORD FOR $Ye = " . q ( $Uf ));} if ( ! $o ){ $Og = array (); foreach ( $We
as $ff => $jd ){ if ( isset ( $_GET [ " grant " ])) $jd = array_filter ( $jd ); $jd = array_keys ( $jd ); if ( isset ( $_GET [ " grant " ])) $Og = array_diff ( array_keys ( array_filter ( $We [ $ff ], 'strlen' )), $jd ); elseif ( $lf == $Ye ){ $if = array_keys (( array ) $kd [ $ff ]); $Og = array_diff ( $if , $jd ); $jd = array_diff ( $jd , $if ); unset ( $kd [ $ff ]);} if ( preg_match ( '~^(.+)\s*(\(.*\))?$~U' , $ff , $B ) && ( ! grant ( " REVOKE " , $Og , $B [ 2 ], " ON $B[1] FROM $Ye " ) ||! grant ( " GRANT " , $jd , $B [ 2 ], " ON $B[1] TO $Ye " ))){ $o = true ; break ;}}} if ( ! $o && isset ( $_GET [ " host " ])){ if ( $lf != $Ye ) queries ( " DROP USER $lf " ); elseif ( ! isset ( $_GET [ " grant " ])){ foreach ( $kd
as $ff => $Og ){ if ( preg_match ( '~^(.+)(\(.*\))?$~U' , $ff , $B )) grant ( " REVOKE " , array_keys ( $Og ), $B [ 2 ], " ON $B[1] FROM $Ye " );}}} queries_redirect ( ME . " privileges= " ,( isset ( $_GET [ " host " ]) ? 'User has been altered.' : 'User has been created.' ), ! $o ); if ( $Eb ) $g -> query ( " DROP USER $Ye " );}} page_header (( isset ( $_GET [ " host " ]) ? 'Username' . " : " . h ( " $ha @ $_GET[host] " ) : 'Create user' ), $o , array ( " privileges " => array ( '' , 'Privileges' ))); if ( $_POST ){ $J = $_POST ; $kd = $We ;} else { $J = $_GET + array ( " host " => $g -> result ( " SELECT SUBSTRING_INDEX(CURRENT_USER, '@', -1) " )); $J [ " pass " ] = $kf ; if ( $kf != " " ) $J [ " hashed " ] = true ; $kd [( DB == " " || $kd ? " " : idf_escape ( addcslashes ( DB , " %_ \\ " ))) . " .* " ] = array ();} echo ' < form action = " " method = " post " >
2018-12-15 21:22:00 +00:00
< table cellspacing = " 0 " class = " layout " >
< tr >< th > Server < td >< input name = " host " data - maxlength = " 60 " value = " ',h( $J["host"] ),' " autocapitalize = " off " >
< tr >< th > Username < td >< input name = " user " data - maxlength = " 80 " value = " ',h( $J["user"] ),' " autocapitalize = " off " >
< tr >< th > Password < td >< input name = " pass " id = " pass " value = " ',h( $J["pass"] ),' " autocomplete = " new-password " >
' ; if ( ! $J [ " hashed " ]) echo
script ( " typePassword(qs('#pass')); " ); echo
checkbox ( " hashed " , 1 , $J [ " hashed " ], 'Hashed' , " typePassword(this.form['pass'], this.checked); " ), ' </ table >
2019-02-03 12:13:26 +00:00
';echo"<table cellspacing=' 0 '>\n","<thead><tr><th colspan=' 2 '>".' Privileges '.doc_link(array(' sql ' => " grant.html#priv_level " )); $t = 0 ; foreach ( $kd
as $ff => $jd ){ echo '<th>' . ( $ff != " *.* " ? " <input name='objects[ $t ]' value=' " . h ( $ff ) . " ' size='10' autocapitalize='off'> " : " <input type='hidden' name='objects[ $t ]' value='*.*' size='10'>*.* " ); $t ++ ;} echo " </thead> \n " ; foreach ( array ( " " => " " , " Server Admin " => 'Server' , " Databases " => 'Database' , " Tables " => 'Table' , " Columns " => 'Column' , " Procedures " => 'Routine' ,) as $_b => $Ub ){ foreach (( array ) $mg [ $_b ] as $lg => $tb ){ echo " <tr " . odd () . " ><td " . ( $Ub ? " > $Ub <td " : " colspan='2' " ) . ' lang="en" title="' . h ( $tb ) . '">' . h ( $lg ); $t = 0 ; foreach ( $kd
as $ff => $jd ){ $C = " 'grants[ $t ][ " . h ( strtoupper ( $lg )) . " ]' " ; $Y = $jd [ strtoupper ( $lg )]; if ( $_b == " Server Admin " && $ff != ( isset ( $kd [ " *.* " ]) ? " *.* " : " .* " )) echo " <td> " ; elseif ( isset ( $_GET [ " grant " ])) echo " <td><select name= $C ><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= $C value='1' " . ( $Y ? " checked " : " " ) . ( $lg == " All privileges " ? " id='grants- $t -all'> " : " > " . ( $lg == " Grant option " ? " " : script ( " qsl('input').onclick = function () { if (this.checked) formUncheck('grants- $t -all'); }; " ))), " </label> " ;} $t ++ ;}}} echo " </table> \n " , ' < p >
2018-12-15 21:22:00 +00:00
< 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 = " ', $mi ,' " >
</ form >
2019-02-03 12:13:26 +00:00
';}elseif(isset($_GET["processlist"])){if(support("kill")&&$_POST&&!$o){$he=0;foreach((array)$_POST["kill"]as$X){if(kill_process($X))$he++;}queries_redirect(ME."processlist=",lang(array(' % d process has been killed . ',' % d processes have been killed . '),$he),$he||!$_POST["kill"]);}page_header(' Process list ',$o);echo'
2018-12-15 21:22:00 +00:00
< form action = " " method = " post " >
< div class = " scrollable " >
< table cellspacing = " 0 " class = " nowrap checkable " >
2019-02-03 12:13:26 +00:00
',script("mixin(qsl(' table '), {onclick: tableClick, ondblclick: partialArg(tableClick, true)});");$t=-1;foreach(process_list()as$t=>$J){if(!$t){echo"<thead><tr lang=' en ' > " .(support( " kill " )? " < th > " : " " );foreach( $J
as $z => $X ) echo " <th> $z " . doc_link ( array ( 'sql' => " show-processlist.html#processlist_ " . strtolower ( $z ), 'pgsql' => " monitoring-stats.html#PG-STAT-ACTIVITY-VIEW " , 'oracle' => " ../b14237/dynviews_2088.htm " ,)); echo " </thead> \n " ;} echo " <tr " . odd () . " > " . ( support ( " kill " ) ? " <td> " . checkbox ( " kill[] " , $J [ $y == " sql " ? " Id " : " pid " ], 0 ) : " " ); foreach ( $J
as $z => $X ) echo " <td> " . (( $y == " sql " && $z == " Info " && preg_match ( " ~Query|Killed~ " , $J [ " Command " ]) && $X != " " ) || ( $y == " pgsql " && $z == " current_query " && $X != " <IDLE> " ) || ( $y == " oracle " && $z == " sql_text " && $X != " " ) ? " <code class='jush- $y '> " . shorten_utf8 ( $X , 100 , " </code> " ) . ' <a href="' . h ( ME . ( $J [ " db " ] != " " ? " db= " . urlencode ( $J [ " db " ]) . " & " : " " ) . " sql= " . urlencode ( $X )) . '">' . 'Clone' . '</a>' : h ( $X )); echo " \n " ;} echo ' </ table >
2018-12-15 21:22:00 +00:00
</ div >
< p >
2019-02-03 12:13:26 +00:00
';if(support("kill")){echo($t+1)."/".sprintf(' % d in total ',max_connections()),"<p><input type=' submit ' value=' " .'Kill'. " '>\n";}echo' < input type = " hidden " name = " token " value = " ', $mi ,' " >
2018-12-15 21:22:00 +00:00
</ form >
2019-02-03 12:13:26 +00:00
' , script ( " tableCheck(); " );} elseif ( isset ( $_GET [ " select " ])){ $a = $_GET [ " select " ]; $R = table_status1 ( $a ); $x = indexes ( $a ); $q = fields ( $a ); $cd = column_foreign_keys ( $a ); $hf = $R [ " Oid " ]; parse_str ( $_COOKIE [ " adminer_import " ], $ya ); $Pg = array (); $f = array (); $bi = null ; foreach ( $q
as $z => $p ){ $C = $b -> fieldName ( $p ); if ( isset ( $p [ " privileges " ][ " select " ]) && $C != " " ){ $f [ $z ] = html_entity_decode ( strip_tags ( $C ), ENT_QUOTES ); if ( is_shortable ( $p )) $bi = $b -> selectLengthProcess ();} $Pg += $p [ " privileges " ];} list ( $L , $ld ) = $b -> selectColumnsProcess ( $f , $x ); $Wd = count ( $ld ) < count ( $L ); $Z = $b -> selectSearchProcess ( $q , $x ); $xf = $b -> selectOrderProcess ( $q , $x ); $_ = $b -> selectLimitProcess (); if ( $_GET [ " val " ] && is_ajax ()){ header ( " Content-Type: text/plain; charset=utf-8 " ); foreach ( $_GET [ " val " ] as $Di => $J ){ $Ga = convert_field ( $q [ key ( $J )]); $L = array ( $Ga ? $Ga : idf_escape ( key ( $J ))); $Z [] = where_check ( $Di , $q ); $I = $n -> select ( $a , $L , $Z , $L ); if ( $I ) echo
reset ( $I -> fetch_row ());} exit ;} $hg = $Fi = null ; foreach ( $x
as $w ){ if ( $w [ " type " ] == " PRIMARY " ){ $hg = array_flip ( $w [ " columns " ]); $Fi = ( $L ? $hg : array ()); foreach ( $Fi
as $z => $X ){ if ( in_array ( idf_escape ( $z ), $L )) unset ( $Fi [ $z ]);} break ;}} if ( $hf &&! $hg ){ $hg = $Fi = array ( $hf => 0 ); $x [] = array ( " type " => " PRIMARY " , " columns " => array ( $hf ));} if ( $_POST &&! $o ){ $gj = $Z ; if ( ! $_POST [ " all " ] && is_array ( $_POST [ " check " ])){ $fb = array (); foreach ( $_POST [ " check " ] as $cb ) $fb [] = where_check ( $cb , $q ); $gj [] = " (( " . implode ( " ) OR ( " , $fb ) . " )) " ;} $gj = ( $gj ? " \n WHERE " . implode ( " AND " , $gj ) : " " ); if ( $_POST [ " export " ]){ cookie ( " adminer_import " , " output= " . urlencode ( $_POST [ " output " ]) . " &format= " . urlencode ( $_POST [ " format " ])); dump_headers ( $a ); $b -> dumpTable ( $a , " " ); $hd = ( $L ? implode ( " , " , $L ) : " * " ) . convert_fields ( $f , $q , $L ) . " \n FROM " . table ( $a ); $nd = ( $ld && $Wd ? " \n GROUP BY " . implode ( " , " , $ld ) : " " ) . ( $xf ? " \n ORDER BY " . implode ( " , " , $xf ) : " " ); if ( ! is_array ( $_POST [ " check " ]) || $hg ) $G = " SELECT $hd $gj $nd " ; else { $Bi = array (); foreach ( $_POST [ " check " ] as $X ) $Bi [] = " (SELECT " . limit ( $hd , " \n WHERE " . ( $Z ? implode ( " AND " , $Z ) . " AND " : " " ) . where_check ( $X , $q ) . $nd , 1 ) . " ) " ; $G = implode ( " UNION ALL " , $Bi );} $b -> dumpData ( $a , " table " , $G ); exit ;} if ( ! $b -> selectEmailProcess ( $Z , $cd )){ if ( $_POST [ " save " ] || $_POST [ " delete " ]){ $H = true ; $za = 0 ; $O = array (); if ( ! $_POST [ " delete " ]){ foreach ( $f
as $C => $X ){ $X = process_input ( $q [ $C ]); if ( $X !== null && ( $_POST [ " clone " ] || $X !== false )) $O [ idf_escape ( $C )] = ( $X !== false ? $X : idf_escape ( $C ));}} if ( $_POST [ " delete " ] || $O ){ if ( $_POST [ " clone " ]) $G = " INTO " . table ( $a ) . " ( " . implode ( " , " , array_keys ( $O )) . " ) \n SELECT " . implode ( " , " , $O ) . " \n FROM " . table ( $a ); if ( $_POST [ " all " ] || ( $hg && is_array ( $_POST [ " check " ])) || $Wd ){ $H = ( $_POST [ " delete " ] ? $n -> delete ( $a , $gj ) : ( $_POST [ " clone " ] ? queries ( " INSERT $G $gj " ) : $n -> update ( $a , $O , $gj ))); $za = $g -> affected_rows ;} else { foreach (( array ) $_POST [ " check " ] as $X ){ $cj = " \n WHERE " . ( $Z ? implode ( " AND " , $Z ) . " AND " : " " ) . where_check ( $X , $q ); $H = ( $_POST [ " delete " ] ? $n -> delete ( $a , $cj , 1 ) : ( $_POST [ " clone " ] ? queries ( " INSERT " . limit1 ( $a , $G , $cj )) : $n -> update ( $a , $O , $cj , 1 ))); if ( ! $H ) break ; $za += $g -> affected_rows ;}}} $Je = lang ( array ( '%d item has been affected.' , '%d items have been affected.' ), $za ); if ( $_POST [ " clone " ] && $H && $za == 1 ){ $me = last_id (); if ( $me ) $Je = sprintf ( 'Item%s has been inserted.' , " $me " );} queries_redirect ( remove_from_uri ( $_POST [ " all " ] && $_POST [ " delete " ] ? " page " : " " ), $Je , $H ); if ( ! $_POST [ " delete " ]){ edit_form ( $a , $q ,( array ) $_POST [ " fields " ], ! $_POST [ " clone " ]); page_footer (); exit ;}} elseif ( ! $_POST [ " import " ]){ if ( ! $_POST [ " val " ]) $o = 'Ctrl+click on a value to modify it.' ; else { $H = true ; $za = 0 ; foreach ( $_POST [ " val " ] as $Di => $J ){ $O = array (); foreach ( $J
as $z => $X ){ $z = bracket_escape ( $z , 1 ); $O [ idf_escape ( $z )] = ( preg_match ( '~char|text~' , $q [ $z ][ " type " ]) || $X != " " ? $b -> processInput ( $q [ $z ], $X ) : " NULL " );} $H = $n -> update ( $a , $O , " WHERE " . ( $Z ? implode ( " AND " , $Z ) . " AND " : " " ) . where_check ( $Di , $q ), ! $Wd &&! $hg , " " ); if ( ! $H ) break ; $za += $g -> affected_rows ;} queries_redirect ( remove_from_uri (), lang ( array ( '%d item has been affected.' , '%d items have been affected.' ), $za ), $H );}} elseif ( ! is_string ( $Rc = get_file ( " csv_file " , true ))) $o = upload_error ( $Rc ); elseif ( ! preg_match ( '~~u' , $Rc )) $o = 'File must be in UTF-8 encoding.' ; else { cookie ( " adminer_import " , " output= " . urlencode ( $ya [ " output " ]) . " &format= " . urlencode ( $_POST [ " separator " ])); $H = true ; $qb = array_keys ( $q ); preg_match_all ( '~(?>"[^"]*"|[^"\r\n]+)+~' , $Rc , $Be ); $za = count ( $Be [ 0 ]); $n -> begin (); $M = ( $_POST [ " separator " ] == " csv " ? " , " : ( $_POST [ " separator " ] == " tsv " ? " \t " : " ; " )); $K = array (); foreach ( $Be [ 0 ] as $z => $X ){ preg_match_all ( " ~((?> \" [^ \" ]* \" )+|[^ $M ]*) $M ~ " , $X . $M , $Ce ); if ( ! $z &&! array_diff ( $Ce [ 1 ], $qb )){ $qb = $Ce [ 1 ]; $za -- ;} else { $O = array (); foreach ( $Ce [ 1 ] as $t => $mb ) $O [ idf_escape ( $qb [ $t ])] = ( $mb == " " && $q [ $qb [ $t ]][ " null " ] ? " NULL " : q ( str_replace ( '""' , '"' , preg_replace ( '~^"|"$~' , '' , $mb )))); $K [] = $O ;}} $H = ( ! $K || $n -> insertUpdate ( $a , $K , $hg )); if ( $H ) $H = $n -> commit (); queries_redirect ( remove_from_uri ( " page " ), lang ( array ( '%d row has been imported.' , '%d rows have been imported.' ), $za ), $H ); $n -> rollback ();}}} $Nh = $b -> tableName ( $R ); if ( is_ajax ()){ page_headers (); ob_start ();} else
page_header ( 'Select' . " : $Nh " , $o ); $O = null ; if ( isset ( $Pg [ " insert " ]) ||! support ( " table " )){ $O = " " ; foreach (( array ) $_GET [ " where " ] as $X ){ if ( $cd [ $X [ " col " ]] && count ( $cd [ $X [ " col " ]]) == 1 && ( $X [ " op " ] == " = " || ( ! $X [ " op " ] &&! preg_match ( '~[_%]~' , $X [ " val " ])))) $O .= " &set " . urlencode ( " [ " . bracket_escape ( $X [ " col " ]) . " ] " ) . " = " . urlencode ( $X [ " val " ]);}} $b -> selectLinks ( $R , $O ); if ( ! $f && support ( " table " )) echo " <p class='error'> " . 'Unable to select the table' . ( $q ? " . " : " : " . error ()) . " \n " ; else { echo " <form action='' id='form'> \n " , " <div style='display: none;'> " ; hidden_fields_get (); echo ( DB != " " ? '<input type="hidden" name="db" value="' . h ( DB ) . '">' . ( isset ( $_GET [ " ns " ]) ? '<input type="hidden" name="ns" value="' . h ( $_GET [ " ns " ]) . '">' : " " ) : " " ); echo '<input type="hidden" name="select" value="' . h ( $a ) . '">' , " </div> \n " ; $b -> selectColumnsPrint ( $L , $f ); $b -> selectSearchPrint ( $Z , $f , $x ); $b -> selectOrderPrint ( $xf , $f , $x ); $b -> selectLimitPrint ( $_ ); $b -> selectLengthPrint ( $bi ); $b -> selectActionPrint ( $x ); echo " </form> \n " ; $E = $_GET [ " page " ]; if ( $E == " last " ){ $fd = $g -> result ( count_rows ( $a , $Z , $Wd , $ld )); $E = floor ( max ( 0 , $fd - 1 ) / $_ );} $bh = $L ; $md = $ld ; if ( ! $bh ){ $bh [] = " * " ; $Ab = convert_fields ( $f , $q , $L ); if ( $Ab ) $bh [] = substr ( $Ab , 2 );} foreach ( $L
as $z => $X ){ $p = $q [ idf_unescape ( $X )]; if ( $p && ( $Ga = convert_field ( $p ))) $bh [ $z ] = " $Ga AS $X " ;} if ( ! $Wd && $Fi ){ foreach ( $Fi
as $z => $X ){ $bh [] = idf_escape ( $z ); if ( $md ) $md [] = idf_escape ( $z );}} $H = $n -> select ( $a , $bh , $Z , $md , $xf , $_ , $E , true ); if ( ! $H ) echo " <p class='error'> " . error () . " \n " ; else { if ( $y == " mssql " && $E ) $H -> seek ( $_ * $E ); $qc = array (); echo " <form action='' method='post' enctype='multipart/form-data'> \n " ; $K = array (); while ( $J = $H -> fetch_assoc ()){ if ( $E && $y == " oracle " ) unset ( $J [ " RNUM " ]); $K [] = $J ;} if ( $_GET [ " page " ] != " last " && $_ != " " && $ld && $Wd && $y == " sql " ) $fd = $g -> result ( " SELECT FOUND_ROWS() " ); if ( ! $K ) echo " <p class='message'> " . 'No rows.' . " \n " ; else { $Pa = $b -> backwardKeys ( $a , $Nh ); 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> " . ( ! $ld && $L ? " " : " <td><input type='checkbox' id='all-page' class='jsonly'> " . script ( " qs('#all-page').onclick = partial(formCheck, /check/); " , " " ) . " <a href=' " . h ( $_GET [ " modify " ] ? remove_from_uri ( " modify " ) : $_SERVER [ " REQUEST_URI " ] . " &modify=1 " ) . " '> " . 'Modify' . " </a> " ); $Ve = array (); $id = array (); reset ( $L ); $wg = 1 ; foreach ( $K [ 0 ] as $z => $X ){ if ( ! isset ( $Fi [ $z ])){ $X = $_GET [ " columns " ][ key ( $L )]; $p = $q [ $L ? ( $X ? $X [ " col " ] : current ( $L )) : $z ]; $C = ( $p ? $b -> fieldName ( $p , $wg ) : ( $X [ " fun " ] ? " * " : $z )); if ( $C != " " ){ $wg ++ ; $Ve [ $z ] = $C ; $e = idf_escape ( $z ); $_d = remove_from_uri ( '(order|desc)[^=]*|page' ) . '&order%5B0%5D=' . urlencode ( $z ); $Ub = " &desc%5B0%5D=1 " ; echo " <th> " . script ( " mixin(qsl('th'), { onmouseover: partial(columnMouse), onmouseout: partial(columnMouse, ' hidden')}); " , " " ), '<a href="' . h ( $_d . ( $xf [ 0 ] == $e || $xf [ 0 ] == $z || ( ! $xf && $Wd && $ld [ 0 ] == $e ) ? $Ub : '' )) . '">' ; echo
apply_sql_function ( $X [ " fun " ], $C ) . " </a> " ; echo " <span class='column hidden'> " , " <a href=' " . h ( $_d . $Ub ) . " ' title=' " . 'descending' . " ' class='text'> ↓</a> " ; if ( ! $X [ " fun " ]){ echo '<a href="#fieldset-search" title="' . 'Search' . '" class="text jsonly"> =</a>' , script ( " qsl('a').onclick = partial(selectSearch, ' " . js_escape ( $z ) . " '); " );} echo " </span> " ;} $id [ $z ] = $X [ " fun " ]; next ( $L );}} $se = array (); if ( $_GET [ " modify " ]){ foreach ( $K
2018-12-15 21:22:00 +00:00
as $J ){ foreach ( $J
2019-02-03 12:13:26 +00:00
as $z => $X ) $se [ $z ] = max ( $se [ $z ], min ( 40 , strlen ( utf8_decode ( $X ))));}} echo ( $Pa ? " <th> " . 'Relations' : " " ) . " </thead> \n " ; if ( is_ajax ()){ if ( $_ % 2 == 1 && $E % 2 == 1 ) odd (); ob_end_clean ();} foreach ( $b -> rowDescriptions ( $K , $cd ) as $Ue => $J ){ $Ci = unique_array ( $K [ $Ue ], $x ); if ( ! $Ci ){ $Ci = array (); foreach ( $K [ $Ue ] as $z => $X ){ if ( ! preg_match ( '~^(COUNT\((\*|(DISTINCT )?`(?:[^`]|``)+`)\)|(AVG|GROUP_CONCAT|MAX|MIN|SUM)\(`(?:[^`]|``)+`\))$~' , $z )) $Ci [ $z ] = $X ;}} $Di = " " ; foreach ( $Ci
as $z => $X ){ if (( $y == " sql " || $y == " pgsql " ) && preg_match ( '~char|text|enum|set~' , $q [ $z ][ " type " ]) && strlen ( $X ) > 64 ){ $z = ( strpos ( $z , '(' ) ? $z : idf_escape ( $z )); $z = " MD5( " . ( $y != 'sql' || preg_match ( " ~^utf8~ " , $q [ $z ][ " collation " ]) ? $z : " CONVERT( $z USING " . charset ( $g ) . " ) " ) . " ) " ; $X = md5 ( $X );} $Di .= " & " . ( $X !== null ? urlencode ( " where[ " . bracket_escape ( $z ) . " ] " ) . " = " . urlencode ( $X ) : " null%5B%5D= " . urlencode ( $z ));} echo " <tr " . odd () . " > " . ( ! $ld && $L ? " " : " <td> " . checkbox ( " check[] " , substr ( $Di , 1 ), in_array ( substr ( $Di , 1 ),( array ) $_POST [ " check " ])) . ( $Wd || information_schema ( DB ) ? " " : " <a href=' " . h ( ME . " edit= " . urlencode ( $a ) . $Di ) . " ' class='edit'> " . 'edit' . " </a> " )); foreach ( $J
as $z => $X ){ if ( isset ( $Ve [ $z ])){ $p = $q [ $z ]; $X = $n -> value ( $X , $p ); if ( $X != " " && ( ! isset ( $qc [ $z ]) || $qc [ $z ] != " " )) $qc [ $z ] = ( is_mail ( $X ) ? $Ve [ $z ] : " " ); $A = " " ; if ( preg_match ( '~blob|bytea|raw|file~' , $p [ " type " ]) && $X != " " ) $A = ME . 'download=' . urlencode ( $a ) . '&field=' . urlencode ( $z ) . $Di ; if ( ! $A && $X !== null ){ foreach (( array ) $cd [ $z ] as $r ){ if ( count ( $cd [ $z ]) == 1 || end ( $r [ " source " ]) == $z ){ $A = " " ; foreach ( $r [ " source " ] as $t => $th ) $A .= where_link ( $t , $r [ " target " ][ $t ], $K [ $Ue ][ $th ]); $A = ( $r [ " db " ] != " " ? preg_replace ( '~([?&]db=)[^&]+~' , '\1' . urlencode ( $r [ " db " ]), ME ) : ME ) . 'select=' . urlencode ( $r [ " table " ]) . $A ; if ( $r [ " ns " ]) $A = preg_replace ( '~([?&]ns=)[^&]+~' , '\1' . urlencode ( $r [ " ns " ]), $A ); if ( count ( $r [ " source " ]) == 1 ) break ;}}} if ( $z == " COUNT(*) " ){ $A = ME . " select= " . urlencode ( $a ); $t = 0 ; foreach (( array ) $_GET [ " where " ] as $W ){ if ( ! array_key_exists ( $W [ " col " ], $Ci )) $A .= where_link ( $t ++ , $W [ " col " ], $W [ " val " ], $W [ " op " ]);} foreach ( $Ci
as $be => $W ) $A .= where_link ( $t ++ , $be , $W );} $X = select_value ( $X , $A , $p , $bi ); $u = h ( " val[ $Di ][ " . bracket_escape ( $z ) . " ] " ); $Y = $_POST [ " val " ][ $Di ][ bracket_escape ( $z )]; $lc =! is_array ( $J [ $z ]) && is_utf8 ( $X ) && $K [ $Ue ][ $z ] == $J [ $z ] &&! $id [ $z ]; $ai = preg_match ( '~text|lob~' , $p [ " type " ]); if (( $_GET [ " modify " ] && $lc ) || $Y !== null ){ $qd = h ( $Y !== null ? $Y : $J [ $z ]); echo " <td> " . ( $ai ? " <textarea name=' $u ' cols='30' rows=' " . ( substr_count ( $J [ $z ], " \n " ) + 1 ) . " '> $qd </textarea> " : " <input name=' $u ' value=' $qd ' size=' $se[$z] '> " );} else { $xe = strpos ( $X , " <i>…</i> " ); echo " <td id=' $u ' data-text=' " . ( $xe ? 2 : ( $ai ? 1 : 0 )) . " ' " . ( $lc ? " " : " data-warning=' " . h ( 'Use edit link to modify this value.' ) . " ' " ) . " > $X </td> " ;}}} if ( $Pa ) echo " <td> " ; $b -> backwardKeysPrint ( $Pa , $K [ $Ue ]); echo " </tr> \n " ;} if ( is_ajax ()) exit ; echo " </table> \n " , " </div> \n " ;} if ( ! is_ajax ()){ if ( $K || $E ){ $_c = true ; if ( $_GET [ " page " ] != " last " ){ if ( $_ == " " || ( count ( $K ) < $_ && ( $K ||! $E ))) $fd = ( $E ? $E * $_ : 0 ) + count ( $K ); elseif ( $y != " sql " ||! $Wd ){ $fd = ( $Wd ? false : found_rows ( $R , $Z )); if ( $fd < max ( 1e4 , 2 * ( $E + 1 ) * $_ )) $fd = reset ( slow_query ( count_rows ( $a , $Z , $Wd , $ld ))); else $_c = false ;}} $Jf = ( $_ != " " && ( $fd === false || $fd > $_ || $E )); if ( $Jf ){ echo (( $fd === false ? count ( $K ) + 1 : $fd - $E * $_ ) > $_ ? '<p><a href="' . h ( remove_from_uri ( " page " ) . " &page= " . ( $E + 1 )) . '" class="loadmore">' . 'Load more data' . '</a>' . script ( " qsl('a').onclick = partial(selectLoadMore, " . ( + $_ ) . " , ' " . 'Loading' . " …'); " , " " ) : '' ), " \n " ;}} echo " <div class='footer'><div> \n " ; if ( $K || $E ){ if ( $Jf ){ $Ee = ( $fd === false ? $E + ( count ( $K ) >= $_ ? 2 : 1 ) : floor (( $fd - 1 ) / $_ )); echo " <fieldset> " ; if ( $y != " simpledb " ){ echo " <legend><a href=' " . h ( remove_from_uri ( " page " )) . " '> " . 'Page' . " </a></legend> " , script ( " qsl('a').onclick = function () { pageClick(this.href, +prompt(' " . 'Page' . " ', ' " . ( $E + 1 ) . " ')); return false; }; " ), pagination ( 0 , $E ) . ( $E > 5 ? " … " : " " ); for ( $t = max ( 1 , $E - 4 ); $t < min ( $Ee , $E + 5 ); $t ++ ) echo
pagination ( $t , $E ); if ( $Ee > 0 ){ echo ( $E + 5 < $Ee ? " … " : " " ),( $_c && $fd !== false ? pagination ( $Ee , $E ) : " <a href=' " . h ( remove_from_uri ( " page " ) . " &page=last " ) . " ' title='~ $Ee '> " . 'last' . " </a> " );}} else { echo " <legend> " . 'Page' . " </legend> " , pagination ( 0 , $E ) . ( $E > 1 ? " … " : " " ),( $E ? pagination ( $E , $E ) : " " ),( $Ee > $E ? pagination ( $E + 1 , $E ) . ( $Ee > $E + 1 ? " … " : " " ) : " " );} echo " </fieldset> \n " ;} echo " <fieldset> " , " <legend> " . 'Whole result' . " </legend> " ; $Zb = ( $_c ? " " : " ~ " ) . $fd ; echo
checkbox ( " all " , 1 , 0 ,( $fd !== false ? ( $_c ? " " : " ~ " ) . lang ( array ( '%d row' , '%d rows' ), $fd ) : " " ), " var checked = formChecked(this, /check/); selectCount('selected', this.checked ? ' $Zb ' : checked); selectCount('selected2', this.checked || !checked ? ' $Zb ' : checked); " ) . " \n " , " </fieldset> \n " ; if ( $b -> selectCommandPrint ()){ echo '<fieldset' ,( $_GET [ " modify " ] ? '' : ' class="jsonly"' ), ' >< legend > Modify </ legend >< div >
2018-12-15 21:22:00 +00:00
< 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 >
2019-02-03 12:13:26 +00:00
';}$dd=$b->dumpFormat();foreach((array)$_GET["columns"]as$e){if($e["fun"]){unset($dd[' sql ']);break;}}if($dd){print_fieldset("export",' Export '." <span id=' selected2 '></span>");$Hf=$b->dumpOutput();echo($Hf?html_select("output",$Hf,$ya["output"])." ":""),html_select("format",$dd,$ya["format"])," <input type=' submit ' name=' export ' value=' " .'Export'. " '>\n","</div></fieldset>\n";}$b->selectEmailPrint(array_filter($qc,' 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='$mi'>\n","</form>\n",(!$ld&&$L?"":script("tableCheck();"));}}}if(is_ajax()){ob_end_clean();exit;}}elseif(isset($_GET["variables"])){$Ch=isset($_GET["status"]);page_header($Ch?'Status':'Variables');$Ti=($Ch?show_status():show_variables());if(!$Ti)echo"<p class='message'>".'No rows.'."\n";else{echo"<table cellspacing='0'>\n";foreach($Ti
as $z => $X ){ echo " <tr> " , " <th><code class='jush- " . $y . ( $Ch ? " status " : " set " ) . " '> " . h ( $z ) . " </code> " , " <td> " . h ( $X );} echo " </table> \n " ;}} elseif ( isset ( $_GET [ " script " ])){ header ( " Content-Type: text/javascript; charset=utf-8 " ); if ( $_GET [ " script " ] == " db " ){ $Kh = array ( " Data_length " => 0 , " Index_length " => 0 , " Data_free " => 0 ); foreach ( table_status () as $C => $R ){ json_row ( " Comment- $C " , h ( $R [ " Comment " ])); if ( ! is_view ( $R )){ foreach ( array ( " Engine " , " Collation " ) as $z ) json_row ( " $z - $C " , h ( $R [ $z ])); foreach ( $Kh + array ( " Auto_increment " => 0 , " Rows " => 0 ) as $z => $X ){ if ( $R [ $z ] != " " ){ $X = format_number ( $R [ $z ]); json_row ( " $z - $C " ,( $z == " Rows " && $X && $R [ " Engine " ] == ( $wh == " pgsql " ? " table " : " InnoDB " ) ? " ~ $X " : $X )); if ( isset ( $Kh [ $z ])) $Kh [ $z ] += ( $R [ " Engine " ] != " InnoDB " || $z != " Data_free " ? $R [ $z ] : 0 );} elseif ( array_key_exists ( $z , $R )) json_row ( " $z - $C " );}}} foreach ( $Kh
as $z => $X ) json_row ( " sum- $z " , format_number ( $X )); json_row ( " " );} elseif ( $_GET [ " script " ] == " kill " ) $g -> query ( " KILL " . number ( $_POST [ " kill " ])); else { foreach ( count_tables ( $b -> databases ()) as $m => $X ){ json_row ( " tables- $m " , $X ); json_row ( " size- $m " , db_size ( $m ));} json_row ( " " );} exit ;} else { $Th = array_merge (( array ) $_POST [ " tables " ],( array ) $_POST [ " views " ]); if ( $Th &&! $o &&! $_POST [ " search " ]){ $H = true ; $Je = " " ; if ( $y == " sql " && $_POST [ " tables " ] && count ( $_POST [ " tables " ]) > 1 && ( $_POST [ " drop " ] || $_POST [ " truncate " ] || $_POST [ " copy " ])) queries ( " SET foreign_key_checks = 0 " ); if ( $_POST [ " truncate " ]){ if ( $_POST [ " tables " ]) $H = truncate_tables ( $_POST [ " tables " ]); $Je = 'Tables have been truncated.' ;} elseif ( $_POST [ " move " ]){ $H = move_tables (( array ) $_POST [ " tables " ],( array ) $_POST [ " views " ], $_POST [ " target " ]); $Je = 'Tables have been moved.' ;} elseif ( $_POST [ " copy " ]){ $H = copy_tables (( array ) $_POST [ " tables " ],( array ) $_POST [ " views " ], $_POST [ " target " ]); $Je = 'Tables have been copied.' ;} elseif ( $_POST [ " drop " ]){ if ( $_POST [ " views " ]) $H = drop_views ( $_POST [ " views " ]); if ( $H && $_POST [ " tables " ]) $H = drop_tables ( $_POST [ " tables " ]); $Je = 'Tables have been dropped.' ;} elseif ( $y != " sql " ){ $H = ( $y == " sqlite " ? queries ( " VACUUM " ) : apply_queries ( " VACUUM " . ( $_POST [ " optimize " ] ? " " : " ANALYZE " ), $_POST [ " tables " ])); $Je = 'Tables have been optimized.' ;} elseif ( ! $_POST [ " tables " ]) $Je = 'No tables.' ; elseif ( $H = queries (( $_POST [ " optimize " ] ? " OPTIMIZE " : ( $_POST [ " check " ] ? " CHECK " : ( $_POST [ " repair " ] ? " REPAIR " : " ANALYZE " ))) . " TABLE " . implode ( " , " , array_map ( 'idf_escape' , $_POST [ " tables " ])))){ while ( $J = $H -> fetch_assoc ()) $Je .= " <b> " . h ( $J [ " Table " ]) . " </b>: " . h ( $J [ " Msg_text " ]) . " <br> " ;} queries_redirect ( substr ( ME , 0 , - 1 ), $Je , $H );} page_header (( $_GET [ " ns " ] == " " ? 'Database' . " : " . h ( DB ) : 'Schema' . " : " . h ( $_GET [ " ns " ])), $o , true ); if ( $b -> homepage ()){ if ( $_GET [ " ns " ] !== " " ){ echo " <h3 id='tables-views'> " . 'Tables and views' . " </h3> \n " ; $Sh = tables_list (); if ( ! $Sh ) 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 ();}} $ac = doc_link ( array ( 'sql' => 'show-table-status.html' )); 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' . $ac , '<td>' . 'Index Length' . $ac , '<td>' . 'Data Free' . $ac , '<td>' . 'Auto Increment' . doc_link ( array ( 'sql' => 'example-auto-increment.html' , 'mariadb' => 'auto_increment/' )), '<td>' . 'Rows' . $ac ,( support ( " comment " ) ? '<td>' . 'Comment' . $ac : '' ), " </thead> \n " ; $S = 0 ; foreach ( $Sh
as $C => $T ){ $Wi = ( $T !== null &&! preg_match ( '~table~i' , $T )); $u = h ( " Table- " . $C ); echo '<tr' . odd () . '><td>' . checkbox (( $Wi ? " views[] " : " tables[] " ), $C , in_array ( $C , $Th , true ), " " , " " , " " , $u ), '<th>' . ( support ( " table " ) || support ( " indexes " ) ? " <a href=' " . h ( ME ) . " table= " . urlencode ( $C ) . " ' title=' " . 'Show structure' . " ' id=' $u '> " . h ( $C ) . '</a>' : h ( $C )); if ( $Wi ){ echo '<td colspan="6"><a href="' . h ( ME ) . " view= " . urlencode ( $C ) . '" title="' . 'Alter view' . '">' . ( preg_match ( '~materialized~i' , $T ) ? 'Materialized view' : 'View' ) . '</a>' , '<td align="right"><a href="' . h ( ME ) . " select= " . urlencode ( $C ) . '" title="' . 'Select data' . '">?</a>' ;} else { foreach ( array ( " Engine " => array (), " Collation " => array (), " Data_length " => array ( " create " , 'Alter table' ), " Index_length " => array ( " indexes " , 'Alter indexes' ), " Data_free " => array ( " edit " , 'New item' ), " Auto_increment " => array ( " auto_increment=1&create " , 'Alter table' ), " Rows " => array ( " select " , 'Select data' ),) as $z => $A ){ $u = " id=' $z - " . h ( $C ) . " ' " ; echo ( $A ? " <td align='right'> " . ( support ( " table " ) || $z == " Rows " || ( support ( " indexes " ) && $z != " Data_length " ) ? " <a href=' " . h ( ME . " $A[0] = " ) . urlencode ( $C ) . " ' $u title=' $A[1] '>?</a> " : " <span $u >?</span> " ) : " <td id=' $z - " . h ( $C ) . " '> " );} $S ++ ;} echo ( support ( " comment " ) ? " <td id='Comment- " . h ( $C ) . " '> " : " " );} echo " <tr><td><th> " . sprintf ( '%d in total' , count ( $Sh )), " <td> " . h ( $y == " sql " ? $g -> result ( " SELECT @@storage_engine " ) : " " ), " <td> " . h ( db_collation ( DB , collations ())); foreach ( array ( " Data_length " , " Index_length " , " Data_free " ) as $z ) echo " <td align='right' id='sum- $z '> " ; echo " </table> \n " , " </div> \n " ; if ( ! information_schema ( DB )){ echo " <div class='footer'><div> \n " ; $Qi = " <input type='submit' value=' " . 'Vacuum' . " '> " . on_help ( " 'VACUUM' " ); $tf = " <input type='submit' name='optimize' value=' " . 'Optimize' . " '> " . on_help ( $y == " sql " ? " 'OPTIMIZE TABLE' " : " 'VACUUM OPTIMIZE' " ); echo " <fieldset><legend> " . 'Selected' . " <span id='selected'></span></legend><div> " . ( $y == " sqlite " ? $Qi : ( $y == " pgsql " ? $Qi . $tf : ( $y == " sql " ? " <input type='submit' value=' " . 'Analyze' . " '> " . on_help ( " 'ANALYZE TABLE' " ) . $tf . " <input type='submit' name='check' value=' " . 'Check' . " '> " . on_help ( " 'CHECK TABLE' " ) . " <input type='submit' name='repair' value=' " . 'Repair' . " '> " . on_help ( " 'REPAIR TABLE' " ) : " " ))) . " <input type='submit' name='truncate' value=' " . 'Truncate' . " '> " . on_help ( $y == " sqlite " ? " 'DELETE' " : " 'TRUNCATE " . ( $y == " pgsql " ? " ' " : " TABLE' " )) . confirm () . " <input type='submit' name='drop' value=' " . 'Drop' . " '> " . on_help ( " 'DROP TABLE' " ) . confirm () . " \n " ; $l = ( support ( " scheme " ) ? $b -> schemas () : $b -> databases ()); if ( count ( $l ) != 1 && $y != " sqlite " ){ $m = ( isset ( $_POST [ " target " ]) ? $_POST [ " target " ] : ( support ( " scheme " ) ? $_GET [ " ns " ] : DB )); echo " <p> " . 'Move to other database' . " : " ,( $l ? html_select ( " target " , $l , $m ) : '<input name="target" value="' . h ( $m ) . '" autocapitalize="off">' ), " <input type='submit' name='move' value=' " . 'Move' . " '> " ,( support ( " copy " ) ? " <input type='submit' name='copy' value=' " . 'Copy' . " '> " : " " ), " \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=' $mi '> \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 " ; $Tg = routines (); if ( $Tg ){ echo " <table cellspacing='0'> \n " , '<thead><tr><th>' . 'Name' . '<td>' . 'Type' . '<td>' . 'Return type' . " <td></thead> \n " ; odd ( '' ); foreach ( $Tg
as $J ){ $C = ( $J [ " SPECIFIC_NAME " ] == $J [ " ROUTINE_NAME " ] ? " " : " &name= " . urlencode ( $J [ " ROUTINE_NAME " ])); echo '<tr' . odd () . '>' , '<th><a href="' . h ( ME . ( $J [ " ROUTINE_TYPE " ] != " PROCEDURE " ? 'callf=' : 'call=' ) . urlencode ( $J [ " SPECIFIC_NAME " ]) . $C ) . '">' . h ( $J [ " ROUTINE_NAME " ]) . '</a>' , '<td>' . h ( $J [ " ROUTINE_TYPE " ]), '<td>' . h ( $J [ " DTD_IDENTIFIER " ]), '<td><a href="' . h ( ME . ( $J [ " ROUTINE_TYPE " ] != " PROCEDURE " ? 'function=' : 'procedure=' ) . urlencode ( $J [ " SPECIFIC_NAME " ]) . $C ) . '">' . '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 " ; $hh = get_vals ( " SELECT sequence_name FROM information_schema.sequences WHERE sequence_schema = current_schema() ORDER BY sequence_name " ); if ( $hh ){ echo " <table cellspacing='0'> \n " , " <thead><tr><th> " . 'Name' . " </thead> \n " ; odd ( '' ); foreach ( $hh
2018-12-15 21:22:00 +00:00
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 " ; $Oi = types (); if ( $Oi ){ echo " <table cellspacing='0'> \n " , " <thead><tr><th> " . 'Name' . " </thead> \n " ; odd ( '' ); foreach ( $Oi
as $X ) echo " <tr " . odd () . " ><th><a href=' " . h ( ME ) . " type= " . urlencode ( $X ) . " '> " . h ( $X ) . " </a> \n " ; echo " </table> \n " ;} echo " <p class='links'><a href=' " . h ( ME ) . " type='> " . 'Create type' . " </a> \n " ;} if ( support ( " event " )){ echo " <h3 id='events'> " . 'Events' . " </h3> \n " ; $K = get_rows ( " SHOW EVENTS " ); if ( $K ){ echo " <table cellspacing='0'> \n " , " <thead><tr><th> " . 'Name' . " <td> " . 'Schedule' . " <td> " . 'Start' . " <td> " . 'End' . " <td></thead> \n " ; foreach ( $K
2019-02-03 12:13:26 +00:00
as $J ){ echo " <tr> " , " <th> " . h ( $J [ " Name " ]), " <td> " . ( $J [ " Execute at " ] ? 'At given time' . " <td> " . $J [ " Execute at " ] : 'Every' . " " . $J [ " Interval value " ] . " " . $J [ " Interval field " ] . " <td> $J[Starts] " ), " <td> $J[Ends] " , '<td><a href="' . h ( ME ) . 'event=' . urlencode ( $J [ " Name " ]) . '">' . 'Alter' . '</a>' ;} echo " </table> \n " ; $yc = $g -> result ( " SELECT @@event_scheduler " ); if ( $yc && $yc != " ON " ) echo " <p class='error'><code class='jush-sqlset'>event_scheduler</code>: " . h ( $yc ) . " \n " ;} echo '<p class="links"><a href="' . h ( ME ) . 'event=">' . 'Create event' . " </a> \n " ;} if ( $Sh ) echo
2018-12-15 21:22:00 +00:00
script ( " ajaxSetHtml(' " . js_escape ( ME ) . " script=db'); " );}}} page_footer ();