Files
oddmuse/modules/delete-all.pl

34 lines
1.1 KiB
Perl
Raw Normal View History

# Copyright (C) 2006-2013 Alex Schroeder <alex@gnu.org>
# 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 3 of the License, or (at your option) any later
# version.
2006-09-07 20:07:23 +00:00
#
# 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.
2006-09-07 20:07:23 +00:00
#
# You should have received a copy of the GNU General Public License along with
# this program. If not, see <http://www.gnu.org/licenses/>.
2006-09-07 20:07:23 +00:00
use strict;
use v5.10;
AddModuleDescription('delete-all.pl');
2006-09-07 20:37:29 +00:00
2015-04-10 13:31:28 +03:00
our (%Page, $Now, $OpenPageName, %LockOnCreation);
our ($DeleteAge);
2006-09-07 20:37:29 +00:00
$DeleteAge = 172800; # 2*24*60*60
2006-09-07 20:07:23 +00:00
*OldDelPageDeletable = \&PageDeletable;
*PageDeletable = \&NewDelPageDeletable;
2006-09-07 20:07:23 +00:00
2006-09-07 20:08:59 +00:00
# All pages will be deleted after two days of inactivity!
2006-09-07 20:07:23 +00:00
sub NewDelPageDeletable {
return 1 if $Now - $Page{ts} > $DeleteAge
and not $LockOnCreation{$OpenPageName};
2006-09-07 20:07:23 +00:00
return OldDelPageDeletable(@_);
}