-
-
Notifications
You must be signed in to change notification settings - Fork 267
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
127 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
""" Erase any data stored about deleted users """ | ||
import sys | ||
from django.core.management.base import BaseCommand, CommandError | ||
from bookwyrm import models | ||
from bookwyrm.models.user import erase_user_data | ||
|
||
# pylint: disable=missing-function-docstring | ||
class Command(BaseCommand): | ||
"""command-line options""" | ||
|
||
help = "Remove Two Factor Authorisation from user" | ||
|
||
def add_arguments(self, parser): # pylint: disable=no-self-use | ||
parser.add_argument( | ||
"--dryrun", | ||
action="store_true", | ||
help="Preview users to be cleared without altering the database", | ||
) | ||
|
||
def handle(self, *args, **options): # pylint: disable=unused-argument | ||
|
||
# Check for anything fishy | ||
bad_state = models.User.objects.filter(is_deleted=True, is_active=True) | ||
if bad_state.exists(): | ||
raise CommandError( | ||
f"{bad_state.count()} user(s) marked as both active and deleted" | ||
) | ||
|
||
deleted_users = models.User.objects.filter(is_deleted=True) | ||
self.stdout.write(f"Found {deleted_users.count()} deleted users") | ||
if options["dryrun"]: | ||
self.stdout.write("\n".join(u.username for u in deleted_users[:5])) | ||
if deleted_users.count() > 5: | ||
self.stdout.write("... and more") | ||
sys.exit() | ||
|
||
self.stdout.write("Erasing user data:") | ||
for user_id in deleted_users.values_list("id", flat=True): | ||
erase_user_data.delay(user_id) | ||
self.stdout.write(".", ending="") | ||
|
||
self.stdout.write("") | ||
self.stdout.write("Tasks created successfully") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{% extends 'snippets/filters_panel/filter_field.html' %} | ||
{% load i18n %} | ||
|
||
{% block filter %} | ||
<div class="control"> | ||
<label class="label" for="filter_query">{% trans 'Filter by keyword' %}</label> | ||
<input aria-label="Filter by keyword" id="my-books-filter" class="input" type="text" name="filter" placeholder="{% trans 'Enter text here' %}" value="{{ shelves_filter_query|default:'' }}" spellcheck="false" /> | ||
</div> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{% extends 'snippets/filters_panel/filters_panel.html' %} | ||
|
||
{% block filter_fields %} | ||
{% include 'shelf/shelves_filter_field.html' %} | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters