summaryrefslogtreecommitdiff
path: root/ickweb
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2018-08-07 11:16:24 +0300
committerLars Wirzenius <liw@liw.fi>2018-08-07 11:16:24 +0300
commita4f02bea3cfa11a43a6d31728ca345126d8f2f0f (patch)
tree14bbd2f0aa2d29ddc1e60c0bd47d7b7c8e842a0b /ickweb
parent373f3f95d063e9695f5eeada10da64c0564efa5f (diff)
downloadickweb-master.tar.gz
Change: set cookie path, add logout (delete cookie)HEADmaster
Diffstat (limited to 'ickweb')
-rw-r--r--ickweb/app.py11
1 files changed, 10 insertions, 1 deletions
diff --git a/ickweb/app.py b/ickweb/app.py
index d8a79ae..f7ba7b7 100644
--- a/ickweb/app.py
+++ b/ickweb/app.py
@@ -2,6 +2,7 @@ import json
import logging
import logging.handlers
import urllib
+import urllib.parse
import bottle
import requests
@@ -19,6 +20,9 @@ def create_app(our_url, controller, client_secret):
app = bottle.Bottle()
api = API(controller)
+ parts = urllib.parse.urlparse(our_url)
+ cookie_path = parts.path
+
@app.route('/favicon.ico')
def favicon():
raise bottle.HTTPError(status=404)
@@ -79,6 +83,11 @@ def create_app(our_url, controller, client_secret):
print('params:', params)
return bottle.HTTPResponse(status=302, headers=headers)
+ @app.route('/web/logout')
+ def logout():
+ bottle.response.delete_cookie(COOKIE, path=cookie_path)
+ bottle.redirect('/web')
+
@app.route('/web/projects')
def projects():
projects = api.get_projects()
@@ -123,7 +132,7 @@ def create_app(our_url, controller, client_secret):
token = obj['access_token']
print('got access token:', token)
- bottle.response.set_cookie(COOKIE, token)
+ bottle.response.set_cookie(COOKIE, token, path=cookie_path)
bottle.redirect('/web')
return app