Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
3f001aee
Commit
3f001aee
authored
Jun 03, 2014
by
Klimov Paul
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Escaping of the special characters at 'MATCH' statement added
parent
092ca93a
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
60 additions
and
5 deletions
+60
-5
CHANGELOG.md
extensions/sphinx/CHANGELOG.md
+1
-0
Connection.php
extensions/sphinx/Connection.php
+15
-0
Query.php
extensions/sphinx/Query.php
+5
-2
QueryBuilder.php
extensions/sphinx/QueryBuilder.php
+8
-3
QueryTest.php
tests/unit/extensions/sphinx/QueryTest.php
+31
-0
No files found.
extensions/sphinx/CHANGELOG.md
View file @
3f001aee
...
...
@@ -4,6 +4,7 @@ Yii Framework 2 sphinx extension Change Log
2.
0.0-rc under development
--------------------------
-
Bug #3668: Escaping of the special characters at 'MATCH' statement added (klimov-paul)
-
Enh: Added support for using sub-queries when building a DB query with
`IN`
condition (qiangxue)
...
...
extensions/sphinx/Connection.php
View file @
3f001aee
...
...
@@ -128,4 +128,19 @@ class Connection extends \yii\db\Connection
{
throw
new
NotSupportedException
(
'"'
.
__METHOD__
.
'" is not supported.'
);
}
/**
* Escapes all special characters from 'MATCH' statement argument.
* Make sure you are using this method whenever composing 'MATCH' search statement.
* @param string $str string to be escaped.
* @return string the properly escaped string.
*/
public
function
escapeMatchValue
(
$str
)
{
return
str_replace
(
[
'/'
,
'"'
,
"'"
,
'('
,
')'
,
'|'
,
'-'
,
'!'
,
'@'
,
'~'
,
'&'
,
'^'
,
'$'
,
'='
,
"
\x00
"
,
"
\n
"
,
"
\r
"
,
"
\x1a
"
],
[
'\\/'
,
'\\"'
,
"
\\
'"
,
'\\('
,
'\\)'
,
'\\|'
,
'\\-'
,
'\\!'
,
'\\@'
,
'\\~'
,
'\\&'
,
'\\^'
,
'\\$'
,
'\\='
,
"
\\
x00"
,
"
\\
n"
,
"
\\
r"
,
"
\\
x1a"
],
$str
);
}
}
extensions/sphinx/Query.php
View file @
3f001aee
...
...
@@ -72,8 +72,10 @@ class Query extends Component implements QueryInterface
*/
public
$from
;
/**
* @var string text, which should be searched in fulltext mode.
* @var string
|Expression
text, which should be searched in fulltext mode.
* This value will be composed into MATCH operator inside the WHERE clause.
* Note: this value will be processed by [[Connection::escapeMatchValue()]],
* if you need to compose complex match condition use [[Expression]].
*/
public
$match
;
/**
...
...
@@ -381,13 +383,14 @@ class Query extends Component implements QueryInterface
/**
* Sets the fulltext query text. This text will be composed into
* MATCH operator inside the WHERE clause.
* Note: this value will be processed by [[Connection::escapeMatchValue()]],
* if you need to compose complex match condition use [[Expression]].
* @param string $query fulltext query text.
* @return static the query object itself
*/
public
function
match
(
$query
)
{
$this
->
match
=
$query
;
return
$this
;
}
...
...
extensions/sphinx/QueryBuilder.php
View file @
3f001aee
...
...
@@ -63,9 +63,14 @@ class QueryBuilder extends Object
$params
=
empty
(
$params
)
?
$query
->
params
:
array_merge
(
$params
,
$query
->
params
);
if
(
$query
->
match
!==
null
)
{
$phName
=
self
::
PARAM_PREFIX
.
count
(
$params
);
$params
[
$phName
]
=
(
string
)
$query
->
match
;
$query
->
andWhere
(
'MATCH('
.
$phName
.
')'
);
if
(
$query
->
match
instanceof
Expression
)
{
$query
->
andWhere
(
'MATCH('
.
$query
->
match
->
expression
.
')'
);
$params
=
array_merge
(
$query
->
match
->
params
);
}
else
{
$phName
=
self
::
PARAM_PREFIX
.
count
(
$params
);
$params
[
$phName
]
=
$this
->
db
->
escapeMatchValue
(
$query
->
match
);
$query
->
andWhere
(
'MATCH('
.
$phName
.
')'
);
}
}
$from
=
$query
->
from
;
...
...
tests/unit/extensions/sphinx/QueryTest.php
View file @
3f001aee
...
...
@@ -253,4 +253,35 @@ class QueryTest extends SphinxTestCase
->
count
(
'*'
,
$connection
);
$this
->
assertEquals
(
2
,
$count
);
}
/**
* @depends testRun
*/
public
function
testWhereQuotedValue
()
{
$connection
=
$this
->
getConnection
();
$query
=
new
Query
;
$rows
=
$query
->
from
(
'yii2_test_article_index'
)
->
andWhere
([
'author_id'
=>
'some"'
])
//->match('about"')
->
all
(
$connection
);
$this
->
assertEmpty
(
$rows
);
}
/**
* @depends testRun
*
* @see https://github.com/yiisoft/yii2/issues/3668
*/
public
function
testMatchSpecialCharValue
()
{
$connection
=
$this
->
getConnection
();
$query
=
new
Query
;
$rows
=
$query
->
from
(
'yii2_test_article_index'
)
->
match
(
'about"@^'
)
->
all
(
$connection
);
$this
->
assertNotEmpty
(
$rows
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment