rt 4.2.15
[freeside.git] / rt / etc / upgrade / time-worked-history.in
1 #!@PERL@
2 # BEGIN BPS TAGGED BLOCK {{{
3 #
4 # COPYRIGHT:
5 #
6 # This software is Copyright (c) 1996-2018 Best Practical Solutions, LLC
7 #                                          <sales@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/licenses/old-licenses/gpl-2.0.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 5.10.1;
50 use strict;
51 use warnings;
52
53 use lib "@LOCAL_LIB_PATH@";
54 use lib "@RT_LIB_PATH@";
55
56 use RT::Interface::CLI qw(Init);
57 Init();
58
59 my $dbh = RT->DatabaseHandle->dbh;
60 my $ids = $dbh->selectcol_arrayref(
61     "SELECT t1.id FROM Tickets t1, Tickets t2 WHERE t1.id = t2.EffectiveId"
62     ." AND t2.id != t2.EffectiveId AND t2.EffectiveId = t1.id"
63 );
64 foreach my $id ( @$ids ) {
65     my $t = RT::Ticket->new( RT->SystemUser );
66     $t->Load( $id );
67     unless ( $t->id ) {
68         $RT::Logger->error("Couldn't load ticket #$id");
69         next;
70     }
71
72     fix_time_worked_history($t);
73 }
74
75 sub fix_time_worked_history {
76     my ($t) = (@_);
77
78     my $history = 0;
79     my $candidate = undef;
80     my @delete = ();
81     my $delete_time = 0;
82
83     my $txns = $t->Transactions;
84     while ( my $txn = $txns->Next ) {
85         if ( $txn->Type =~ /^(Create|Correspond|Comment)$/ ) {
86             $history += $txn->TimeTaken || 0;
87         } elsif ( $txn->Type eq 'Set' && $txn->Field eq 'TimeWorked' ) {
88             $history += $txn->NewValue - $txn->OldValue;
89             $candidate = $txn;
90         } elsif ( $candidate && ($txn->Field||'') eq 'MergedInto' ) {
91             if ($candidate->Creator eq $txn->Creator ) {
92                 push @delete, $candidate;
93                 $delete_time += $candidate->NewValue - $candidate->OldValue;
94             }
95
96             $candidate = undef;
97         }
98     }
99
100     if ( $history == $t->TimeWorked ) {
101         $RT::Logger->info("Ticket #". $t->id . " has TimeWorked matching history. Skipping");
102     } elsif ( $history - $delete_time == $t->TimeWorked ) {
103         $RT::Logger->warn( "Ticket #". $t->id ." has TimeWorked mismatch. Deleting transactions" );
104         foreach my $dtxn ( @delete ) {
105             my ($status, $msg) = $dtxn->Delete;
106             $RT::Logger->error("Couldn't delete transaction: $msg") unless $status;
107         }
108     } else {
109         $RT::Logger->error( "Ticket #". $t->id ." has TimeWorked mismatch, but we couldn't find correct transactions to delete. Skipping" );
110     }
111 }