1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-08-13 16:53:54 -04:00

Merge pull request #85 from adam111316/feature/FixApiLogin

Removed requirement for http login for API when an API key is provided
This commit is contained in:
JackDandy 2014-11-03 03:54:51 +00:00
commit 8452471258
2 changed files with 5 additions and 2 deletions

View File

@ -35,6 +35,7 @@
* Fix proxy_indexers setting not loading from config file
* Add subtitle information to the cmd show and cmd shows api output
* Added network logo for SVT
* Removed requirement for http login for API when an API key is provided
[develop changelog]
* Improve display of progress bars in the Downloads columns of the show list page

View File

@ -95,9 +95,11 @@ def authenticated(handler_class):
try:
if not (sickbeard.WEB_USERNAME and sickbeard.WEB_PASSWORD):
return True
elif (handler.request.uri.startswith('/api') and '/api/builder' not in handler.request.uri):
elif (handler.request.uri.startswith(sickbeard.WEB_ROOT + '/api') and
'/api/builder' not in handler.request.uri):
return True
elif (handler.request.uri.startswith('/calendar') and sickbeard.CALENDAR_UNPROTECTED):
elif (handler.request.uri.startswith(sickbeard.WEB_ROOT + '/calendar') and
sickbeard.CALENDAR_UNPROTECTED):
return True
auth_hdr = handler.request.headers.get('Authorization')