silverstripe-framework/security
Daniel Hensby 3b9056fc01 NEW Cookie_Backend for managing cookie state
I've decoupled `Cookie` from the actual act of setting and getting
cookies. Currently there are a few limitations to how Cookie works that
this change mitigates:

0. `Cookie` currently changes the super global `$_COOKIE` when setting
to make the state of an application a bit more managable, but this is
bad because we shouldn't be modifying super globals
0. One can't actually change the `$cookie_class` once the
`Cookie::$inst` has been instantiated
0. One can't test cookies as there is no class that holds the state of
the cookies (it's just held in the super global which is reset as part
of `Director::test()`
0. One can't tell the origin of a cookie (eg: did the application set it
and it needs to be sent, or did we receive it from the browser?)
0. `time()` was used, so testing was made difficult
0. There was no way to get all the cookies at once (without accessing
the super global)

Todos are on the phpdoc and I'd like to write some tests for the backend
as well as update the docs (if there are any) around cookies.
DOCS Adding `Cookie` docs

Explains basic usage of `Cookie` as well as how the `Cookie_Backend`
controls the setting and getting of cookies and manages state of sent vs
received cookies
Fixing `Cookie` usage

`Cookie` is being used inconsistently with the API throughout framework.
Either by not using `force_expiry` to expire cookies or setting them to
null and then expiring them (which is redundant).
NEW `Director::test()` takes `Cookie_Backend` rather than `array` for `$cookies` param
2014-10-06 17:44:51 +13:00
..
Authenticator.php Remove all redundant whitespace 2014-08-19 09:17:15 +12:00
BasicAuth.php Remove all redundant whitespace 2014-08-19 09:17:15 +12:00
ChangePasswordForm.php Remove all redundant whitespace 2014-08-19 09:17:15 +12:00
Group.php Removing deprecated class/functions marked for deprecation in 3.0/3.1 2014-08-25 12:06:05 +12:00
GroupCsvBulkLoader.php Remove all redundant whitespace 2014-08-19 09:17:15 +12:00
LoginAttempt.php Remove all redundant whitespace 2014-08-19 09:17:15 +12:00
LoginForm.php Remove all redundant whitespace 2014-08-19 09:17:15 +12:00
Member.php NEW Cookie_Backend for managing cookie state 2014-10-06 17:44:51 +13:00
MemberAuthenticator.php Don't clear BackURL after MemberAuthenticator::authenticate() 2014-08-25 23:12:52 +12:00
MemberCsvBulkLoader.php Remove all redundant whitespace 2014-08-19 09:17:15 +12:00
MemberLoginForm.php Remove all redundant whitespace 2014-08-19 09:17:15 +12:00
MemberPassword.php Remove all redundant whitespace 2014-08-19 09:17:15 +12:00
PasswordEncryptor.php Remove all redundant whitespace 2014-08-19 09:17:15 +12:00
PasswordValidator.php Remove all redundant whitespace 2014-08-19 09:17:15 +12:00
Permission.php Remove all redundant whitespace 2014-08-19 09:17:15 +12:00
PermissionCheckboxSetField.php Remove all redundant whitespace 2014-08-19 09:17:15 +12:00
PermissionFailureException.php Remove all redundant whitespace 2014-08-19 09:17:15 +12:00
PermissionProvider.php FIX Remove instances of lines longer than 120c 2012-09-30 17:18:13 +13:00
PermissionRole.php Remove all redundant whitespace 2014-08-19 09:17:15 +12:00
PermissionRoleCode.php Remove all redundant whitespace 2014-08-19 09:17:15 +12:00
RandomGenerator.php Remove all redundant whitespace 2014-08-19 09:17:15 +12:00
Security.php Fix deprecation warning with word_list 2014-08-31 15:59:16 +12:00
SecurityToken.php Remove all redundant whitespace 2014-08-19 09:17:15 +12:00