Change to use the get_callback_args route function to return the right function to analyse for keywords and insert the sqlite connection.
This commit is contained in:
parent
a640affc81
commit
88722c72da
|
@ -83,9 +83,11 @@ class SQLitePlugin(object):
|
||||||
if bottle.__version__.startswith('0.9'):
|
if bottle.__version__.startswith('0.9'):
|
||||||
config = route['config']
|
config = route['config']
|
||||||
_callback = route['callback']
|
_callback = route['callback']
|
||||||
|
argspec = inspect.getargspec(_callback).args
|
||||||
else:
|
else:
|
||||||
config = route.config
|
config = route.config
|
||||||
_callback = route.callback
|
_callback = route.callback
|
||||||
|
argspec = route.get_callback_args()
|
||||||
|
|
||||||
# Override global configuration with route-specific values.
|
# Override global configuration with route-specific values.
|
||||||
if "sqlite" in config:
|
if "sqlite" in config:
|
||||||
|
@ -100,21 +102,8 @@ class SQLitePlugin(object):
|
||||||
keyword = g('keyword', self.keyword)
|
keyword = g('keyword', self.keyword)
|
||||||
text_factory = g('keyword', self.text_factory)
|
text_factory = g('keyword', self.text_factory)
|
||||||
|
|
||||||
# Test if the original callback accepts a 'db' keyword.
|
if keyword not in argspec:
|
||||||
# Ignore it if it does not need a database handle.
|
return callback
|
||||||
argspec = inspect.getargspec(_callback)
|
|
||||||
if keyword not in argspec.args:
|
|
||||||
#check for closure
|
|
||||||
no_keyword_arg = True
|
|
||||||
for closure in _callback.func_closure:
|
|
||||||
contents = closure.cell_contents
|
|
||||||
if callable(contents):
|
|
||||||
argspec = inspect.getargspec(contents)
|
|
||||||
if keyword in argspec.args:
|
|
||||||
no_keyword_arg = False
|
|
||||||
break
|
|
||||||
if no_keyword_arg:
|
|
||||||
return callback
|
|
||||||
|
|
||||||
def wrapper(*args, **kwargs):
|
def wrapper(*args, **kwargs):
|
||||||
# Connect to the database
|
# Connect to the database
|
||||||
|
|
7
test.py
7
test.py
|
@ -28,6 +28,13 @@ class SQLiteTest(unittest.TestCase):
|
||||||
def tearDown(self):
|
def tearDown(self):
|
||||||
os.unlink(self.plugin.dbfile)
|
os.unlink(self.plugin.dbfile)
|
||||||
|
|
||||||
|
def test_with_view(self):
|
||||||
|
@self.app.get('/')
|
||||||
|
@bottle.view('test_view')
|
||||||
|
def test(db):
|
||||||
|
self.assertEqual(type(db), type(sqlite3.connect(':memory:')))
|
||||||
|
self._request('/')
|
||||||
|
|
||||||
def test_with_keyword(self):
|
def test_with_keyword(self):
|
||||||
@self.app.get('/')
|
@self.app.get('/')
|
||||||
def test(db):
|
def test(db):
|
||||||
|
|
1
views/test_view.tpl
Normal file
1
views/test_view.tpl
Normal file
|
@ -0,0 +1 @@
|
||||||
|
test_view
|
Loading…
Reference in New Issue
Block a user