2017-06-19 23:40:39 +00:00
|
|
|
# Copyright © 2017 Gabriel Détraz
|
2019-09-29 14:02:28 +00:00
|
|
|
# Copyright © 2017 Lara Kermarec
|
2017-06-19 23:40:39 +00:00
|
|
|
# Copyright © 2017 Augustin Lemesle
|
2021-01-10 16:49:23 +00:00
|
|
|
# Copyright © 2020 Hugo Levy-Falk
|
2017-06-19 23:40:39 +00:00
|
|
|
#
|
|
|
|
# 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.,
|
|
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
#
|
|
|
|
from django.core.management.base import BaseCommand, CommandError
|
|
|
|
|
|
|
|
from users.models import User
|
2021-01-10 16:49:23 +00:00
|
|
|
from ldap_sync.models import synchronise_user
|
2017-06-19 23:40:39 +00:00
|
|
|
|
2018-04-14 01:25:05 +00:00
|
|
|
|
2017-06-19 23:40:39 +00:00
|
|
|
class Command(BaseCommand):
|
2019-11-16 14:11:57 +00:00
|
|
|
help = "Synchronise the LDAP from SQL. To be used in a cron."
|
2017-06-19 23:40:39 +00:00
|
|
|
|
|
|
|
def add_arguments(self, parser):
|
|
|
|
|
|
|
|
# Named (optional) arguments
|
|
|
|
parser.add_argument(
|
2019-11-04 16:55:03 +00:00
|
|
|
"--full",
|
|
|
|
action="store_true",
|
|
|
|
dest="full",
|
2017-06-19 23:40:39 +00:00
|
|
|
default=False,
|
2019-11-16 14:11:57 +00:00
|
|
|
help="Complete regeneration of the LDAP (including machines).",
|
2017-06-19 23:40:39 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
def handle(self, *args, **options):
|
2021-01-10 16:49:23 +00:00
|
|
|
for user in User.objects.all():
|
|
|
|
synchronise_user(sender=User, instance=user)
|