2015-09-10 03:56:27 +03:00
|
|
|
"""
|
2015-09-15 04:55:41 +03:00
|
|
|
Does the following:
|
|
|
|
|
|
|
|
1. Generates and saves random secret key
|
|
|
|
2. Removes the taskapp if celery isn't going to be used
|
2016-03-23 20:51:25 +03:00
|
|
|
3. Removes the .idea directory if PyCharm isn't going to be used
|
2016-04-20 20:00:35 +03:00
|
|
|
4. Copy files from /docs/ to {{ cookiecutter.project_slug }}/docs/
|
2015-09-18 20:55:06 +03:00
|
|
|
|
|
|
|
TODO: this might have to be moved to a pre_gen_hook
|
2015-09-15 04:55:41 +03:00
|
|
|
|
|
|
|
A portion of this code was adopted from Django's standard crypto functions and
|
2015-09-10 03:56:27 +03:00
|
|
|
utilities, specifically:
|
|
|
|
https://github.com/django/django/blob/master/django/utils/crypto.py
|
|
|
|
"""
|
2016-04-08 10:45:09 +03:00
|
|
|
from __future__ import print_function
|
2015-09-10 03:56:27 +03:00
|
|
|
import os
|
|
|
|
import random
|
|
|
|
import shutil
|
|
|
|
|
2015-09-15 04:55:41 +03:00
|
|
|
# Get the root project directory
|
|
|
|
PROJECT_DIRECTORY = os.path.realpath(os.path.curdir)
|
|
|
|
|
2015-09-10 03:56:27 +03:00
|
|
|
# Use the system PRNG if possible
|
|
|
|
try:
|
|
|
|
random = random.SystemRandom()
|
|
|
|
using_sysrandom = True
|
|
|
|
except NotImplementedError:
|
|
|
|
using_sysrandom = False
|
|
|
|
|
2016-04-08 10:45:09 +03:00
|
|
|
|
2015-09-10 03:56:27 +03:00
|
|
|
def get_random_string(
|
|
|
|
length=50,
|
2016-01-18 14:14:34 +03:00
|
|
|
allowed_chars='abcdefghijklmnopqrstuvwxyz0123456789!@#%^&*(-_=+)'):
|
2015-09-10 03:56:27 +03:00
|
|
|
"""
|
|
|
|
Returns a securely generated random string.
|
|
|
|
The default length of 12 with the a-z, A-Z, 0-9 character set returns
|
|
|
|
a 71-bit value. log_2((26+26+10)^12) =~ 71 bits
|
|
|
|
"""
|
2016-04-08 10:45:09 +03:00
|
|
|
if using_sysrandom:
|
|
|
|
return ''.join(random.choice(allowed_chars) for i in range(length))
|
|
|
|
print(
|
2016-05-10 07:12:34 +03:00
|
|
|
"Cookiecutter Django couldn't find a secure pseudo-random number generator on your system."
|
2016-04-08 10:45:09 +03:00
|
|
|
" Please change change your SECRET_KEY variables in conf/settings/local.py and env.example"
|
|
|
|
" manually."
|
|
|
|
)
|
|
|
|
return "CHANGEME!!"
|
|
|
|
|
2015-09-10 03:56:27 +03:00
|
|
|
|
2015-10-15 19:29:43 +03:00
|
|
|
def set_secret_key(setting_file_location):
|
|
|
|
# Open locals.py
|
|
|
|
with open(setting_file_location) as f:
|
|
|
|
file_ = f.read()
|
|
|
|
|
|
|
|
# Generate a SECRET_KEY that matches the Django standard
|
|
|
|
SECRET_KEY = get_random_string()
|
|
|
|
|
|
|
|
# Replace "CHANGEME!!!" with SECRET_KEY
|
2015-11-08 06:47:31 +03:00
|
|
|
file_ = file_.replace('CHANGEME!!!', SECRET_KEY, 1)
|
2015-10-15 19:29:43 +03:00
|
|
|
|
|
|
|
# Write the results to the locals.py module
|
|
|
|
with open(setting_file_location, 'w') as f:
|
|
|
|
f.write(file_)
|
|
|
|
|
|
|
|
|
2015-09-15 04:55:41 +03:00
|
|
|
def make_secret_key(project_directory):
|
|
|
|
"""Generates and saves random secret key"""
|
|
|
|
# Determine the local_setting_file_location
|
2015-10-15 19:29:43 +03:00
|
|
|
local_setting = os.path.join(
|
2015-09-15 04:55:41 +03:00
|
|
|
project_directory,
|
|
|
|
'config/settings/local.py'
|
|
|
|
)
|
|
|
|
|
2015-10-15 19:29:43 +03:00
|
|
|
# local.py settings file
|
|
|
|
set_secret_key(local_setting)
|
2015-09-15 04:55:41 +03:00
|
|
|
|
2015-10-15 19:29:43 +03:00
|
|
|
env_file = os.path.join(
|
|
|
|
project_directory,
|
|
|
|
'env.example'
|
|
|
|
)
|
|
|
|
|
|
|
|
# env.example file
|
|
|
|
set_secret_key(env_file)
|
2015-09-10 03:56:27 +03:00
|
|
|
|
|
|
|
|
2015-09-15 04:55:41 +03:00
|
|
|
def remove_task_app(project_directory):
|
|
|
|
"""Removes the taskapp if celery isn't going to be used"""
|
|
|
|
# Determine the local_setting_file_location
|
|
|
|
task_app_location = os.path.join(
|
|
|
|
PROJECT_DIRECTORY,
|
2016-04-20 20:00:35 +03:00
|
|
|
'{{ cookiecutter.project_slug }}/taskapp'
|
2015-09-15 04:55:41 +03:00
|
|
|
)
|
|
|
|
shutil.rmtree(task_app_location)
|
2015-09-10 03:56:27 +03:00
|
|
|
|
2016-03-23 20:51:25 +03:00
|
|
|
|
|
|
|
def remove_pycharm_dir(project_directory):
|
2016-03-28 02:43:37 +03:00
|
|
|
"""
|
|
|
|
Removes directories related to PyCharm
|
|
|
|
if it isn't going to be used
|
|
|
|
"""
|
2016-03-23 20:51:25 +03:00
|
|
|
idea_dir_location = os.path.join(PROJECT_DIRECTORY, '.idea/')
|
2016-04-26 01:05:59 +03:00
|
|
|
if os.path.exists(idea_dir_location):
|
|
|
|
shutil.rmtree(idea_dir_location)
|
2016-03-23 20:51:25 +03:00
|
|
|
|
2016-03-28 02:43:37 +03:00
|
|
|
docs_dir_location = os.path.join(PROJECT_DIRECTORY, 'docs/pycharm/')
|
2016-04-26 01:05:59 +03:00
|
|
|
if os.path.exists(docs_dir_location):
|
|
|
|
shutil.rmtree(docs_dir_location)
|
2016-03-23 20:51:25 +03:00
|
|
|
|
2016-04-08 10:45:09 +03:00
|
|
|
|
|
|
|
def remove_heroku_files():
|
|
|
|
"""
|
|
|
|
Removes files needed for heroku if it isn't going to be used
|
|
|
|
"""
|
|
|
|
for filename in ["app.json", "Procfile", "requirements.txt", "runtime.txt"]:
|
|
|
|
os.remove(os.path.join(
|
|
|
|
PROJECT_DIRECTORY, filename
|
|
|
|
))
|
|
|
|
|
|
|
|
|
|
|
|
def remove_docker_files():
|
|
|
|
"""
|
|
|
|
Removes files needed for docker if it isn't going to be used
|
|
|
|
"""
|
|
|
|
for filename in ["dev.yml", "docker-compose.yml", ".dockerignore"]:
|
|
|
|
os.remove(os.path.join(
|
|
|
|
PROJECT_DIRECTORY, filename
|
|
|
|
))
|
|
|
|
|
|
|
|
shutil.rmtree(os.path.join(
|
|
|
|
PROJECT_DIRECTORY, "compose"
|
|
|
|
))
|
|
|
|
|
|
|
|
|
|
|
|
def remove_grunt_files():
|
|
|
|
"""
|
|
|
|
Removes files needed for grunt if it isn't going to be used
|
|
|
|
"""
|
2016-06-04 03:31:36 +03:00
|
|
|
for filename in ["Gruntfile.js"]:
|
|
|
|
os.remove(os.path.join(
|
|
|
|
PROJECT_DIRECTORY, filename
|
|
|
|
))
|
|
|
|
|
|
|
|
def remove_gulp_files():
|
|
|
|
"""
|
|
|
|
Removes files needed for grunt if it isn't going to be used
|
|
|
|
"""
|
|
|
|
for filename in ["gulpfile.js"]:
|
|
|
|
os.remove(os.path.join(
|
|
|
|
PROJECT_DIRECTORY, filename
|
|
|
|
))
|
|
|
|
|
|
|
|
def remove_packageJSON_file():
|
|
|
|
"""
|
|
|
|
Removes files needed for grunt if it isn't going to be used
|
|
|
|
"""
|
|
|
|
for filename in ["package.json"]:
|
2016-04-08 10:45:09 +03:00
|
|
|
os.remove(os.path.join(
|
|
|
|
PROJECT_DIRECTORY, filename
|
|
|
|
))
|
|
|
|
|
2016-06-03 18:07:39 +03:00
|
|
|
def remove_certbot_files():
|
|
|
|
"""
|
|
|
|
Removes files needed for certbot if it isn't going to be used
|
|
|
|
"""
|
|
|
|
nginx_dir_location = os.path.join(PROJECT_DIRECTORY, 'compose/nginx')
|
|
|
|
for filename in ["nginx-secure.conf", "start.sh", "dhparams.example.pem"]:
|
|
|
|
os.remove(os.path.join(
|
|
|
|
nginx_dir_location, filename
|
|
|
|
))
|
|
|
|
|
2015-09-18 20:55:06 +03:00
|
|
|
# IN PROGRESS
|
|
|
|
# def copy_doc_files(project_directory):
|
|
|
|
# cookiecutters_dir = DEFAULT_CONFIG['cookiecutters_dir']
|
|
|
|
# cookiecutter_django_dir = os.path.join(
|
|
|
|
# cookiecutters_dir,
|
|
|
|
# 'cookiecutter-django',
|
|
|
|
# 'docs'
|
|
|
|
# )
|
|
|
|
# target_dir = os.path.join(
|
|
|
|
# project_directory,
|
|
|
|
# 'docs'
|
|
|
|
# )
|
|
|
|
# for name in os.listdir(cookiecutter_django_dir):
|
|
|
|
# if name.endswith('.rst') and not name.startswith('index'):
|
|
|
|
# src = os.path.join(cookiecutter_django_dir, name)
|
|
|
|
# dst = os.path.join(target_dir, name)
|
|
|
|
# shutil.copyfile(src, dst)
|
|
|
|
|
2015-09-15 04:55:41 +03:00
|
|
|
# 1. Generates and saves random secret key
|
|
|
|
make_secret_key(PROJECT_DIRECTORY)
|
2015-09-10 03:56:27 +03:00
|
|
|
|
2015-09-15 04:55:41 +03:00
|
|
|
# 2. Removes the taskapp if celery isn't going to be used
|
|
|
|
if '{{ cookiecutter.use_celery }}'.lower() == 'n':
|
|
|
|
remove_task_app(PROJECT_DIRECTORY)
|
2015-09-18 20:55:06 +03:00
|
|
|
|
2016-03-23 20:51:25 +03:00
|
|
|
# 3. Removes the .idea directory if PyCharm isn't going to be used
|
|
|
|
if '{{ cookiecutter.use_pycharm }}'.lower() != 'y':
|
|
|
|
remove_pycharm_dir(PROJECT_DIRECTORY)
|
|
|
|
|
2016-04-08 10:45:09 +03:00
|
|
|
# 4. Removes all heroku files if it isn't going to be used
|
|
|
|
if '{{ cookiecutter.use_heroku }}'.lower() != 'y':
|
|
|
|
remove_heroku_files()
|
|
|
|
|
|
|
|
# 5. Removes all docker files if it isn't going to be used
|
|
|
|
if '{{ cookiecutter.use_docker }}'.lower() != 'y':
|
|
|
|
remove_docker_files()
|
|
|
|
|
2016-06-04 03:31:36 +03:00
|
|
|
# 6. Removes all JS task manager files if it isn't going to be used
|
|
|
|
if '{{ cookiecutter.js_task_runner}}'.lower() == 'gulp':
|
|
|
|
remove_grunt_files()
|
|
|
|
elif '{{ cookiecutter.js_task_runner}}'.lower() == 'grunt':
|
|
|
|
remove_gulp_files()
|
|
|
|
else:
|
|
|
|
remove_gulp_files()
|
2016-04-08 10:45:09 +03:00
|
|
|
remove_grunt_files()
|
2016-06-04 03:31:36 +03:00
|
|
|
remove_packageJSON_file()
|
2016-04-08 10:45:09 +03:00
|
|
|
|
2016-06-03 18:07:39 +03:00
|
|
|
# 7. Removes all certbot/letsencrypt files if it isn't going to be used
|
2016-06-05 23:17:19 +03:00
|
|
|
if '{{ cookiecutter.use_lets_encrypt }}'.lower() != 'y':
|
2016-06-03 18:07:39 +03:00
|
|
|
remove_certbot_files()
|
2016-04-08 10:45:09 +03:00
|
|
|
|
2016-06-04 20:21:44 +03:00
|
|
|
# 8. Display a warning if use_docker and use_grunt are selected. Grunt isn't
|
|
|
|
# supported by our docker config atm.
|
2016-06-04 03:31:36 +03:00
|
|
|
if '{{ cookiecutter.js_task_runner }}'.lower() in ['grunt', 'gulp'] and '{{ cookiecutter.use_docker }}'.lower() == 'y':
|
2016-04-08 10:45:09 +03:00
|
|
|
print(
|
2016-06-04 03:31:36 +03:00
|
|
|
"You selected to use docker and a JS task runner. This is NOT supported out of the box for now. You "
|
2016-04-08 10:45:09 +03:00
|
|
|
"can continue to use the project like you normally would, but you will need to add a "
|
2016-06-04 03:31:36 +03:00
|
|
|
"js task runner service to your docker configuration manually."
|
2016-04-08 10:45:09 +03:00
|
|
|
)
|
|
|
|
|
2016-06-05 23:17:19 +03:00
|
|
|
# 9. Removes the certbot/letsencrypt files and display a warning if use_lets_encrypt is selected and use_docker isn't.
|
|
|
|
if '{{ cookiecutter.use_lets_encrypt }}'.lower() == 'y' and '{{ cookiecutter.use_docker }}'.lower() != 'y':
|
2016-06-03 18:07:39 +03:00
|
|
|
remove_certbot_files()
|
|
|
|
print(
|
|
|
|
"You selected to use certbot(letsencrypt) and didn't select to use docker. This is NOT supported out of the box for now. You "
|
|
|
|
"can continue to use the project like you normally would, but you will no certbot files have been included"
|
|
|
|
)
|
|
|
|
|
|
|
|
# 10. Directs the user to the documentation if certbot and docker are selected.
|
2016-06-05 23:17:19 +03:00
|
|
|
if '{{ cookiecutter.use_lets_encrypt }}'.lower() == 'y' and '{{ cookiecutter.use_docker }}'.lower() == 'y':
|
2016-04-08 10:45:09 +03:00
|
|
|
print(
|
2016-06-03 18:07:39 +03:00
|
|
|
"You selected to use certbot(letsencrypt), please see the documentation for instructions on how to use this in production. "
|
|
|
|
"You must generate a dhparams.pem file before running docker-compose in a production environment."
|
2016-04-08 10:45:09 +03:00
|
|
|
)
|
|
|
|
|
2016-04-20 20:00:35 +03:00
|
|
|
# 4. Copy files from /docs/ to {{ cookiecutter.project_slug }}/docs/
|
2015-09-18 20:55:06 +03:00
|
|
|
# copy_doc_files(PROJECT_DIRECTORY)
|