mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-03 17:22:20 +09:00
reverse merge from 1.6.0 (r10013)
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@10690 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
ac1783e77f
commit
75f9ef95cf
7 changed files with 116 additions and 26 deletions
|
|
@ -93,6 +93,10 @@
|
||||||
|
|
||||||
$this->tables = $tables;
|
$this->tables = $tables;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function setSubquery($subquery){
|
||||||
|
$this->subquery = $subquery;
|
||||||
|
}
|
||||||
|
|
||||||
function setConditions($conditions){
|
function setConditions($conditions){
|
||||||
$this->conditions = array();
|
$this->conditions = array();
|
||||||
|
|
@ -186,6 +190,20 @@
|
||||||
|
|
||||||
function getInsertString($with_values = true){
|
function getInsertString($with_values = true){
|
||||||
$columnsList = '';
|
$columnsList = '';
|
||||||
|
if($this->subquery){ // means we have insert-select
|
||||||
|
|
||||||
|
foreach($this->columns as $column){
|
||||||
|
$columnsList .= $column->getColumnName() . ', ';
|
||||||
|
}
|
||||||
|
$columnsList = substr($columnsList, 0, -2);
|
||||||
|
|
||||||
|
$selectStatement = $this->subquery->toString($with_values);
|
||||||
|
$selectStatement = substr($selectStatement, 1, -1);
|
||||||
|
|
||||||
|
return "($columnsList) \n $selectStatement";
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
$valuesList = '';
|
$valuesList = '';
|
||||||
foreach($this->columns as $column){
|
foreach($this->columns as $column){
|
||||||
if($column->show()){
|
if($column->show()){
|
||||||
|
|
|
||||||
|
|
@ -21,6 +21,7 @@
|
||||||
require(_XE_PATH_.'classes/xml/xmlquery/tags/column/ColumnTag.class.php');
|
require(_XE_PATH_.'classes/xml/xmlquery/tags/column/ColumnTag.class.php');
|
||||||
require(_XE_PATH_.'classes/xml/xmlquery/tags/column/SelectColumnTag.class.php');
|
require(_XE_PATH_.'classes/xml/xmlquery/tags/column/SelectColumnTag.class.php');
|
||||||
require(_XE_PATH_.'classes/xml/xmlquery/tags/column/InsertColumnTag.class.php');
|
require(_XE_PATH_.'classes/xml/xmlquery/tags/column/InsertColumnTag.class.php');
|
||||||
|
require(_XE_PATH_.'classes/xml/xmlquery/tags/column/InsertColumnTagWithoutArgument.class.php');
|
||||||
require(_XE_PATH_.'classes/xml/xmlquery/tags/column/UpdateColumnTag.class.php');
|
require(_XE_PATH_.'classes/xml/xmlquery/tags/column/UpdateColumnTag.class.php');
|
||||||
require(_XE_PATH_.'classes/xml/xmlquery/tags/column/SelectColumnsTag.class.php');
|
require(_XE_PATH_.'classes/xml/xmlquery/tags/column/SelectColumnsTag.class.php');
|
||||||
require(_XE_PATH_.'classes/xml/xmlquery/tags/column/InsertColumnsTag.class.php');
|
require(_XE_PATH_.'classes/xml/xmlquery/tags/column/InsertColumnsTag.class.php');
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,27 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* @class InsertColumnTagWithoutArgument
|
||||||
|
* @author Arnia Software
|
||||||
|
* @brief Models the <column> tag inside an XML Query file whose action is 'insert-select'
|
||||||
|
*
|
||||||
|
**/
|
||||||
|
|
||||||
|
class InsertColumnTagWithoutArgument extends ColumnTag {
|
||||||
|
|
||||||
|
function InsertColumnTagWithoutArgument($column) {
|
||||||
|
parent::ColumnTag($column->attrs->name);
|
||||||
|
$dbParser = DB::getParser();
|
||||||
|
$this->name = $dbParser->parseColumnName($this->name);
|
||||||
|
}
|
||||||
|
|
||||||
|
function getExpressionString(){
|
||||||
|
var_dump($this->name);
|
||||||
|
return sprintf('new Expression(\'%s\')', $this->name);
|
||||||
|
}
|
||||||
|
|
||||||
|
function getArgument(){
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
|
@ -19,6 +19,7 @@
|
||||||
|
|
||||||
foreach($xml_columns as $column){
|
foreach($xml_columns as $column){
|
||||||
if($column->name === 'query') $this->columns[] = new QueryTag($column, true);
|
if($column->name === 'query') $this->columns[] = new QueryTag($column, true);
|
||||||
|
else if(!isset($column->attrs->var) && !isset($column->attrs->default)) $this->columns[] = new InsertColumnTagWithoutArgument($column);
|
||||||
else $this->columns[] = new InsertColumnTag($column);
|
else $this->columns[] = new InsertColumnTag($column);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -10,6 +10,7 @@ class QueryTag {
|
||||||
//xml tags
|
//xml tags
|
||||||
var $columns;
|
var $columns;
|
||||||
var $tables;
|
var $tables;
|
||||||
|
var $subquery;
|
||||||
var $conditions;
|
var $conditions;
|
||||||
var $groups;
|
var $groups;
|
||||||
var $navigation;
|
var $navigation;
|
||||||
|
|
@ -37,9 +38,12 @@ class QueryTag {
|
||||||
$this->getColumns();
|
$this->getColumns();
|
||||||
$tables = $this->getTables();
|
$tables = $this->getTables();
|
||||||
$this->setTableColumnTypes($tables);
|
$this->setTableColumnTypes($tables);
|
||||||
|
$this->getSubquery(); // Used for insert-select
|
||||||
$this->getConditions();
|
$this->getConditions();
|
||||||
$this->getGroups();
|
$this->getGroups();
|
||||||
$this->getNavigation();
|
$this->getNavigation();
|
||||||
|
|
||||||
|
|
||||||
$this->getPrebuff();
|
$this->getPrebuff();
|
||||||
$this->getBuff();
|
$this->getBuff();
|
||||||
}
|
}
|
||||||
|
|
@ -77,19 +81,20 @@ class QueryTag {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function getColumns() {
|
function getColumns(){
|
||||||
if ($this->action == 'select') {
|
if($this->action == 'select'){
|
||||||
return $this->columns = new SelectColumnsTag($this->query->columns);
|
return $this->columns = new SelectColumnsTag($this->query->columns);
|
||||||
} else if ($this->action == 'insert') {
|
}else if($this->action == 'insert' || $this->action == 'insert-select'){
|
||||||
return $this->columns = new InsertColumnsTag($this->query->columns->column);
|
return $this->columns = new InsertColumnsTag($this->query->columns->column);
|
||||||
} else if ($this->action == 'update') {
|
}else if($this->action == 'update') {
|
||||||
return $this->columns = new UpdateColumnsTag($this->query->columns->column);
|
return $this->columns = new UpdateColumnsTag($this->query->columns->column);
|
||||||
} else if ($this->action == 'delete') {
|
}else if($this->action == 'delete') {
|
||||||
return $this->columns = null;
|
return $this->columns = null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function getPrebuff() {
|
function getPrebuff() {
|
||||||
|
if($this->isSubQuery) return;
|
||||||
// TODO Check if this work with arguments in join clause
|
// TODO Check if this work with arguments in join clause
|
||||||
$arguments = $this->getArguments();
|
$arguments = $this->getArguments();
|
||||||
|
|
||||||
|
|
@ -159,11 +164,13 @@ class QueryTag {
|
||||||
if ($this->columns)
|
if ($this->columns)
|
||||||
$buff .= '$query->setColumns(' . $this->columns->toString() . ');' . PHP_EOL;
|
$buff .= '$query->setColumns(' . $this->columns->toString() . ');' . PHP_EOL;
|
||||||
|
|
||||||
$buff .= '$query->setTables(' . $this->tables->toString() . ');' . PHP_EOL;
|
$buff .= '$query->setTables(' . $this->tables->toString() .');'.PHP_EOL;
|
||||||
$buff .= '$query->setConditions(' . $this->conditions->toString() . ');' . PHP_EOL;
|
if($this->action == 'insert-select')
|
||||||
$buff .= '$query->setGroups(' . $this->groups->toString() . ');' . PHP_EOL;
|
$buff .= '$query->setSubquery(' . $this->subquery->toString() .');'.PHP_EOL;
|
||||||
$buff .= '$query->setOrder(' . $this->navigation->getOrderByString() . ');' . PHP_EOL;
|
$buff .= '$query->setConditions('.$this->conditions->toString() .');'.PHP_EOL;
|
||||||
$buff .= '$query->setLimit(' . $this->navigation->getLimitString() . ');' . PHP_EOL;
|
$buff .= '$query->setGroups(' . $this->groups->toString() . ');'.PHP_EOL;
|
||||||
|
$buff .= '$query->setOrder(' . $this->navigation->getOrderByString() .');'.PHP_EOL;
|
||||||
|
$buff .= '$query->setLimit(' . $this->navigation->getLimitString() .');'.PHP_EOL;
|
||||||
|
|
||||||
$this->buff = $buff;
|
$this->buff = $buff;
|
||||||
return $this->buff;
|
return $this->buff;
|
||||||
|
|
@ -176,7 +183,13 @@ class QueryTag {
|
||||||
return $this->tables = new TablesTag($this->query->tables);
|
return $this->tables = new TablesTag($this->query->tables);
|
||||||
}
|
}
|
||||||
|
|
||||||
function getConditions() {
|
function getSubquery(){
|
||||||
|
if($this->query->query){
|
||||||
|
$this->subquery = new QueryTag($this->query->query, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function getConditions(){
|
||||||
return $this->conditions = new ConditionsTag($this->query->conditions);
|
return $this->conditions = new ConditionsTag($this->query->conditions);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -207,11 +220,13 @@ class QueryTag {
|
||||||
return $this->buff;
|
return $this->buff;
|
||||||
}
|
}
|
||||||
|
|
||||||
function getArguments() {
|
function getArguments(){
|
||||||
$arguments = array();
|
$arguments = array();
|
||||||
if ($this->columns)
|
if ($this->columns)
|
||||||
$arguments = array_merge($arguments, $this->columns->getArguments());
|
$arguments = array_merge($arguments, $this->columns->getArguments());
|
||||||
$arguments = array_merge($arguments, $this->tables->getArguments());
|
if($this->action =='insert-select')
|
||||||
|
$arguments = array_merge($arguments, $this->subquery->getArguments());
|
||||||
|
$arguments = array_merge($arguments, $this->tables->getArguments());
|
||||||
$arguments = array_merge($arguments, $this->conditions->getArguments());
|
$arguments = array_merge($arguments, $this->conditions->getArguments());
|
||||||
$arguments = array_merge($arguments, $this->navigation->getArguments());
|
$arguments = array_merge($arguments, $this->navigation->getArguments());
|
||||||
return $arguments;
|
return $arguments;
|
||||||
|
|
|
||||||
|
|
@ -21,18 +21,23 @@ class MysqlInsertTest extends MysqlTest
|
||||||
{
|
{
|
||||||
$this->_testQuery($xml_file, $argsString, $expected, 'getInsertSql', $columnList);
|
$this->_testQuery($xml_file, $argsString, $expected, 'getInsertSql', $columnList);
|
||||||
}
|
}
|
||||||
|
|
||||||
function testInsertIntoNumericColumnConvertsValue()
|
/**
|
||||||
|
* @brief testInsertSelectStatement - checks that when query action is 'insert-selct' an 'INSERT INTO .. SELECT ...' statement is properly generated
|
||||||
|
* @developer Corina Udrescu (xe_dev@arnia.ro)
|
||||||
|
* @access public
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
function testInsertSelectStatement()
|
||||||
{
|
{
|
||||||
$xml_file = _TEST_PATH_ . "db/xml_query/mysql/data/member_insert_injection.xml";
|
$xml_file = _TEST_PATH_ . "db/xml_query/mysql/data/insert_select.xml";
|
||||||
$argsString = '$args->member_srl = 7;
|
$argsString = '$args->condition_value = 7;';
|
||||||
$args->find_account_question = "1\'";
|
$expected = 'insert into `xe_table1` (`column1`, `column2`, `column3`)
|
||||||
';
|
select `column4`, `column5`, `column6`
|
||||||
$expected = 'insert into `xe_member` (`member_srl`, `find_account_question`) values (7, 1)';
|
from `xe_table2` as `table2`
|
||||||
|
where `column4` >= 7';
|
||||||
$this->_test($xml_file, $argsString, $expected);
|
$this->_test($xml_file, $argsString, $expected);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* End of file MysqlInsertTest.php */
|
/* End of file MysqlInsertTest.php */
|
||||||
|
|
|
||||||
23
tests/classes/db/db/xml_query/mysql/data/insert_select.xml
Normal file
23
tests/classes/db/db/xml_query/mysql/data/insert_select.xml
Normal file
|
|
@ -0,0 +1,23 @@
|
||||||
|
<query id="QUERY_ID" action="insert-select">
|
||||||
|
<tables>
|
||||||
|
<table name="table1" />
|
||||||
|
</tables>
|
||||||
|
<columns>
|
||||||
|
<column name="column1" />
|
||||||
|
<column name="column2" />
|
||||||
|
<column name="column3" />
|
||||||
|
</columns>
|
||||||
|
<query>
|
||||||
|
<tables>
|
||||||
|
<table name="table2" />
|
||||||
|
</tables>
|
||||||
|
<columns>
|
||||||
|
<column name="column4" />
|
||||||
|
<column name="column5" />
|
||||||
|
<column name="column6" />
|
||||||
|
</columns>
|
||||||
|
<conditions>
|
||||||
|
<condition operation="more" column="column4" default="100" var="condition_value" />
|
||||||
|
</conditions>
|
||||||
|
</query>
|
||||||
|
</query>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue