Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
syncEnrollments
Project
Project
Details
Activity
Releases
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
Yeray Santana Hualde
syncEnrollments
Commits
afd00260
Commit
afd00260
authored
Jun 15, 2011
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Edited session class to use new Cookie send method.
parent
3cffaf58
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
22 deletions
+24
-22
session.php
system/session.php
+24
-22
No files found.
system/session.php
View file @
afd00260
...
...
@@ -17,15 +17,13 @@ class Session {
private
static
$session
=
array
();
/**
* Get the session driver instance.
* Get the session driver. If the driver has already been instantiated, that
* instance will be returned.
*
* @return Session\Driver
*/
public
static
function
driver
()
{
// -----------------------------------------------------
// Create the session driver if we haven't already.
// -----------------------------------------------------
if
(
is_null
(
static
::
$driver
))
{
static
::
$driver
=
Session\Factory
::
make
(
Config
::
get
(
'session.driver'
));
...
...
@@ -59,7 +57,7 @@ class Session {
}
// -----------------------------------------------------
//
Generate a CSRF token if one does not exist
.
//
Create a CSRF token for the session if necessary
.
// -----------------------------------------------------
if
(
!
static
::
has
(
'csrf_token'
))
{
...
...
@@ -70,7 +68,7 @@ class Session {
}
/**
* Determine if the session contains an item.
* Determine if the session
or flash data
contains an item.
*
* @param string $key
* @return bool
...
...
@@ -83,7 +81,7 @@ class Session {
}
/**
* Get an item from the session.
* Get an item from the session
or flash data
.
*
* @param string $key
* @return mixed
...
...
@@ -96,9 +94,6 @@ class Session {
{
return
static
::
$session
[
'data'
][
$key
];
}
// -----------------------------------------------------
// Check the flash data for the item.
// -----------------------------------------------------
elseif
(
array_key_exists
(
':old:'
.
$key
,
static
::
$session
[
'data'
]))
{
return
static
::
$session
[
'data'
][
':old:'
.
$key
];
...
...
@@ -125,7 +120,7 @@ class Session {
}
/**
* Write a
flash item to the session
.
* Write a
n item to the session flash data
.
*
* @param string $key
* @param mixed $value
...
...
@@ -176,17 +171,14 @@ class Session {
public
static
function
close
()
{
// -----------------------------------------------------
// Flash the old input
data to the session
.
// Flash the old input
to the session and age the flash
.
// -----------------------------------------------------
static
::
flash
(
'laravel_old_input'
,
Input
::
get
());
static
::
flash
(
'laravel_old_input'
,
Input
::
get
());
// -----------------------------------------------------
// Age the flash data.
// -----------------------------------------------------
static
::
age_flash
();
// -----------------------------------------------------
//
Sav
e the session data to storage.
//
Writ
e the session data to storage.
// -----------------------------------------------------
static
::
driver
()
->
save
(
static
::
$session
);
...
...
@@ -195,8 +187,18 @@ class Session {
// -----------------------------------------------------
if
(
!
headers_sent
())
{
$lifetime
=
(
Config
::
get
(
'session.expire_on_close'
))
?
0
:
Config
::
get
(
'session.lifetime'
);
Cookie
::
put
(
'laravel_session'
,
static
::
$session
[
'id'
],
$lifetime
,
Config
::
get
(
'session.path'
),
Config
::
get
(
'session.domain'
),
Config
::
get
(
'session.https'
));
$cookie
=
new
Cookie
(
'laravel_session'
,
static
::
$session
[
'id'
]);
if
(
!
Config
::
get
(
'session.expire_on_close'
))
{
$cookie
->
lifetime
=
Config
::
get
(
'session.lifetime'
);
}
$cookie
->
path
=
Config
::
get
(
'session.path'
);
$cookie
->
domain
=
Config
::
get
(
'session.domain'
);
$cookie
->
secure
=
Config
::
get
(
'session.https'
);
$cookie
->
send
();
}
// -----------------------------------------------------
...
...
@@ -204,7 +206,7 @@ class Session {
// -----------------------------------------------------
if
(
mt_rand
(
1
,
100
)
<=
2
)
{
static
::
driver
()
->
sweep
(
time
()
-
(
Config
::
get
(
'session.lifetime'
)
*
60
));
static
::
driver
()
->
sweep
(
time
()
-
(
$config
[
'lifetime'
]
*
60
));
}
}
...
...
@@ -234,12 +236,12 @@ class Session {
if
(
strpos
(
$key
,
':new:'
)
===
0
)
{
// -----------------------------------------------------
// Create an :old:
flash
item.
// Create an :old:
item for the :new:
item.
// -----------------------------------------------------
static
::
put
(
':old:'
.
substr
(
$key
,
5
),
$value
);
// -----------------------------------------------------
// Forget the :new:
flash
item.
// Forget the :new: item.
// -----------------------------------------------------
static
::
forget
(
$key
);
}
...
...
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