Constants.pm 22.8 KB
Newer Older
1 2 3
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
4
#
5 6
# This Source Code Form is "Incompatible With Secondary Licenses", as
# defined by the Mozilla Public License, v. 2.0.
7 8

package Bugzilla::Constants;
9 10

use 5.10.1;
11
use strict;
12

13
use parent qw(Exporter);
14

15 16
# For bz_locations
use File::Basename;
17
use Memoize;
18

19
@Bugzilla::Constants::EXPORT = qw(
20 21
    BUGZILLA_VERSION

22 23 24
    REMOTE_FILE
    LOCAL_FILE

25
    bz_locations
26 27 28 29

    IS_NULL
    NOT_NULL

30 31 32 33
    CONTROLMAPNA
    CONTROLMAPSHOWN
    CONTROLMAPDEFAULT
    CONTROLMAPMANDATORY
34 35 36 37 38 39

    AUTH_OK
    AUTH_NODATA
    AUTH_ERROR
    AUTH_LOGINFAILED
    AUTH_DISABLED
40
    AUTH_NO_SUCH_USER
41
    AUTH_LOCKOUT
42

43 44
    USER_PASSWORD_MIN_LENGTH

45 46 47
    LOGIN_OPTIONAL
    LOGIN_NORMAL
    LOGIN_REQUIRED
48 49 50 51

    LOGOUT_ALL
    LOGOUT_CURRENT
    LOGOUT_KEEP_CURRENT
52 53 54

    GRANT_DIRECT
    GRANT_REGEXP
55 56 57 58

    GROUP_MEMBERSHIP
    GROUP_BLESS
    GROUP_VISIBLE
59

60 61 62
    MAILTO_USER
    MAILTO_GROUP

63
    DEFAULT_COLUMN_LIST
64
    DEFAULT_QUERY_NAME
65
    DEFAULT_MILESTONE
66

67 68
    SAVE_NUM_SEARCHES

69
    COMMENT_COLS
70
    MAX_COMMENT_LENGTH
71

72 73 74
    MIN_COMMENT_TAG_LENGTH
    MAX_COMMENT_TAG_LENGTH

75 76 77
    CMT_NORMAL
    CMT_DUPE_OF
    CMT_HAS_DUPE
78
    CMT_ATTACHMENT_CREATED
79
    CMT_ATTACHMENT_UPDATED
80

81
    THROW_ERROR
82 83
    
    RELATIONSHIPS
84
    REL_ASSIGNEE REL_QA REL_REPORTER REL_CC REL_GLOBAL_WATCHER
85 86 87 88
    REL_ANY
    
    POS_EVENTS
    EVT_OTHER EVT_ADDED_REMOVED EVT_COMMENT EVT_ATTACHMENT EVT_ATTACHMENT_DATA
89
    EVT_PROJ_MANAGEMENT EVT_OPENED_CLOSED EVT_KEYWORD EVT_CC EVT_DEPEND_BLOCK
90
    EVT_BUG_CREATED EVT_COMPONENT
91

92 93 94 95 96
    NEG_EVENTS
    EVT_UNCONFIRMED EVT_CHANGED_BY_ME 
        
    GLOBAL_EVENTS
    EVT_FLAG_REQUESTED EVT_REQUESTED_FLAG
97

98
    ADMIN_GROUP_NAME
99
    PER_PRODUCT_PRIVILEGES
100 101

    SENDMAIL_EXE
102
    SENDMAIL_PATH
103 104 105

    FIELD_TYPE_UNKNOWN
    FIELD_TYPE_FREETEXT
106
    FIELD_TYPE_SINGLE_SELECT
107
    FIELD_TYPE_MULTI_SELECT
108
    FIELD_TYPE_TEXTAREA
109
    FIELD_TYPE_DATETIME
110
    FIELD_TYPE_DATE
111
    FIELD_TYPE_BUG_ID
112
    FIELD_TYPE_BUG_URLS
113
    FIELD_TYPE_KEYWORDS
114 115
    FIELD_TYPE_HIGHEST_PLUS_ONE
    
116 117
    EMPTY_DATETIME_REGEX

118 119
    ABNORMAL_SELECTS

120 121
    TIMETRACKING_FIELDS

122 123
    USAGE_MODE_BROWSER
    USAGE_MODE_CMDLINE
124
    USAGE_MODE_XMLRPC
125
    USAGE_MODE_EMAIL
126
    USAGE_MODE_JSON
127
    USAGE_MODE_TEST
128
    USAGE_MODE_REST
129 130 131 132

    ERROR_MODE_WEBPAGE
    ERROR_MODE_DIE
    ERROR_MODE_DIE_SOAP_FAULT
133
    ERROR_MODE_JSON_RPC
134
    ERROR_MODE_TEST
135
    ERROR_MODE_REST
136

137
    COLOR_ERROR
138
    COLOR_SUCCESS
139

140 141 142
    INSTALLATION_MODE_INTERACTIVE
    INSTALLATION_MODE_NON_INTERACTIVE

143
    DB_MODULE
144
    ROOT_USER
145
    ON_WINDOWS
146
    ON_ACTIVESTATE
147 148

    MAX_TOKEN_AGE
149
    MAX_LOGINCOOKIE_AGE
150
    MAX_SUDO_TOKEN_AGE
151 152
    MAX_LOGIN_ATTEMPTS
    LOGIN_LOCKOUT_INTERVAL
153
    ACCOUNT_CHANGE_INTERVAL
154
    MAX_STS_AGE
155 156

    SAFE_PROTOCOLS
157
    LEGAL_CONTENT_TYPES
158

159 160
    MIN_SMALLINT
    MAX_SMALLINT
161
    MAX_INT_32
162

163
    MAX_LEN_QUERY_NAME
164
    MAX_CLASSIFICATION_SIZE
165
    MAX_PRODUCT_SIZE
166
    MAX_MILESTONE_SIZE
167
    MAX_COMPONENT_SIZE
168
    MAX_FIELD_VALUE_SIZE
169
    MAX_FIELD_LONG_DESC_LENGTH
170
    MAX_FREETEXT_LENGTH
171
    MAX_BUG_URL_LENGTH
172
    MAX_POSSIBLE_DUPLICATES
173
    MAX_ATTACH_FILENAME_LENGTH
174
    MAX_QUIP_LENGTH
175
    MAX_WEBDOT_BUGS
176 177 178

    PASSWORD_DIGEST_ALGORITHM
    PASSWORD_SALT_LENGTH
179 180
    
    CGI_URI_LIMIT
181 182 183 184 185

    PRIVILEGES_REQUIRED_NONE
    PRIVILEGES_REQUIRED_REPORTER
    PRIVILEGES_REQUIRED_ASSIGNEE
    PRIVILEGES_REQUIRED_EMPOWERED
186 187 188

    AUDIT_CREATE
    AUDIT_REMOVE
189
);
190 191

@Bugzilla::Constants::EXPORT_OK = qw(contenttypes);
192 193

# CONSTANTS
194 195
#
# Bugzilla version
196
use constant BUGZILLA_VERSION => "4.5.1+";
197

198 199 200 201
# Location of the remote and local XML files to track new releases.
use constant REMOTE_FILE => 'http://updates.bugzilla.org/bugzilla-update.xml';
use constant LOCAL_FILE  => 'bugzilla-update.xml'; # Relative to datadir.

202 203 204 205 206 207 208 209 210 211 212
# These are unique values that are unlikely to match a string or a number,
# to be used in criteria for match() functions and other things. They start
# and end with spaces because most Bugzilla stuff has trim() called on it,
# so this is unlikely to match anything we get out of the DB.
#
# We can't use a reference, because Template Toolkit doesn't work with
# them properly (constants.IS_NULL => {} just returns an empty string instead
# of the reference).
use constant IS_NULL  => '  __IS_NULL__  ';
use constant NOT_NULL => '  __NOT_NULL__  ';

213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
#
# ControlMap constants for group_control_map.
# membercontol:othercontrol => meaning
# Na:Na               => Bugs in this product may not be restricted to this 
#                        group.
# Shown:Na            => Members of the group may restrict bugs 
#                        in this product to this group.
# Shown:Shown         => Members of the group may restrict bugs
#                        in this product to this group.
#                        Anyone who can enter bugs in this product may initially
#                        restrict bugs in this product to this group.
# Shown:Mandatory     => Members of the group may restrict bugs
#                        in this product to this group.
#                        Non-members who can enter bug in this product
#                        will be forced to restrict it.
# Default:Na          => Members of the group may restrict bugs in this
#                        product to this group and do so by default.
# Default:Default     => Members of the group may restrict bugs in this
#                        product to this group and do so by default and
#                        nonmembers have this option on entry.
# Default:Mandatory   => Members of the group may restrict bugs in this
#                        product to this group and do so by default.
#                        Non-members who can enter bug in this product
#                        will be forced to restrict it.
# Mandatory:Mandatory => Bug will be forced into this group regardless.
# All other combinations are illegal.

use constant CONTROLMAPNA => 0;
use constant CONTROLMAPSHOWN => 1;
use constant CONTROLMAPDEFAULT => 2;
use constant CONTROLMAPMANDATORY => 3;

245
# See Bugzilla::Auth for docs on AUTH_*, LOGIN_* and LOGOUT_*
246

247 248 249 250 251
use constant AUTH_OK => 0;
use constant AUTH_NODATA => 1;
use constant AUTH_ERROR => 2;
use constant AUTH_LOGINFAILED => 3;
use constant AUTH_DISABLED => 4;
252
use constant AUTH_NO_SUCH_USER  => 5;
253
use constant AUTH_LOCKOUT => 6;
254

255
# The minimum length a password must have.
256
use constant USER_PASSWORD_MIN_LENGTH => 6;
257

258 259 260 261
use constant LOGIN_OPTIONAL => 0;
use constant LOGIN_NORMAL => 1;
use constant LOGIN_REQUIRED => 2;

262 263 264 265
use constant LOGOUT_ALL => 0;
use constant LOGOUT_CURRENT => 1;
use constant LOGOUT_KEEP_CURRENT => 2;

266 267 268
use constant GRANT_DIRECT => 0;
use constant GRANT_REGEXP => 2;

269 270 271 272
use constant GROUP_MEMBERSHIP => 0;
use constant GROUP_BLESS => 1;
use constant GROUP_VISIBLE => 2;

273 274 275
use constant MAILTO_USER => 0;
use constant MAILTO_GROUP => 1;

276 277
# The default list of columns for buglist.cgi
use constant DEFAULT_COLUMN_LIST => (
278 279
    "product", "component", "assigned_to",
    "bug_status", "resolution", "short_desc", "changeddate"
280 281
);

282 283 284 285
# Used by query.cgi and buglist.cgi as the named-query name
# for the default settings.
use constant DEFAULT_QUERY_NAME => '(Default query)';

286 287 288
# The default "defaultmilestone" created for products.
use constant DEFAULT_MILESTONE => '---';

289 290 291
# How many of the user's most recent searches to save.
use constant SAVE_NUM_SEARCHES => 10;

292
# The column width for comment textareas and comments in bugmails.
293
use constant COMMENT_COLS => 80;
294 295
# Used in _check_comment(). Gives the max length allowed for a comment.
use constant MAX_COMMENT_LENGTH => 65535;
296

297 298 299 300
# The minimum and maximum length of comment tags.
use constant MIN_COMMENT_TAG_LENGTH => 3;
use constant MAX_COMMENT_TAG_LENGTH => 24;

301 302 303 304
# The type of bug comments.
use constant CMT_NORMAL => 0;
use constant CMT_DUPE_OF => 1;
use constant CMT_HAS_DUPE => 2;
305
# Type 3 was CMT_POPULAR_VOTES, which moved to the Voting extension.
306
# Type 4 was CMT_MOVED_TO, which moved to the OldBugMove extension.
307
use constant CMT_ATTACHMENT_CREATED => 5;
308
use constant CMT_ATTACHMENT_UPDATED => 6;
309

310 311 312 313
# Determine whether a validation routine should return 0 or throw
# an error when the validation fails.
use constant THROW_ERROR => 1;

314 315 316 317
use constant REL_ASSIGNEE           => 0;
use constant REL_QA                 => 1;
use constant REL_REPORTER           => 2;
use constant REL_CC                 => 3;
318
# REL 4 was REL_VOTER, before it was moved ino an extension.
319
use constant REL_GLOBAL_WATCHER     => 5;
320

321 322 323 324 325 326 327 328 329 330 331
# We need these strings for the X-Bugzilla-Reasons header
# Note: this hash uses "," rather than "=>" to avoid auto-quoting of the LHS.
# This should be accessed through Bugzilla::BugMail::relationships() instead
# of being accessed directly.
use constant RELATIONSHIPS => {
    REL_ASSIGNEE      , "AssignedTo",
    REL_REPORTER      , "Reporter",
    REL_QA            , "QAcontact",
    REL_CC            , "CC",
    REL_GLOBAL_WATCHER, "GlobalWatcher"
};
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350
                              
# Used for global events like EVT_FLAG_REQUESTED
use constant REL_ANY                => 100;

# There are two sorts of event - positive and negative. Positive events are
# those for which the user says "I want mail if this happens." Negative events
# are those for which the user says "I don't want mail if this happens."
#
# Exactly when each event fires is defined in wants_bug_mail() in User.pm; I'm
# not commenting them here in case the comments and the code get out of sync.
use constant EVT_OTHER              => 0;
use constant EVT_ADDED_REMOVED      => 1;
use constant EVT_COMMENT            => 2;
use constant EVT_ATTACHMENT         => 3;
use constant EVT_ATTACHMENT_DATA    => 4;
use constant EVT_PROJ_MANAGEMENT    => 5;
use constant EVT_OPENED_CLOSED      => 6;
use constant EVT_KEYWORD            => 7;
use constant EVT_CC                 => 8;
351
use constant EVT_DEPEND_BLOCK       => 9;
352
use constant EVT_BUG_CREATED        => 10;
353
use constant EVT_COMPONENT          => 11;
354 355 356 357

use constant POS_EVENTS => EVT_OTHER, EVT_ADDED_REMOVED, EVT_COMMENT, 
                           EVT_ATTACHMENT, EVT_ATTACHMENT_DATA, 
                           EVT_PROJ_MANAGEMENT, EVT_OPENED_CLOSED, EVT_KEYWORD,
358 359
                           EVT_CC, EVT_DEPEND_BLOCK, EVT_BUG_CREATED,
                           EVT_COMPONENT;
360 361 362 363 364 365 366 367 368 369 370 371 372

use constant EVT_UNCONFIRMED        => 50;
use constant EVT_CHANGED_BY_ME      => 51;

use constant NEG_EVENTS => EVT_UNCONFIRMED, EVT_CHANGED_BY_ME;

# These are the "global" flags, which aren't tied to a particular relationship.
# and so use REL_ANY.
use constant EVT_FLAG_REQUESTED     => 100; # Flag has been requested of me
use constant EVT_REQUESTED_FLAG     => 101; # I have requested a flag

use constant GLOBAL_EVENTS => EVT_FLAG_REQUESTED, EVT_REQUESTED_FLAG;

373 374 375
# Default administration group name.
use constant ADMIN_GROUP_NAME => 'admin';

376 377 378
# Privileges which can be per-product.
use constant PER_PRODUCT_PRIVILEGES => ('editcomponents', 'editbugs', 'canconfirm');

379 380
# Path to sendmail.exe (Windows only)
use constant SENDMAIL_EXE => '/usr/lib/sendmail.exe';
381 382
# Paths to search for the sendmail binary (non-Windows)
use constant SENDMAIL_PATH => '/usr/lib:/usr/sbin:/usr/ucblib';
383

384 385 386 387 388 389 390 391 392
# Field types.  Match values in fielddefs.type column.  These are purposely
# not named after database column types, since Bugzilla fields comprise not
# only storage but also logic.  For example, we might add a "user" field type
# whose values are stored in an integer column in the database but for which
# we do more than we would do for a standard integer type (f.e. we might
# display a user picker).

use constant FIELD_TYPE_UNKNOWN   => 0;
use constant FIELD_TYPE_FREETEXT  => 1;
393
use constant FIELD_TYPE_SINGLE_SELECT => 2;
394
use constant FIELD_TYPE_MULTI_SELECT => 3;
395
use constant FIELD_TYPE_TEXTAREA  => 4;
396
use constant FIELD_TYPE_DATETIME  => 5;
397
use constant FIELD_TYPE_BUG_ID  => 6;
398
use constant FIELD_TYPE_BUG_URLS => 7;
399
use constant FIELD_TYPE_KEYWORDS => 8;
400 401 402 403
use constant FIELD_TYPE_DATE => 9;
# Add new field types above this line, and change the below value in the
# obvious fashion
use constant FIELD_TYPE_HIGHEST_PLUS_ONE => 10;
404

405 406
use constant EMPTY_DATETIME_REGEX => qr/^[0\-:\sA-Za-z]+$/; 

407 408
# See the POD for Bugzilla::Field/is_abnormal to see why these are listed
# here.
409 410 411 412 413
use constant ABNORMAL_SELECTS => {
    classification => 1,
    component      => 1,
    product        => 1,
};
414

415 416 417
# The fields from fielddefs that are blocked from non-timetracking users.
# work_time is sometimes called actual_time.
use constant TIMETRACKING_FIELDS =>
418
    qw(estimated_time remaining_time work_time actual_time percentage_complete);
419

420 421
# The maximum number of days a token will remain valid.
use constant MAX_TOKEN_AGE => 3;
422 423
# How many days a logincookie will remain valid if not used.
use constant MAX_LOGINCOOKIE_AGE => 30;
424 425
# How many seconds (default is 6 hours) a sudo cookie remains valid.
use constant MAX_SUDO_TOKEN_AGE => 21600;
426

427 428 429 430 431 432
# Maximum failed logins to lock account for this IP
use constant MAX_LOGIN_ATTEMPTS => 5;
# If the maximum login attempts occur during this many minutes, the
# account is locked.
use constant LOGIN_LOCKOUT_INTERVAL => 30;

433 434 435 436
# The time in minutes a user must wait before he can request another email to
# create a new account or change his password.
use constant ACCOUNT_CHANGE_INTERVAL => 10;

437 438 439 440
# The maximum number of seconds the Strict-Transport-Security header
# will remain valid. Default is one week.
use constant MAX_STS_AGE => 604800;

441 442
# Protocols which are considered as safe.
use constant SAFE_PROTOCOLS => ('afs', 'cid', 'ftp', 'gopher', 'http', 'https',
443 444
                                'irc', 'ircs', 'mid', 'news', 'nntp', 'prospero',
                                'telnet', 'view-source', 'wais');
445

446 447 448 449 450 451
# Valid MIME types for attachments.
use constant LEGAL_CONTENT_TYPES => ('application', 'audio', 'image', 'message',
                                     'model', 'multipart', 'text', 'video');

use constant contenttypes =>
  {
452 453 454 455 456 457 458 459 460 461
   "html" => "text/html" ,
   "rdf"  => "application/rdf+xml" ,
   "atom" => "application/atom+xml" ,
   "xml"  => "application/xml" ,
   "dtd"  => "application/xml-dtd" , 
   "js"   => "application/x-javascript" ,
   "json" => "application/json" ,
   "csv"  => "text/csv" ,
   "png"  => "image/png" ,
   "ics"  => "text/calendar" ,
462 463
  };

464 465 466
# Usage modes. Default USAGE_MODE_BROWSER. Use with Bugzilla->usage_mode.
use constant USAGE_MODE_BROWSER    => 0;
use constant USAGE_MODE_CMDLINE    => 1;
467
use constant USAGE_MODE_XMLRPC     => 2;
468
use constant USAGE_MODE_EMAIL      => 3;
469
use constant USAGE_MODE_JSON       => 4;
470
use constant USAGE_MODE_TEST       => 5;
471
use constant USAGE_MODE_REST       => 6;
472 473 474 475 476 477

# Error modes. Default set by Bugzilla->usage_mode (so ERROR_MODE_WEBPAGE
# usually). Use with Bugzilla->error_mode.
use constant ERROR_MODE_WEBPAGE        => 0;
use constant ERROR_MODE_DIE            => 1;
use constant ERROR_MODE_DIE_SOAP_FAULT => 2;
478
use constant ERROR_MODE_JSON_RPC       => 3;
479
use constant ERROR_MODE_TEST           => 4;
480
use constant ERROR_MODE_REST           => 5;
481

482 483
# The ANSI colors of messages that command-line scripts use
use constant COLOR_ERROR => 'red';
484
use constant COLOR_SUCCESS => 'green';
485

486 487 488 489
# The various modes that checksetup.pl can run in.
use constant INSTALLATION_MODE_INTERACTIVE => 0;
use constant INSTALLATION_MODE_NON_INTERACTIVE => 1;

490 491
# Data about what we require for different databases.
use constant DB_MODULE => {
492 493
    # MySQL 5.0.15 was the first production 5.0.x release.
    'mysql' => {db => 'Bugzilla::DB::Mysql', db_version => '5.0.15',
494 495 496
                dbd => { 
                    package => 'DBD-mysql',
                    module  => 'DBD::mysql',
497 498
                    # Disallow development versions
                    blacklist => ['_'],
499 500 501
                    # For UTF-8 support. 4.001 makes sure that blobs aren't
                    # marked as UTF-8.
                    version => '4.001',
502
                },
503
                name => 'MySQL'},
504 505
    # Also see Bugzilla::DB::Pg::bz_check_server_version, which has special
    # code to require DBD::Pg 2.17.2 for PostgreSQL 9 and above.
506
    'pg'    => {db => 'Bugzilla::DB::Pg', db_version => '8.03.0000',
507 508 509
                dbd => {
                    package => 'DBD-Pg',
                    module  => 'DBD::Pg',
510 511 512
                    # 2.7.0 fixes a problem with quoting strings
                    # containing backslashes in them.
                    version => '2.7.0',
513
                },
514
                name => 'PostgreSQL'},
515
     'oracle'=> {db => 'Bugzilla::DB::Oracle', db_version => '10.02.0',
516 517 518 519 520 521
                dbd => {
                     package => 'DBD-Oracle',
                     module  => 'DBD::Oracle',
                     version => '1.19',
                },
                name => 'Oracle'},
522 523 524 525 526 527 528 529 530
     # SQLite 3.6.22 fixes a WHERE clause problem that may affect us.
    sqlite => {db => 'Bugzilla::DB::Sqlite', db_version => '3.6.22',
               dbd => {
                   package => 'DBD-SQLite',
                   module  => 'DBD::SQLite',
                   # 1.29 is the version that contains 3.6.22.
                   version => '1.29',
               },
               name => 'SQLite'},
531
};
532

533
# True if we're on Win32.
534
use constant ON_WINDOWS => ($^O =~ /MSWin32/i) ? 1 : 0;
535 536
# True if we're using ActiveState Perl (as opposed to Strawberry) on Windows.
use constant ON_ACTIVESTATE => eval { &Win32::BuildNumber };
537

538 539 540 541
# The user who should be considered "root" when we're giving
# instructions to Bugzilla administrators.
use constant ROOT_USER => ON_WINDOWS ? 'Administrator' : 'root';

542 543
use constant MIN_SMALLINT => -32768;
use constant MAX_SMALLINT => 32767;
544
use constant MAX_INT_32 => 2147483647;
545

546 547 548
# The longest that a saved search name can be.
use constant MAX_LEN_QUERY_NAME => 64;

549 550 551
# The longest classification name allowed.
use constant MAX_CLASSIFICATION_SIZE => 64;

552 553 554
# The longest product name allowed.
use constant MAX_PRODUCT_SIZE => 64;

555
# The longest milestone name allowed.
556
use constant MAX_MILESTONE_SIZE => 64;
557

558 559 560
# The longest component name allowed.
use constant MAX_COMPONENT_SIZE => 64;

561 562 563
# The maximum length for values of <select> fields.
use constant MAX_FIELD_VALUE_SIZE => 64;

564 565 566
# The maximum length for the long description of fields.
use constant MAX_FIELD_LONG_DESC_LENGTH => 255;

567 568 569
# Maximum length allowed for free text fields.
use constant MAX_FREETEXT_LENGTH => 255;

570 571 572
# The longest a bug URL in a BUG_URLS field can be.
use constant MAX_BUG_URL_LENGTH => 255;

573 574 575 576
# The largest number of possible duplicates that Bug::possible_duplicates
# will return.
use constant MAX_POSSIBLE_DUPLICATES => 25;

577 578 579 580 581
# Maximum length of filename stored in attachments table (longer ones will
# be truncated to this value). Do not increase above 255 without making the
# necessary schema changes to store longer names.
use constant MAX_ATTACH_FILENAME_LENGTH => 255;

582 583 584
# Maximum length of a quip.
use constant MAX_QUIP_LENGTH => 512;

585 586 587
# Maximum number of bugs to display in a dependency graph
use constant MAX_WEBDOT_BUGS => 2000;

588 589 590
# This is the name of the algorithm used to hash passwords before storing
# them in the database. This can be any string that is valid to pass to
# Perl's "Digest" module. Note that if you change this, it won't take
591
# effect until a user logs in or changes his password.
592
use constant PASSWORD_DIGEST_ALGORITHM => 'SHA-256';
593 594
# How long of a salt should we use? Note that if you change this, it
# won't take effect until a user logs in or changes his password.
595 596
use constant PASSWORD_SALT_LENGTH => 8;

597 598 599
# Certain scripts redirect to GET even if the form was submitted originally
# via POST such as buglist.cgi. This value determines whether the redirect
# can be safely done or not based on the web server's URI length setting.
600
# See http://support.microsoft.com/kb/208427 for why MSIE is different
601
use constant CGI_URI_LIMIT => ($ENV{'HTTP_USER_AGENT'} || '') =~ /MSIE/ ? 2083 : 8000;
602

603 604 605 606 607 608 609 610 611
# If the user isn't allowed to change a field, we must tell him who can.
# We store the required permission set into the $PrivilegesRequired
# variable which gets passed to the error template.

use constant PRIVILEGES_REQUIRED_NONE      => 0;
use constant PRIVILEGES_REQUIRED_REPORTER  => 1;
use constant PRIVILEGES_REQUIRED_ASSIGNEE  => 2;
use constant PRIVILEGES_REQUIRED_EMPOWERED => 3;

612 613 614 615 616
# Special field values used in the audit_log table to mean either
# "we just created this object" or "we just deleted this object".
use constant AUDIT_CREATE => '__create__';
use constant AUDIT_REMOVE => '__remove__';

617
sub bz_locations {
618 619 620 621 622 623 624
    # Force memoize() to re-compute data per project, to avoid
    # sharing the same data across different installations.
    return _bz_locations($ENV{'PROJECT'});
}

sub _bz_locations {
    my $project = shift;
625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640
    # We know that Bugzilla/Constants.pm must be in %INC at this point.
    # So the only question is, what's the name of the directory
    # above it? This is the most reliable way to get our current working
    # directory under both mod_cgi and mod_perl. We call dirname twice
    # to get the name of the directory above the "Bugzilla/" directory.
    #
    # Calling dirname twice like that won't work on VMS or AmigaOS
    # but I doubt anybody runs Bugzilla on those.
    #
    # On mod_cgi this will be a relative path. On mod_perl it will be an
    # absolute path.
    my $libpath = dirname(dirname($INC{'Bugzilla/Constants.pm'}));
    # We have to detaint $libpath, but we can't use Bugzilla::Util here.
    $libpath =~ /(.*)/;
    $libpath = $1;

641 642
    my ($localconfig, $datadir);
    if ($project && $project =~ /^(\w+)$/) {
643
        $project = $1;
644 645
        $localconfig = "localconfig.$project";
        $datadir = "data/$project";
646
    } else {
647
        $project = undef;
648 649
        $localconfig = "localconfig";
        $datadir = "data";
650 651
    }

652
    $datadir = "$libpath/$datadir";
653 654
    # We have to return absolute paths for mod_perl. 
    # That means that if you modify these paths, they must be absolute paths.
655 656
    return {
        'libpath'     => $libpath,
657
        'ext_libpath' => "$libpath/lib",
658 659 660
        # If you put the libraries in a different location than the CGIs,
        # make sure this still points to the CGIs.
        'cgi_path'    => $libpath,
661
        'templatedir' => "$libpath/template",
662
        'template_cache' => "$datadir/template",
663
        'project'     => $project,
664
        'localconfig' => "$libpath/$localconfig",
665 666
        'datadir'     => $datadir,
        'attachdir'   => "$datadir/attachments",
667
        'skinsdir'    => "$libpath/skins",
668
        'graphsdir'   => "$libpath/graphs",
669
        # $webdotdir must be in the web server's tree somewhere. Even if you use a 
670 671 672 673 674
        # local dot, we output images to there. Also, if $webdotdir is 
        # not relative to the bugzilla root directory, you'll need to 
        # change showdependencygraph.cgi to set image_url to the correct 
        # location.
        # The script should really generate these graphs directly...
675
        'webdotdir'   => "$datadir/webdot",
676
        'extensionsdir' => "$libpath/extensions",
677 678 679
    };
}

680 681
# This makes us not re-compute all the bz_locations data every time it's
# called.
682
BEGIN { memoize('_bz_locations') };
683

684
1;
685 686 687 688 689 690 691 692 693

=head1 B<Methods in need of POD>

=over

=item DB_MODULE

=item contenttypes

694 695
=item bz_locations

696
=back