928888fa2ca2c15b5aef3ecbc39440c227bae109
[freeside.git] / rt / etc / upgrade / 3.8-ical-extension.in
1 #!@PERL@
2 # BEGIN BPS TAGGED BLOCK {{{
3 #
4 # COPYRIGHT:
5 #
6 # This software is Copyright (c) 1996-2015 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 -init;
57
58 $| = 1;
59
60 use RT::Attributes;
61 my $attrs = RT::Attributes->new( RT->SystemUser );
62 $attrs->Limit(FIELD => 'ObjectType', OPERATOR=> '=', VALUE => 'RT::User');
63 $attrs->Limit(FIELD => 'Name', OPERATOR=> '=', VALUE => 'ical-auth-token');
64 while ( my $attr = $attrs->Next ) {
65     my $uid = $attr->ObjectId;
66     print "Processing auth token of user #". $uid ."...\n";
67
68     my $user = RT::User->new( RT->SystemUser );
69     $user->Load( $uid );
70     unless ( $user->id ) {
71         print STDERR "\tERROR. Couldn't load user record\n";
72         next;
73     }
74
75     my ($status, $msg);
76
77     ($status, $msg) = $user->DeleteAttribute('AuthToken')
78         if $user->FirstAttribute('AuthToken');
79     unless ( $status ) {
80         print STDERR "\tERROR. Couldn't delete duplicated attribute: $msg\n";
81         next;
82     } else {
83         print "\tdeleted duplicate attribute\n";
84     }
85
86     ($status, $msg) = $attr->SetName('AuthToken');
87     unless ( $status ) {
88         print STDERR "\tERROR. Couldn't rename attribute: $msg\n";
89         next;
90     } else {
91         print "\trenamed attribute\n";
92     }
93     print "\tDONE\n";
94 }
95
96 exit 0;