From 8c2cab9bdd51dabefe4d7c2c92ecdc5f06ef0613 Mon Sep 17 00:00:00 2001 From: Aaron Parecki Date: Tue, 14 Feb 2017 21:03:39 -0800 Subject: [PATCH] add reset login option --- controllers/auth.php | 18 ++++++++++++++++++ views/settings.php | 14 ++++++++++++++ 2 files changed, 32 insertions(+) diff --git a/controllers/auth.php b/controllers/auth.php index 15ecd61..9fd1493 100644 --- a/controllers/auth.php +++ b/controllers/auth.php @@ -267,6 +267,24 @@ $app->get('/signout', function() use($app) { $app->redirect('/', 302); }); +$app->post('/auth/reset', function() use($app) { + if($user=require_login($app, false)) { + $user->authorization_endpoint = ''; + $user->token_endpoint = ''; + $user->micropub_endpoint = ''; + $user->authorization_endpoint = ''; + $user->micropub_media_endpoint = ''; + $user->micropub_scope = ''; + $user->micropub_access_token = ''; + $user->save(); + + unset($_SESSION['auth']); + unset($_SESSION['me']); + unset($_SESSION['auth_state']); + unset($_SESSION['user_id']); + } + $app->redirect('/', 302); +}); $app->post('/auth/twitter', function() use($app) { if($user=require_login($app, false)) { diff --git a/views/settings.php b/views/settings.php index 23a1b71..537418c 100644 --- a/views/settings.php +++ b/views/settings.php @@ -24,6 +24,14 @@ access token user->micropub_access_token ?> + + + + + + Clicking this button will erase the access token Quill has stored for you, forget all cached endpoints, and sign you out. If you sign back in, you will start over and see the debugging screens and scope options again. + + @@ -110,5 +118,11 @@ $(function(){ }); }); + $("#reset-login").click(function(){ + $.post("/auth/reset", function(){ + window.location = "/"; + }); + }); + });