1
0
mirror of https://github.com/djohnlewis/stackdump synced 2025-04-05 01:03:27 +00:00

Modified app to use a settings file.

This allows users to change the Solr URL and other things in one spot.
This commit is contained in:
Samuel Lai 2012-08-18 21:39:17 +10:00
parent 46100e7f01
commit c1a5382622
5 changed files with 74 additions and 46 deletions

@ -24,6 +24,7 @@ import iso8601
import html5lib import html5lib
from stackdump.models import Site, Badge, Comment, User from stackdump.models import Site, Badge, Comment, User
from stackdump import settings
# STATIC VARIABLES # STATIC VARIABLES
BOTTLE_ROOT = os.path.abspath(os.path.dirname(sys.argv[0])) BOTTLE_ROOT = os.path.abspath(os.path.dirname(sys.argv[0]))
@ -158,7 +159,7 @@ def uses_solr(fn):
''' '''
def init_solr(): def init_solr():
if not hasattr(thread_locals, 'solr_conn'): if not hasattr(thread_locals, 'solr_conn'):
thread_locals.solr_conn = Solr("http://localhost:8983/solr/") thread_locals.solr_conn = Solr(settings.SOLR_URL)
if not fn: if not fn:
init_solr() init_solr()
@ -181,8 +182,7 @@ def uses_db(fn):
''' '''
def init_db(): def init_db():
if not hasattr(thread_locals, 'db_conn'): if not hasattr(thread_locals, 'db_conn'):
db_path = os.path.abspath(os.path.join(BOTTLE_ROOT, '../../../data/stackdump.sqlite')) conn_str = settings.DATABASE_CONN_STR
conn_str = 'sqlite://' + db_path
thread_locals.db_conn = sqlhub.threadConnection = connectionForURI(conn_str) thread_locals.db_conn = sqlhub.threadConnection = connectionForURI(conn_str)
if not fn: if not fn:
@ -387,7 +387,7 @@ def view_question_redirect(site_key, question_id):
Redirects users from the long-form, proper URLs to the shorter one used Redirects users from the long-form, proper URLs to the shorter one used
by Stackdump. by Stackdump.
''' '''
redirect('%s%s/%s' % (settings['APP_URL_ROOT'], site_key, question_id)) redirect('%s%s/%s' % (settings.APP_URL_ROOT, site_key, question_id))
# END WEB REQUEST METHODS # END WEB REQUEST METHODS
@ -422,9 +422,9 @@ def render_template(template_path, context=None):
def get_template_settings(): def get_template_settings():
template_settings = { } template_settings = { }
keys = settings.get('TEMPLATE_SETTINGS', [ ]) keys = settings.TEMPLATE_SETTINGS
for k in keys: for k in keys:
template_settings[k] = settings.get(k, None) template_settings[k] = getattr(settings, k, None)
return template_settings return template_settings
@ -755,7 +755,7 @@ def rewrite_result(result):
The JSON must have been decoded first. The JSON must have been decoded first.
''' '''
app_url_root = settings.get('APP_URL_ROOT', '/') app_url_root = settings.APP_URL_ROOT
# get a list of all the site base URLs # get a list of all the site base URLs
sites = list(Site.select()) sites = list(Site.select())
@ -787,25 +787,15 @@ if __name__ == '__main__':
if os.environ.get('BOTTLE_CHILD', 'false') == 'true': if os.environ.get('BOTTLE_CHILD', 'false') == 'true':
print('Serving media from: %s' % MEDIA_ROOT) print('Serving media from: %s' % MEDIA_ROOT)
# load the settings file debug(settings.DEBUG)
__import__('settings')
if 'settings' in sys.modules.keys():
settings = sys.modules.get('settings')
settings = dict([ (k, getattr(settings, k)) for k in dir(settings) if not k.startswith('__') ])
else:
print('No settings file found; using defaults.')
settings = { }
if settings.get('DEBUG', False):
debug(True)
# run the server! # run the server!
server = settings.get('SERVER_ADAPTER', 'wsgiref') server = settings.SERVER_ADAPTER
run( run(
server=server, server=server,
host=settings.get('SERVER_HOST', '0.0.0.0'), host=settings.SERVER_HOST,
port=settings.get('SERVER_PORT', 8080), port=settings.SERVER_PORT,
reloader=True reloader=True
) )

@ -20,6 +20,7 @@ from sqlobject.styles import DefaultStyle
from pysolr import Solr from pysolr import Solr
from stackdump.models import Site, Badge, Comment, User from stackdump.models import Site, Badge, Comment, User
from stackdump import settings
try: try:
# For Python < 2.6 or people using a newer version of simplejson # For Python < 2.6 or people using a newer version of simplejson
@ -568,17 +569,15 @@ if not os.path.exists(xml_root):
print('The given XML root path does not exist.') print('The given XML root path does not exist.')
sys.exit(1) sys.exit(1)
db_path = os.path.abspath(os.path.join(script_dir, '../../../../data/stackdump.sqlite'))
# connect to the database # connect to the database
print('Connecting to the database...') print('Connecting to the database...')
conn_str = 'sqlite://' + db_path conn_str = settings.DATABASE_CONN_STR
sqlhub.processConnection = connectionForURI(conn_str) sqlhub.processConnection = connectionForURI(conn_str)
print('Connected.\n') print('Connected.\n')
# connect to solr # connect to solr
print('Connecting to solr...') print('Connecting to solr...')
solr = Solr("http://localhost:8983/solr/") solr = Solr(settings.SOLR_URL)
print('Connected.\n') print('Connected.\n')
# ensure required tables exist # ensure required tables exist

@ -12,17 +12,16 @@ from sqlobject import sqlhub, connectionForURI
from pysolr import Solr from pysolr import Solr
from stackdump.models import Site from stackdump.models import Site
from stackdump import settings
script_dir = os.path.dirname(sys.argv[0]) script_dir = os.path.dirname(sys.argv[0])
# FUNCTIONS # FUNCTIONS
def list_sites(): def list_sites():
# connect to the data sources # connect to the data sources
db_path = os.path.abspath(os.path.join(script_dir, '../../../../data/stackdump.sqlite'))
# connect to the database # connect to the database
print('Connecting to the database...') print('Connecting to the database...')
conn_str = 'sqlite://' + db_path conn_str = settings.DATABASE_CONN_STR
sqlhub.processConnection = connectionForURI(conn_str) sqlhub.processConnection = connectionForURI(conn_str)
print('Connected.\n') print('Connected.\n')
@ -36,17 +35,15 @@ def list_sites():
def delete_site(site_key): def delete_site(site_key):
# connect to the data sources # connect to the data sources
db_path = os.path.abspath(os.path.join(script_dir, '../../../../data/stackdump.sqlite'))
# connect to the database # connect to the database
print('Connecting to the database...') print('Connecting to the database...')
conn_str = 'sqlite://' + db_path conn_str = settings.DATABASE_CONN_STR
sqlhub.processConnection = connectionForURI(conn_str) sqlhub.processConnection = connectionForURI(conn_str)
print('Connected.\n') print('Connected.\n')
# connect to solr # connect to solr
print('Connecting to solr...') print('Connecting to solr...')
solr = Solr("http://localhost:8983/solr/") solr = Solr(settings.SOLR_URL)
print('Connected.\n') print('Connected.\n')
site_name = None site_name = None

@ -0,0 +1,35 @@
# This is the default settings file for stackdump.
#
# DO NOT CHANGE THIS FILE.
#
# Change the settings.py file; those settings will override the defaults in this
# file.
#
# This file is just like any other Python file, except the local variables form
# the settings dictionary.
DEBUG = False
# see http://bottlepy.org/docs/dev/tutorial.html#multi-threaded-server
SERVER_ADAPTER = 'cherrypy'
SERVER_HOST = '0.0.0.0'
SERVER_PORT = 8080
SOLR_URL = 'http://localhost:8983/solr/'
import os
DATABASE_CONN_STR = 'sqlite://%s/../../../data/stackdump.sqlite' % os.path.dirname(__file__)
# if the website is hosted under a subpath, specify it here. It must end with a
# slash.
APP_URL_ROOT = '/'
# number of comments to show before the rest are hidden behind a 'click to show'
# link
NUM_OF_DEFAULT_COMMENTS = 3
# settings that are available in templates
TEMPLATE_SETTINGS = [
'APP_URL_ROOT',
'NUM_OF_DEFAULT_COMMENTS'
]

@ -1,25 +1,32 @@
# This is the settings file for stackdump. # This is the settings file for stackdump.
# #
# It is modelled after the Django settings file. This file is just like any # Uncomment lines from this file to override any of the default settings.
# other Python file, except the local variables form the settings dictionary. #
# This file is just like any other Python file, except the local variables form
# the settings dictionary.
DEBUG = True # DO NOT remove this line - this line loads the default settings. Stackdump will
# not work without the default settings.
from default_settings import *
#DEBUG = False
# see http://bottlepy.org/docs/dev/tutorial.html#multi-threaded-server # see http://bottlepy.org/docs/dev/tutorial.html#multi-threaded-server
SERVER_ADAPTER = 'cherrypy' #SERVER_ADAPTER = 'cherrypy'
SERVER_HOST = '0.0.0.0' #SERVER_HOST = '0.0.0.0'
SERVER_PORT = 8080 #SERVER_PORT = 8080
# uncomment if the default host and port for Solr is different.
#SOLR_URL = 'http://localhost:8983/solr/'
# uncomment if the database for Stackdump is not the default SQLite one
#import os
#DATABASE_CONN_STR = 'sqlite://%s/../../../data/stackdump.sqlite' % os.path.dirname(__file__)
# if the website is hosted under a subpath, specify it here. It must end with a # if the website is hosted under a subpath, specify it here. It must end with a
# slash. # slash.
APP_URL_ROOT = '/' #APP_URL_ROOT = '/'
# number of comments to show before the rest are hidden behind a 'click to show' # number of comments to show before the rest are hidden behind a 'click to show'
# link # link
NUM_OF_DEFAULT_COMMENTS = 3 #NUM_OF_DEFAULT_COMMENTS = 3
# settings that are available in templates
TEMPLATE_SETTINGS = [
'APP_URL_ROOT',
'NUM_OF_DEFAULT_COMMENTS'
]