Skip to content

Commit 2b49fab

Browse files
committed
Added changes to templatize the quick start.
1 parent 797a15d commit 2b49fab

File tree

3 files changed

+119
-18
lines changed

3 files changed

+119
-18
lines changed

README.md

+26-16
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,31 @@
1+
12
Django on OpenShift
23
===================
34

4-
This git repository helps you get up and running quickly w/ a Django installation
5-
on OpenShift. The Django project name used in this repo is 'openshift'
6-
but you can feel free to change it. Right now the backend is sqlite3 and the
7-
database runtime is @ $OPENSHIFT_DATA_DIR/sqlite3.db.
5+
This git repository helps you get up and running quickly w/ a Django
6+
installation on OpenShift. The Django project name used in this repo
7+
is 'openshift' but you can feel free to change it. Right now the
8+
backend is sqlite3 and the database runtime is @
9+
$OPENSHIFT_DATA_DIR/sqlite3.db.
810

9-
When you push this application up for the first time, the sqlite database is
10-
copied from wsgi/openshift/sqlite3.db. This is the stock database that is created
11-
when 'python manage.py syncdb' is run with only the admin app installed.
11+
Before you push this app for the first time, you will need to change
12+
the Django admin password (see below). Then, when you first push this
13+
application to the cloud instance, the sqlite database is copied from
14+
wsgi/openshift/sqlite3.db with your newly changed login
15+
credentials. Other than the password change, this is the stock
16+
database that is created when 'python manage.py syncdb' is run with
17+
only the admin app installed.
1218

13-
You can delete the database from your git repo after the first push (you probably
14-
should for security). On subsequent pushes, a 'python manage.py syncdb' is
15-
executed to make sure that any models you added are created in the DB. If you
16-
do anything that requires an alter table, you could add the alter statements
17-
in GIT_ROOT/.openshift/action_hooks/alter.sql and then use
18-
GIT_ROOT/.openshift/action_hooks/deploy to execute that script (make sure to
19-
back up your database w/ 'rhc app snapshot save' first :) )
19+
On subsequent pushes, a 'python manage.py syncdb' is executed to make
20+
sure that any models you added are created in the DB. If you do
21+
anything that requires an alter table, you could add the alter
22+
statements in GIT_ROOT/.openshift/action_hooks/alter.sql and then use
23+
GIT_ROOT/.openshift/action_hooks/deploy to execute that script (make
24+
sure to back up your database w/ 'rhc app snapshot save' first :) )
2025

2126

2227
Running on OpenShift
23-
----------------------------
28+
--------------------
2429

2530
Create an account at http://openshift.redhat.com/
2631

@@ -37,12 +42,17 @@ Add this upstream repo
3742
cd django
3843
git remote add upstream -m master git://github.com/openshift/django-example.git
3944
git pull -s recursive -X theirs upstream master
45+
46+
Set your Django admin password
47+
48+
cd wsgi/openshift
49+
./manage.py changepassword admin
4050

4151
Then push the repo upstream
4252

53+
cd ../../
4354
git push
4455

4556
That's it, you can now checkout your application at (default admin account is admin/admin):
4657

4758
http://django-$yournamespace.rhcloud.com
48-

wsgi/openshift/openshiftlibs.py

+81
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
#!/usr/bin/env python
2+
import hashlib, inspect, os, random, sys
3+
4+
# Gets the secret token provided by OpenShift
5+
# or generates one (this is slightly less secure, but good enough for now)
6+
def get_openshift_secret_token():
7+
token = os.getenv('OPENSHIFT_SECRET_TOKEN')
8+
name = os.getenv('OPENSHIFT_APP_NAME')
9+
uuid = os.getenv('OPENSHIFT_APP_UUID')
10+
if token is not None:
11+
return token
12+
elif (name is not None and uuid is not None):
13+
return hashlib.sha256(name + '-' + uuid).hexdigest()
14+
return None
15+
16+
# Loop through all provided variables and generate secure versions
17+
# If not running on OpenShift, returns defaults and logs an error message
18+
#
19+
# This function calls secure_function and passes an array of:
20+
# {
21+
# 'hash': generated sha hash,
22+
# 'variable': name of variable,
23+
# 'original': original value
24+
# }
25+
def openshift_secure(default_keys, secure_function = 'make_secure_key'):
26+
# Attempts to get secret token
27+
my_token = get_openshift_secret_token()
28+
29+
# Only generate random values if on OpenShift
30+
my_list = default_keys
31+
32+
if my_token is not None:
33+
# Loop over each default_key and set the new value
34+
for key, value in default_keys.iteritems():
35+
# Create hash out of token and this key's name
36+
sha = hashlib.sha256(my_token + '-' + key).hexdigest()
37+
# Pass a dictionary so we can add stuff without breaking existing calls
38+
vals = { 'hash': sha, 'variable': key, 'original': value }
39+
# Call user specified function or just return hash
40+
my_list[key] = sha
41+
if secure_function is not None:
42+
# Pick through the global and local scopes to find the function.
43+
possibles = globals().copy()
44+
possibles.update(locals())
45+
supplied_function = possibles.get(secure_function)
46+
if not supplied_function:
47+
raise Exception("Cannot find supplied security function")
48+
else:
49+
my_list[key] = supplied_function(vals)
50+
else:
51+
calling_file = inspect.stack()[1][1]
52+
if os.getenv('OPENSHIFT_REPO_DIR'):
53+
base = os.getenv('OPENSHIFT_REPO_DIR')
54+
calling_file.replace(base,'')
55+
sys.stderr.write("OPENSHIFT WARNING: Using default values for secure variables, please manually modify in " + calling_file + "\n")
56+
57+
return my_list
58+
59+
60+
# This function transforms default keys into per-deployment random keys;
61+
def make_secure_key(key_info):
62+
hashcode = key_info['hash']
63+
key = key_info['variable']
64+
original = key_info['original']
65+
66+
chars = '0123456789abcdef'
67+
68+
# Use the hash to seed the RNG
69+
random.seed(int("0x" + hashcode[:8], 0))
70+
71+
# Create a random string the same length as the default
72+
rand_key = ''
73+
for _ in range(len(original)):
74+
rand_pos = random.randint(0,len(chars))
75+
rand_key += chars[rand_pos:(rand_pos+1)]
76+
77+
# Reset the RNG
78+
random.seed()
79+
80+
# Set the value
81+
return rand_key

wsgi/openshift/settings.py

+12-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
# Django settings for openshift project.
3-
import os
3+
import imp, os
44

55
# a setting to determine whether we are running on OpenShift
66
ON_OPENSHIFT = False
@@ -104,8 +104,18 @@
104104
#'django.contrib.staticfiles.finders.DefaultStorageFinder',
105105
)
106106

107+
# Make a dictionary of default keys
108+
default_keys = { 'SECRET_KEY': 'vm4rl5*ymb@2&d_(gc$gb-^twq9w(u69hi--%$5xrh!xk(t%hw' }
109+
110+
# Replace default keys with dynamic values if we are in OpenShift
111+
use_keys = default_keys
112+
if ON_OPENSHIFT:
113+
imp.find_module('openshiftlibs')
114+
import openshiftlibs
115+
use_keys = openshiftlibs.openshift_secure(default_keys)
116+
107117
# Make this unique, and don't share it with anybody.
108-
SECRET_KEY = 'vm4rl5*ymb@2&d_(gc$gb-^twq9w(u69hi--%$5xrh!xk(t%hw'
118+
SECRET_KEY = use_keys['SECRET_KEY']
109119

110120
# List of callables that know how to import templates from various sources.
111121
TEMPLATE_LOADERS = (

0 commit comments

Comments
 (0)