mirror of
https://github.com/postgres/pgweb.git
synced 2025-08-06 09:57:57 +00:00

Since we purge docs pages based on the version they are for, we need to tag the 404 pages with version as well, when available. Without that, any page that had been requested returning a 404 (such as somebody or some tool polling for release notes on a version that hasn't been released yet) would not get purged when new docs are loaded, which results in the 404 staying around even after the actual docs are updated.
415 lines
17 KiB
Python
415 lines
17 KiB
Python
from django.shortcuts import render, get_object_or_404
|
|
from django.http import HttpResponseRedirect, HttpResponsePermanentRedirect, HttpResponseNotFound
|
|
from django.http import HttpResponse, Http404
|
|
from pgweb.util.decorators import login_required, allow_frames, content_sources
|
|
from django.template.defaultfilters import strip_tags
|
|
from django.db.models import Q
|
|
from django.conf import settings
|
|
|
|
from decimal import Decimal, ROUND_DOWN
|
|
import os
|
|
import re
|
|
|
|
from pgweb.util.contexts import render_pgweb
|
|
from pgweb.util.helpers import template_to_string
|
|
from pgweb.util.misc import send_template_mail
|
|
|
|
from pgweb.core.models import Version
|
|
from pgweb.util.db import exec_to_dict
|
|
|
|
from .models import DocPage, DocPageRedirect
|
|
from .forms import DocCommentForm
|
|
|
|
|
|
def _versioned_404(msg, version):
|
|
r = HttpResponseNotFound(msg)
|
|
r['xkey'] = 'pgdocs_{}'.format(version)
|
|
return r
|
|
|
|
|
|
@allow_frames
|
|
@content_sources('style', "'unsafe-inline'")
|
|
def docpage(request, version, filename):
|
|
loaddate = None
|
|
if version == 'current':
|
|
ver = Version.objects.filter(current=True)[0].tree
|
|
elif version == 'devel':
|
|
ver = Decimal(0)
|
|
loaddate = Version.objects.get(tree=Decimal(0)).docsloaded
|
|
else:
|
|
ver = Decimal(version)
|
|
if ver == Decimal(0):
|
|
return _versioned_404("Version not found", "all")
|
|
|
|
if ver < Decimal("7.1") and ver > Decimal(0):
|
|
extension = "htm"
|
|
else:
|
|
extension = "html"
|
|
|
|
if ver < Decimal("7.1") and ver > Decimal(0):
|
|
indexname = "postgres.htm"
|
|
elif ver == Decimal("7.1"):
|
|
indexname = "postgres.html"
|
|
else:
|
|
indexname = "index.html"
|
|
|
|
if ver >= 10 and version.find('.') > -1:
|
|
# Version 10 and up, but specified as 10.0 / 11.0 etc, so redirect back without the
|
|
# decimal.
|
|
return HttpResponsePermanentRedirect("/docs/{0}/{1}.html".format(int(ver), filename))
|
|
|
|
fullname = "%s.%s" % (filename, extension)
|
|
|
|
# Before looking up the documentation, we need to make a check for release
|
|
# notes. Based on a change, from PostgreSQL 9.4 and up, release notes are
|
|
# only available for the current version (e.g. 11 only has 11.0, 11.1, 11.2)
|
|
# This checks to see if there is a mismatch (e.g. ver = 9.4, fullname = release-9-3-2.html)
|
|
# or if these are the development docs that are pointing to a released version
|
|
# and performs a redirect to the older version
|
|
if fullname.startswith('release-') and (ver >= Decimal("9.4") or version == "devel") and not fullname.startswith('release-prior'):
|
|
# figure out which version to redirect to. Note that the oldest version
|
|
# of the docs loaded is 7.2
|
|
release_version = re.sub(r'release-((\d+)(-\d+)?)(-\d+)?.html',
|
|
r'\1', fullname).replace('-', '.')
|
|
# convert to Decimal for ease of manipulation
|
|
try:
|
|
release_version = Decimal(release_version)
|
|
except Exception as e:
|
|
# If it's not a proper decimal, just return 404. This can happen from many
|
|
# broken links around the web.
|
|
raise Http404("Invalid version format")
|
|
|
|
# if the version is greater than 10, truncate the number
|
|
if release_version >= Decimal('10'):
|
|
release_version = release_version.quantize(Decimal('1'), rounding=ROUND_DOWN)
|
|
# if these are developer docs (i.e. from the nightly build), we need to
|
|
# determine if these are release notes for a branched version or not,
|
|
# i.e. if we are:
|
|
# a) viewing the docs for a version that does not exist yet (e.g. active
|
|
# development before an initial beta) OR
|
|
# b) viewing the docs for a beta, RC, or fully released version
|
|
is_branched = Version.objects.filter(tree=release_version).exists() if version == "devel" else True
|
|
# If we are viewing a released version of the release notesand the
|
|
# release versions do not match, then we redirect
|
|
if is_branched and release_version != ver:
|
|
url = "/docs/"
|
|
if release_version >= Decimal('10'):
|
|
url += "{}/{}".format(int(release_version), fullname)
|
|
elif release_version < Decimal('7.2'):
|
|
url += "7.2/{}".format(fullname)
|
|
else:
|
|
url += "{}/{}".format(release_version, fullname)
|
|
return HttpResponsePermanentRedirect(url)
|
|
|
|
# try to get the page outright. If it's not found, check to see if it's a
|
|
# doc alias with a redirect, and if so, redirect to that page
|
|
try:
|
|
page = DocPage.objects.select_related('version').get(version=ver, file=fullname)
|
|
except DocPage.DoesNotExist:
|
|
# if the page does not exist but there is a special page redirect, check
|
|
# for the existence of that. if that does not exist, then we're really
|
|
# done and can 404
|
|
try:
|
|
page_redirect = DocPageRedirect.objects.get(redirect_from=fullname)
|
|
url = "/docs/{}/{}".format(version, page_redirect.redirect_to)
|
|
return HttpResponsePermanentRedirect(url)
|
|
except DocPageRedirect.DoesNotExist:
|
|
return _versioned_404("Page not found", ver)
|
|
|
|
versions = DocPage.objects.select_related('version').extra(
|
|
where=["file=%s OR file IN (SELECT file2 FROM docsalias WHERE file1=%s) OR file IN (SELECT file1 FROM docsalias WHERE file2=%s)"],
|
|
params=[fullname, fullname, fullname],
|
|
).order_by('-version__supported', 'version').only('version', 'file')
|
|
|
|
# If possible (e.g. if we match), remove the header part of the docs so that we can generate a plain text
|
|
# preview. For older versions where this doesn't match, we just leave it empty.
|
|
m = re.match(r'^<div [^>]*class="navheader"[^>]*>.*?</div>(.*)$', page.content, re.S)
|
|
if m:
|
|
contentpreview = strip_tags(m.group(1))
|
|
else:
|
|
contentpreview = ''
|
|
|
|
r = render(request, 'docs/docspage.html', {
|
|
'page': page,
|
|
'supported_versions': [v for v in versions if v.version.supported],
|
|
'devel_versions': [v for v in versions if not v.version.supported and v.version.testing],
|
|
'unsupported_versions': [v for v in versions if not v.version.supported and not v.version.testing],
|
|
'title': page.title,
|
|
'doc_index_filename': indexname,
|
|
'loaddate': loaddate,
|
|
'og': {
|
|
'url': '/docs/{}/{}'.format(page.display_version(), page.file),
|
|
'time': page.version.docsloaded,
|
|
'title': page.title.strip(),
|
|
'description': contentpreview,
|
|
'sitename': 'PostgreSQL Documentation',
|
|
}
|
|
})
|
|
r['xkey'] = 'pgdocs_{}'.format(page.display_version())
|
|
if version == 'current':
|
|
r['xkey'] += ' pgdocs_current'
|
|
return r
|
|
|
|
|
|
@allow_frames
|
|
def docsvg(request, version, filename):
|
|
if version == 'current':
|
|
ver = Version.objects.filter(current=True)[0].tree
|
|
elif version == 'devel':
|
|
ver = Decimal(0)
|
|
else:
|
|
ver = Decimal(version)
|
|
if ver == Decimal(0):
|
|
return _versioned_404("Version not found", "all")
|
|
|
|
if ver < Decimal(12) and ver > Decimal(0):
|
|
raise Http404("SVG images don't exist in this version")
|
|
|
|
page = get_object_or_404(DocPage, version=ver, file="{0}.svg".format(filename))
|
|
|
|
r = HttpResponse(page.content, content_type="image/svg+xml")
|
|
r['xkey'] = 'pgdocs_{}'.format(page.display_version())
|
|
if version == 'current':
|
|
r['xkey'] += ' pgdocs_current'
|
|
return r
|
|
|
|
|
|
def docspermanentredirect(request, version, typ, page, *args):
|
|
"""Provides a permanent redirect from the old static/interactive pages to
|
|
the modern pages that do not have said keywords.
|
|
"""
|
|
url = "/docs/%s/" % version
|
|
if page:
|
|
url += page
|
|
return HttpResponsePermanentRedirect(url)
|
|
|
|
|
|
def docsrootpage(request, version):
|
|
return docpage(request, version, 'index')
|
|
|
|
|
|
def redirect_root(request, version):
|
|
return HttpResponsePermanentRedirect("/docs/%s/" % version)
|
|
|
|
|
|
def root(request):
|
|
versions = Version.objects.filter(Q(supported=True) | Q(testing__gt=0, tree__gt=0)).order_by('-tree')
|
|
r = render_pgweb(request, 'docs', 'docs/index.html', {
|
|
'versions': [_VersionPdfWrapper(v) for v in versions],
|
|
})
|
|
r['xkey'] = 'pgdocs_all pgdocs_pdf'
|
|
return r
|
|
|
|
|
|
class _VersionPdfWrapper(object):
|
|
"""
|
|
A wrapper around a version that knows to look for PDF files, and
|
|
return their sizes.
|
|
"""
|
|
def __init__(self, version):
|
|
self.__version = version
|
|
self.a4pdf = self._find_pdf('A4')
|
|
self.uspdf = self._find_pdf('US')
|
|
# Some versions have, ahem, strange index filenames
|
|
if self.__version.tree < Decimal('6.4'):
|
|
self.indexname = 'book01.htm'
|
|
elif self.__version.tree < Decimal('7.0'):
|
|
self.indexname = 'postgres.htm'
|
|
elif self.__version.tree < Decimal('7.2'):
|
|
self.indexname = 'postgres.html'
|
|
else:
|
|
self.indexname = 'index.html'
|
|
|
|
def __getattr__(self, name):
|
|
return getattr(self.__version, name)
|
|
|
|
def _find_pdf(self, pagetype):
|
|
try:
|
|
return os.stat('%s/documentation/pdf/%s/postgresql-%s-%s.pdf' % (settings.STATIC_CHECKOUT, self.__version.numtree, self.__version.numtree, pagetype)).st_size
|
|
except Exception as e:
|
|
return 0
|
|
|
|
|
|
def manuals(request):
|
|
# Legacy URL for manuals, redirect to the main docs page
|
|
return HttpResponsePermanentRedirect('/docs/')
|
|
|
|
|
|
def manualarchive(request):
|
|
versions = Version.objects.filter(testing=0, supported=False, tree__gt=0).order_by('-tree')
|
|
r = render_pgweb(request, 'docs', 'docs/archive.html', {
|
|
'versions': [_VersionPdfWrapper(v) for v in versions],
|
|
})
|
|
r['xkey'] = 'pgdocs_all pgdocs_pdf'
|
|
return r
|
|
|
|
|
|
def release_notes(request, major_version=None, minor_version=None):
|
|
"""Contains the main archive of release notes."""
|
|
# this query gets a list of a unique set of release notes for each version of
|
|
# PostgreSQL. From PostgreSQL 9.4+, release notes are only present for their
|
|
# specific version of PostgreSQL, so all legacy release notes are present in
|
|
# 9.3 and older
|
|
# First the query identifies all of the release note files that have been loaded
|
|
# into the docs. We will limit our lookup to release notes from 9.3 on up,
|
|
# given 9.3 has all the release notes for PostgreSQL 9.3 and older
|
|
# From there, it parses the version the release notes are for
|
|
# from the file name, and breaks it up into "major" and "minor" version from
|
|
# our understanding of how PostgreSQL version numbering is handled, which is
|
|
# in 3 camps: 1 and older, 6.0 - 9.6, 10 - current
|
|
# It is then put into a unique set
|
|
# Lastly, we determine the next/previous versions (lead/lag) so we are able
|
|
# to easily page between the different versions in the unique release note view
|
|
# We only include the content if we are doing an actual lookup on an exact
|
|
# major/minor release pair, to limit how much data we load into memory
|
|
sql = """
|
|
SELECT
|
|
{content}
|
|
file, major, minor,
|
|
lag(minor) OVER (PARTITION BY major ORDER BY minor) AS previous,
|
|
lead(minor) OVER (PARTITION BY major ORDER BY minor) AS next
|
|
FROM (
|
|
SELECT DISTINCT ON (file, major, minor)
|
|
{content}
|
|
file,
|
|
CASE
|
|
WHEN v[1]::int >= 10 THEN v[1]::numeric
|
|
WHEN v[1]::int <= 1 THEN v[1]::int
|
|
ELSE array_to_string(v[1:2], '.')::numeric END AS major,
|
|
COALESCE(
|
|
CASE
|
|
WHEN v[1]::int >= 10 THEN v[2]
|
|
WHEN v[1]::int <= 1 THEN '.' || v[2]
|
|
ELSE v[3]
|
|
END::numeric, 0
|
|
) AS minor
|
|
FROM (
|
|
SELECT
|
|
{content}
|
|
file,
|
|
string_to_array(regexp_replace(file, 'release-(.*)\\.htm.*', '\\1'), '-') AS v
|
|
FROM docs
|
|
WHERE file ~ '^release-\\d+' AND version >= 9.3
|
|
) r
|
|
) rr
|
|
"""
|
|
params = []
|
|
# if the major + minor version are provided, then we want to narrow down
|
|
# the results to all the release notes for the minor version, as we need the
|
|
# list of the entire set in order to generate the nice side bar in the release
|
|
# notes
|
|
# otherwise ensure the release notes are returned in order
|
|
if major_version is not None and minor_version is not None:
|
|
# a quick check to see if major is one of 6 - 9 as a whole number. If
|
|
# it is, this may be because someone is trying to up a major version
|
|
# directly from the URL, e.g. "9.1", even through officially the release
|
|
# number was "9.1.0".
|
|
# anyway, we shouldn't 404, but instead transpose from "9.1" to "9.1.0".
|
|
# if it's not an actual PostgreSQL release (e.g. "9.9"), then it will
|
|
# 404 at a later step.
|
|
if major_version in ['6', '7', '8', '9']:
|
|
major_version = "{}.{}".format(major_version, minor_version)
|
|
minor_version = '0'
|
|
# at this point, include the content
|
|
sql = sql.format(content="content,")
|
|
# restrict to the major version, order from latest to earliest minor
|
|
sql = """{}
|
|
WHERE rr.major = %s
|
|
ORDER BY rr.minor DESC""".format(sql)
|
|
params += [major_version]
|
|
else:
|
|
sql = sql.format(content="")
|
|
sql += """
|
|
ORDER BY rr.major DESC, rr.minor DESC;
|
|
"""
|
|
# run the query, loading a list of dict that contain all of the release
|
|
# notes that are filtered out by the query
|
|
release_notes = exec_to_dict(sql, params)
|
|
# determine which set of data to pass to the template:
|
|
# if both major/minor versions are present, we will load the release notes
|
|
# if neither are present, we load the list of all of the release notes to list out
|
|
if major_version is not None and minor_version is not None:
|
|
# first, see if any release notes were returned; if not, raise a 404
|
|
if not release_notes:
|
|
raise Http404()
|
|
# next, see if we can find the specific release notes we are looking for
|
|
# format what the "minor" version should look like
|
|
try:
|
|
minor = Decimal('0.{}'.format(minor_version) if major_version in ['0', '1'] else minor_version)
|
|
except TypeError:
|
|
raise Http404()
|
|
try:
|
|
release_note = [r for r in release_notes if r['minor'] == minor][0]
|
|
except IndexError:
|
|
raise Http404()
|
|
# of course, if nothing is found, return a 404
|
|
if not release_note:
|
|
raise Http404()
|
|
context = {
|
|
'major_version': major_version,
|
|
'minor_version': minor_version,
|
|
'release_note': release_note,
|
|
'release_notes': release_notes
|
|
}
|
|
else:
|
|
context = {'release_notes': release_notes}
|
|
|
|
r = render_pgweb(request, 'docs', 'docs/release_notes.html', context)
|
|
if major_version:
|
|
r['xkey'] = 'pgdocs_{}'.format(major_version)
|
|
else:
|
|
r['xkey'] = 'pgdocs_all'
|
|
return r
|
|
|
|
|
|
@login_required
|
|
def commentform(request, itemid, version, filename):
|
|
if version == 'current':
|
|
v = Version.objects.get(current=True)
|
|
else:
|
|
v = get_object_or_404(Version, tree=version)
|
|
if not v.supported:
|
|
# No docs comments on unsupported versions
|
|
return HttpResponseRedirect("/docs/{0}/{1}".format(version, filename))
|
|
|
|
if request.method == 'POST':
|
|
form = DocCommentForm(request.POST)
|
|
if form.is_valid():
|
|
if version == '0.0':
|
|
version = 'devel'
|
|
|
|
send_template_mail(
|
|
settings.DOCSREPORT_NOREPLY_EMAIL,
|
|
settings.DOCSREPORT_EMAIL,
|
|
'%s' % form.cleaned_data['shortdesc'],
|
|
'docs/docsbugmail.txt', {
|
|
'version': version,
|
|
'filename': filename,
|
|
'details': form.cleaned_data['details'],
|
|
},
|
|
cc=form.cleaned_data['email'],
|
|
replyto='%s, %s' % (form.cleaned_data['email'], settings.DOCSREPORT_EMAIL),
|
|
sendername='PG Doc comments form'
|
|
)
|
|
return HttpResponseRedirect("done/")
|
|
else:
|
|
form = DocCommentForm(initial={
|
|
'name': '%s %s' % (request.user.first_name, request.user.last_name),
|
|
'email': request.user.email,
|
|
})
|
|
|
|
return render_pgweb(request, 'docs', 'base/form.html', {
|
|
'form': form,
|
|
'formitemtype': 'documentation comment',
|
|
'operation': 'Submit',
|
|
'form_intro': template_to_string('docs/docsbug.html', {
|
|
'user': request.user,
|
|
}),
|
|
'savebutton': 'Send Email',
|
|
})
|
|
|
|
|
|
@login_required
|
|
def commentform_done(request, itemid, version, filename):
|
|
return render_pgweb(request, 'docs', 'docs/docsbug_completed.html', {})
|