2 # BEGIN BPS TAGGED BLOCK {{{
6 # This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC
7 # <jesse@bestpractical.com>
9 # (Except where explicitly superseded by other copyright notices)
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
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.
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.
31 # CONTRIBUTION SUBMISSION POLICY:
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.)
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.
48 # END BPS TAGGED BLOCK }}}
52 # fix lib paths, some may be relative
55 my @libs = ("lib", "local/lib");
59 unless ( File::Spec->file_name_is_absolute($lib) ) {
61 if ( File::Spec->file_name_is_absolute(__FILE__) ) {
62 $bin_path = ( File::Spec->splitpath(__FILE__) )[1];
67 $bin_path = $FindBin::Bin;
70 $lib = File::Spec->catfile( $bin_path, File::Spec->updir, $lib );
78 GetOptions( \%opt, "older=s", "debug", "help", "skip-user");
84 pod2usage({ -message => "RT Session cleanup tool\n", verbose => 1 });
90 unless( $opt{'older'} =~ /^\s*([0-9]+)\s*(H|D|M|Y)?$/i ) {
91 print STDERR "wrong format of the 'older' argumnet\n";
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 };
105 if( $opt{'debug'} ) {
106 RT->Config->Set( LogToScreen => 'debug' );
108 RT->Config->Set( LogToScreen => undef );
111 RT::ConnectToDatabase();
114 require RT::Interface::Web::Session;
116 if( $opt{'older'} or my $alogoff = int RT->Config->Get('AutoLogoff') ) {
118 foreach ($alogoff*60, $opt{'older'}) {
120 $min = $_ unless $min;
121 $min = $_ if $_ < $min;
124 RT::Interface::Web::Session->ClearOld( $min );
127 RT::Interface::Web::Session->ClearByUser
128 unless $opt{'skip-user'};
136 rt-clean-sessions - clean old and duplicate RT sessions
140 rt-clean-sessions [--debug] [--older <NUM>[H|D|M|Y]]
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
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).
154 Script is safe because data in the sessions is temporary and can be deleted.
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.
165 For example: C<rt-clean-sessions --older 1M> would delete all sessions that are
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.
176 Turn on debug output.
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.