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
a7175bae
Commit
a7175bae
authored
Nov 11, 2013
by
Qiang Xue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactored Session as suggested in #1172
parent
202664f3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
10 deletions
+18
-10
Session.php
framework/yii/web/Session.php
+18
-10
No files found.
framework/yii/web/Session.php
View file @
a7175bae
...
...
@@ -80,13 +80,11 @@ class Session extends Component implements \IteratorAggregate, \ArrayAccess, \Co
* @var string the name of the session variable that stores the flash message data.
*/
public
$flashVar
=
'__flash'
;
/**
* @var array parameter-value pairs to override default session cookie parameters that are used for session_set_cookie_params() function
* @see http://www.php.net/manual/en/function.session-set-cookie-params.php
* @see setCookieParams()
*/
p
ublic
$
cookieParams
=
[
'httpOnly'
=>
true
];
p
rivate
$_
cookieParams
=
[
'httpOnly'
=>
true
];
/**
* Initializes the application component.
...
...
@@ -137,7 +135,7 @@ class Session extends Component implements \IteratorAggregate, \ArrayAccess, \Co
);
}
$this
->
setCookieParams
(
$this
->
cookieParams
);
$this
->
setCookieParams
Internal
(
);
@
session_start
();
...
...
@@ -265,26 +263,36 @@ class Session extends Component implements \IteratorAggregate, \ArrayAccess, \Co
$params
[
'httpOnly'
]
=
$params
[
'httponly'
];
unset
(
$params
[
'httponly'
]);
}
return
$params
;
return
array_merge
(
$params
,
$this
->
_cookieParams
)
;
}
/**
* Sets the session cookie parameters.
* The
effect of this method only lasts for the duration of the script.
*
Call this method before the session starts
.
* The
cookie parameters passed to this method will be merged with the result
*
of `session_get_cookie_params()`
.
* @param array $value cookie parameters, valid keys include: `lifetime`, `path`, `domain`, `secure` and `httpOnly`.
* @throws InvalidParamException if the parameters are incomplete.
* @see http://us2.php.net/manual/en/function.session-set-cookie-params.php
*/
public
function
setCookieParams
(
$value
)
public
function
setCookieParams
(
array
$value
)
{
$this
->
_cookieParams
=
$value
;
}
/**
* Sets the session cookie parameters.
* This method is called by [[open()]] when it is about to open the session.
* @throws InvalidParamException if the parameters are incomplete.
* @see http://us2.php.net/manual/en/function.session-set-cookie-params.php
*/
private
function
setCookieParamsInternal
()
{
$data
=
$this
->
getCookieParams
();
extract
(
$data
);
extract
(
$value
);
if
(
isset
(
$lifetime
,
$path
,
$domain
,
$secure
,
$httpOnly
))
{
session_set_cookie_params
(
$lifetime
,
$path
,
$domain
,
$secure
,
$httpOnly
);
}
else
{
throw
new
InvalidParamException
(
'Please make sure
these parameters are provided
: lifetime, path, domain, secure and httpOnly.'
);
throw
new
InvalidParamException
(
'Please make sure
cookieParams contains these elements
: lifetime, path, domain, secure and httpOnly.'
);
}
}
...
...
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