summaryrefslogtreecommitdiffstats
path: root/apps/user_ldap/lib/user/user.php
Commit message (Collapse)AuthorAgeFilesLines
* Move lib\user to PSR-4Joas Schilling2016-05-251-532/+0
|
* Fix LDAP race conditionsMorris Jobke2016-04-201-2/+3
| | | | | | | | * getFromCache is wrapped in isCached * inbetween the two calls the cache entry hits it's TTL * getFromCache returns null * this fix only checkes if the returned value is null and return only non-null values
* Handle case where the user is not known - fixes #23759Thomas Müller2016-04-041-5/+7
|
* Avatar must be saved after login is done and external storages set up ↵Arthur Schiwon2016-03-161-1/+16
| | | | properly, fixes #21555
* Update author informationLukas Reschke2016-03-011-0/+1
| | | | Probably nice for the people that contributed to 9.0 to see themselves in the AUTHORS file :)
* Consolidate getQuota and setQuota methods in User instanceArthur Schiwon2016-02-091-1/+1
|
* Port of test_ldap_2nddispname to masterArthur Schiwon2016-02-031-6/+24
|
* Use IUser::setEMailAddress in ldap as wellThomas Müller2016-01-201-12/+17
|
* Introduce IUser::setEMailAddress and add hook mechanismThomas Müller2016-01-201-0/+3
|
* Happy new year!Thomas Müller2016-01-121-1/+1
|
* Make LDAP more robust to exceptions and log them properlyMorris Jobke2016-01-061-1/+1
|
* fix update quota with known valueArthur Schiwon2015-10-271-3/+3
|
* Update license headersLukas Reschke2015-10-261-0/+1
|
* Fix doc blocks of LDAP classesJoas Schilling2015-10-151-8/+8
|
* adjust handling changed return array structure from search() and fetchList()Arthur Schiwon2015-10-081-7/+10
|
* do not throw exception when no attribute is specifiedArthur Schiwon2015-09-231-1/+4
|
* read all relevant user attributes on login and user search, in one query. ↵Arthur Schiwon2015-09-231-27/+153
| | | | saves us some.
* fix uncaught exception on not permitted file types when setting avatar, ↵Arthur Schiwon2015-07-271-1/+7
| | | | fixes #17232
* Update license headersJenkins for ownCloud2015-03-261-13/+12
|
* Revert "Updating license headers"Morris Jobke2015-02-261-11/+14
| | | | This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36.
* Updating license headersJenkins for ownCloud2015-02-231-14/+11
|
* inject oc config to User_LDAPArthur Schiwon2015-01-061-1/+1
|
* LDAP User Cleanup: Port from stable7 without further adjustementsArthur Schiwon2014-12-191-0/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | LDAP User Cleanup background job for user clean up adjust user backend for clean up register background job remove dead code dependency injection make Helper non-static for proper testing check whether it is OK to run clean up job. Do not forget to pass arguments. use correct method to get the config from server methods can be private, proper indirect testing is given no automatic user deletion make limit readable for test purposes make method less complex add first tests let preferences accept limit and offset for getUsersForValue DI via constructor does not work for background jobs after detecting, now we have retrieving deleted users and their details we need this method to be public for now finalize export method, add missing getter clean up namespaces and get rid of unnecessary files helper is not static anymore cleanup according to scrutinizer add cli tool to show deleted users uses are necessary after recent namespace change also remove user from mappings table on deletion add occ command to delete users fix use statement improve output big fixes / improvements PHP doc return true in userExists early for cleaning up deleted users bump version control state and interval with one config.php setting, now ldapUserCleanupInterval. 0 will disable it. enabled by default. improve doc rename cli method to be consistent with others introduce ldapUserCleanupInterval in sample config don't show last login as unix epoche start when no login happend less log output consistent namespace for OfflineUser rename GarbageCollector to DeletedUsersIndex and move it to user subdir fix unit tests add tests for deleteUser more test adjustements Conflicts: apps/user_ldap/ajax/clearMappings.php apps/user_ldap/appinfo/app.php apps/user_ldap/lib/access.php apps/user_ldap/lib/helper.php apps/user_ldap/tests/helper.php core/register_command.php lib/private/preferences.php lib/private/user.php add ldap:check-user to check user existance on the fly Conflicts: apps/user_ldap/lib/helper.php forgotten file PHPdoc fixes, no code change and don't forget to adjust tests
* class descriptionsArthur Schiwon2014-06-031-0/+5
|
* port of PR #8038Arthur Schiwon2014-06-031-2/+1
|
* LDAP: put out fetching of user meta data into a fully tested class of its ↵Arthur Schiwon2014-06-031-0/+320
own and update them (mail, quota, etc.) directly after mapping. Fixes #7785 properly on master