nextcloud-server/lib/private/appframework
Lukas Reschke 886bda5f81 Refactor OC_Request into TrustedDomainHelper and IRequest
This changeset removes the static class `OC_Request` and moves the functions either into `IRequest` which is accessible via `\OC::$server::->getRequest()` or into a separated `TrustedDomainHelper` class for some helper methods which should not be publicly exposed.

This changes only internal methods and nothing on the public API. Some public functions in `util.php` have been deprecated though in favour of the new non-static functions.

Unfortunately some part of this code uses things like `__DIR__` and thus is not completely unit-testable. Where tests where possible they ahve been added though.

Fixes https://github.com/owncloud/core/issues/13976 which was requested in https://github.com/owncloud/core/pull/13973#issuecomment-73492969
2015-02-16 22:13:00 +07:00
..
core Cleanup of PHPDoc return types 2015-01-16 20:30:43 +07:00
db Use statements wrapper in \OCP\IDB 2014-10-22 12:29:53 +07:00
dependencyinjection Use proper namespace 2015-01-27 17:34:25 +07:00
http Refactor OC_Request into TrustedDomainHelper and IRequest 2015-02-16 22:13:00 +07:00
middleware Move CSRF check 2014-11-17 15:10:53 +07:00
routing add postfix 2014-11-19 12:01:42 +07:00
utility Intelligent container 2014-12-23 09:50:42 +07:00
app.php always set url parameters when they are available in the app dispatch 2015-01-15 15:22:52 +07:00
http.php