summaryrefslogtreecommitdiff
path: root/rt/etc/upgrade/3.7.19/content
blob: 34af55095115463598676b719abef64149cd6189 (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
use strict;
use warnings;

our @Final = (
    sub {
        require RT::Scrips;
        my $scrips = RT::Scrips->new( RT->SystemUser );
        $scrips->{'with_disabled_column'} = 0;
        $scrips->Limit( FIELD => 'Description', OPERATOR => 'IS', VALUE => 'NULL' );
        $scrips->Limit( FIELD => 'Description', VALUE => '' );
        while ( my $scrip = $scrips->Next ) {
            my $desc = $scrip->Description;
            next if defined $desc && length $desc;

            $desc = gen_scrip_description( $scrip );

            my ($status, $msg) = $scrip->SetDescription( $desc );
            unless ( $status ) {
                print STDERR "Couldn't set description of a scrip: $msg";
            } else {
                print "Added description to scrip #". $scrip->id ."\n";
            }
        }
    },
);

sub gen_scrip_description {
    my $scrip = shift;

    my $condition;
    eval{
      $condition = $scrip->ConditionObj->Name
        || $scrip->ConditionObj->Description
        || ('On Condition #'. $scrip->Condition);
    };

    if ($@){
      print STDERR $@;
      print STDERR "Reference to missing scrip condition found. If you have ScripCondition = 0 in the Scrips table, update with a real condition number.\n";
      $condition = 'On undefined Condition # 0';
    }

    my $action = $scrip->ActionObj->Name
        || $scrip->ActionObj->Description
        || ('Run Action #'. $scrip->Action);
    return join ' ', $condition, $action;
}

1;