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
b6537da8
Commit
b6537da8
authored
Oct 09, 2011
by
Eric Barnes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added first draft of remember me to auth.
parent
8c9bd120
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
1 deletion
+23
-1
auth.php
laravel/security/auth.php
+23
-1
No files found.
laravel/security/auth.php
View file @
b6537da8
...
...
@@ -52,6 +52,15 @@ class Auth {
$id
=
IoC
::
container
()
->
core
(
'session'
)
->
get
(
Auth
::
user_key
);
if
(
is_null
(
$id
)
AND
!
is_null
(
$cookie
=
strrev
(
Crypter
::
decrypt
(
\Cookie
::
get
(
'remember'
)))))
{
$cookie
=
explode
(
'|'
,
$cookie
);
if
(
$cookie
[
2
]
==
md5
(
\Request
::
server
(
'HTTP_USER_AGENT'
)))
{
$id
=
$cookie
[
0
];
}
}
return
static
::
$user
=
call_user_func
(
Config
::
get
(
'auth.user'
),
$id
);
}
...
...
@@ -65,12 +74,14 @@ class Auth {
* @param string $password
* @return bool
*/
public
static
function
attempt
(
$username
,
$password
=
null
)
public
static
function
attempt
(
$username
,
$password
=
null
,
$remember
=
false
)
{
if
(
!
is_null
(
$user
=
call_user_func
(
Config
::
get
(
'auth.attempt'
),
$username
,
$password
)))
{
static
::
login
(
$user
);
if
(
$remember
)
static
::
remember
(
$user
);
return
true
;
}
...
...
@@ -108,4 +119,15 @@ class Auth {
IoC
::
container
()
->
core
(
'session'
)
->
forget
(
Auth
::
user_key
);
}
/**
* Set a cookie so that users are remembered.
*
* @return bool
*/
public
static
function
remember
(
$user
)
{
static
::
$user
=
$user
;
$cookie
=
Crypter
::
encrypt
(
strrev
(
$user
->
id
.
'|'
.
\Request
::
ip
()
.
'|'
.
md5
(
\Request
::
server
(
'HTTP_USER_AGENT'
))
.
'|'
.
time
()));
\Cookie
::
put
(
'remember'
,
$cookie
,
60
);
}
}
\ No newline at end of file
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