|
@@ -1,8 +1,9 @@
|
|
|
-
|
|
|
+
|
|
|
|
|
|
from bottle import route, request, run, template, response, abort
|
|
|
import psycopg
|
|
|
-from psycopg import Cursor, sql
|
|
|
+from psycopg import Cursor
|
|
|
+from psycopg.sql import SQL, Literal
|
|
|
import os
|
|
|
host = f"host={os.getenv('HOST')}"
|
|
|
db = f"dbname={os.getenv('DB', 'pgdb')}"
|
|
@@ -11,104 +12,30 @@ password = f"password={os.getenv('PASSWORD','')}"
|
|
|
if not password.split('=',1)[1]:
|
|
|
password = ''
|
|
|
conn: Cursor = psycopg.connect(f"{host} {db} {user} {password}")
|
|
|
-random_statement = """SELECT
|
|
|
- query_to_xml('SELECT category, translation, reference, txt
|
|
|
- FROM pg_random_view_default_if_null
|
|
|
- JOIN pg_categories ON category = name
|
|
|
- ORDER BY tableid ASC',
|
|
|
- false, false, ''::text);"""
|
|
|
-specified_statement = sql.SQL("""SELECT query_to_xml($$SELECT category, translation, reference, txt
|
|
|
- FROM getprayer(
|
|
|
- {categories}::text[],
|
|
|
- {translations}::text[],
|
|
|
- {references}::text[]
|
|
|
- ) ORDER BY ordinal ASC$$, false, false, ''::text);""")
|
|
|
-heading = """<?xml version="1.0" encoding="UTF-8"?>
|
|
|
-<?xml-stylesheet type="text/xsl" href="https://shandan.one/xml/pg_view_style.xsl"?>
|
|
|
-"""
|
|
|
-random_schema = """
|
|
|
-<xsd:schema
|
|
|
- xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
|
|
-
|
|
|
-<xsd:simpleType name="UDT.pgdb.pg_catalog.text">
|
|
|
- <xsd:restriction base="xsd:string">
|
|
|
- </xsd:restriction>
|
|
|
-</xsd:simpleType>
|
|
|
-
|
|
|
-<xsd:simpleType name="VARCHAR">
|
|
|
- <xsd:restriction base="xsd:string">
|
|
|
- </xsd:restriction>
|
|
|
-</xsd:simpleType>
|
|
|
-
|
|
|
-<xsd:complexType name="RowType.pgdb.public.pg_random_view_default_if_null">
|
|
|
- <xsd:sequence>
|
|
|
- <xsd:element name="category" type="UDT.pgdb.pg_catalog.text" minOccurs="0"></xsd:element>
|
|
|
- <xsd:element name="translation" type="VARCHAR" minOccurs="0"></xsd:element>
|
|
|
- <xsd:element name="reference" type="UDT.pgdb.pg_catalog.text" minOccurs="0"></xsd:element>
|
|
|
- <xsd:element name="txt" type="VARCHAR" minOccurs="0"></xsd:element>
|
|
|
- </xsd:sequence>
|
|
|
-</xsd:complexType>
|
|
|
-
|
|
|
-<xsd:complexType name="TableType.pgdb.public.pg_random_view_default_if_null">
|
|
|
- <xsd:sequence>
|
|
|
- <xsd:element name="row" type="RowType.pgdb.public.pg_random_view_default_if_null" minOccurs="0" maxOccurs="unbounded"/>
|
|
|
- </xsd:sequence>
|
|
|
-</xsd:complexType>
|
|
|
-
|
|
|
-<xsd:element name="table" type="TableType.pgdb.public.pg_random_view_default_if_null"/>
|
|
|
-
|
|
|
-</xsd:schema>
|
|
|
-"""
|
|
|
-specified_heading = heading + """
|
|
|
-<xsd:element name="table" type="TableType.pgdb.public.pg_view"/>
|
|
|
-
|
|
|
-</xsd:schema>
|
|
|
-"""
|
|
|
-specified_schema = """
|
|
|
-<xsd:schema
|
|
|
- xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
|
|
-
|
|
|
-<xsd:simpleType name="UDT.pgdb.pg_catalog.text">
|
|
|
- <xsd:restriction base="xsd:string">
|
|
|
- </xsd:restriction>
|
|
|
-</xsd:simpleType>
|
|
|
-
|
|
|
-<xsd:simpleType name="VARCHAR">
|
|
|
- <xsd:restriction base="xsd:string">
|
|
|
- </xsd:restriction>
|
|
|
-</xsd:simpleType>
|
|
|
-
|
|
|
-<xsd:complexType name="RowType.pgdb.public.pg_view">
|
|
|
- <xsd:sequence>
|
|
|
- <xsd:element name="category" type="UDT.pgdb.pg_catalog.text" minOccurs="0"></xsd:element>
|
|
|
- <xsd:element name="translation" type="VARCHAR" minOccurs="0"></xsd:element>
|
|
|
- <xsd:element name="reference" type="UDT.pgdb.pg_catalog.text" minOccurs="0"></xsd:element>
|
|
|
- <xsd:element name="txt" type="VARCHAR" minOccurs="0"></xsd:element>
|
|
|
- </xsd:sequence>
|
|
|
-</xsd:complexType>
|
|
|
-
|
|
|
-<xsd:complexType name="TableType.pgdb.public.pg_view">
|
|
|
- <xsd:sequence>
|
|
|
- <xsd:element name="row" type="RowType.pgdb.public.pg_view" minOccurs="0" maxOccurs="unbounded"/>
|
|
|
- </xsd:sequence>
|
|
|
-</xsd:complexType>
|
|
|
-
|
|
|
-<xsd:element name="table" type="TableType.pgdb.public.pg_view"/>
|
|
|
-
|
|
|
-</xsd:schema>
|
|
|
-"""
|
|
|
-
|
|
|
|
|
|
@route('/pyapi/random')
|
|
|
def random():
|
|
|
try:
|
|
|
with conn.cursor() as cur:
|
|
|
- xml = cur.execute(random_statement).fetchone()[0].splitlines()
|
|
|
+ inner = SQL("""
|
|
|
+SELECT category, translation, reference, txt
|
|
|
+FROM pg_random_view_default_if_null
|
|
|
+JOIN pg_categories ON category = name
|
|
|
+ORDER BY tableid ASC
|
|
|
+""")
|
|
|
+ xml = cur.execute(SQL("""
|
|
|
+SELECT query_to_xml_and_xmlschema({q}, false, false, ''::text);
|
|
|
+""").format(q=inner.as_string(cur))).fetchone()[0]
|
|
|
finally:
|
|
|
conn.commit()
|
|
|
response.content_type = 'application/xhtml+xml; charset=utf-8'
|
|
|
- return f"{heading}{xml[0]}{random_schema}" + '\n'.join(xml[1:])
|
|
|
+ return template("rest/query-to-xml", title="Random Prayer Generator", xml=xml)
|
|
|
|
|
|
+@route('/pyapi/xslt')
|
|
|
+def table():
|
|
|
+ title = request.query['title'] if 'title' in request.query.keys() else None
|
|
|
+ response.content_type = 'application/xhtml+xml; charset=utf-8'
|
|
|
+ return template("rest/query-to-xml-xslt", title=title)
|
|
|
|
|
|
@route('/pyapi/pg')
|
|
|
def specified():
|
|
@@ -144,14 +71,24 @@ def specified():
|
|
|
|
|
|
try:
|
|
|
with conn.cursor() as cur:
|
|
|
- xml = cur.execute(specified_statement.format(
|
|
|
- categories=sql.Literal(categories),
|
|
|
- translations=sql.Literal(translations),
|
|
|
- references=sql.Literal(references)
|
|
|
- )).fetchone()[0].splitlines()
|
|
|
+ inner = SQL("""
|
|
|
+SELECT category, translation, reference, txt
|
|
|
+ FROM getprayer(
|
|
|
+ {categories}::text[],
|
|
|
+ {translations}::text[],
|
|
|
+ {references}::text[]
|
|
|
+ ) ORDER BY ordinal ASC
|
|
|
+""").format(
|
|
|
+ categories=Literal(categories),
|
|
|
+ translations=Literal(translations),
|
|
|
+ references=Literal(references)
|
|
|
+)
|
|
|
+ xml = cur.execute(SQL("""
|
|
|
+SELECT query_to_xml_and_xmlschema({q}, false, false, ''::text);
|
|
|
+""").format(q=Literal(inner.as_string(cur)))).fetchone()[0]
|
|
|
finally:
|
|
|
conn.commit()
|
|
|
response.content_type = 'application/xhtml+xml; charset=utf-8'
|
|
|
- return f"{heading}{xml[0]}{specified_schema}" + '\n'.join(xml[1:])
|
|
|
+ return template("rest/query-to-xml", title="Prayer Generator", xml=xml)
|
|
|
|
|
|
run(host='0.0.0.0', port=11888)
|