2020-04-17 14:48:27 +00:00
|
|
|
# Copyright © 2017-2020 Jean-Romain Garnier
|
2020-04-16 20:22:54 +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
|
|
|
|
from cotisations.models import Facture
|
|
|
|
from preferences.models import OptionalUser
|
|
|
|
from datetime import timedelta
|
|
|
|
|
|
|
|
from django.utils import timezone
|
|
|
|
|
|
|
|
|
|
|
|
class Command(BaseCommand):
|
2020-04-17 15:03:54 +00:00
|
|
|
help = "Disable users who haven't confirmed their email."
|
2020-04-16 20:22:54 +00:00
|
|
|
|
|
|
|
def handle(self, *args, **options):
|
|
|
|
"""First deleting invalid invoices, and then deleting the users"""
|
2020-04-17 15:03:54 +00:00
|
|
|
days = OptionalUser.get_cached_value("disable_emailnotyetconfirmed")
|
|
|
|
users_to_disable = (
|
2020-04-17 15:35:24 +00:00
|
|
|
User.objects.filter(email_state=User.EMAIL_STATE_PENDING)
|
2020-04-16 22:24:35 +00:00
|
|
|
.filter(email_change_date__lte=timezone.now() - timedelta(days=days))
|
2020-04-16 20:22:54 +00:00
|
|
|
.distinct()
|
|
|
|
)
|
2020-04-17 15:03:54 +00:00
|
|
|
print("Disabling " + str(users_to_disable.count()) + " users.")
|
2020-04-16 21:14:19 +00:00
|
|
|
|
2020-04-17 15:03:54 +00:00
|
|
|
for user in users_to_disable:
|
2020-04-17 15:35:24 +00:00
|
|
|
user.email_state = User.EMAIL_STATE_UNVERIFIED
|
2020-04-17 15:03:54 +00:00
|
|
|
user.notif_disable()
|
2020-04-17 13:14:32 +00:00
|
|
|
user.save()
|