]> git.donarmstrong.com Git - debbugs.git/blob - Debbugs/Config.pm
* Support setting the common values from text in /etc/debbugs/config
[debbugs.git] / Debbugs / Config.pm
1
2 package Debbugs::Config;
3
4 =head1 NAME
5
6 Debbugs::Config -- Configuration information for debbugs
7
8 =head1 SYNOPSIS
9
10  use Debbugs::Config;
11
12 # to get the compatiblity interface
13
14  use Debbugs::Config qw(:globals);
15
16 =head1 DESCRIPTION
17
18 This module provides configuration variables for all of debbugs.
19
20 =head1 CONFIGURATION FILES
21
22 The default configuration file location is /etc/debbugs/config; this
23 configuration file location can be set by modifying the
24 DEBBUGS_CONFIG_FILE env variable to point at a different location.
25
26 =cut
27
28 use warnings;
29 use strict;
30 use vars qw($VERSION $DEBUG %EXPORT_TAGS @EXPORT_OK @EXPORT $USING_GLOBALS %config);
31 use base qw(Exporter);
32
33 BEGIN {
34      # set the version for version checking
35      $VERSION     = 1.00;
36      $DEBUG = 0 unless defined $DEBUG;
37      $USING_GLOBALS = 0;
38
39      @EXPORT = ();
40      %EXPORT_TAGS = (globals => [qw($gEmailDomain $gListDomain $gWebHost $gWebHostBugDir),
41                                  qw($gWebDomain $gHTMLSuffix $gCGIDomain $gMirrors),
42                                  qw($gPackagePages $gSubscriptionDomain $gProject $gProjectTitle),
43                                  qw($gMaintainer $gMaintainerWebpage $gMaintainerEmail $gUnknownMaintainerEmail),
44                                  qw($gSubmitList $gMaintList $gQuietList $gForwardList),
45                                  qw($gDoneList $gRequestList $gSubmitterList $gControlList),
46                                  qw($gSummaryList $gMirrorList $gMailer $gBug),
47                                  qw($gBugs $gRemoveAge $gSaveOldBugs $gDefaultSeverity),
48                                  qw($gShowSeverities $gBounceFroms $gConfigDir $gSpoolDir),
49                                  qw($gIncomingDir $gWebDir $gDocDir $gMaintainerFile),
50                                  qw($gMaintainerFileOverride $gPseudoDescFile $gPackageSource),
51                                  qw($gVersionPackagesDir $gVersionIndex $gBinarySourceMap $gSourceBinaryMap),
52                                  qw(%gSeverityDisplay @gTags @gSeverityList @gStrongSeverities),
53                                  qw(%gSearchEstraier),
54                                 ],
55                      text     => [qw($gBadEmailPrefix $gHTMLTail $gHTMLExpireNote),
56                                  ],
57                      config   => [qw(%config)],
58                     );
59      @EXPORT_OK = ();
60      Exporter::export_ok_tags(qw(globals text config));
61      $EXPORT_TAGS{all} = [@EXPORT_OK];
62 }
63
64 use File::Basename qw(dirname);
65 use IO::File;
66 use Safe;
67
68 =head1 CONFIGURATION VARIABLES
69
70 =head2 General Configuration
71
72 =over
73
74 =cut
75
76 # read in the files;
77 %config = ();
78 read_config(exists $ENV{DEBBUGS_CONFIG_FILE}?$ENV{DEBBUGS_CONFIG_FILE}:'/etc/debbugs/config');
79
80 =item email_domain
81
82 The email domain of the bts
83
84 =cut
85
86 set_default(\%config,'email_domain','bugs.something');
87
88 =item list_domain
89
90 The list domain of the bts, defaults to the email domain
91
92 =cut
93
94 set_default(\%config,'list_domain',$config{email_domain});
95
96 =item web_host
97
98 The web host of the bts; defaults to the email domain
99
100 =cut
101
102 set_default(\%config,'web_host',$config{email_domain});
103
104 =item web_host_bug_dir
105
106 The directory of the web host on which bugs are kept, defaults to C<''>
107
108 =cut
109
110 set_default(\%config,'web_host_bug_dir','');
111
112 =item web_domain
113
114 Full path of the web domain where bugs are kept, defaults to the
115 concatenation of L</web_host> and L</web_host_bug_dir>
116
117 =cut
118
119 set_default(\%config,'web_domain',$config{web_host}.'/'.$config{web_host_bug_dir});
120
121 =item html_suffix
122
123 Suffix of html pages, defaults to .html
124
125 =cut
126
127 set_default(\%config,'html_suffix','.html');
128
129 =item cgi_domain
130
131 Full path of the web domain where cgi scripts are kept. Defaults to
132 the concatentation of L</web_host> and cgi.
133
134 =cut
135
136 set_default(\%config,'cgi_domain',$config{web_domain}.($config{web_domain}=~m{/$}?'':'/').'cgi');
137
138 =item mirrors
139
140 List of mirrors [What these mirrors are used for, no one knows.]
141
142 =cut
143
144
145 set_default(\%config,'mirrors',[]);
146
147 =item package_pages
148
149 Domain where the package pages are kept; links should work in a
150 package_pages/foopackage manner. Defaults to undef, which means that
151 package links will not be made.
152
153 =cut
154
155
156 set_default(\%config,'package_pages',undef);
157
158 =item subscription_domain
159
160 Domain where subscriptions to package lists happen
161
162 =cut
163
164
165 set_default(\%config,'subscription_domain',undef);
166
167 =back
168
169 =cut
170
171
172 =head2 Project Identification
173
174 =over
175
176 =item project
177
178 Name of the project
179
180 =cut
181
182 set_default(\%config,'project','Something');
183
184 =item project_title
185
186 Name of this install of Debbugs, defaults to "L</project> Debbugs Install"
187
188 =cut
189
190 set_default(\%config,'project_title',"$config{project} Debbugs Install");
191
192 =item maintainer
193
194 Name of the maintainer of this debbugs install
195
196 =cut
197
198 set_default(\%config,'maintainer','Local DebBugs Owner');
199
200 =item maintainer_webpage
201
202 Webpage of the maintainer of this install of debbugs
203
204 =cut
205
206 set_default(\%config,'maintainer_webpage',"$config{web_domain}/~owner");
207
208 =item maintainer_email
209
210 Email address of the maintainer of this Debbugs install
211
212 =cut
213
214 set_default(\%config,'maintainer_email','root@'.$config{email_domain});
215
216 =item unknown_maintainer_email
217
218 Email address where packages with an unknown maintainer will be sent
219
220 =cut
221
222 set_default(\%config,'unknown_maintainer_email',$config{maintainer_email});
223
224 =head2 BTS Mailing Lists
225
226
227 =over
228
229 =item submit_list
230
231 =item maint_list
232
233 =item forward_list
234
235 =item done_list
236
237 =item request_list
238
239 =item submitter_list
240
241 =item control_list
242
243 =item summary_list
244
245 =item mirror_list
246
247 =back
248
249 =cut
250
251 set_default(\%config,   'submit_list',   'bug-submit-list');
252 set_default(\%config,    'maint_list',    'bug-maint-list');
253 set_default(\%config,    'quiet_list',    'bug-quiet-list');
254 set_default(\%config,  'forward_list',  'bug-forward-list');
255 set_default(\%config,     'done_list',     'bug-done-list');
256 set_default(\%config,  'request_list',  'bug-request-list');
257 set_default(\%config,'submitter_list','bug-submitter-list');
258 set_default(\%config,  'control_list',  'bug-control-list');
259 set_default(\%config,  'summary_list',  'bug-summary-list');
260 set_default(\%config,   'mirror_list',   'bug-mirror-list');
261
262 =head2 Misc Options
263
264 =cut
265
266 set_default(\%config,'mailer','exim');
267 set_default(\%config,'bug','bug');
268 set_default(\%config,'bugs','bugs');
269 set_default(\%config,'remove_age',28);
270
271 set_default(\%config,'save_old_bugs',1);
272
273 set_default(\%config,'default_severity','normal');
274 set_default(\%config,'show_severities','critical, grave, normal, minor, wishlist');
275 set_default(\%config,'strong_severities',[qw(critical grave)]);
276 set_default(\%config,'severity_list',[qw(critical grave normal wishlist)]);
277 set_default(\%config,'severity_display',{critical => "Critical $config{bugs}",
278                                          grave    => "Grave $config{bugs}",
279                                          normal   => "Normal $config{bugs}",
280                                          wishlist => "Wishlist $config{bugs}",
281                                         });
282
283 set_default(\%config,'tags',[qw(patch wontfix moreinfo unreproducible fixed stable)]);
284
285 set_default(\%config,'bounce_froms','^mailer|^da?emon|^post.*mast|^root|^wpuser|^mmdf|^smt.*|'.
286             '^mrgate|^vmmail|^mail.*system|^uucp|-maiser-|^mal\@|'.
287             '^mail.*agent|^tcpmail|^bitmail|^mailman');
288
289 set_default(\%config,'config_dir',dirname(exists $ENV{DEBBUGS_CONFIG_FILE}?$ENV{DEBBUGS_CONFIG_FILE}:'/etc/debbugs/config'));
290 set_default(\%config,'spool_dir','/var/lib/debbugs/spool');
291 set_default(\%config,'incoming_dir','incoming');
292 set_default(\%config,'web_dir','/var/lib/debbugs/www');
293 set_default(\%config,'doc_dir','/var/lib/debbugs/www/txt');
294
295 set_default(\%config,'maintainer_file',$config{config_dir}.'/Maintainers');
296 set_default(\%config,'maintainer_file_override',$config{config_dir}.'/Maintainers.override');
297 set_default(\%config,'pseduo_desc_file',$config{config_dir}.'/pseudo-packages.description');
298 set_default(\%config,'package_source',$config{config_dir}.'/indices/sources');
299
300 set_default(\%config,'version_packages_dir',$config{spool_dir}.'/../versions/pkg');
301 #set_default(\%config,'version_packages_dir',$config{spool_dir}'/../versions/pkg');
302
303 =head2 Text Fields
304
305 The following are the only text fields in general use in the scripts;
306 a few additional text fields are defined in text.in, but are only used
307 in db2html and a few other specialty scripts.
308
309 Earlier versions of debbugs defined these values in /etc/debbugs/text,
310 but now they are required to be in the configuration file. [Eventually
311 the longer ones will move out into a fully fledged template system.]
312
313 =cut
314
315 =over
316
317 =item bad_email_prefix
318
319 This prefixes the text of all lines in a bad e-mail message ack.
320
321 =cut
322
323 set_default(\%config,'bad_email_prefix','');
324
325 =item html_tail
326
327 This shows up at the end of (most) html pages
328
329 =cut
330
331 set_default(\%config,'html_tail',<<END);
332  <ADDRESS>$config{maintainer} &lt;<A HREF=\"mailto:$config{maintainer_email}\">$config{maintainer_email}</A>&gt;.
333  Last modified:
334  <!--timestamp-->
335  SUBSTITUTE_DTIME
336  <!--timestamp-->
337  <P>
338  <A HREF=\"http://$config{web_domain}/\">Debian $config{bug} tracking system</A><BR>
339  Copyright (C) 1999 Darren O. Benham,
340  1997,2003 nCipher Corporation Ltd,
341  1994-97 Ian Jackson.
342  </ADDRESS>
343 END
344
345
346 =item html_expire_note
347
348 This message explains what happens to archive/remove-able bugs
349
350 =cut
351
352 set_default(\%config,'html_expire_note',
353             "(Closed $config{bugs} are archived $config{remove_age} days after the last related message is received.)");
354
355 =back
356
357 =cut
358
359
360 sub read_config{
361      my ($conf_file) = @_;
362      # first, figure out what type of file we're reading in.
363      my $fh = new IO::File $conf_file,'r'
364           or die "Unable to open configuration file $conf_file for reading: $!";
365      # A new version configuration file must have a comment as its first line
366      my $first_line = <$fh>;
367      my ($version) = $first_line =~ /VERSION:\s*(\d+)/i;
368      if (defined $version) {
369           if ($version == 1) {
370                # Do something here;
371                die "Version 1 configuration files not implemented yet";
372           }
373           else {
374                die "Version $version configuration files are not supported";
375           }
376      }
377      else {
378           # Ugh. Old configuration file
379           # What we do here is we create a new Safe compartment
380           # so fucked up crap in the config file doesn't sink us.
381           my $cpt = new Safe or die "Unable to create safe compartment";
382           # perldoc Opcode; for details
383           $cpt->permit('require',':filesys_read','entereval','caller','pack','unpack','dofile');
384           $cpt->reval(q($gMaintainerFile = 'FOOOO'));
385           $cpt->reval(qq(require '$conf_file';));
386           die "Error in configuration file: $@" if $@;
387           # Now what we do is check out the contents of %EXPORT_TAGS to see exactly which variables
388           # we want to glob in from the configuration file
389           for my $variable (@{$EXPORT_TAGS{globals}}) {
390                my ($hash_name,$glob_name,$glob_type) = __convert_name($variable);
391                my $var_glob = $cpt->varglob($glob_name);
392                my $value; #= $cpt->reval("return $variable");
393                #print STDERR $value,qq(\n);
394                if (defined $var_glob) {{
395                     no strict 'refs';
396                     if ($glob_type eq '%') {
397                          $value = {%{*{$var_glob}}};
398                     }
399                     elsif ($glob_type eq '@') {
400                          $value = [@{*{$var_glob}}];
401                     }
402                     else {
403                          $value = ${*{$var_glob}};
404                     }
405                     # We punt here, because we can't tell if the value was
406                     # defined intentionally, or if it was just left alone;
407                     # this tries to set sane defaults.
408                     set_default(\%config,$hash_name,$value) if defined $value;
409                }}
410           }
411      }
412 }
413
414 sub __convert_name{
415      my ($variable) = @_;
416      my $hash_name = $variable;
417      $hash_name =~ s/^([\$\%\@])g//;
418      my $glob_type = $1;
419      my $glob_name = 'g'.$hash_name;
420      $hash_name =~ s/(HTML|CGI)/ucfirst(lc($1))/ge;
421      $hash_name =~ s/^([A-Z]+)/lc($1)/e;
422      $hash_name =~ s/([A-Z]+)/'_'.lc($1)/ge;
423      return $hash_name unless wantarray;
424      return ($hash_name,$glob_name,$glob_type);
425 }
426
427 # set_default
428
429 # sets the configuration hash to the default value if it's not set,
430 # otherwise doesn't do anything
431 # If $USING_GLOBALS, then sets an appropriate global.
432
433 sub set_default{
434      my ($config,$option,$value) = @_;
435      my $varname;
436      if ($USING_GLOBALS) {
437           # fix up the variable name
438           $varname = 'g'.join('',map {ucfirst $_} split /_/, $option);
439           # Fix stupid HTML names
440           $varname =~ s/(Html|Cgi)/uc($1)/ge;
441      }
442      # update the configuration value
443      if (not $USING_GLOBALS and not exists $config{$option}) {
444           $config{$option} = $value;
445      }
446      elsif ($USING_GLOBALS) {{
447           no strict 'refs';
448           # Need to check if a value has already been set in a global
449           if (defined *{"Debbugs::Config::${varname}"}) {
450                $config{$option} = *{"Debbugs::Config::${varname}"};
451           }
452      }}
453      if ($USING_GLOBALS) {{
454           no strict 'refs';
455           *{"Debbugs::Config::${varname}"} = $config{$option};
456      }}
457 }
458
459
460 ### import magick
461
462 # All we care about here is whether we've been called with the globals or text option;
463 # if so, then we need to export some symbols back up.
464 # In any event, we call exporter.
465
466 sub import {
467      if (grep /^:(?:text|globals)$/, @_) {
468           $USING_GLOBALS=1;
469           for my $variable (map {@$_} @EXPORT_TAGS{map{(/^:(text|globals)$/?($1):())} @_}) {
470                my $tmp = $variable;
471                no strict 'refs';
472                # Yes, I don't care if these are only used once
473                no warnings 'once';
474                # No, it doesn't bother me that I'm assigning an undefined value to a typeglob
475                no warnings 'misc';
476                my ($hash_name,$glob_name,$glob_type) = __convert_name($variable);
477                $tmp =~ s/^[\%\$\@]//;
478                *{"Debbugs::Config::${tmp}"} = ref($config{$hash_name})?$config{$hash_name}:\$config{$hash_name};
479           }
480      }
481      Debbugs::Config->export_to_level(1,@_);
482 }
483
484
485 1;