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
ab218add
Commit
ab218add
authored
Apr 18, 2014
by
Qiang Xue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes #2563: Theming is not working if the path map of the theme contains ".." or "." in the paths
parent
55ea8116
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
31 additions
and
5 deletions
+31
-5
CHANGELOG.md
framework/CHANGELOG.md
+1
-0
BaseFileHelper.php
framework/helpers/BaseFileHelper.php
+23
-4
FileHelperTest.php
tests/unit/framework/helpers/FileHelperTest.php
+7
-1
No files found.
framework/CHANGELOG.md
View file @
ab218add
...
...
@@ -4,6 +4,7 @@ Yii Framework 2 Change Log
2.
0.0-rc under development
--------------------------
-
Bug #2563: Theming is not working if the path map of the theme contains ".." or "." in the paths (qiangxue)
-
Bug #3042:
`yii\widgets\Pjax`
should end application right after it finishes responding to a pjax request (qiangxue)
-
Bug #3066:
`yii\db\mssql\Schema::getTableSchema()`
should return null when the table does not exist (qiangxue)
-
Bug #3091: Fixed inconsistent treatment of
`Widget::run()`
when a widget is used as a container and as a self-contained object (qiangxue)
...
...
framework/helpers/BaseFileHelper.php
View file @
ab218add
...
...
@@ -28,16 +28,35 @@ class BaseFileHelper
/**
* Normalizes a file/directory path.
* After normalization, the directory separators in the path will be `DIRECTORY_SEPARATOR`,
* and any trailing directory separators will be removed. For example, '/home\demo/' on Linux
* will be normalized as '/home/demo'.
* The normalization does the following work:
*
* - Convert all directory separators into `DIRECTORY_SEPARATOR` (e.g. "\a/b\c" becomes "/a/b/c")
* - Remove trailing directory separators (e.g. "/a/b/c/" becomes "/a/b/c")
* - Turn multiple consecutive slashes into a single one (e.g. "/a///b/c" becomes "/a/b/c")
* - Remove ".." and "." based on their meanings (e.g. "/a/./b/../c" becomes "/a/c")
*
* @param string $path the file/directory path to be normalized
* @param string $ds the directory separator to be used in the normalized result. Defaults to `DIRECTORY_SEPARATOR`.
* @return string the normalized file/directory path
*/
public
static
function
normalizePath
(
$path
,
$ds
=
DIRECTORY_SEPARATOR
)
{
return
rtrim
(
strtr
(
$path
,
[
'/'
=>
$ds
,
'\\'
=>
$ds
]),
$ds
);
$path
=
rtrim
(
strtr
(
$path
,
[
'/'
=>
$ds
,
'\\'
=>
$ds
]),
$ds
);
if
(
strpos
(
$ds
.
$path
,
"
{
$ds
}
."
)
===
false
&&
strpos
(
$path
,
"
{
$ds
}{
$ds
}
"
)
===
false
)
{
return
$path
;
}
// the path may contain ".", ".." or double slashes, need to clean them up
$parts
=
[];
foreach
(
explode
(
$ds
,
$path
)
as
$part
)
{
if
(
$part
===
'..'
&&
!
empty
(
$parts
))
{
array_pop
(
$parts
);
}
elseif
(
$part
===
'.'
||
$part
===
''
&&
!
empty
(
$parts
))
{
continue
;
}
else
{
$parts
[]
=
$part
;
}
}
return
implode
(
$ds
,
$parts
);
}
/**
...
...
tests/unit/framework/helpers/FileHelperTest.php
View file @
ab218add
...
...
@@ -360,7 +360,13 @@ class FileHelperTest extends TestCase
public
function
testNormalizePath
()
{
$this
->
assertEquals
(
DIRECTORY_SEPARATOR
.
'home'
.
DIRECTORY_SEPARATOR
.
'demo'
,
FileHelper
::
normalizePath
(
'/home\demo/'
));
$ds
=
DIRECTORY_SEPARATOR
;
$this
->
assertEquals
(
"
{
$ds
}
a
{
$ds
}
b"
,
FileHelper
::
normalizePath
(
'//a\b/'
));
$this
->
assertEquals
(
"
{
$ds
}
b
{
$ds
}
c"
,
FileHelper
::
normalizePath
(
'/a/../b/c'
));
$this
->
assertEquals
(
"
{
$ds
}
c"
,
FileHelper
::
normalizePath
(
'/a\\b/../..///c'
));
$this
->
assertEquals
(
"
{
$ds
}
c"
,
FileHelper
::
normalizePath
(
'/a/.\\b//../../c'
));
$this
->
assertEquals
(
"c"
,
FileHelper
::
normalizePath
(
'/a/.\\b/../..//../c'
));
$this
->
assertEquals
(
"..
{
$ds
}
c"
,
FileHelper
::
normalizePath
(
'//a/.\\b//..//..//../../c'
));
}
public
function
testLocalizedDirectory
()
...
...
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