-
-
Notifications
You must be signed in to change notification settings - Fork 87
add management commands #597
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
furlongm
wants to merge
6
commits into
main
Choose a base branch
from
add-management-commands
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
15e9be0
Add management commands
skatsaounis 726fa74
Add set_site command
skatsaounis 6d0b4b0
Fix option
skatsaounis 58d36e3
Update apps.py
furlongm 684516b
Merge branch 'main' into add-management-commands
furlongm e1dde1b
Merge branch 'main' into add-management-commands
furlongm File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 @@ | ||
from django.apps import AppConfig | ||
|
||
|
||
class PatchmanConfig(AppConfig): | ||
name = 'patchman' |
Empty file.
Empty file.
33 changes: 33 additions & 0 deletions
33
patchman/management/commands/createsuperuser_with_password.py
This file contains hidden or 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,33 @@ | ||||||
from django.contrib.auth.management.commands import createsuperuser | ||||||
from django.core.management import CommandError | ||||||
|
||||||
|
||||||
class Command(createsuperuser.Command): | ||||||
help = 'Crate a superuser, and allow password to be provided' | ||||||
|
||||||
def add_arguments(self, parser): | ||||||
super(Command, self).add_arguments(parser) | ||||||
parser.add_argument( | ||||||
'--password', dest='password', default=None, | ||||||
help='Specifies the password for the superuser.', | ||||||
) | ||||||
|
||||||
def handle(self, *args, **options): | ||||||
password = options.get('password') | ||||||
username = options.get('username') | ||||||
database = options.get('database') | ||||||
|
||||||
if options['interactive']: | ||||||
raise CommandError( | ||||||
'Command is required to run with --no-input option') | ||||||
if password and not username: | ||||||
raise CommandError( | ||||||
'--username is required if specifying --password') | ||||||
|
||||||
super(Command, self).handle(*args, **options) | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Again, These super arguments are unnecessary. |
||||||
|
||||||
if password: | ||||||
user = self.UserModel._default_manager.db_manager( | ||||||
database).get(username=username) | ||||||
user.set_password(password) | ||||||
user.save() |
This file contains hidden or 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,17 @@ | ||
from django.core.management.base import BaseCommand, CommandError | ||
from hosts.models import Host | ||
|
||
|
||
class Command(BaseCommand): | ||
help = 'Enable/Disable rDNS check for hosts' | ||
|
||
def add_arguments(self, parser): | ||
parser.add_argument( | ||
'--disable', action='store_false', default=True, dest='rdns_check', | ||
help='If set, disables rDNS check') | ||
|
||
def handle(self, *args, **options): | ||
try: | ||
Host.objects.all().update(check_dns=options['rdns_check']) | ||
except Exception as e: | ||
raise CommandError('Failed to update rDNS check', str(e)) |
This file contains hidden or 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,52 @@ | ||
import os | ||
import re | ||
import sys | ||
import codecs | ||
from random import choice | ||
from tempfile import NamedTemporaryFile | ||
from shutil import copy | ||
|
||
from django.core.management.base import BaseCommand | ||
|
||
|
||
class Command(BaseCommand): | ||
help = 'Set SECRET_KEY of Patchman Application.' | ||
|
||
def add_arguments(self, parser): | ||
parser.add_argument( | ||
'--key', help=( | ||
'The SECRET_KEY to be used by Patchman. If not set, a random ' | ||
'key of length 50 will be created.')) | ||
|
||
@staticmethod | ||
def get_random_key(): | ||
chars = 'abcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*(-_=+)' | ||
return ''.join([choice(chars) for i in range(50)]) | ||
|
||
def handle(self, *args, **options): | ||
secret_key = options.get('key', self.get_random_key()) | ||
|
||
if sys.prefix == '/usr': | ||
conf_path = '/etc/patchman' | ||
else: | ||
conf_path = os.path.join(sys.prefix, 'etc/patchman') | ||
# if conf_path doesn't exist, try ./etc/patchman | ||
if not os.path.isdir(conf_path): | ||
conf_path = './etc/patchman' | ||
local_settings = os.path.join(conf_path, 'local_settings.py') | ||
|
||
settings_contents = codecs.open( | ||
local_settings, 'r', encoding='utf-8').read() | ||
settings_contents = re.sub( | ||
r"(?<=SECRET_KEY = ')'", secret_key + "'", settings_contents) | ||
|
||
f = NamedTemporaryFile(delete=False) | ||
temp = f.name | ||
f.close() | ||
|
||
fh = codecs.open(temp, 'w+b', encoding='utf-8') | ||
fh.write(settings_contents) | ||
|
||
fh.close() | ||
|
||
copy(temp, local_settings) | ||
os.remove(temp) |
This file contains hidden or 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,23 @@ | ||
from django.core.management.base import BaseCommand, CommandError | ||
from django.contrib.sites.models import Site | ||
from django.conf import settings | ||
|
||
|
||
class Command(BaseCommand): | ||
help = 'Set Patchman Site Name' | ||
|
||
def add_arguments(self, parser): | ||
parser.add_argument( | ||
'-n', '--name', dest='site_name', help='Site name') | ||
parser.add_argument( | ||
'--clear-cache', action='store_true', default=False, | ||
dest='clear_cache', help='Clear Site cache') | ||
|
||
def handle(self, *args, **options): | ||
try: | ||
Site.objects.filter(pk=settings.SITE_ID).update( | ||
name=options['site_name'], domain=options['site_name']) | ||
if options['clear_cache']: | ||
Site.objects.clear_cache() | ||
except Exception as e: | ||
raise CommandError('Failed to update Site name', str(e)) |
This file contains hidden or 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 hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's unnecessary to use arguments when calling super for the parent class. Read more.