summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Quantum.pm
blob: 20050131f74175dca37a9269eb9cc9cde35bd6be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# 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/.
#
# This Source Code Form is "Incompatible With Secondary Licenses", as
# defined by the Mozilla Public License, v. 2.0.

package Bugzilla::Quantum;
use Mojo::Base 'Mojolicious';

use Bugzilla::Quantum::CGI;
use Bugzilla::Quantum::Template;
use Bugzilla::Quantum::Legacy;
use Bugzilla::PSGI qw(compile_cgi);

use Bugzilla ();
use Bugzilla::Constants ();
use Bugzilla::BugMail ();
use Bugzilla::CGI ();
use Bugzilla::Extension ();
use Bugzilla::Install::Requirements ();
use Bugzilla::Util ();
use Bugzilla::RNG ();

sub startup {
    my ($self) = @_;

    Bugzilla::Extension->load_all();
    Bugzilla->preload_features();
    Bugzilla->template;

    $self->plugin('Bugzilla::Quantum::Plugin::Glue');

    $self->plugin(
        'MountPSGI' => {
            rewrite => 1,
            '/rest' => $rest,
            '/rest.cgi' => $rest,
            '/jsonrpc.cgi' => compile_cgi('jsonrpc.cgi'),
            '/xmlrpc.cgi' => compile_cgi('xmlrpc.cgi'),
        }
    );
    my $r = $self->routes;

    $r->any( '/' )->to('legacy#index_cgi');
    $r->any( '/show_bug.cgi' )->to('legacy#show_bug');
    $r->any('/bug/:id')->to('legacy#show_bug');
}

1;