Code

Features added:
[roundup.git] / roundup / templates / classic / dbinit.py
1 #
2 # Copyright (c) 2001 Bizar Software Pty Ltd (http://www.bizarsoftware.com.au/)
3 # This module is free software, and you may redistribute it and/or modify
4 # under the same terms as Python, so long as this copyright message and
5 # disclaimer are retained in their original form.
6 #
7 # IN NO EVENT SHALL BIZAR SOFTWARE PTY LTD BE LIABLE TO ANY PARTY FOR
8 # DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING
9 # OUT OF THE USE OF THIS CODE, EVEN IF THE AUTHOR HAS BEEN ADVISED OF THE
10 # POSSIBILITY OF SUCH DAMAGE.
11 #
12 # BIZAR SOFTWARE PTY LTD SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
13 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
14 # FOR A PARTICULAR PURPOSE.  THE CODE PROVIDED HEREUNDER IS ON AN "AS IS"
15 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
16 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
17
18 # $Id: dbinit.py,v 1.12 2001-12-02 05:06:16 richard Exp $
20 import os
22 import instance_config
23 from roundup import roundupdb
24 import select_db
26 from roundup.roundupdb import Class, FileClass
28 class Database(roundupdb.Database, select_db.Database):
29     ''' Creates a hybrid database from: 
30          . the selected database back-end from select_db
31          . the roundup extensions from roundupdb 
32     ''' 
33     pass 
35 class IssueClass(roundupdb.IssueClass):
36     ''' issues need the email information
37     '''
38     INSTANCE_NAME = instance_config.INSTANCE_NAME
39     ISSUE_TRACKER_WEB = instance_config.ISSUE_TRACKER_WEB
40     ISSUE_TRACKER_EMAIL = instance_config.ISSUE_TRACKER_EMAIL
41     ADMIN_EMAIL = instance_config.ADMIN_EMAIL
42     MAILHOST = instance_config.MAILHOST
43     MESSAGES_TO_AUTHOR = instance_config.MESSAGES_TO_AUTHOR
44     EMAIL_SIGNATURE_POSITION = instance_config.EMAIL_SIGNATURE_POSITION
46  
47 def open(name=None):
48     ''' as from the roundupdb method openDB 
49  
50     ''' 
51     from roundup.hyperdb import String, Password, Date, Link, Multilink
53     # open the database
54     db = Database(instance_config.DATABASE, name)
56     # Now initialise the schema. Must do this each time.
57     pri = Class(db, "priority", 
58                     name=String(), order=String())
59     pri.setkey("name")
61     stat = Class(db, "status", 
62                     name=String(), order=String())
63     stat.setkey("name")
65     keyword = Class(db, "keyword", 
66                     name=String())
67     keyword.setkey("name")
69     user = Class(db, "user", 
70                     username=String(),   password=Password(),
71                     address=String(),    realname=String(), 
72                     phone=String(),      organisation=String())
73     user.setkey("username")
75     msg = FileClass(db, "msg", 
76                     author=Link("user"), recipients=Multilink("user"), 
77                     date=Date(),         summary=String(), 
78                     files=Multilink("file"))
80     file = FileClass(db, "file", 
81                     name=String(),       type=String())
83     issue = IssueClass(db, "issue", 
84                     assignedto=Link("user"), topic=Multilink("keyword"),
85                     priority=Link("priority"), status=Link("status"))
86     issue.setkey('title')
88     import detectors
89     detectors.init(db)
91     return db
92  
93 def init(adminpw): 
94     ''' as from the roundupdb method initDB 
95  
96     Open the new database, and set up a bunch of attributes.
98     ''' 
99     dbdir = os.path.join(instance_config.DATABASE, 'files')
100     if not os.path.isdir(dbdir):
101         os.makedirs(dbdir)
103     db = open("admin")
104     db.clear()
106     pri = db.getclass('priority')
107     pri.create(name="critical", order="1")
108     pri.create(name="urgent", order="2")
109     pri.create(name="bug", order="3")
110     pri.create(name="feature", order="4")
111     pri.create(name="wish", order="5")
113     stat = db.getclass('status')
114     stat.create(name="unread", order="1")
115     stat.create(name="deferred", order="2")
116     stat.create(name="chatting", order="3")
117     stat.create(name="need-eg", order="4")
118     stat.create(name="in-progress", order="5")
119     stat.create(name="testing", order="6")
120     stat.create(name="done-cbb", order="7")
121     stat.create(name="resolved", order="8")
123     user = db.getclass('user')
124     user.create(username="admin", password=adminpw, 
125                                   address=instance_config.ADMIN_EMAIL)
126     db.commit()
129 # $Log: not supported by cvs2svn $
130 # Revision 1.11  2001/12/01 07:17:50  richard
131 # . We now have basic transaction support! Information is only written to
132 #   the database when the commit() method is called. Only the anydbm
133 #   backend is modified in this way - neither of the bsddb backends have been.
134 #   The mail, admin and cgi interfaces all use commit (except the admin tool
135 #   doesn't have a commit command, so interactive users can't commit...)
136 # . Fixed login/registration forwarding the user to the right page (or not,
137 #   on a failure)
139 # Revision 1.10  2001/11/26 22:55:56  richard
140 # Feature:
141 #  . Added INSTANCE_NAME to configuration - used in web and email to identify
142 #    the instance.
143 #  . Added EMAIL_SIGNATURE_POSITION to indicate where to place the roundup
144 #    signature info in e-mails.
145 #  . Some more flexibility in the mail gateway and more error handling.
146 #  . Login now takes you to the page you back to the were denied access to.
148 # Fixed:
149 #  . Lots of bugs, thanks Roché and others on the devel mailing list!
151 # Revision 1.9  2001/10/30 00:54:45  richard
152 # Features:
153 #  . #467129 ] Lossage when username=e-mail-address
154 #  . #473123 ] Change message generation for author
155 #  . MailGW now moves 'resolved' to 'chatting' on receiving e-mail for an issue.
157 # Revision 1.8  2001/10/09 07:25:59  richard
158 # Added the Password property type. See "pydoc roundup.password" for
159 # implementation details. Have updated some of the documentation too.
161 # Revision 1.7  2001/08/07 00:24:43  richard
162 # stupid typo
164 # Revision 1.6  2001/08/07 00:15:51  richard
165 # Added the copyright/license notice to (nearly) all files at request of
166 # Bizar Software.
168 # Revision 1.5  2001/08/02 06:38:17  richard
169 # Roundupdb now appends "mailing list" information to its messages which
170 # include the e-mail address and web interface address. Templates may
171 # override this in their db classes to include specific information (support
172 # instructions, etc).
174 # Revision 1.4  2001/07/29 07:01:39  richard
175 # Added vim command to all source so that we don't get no steenkin' tabs :)
177 # Revision 1.3  2001/07/24 10:46:22  anthonybaxter
178 # Added templatebuilder module. two functions - one to pack up the html base,
179 # one to unpack it. Packed up the two standard templates into htmlbases.
180 # Modified __init__ to install them.
182 # __init__.py magic was needed for the rather high levels of wierd import magic.
183 # Reducing level of import magic == (good, future)
185 # Revision 1.2  2001/07/24 01:06:43  richard
186 # Oops - accidentally duped the keywords class
188 # Revision 1.1  2001/07/23 23:28:43  richard
189 # Adding the classic template
191 # Revision 1.4  2001/07/23 08:45:28  richard
192 # ok, so now "./roundup-admin init" will ask questions in an attempt to get a
193 # workable instance_home set up :)
194 # _and_ anydbm has had its first test :)
196 # Revision 1.3  2001/07/23 07:14:41  richard
197 # Moved the database backends off into backends.
199 # Revision 1.2  2001/07/23 06:25:50  richard
200 # relfected the move to roundup/backends
202 # Revision 1.1  2001/07/23 04:33:21  anthonybaxter
203 # split __init__.py into 2. dbinit and instance_config.
205 # Revision 1.1  2001/07/23 03:50:46  anthonybaxter
206 # moved templates to proper location
208 # Revision 1.2  2001/07/22 12:09:32  richard
209 # Final commit of Grande Splite
212 # vim: set filetype=python ts=4 sw=4 et si