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

« back to all changes in this revision

Viewing changes to ivle/webapp/admin/projectservice.py

  • Committer: William Grant
  • Date: 2010-02-23 08:55:42 UTC
  • mto: This revision was merged to the branch mainline in revision 1674.
  • Revision ID: grantw@unimelb.edu.au-20100223085542-r8xw14bxxoraza51
Permit underscores in all names.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# IVLE - Informatics Virtual Learning Environment
 
2
# Copyright (C) 2007-2009 The University of Melbourne
 
3
#
 
4
# This program is free software; you can redistribute it and/or modify
 
5
# it under the terms of the GNU General Public License as published by
 
6
# the Free Software Foundation; either version 2 of the License, or
 
7
# (at your option) any later version.
 
8
#
 
9
# This program is distributed in the hope that it will be useful,
 
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
# GNU General Public License for more details.
 
13
#
 
14
# You should have received a copy of the GNU General Public License
 
15
# along with this program; if not, write to the Free Software
 
16
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
17
 
 
18
# Author: Nick Chadwick
 
19
 
 
20
import datetime
 
21
import ivle.database
 
22
from ivle.database import ProjectSet, Project, Subject, Semester, Offering
 
23
 
 
24
from ivle.webapp.base.forms import VALID_URL_NAME
 
25
from ivle.webapp.base.rest import (XHTMLRESTView, named_operation,
 
26
                                   require_permission)
 
27
from ivle.webapp.errors import NotFound, BadRequest
 
28
 
 
29
class ProjectSetRESTView(XHTMLRESTView):
 
30
    """Rest view for a projectset.
 
31
    
 
32
    Add new, delete, edit functionality is given here."""
 
33
    template = "templates/projectset_fragment.html"
 
34
 
 
35
    def _project_url(self, project):
 
36
        return "/subjects/%s/%s/%s/+projects/%s" % \
 
37
                (self.context.offering.subject.short_name,
 
38
                 self.context.offering.semester.year,
 
39
                 self.context.offering.semester.semester,
 
40
                 project.short_name)
 
41
 
 
42
    @named_operation('edit')
 
43
    def add_project(self, req, name, short_name, deadline, synopsis):
 
44
        """Add a Project to this ProjectSet"""
 
45
        if not VALID_URL_NAME.match(short_name):
 
46
            raise BadRequest(
 
47
                "Project names must consist of an alphanumeric character "
 
48
                "followed by any number of alphanumerics, ., +, - or _.")
 
49
 
 
50
        if req.store.find(
 
51
            Project,
 
52
            Project.short_name == unicode(short_name),
 
53
            Project.project_set_id == ProjectSet.id,
 
54
            ProjectSet.offering == self.context.offering).one():
 
55
            raise BadRequest(
 
56
                "A project with that URL name already exists in this offering."
 
57
                )
 
58
 
 
59
        new_project = Project()
 
60
        new_project.name = unicode(name)
 
61
        new_project.short_name = unicode(short_name)
 
62
        new_project.synopsis = unicode(synopsis)
 
63
        try:
 
64
            new_project.deadline = datetime.datetime.strptime(deadline, '%Y-%m-%d %H:%M:%S')
 
65
        except ValueError:
 
66
            raise BadRequest("deadline must be in YYYY-MM-DD HH:MM:ss")
 
67
        new_project.project_set = self.context
 
68
 
 
69
        req.store.add(new_project)
 
70
        req.store.flush()
 
71
    
 
72
        self.template = "templates/project_fragment.html"
 
73
        self.ctx['req'] = req
 
74
        self.ctx['project'] = new_project
 
75
 
 
76
        return {'success': True, 'projectset_id': self.context.id}