Copybara | 854996b | 2021-09-07 19:36:02 +0000 | [diff] [blame] | 1 | # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 | # Use of this source code is governed by a BSD-style |
| 3 | # license that can be found in the LICENSE file or at |
| 4 | # https://developers.google.com/open-source/licenses/bsd |
| 5 | |
| 6 | """Redirect to /issues/entry or an external URL (like the wizard). |
| 7 | """ |
| 8 | from __future__ import print_function |
| 9 | from __future__ import division |
| 10 | from __future__ import absolute_import |
| 11 | |
| 12 | import logging |
| 13 | |
Adrià Vilanova Martínez | de94280 | 2022-07-15 14:06:55 +0200 | [diff] [blame] | 14 | from framework import flaskservlet |
Copybara | 854996b | 2021-09-07 19:36:02 +0000 | [diff] [blame] | 15 | from framework import servlet |
| 16 | from framework import servlet_helpers |
| 17 | |
| 18 | |
| 19 | class IssueEntryAfterLogin(servlet.Servlet): |
| 20 | """Redirect after clicking "New issue" and logging in.""" |
| 21 | |
| 22 | # Note: This servlet does not use an HTML template. |
| 23 | |
| 24 | def GatherPageData(self, mr): |
| 25 | """Build up a dictionary of data values to use when rendering the page.""" |
| 26 | if not mr.auth.user_id: |
| 27 | self.abort(400, 'Only signed-in users should reach this URL.') |
| 28 | |
Adrià Vilanova Martínez | de94280 | 2022-07-15 14:06:55 +0200 | [diff] [blame] | 29 | entry_page_url = servlet_helpers.ComputeIssueEntryURL(mr) |
Copybara | 854996b | 2021-09-07 19:36:02 +0000 | [diff] [blame] | 30 | logging.info('Redirecting to %r', entry_page_url) |
| 31 | self.redirect(entry_page_url, abort=True) |
Adrià Vilanova Martínez | de94280 | 2022-07-15 14:06:55 +0200 | [diff] [blame] | 32 | |
| 33 | # def GetIssueEntryAfterLogin(self, **kwargs): |
| 34 | # return self.handler(**kwargs) |