~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/webapp/forum/__init__.py

Port the forum app to the new framework. With it also comes new cookie
infrastructure.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# IVLE
2
 
# Copyright (C) 2007-2008 The University of Melbourne
 
1
# IVLE - Informatics Virtual Learning Environment
 
2
# Copyright (C) 2007-2009 The University of Melbourne
3
3
#
4
4
# This program is free software; you can redistribute it and/or modify
5
5
# it under the terms of the GNU General Public License as published by
15
15
# along with this program; if not, write to the Free Software
16
16
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17
17
 
18
 
# App: Forum
19
 
# Author: David Coles
20
 
# Date: 12/02/2008
21
 
 
22
 
# This is an IVLE application.
23
 
# A SMF forum application for IVLE.
 
18
# Author: David Coles, Will Grant
24
19
 
25
20
import os
 
21
import re
 
22
import time
 
23
import hashlib
26
24
import urlparse
27
 
import re
28
 
 
29
 
from ivle import util
30
 
from ivle import interpret
31
 
 
32
 
def handle(req):
33
 
    """
34
 
    Handler for the Forum application.
35
 
    
36
 
    This application implements a general purpose PHP CGI loader
37
 
    """
38
 
    
39
 
    # Settings
40
 
 
41
 
    forum_base = "php/phpBB3"
42
 
 
43
 
    # Set request attributes
44
 
 
45
 
    req.styles = ["media/forum/forum.css"]
46
 
    
47
 
    # Process URL for special directives
48
 
    url = urlparse.urlparse(req.path)
49
 
    hierarchical_part = url[2]
50
 
 
51
 
    forum_page = "" # use the default forum page
52
 
    framequery = "?"
53
 
 
54
 
    board = re.match('board/(.*?)(/|$)',hierarchical_part)
55
 
    if board:
56
 
        framequery += 'f=' + board.group(1) + "&"
57
 
        forum_page = "viewforum.php"
58
 
 
59
 
    topic = re.search('topic/(.*?)(/|$)',hierarchical_part)
60
 
    if topic:
61
 
        framequery += 't=' + topic.group(1)
62
 
        forum_page = "viewtopic.php"
63
 
   
64
 
    # If the tail of the forum url is empty or a known special request
65
 
    # then wrap the page in the headers and footer and load the default or
66
 
    # special page in the ivlebody frame
67
 
    location = req.path
68
 
    if board or topic:
69
 
        location = forum_page + framequery
70
 
    
71
 
    frameurl = util.make_path(os.path.join(forum_base,location))
72
 
    req.content_type = "text/html"
73
 
    req.write_html_head_foot = True
74
 
    req.write('<object class="fullscreen" type="text/html" data="%s">'%
75
 
        (frameurl + framequery))
 
25
from urllib import quote
 
26
 
 
27
from ivle.webapp.base.xhtml import XHTMLView
 
28
from ivle.webapp.base.plugins import ViewPlugin, CookiePlugin
 
29
import ivle.util
 
30
import ivle.conf
 
31
 
 
32
class ForumView(XHTMLView):
 
33
    appname = 'forum'
 
34
 
 
35
    def __init__(self, req, path):
 
36
        self.path = path
 
37
 
 
38
    def populate(self, req, ctx):
 
39
        self.plugin_styles[Plugin] = ['forum.css']
 
40
 
 
41
        forum_base = "php/phpBB3"
 
42
 
 
43
        # Process URL for special directives
 
44
        url = urlparse.urlparse(self.path)
 
45
        hierarchical_part = url[2]
 
46
 
 
47
        forum_page = "" # use the default forum page
 
48
        framequery = "?"
 
49
 
 
50
        board = re.match('board/(.*?)(/|$)',hierarchical_part)
 
51
        if board:
 
52
            framequery += 'f=' + board.group(1) + "&"
 
53
            forum_page = "viewforum.php"
 
54
 
 
55
        topic = re.search('topic/(.*?)(/|$)',hierarchical_part)
 
56
        if topic:
 
57
            framequery += 't=' + topic.group(1)
 
58
            forum_page = "viewtopic.php"
 
59
 
 
60
        # If the tail of the forum url is empty or a known special request
 
61
        # then wrap the page in the headers and footer and load the default or
 
62
        # special page in the ivlebody frame
 
63
        location = self.path
 
64
        if board or topic:
 
65
            location = forum_page + framequery
 
66
 
 
67
        frameurl = ivle.util.make_path(os.path.join(forum_base,location))
 
68
        ctx['url'] = frameurl + framequery
 
69
 
 
70
def make_forum_cookie(user):
 
71
    secret = ivle.conf.forum_secret
 
72
 
 
73
    login = quote(user.login)
 
74
    nick = quote(user.nick)
 
75
    email = ''
 
76
    if user.email != None:
 
77
        email = quote(user.email)
 
78
 
 
79
    role = quote(str(user.role))
 
80
 
 
81
    hashtext = login + nick + email + role + secret
 
82
    hash = hashlib.md5(hashtext).hexdigest()
 
83
    data = quote(login + ':' + nick + ':' + email + ':' + role + ':' + hash)
 
84
 
 
85
    return data
 
86
 
 
87
class Plugin(ViewPlugin, CookiePlugin):
 
88
    urls = [
 
89
        ('forum', ForumView, {'path': ''}),
 
90
        ('forum/*path', ForumView),
 
91
    ]
 
92
 
 
93
    cookies = {'ivleforumcookie': make_forum_cookie}
 
94
 
 
95
    media = 'media'