summaryrefslogtreecommitdiffstats
path: root/lib/private/legacy
Commit message (Collapse)AuthorAgeFilesLines
* Group fixup (#24621)Roeland Douma2016-05-173-424/+8
| | | | | | | | * Move used OC_Group_xx to \OC\Group * Add (deprecated) legacy wrapper in legacy, OC_Group_xx * Replace deprecated use of OC_Group_xx with \OC\Group\xx
* Move functions.php to legacyRoeland Jago Douma2016-05-132-1/+266
| | | | This file should really be properly namespaced etc!
* lib/private/ocs to PSR-4 (#24558)Roeland Douma2016-05-125-0/+135
| | | | | | | | | | | | | * Move OC_OCS_XX to legacy * Move \OC\OCS to PSR-4 * OC_OCS_xx to \OC\OCS\xx * Moved OC_OCS_xx to proper namespace * OC_OCS_xx is still there for legacy reasons as a wrapper * No calls to OC_OCS_xx in \OC\OCS\
* Merge pull request #24531 from owncloud/psr4-loading-for-install-and-commandsThomas Müller2016-05-111-1/+2
|\ | | | | Correctly register PSR-4 autoloading before install.php and loading commands
| * Correctly register autoloading before install.php and loading commandsJoas Schilling2016-05-111-1/+2
| |
* | fix PHPDoc and other minor issuesChristoph Wurst2016-05-111-1/+1
| |
* | pass in $request on OCS apiChristoph Wurst2016-05-111-1/+2
| |
* | fix setupChristoph Wurst2016-05-111-32/+0
| |
* | Add token auth for OCS APIsChristoph Wurst2016-05-111-27/+16
| |
* | Check if session token is valid and log user out if the check failsChristoph Wurst2016-05-111-1/+1
| | | | | | | | | | * Update last_activity timestamp of the session token * Check user backend credentials once in 5 minutes
* | token based authChristoph Wurst2016-05-112-24/+4
|/ | | | | | | | * Add InvalidTokenException * add DefaultTokenMapper and use it to check if a auth token exists * create new token for the browser session if none exists hash stored token; save user agent * encrypt login password when creating the token
* Merge pull request #24433 from owncloud/user_psr4Thomas Müller2016-05-113-1/+96
|\ | | | | lib/private/user to PSR-4
| * Add \OC\User\BackendRoeland Jago Douma2016-05-101-132/+1
| | | | | | | | | | Since some apps (ldap et al) still depend on OC_User_Backend this seemed like the cleanest approach.
| * Move OC_User_Database to \OC\User\DatabaseRoeland Jago Douma2016-05-102-348/+1
| |
| * Move OC_User_XX to legacy folderRoeland Jago Douma2016-05-103-0/+573
| |
* | Merge pull request #24379 from owncloud/remove-unneeded-codeLukas Reschke2016-05-101-31/+0
|\ \ | |/ |/| Remove unneeded private wrapper methods
| * Remove unneeded private wrapper methodsMorris Jobke2016-05-021-31/+0
| |
* | Merge pull request #24410 from owncloud/fix_24182Björn Schießle2016-05-041-2/+5
|\ \ | | | | | | first call the post_login hooks, before we call getUserFolder.
| * | first call the post_login hooks, before we call getUserFolder.Björn Schießle2016-05-031-2/+5
| | | | | | | | | | | | | | | | | | | | | The login process needs to be completed before we can safely create the users home folder. For example we need to give encryption a chance to initialize the users encryption keys in order to copy the skeleton files correctly
* | | Merge pull request #23844 from owncloud/disable-userThomas Müller2016-05-032-9/+11
|\ \ \ | | | | | | | | Add occ commands to enable and disable a user + a disabled user can n…
| * | | OCS API should catch LoginExceptionsRoeland Jago Douma2016-05-021-1/+5
| | | | | | | | | | | | | | | | | | | | Catching the login exception and returning false (login failed). Makes the OCS API properly return data instead of printing the exception page.
| * | | Add occ commands to enable and disable a user + a disabled user can no ↵Thomas Müller2016-05-021-8/+6
| | |/ | |/| | | | | | | longer login - fixes #23838
* | | Merge pull request #24389 from owncloud/login-by-emailLukas Reschke2016-05-031-3/+11
|\ \ \ | | | | | | | | Allow login by email address
| * | | Allow login by email addressThomas Müller2016-05-021-3/+11
| |/ /
* | / Allow declaration of background jobs in info.xmlThomas Müller2016-05-031-0/+8
| |/ |/|
* | Merge pull request #24375 from owncloud/archive_moveLukas Reschke2016-05-031-158/+0
|\ \ | | | | | | Move OC_Archive to \OC\Archive and PSR-4
| * | Move OC_Archive to \OC\Archive\ArchiveRoeland Jago Douma2016-05-021-161/+0
| | | | | | | | | | | | | | | | | | * Move out of legacy folder * Move to proper namespace * Fix calling code
| * | Move OC_Archive_XX to PSR-4Roeland Jago Douma2016-05-021-3/+6
| | | | | | | | | | | | | | | * Fix code * Fix tests
* | | Merge pull request #24386 from owncloud/psr4-for-appsMorris Jobke2016-05-031-2/+21
|\ \ \ | |/ / |/| | PSR-4 for apps
| * | Use lib/ instead of src/ because that is what people are used toJoas Schilling2016-05-021-1/+1
| | |
| * | Register the PSR-4 path on loadAppJoas Schilling2016-05-021-2/+21
| |/
* | Move uninstall repair step execution to the correct placeThomas Müller2016-05-021-2/+12
| |
* | Fix installer file locationThomas Müller2016-05-021-625/+0
| |
* | OC_Installer -> \OC\InstallerThomas Müller2016-05-022-25/+30
| |
* | Adding repair steps for install and uninstall - fixes #24306Thomas Müller2016-05-022-35/+18
|/
* Move old classes to legacyRoeland Jago Douma2016-05-014-0/+650
|
* Move non PSR-4 files from lib/private root to legacyRoeland Jago Douma2016-04-3019-0/+9079
| | | | | | As discussed we move all old style classes (OC_FOO_BAR) to legacy. Then from there we can evaluate the need to convert them back or if they can be fully deprecated/deleted.
* Move OC_L10N_String to legacy folderRoeland Jago Douma2016-04-271-0/+78
|
* Move \OC\DB to PSR-4Roeland Jago Douma2016-04-151-0/+122
| | | | | Besides the statement wrapper that is moved to the legacy folder (namepsace of shame folder)
* Remove Scrutinizer Auto FixerLukas Reschke2016-03-011-1/+0
|
* Update author informationLukas Reschke2016-03-011-5/+0
| | | | Probably nice for the people that contributed to 9.0 to see themselves in the AUTHORS file :)
* Move class to legacy folderJoas Schilling2016-01-261-0/+348
|
* Get rid of legacy OC_ConfigRoeland Jago Douma2015-12-181-94/+0
| | | | | We were still using the lecagy class OC_Config all over the place. Which was a wrapper around the new class OC\Config
* Drop OC_SubAdmin and replace usagesLukas Reschke2015-10-291-166/+0
|
* Update license headersLukas Reschke2015-10-261-7/+1
|
* Legacy OC_SubAdmin is now just a wrapperRoeland Jago Douma2015-10-211-79/+57
|
* New \OC\SubAdmin classRoeland Jago Douma2015-10-211-0/+194
| | | | | | | * DI * Tests * moved OC_SubAdmin to legacy * Added to private OC\GroupManager
* Remove OC_AppconfigThomas Müller2015-07-031-131/+0
|
* Remove OC_LogThomas Müller2015-07-031-69/+0
|
* Remove legacy search classesThomas Müller2015-07-034-171/+0
|