Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dolibarr
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software_Artifact_Infrastructure_Repository
dolibarr
Commits
583d7ef2
Commit
583d7ef2
authored
18 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
New: Ajout script synchro groupes de dolibarr vers LDAP
parent
8f1495d9
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
scripts/user/sync_group_dolibarr2ldap.php
+106
-0
106 additions, 0 deletions
scripts/user/sync_group_dolibarr2ldap.php
scripts/user/sync_user_dolibarr2ldap.php
+1
-1
1 addition, 1 deletion
scripts/user/sync_user_dolibarr2ldap.php
with
107 additions
and
1 deletion
scripts/user/sync_group_dolibarr2ldap.php
0 → 100644
+
106
−
0
View file @
583d7ef2
<?PHP
/* Copyright (C) 2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2006 Laurent Destailleur <eldy@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* $Id$
* $Source$
*/
/**
\file scripts/user/sync_group_dolibarr2ldap.php
\ingroup ldap company
\brief Script de mise a jour des groupes dans LDAP depuis base Dolibarr
*/
// Test si mode batch
$sapi_type
=
php_sapi_name
();
$script_file
=
__FILE__
;
if
(
eregi
(
'([^\\\/]+)$'
,
$script_file
,
$reg
))
$script_file
=
$reg
[
1
];
if
(
substr
(
$sapi_type
,
0
,
3
)
==
'cgi'
)
{
echo
"Erreur: Vous utilisez l'interpreteur PHP pour le mode CGI. Pour executer
$script_file
en ligne de commande, vous devez utiliser l'interpreteur PHP pour le mode CLI.
\n
"
;
exit
;
}
if
(
!
isset
(
$argv
[
1
])
||
!
$argv
[
1
])
{
print
"Usage:
$script_file
now
\n
"
;
exit
;
}
$now
=
$argv
[
1
];
// Recupere env dolibarr
$version
=
'$Revision$'
;
$path
=
eregi_replace
(
$script_file
,
''
,
$_SERVER
[
"PHP_SELF"
]);
require_once
(
$path
.
"../../htdocs/master.inc.php"
);
require_once
(
DOL_DOCUMENT_ROOT
.
"/lib/authldap.lib.php"
);
require_once
(
DOL_DOCUMENT_ROOT
.
"/usergroup.class.php"
);
$error
=
0
;
print
"*****
$script_file
(
$version
) *****
\n
"
;
/*
if (! $conf->global->LDAP_SYNCHRO_ACTIVE)
{
print $langs->trans("LDAPSynchronizationNotSetupInDolibarr");
exit 1;
}
*/
$sql
=
"SELECT rowid"
;
$sql
.
=
" FROM "
.
MAIN_DB_PREFIX
.
"usergroup"
;
$resql
=
$db
->
query
(
$sql
);
if
(
$resql
)
{
$num
=
$db
->
num_rows
(
$resql
);
$i
=
0
;
while
(
$i
<
$num
)
{
$obj
=
$db
->
fetch_object
(
$resql
);
$fgroup
=
new
UserGroup
(
$db
);
$fgroup
->
id
=
$obj
->
rowid
;
$fgroup
->
fetch
(
$fgroup
->
id
);
print
$langs
->
trans
(
"UpdateGroup"
)
.
" rowid="
.
$fgroup
->
id
.
" "
.
$fgroup
->
nom
;
$result
=
$fgroup
->
update_ldap
(
$user
);
if
(
$result
>
0
)
{
print
" - "
.
$langs
->
trans
(
"OK"
);
}
else
{
$error
++
;
print
" - "
.
$langs
->
trans
(
"KO"
)
.
' - '
.
$fgroup
->
error
;
}
print
"
\n
"
;
$i
++
;
}
}
else
{
dolibarr_print_error
(
$db
);
}
return
$error
;
?>
This diff is collapsed.
Click to expand it.
scripts/user/sync_user_dolibarr2ldap.php
+
1
−
1
View file @
583d7ef2
...
...
@@ -47,7 +47,7 @@ $version='$Revision$';
$path
=
eregi_replace
(
$script_file
,
''
,
$_SERVER
[
"PHP_SELF"
]);
require_once
(
$path
.
"../../htdocs/master.inc.php"
);
require_once
(
DOL_DOCUMENT_ROOT
.
"/
contact.class
.php"
);
require_once
(
DOL_DOCUMENT_ROOT
.
"/
lib/authldap.lib
.php"
);
require_once
(
DOL_DOCUMENT_ROOT
.
"/user.class.php"
);
$error
=
0
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment