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

« back to all changes in this revision

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

Merged from new-dispatch branch.
This branch is now a child of new-dispatch (until that branch is merged with
    trunk).

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, MediaPlugin
 
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
        ctx['url'] = ivle.util.make_path(os.path.join(forum_base, self.path))
 
44
 
 
45
class ForumBoardView(ForumView):
 
46
    def __init__(self, req, board):
 
47
        self.path = 'viewforum.php?f=' + board
 
48
 
 
49
class ForumTopicView(ForumView):
 
50
    def __init__(self, req, topic):
 
51
        self.path = 'viewtopic.php?t=' + topic
 
52
 
 
53
def make_forum_cookie(user):
 
54
    secret = ivle.conf.forum_secret
 
55
 
 
56
    login = quote(user.login)
 
57
    nick = quote(user.nick)
 
58
    email = ''
 
59
    if user.email != None:
 
60
        email = quote(user.email)
 
61
 
 
62
    role = quote(str(user.role))
 
63
 
 
64
    hashtext = login + nick + email + role + secret
 
65
    hash = hashlib.md5(hashtext).hexdigest()
 
66
    data = quote(login + ':' + nick + ':' + email + ':' + role + ':' + hash)
 
67
 
 
68
    return data
 
69
 
 
70
class Plugin(ViewPlugin, CookiePlugin, MediaPlugin):
 
71
    urls = [
 
72
        ('forum', ForumView, {'path': ''}),
 
73
        ('forum/+board/:board', ForumBoardView),
 
74
        ('forum/+topic/:topic', ForumTopicView),
 
75
        ('forum/*path', ForumView),
 
76
    ]
 
77
 
 
78
    cookies = {'ivleforumcookie': make_forum_cookie}
 
79
 
 
80
    media = 'media'