aboutsummaryrefslogtreecommitdiff
path: root/gn2/wqflask/docs.py
blob: 3453a3c10564f257c6485c20c030f4b52b806561 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import codecs

from flask import g
from gn2.wqflask.database import database_connection
from gn2.utility.tools import get_setting

class Docs:

    def __init__(self, entry, start_vars={}):
        results = None
        with database_connection(get_setting("SQL_URI")) as conn, conn.cursor() as cursor:
            cursor.execute("SELECT Docs.title, CAST(Docs.content AS BINARY) "
                           "FROM Docs WHERE Docs.entry LIKE %s", (str(entry),))
            result = cursor.fetchone()
        self.entry = entry
        if result:
            self.title = result[0]
            self.content = result[1].decode("utf-8")
        else:
            self.title = self.entry.capitalize()
            self.content = ""
        self.editable = "false"
        # ZS: Removing option to edit to see if text still gets vandalized
        try:
            if g.user_session.record['user_email_address'] == "zachary.a.sloan@gmail.com" or g.user_session.record['user_email_address'] == "labwilliams@gmail.com":
                self.editable = "true"
        except:
            pass


def update_text(start_vars):
    content = start_vars['ckcontent']
    content = content.replace('%', '%%').replace(
        '"', '\\"').replace("'", "\\'")
    try:
        if g.user_session.record.get('user_email_address') in ["zachary.a.sloan@gmail.com", "labwilliams@gmail.com"]:
            with database_connection(get_setting("SQL_URI")) as conn, conn.cursor() as cursor:
                # Disable updates fully - all docs should be in markdown - please move them there, just like the Environments doc
                cursor.execute("UPDATEX Docs SET content=%s WHERE entry=%s",
                               (content, start_vars.get("entry_type"),))
    except:
        pass