blob: 8c8b8183ef7cfb38b3c4fe62811bf73e21db3142 [file] [log] [blame]
# Copyright 2016 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file or at
# https://developers.google.com/open-source/licenses/bsd
"""A class to forward requests to configured urls.
This page handles the /wiki and /source urls which are forwarded from Codesite.
If a project has defined appropriate urls, then the users are forwarded there.
If not, they are redirected to adminIntro.
"""
from __future__ import print_function
from __future__ import division
from __future__ import absolute_import
from six.moves import http_client
from framework import flaskservlet
from framework import framework_helpers
from framework import servlet
from framework import urls
class WikiRedirect(servlet.Servlet):
"""Redirect to the wiki documentation, if provided."""
def get(self, **kwargs):
"""Construct a 302 pointing at project.docs_url, or at adminIntro."""
if not self.mr.project:
# TODO(crbug.com/monorail/10936): status in Flask is status_code
# self.response.status_code = http_client.NOT_FOUND
self.response.status = http_client.NOT_FOUND
return
docs_url = self.mr.project.docs_url
if not docs_url:
docs_url = framework_helpers.FormatAbsoluteURL(
self.mr, urls.ADMIN_INTRO, include_project=True)
self.response.location = docs_url
# TODO(crbug.com/monorail/10936): status in Flask is status_code
# self.response.status_code = http_client.MOVED_PERMANENTLY
self.response.status = http_client.MOVED_PERMANENTLY
# def GetWikiListRedirect(self, **kwargs):
# return self.handler(**kwargs)
# def GetWikiRedirect(self, **kwargs):
# return self.handler(**kwargs)
class SourceRedirect(servlet.Servlet):
"""Redirect to the source browser, if provided."""
def get(self, **kwargs):
"""Construct a 302 pointing at project.source_url, or at adminIntro."""
if not self.mr.project:
# TODO(crbug.com/monorail/10936): status in Flask is status_code
# self.response.status_code = http_client.NOT_FOUND
self.response.status = http_client.NOT_FOUND
return
source_url = self.mr.project.source_url
if not source_url:
source_url = framework_helpers.FormatAbsoluteURL(
self.mr, urls.ADMIN_INTRO, include_project=True)
self.response.location = source_url
# TODO(crbug.com/monorail/10936): status in Flask is status_code
# self.response.status_code = http_client.MOVED_PERMANENTLY
self.response.status = http_client.MOVED_PERMANENTLY
# def GetSourceRedirect(self, **kwargs):
# return self.handler(**kwargs)