Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [tx-robot] updated from transifex | Nextcloud bot | 2019-05-07 | 2 | -2/+2 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2019-05-01 | 2 | -0/+4 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2019-04-29 | 2 | -0/+6 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2019-04-18 | 2 | -0/+2 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2019-04-16 | 2 | -0/+2 |
| | |||||
* | Bump versions of server and the requirements of apps | Joas Schilling | 2019-04-11 | 1 | -2/+2 |
| | | | | Signed-off-by: Joas Schilling <coding@schilljs.com> | ||||
* | Pass old value to user triggerChange hook | Morris Jobke | 2019-04-11 | 1 | -1/+1 |
| | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de> | ||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2019-04-11 | 2 | -2/+4 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2019-04-06 | 2 | -2/+2 |
| | |||||
* | set the loglevel in context, save the condition | Arthur Schiwon | 2019-04-02 | 1 | -3/+1 |
| | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de> | ||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2019-03-26 | 10 | -26/+34 |
| | |||||
* | LDAP plugin: force createUser to return new user's DN | Vinicius Cubas Brand | 2019-03-21 | 1 | -1/+2 |
| | | | | | | | LDAP plugins must change the createUser method to return the DN, as we need this to update the cache. Signed-off-by: Vinicius Cubas Brand <viniciuscb@gmail.com> | ||||
* | Cache cleaning when subadmin adds user to group | Vinicius Cubas Brand | 2019-03-21 | 1 | -0/+2 |
| | | | | | | | | | | | This commit fix an error happening when the subadmin tries to create an user, adding him/her to the group s/he is subadmin of, using a LDAP User/Group plugin. This just forces the cache to be reset after an user is added to a group. Signed-off-by: Vinicius Cubas Brand <viniciuscb@gmail.com> | ||||
* | fix user creation using LDAP Plugin | Vinicius Cubas Brand | 2019-03-21 | 3 | -4/+12 |
| | | | | Signed-off-by: Vinicius Cubas Brand <viniciuscb@gmail.com> | ||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2019-03-21 | 108 | -310/+108 |
| | |||||
* | Fix showpassword loads | Roeland Jago Douma | 2019-03-18 | 1 | -3/+0 |
| | | | | | | | This is bundled by default. So trying to load it throws a warning in the logs. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl> | ||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2019-03-16 | 2 | -2/+2 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2019-03-14 | 10 | -4/+16 |
| | |||||
* | remove unused use statement | Arthur Schiwon | 2019-03-06 | 1 | -1/+0 |
| | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de> | ||||
* | fix nested group retrieval also for 2 other cases | Arthur Schiwon | 2019-03-05 | 3 | -84/+111 |
| | | | | | | and also consolidate logic in one method Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de> | ||||
* | Fixed unit test: groupsMatchFilter will not be called multiple times anymore. | Roland Tapken | 2019-03-05 | 1 | -1/+1 |
| | | | | Signed-off-by: Roland Tapken <roland@bitarbeiter.net> | ||||
* | Reduce queries to LDAP by caching nested groups | Roland Tapken | 2019-03-05 | 1 | -6/+18 |
| | | | | | | | Nested groups are now cached in a CappedMemoryCache object to reduce queries to the LDAP backend. Signed-off-by: Roland Tapken <roland@bitarbeiter.net> | ||||
* | user_ldap: really resolve nested groups | Roland Tapken | 2019-03-05 | 1 | -14/+19 |
| | | | | | | | | | | | The previous patch fixed the problem only for one level of indirection because groupsMatchFilter() had been applied on each recursive call (and thus there would be no second level if the first level fails the check). This new implementation replaces the recursive call with a stack that iterates all nested groups before filtering with groupsMatchFilter(). Signed-off-by: Roland Tapken <roland@bitarbeiter.net> | ||||
* | user_ldap: Filter groups after nexted groups | Roland Tapken | 2019-03-05 | 1 | -2/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently groupsMatchFilter is called before nested groups are resolved. This basicly breaks this feature since it is not possible to inherit membership in a group from another group. Minimal example: Group filter: (&(objectClass=group),(cn=nextcloud)) Nested groups: enabled cn=nextcloud,ou=Nextcloud,ou=groups,dn=company,dn=local objectClass: group cn=IT,ou=groups,dn=company,dn=local objectClass: group memberOf: cn=nextcloud,ou=Nextcloud,ou=groups,dn=company,dn=local cn=John Doe,ou=users,dn=company,dn=local objectClass: person memberOf: cn=IT,ou=groups,dn=company,dn=local Since 'cn=IT,ou=groups,dn=company,dn=local' doesn't match the group filter, John wouldn't be a member of group 'nextcloud'. This patch fixes this by filtering the groups after all nested groups have been collected. If nested groups is disabled the result will be the same as without this patch. Signed-off-by: Roland Tapken <roland@bitarbeiter.net> | ||||
* | Fix tests | Julius Härtl | 2019-03-01 | 1 | -4/+6 |
| | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net> | ||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2019-03-01 | 4 | -30/+32 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2019-02-28 | 2 | -0/+2 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2019-02-27 | 2 | -0/+2 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2019-02-26 | 12 | -0/+12 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2019-02-25 | 22 | -22/+0 |
| | |||||
* | Fixed grammar | rakekniven | 2019-02-22 | 1 | -1/+1 |
| | | | | | Reported at Transifex. Signed-off-by: Mark Ziegler <mark.ziegler@rakekniven.de> | ||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2019-02-21 | 2 | -0/+10 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2019-02-19 | 4 | -8/+16 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2019-02-18 | 6 | -0/+10 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2019-02-17 | 12 | -2/+24 |
| | |||||
* | add GUI option to set the $home placeholder | Arthur Schiwon | 2019-02-14 | 2 | -1/+15 |
| | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de> | ||||
* | add LDAP ConfigHandler for external storages and "$home" var | Arthur Schiwon | 2019-02-14 | 12 | -3/+230 |
| | | | | | | | | * handler registered upon OCA\\Files_External::loadAdditionalBackends event as user_ldap is loaded before files_external * new configuration field "ldapExtStorageHomeAttribute" (not in GUI yet) Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de> | ||||
* | ensure attribute names are lower cased | Arthur Schiwon | 2019-02-14 | 2 | -15/+19 |
| | | | | | | | otherwise they will be skipped when the results is being formatted and the lower-cased result keys do not match. Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de> | ||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2019-02-14 | 2 | -46/+46 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2019-02-08 | 2 | -4/+4 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2019-02-06 | 4 | -12/+12 |
| | |||||
* | Comment fix. | Filis Futsarov | 2019-01-30 | 1 | -1/+1 |
| | |||||
* | iterate over bases instead of doing parallel search | Arthur Schiwon | 2019-01-28 | 1 | -5/+28 |
| | | | | | | | parallel search is not compatible with paged search, but the letter is usually always applied. Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de> | ||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2019-01-26 | 2 | -4/+4 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2019-01-24 | 2 | -2/+2 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2019-01-23 | 2 | -0/+2 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2019-01-16 | 4 | -8/+8 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2019-01-15 | 2 | -98/+98 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2019-01-14 | 2 | -36/+36 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2019-01-13 | 2 | -2/+2 |
| |