[FIX]DBFilter from config : fix http_host when module not used
This commit is contained in:
parent
352074caba
commit
b23084eea3
@ -27,7 +27,7 @@
|
|||||||
Also required : `proxy_mode` to `True`
|
Also required : `proxy_mode` to `True`
|
||||||
|
|
||||||
Inspired from OCA `dbfilter_from_header`.""",
|
Inspired from OCA `dbfilter_from_header`.""",
|
||||||
'version': '15.0.0.0.2',
|
'version': '15.0.0.0.3',
|
||||||
'category': 'Yaltik',
|
'category': 'Yaltik',
|
||||||
'author': 'Fabien Bourgeois',
|
'author': 'Fabien Bourgeois',
|
||||||
'license': 'AGPL-3',
|
'license': 'AGPL-3',
|
||||||
|
@ -38,10 +38,9 @@ http_host_resolv = {}
|
|||||||
|
|
||||||
def db_filter(dbs, httprequest=None):
|
def db_filter(dbs, httprequest=None):
|
||||||
""" Override db_filter """
|
""" Override db_filter """
|
||||||
print(http_host_resolv)
|
http_host = httprequest.environ.get('HTTP_HOST', '').split(':')[0]
|
||||||
if db_filter_str:
|
if db_filter_str:
|
||||||
httprequest = httprequest or http.request.httprequest
|
httprequest = httprequest or http.request.httprequest
|
||||||
http_host = httprequest.environ.get('HTTP_HOST', '').split(':')[0]
|
|
||||||
# If in cache and not empty
|
# If in cache and not empty
|
||||||
if http_host in http_host_resolv and http_host_resolv.get(http_host):
|
if http_host in http_host_resolv and http_host_resolv.get(http_host):
|
||||||
dbs = http_host_resolv[http_host]
|
dbs = http_host_resolv[http_host]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user