summaryrefslogtreecommitdiffstats
path: root/lib/private/server.php
Commit message (Collapse)AuthorAgeFilesLines
* Move creating the database connection to the server containerRobin Appelman2014-10-221-2/+19
|
* Remove \OC\DB\ConnectionWrapper, have \OC\DB\Connection implement ↵Robin Appelman2014-10-221-1/+1
| | | | \OCP\IDBConnection directly instead
* Rename to NullQueryLoggerRobin Appelman2014-10-201-4/+4
|
* Log some basic eventsRobin Appelman2014-10-201-0/+1
|
* Rename namespace to DiagnosticsRobin Appelman2014-10-201-7/+7
|
* Add QueryLogger interface to allow apps to get a list of used queriesRobin Appelman2014-10-201-0/+20
|
* Add an EventLogger interface to allow apps to get a log of the request timelineRobin Appelman2014-10-201-6/+26
|
* make skeleton compatible with objectstoreJörn Friedrich Dreyer2014-10-201-0/+15
| | | | suspend encryption proxy when copying skeleton
* Implement Tag and TagMapper classes.Bernhard Reiter2014-10-141-1/+6
| | | | | Subclassed from \OCP\AppFramework\Db\Entity and Mapper, respectively. This will allow us to also deal with shared tags.
* Do only follow HTTP and HTTPS redirectsLukas Reschke2014-09-221-0/+12
| | | | | | | | We do not want to follow redirects to other protocols since they might allow an adversary to bypass network restrictions. (i.e. a redirect to ftp:// might be used to access files of a FTP server which might be in a secure zone and not be reachable from the net but from the ownCloud server) Get final redirect manually using get_headers() Migrate to HTTPHelper class and add unit tests
* Merge pull request #10739 from owncloud/eventsource-publicLukas Reschke2014-09-081-0/+9
|\ | | | | Add EventSource to the public API
| * Better phpdoc and method namingRobin Appelman2014-09-041-2/+2
| |
| * Add event source to the public apiRobin Appelman2014-09-031-0/+9
| |
* | Merge pull request #10642 from owncloud/securityutilsLukas Reschke2014-09-031-0/+26
|\ \ | |/ |/| Add some security utilities
| * Merge branch 'master' into securityutilsLukas Reschke2014-08-311-19/+30
| |\ | | | | | | | | | | | | Conflicts: lib/private/util.php
| * | Use DILukas Reschke2014-08-271-1/+1
| | |
| * | Add some security utilitiesLukas Reschke2014-08-271-0/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds some security utilities to core including: - A library for basic crypto operations (e.g. to encrypt passwords) - A better library for cryptographic actions which allows you to specify the charset - A library for secure string comparisions Remove .htaccess Remove .htaccess Fix typo Add public API Use timing constant comparision Remove CBC constant Adjust code Remove confusing $this
* | | Merge pull request #10420 from owncloud/external-share-self-signedLukas Reschke2014-08-311-0/+18
|\ \ \ | |_|/ |/| | Make external shares work with imported self signed certificates
| * | Rename namespaceRobin Appelman2014-08-311-1/+1
| | |
| * | move certificate classes to their own namespaceRobin Appelman2014-08-311-0/+1
| | |
| * | Move certificate management code to coreRobin Appelman2014-08-311-0/+17
| | |
* | | Merge pull request #10768 from owncloud/l10n-use-publicLukas Reschke2014-08-311-2/+3
|\ \ \ | | | | | | | | Use public api for getting l10n
| * | | Use public api for getting l10nRobin Appelman2014-08-311-2/+3
| |/ /
* / / Add optional user ID parameter for getUseFolderMorris Jobke2014-08-311-5/+9
|/ /
* / kill OC::$sessionJörn Friedrich Dreyer2014-08-291-12/+18
|/ | | | | | | | | | | | maintain deprecated \OC::$session when getting or setting the session via the server container or UserSession restore order os OC::$session and OC::$CLI remove unneded initialization of dummy session write back session when $useCustomSession is true log warning when deprecated app is used
* Merge pull request #9904 from owncloud/loggedout-getuserfolderThomas Müller2014-07-281-1/+5
|\ | | | | Dont throw an error when calling $server->getUserFolder when logged out
| * Dont throw an error when calling $server->getUserFolder when logged outRobin Appelman2014-07-251-1/+5
| |
* | Merge pull request #9669 from owncloud/group-publicRobin Appelman2014-07-251-28/+48
|\ \ | |/ |/| Add group management to the public api
| * Add group management to the public apiRobin Appelman2014-07-161-28/+48
| |
* | Revert changeSander2014-07-221-2/+2
| |
* | Allow getAppFolder to get another apps pathSander2014-07-221-3/+2
|/ | | cc @Raydiation
* use UserSession service to resolve user idJörn Friedrich Dreyer2014-07-151-1/+1
|
* make search non-static, add ISearch to server container, make legacy a ↵Jörn Friedrich Dreyer2014-06-061-0/+10
| | | | static wrapper for it, move provider and result to public api
* use registerService method instead of array accessBernhard Posselt2014-05-141-1/+1
|
* Merge pull request #8482 from owncloud/public-loggerThomas Müller2014-05-121-5/+22
|\ | | | | Make logger available in the container
| * fix missing spacesMorris Jobke2014-05-121-1/+1
| |
| * - make logger available in the containerBernhard Posselt2014-05-091-5/+22
| | | | | | | | | | - inject logger class into log - adding PHPDoc comments and fixing typos
* | Merge pull request #8274 from owncloud/appframework-dbMorris Jobke2014-05-121-0/+13
|\ \ | |/ |/| Port database layer from appframework to core
| * move db into iservercontainerBernhard Posselt2014-04-191-0/+13
| |
* | fix getUserFolder() of server containerMorris Jobke2014-05-051-2/+10
|/
* Correctly process request parameters other than GET or POST, dont use ↵Bernhard Posselt2014-04-121-1/+8
| | | | globals in the class but inject it
* Merge branch 'master' into type-hintingBart Visscher2014-03-311-1/+22
|\ | | | | | | | | | | | | | | | | Conflicts: lib/private/image.php lib/private/l10n.php lib/private/request.php lib/private/share/mailnotifications.php lib/private/template/base.php
| * Load the routes when matching or generating a route instead of when creating ↵Robin Appelman2014-03-241-5/+11
| | | | | | | | the router
| * Move the router classes to a namespace and expose it with a public interfaceRobin Appelman2014-03-101-0/+15
| |
* | More PHPDoc updatesBart Visscher2014-02-281-1/+1
|/
* Merge pull request #7156 from owncloud/backgroundjob-publicThomas Müller2014-02-141-0/+16
|\ | | | | Add the background job list to the public server container
| * Add the background job list to the public server containerRobin Appelman2014-02-111-0/+16
| |
* | use the 'new' server container for appconfigRobin Appelman2014-02-071-11/+107
|\|
| * Merge branch 'master' into memcache-publicRobin Appelman2014-01-091-2/+4
| |\
| | * Fix ownCloud for php5.3.xThomas Müller2014-01-081-1/+2
| | |