import rt 3.8.10
[freeside.git] / rt / sbin / rt-clean-sessions
1 #!/usr/bin/perl
2 # BEGIN BPS TAGGED BLOCK {{{
3 #
4 # COPYRIGHT:
5 #
6 # This software is Copyright (c) 1996-2011 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 strict;
50 use warnings;
51
52 # fix lib paths, some may be relative
53 BEGIN {
54     require File::Spec;
55     my @libs = ("lib", "local/lib");
56     my $bin_path;
57
58     for my $lib (@libs) {
59         unless ( File::Spec->file_name_is_absolute($lib) ) {
60             unless ($bin_path) {
61                 if ( File::Spec->file_name_is_absolute(__FILE__) ) {
62                     $bin_path = ( File::Spec->splitpath(__FILE__) )[1];
63                 }
64                 else {
65                     require FindBin;
66                     no warnings "once";
67                     $bin_path = $FindBin::Bin;
68                 }
69             }
70             $lib = File::Spec->catfile( $bin_path, File::Spec->updir, $lib );
71         }
72         unshift @INC, $lib;
73     }
74 }
75
76 use Getopt::Long;
77 my %opt;
78 GetOptions( \%opt, "older=s", "debug", "help", "skip-user");
79
80
81 if ( $opt{help} ) {
82     require Pod::Usage;
83     import Pod::Usage;
84     pod2usage({ -message => "RT Session cleanup tool\n", verbose => 1 });
85     exit 1;    
86 }
87
88
89 if( $opt{'older'} ) {
90     unless( $opt{'older'} =~ /^\s*([0-9]+)\s*(H|D|M|Y)?$/i ) {
91         print STDERR "wrong format of the 'older' argumnet\n";
92         exit(1);
93     }
94     my ($num,$unit) = ($1, uc($2 ||'D'));
95     my %factor = ( H => 60*60 );
96     $factor{'D'} = $factor{'H'}*24;
97     $factor{'M'} = $factor{'D'}*31;
98     $factor{'Y'} = $factor{'D'}*365;
99     $opt{'older'} = $num * $factor{ $unit };
100 }
101
102 require RT;
103 RT::LoadConfig();
104
105 if( $opt{'debug'} ) {
106     RT->Config->Set( LogToScreen => 'debug' );
107 } else {
108     RT->Config->Set( LogToScreen => undef );
109 }
110
111 RT::ConnectToDatabase();
112 RT::InitLogging();
113
114 require RT::Interface::Web::Session;
115
116 if( $opt{'older'} or my $alogoff = int RT->Config->Get('AutoLogoff') ) {
117     my $min;
118     foreach ($alogoff*60, $opt{'older'}) {
119         next unless $_;
120         $min = $_ unless $min;
121         $min = $_ if $_ < $min;
122     }
123
124     RT::Interface::Web::Session->ClearOld( $min );
125 }
126
127 RT::Interface::Web::Session->ClearByUser
128     unless $opt{'skip-user'};
129
130 exit(0);
131
132 __END__
133
134 =head1 NAME
135
136 rt-clean-sessions - clean old and duplicate RT sessions
137
138 =head1 SYNOPSIS
139
140     rt-clean-sessions [--debug] [--older <NUM>[H|D|M|Y]]
141
142     rt-clean-sessions
143     rt-clean-sessions --debug
144     rt-clean-sessions --older 10D
145     rt-clean-sessions --debug --older 1M
146     rt-clean-sessions --older 10D --skip-user
147
148 =head1 DESCRIPTION
149
150 Script cleans RT sessions from DB or dir with sessions data.
151 Leaves in DB only one session per RT user and sessions that aren't older
152 than specified(see options).
153
154 Script is safe because data in the sessions is temporary and can be deleted.
155
156 =head1 OPTIONS
157
158 =over 4
159
160 =item older
161
162 Date interval in the C<< <NUM>[<unit>] >> format. Default unit is D(ays),
163 H(our), M(onth) and Y(ear) are also supported.
164
165 For example: C<rt-clean-sessions --older 1M> would delete all sessions that are
166 older than 1 month.
167
168 =item skip-user
169
170 By default only one session per user left in the DB, so users that have
171 sessions on multiple computers or in different browsers will be logged out.
172 Use this option to avoid this.
173
174 =item debug
175
176 Turn on debug output.
177
178 =back
179
180 =head1 NOTES
181
182 Functionality similar to this is implemented in
183 html/Elements/SetupSessionCookie ; however, that does not guarantee
184 that a session will be removed from disk and database soon after the
185 timeout expires.  This script, if run from a cron job, will ensure
186 that the timed out sessions are actually removed from disk; the Mason
187 component just ensures that the old sessions are not reusable before
188 the cron job gets to them.
189
190 =cut