* Copyright (c) 2001-2002 Jim Kraai * Versions 5.0 and higher developed by Ondrej Jombik * Copyright (c) 2002-2004 Platon SDG, http://platon.sk/ * All rights reserved. * * See README file for more information about this software. * See COPYING file for license information. * * Download the latest version from * http://platon.sk/projects/phpMyEdit/ */ /* $Platon: phpMyEdit/phpMyEditSetup.php,v 1.34 2004/01/16 19:46:32 nepto Exp $ */ require_once 'auth.php'; require_once 'function.php'; ?> phpMyEdit Setup Execute("SELECT * FROM qb_config ". #" WHERE id = '".intval($_GET['id'])."' LIMIT 1"); #if (!$rs || $rs->EOF) die("Error: id '".$_GET['id']."' does not exist."); $hn = $adodb_host; $un = $adodb_user; $pw = $adodb_pass; $db = $adodb_db; #$tb = $rs->fields['tableid']; $tb = $_POST['tableid']; /* Step: - change from primary key to unique key - add id int auto_increment as primary key, if failed change to id1 or id2 or ... so on - insert into temp (original column) select * from original - trigger onadd, onupdate, ondelete oh no ... so hard :( view report do also - create table temp as - add id int as pk (idem) - insert into temp (idem) - trigger onupdate */ $metaTables = $adodb->MetaTables(); $tableid = $tb; /* ## _FLAG ## $rs = $adodb->Execute("SELECT * FROM qb_config ". " WHERE tableid = ? ", array($tableid)); if (!$rs->EOF) { $sqlCreate = $rs->fields['sqlcreate']; if (! is_int(array_search($tableid."_flag", $metaTables))) { $rs = $adodb->Execute("CREATE TABLE ".$tableid."_flag ". " ( ".$sqlCreate." ) "); if (!$rs) return $logger->error($adodb->ErrorMsg()); } } else { return $logger->error("tableid '".$tableid."' not found on qb_config! ". " ".$adodb->ErrorMsg()); } ## CHECK COLUMN ## $metaCol = $adodb->MetaColumns($tableid."_flag"); if (!is_array($metaCol)) { return $logger->error("Columns must be defined on ".$tableid."_flag !"); } // DROP column where not PK,flag foreach ($metaCol as $k => $v) { if ($v->name === 'flag') continue; if ($v->primary_key !== true) { $adodb->Execute("ALTER TABLE ".$tableid."_flag DROP ".$v->name); } } // COLUMN flag if (!$metaCol["FLAG"]) { $adodb->Execute("ALTER TABLE ".$tableid."_flag ADD flag INTEGER"); } */ $countPK = 0; $metaPK = $adodb->MetaPrimaryKeys($tb); if (is_array($metaPK)) $countPK = count($metaPK); if ($countPK > 1) { $adodb->Execute("DROP TABLE qb_data_".$tb); $tableid = $tb; $xtableid = "qb_data_".$tableid; $xtb = $xtableid; ##
_CRC ## #$rs = $adodb->Execute("SELECT * FROM qb_config WHERE tableid = ? ", array($tableid)); #if (!$rs->EOF) { #$sqlCreate = $rs->fields['sqlcreate']; $sqlCreate = $_POST['sqlcreate']; $rs = $adodb->SelectLimit("SELECT * FROM ".$xtableid, 1); if (!$rs) { $rs = $adodb->Execute("CREATE TABLE ".$xtableid." ( ".$sqlCreate." ) "); if (!$rs) return $logger->error($adodb->ErrorMsg()); } #} else { # return $logger->error("tableid '".$tableid."' not found on qb_config! ". # " ".$adodb->ErrorMsg()); #} $adodb->Execute("ALTER TABLE ".$xtb." DROP PRIMARY KEY"); $adodb->Execute("ALTER TABLE ".$xtb." ADD UNIQUE KEY (".implode(",", $metaPK).")"); $adodb->Execute("ALTER TABLE ".$xtb." ADD qb_id INTEGER"); #$adodb->Execute("ALTER TABLE ".$xtb." ADD flag INTEGER"); $adodb->Execute("ALTER TABLE ".$xtb." ADD PRIMARY KEY (qb_id) "); $adodb->Execute("ALTER TABLE ".$xtb." CHANGE qb_id qb_id INTEGER auto_increment"); $metaCol = $adodb->MetaColumns($tb); $cols = $cols2 = ''; foreach ($metaCol as $k => $v) { if ($cols) $cols .= ","; $cols .= $v->name; #if ($cols2) $cols2 .= ","; #$cols2 .= $tb.".".$v->name; } #if ($cols) $cols .= ","; #$cols .= "flag"; #if ($cols2) $cols2 .= ","; #$cols2 .= "IF(".$tb."_crc.crc".",NULL,1)"; $adodb->Execute("INSERT INTO ".$xtb." (".$cols.") ". " SELECT ".$cols." FROM ".$tb); #" SELECT ".$cols2." FROM ".$tb); #" LEFT JOIN ".$tb."_crc USING ( ".implode(",", $metaPK)." )"); $tb2 = $tb; $tb = $xtb; $dummysql = $param = $param2 = $param3 = ''; foreach ($metaPK as $k => $v) { if ($dummysql) $dummysql .= " AND "; $dummysql .= $v." = ?"; if ($param) $param .= ', '; $param .= '$rs->fields["'.$v.'"]'; if ($param2) $param2 .= ', '; $param2 .= '$oldvals["'.$v.'"]'; } } else { $tb2 = $tb; } $metaPK2 = $adodb->MetaPrimaryKeys($tb); $id = $metaPK2[0]; $submit = true; $options = 1; $baseFilename = 'phpME_data_'.htmlspecialchars(abs(crc32($tb))); $TIAbuffer = ""; if ($countPK > 1) { // create TRIGGER FILE $fileTIA = $baseFilename.".TIA.inc.php"; $optsTIA = "\$opts['triggers']['insert']['after'] = '".$fileTIA."';"; echo 'Trying to write TIA content file to: '.'./'.$fileTIA.'
'."\n"; $TIAhandle = @fopen('./'.$fileTIA, 'w+'); if ($TIAhandle) { $TIAbuffer = "<"."? require_once 'auth.php'; global \$adodb; \$rs2 = \$adodb->SelectLimit(\"SELECT * FROM ".$tb2."\", 1); \$rs2 = \$adodb->Execute(\$adodb->GetInsertSQL(\$rs2, \$newvals)); if (!\$rs2) echo \$adodb->ErrorMsg(); ?".">"; fwrite($TIAhandle, $TIAbuffer); flush($TIAhandle); fclose($TIAhandle); echo 'phpMyEdit TIA content file written successfully
'; } else { echo 'phpMyEdit TIA content file was NOT written due to '. ' inssufficient privileges.
'; } $fileTUA = $baseFilename.".TUA.inc.php"; $optsTUA = "\$opts['triggers']['update']['after'] = '".$fileTUA."';"; echo 'Trying to write TUA content file to: '.'./'.$fileTUA.'
'."\n"; $TUAhandle = @fopen('./'.$fileTUA, 'w+'); if ($TUAhandle) { $TUAbuffer = "<"."? require_once 'auth.php'; global \$adodb; \$rs = \$adodb->Execute(\"SELECT * FROM \".\$this->tb.\" \". \" WHERE \".\$this->key.\" = ?\", \$this->rec); if (!\$rs->EOF) { \$rs2 = \$adodb->Execute(\"SELECT * FROM ".$tb2." \". \" WHERE ".$dummysql." \", array($param)); \$updateSQL = \$adodb->GetUpdateSQL(\$rs2, \$rs->fields); if (\$updateSQL) \$rs2 = \$adodb->Execute(\$updateSQL); if (!\$rs2) echo \$adodb->ErrorMsg(); } ?".">"; fwrite($TUAhandle, $TUAbuffer); flush($TUAhandle); fclose($TUAhandle); echo 'phpMyEdit TUA content file written successfully
'; } else { echo 'phpMyEdit TUA content file was NOT written due to '. ' inssufficient privileges.
'; } $fileTDA = $baseFilename.".TDA.inc.php"; $optsTDA = "\$opts['triggers']['delete']['after'] = '".$fileTDA."';"; echo 'Trying to write TDA content file to: '.'./'.$fileTDA.'
'."\n"; $TDAhandle = @fopen('./'.$fileTDA, 'w+'); if ($TDAhandle) { $TDAbuffer = "<"."? require_once 'auth.php'; global \$adodb; \$rs2 = \$adodb->Execute(\"DELETE FROM ".$tb2." \". \" WHERE ".$dummysql." \", array($param2)); if (!\$rs2) echo \$adodb->ErrorMsg(); ?".">"; #\$rs2 = \$adodb->Execute(\"DELETE FROM ".$tb2."_flag \". #\" WHERE ".$dummysql." \", array($param2)); #if (!\$rs2) echo \$adodb->ErrorMsg(); fwrite($TDAhandle, $TDAbuffer); flush($TDAhandle); fclose($TDAhandle); echo 'phpMyEdit TDA content file written successfully
'; } else { echo 'phpMyEdit TDA content file was NOT written due to '. ' inssufficient privileges.
'; } // end TRIGGER FILE } // TRIGGER INSERT AFTER /* $fileTIA = $baseFilename.".TIA.inc.php"; $optsTIA = "\$opts['triggers']['insert']['after'] = '".$fileTIA."';"; echo 'Trying to write TIA content file to: '.'./'.$fileTIA.'
'."\n"; $TIAhandle = @fopen('./'.$fileTIA, 'w+'); if ($TIAhandle) { $TIAbuffer .= "<"."? require_once 'auth.php'; global \$adodb; \$record = \$newvals; \$record['flag'] = 1; \$rs2 = \$adodb->SelectLimit(\"SELECT * FROM ".$tb2."_flag\", 1); \$insertSQL = \$adodb->GetInsertSQL(\$rs2, \$record); \$insertSQL = str_replace('INSERT', 'REPLACE', \$insertSQL); \$rs2 = \$adodb->Execute(\$insertSQL); if (!\$rs2) echo \$adodb->ErrorMsg(); ?".">"; fwrite($TIAhandle, $TIAbuffer); flush($TIAhandle); fclose($TIAhandle); echo 'phpMyEdit TIA content file written successfully
'; } else { echo 'phpMyEdit TIA content file was NOT written due to '. ' inssufficient privileges.
'; } */ $optsInput = ""; $rs = $adodb->Execute("SELECT * FROM qb_config WHERE tableid = ? ", array($tableid)); if (!$rs->EOF) { $rs = $adodb->Execute("SELECT * FROM qb_config_odbc ". " WHERE id = ? ", array($rs->fields['id'])); if (!$rs->EOF) { $odbcCol = unserialize($rs->fields['serialize']); foreach ($odbcCol as $k => $v) { $optsInput .= "\t\t\$opts['fdd']['".$v."']['input'] = 'R';\n"; } } } else { # return $logger->error("tableid '".$tableid."' not found on qb_config! ". # " ".$adodb->ErrorMsg()); } $optsInput = " function flag_enabled(\$rec) { global \$adodb, \$opts; \$rs = \$adodb->Execute('SELECT * FROM '.\$opts['tb'].' '. ' WHERE '.\$opts['key'].' = ? ', array(\$rec)); if (!\$rs->EOF) { global \$adodb, \$opts; \$rs = \$adodb->Execute('SELECT * FROM ".$tableid."_crc'. ' WHERE ".implode(" = ? AND ", $metaPK)." = ?', array(\$rs->fields['".implode("'], \$rs->fields['", $metaPK)."'])); if (!\$rs->EOF) return 0; } return 1; } if (flag_enabled(\$_REQUEST['rec']) === 0) { ".$optsInput." } "; $pageTitle = $tb2; $pageHeader = true; $HTMLissues = true; $CSSstylesheet = true; /* QBUILDER TRAP */ $phpExtension = '.php'; if (isset($baseFilename) && $baseFilename != '') { $phpFile = $baseFilename.$phpExtension; //$contentFile = $baseFilename.'Content.inc'; $contentFile = $baseFilename.'.php'; } elseif (isset($tb)) { $phpFile = $tb.$phpExtension; //$contentFile = $tb.'Content.inc'; $contentFile = $tb.'.php'; } else { $phpFile = 'index'.$phpExtension; //$contentFile = 'Content.inc'; $contentFile = 'phpMyEdit-content.php'; } $buffer = ''; function echo_html($x) { echo htmlspecialchars($x),"\n"; } function echo_buffer($x) { global $buffer; $buffer .= $x."\n"; } $self = basename($HTTP_SERVER_VARS['PHP_SELF']); $dbl = @mysql_pconnect($hn, $un, $pw); if ((!$dbl) or empty($submit)) { echo '

Please log in to your MySQL database

'; if (!empty($submit)) { echo '

Sorry - login failed - please try again

'."\n"; } if (! isset($hn)) { $hn = 'localhost'; } echo '
Hostname:
Username:
Password:

'."\n"; } else if (! isset($db)) { $dbs = @mysql_list_dbs($dbl); $num_dbs = @mysql_num_rows($dbs); echo '

Please select a database

'."\n"; for ($i = 0; $i < $num_dbs; $i++) { $db = @mysql_db_name($dbs, $i); $checked = ! strcasecmp($un, $db) ? ' checked' : ''; $db = htmlspecialchars($db); echo ''."\n"; } echo '
'.$db.'

'."\n"; } else if (!isset($tb)) { echo '

Please select a table from database: '.htmlspecialchars($db).'

'."\n"; $tbs = @mysql_list_tables($db, $dbl); $num_tbs = @mysql_num_rows($tbs); for ($j = 0; $j < $num_tbs; $j++) { $tb = @mysql_tablename($tbs, $j); $tb = htmlspecialchars($tb); $checked = $j == 0 ? ' checked' : ''; echo ''."\n"; } echo '
'.$tb.'

'."\n"; } else if (!isset($id)) { echo '

Please select an identifier from table: '.htmlspecialchars($tb).'

This field will be used in change, view, copy and delete operations.
The field should be numeric and must uniquely identify a record.

Please note, that there were problems reported by phpMyEdit users regarding using MySQL reserved word as unique key name (the example for this is "key" name). Thus we recommend you to use another name of unique key. Usage of "id" or "ID" should be safe and good idea.

'."\n"; // @mysql_select_db($db); $tb_desc = @mysql_query("DESCRIBE $tb"); $fds = @mysql_list_fields($db,$tb,$dbl); for ($j = 0; ($fd = @mysql_field_name($fds, $j)) != false; $j++) { $ff = @mysql_field_flags($fds, $j); strlen($ff) <= 0 && $ff = '---'; $checked = stristr($ff, 'primary_key') ? ' checked' : ''; echo ''; echo ''; echo ''; $r = @mysql_fetch_array($tb_desc, $j); } echo '
// NoneNo id field required
',htmlspecialchars($fd),'',htmlspecialchars($ff),'

'."\n"; } else if (!isset($options)) { echo '

Please select additional options

Base filename
Page title
Page header
HTML header & footer
CSS basic stylesheet

'."\n"; } else { echo '

Here is your phpMyEdit calling program

'."\n"; echo '

You may now copy and paste it into your PHP editor

'."\n"; if ($pageHeader) { #echo_buffer('

'.$pageTitle.'

'); } echo_buffer(" true, 'query' => true, 'sort' => true, 'time' => true, 'tabs' => true ); \$opts['logtable'] = 'qb_changelog'; /* Get the user's default language and use it if possible or you can specify particular one you want to use. Refer to official documentation for list of available languages. */ \$opts['language'] = \$HTTP_SERVER_VARS['HTTP_ACCEPT_LANGUAGE']; /* Table-level filter capability. If set, it is included in the WHERE clause of any generated SELECT statement in SQL query. This gives you ability to work only with subset of data from table. \$opts['filters'] = \"column1 like '%11%' AND column2<17\"; \$opts['filters'] = \"section_id = 9\"; \$opts['filters'] = \"PMEtable0.sessions_count > 200\"; */ /* Field definitions Fields will be displayed left to right on the screen in the order in which they appear in generated list. Here are some most used field options documented. ['name'] is the title used for column headings, etc.; ['maxlen'] maximum length to display add/edit/search input boxes ['trimlen'] maximum length of string content to display in row listing ['width'] is an optional display width specification for the column e.g. ['width'] = '100px'; ['mask'] a string that is used by sprintf() to format field output ['sort'] true or false; means the users may sort the display on this column ['strip_tags'] true or false; whether to strip tags from content ['nowrap'] true or false; whether this field should get a NOWRAP ['required'] true or false; if generate javascript to prevent null entries ['select'] T - text, N - numeric, D - drop-down, M - multiple selection ['options'] optional parameter to control whether a field is displayed L - list, F - filter, A - add, C - change, P - copy, D - delete, V - view Another flags are: R - indicates that a field is read only W - indicates that a field is a password field H - indicates that a field is to be hidden and marked as hidden ['URL'] is used to make a field 'clickable' in the display e.g.: 'mailto:\$value', 'http://\$value' or '\$page?stuff'; ['URLtarget'] HTML target link specification (for example: _blank) ['textarea']['rows'] and/or ['textarea']['cols'] specifies a textarea is to be used to give multi-line input e.g. ['textarea']['rows'] = 5; ['textarea']['cols'] = 10 ['values'] restricts user input to the specified constants, e.g. ['values'] = array('A','B','C') or ['values'] = range(1,99) ['values']['table'] and ['values']['column'] restricts user input to the values found in the specified column of another table ['values']['description'] = 'desc_column' The optional ['values']['description'] field allows the value(s) displayed to the user to be different to those in the ['values']['column'] field. This is useful for giving more meaning to column values. Multiple descriptions fields are also possible. Check documentation for this. */ "); @mysql_select_db($db); $tb_desc = @mysql_query("DESCRIBE $tb"); $fds = @mysql_list_fields($db, $tb, $dbl); $num_fds = @mysql_num_fields($fds); $ts_cnt = 0; for ($k = 0; $k < $num_fds; $k++) { $fd = mysql_field_name($fds,$k); $fm = mysql_fetch_field($fds,$k); $fn = strtr($fd, '_-.', ' '); $fn = preg_replace('/(^| +)id( +|$)/', '\\1ID\\2', $fn); // uppercase IDs $fn = ucfirst($fn); $row = @mysql_fetch_array($tb_desc); $label = str_replace('\'','\\\'',$fn); if ($arrLabel[$fd]) $label = $arrLabel[$fd]; echo_buffer('$opts[\'fdd\'][\''.$fd.'\'] = array('); // ) echo_buffer(" 'name' => '".$label."',"); $auto_increment = strstr($row[5], 'auto_increment') ? 1 : 0; if (substr($row[1],0,3) == 'set') { echo_buffer(" 'select' => 'M',"); } else { echo_buffer(" 'select' => 'T',"); } if ($auto_increment) { echo_buffer(" 'options' => 'AVCPDR', // auto increment"); } // timestamps are read-only else if (@mysql_field_type($fds, $k) == 'timestamp') { if ($ts_cnt > 0) { echo_buffer(" 'options' => 'AVCPD',"); } else { // first timestamp echo_buffer(" 'options' => 'AVCPDR', // updated automatically (MySQL feature)"); } $ts_cnt++; } echo_buffer(" 'maxlen' => ".@mysql_field_len($fds,$k).','); // blobs -> textarea if (@mysql_field_type($fds,$k) == 'blob') { echo_buffer(" 'textarea' => array("); echo_buffer(" 'rows' => 5,"); echo_buffer(" 'cols' => 50),"); } // SETs and ENUMs get special treatment if ((substr($row[1],0,3) == 'set' || substr($row[1],0,4) == 'enum') && ! (($pos = strpos($row[1], '(')) === false)) { $indent = str_repeat(' ', 18); $outstr = substr($row[1], $pos + 2, -2); $outstr = explode("','", $outstr); $outstr = str_replace("''", "'", $outstr); $outstr = str_replace('"', '\\"', $outstr); $outstr = implode("\",\n$indent\"", $outstr); echo_buffer(" 'values' => array(\n$indent\"".$outstr.'"),'); } // automatic support for Default values if ($row[4] != '' && $row[4] != 'NULL') { echo_buffer(" 'default' => '".$row[4]."',"); } else if ($auto_increment) { echo_buffer(" 'default' => '0',"); } if (stristr(@mysql_field_flags($fds, $k), 'not_null') && ! $auto_increment) { echo_buffer(" 'required' => true,"); } echo_buffer(" 'sort' => true"); //echo_buffer(" 'nowrap' => false,"); echo_buffer(');'); } echo_buffer(" \$moduleId = 'Import.Table Config'; \$opts['options'] = 'F'; if (\$isSupervisor) { \$userAction['addData'] = 1; \$userAction['editData'] = 1; \$userAction['deleteData'] = 1; } else { \$userAction = getUserActions(\$_SESSION['userid'], \$moduleId); } if (\$userAction['addData']) \$opts['options'] .= 'A'; if (\$userAction['editData']) \$opts['options'] .= 'C'; if (\$userAction['deleteData']) \$opts['options'] .= 'D'; ".$optsTIA." ".$optsTUA." ".$optsTDA." ".$optsInput." if (isset(\$opts['fdd']['qb_id'])) { \$opts['fdd']['qb_id']['options'] = ''; } if (\$userAction['deleteData']) { \$opts['options'] .= 'D'; #\$opts['fdd']['flag']['options'] = 'AL'; #\$opts['fdd']['flag']['input'] = 'H'; #\$opts['fdd']['flag']['default'] = '1'; #\$opts['fdd']['flag']['sql'] = \$opts['key']; #\$opts['fdd']['flag']['URL'] = '\$page?\$url&operation=Delete'; #\$opts['fdd']['flag']['eval'] = ' # if (flag_enabled(\$value) === 1) \$value = __(\"Delete\"); # else \$value = \"\"; #'; #\$opts['fdd'] = array_merge(array('flag'=>\$opts['fdd']['flag']), \$opts['fdd']); } // Now important call to phpMyEdit require_once 'phpMyEdit.class.php'; new phpMyEdit(\$opts); ?> "); $css_directive = << table { border: #004d9c 1px solid; border-collapse: collapse; border-spacing: 0px; width: 100%; } th { border: #004d9c 1px solid; padding: 4px; background: #add8e6; } td { border: #004d9c 1px solid; padding: 3px; } hr { border: 0px solid; padding: 0px; margin: 0px; border-top-width: 1px; height: 1px; } END; $css_directive = << END; if (! $CSSstylesheet) { $css_directive = ''; } if ($HTMLissues) { $htmlbuffer = << $pageTitle $css_directive END; $htmlbuffer .= "

$pageTitle

"; $buffer = $htmlbuffer."\n" . $buffer; } else if ($CSSstylesheet) { $buffer = $css_directive . $buffer; } if ($HTMLissues) { $buffer .= "\n"; $buffer .= "\n"; } // write the content include file echo 'Trying to write content file to: '.'./'.$contentFile.'
'."\n"; $filehandle = @fopen('./'.$contentFile, 'w+'); if ($filehandle) { fwrite($filehandle, $buffer); flush($filehandle); fclose($filehandle); echo 'phpMyEdit content file written successfully
'; /* QBUILDER TRAP */ echo " "; /* QBUILDER TRAP */ } else { echo 'phpMyEdit content file was NOT written due to inssufficient privileges.
'; echo 'Please copy and paste content listed below to '.'./'.$contentFile.' file.'; } echo '

'; echo '
';
	echo_html($buffer);
	echo '

'."\n"; } ?>