import rt 3.6.6
[freeside.git] / rt / sbin / rt-dump-database.in
1 #!@PERL@ -w
2 # BEGIN BPS TAGGED BLOCK {{{
3
4 # COPYRIGHT:
5 #  
6 # This software is Copyright (c) 1996-2007 Best Practical Solutions, LLC 
7 #                                          <jesse@bestpractical.com>
8
9 # (Except where explicitly superseded by other copyright notices)
10
11
12 # LICENSE:
13
14 # This work is made available to you under the terms of Version 2 of
15 # the GNU General Public License. A copy of that license should have
16 # been provided with this software, but in any event can be snarfed
17 # from www.gnu.org.
18
19 # This work is distributed in the hope that it will be useful, but
20 # WITHOUT ANY WARRANTY; without even the implied warranty of
21 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
22 # General Public License for more details.
23
24 # You should have received a copy of the GNU General Public License
25 # along with this program; if not, write to the Free Software
26 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
27 # 02110-1301 or visit their web page on the internet at
28 # http://www.gnu.org/copyleft/gpl.html.
29
30
31 # CONTRIBUTION SUBMISSION POLICY:
32
33 # (The following paragraph is not intended to limit the rights granted
34 # to you to modify and distribute this software under the terms of
35 # the GNU General Public License and is only of importance to you if
36 # you choose to contribute your changes and enhancements to the
37 # community by submitting them to Best Practical Solutions, LLC.)
38
39 # By intentionally submitting any modifications, corrections or
40 # derivatives to this work, or any other work intended for use with
41 # Request Tracker, to Best Practical Solutions, LLC, you confirm that
42 # you are the copyright holder for those contributions and you grant
43 # Best Practical Solutions,  LLC a nonexclusive, worldwide, irrevocable,
44 # royalty-free, perpetual, license to use, copy, create derivative
45 # works based on those contributions, and sublicense and distribute
46 # those contributions and any derivatives thereof.
47
48 # END BPS TAGGED BLOCK }}}
49 use strict;
50
51 use lib "@LOCAL_LIB_PATH@";
52 use lib "@RT_LIB_PATH@";
53
54 use RT;
55 use XML::Simple;
56
57 RT::LoadConfig();
58 RT::Init();
59
60 my $LocalOnly = @ARGV ? shift(@ARGV) : 1;
61
62 my %RV;
63 my %Ignore = (
64     All => [qw(
65         id Created Creator LastUpdated LastUpdatedBy
66     )],
67     Templates => [qw(
68         TranslationOf
69     )],
70 );
71
72 my $SystemUserId = $RT::SystemUser->Id;
73 my @classes = qw(
74     Users Groups Queues ScripActions ScripConditions
75     Templates Scrips ACL CustomFields
76 );
77 foreach my $class (@classes) {
78     require "RT/$class.pm";
79     my $objects = "RT::$class"->new($RT::SystemUser);
80     $objects->{find_disabled_rows} = 1;
81     $objects->UnLimit;
82
83     if ($class eq 'CustomFields') {
84         $objects->OrderByCols(
85             { FIELD => 'LookupType' },
86             { FIELD => 'SortOrder' },
87             { FIELD => 'Id' },
88         );
89     }
90     else {
91         $objects->OrderBy( FIELD => 'Id' );
92     }
93
94     if ($LocalOnly) {
95         next if $class eq 'ACL'; # XXX - would go into infinite loop - XXX
96         $objects->Limit( FIELD => 'LastUpdatedBy', OPERATOR => '!=', VALUE => $SystemUserId )
97             unless $class eq 'Groups';
98         $objects->Limit( FIELD => 'Id', OPERATOR => '!=', VALUE => $SystemUserId )
99             if $class eq 'Users';
100         $objects->Limit( FIELD => 'Domain', OPERATOR => '=', VALUE => 'UserDefined' )
101             if $class eq 'Groups';
102     }
103
104     my %fields;
105     while (my $obj = $objects->Next) {
106         next if $obj->can('LastUpdatedBy') and $obj->LastUpdatedBy == $SystemUserId;
107
108         if (!%fields) {
109             %fields = map { $_ => 1 } keys %{$obj->_ClassAccessible};
110             delete @fields{
111                 @{$Ignore{$class}||=[]},
112                 @{$Ignore{All}||=[]},
113             };
114         }
115
116         my $rv;
117         # next if $obj-> # skip default names
118         foreach my $field (sort keys %fields) {
119             my $value = $obj->__Value($field);
120             $rv->{$field} = $value if length($value);
121         }
122         delete $rv->{Disabled} unless $rv->{Disabled};
123
124         foreach my $record (map { /ACL/ ? 'ACE' : substr($_, 0, -1) } @classes) {
125             foreach my $key (map "$record$_", ('', 'Id')) {
126                 next unless exists $rv->{$key};
127                 my $id = $rv->{$key} or next;
128                 my $obj = "RT::$record"->new($RT::SystemUser);
129                 $obj->LoadByCols( Id => $id ) or next;
130                 $rv->{$key} = $obj->__Value('Name') || 0;
131             }
132         }
133
134         if ($class eq 'Users' and defined $obj->Privileged) {
135             $rv->{Privileged} = int($obj->Privileged);
136         }
137         elsif ($class eq 'CustomFields') {
138             my $values = $obj->Values;
139             while (my $value = $values->Next) {
140                 push @{$rv->{Values}}, {
141                     map { ($_ => $value->__Value($_)) } qw(
142                         Name Description SortOrder
143                     ),
144                 };
145             }
146         }
147
148         if (eval { require RT::Attributes; 1 }) {
149             my $attributes = $obj->Attributes;
150             while (my $attribute = $attributes->Next) {
151                 my $content = $attribute->Content;
152                 $rv->{Attributes}{$attribute->Name} = $content if length($content);
153             }
154         }
155
156         push @{$RV{$class}}, $rv;
157     }
158 }
159
160 print(<< ".");
161 no strict; use XML::Simple; *_ = XMLin(do { local \$/; readline(DATA) }, ForceArray => [qw(
162  @classes Values
163 )], NoAttr => 1, SuppressEmpty => ''); *\$_ = (\$_{\$_} || []) for keys \%_; 1; # vim: ft=xml
164 __DATA__
165 .
166
167 print XMLout(
168     { map { ($_ => ($RV{$_} || [])) } @classes },
169     RootName => 'InitialData',
170     NoAttr => 1,
171     SuppressEmpty => '',
172     XMLDecl => '<?xml version="1.0" encoding="UTF-8"?>',
173 );