]> source.dussan.org Git - nextcloud-server.git/commitdiff
final changes
authorroot <roger.szabo@web.de>
Wed, 27 Jul 2016 07:10:35 +0000 (15:10 +0800)
committerroot <roger.szabo@web.de>
Wed, 27 Jul 2016 07:10:35 +0000 (15:10 +0800)
apps/user_ldap/appinfo/update.php
apps/user_ldap/lib/IUserLDAP.php
apps/user_ldap/lib/LDAPProvider.php
apps/user_ldap/lib/LDAPProviderFactory.php
apps/user_ldap/tests/Jobs/CleanUpTest.php
lib/public/LDAP/IDeletionFlagSupport.php
lib/public/LDAP/ILDAPProvider.php
lib/public/LDAP/ILDAPProviderFactory.php

index f816a7ec9c6351b81a770ad0f2b37c6bca1bd96c..b1bbbaec142de7acfd3c85d567b95a50fa066e2f 100644 (file)
@@ -2,7 +2,6 @@
 /**
  * @author Roger Szabo <roger.szabo@web.de>
  *
- * @copyright Copyright (c) 2016, ownCloud, Inc.
  * @license AGPL-3.0
  *
  * This code is free software: you can redistribute it and/or modify
index c04e2ddffe7776de1f334ad30b54277c6e14d2e6..2151795b64798284825df0c30648773917d7cf8b 100644 (file)
@@ -2,7 +2,6 @@
 /**
  * @author Roger Szabo <roger.szabo@web.de>
  *
- * @copyright Copyright (c) 2016, ownCloud, Inc.
  * @license AGPL-3.0
  *
  * This code is free software: you can redistribute it and/or modify
@@ -42,7 +41,7 @@ interface IUserLDAP {
        /**
         * Return the username for the given LDAP DN, if available.
         * @param string $dn
-        * @return string|false with the name to use in ownCloud
+        * @return string|false with the username
         */
        public function dn2UserName($dn);
 }
index 8d6b56005964a93a1c95dc9d8ad53dc857d199d7..c4bb29452c2562d7083a8794eb3c5d9be4323ee9 100644 (file)
@@ -2,7 +2,6 @@
 /**
  * @author Roger Szabo <roger.szabo@web.de>
  *
- * @copyright Copyright (c) 2016, ownCloud, Inc.
  * @license AGPL-3.0
  *
  * This code is free software: you can redistribute it and/or modify
@@ -58,8 +57,8 @@ class LDAPProvider implements ILDAPProvider, IDeletionFlagSupport {
        }
        
        /**
-        * Translate an ownCloud user id to LDAP DN
-        * @param string $uid ownCloud user id
+        * Translate an user id to LDAP DN
+        * @param string $uid user id
         * @return string with the LDAP DN
         * @throws \Exception if translation was unsuccessful
         */
@@ -75,16 +74,16 @@ class LDAPProvider implements ILDAPProvider, IDeletionFlagSupport {
        }
        
        /**
-        * Translate a LDAP DN to an ownCloud user name. If there is no mapping between 
+        * Translate a LDAP DN to an internal user name. If there is no mapping between 
         * the DN and the user name, a new one will be created.
         * @param string $dn LDAP DN
-        * @return string with the ownCloud user name
+        * @return string with the internal user name
         * @throws \Exception if translation was unsuccessful
         */
        public function getUserName($dn) {
                $result = $this->backend->dn2UserName($dn);
                if(!$result){
-                       throw new \Exception('Translation to ownCloud user name unsuccessful');
+                       throw new \Exception('Translation to internal user name unsuccessful');
                }
                return $result;
        }
@@ -110,7 +109,7 @@ class LDAPProvider implements ILDAPProvider, IDeletionFlagSupport {
        /**
         * Return a new LDAP connection resource for the specified user. 
         * The connection must be closed manually.
-        * @param string $uid ownCloud user id
+        * @param string $uid user id
         * @return resource of the LDAP connection
         * @throws \Exception if user id was not found in LDAP
         */
@@ -123,7 +122,7 @@ class LDAPProvider implements ILDAPProvider, IDeletionFlagSupport {
        
        /**
         * Get the LDAP base for users.
-        * @param string $uid ownCloud user id
+        * @param string $uid user id
         * @return string the base for users
         * @throws \Exception if user id was not found in LDAP
         */
@@ -136,7 +135,7 @@ class LDAPProvider implements ILDAPProvider, IDeletionFlagSupport {
        
        /**
         * Get the LDAP base for groups.
-        * @param string $uid ownCloud user id
+        * @param string $uid user id
         * @return string the base for groups
         * @throws \Exception if user id was not found in LDAP
         */
@@ -149,7 +148,7 @@ class LDAPProvider implements ILDAPProvider, IDeletionFlagSupport {
        
        /**
         * Clear the cache if a cache is used, otherwise do nothing.
-        * @param string $uid ownCloud user id
+        * @param string $uid user id
         * @throws \Exception if user id was not found in LDAP
         */
        public function clearCache($uid) {
@@ -171,7 +170,7 @@ class LDAPProvider implements ILDAPProvider, IDeletionFlagSupport {
        
        /**
         * Flag record for deletion.
-        * @param string $uid ownCloud user id
+        * @param string $uid user id
         */
        public function flagRecord($uid) {
                $this->deletedUsersIndex->markUser($uid);
@@ -179,7 +178,7 @@ class LDAPProvider implements ILDAPProvider, IDeletionFlagSupport {
        
        /**
         * Unflag record for deletion.
-        * @param string $uid ownCloud user id
+        * @param string $uid user id
         */
        public function unflagRecord($uid) {
                //do nothing
index 6525d14d3fd8b04e9a292d2b54dd42355394062e..c956f9d957afe508cd6a701f15da5a74d4446678 100644 (file)
@@ -2,7 +2,6 @@
 /**
  * @author Roger Szabo <roger.szabo@web.de>
  *
- * @copyright Copyright (c) 2016, ownCloud, Inc.
  * @license AGPL-3.0
  *
  * This code is free software: you can redistribute it and/or modify
index 4785a227d26ee19bab58f84d924739fd0ba9f4e9..45e7998da0186675b422e6700714c58c812b1eb3 100644 (file)
@@ -37,7 +37,7 @@ class CleanUpTest extends \Test\TestCase {
                                ->getMock();
                $mocks['ocConfig']    = $this->getMock('\OCP\IConfig');
                $mocks['db']          = $this->getMock('\OCP\IDBConnection');
-               $mocks['helper']      = new \OCA\User_LDAP\Helper();
+               $mocks['helper']      = $this->getMock('\OCA\User_LDAP\Helper');
 
                return $mocks;
        }
index ca272d7aa795c0f2f354eff975781a8efa4490c0..60ec82f662da8af84a57ad86ff3217e23251b7c7 100644 (file)
@@ -2,7 +2,6 @@
 /**
  * @author Roger Szabo <roger.szabo@web.de>
  *
- * @copyright Copyright (c) 2016, ownCloud, Inc.
  * @license AGPL-3.0
  *
  * This code is free software: you can redistribute it and/or modify
@@ -30,14 +29,14 @@ namespace OCP\LDAP;
 interface IDeletionFlagSupport {
        /**
         * Flag record for deletion.
-        * @param string $uid ownCloud user id
+        * @param string $uid user id
         * @since 9.2.0
         */
        public function flagRecord($uid);
        
        /**
         * Unflag record for deletion.
-        * @param string $uid ownCloud user id
+        * @param string $uid user id
         * @since 9.2.0
         */
        public function unflagRecord($uid);
index 44f7d88c94637446bbe6882979f3ab667fe9290b..576032cfaafeb27404c0350227bd70947ad8b932 100644 (file)
@@ -2,7 +2,6 @@
 /**
  * @author Roger Szabo <roger.szabo@web.de>
  *
- * @copyright Copyright (c) 2016, ownCloud, Inc.
  * @license AGPL-3.0
  *
  * This code is free software: you can redistribute it and/or modify
@@ -29,17 +28,17 @@ namespace OCP\LDAP;
  */
 interface ILDAPProvider {
        /**
-        * Translate an ownCloud username to LDAP DN.
-        * @param string $uid ownCloud user id
+        * Translate a user id to LDAP DN.
+        * @param string $uid user id
         * @return string
         * @since 9.2.0
         */
        public function getUserDN($uid);
        
        /**
-        * Translate a LDAP DN to an ownCloud user name.
+        * Translate a LDAP DN to an internal user name.
         * @param string $dn LDAP DN
-        * @return string with the ownCloud user name
+        * @return string with the internal user name
         * @throws \Exception if translation was unsuccessful
         * @since 9.2.0
         */
@@ -63,7 +62,7 @@ interface ILDAPProvider {
        
        /**
         * Return a new LDAP connection resource for the specified user. 
-        * @param string $uid ownCloud user id
+        * @param string $uid user id
         * @return resource of the LDAP connection
         * @since 9.2.0
         */
@@ -71,7 +70,7 @@ interface ILDAPProvider {
        
        /**
         * Get the LDAP base for users.
-        * @param string $uid ownCloud user id
+        * @param string $uid user id
         * @return string the base for users
         * @throws \Exception if user id was not found in LDAP
         * @since 9.2.0
@@ -80,7 +79,7 @@ interface ILDAPProvider {
        
        /**
         * Get the LDAP base for groups.
-        * @param string $uid ownCloud user id
+        * @param string $uid user id
         * @return string the base for groups
         * @throws \Exception if user id was not found in LDAP
         * @since 9.2.0
@@ -97,7 +96,7 @@ interface ILDAPProvider {
        
        /**
         * Clear the cache if a cache is used, otherwise do nothing.
-        * @param string $uid ownCloud user id
+        * @param string $uid user id
         * @since 9.2.0
         */
        public function clearCache($uid);
index 3e1242e33db14933a474528f5437f6f2c679772f..6204f73b072314c29e2b96b7cb9bd3a59018eae2 100644 (file)
@@ -2,7 +2,6 @@
 /**
  * @author Roger Szabo <roger.szabo@web.de>
  *
- * @copyright Copyright (c) 2016, ownCloud, Inc.
  * @license AGPL-3.0
  *
  * This code is free software: you can redistribute it and/or modify