summaryrefslogtreecommitdiff
path: root/FS/FS/TicketSystem.pm
blob: 744bcde3003e865c11eae1d07e11fcb3972fcad4 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
package FS::TicketSystem;

use strict;
use vars qw( $conf $system $AUTOLOAD );
use FS::Conf;
use FS::UID qw( dbh driver_name );
use FS::Record qw( dbdef );

FS::UID->install_callback( sub { 
  $conf = new FS::Conf;
  $system = $conf->config('ticket_system');
} );

sub AUTOLOAD {
  my $self = shift;

  my($sub)=$AUTOLOAD;
  $sub =~ s/.*://;

  my $conf = new FS::Conf;
  die "FS::TicketSystem::$AUTOLOAD called, but no ticket system configured\n"
    unless $system;

  eval "use FS::TicketSystem::$system;";
  die $@ if $@;

  $self .= "::$system";
  $self->$sub(@_);
}

# Our schema changes
my %columns = (
  Tickets => {
    WillResolve => { type => 'timestamp', null => 1, default => '', },
  },
  CustomFields => {
    Required => { type => 'integer', default => 0, null => 0 },
  },
);

sub _upgrade_schema {
  my $system = FS::Conf->new->config('ticket_system');
  return if !defined($system) || $system ne 'RT_Internal';
  my ($class, %opts) = @_;

  my $dbh = dbh;
  my @sql;
  my $case = driver_name eq 'mysql' ? sub {@_} : sub {map lc, @_};
  foreach my $tablename (keys %columns) {
    my $table = dbdef->table(&$case($tablename));
    if ( !$table ) {
      warn 
      "$tablename table does not exist.  Your RT installation is incomplete.\n";
      next;
    }
    foreach my $colname (keys %{ $columns{$tablename} }) {
      if ( !$table->column(&$case($colname)) ) {
        my $col = new DBIx::DBSchema::Column {
            table_obj => $table,
            name => &$case($colname),
            %{ $columns{$tablename}->{$colname} }
          };
        $col->table_obj($table);
        my ($alter, $postalter) = $col->sql_add_column($dbh);
        foreach (@$alter) {
          push @sql, "ALTER TABLE $tablename $_;";
        }
        push @sql, @$postalter;
      }
    } #foreach $colname
  } #foreach $tablename

  return if !@sql;
  warn "Upgrading RT schema:\n";
  foreach my $statement (@sql) {
    warn "$statement\n";
    $dbh->do( $statement )
      or die "Error: ". $dbh->errstr. "\n executing: $statement";
  }
  return;
}

sub _upgrade_data {
  return if !defined($system) || $system ne 'RT_Internal';
  my ($class, %opts) = @_;

  # go ahead and use the RT API for this
  
  FS::TicketSystem->init;
  my $session = FS::TicketSystem->session();
  # bypass RT ACLs--we're going to do lots of things
  my $CurrentUser = $RT::SystemUser;

  my $dbh = dbh;

  # selfservice and cron users
  foreach my $username ('%%%SELFSERVICE_USER%%%', 'fs_daily') {
    my $User = RT::User->new($CurrentUser);
    $User->Load($username);
    if (!defined($User->Id)) {
      my ($val, $msg) = $User->Create(
        'Name' => $username,
        'Gecos' => $username,
        'Privileged' => 1,
        # any other fields needed?
      );
      die $msg if !$val;
    }
    my $Principal = $User->PrincipalObj; # can this ever fail?
    my @rights = ( qw(ShowTicket SeeQueue ModifyTicket ReplyToTicket 
                      CreateTicket SeeCustomField) );
    foreach (@rights) {
      next if $Principal->HasRight( 'Right' => $_, Object => $RT::System );
      my ($val, $msg) = $Principal->GrantRight(
        'Right' => $_,
        'Object' => $RT::System,
      );
      die $msg if !$val;
    }
  } #foreach $username

  # EscalateQueue custom field and friends
  my $CF = RT::CustomField->new($CurrentUser);
  $CF->Load('EscalateQueue');
  if (!defined($CF->Id)) {
    my ($val, $msg) = $CF->Create(
      'Name' => 'EscalateQueue',
      'Type' => 'Select',
      'MaxValues' => 1,
      'LookupType' => 'RT::Queue',
      'Description' => 'Escalate to Queue',
      'ValuesClass' => 'RT::CustomFieldValues::Queues', #magic!
    );
    die $msg if !$val;
    my $OCF = RT::ObjectCustomField->new($CurrentUser);
    ($val, $msg) = $OCF->Create(
      'CustomField' => $CF->Id,
      'ObjectId' => 0,
    );
    die $msg if !$val;
  }

  # Load from RT data file
  our (@Groups, @Users, @ACL, @Queues, @ScripActions, @ScripConditions,
       @Templates, @CustomFields, @Scrips, @Attributes, @Initial, @Final,
       %Delete_Scrips);
  my $datafile = '%%%RT_PATH%%%/etc/initialdata';
  eval { require $datafile };
  if ( $@ ) {
    warn "Couldn't load RT data from '$datafile': $@\n(skipping)\n";
    return;
  }

  # Cache existing ScripCondition, ScripAction, and Template IDs.
  # Complicated because we don't want to just step on multiple IDs 
  # with the same name.
  my $cachify = sub {
    my ($class, $hash) = @_;
    my $search = $class->new($CurrentUser);
    $search->UnLimit;
    while ( my $item = $search->Next ) {
      if ( $class =~ /Template/ ) {
        # template names can be duplicated in different queues, and they are.
        my $queue = $item->QueueObj->Name || '0';
        my $subhash = $hash->{$queue} ||= {};
        $subhash->{lc($item->Name)} = $item->Id;
      } else {
        # then duplicate names are allowed; they just have different ids
        my $ids = $hash->{lc($item->Name)} ||= [];
        if ( $item->Creator == 1 ) { # RT::SystemUser
          unshift @$ids, $item->Id;
        }
        else {
          push @$ids, $item->Id;
        }
      }
    }
  };

  my (%condition, %action, %template);
  &$cachify('RT::ScripConditions', \%condition); # condition name -> [ ids ]
  # with the id of the system-created object first, if there is one
  &$cachify('RT::ScripActions', \%action); # action name -> [ ids ]
  &$cachify('RT::Templates', \%template); # queue name -> tmpl name -> id

  # ScripConditions
  my $ScripCondition = RT::ScripCondition->new($CurrentUser);
  foreach my $sc (@ScripConditions) {
    # $sc: Name, Description, ApplicableTransTypes, ExecModule, Argument
    next if exists( $condition{ lc($sc->{Name}) } );
    my ($val, $msg) = $ScripCondition->Create( %$sc );
    die $msg if !$val;
    $condition{ lc($ScripCondition->Name) } = [ $ScripCondition->Id ];
  }

  # ScripActions
  my $ScripAction = RT::ScripAction->new($CurrentUser);
  foreach my $sa (@ScripActions) {
    # $sa: Name, Description, ExecModule, Argument
    next if exists( $action{ lc($sa->{Name}) } );
    my ($val, $msg) = $ScripAction->Create( %$sa );
    die $msg if !$val;
    $action{ lc($ScripAction->Name) } = [ $ScripAction->Id ];
  }

  $DB::single = 1;
  # Templates
  my $Template = RT::Template->new($CurrentUser);
  foreach my $t (@Templates) {
    # $t: Queue, Name, Description, Content
    next if exists( $template{ $t->{Queue} }->{ lc($t->{Name}) } );
    my ($val, $msg) = $Template->Create( %$t );
    die $msg if !$val;
    $template{ $t->{Queue} }->{ lc($Template->Name) } = [ $Template->Id ];
  }

  # Scrips
  # Scrips can no longer be deleted, so we'll count them as existing
  # if they're applied to the global queue, or if they're not applied to
  # _any_ queue.

  my %scrip; # $scrips{condition}{action}{template} = id
  foreach my $criterion ('LimitToGlobal', 'LimitToNotAdded') {
    my $search = RT::Scrips->new($CurrentUser);
    $search->$criterion;

    while (my $item = $search->Next) {
      my ($c, $a, $t) = map {lc $item->$_->Name} 
        ('ScripConditionObj', 'ScripActionObj', 'TemplateObj');
      if ( exists $scrip{$c}{$a} and $item->Creator == 1 ) {
        warn "Deleting duplicate scrip $c $a [$t]\n";
        my ($val, $msg) = $item->Delete;
        warn "error deleting scrip: $msg\n" if !$val;
      }
      elsif ( exists $Delete_Scrips{$c}{$a}{$t} and $item->Creator == 1 ) {
        warn "Deleting obsolete scrip $c $a [$t]\n";
        my ($val, $msg) = $item->Delete;
        warn "error deleting scrip: $msg\n" if !$val;
      }
      else {
        $scrip{$c}{$a} = $item->id;
      }
    }
  }

  my $Scrip = RT::Scrip->new($CurrentUser);
  foreach my $s ( @Scrips ) {
    my $desc = $s->{'Description'};
    # the condition, action, and template _names_
    my ($c, $a, $t) = map lc,
      @{ $s }{'ScripCondition', 'ScripAction', 'Template'};

    if ( exists($scrip{$c}{$a}) ) {
      $Scrip->Load( $scrip{$c}{$a} );
    } else { # need to create it

      if ( !exists($condition{$c}) ) {
        warn "ScripCondition '$c' not found.\n";
        next;
      }
      if ( !exists($action{$a}) ) {
        warn "ScripAction '$a' not found.\n";
        next;
      }
      if ( !exists($template{'0'}{$t}) ) {
        # a global template with this name has to exist, at least
        warn "Template '$t' not found.\n";
        next;
      }
      my %new_param = (
        ScripCondition => $condition{$c}->[0],
        ScripAction => $action{$a}->[0],
        Template => $t, # scrips.template is now the name, not the id
        Queue => 0,
        Description => $desc,
      );
      warn "Creating scrip: $c $a [$t]\n";
      my ($val, $msg) = $Scrip->Create(%new_param);
      die $msg if !$val;

    } #if $scrip{...}
    # set the Immutable attribute on them if needed
    # no longer needed; you can't delete scrips through the UI anyway, only
    # disable them
    #if ( !$Scrip->FirstAttribute('Immutable') ) {
    #  my ($val, $msg) =
    #    $Scrip->SetAttribute(Name => 'Immutable', Content => '1');
    #  die $msg if !$val;
    #}

  } #foreach (@Scrips)

  # one-time fix: accumulator fields (support time, etc.) that had values 
  # entered on ticket creation need OCFV records attached to their Create
  # transactions
  my $sql = 'SELECT first_ocfv.ObjectId, first_ocfv.Created, Content '.
    'FROM ObjectCustomFieldValues as first_ocfv '.
    'JOIN ('.
      # subquery to get the first OCFV with a certain name for each ticket
      'SELECT min(ObjectCustomFieldValues.Id) AS Id '.
      'FROM ObjectCustomFieldValues '.
      'JOIN CustomFields '.
      'ON (ObjectCustomFieldValues.CustomField = CustomFields.Id) '.
      'WHERE ObjectType = \'RT::Ticket\' '.
      'AND CustomFields.Name = ? '.
      'GROUP BY ObjectId'.
    ') AS first_ocfv_id USING (Id) '.
    'JOIN ('.
      # subquery to get the first transaction date for each ticket
      # other than the Create
      'SELECT ObjectId, min(Created) AS Created FROM Transactions '.
      'WHERE ObjectType = \'RT::Ticket\' '.
      'AND Type != \'Create\' '.
      'GROUP BY ObjectId'.
    ') AS first_txn ON (first_ocfv.ObjectId = first_txn.ObjectId) '.
    # where the ticket custom field acquired a value before any transactions
    # on the ticket (i.e. it was set on ticket creation)
    'WHERE first_ocfv.Created < first_txn.Created '.
    # and we haven't already fixed the ticket
    'AND NOT EXISTS('.
      'SELECT 1 FROM Transactions JOIN ObjectCustomFieldValues '.
      'ON (Transactions.Id = ObjectCustomFieldValues.ObjectId) '.
      'JOIN CustomFields '.
      'ON (ObjectCustomFieldValues.CustomField = CustomFields.Id) '.
      'WHERE ObjectCustomFieldValues.ObjectType = \'RT::Transaction\' '.
      'AND CustomFields.Name = ? '.
      'AND Transactions.Type = \'Create\''.
      'AND Transactions.ObjectType = \'RT::Ticket\''.
      'AND Transactions.ObjectId = first_ocfv.ObjectId'.
    ')';
    #whew

  # prior to this fix, the only name an accumulate field could possibly have 
  # was "Support time".
  my $sth = $dbh->prepare($sql);
  $sth->execute('Support time', 'Support time');
  my $rows = $sth->rows;
  warn "Fixing support time on $rows rows...\n" if $rows > 0;
  while ( my $row = $sth->fetchrow_arrayref ) {
    my ($tid, $created, $content) = @$row;
    my $Txns = RT::Transactions->new($CurrentUser);
    $Txns->Limit(FIELD => 'ObjectId', VALUE => $tid);
    $Txns->Limit(FIELD => 'ObjectType', VALUE => 'RT::Ticket');
    $Txns->Limit(FIELD => 'Type', VALUE => 'Create');
    my $CreateTxn = $Txns->First;
    if ($CreateTxn) {
      my ($val, $msg) = $CreateTxn->AddCustomFieldValue(
        Field => 'Support time',
        Value => $content,
        RecordTransaction => 0,
      );
      warn "Error setting transaction support time: $msg\n" unless $val;
    } else {
      warn "Create transaction not found for ticket $tid.\n";
    }
  }

  my $cve_2013_3373_sql = '';
  if ( driver_name =~ /^Pg/i ) {
    $cve_2013_3373_sql = q(
      UPDATE Tickets SET Subject = REPLACE(Subject,E'\n','')
    );
  } elsif ( driver_name =~ /^mysql/i ) {
    $cve_2013_3373_sql = q(
      UPDATE Tickets SET Subject = REPLACE(Subject,'\n','');
    );
  } else {
    warn "WARNING: Don't know how to update RT Ticket Subjects for your database driver for CVE-2013-3373";
  }
  if ( $cve_2013_3373_sql ) {
    my $cve_2013_3373_sth = $dbh->prepare($cve_2013_3373_sql)
      or die $dbh->errstr;
    $cve_2013_3373_sth->execute
      or die $cve_2013_3373_sth->errstr;
  }

  # Remove dangling customer links, if any
  my %target_pkey = ('cust_main' => 'custnum', 'cust_svc' => 'svcnum');
  for my $table (keys %target_pkey) {
    my $pkey = $target_pkey{$table};
    my $rows = $dbh->do(
      "DELETE FROM Links WHERE id IN(
        SELECT id FROM (
          SELECT Links.id FROM Links LEFT JOIN $table ON (Links.Target = 
          'freeside://freeside/$table/' || $table.$pkey)
          WHERE Links.Target like 'freeside://freeside/$table/%'
          AND $table.$pkey IS NULL
        ) AS x
      )"
    ) or die $dbh->errstr;
    warn "Removed $rows dangling ticket-$table links\n" if $rows > 0;
  }

  # Fix ticket transactions on the Time* fields where the NewValue (or
  # OldValue, though this is not known to happen) is an empty string
  foreach (qw(newvalue oldvalue)) {
    my $rows = $dbh->do(
      "UPDATE Transactions SET $_ = '0' WHERE ObjectType='RT::Ticket' AND ".
      "Field IN ('TimeWorked', 'TimeEstimated', 'TimeLeft') AND $_ = ''"
    ) or die $dbh->errstr;
    warn "Fixed $rows transactions with empty time values\n" if $rows > 0;
  }

  # One-time fix: We've created a "BulkUpdateTickets" access right; grant
  # it to all auth'd users initially.
  eval "use FS::upgrade_journal;";
  my $upgrade = 'RT_add_BulkUpdateTickets_ACL';
  if (!FS::upgrade_journal->is_done($upgrade)) {
    my $groups = RT::Groups->new(RT->SystemUser);
    $groups->LimitToEnabled;
    $groups->LimitToSystemInternalGroups;
    $groups->Limit(
      FIELD         => 'Name',
      VALUE         => 'Privileged',
      OPERATOR      => '=',
      CASESENSITIVE => 0,
    );
    my $group = $groups->First
      or die "No RT internal group found for Privileged users";
    my ($val, $msg) = $group->PrincipalObj->GrantRight(
      Right => 'BulkUpdateTickets', Object => RT->System
    );
    die "Couldn't grant BulkUpdateTickets right to all users: $msg\n"
      if !$val;
    FS::upgrade_journal->set_done($upgrade);
  }

  return;
}

1;