aboutsummaryrefslogtreecommitdiffhomepage
path: root/apioforum/forum.py
blob: 305cb51f53dcba1b296f1e779e9e31d65d410140 (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
# view threads in a forum
# currently there is only ever one forum however
# ^ aha we never removed this. we should keep it. it is funny.

from flask import (
    Blueprint, render_template, request,
    g, redirect, url_for, flash, abort
)

from .db import get_db
from .mdrender import render
from .roles import get_forum_roles,has_permission,is_bureaucrat,get_user_role, permissions as role_permissions
from .permissions import is_admin
from sqlite3 import OperationalError
import datetime
import math
import functools

THREADS_PER_PAGE = 35

bp = Blueprint("forum", __name__, url_prefix="/")

@bp.route("/")
def not_actual_index():
    return redirect("/1")

def get_avail_tags(forum_id):
    db = get_db()
    tags = db.execute("""
    	WITH RECURSIVE fs AS
    		(SELECT * FROM forums WHERE id = ?
    		 UNION ALL
    		 SELECT forums.* FROM forums, fs WHERE fs.parent=forums.id)
    	SELECT * FROM tags
    	WHERE tags.forum in (SELECT id FROM fs)
    	ORDER BY id;    	
    	""",(forum_id,)).fetchall()
    return tags 

def forum_path(forum_id):
    db = get_db()
    ancestors = db.execute("""
        WITH RECURSIVE fs AS
            (SELECT * FROM forums WHERE id = ?
             UNION ALL
             SELECT forums.* FROM forums, fs WHERE fs.parent=forums.id)
        SELECT * FROM fs;
        """,(forum_id,)).fetchall()
    ancestors.reverse()
    return ancestors

def forum_route(relative_path, pagination=False, **kwargs):
    def decorator(f):
        path = "/<int:forum_id>"
        if relative_path != "":
            path += "/" + relative_path

        @bp.route(path, **kwargs)
        @functools.wraps(f)
        def wrapper(forum_id, *args, **kwargs):
            db = get_db()
            forum = db.execute("SELECT * FROM forums WHERE id = ?",
                    (forum_id,)).fetchone()
            if forum == None:
                abort(404)
            return f(forum, *args, **kwargs)

        if pagination:
            wrapper = bp.route(path+"/page/<int:page>", **kwargs)(wrapper)

    return decorator

def requires_permission(permission, login_required=True):
    def decorator(f):
        @functools.wraps(f)
        def wrapper(forum, *args, **kwargs):
            if not has_permission(forum['id'],g.user,permission,login_required):
                abort(403)
            return f(forum, *args, **kwargs)
        return wrapper
    return decorator

def requires_bureaucrat(f):
    @functools.wraps(f)
    @requires_permission("p_view_forum")
    def wrapper(forum, *args, **kwargs):
        if not is_bureaucrat(forum['id'], g.user):
            abort(403)
        return f(forum, *args, **kwargs)
    return wrapper


@forum_route("",pagination=True)
@requires_permission("p_view_forum", login_required=False)
def view_forum(forum,page=1):
    if page < 1:
        abort(400)
    db = get_db()
    threads = db.execute(
        """SELECT
            threads.id, threads.title, threads.creator, threads.created,
            threads.updated, threads.poll, number_of_posts.num_replies,
            most_recent_posts.created as mrp_created,
            most_recent_posts.author as mrp_author,
            most_recent_posts.id as mrp_id,
            most_recent_posts.content as mrp_content,
            most_recent_posts.deleted as mrp_deleted
        FROM threads
        INNER JOIN most_recent_posts ON most_recent_posts.thread = threads.id
        INNER JOIN number_of_posts ON number_of_posts.thread = threads.id
        WHERE threads.forum = ?
        ORDER BY threads.updated DESC
        LIMIT ? OFFSET ?;
        """,(
            forum['id'],
            THREADS_PER_PAGE,
            (page-1)*THREADS_PER_PAGE,
        )).fetchall()

    # XXX: update this when thread filtering happens
    num_threads = db.execute("SELECT count(*) AS count FROM threads WHERE threads.forum = ?",(forum['id'],)).fetchone()['count']
    max_pageno = math.ceil(num_threads/THREADS_PER_PAGE)
    
    thread_tags = {}
    thread_polls = {}

    avail_tags = get_avail_tags(forum['id'])

    #todo: somehow optimise this
    for thread in threads:
        thread_tags[thread['id']] = db.execute(
            """SELECT tags.* FROM tags
            INNER JOIN thread_tags ON thread_tags.tag = tags.id
            WHERE thread_tags.thread = ?
            ORDER BY tags.id;
            """,(thread['id'],)).fetchall()

        if thread['poll'] is not None:
            # todo: make this not be duplicated from thread.py
            poll_row= db.execute("""
                SELECT polls.*,total_vote_counts.total_votes FROM polls
                LEFT OUTER JOIN total_vote_counts ON polls.id = total_vote_counts.poll
                WHERE polls.id = ?;                
                """,(thread['poll'],)).fetchone()
            options = db.execute("""
                SELECT poll_options.*, vote_counts.num
                FROM poll_options
                LEFT OUTER JOIN vote_counts  ON poll_options.poll = vote_counts.poll
                                            AND poll_options.option_idx = vote_counts.option_idx
                WHERE poll_options.poll = ?
                ORDER BY option_idx asc;
                """,(poll_row['id'],)).fetchall()

            poll = {}
            poll.update(poll_row)
            poll['options'] = options
            poll['total_votes']=poll['total_votes'] or 0
            thread_polls[thread['id']]=poll


    subforums_rows = db.execute("""
            SELECT max(threads.updated) as updated, forums.* FROM forums
            LEFT OUTER JOIN threads ON threads.forum=forums.id 
            WHERE parent = ? AND unlisted = 0
            GROUP BY forums.id
            ORDER BY name ASC
            """,(forum['id'],)).fetchall()
    subforums = []
    for s in subforums_rows:
        a={}
        a.update(s)
        if a['updated'] is not None:
            a['updated'] = datetime.datetime.fromisoformat(a['updated'])
        if has_permission(a['id'],g.user,"p_view_forum",login_required=False):
            subforums.append(a)

    bureaucrats = db.execute("""
            SELECT user FROM role_assignments
            WHERE role = 'bureaucrat' AND forum = ?
            """,(forum['id'],)).fetchall()
    bureaucrats = [b[0] for b in bureaucrats]
        
    return render_template("view_forum.html",
            forum=forum,
            subforums=subforums,
            threads=threads,
            thread_tags=thread_tags,
            bureaucrats=bureaucrats,
            thread_polls=thread_polls,
            avail_tags=avail_tags,
            max_pageno=max_pageno,
            page=page,
            )

@forum_route("create_thread",methods=("GET","POST"))
@requires_permission("p_create_threads")
@requires_permission("p_view_forum")
def create_thread(forum):
    db = get_db()
    forum = db.execute("SELECT * FROM forums WHERE id = ?",(forum['id'],)).fetchone()
    if forum is None:
        flash("that forum doesn't exist")
        return redirect(url_for('index'))
    
    if g.user is None:
        flash("you need to be logged in to create a thread")
        return redirect(url_for('index'))
        
    if request.method == "POST":
        title = request.form['title']
        content = request.form['content']
        err = None
        if len(title.strip()) == 0 or len(content.strip()) == 0:
            err = "title and content can't be empty"

        if err is None:
            cur = db.cursor()
            cur.execute(
                "INSERT INTO threads (title,creator,created,updated,forum) VALUES (?,?,current_timestamp,current_timestamp,?);",
                (title,g.user,forum['id'])
            )
            thread_id = cur.lastrowid
            cur.execute(
                "INSERT INTO posts (thread,created,author,content) VALUES (?,current_timestamp,?,?);",
                (thread_id,g.user,content)
            )
            db.commit()

            from . import webhooks
            thread = db.execute("select * from threads where id = ?",(thread_id,)).fetchone()
            webhooks.do_webhooks_thread(forum['id'],thread)
            return redirect(url_for('thread.view_thread',thread_id=thread_id))
        flash(err)
        
        
    return render_template("create_thread.html")

@forum_route("roles",methods=("GET","POST"))
@requires_bureaucrat
def edit_roles(forum):
    db = get_db()
    role_configs = db.execute(
        "SELECT * FROM role_config WHERE forum = ? ORDER BY ID ASC",
        (forum['id'],)).fetchall()

    if request.method == "POST":
        for config in role_configs:
            if 'delete_' + config['role'] in request.form:
                db.execute(
                    "DELETE FROM role_config WHERE forum = ? AND role = ?",
                    (forum['id'],config['role']))
            elif 'roleconfig_' + config['role'] in request.form:
                for p in role_permissions:
                    permission_setting =\
                        f"perm_{config['role']}_{p}" in request.form 
                    db.execute(f"""
                        UPDATE role_config SET {p} = ?
                            WHERE forum = ? AND role = ?;
                        """, 
                        (permission_setting,forum['id'], config['role']))
        db.commit()
        flash('roles sucessfully enroled')
        return redirect(url_for('forum.view_forum',forum_id=forum['id']))

    role_config_roles = [c['role'] for c in role_configs]
    other_roles = [role for role in get_forum_roles(forum['id']) if not role in role_config_roles]

    return render_template("edit_permissions.html",
            forum=forum,
            role_configs=role_configs,
            other_roles=other_roles
            )

@forum_route("roles/new",methods=["POST"])
@requires_bureaucrat
def add_role(forum):
    name = request.form['role'].strip()
    if not all(c in (" ","-","_") or c.isalnum() for c in name) \
            or len(name) > 32:
        flash("role name must contain no special characters")
        return redirect(url_for('forum.edit_roles',forum_id=forum['id']))
    if name == "bureaucrat":
        flash("cannot configure permissions for bureaucrat")
        return redirect(url_for('forum.edit_roles',forum_id=forum['id']))

    db = get_db()

    existing_config = db.execute("""
        SELECT * FROM role_config WHERE forum = ? AND role = ?
        """,(forum['id'],name)).fetchone()
    if not existing_config:
        db.execute("INSERT INTO role_config (forum,role) VALUES (?,?)",
                (forum['id'],name))
        db.commit()
    return redirect(url_for('forum.edit_roles',forum_id=forum['id']))

@forum_route("role",methods=["GET","POST"])
@requires_permission("p_approve")
def view_user_role(forum):
    if request.method == "POST":
        return redirect(url_for( 'forum.edit_user_role',
            username=request.form['user'],forum_id=forum['id']))
    else:
        return render_template("role_assignment.html",forum=forum)

@forum_route("role/<username>",methods=["GET","POST"])
@requires_permission("p_approve")
def edit_user_role(forum, username):
    db = get_db()
    if request.method == "POST":
        user = db.execute("SELECT * FROM users WHERE username = ?;",(username,)).fetchone()
        if user == None:
            return redirect(url_for('forum.edit_user_role',
                username=username,forum_id=forum['id']))
        role = request.form['role']
        if role not in get_forum_roles(forum['id']) and role != "" and role != "bureaucrat":
            flash("no such role")
            return redirect(url_for('forum.edit_user_role',
                username=username,forum_id=forum['id']))
        if not is_bureaucrat(forum['id'],g.user) and role != "approved" and role != "":
            # only bureaucrats can assign arbitrary roles
            abort(403)
        existing = db.execute(
            "SELECT * FROM role_assignments WHERE user = ? AND forum = ?;",
                (username,forum['id'])).fetchone()
        if existing:
            db.execute("DELETE FROM role_assignments WHERE user = ? AND forum = ?;",(username,forum['id']))
        if role != "":
            db.execute(
                "INSERT INTO role_assignments (user,role,forum) VALUES (?,?,?);",
                (username,role,forum['id']))
        db.commit()
        flash("role assigned assignedly")
        return redirect(url_for('forum.view_forum',forum_id=forum['id']))
    else:
        user = db.execute("SELECT * FROM users WHERE username = ?;",(username,)).fetchone()
        if user == None:
            return render_template("role_assignment.html",
                    forum=forum,user=username,invalid_user=True)
        r = db.execute(
                "SELECT role FROM role_assignments WHERE user = ? AND forum = ?;",
                    (username,forum['id'])).fetchone()
        if not r:
            assigned_role = ""
        else:
            assigned_role = r[0]
        role = get_user_role(forum['id'], username)
        if is_bureaucrat(forum['id'], g.user):
            roles = get_forum_roles(forum['id'])
            roles.remove("other")
            roles.add("bureaucrat")
        else:
            roles = ["approved"]
        return render_template("role_assignment.html",
                forum=forum,user=username,role=role,
                assigned_role=assigned_role,forum_roles=roles)

def forum_config_page(forum, create=False):
    db = get_db()
    if request.method == "POST":
        name = request.form["name"]
        desc = request.form["description"]
        if len(name) > 100 or len(name.strip()) == 0:
            flash("invalid name")
            return redirect(url_for('forum.edit_forum',forum_id=forum['id']))
        elif len(desc) > 6000:
            flash("invalid description")
            return redirect(url_for('forum.edit_forum',forum_id=forum['id']))
        if not create:
            db.execute("UPDATE forums SET name = ?, description = ? WHERE id = ?",
                    (name,desc,forum['id']))
            fid = forum['id']
        else:
            cur = db.cursor()
            cur.execute(
                "INSERT INTO forums (name,description,parent) VALUES (?,?,?)",
                    (name,desc,forum['id']))
            new = cur.lastrowid
            # creator becomes bureaucrat of new forum
            db.execute("INSERT INTO role_assignments (role,user,forum) VALUES (?,?,?)",
                    ("bureaucrat",g.user,new))
            fid = new
        db.commit()
        return redirect(url_for('forum.view_forum',forum_id=fid))
    else:
        if create:
            name = ""
            desc = ""
        else:
            name = forum['name']
            desc = forum['description']
        cancel_link = url_for('forum.view_forum',forum_id=forum['id'])
        return render_template("edit_forum.html",create=create,
                name=name,description=desc,cancel_link=cancel_link)

@forum_route("edit",methods=["GET","POST"])
@requires_bureaucrat
def edit_forum(forum):
    return forum_config_page(forum)

@forum_route("create",methods=["GET","POST"])
@requires_permission("p_create_subforum")
def create_forum(forum):
    return forum_config_page(forum,create=True)

#@forum_route("unlisted")
#def view_unlisted(forum):
#    if not is_admin: abort(403) # why doesn't this fucking work
#    db = get_db()
#    unlisted = db.execute(
#        "SELECT * FROM forums WHERE unlisted = 1 AND parent = ?",(forum['id'],))
#    return render_template('view_unlisted.html',forum=forum,unlisted=unlisted)

@bp.route("/search")
def search():
    db = get_db()
    query = request.args["q"]
    try:
        results = db.execute("""
        SELECT posts.id, highlight(posts_fts, 0, '<mark>', '</mark>') AS 
            content, posts.thread, posts.author, posts.created, posts.edited, 
            posts.updated, threads.title AS thread_title
        FROM posts_fts
        JOIN posts ON posts_fts.rowid = posts.id
        JOIN threads ON threads.id = posts.thread
        JOIN public_posts ON public_posts.id = posts.id
        WHERE posts_fts MATCH ? AND public_posts.public
        ORDER BY rank
        LIMIT 50
        """, (query,)).fetchall()
    except OperationalError as e:
        print(e)
        flash('your search query was malformed.')
        return redirect(url_for("forum.not_actual_index"))

    display_thread_id = [ True ] * len(results)
    last_thread = None
    for ix, result in enumerate(results):
        if result["thread"] == last_thread:
            display_thread_id[ix] = False
        last_thread = result["thread"]
    return render_template("search_results.html", results=results, query=query, display_thread_id=display_thread_id)