wiki-archive/twiki/tools/tick_twiki.pl

67 lines
2.4 KiB
Perl
Executable File

#!/usr/bin/perl -w
#
# TWiki Collaboration Platform, http://TWiki.org/
#
# Copyright (C) 2005-2007 TWiki Contributors.
# All Rights Reserved. TWiki Contributors are listed in
# the AUTHORS file in the root of this distribution.
# NOTE: Please extend that file, not this notice.
#
# For licensing info read license.txt file in the TWiki root.
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details, published at
# http://www.gnu.org/copyleft/gpl.html
#
# The TWiki 'bin' directory must be on your include path when you run
# this script. This is so it can pick up the right TWiki environment
# from setlib.cfg.
# You can add a directory to your include path using the -I option
# to the perl command e.g. perl -I /usr/local/twiki/bin tick_twiki.pl
#
# It executes a number of non-essential regular administration
# tasks that will help keep your TWiki healthy and happy.
#
# It is intended to be run as a cron job (remember it has to be run
# by a user who can write files created by the webserver user!)
# For example,
#
# 0 0 * * 0 cd /usr/twiki/bin && perl ../tools/tick_twiki.pl
#
BEGIN {
unshift @INC, '.';
require 'setlib.cfg';
}
# This will expire sessions that have not been used for
# |{Sessions}{ExpireAfter}| seconds i.e. if you set {Sessions}{ExpireAfter}
# to -36000 or 36000 it will expire sessions that have not been used for
# more than 100 hours,
use TWiki::Client;
TWiki::Client::expireDeadSessions();
# This will remove topic leases that have expired. Topic leases may be
# left behind when users edit a topic and then navigate away without
# cancelling the edit.
use TWiki;
my $twiki = new TWiki();
my $store = $twiki->{store};
my $now = time();
foreach my $web ( $store->getListOfWebs()) {
$store->removeSpuriousLeases($web);
foreach my $topic ( $store->getTopicNames( $web )) {
my $lease = $store->getLease( $web, $topic );
if( $lease && $lease->{expires} < $now) {
$store->clearLease( $web, $topic );
}
}
}