mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-21 05:45:13 +00:00
28 lines
1 KiB
Python
28 lines
1 KiB
Python
![]() |
from django.core.management.base import BaseCommand
|
||
|
from django.contrib.auth.models import User
|
||
|
from optparse import make_option
|
||
|
|
||
|
class Command(BaseCommand):
|
||
|
option_list = BaseCommand.option_list + (
|
||
|
make_option("-u", "--username", dest="username", nargs=1, help="Specify user id or username"),
|
||
|
make_option("-e", "--email", dest="email", nargs=1, help="Specify email if it doesn't exist"),
|
||
|
)
|
||
|
|
||
|
def handle(self, *args, **options):
|
||
|
username = options['username']
|
||
|
user = None
|
||
|
try:
|
||
|
user = User.objects.get(username__icontains=username)
|
||
|
except User.MultipleObjectsFound:
|
||
|
user = User.objects.get(username__iexact=username)
|
||
|
except User.DoesNotExist:
|
||
|
user = User.objects.get(email__icontains=username)
|
||
|
except User.DoesNotExist:
|
||
|
print " ---> No user/email found at: %s" % username
|
||
|
|
||
|
if user:
|
||
|
email = options.get("email") or user.email
|
||
|
user.profile.send_forgot_password_email(email)
|
||
|
|
||
|
|
||
|
|