-
Notifications
You must be signed in to change notification settings - Fork 78
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
Add management commands #194
Open
skatsaounis
wants to merge
14
commits into
furlongm:master
Choose a base branch
from
skatsaounis:add-management-commands
base: master
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
14 commits
Select commit
Hold shift + click to select a range
4c053b1
migrate to django.urls.path instead of django.conf.urls.url
furlongm 167e883
python 3 / django 2.2 support
furlongm 020a42e
switch to dnf from yum
furlongm cb5f613
switch from rabbit to redis for celery
furlongm b4f67a4
add celery context for task
furlongm 73aabd0
consistent argument ordering
furlongm d8a802d
update installation instructions
furlongm afc3501
prefer 127.0.0.1 over localhost
furlongm 931c9db
update whitenoise config
furlongm a33502e
Add management commands
skatsaounis 13da103
Add set_site command
skatsaounis 0fffaee
Fix tox
skatsaounis 5bff794
Fix option
skatsaounis 0b64729
Merge branch 'master' of github.com:furlongm/patchman into add-manage…
skatsaounis 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 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,7 @@ | ||
from __future__ import unicode_literals | ||
|
||
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 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) | ||
|
||
if password: | ||
user = self.UserModel._default_manager.db_manager( | ||
database).get(username=username) | ||
user.set_password(password) | ||
user.save() |
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,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 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 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 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
Oops, something went wrong.
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.
Check failure
Code scanning / CodeQL
Clear-text storage of sensitive information High