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

« back to all changes in this revision

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

  • Committer: William Grant
  • Date: 2009-02-23 23:47:02 UTC
  • mfrom: (1099.1.211 new-dispatch)
  • Revision ID: grantw@unimelb.edu.au-20090223234702-db4b1llly46ignwo
Merge from lp:~ivle-dev/ivle/new-dispatch.

Pretty much everything changes. Reread the setup docs. Backup your databases.
Every file is now in a different installed location, the configuration system
is rewritten, the dispatch system is rewritten, URLs are different, the
database is different, worksheets and exercises are no longer on the
filesystem, we use a templating engine, jail service protocols are rewritten,
we don't repeat ourselves, we have authorization rewritten, phpBB is gone,
and probably lots of other things that I cannot remember.

This is certainly the biggest commit I have ever made, and hopefully
the largest I ever will.

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.config
 
31
 
 
32
class ForumView(XHTMLView):
 
33
    appname = 'forum'
 
34
 
 
35
    def __init__(self, req, path):
 
36
        self.path = path
 
37
 
 
38
    def authorize(self, req):
 
39
        return req.user is not None
 
40
 
 
41
    def populate(self, req, ctx):
 
42
        self.plugin_styles[Plugin] = ['forum.css']
 
43
        forum_base = req.config.plugin_configs[Plugin]['base']
 
44
 
 
45
        ctx['url'] = ivle.util.make_path(os.path.join(forum_base, self.path))
 
46
 
 
47
class ForumBoardView(ForumView):
 
48
    def __init__(self, req, board):
 
49
        self.path = 'viewforum.php?f=' + board
 
50
 
 
51
class ForumTopicView(ForumView):
 
52
    def __init__(self, req, topic):
 
53
        self.path = 'viewtopic.php?t=' + topic
 
54
 
 
55
def make_forum_cookie(user):
 
56
    secret = ivle.config.Config().plugin_configs[Plugin]['secret']
 
57
 
 
58
    login = quote(user.login)
 
59
    nick = quote(user.nick)
 
60
    email = ''
 
61
    if user.email != None:
 
62
        email = quote(user.email)
 
63
 
 
64
    role = quote(str(user.role))
 
65
 
 
66
    hashtext = login + nick + email + role + secret
 
67
    hash = hashlib.md5(hashtext).hexdigest()
 
68
    data = quote(login + ':' + nick + ':' + email + ':' + role + ':' + hash)
 
69
 
 
70
    return data
 
71
 
 
72
class Plugin(ViewPlugin, CookiePlugin, MediaPlugin):
 
73
    urls = [
 
74
        ('forum', ForumView, {'path': ''}),
 
75
        ('forum/+board/:board', ForumBoardView),
 
76
        ('forum/+topic/:topic', ForumTopicView),
 
77
        ('forum/*path', ForumView),
 
78
    ]
 
79
 
 
80
    tabs = [
 
81
        ('forum', 'Forum', 'Discussion boards for material relating to '
 
82
         'Informatics, IVLE and Python.', 'forum.png', 'forum', 4)
 
83
    ]
 
84
 
 
85
    cookies = {'ivleforumcookie': make_forum_cookie}
 
86
 
 
87
    media = 'media'