converted delete expired events hourly script
This commit is contained in:
parent
103969816e
commit
136a89ee7a
7 changed files with 134 additions and 56 deletions
|
|
@ -95,7 +95,10 @@ sub www_editCronJob {
|
|||
hoverHelp=>$i18n->get("run once help")
|
||||
);
|
||||
my $value = $cron->get("workflowId") if defined $cron;
|
||||
my $type = "None" unless defined $cron;
|
||||
my $type = "None";
|
||||
if (defined $cron) {
|
||||
$type = $cron->get("className");
|
||||
}
|
||||
$f->workflow(
|
||||
name=>"workflowId",
|
||||
value=>$value,
|
||||
|
|
|
|||
|
|
@ -330,7 +330,7 @@ A boolean indicating whether this workflow may be executed right now.
|
|||
|
||||
=head4 type
|
||||
|
||||
A string indicating the type of object this workflow will be operating on. Valid values are "None", "VersionTag" and "User".
|
||||
A string indicating the type of object this workflow will be operating on. Valid values are "None", or any object type, like "WebGUI::VersionTag".
|
||||
|
||||
=head4 isSerial
|
||||
|
||||
|
|
|
|||
94
lib/WebGUI/Workflow/Activity/TrashExpiredEvents.pm
Normal file
94
lib/WebGUI/Workflow/Activity/TrashExpiredEvents.pm
Normal file
|
|
@ -0,0 +1,94 @@
|
|||
package WebGUI::Workflow::Activity::TrashExpiredEvents;
|
||||
|
||||
|
||||
=head1 LEGAL
|
||||
|
||||
-------------------------------------------------------------------
|
||||
WebGUI is Copyright 2001-2006 Plain Black Corporation.
|
||||
-------------------------------------------------------------------
|
||||
Please read the legal notices (docs/legal.txt) and the license
|
||||
(docs/license.txt) that came with this distribution before using
|
||||
this software.
|
||||
-------------------------------------------------------------------
|
||||
http://www.plainblack.com info@plainblack.com
|
||||
-------------------------------------------------------------------
|
||||
|
||||
=cut
|
||||
|
||||
use strict;
|
||||
use base 'WebGUI::Workflow::Activity';
|
||||
use WebGUI::Asset::Event;
|
||||
|
||||
=head1 NAME
|
||||
|
||||
Package WebGUI::Workflow::Activity::TrashExpiredEvents
|
||||
|
||||
=head1 DESCRIPTION
|
||||
|
||||
Any events that are past a certain interval will be trashed.
|
||||
|
||||
=head1 SYNOPSIS
|
||||
|
||||
See WebGUI::Workflow::Activity for details on how to use any activity.
|
||||
|
||||
=head1 METHODS
|
||||
|
||||
These methods are available from this class:
|
||||
|
||||
=cut
|
||||
|
||||
|
||||
#-------------------------------------------------------------------
|
||||
|
||||
=head2 definition ( session, definition )
|
||||
|
||||
See WebGUI::Workflow::Activity::defintion() for details.
|
||||
|
||||
=cut
|
||||
|
||||
sub definition {
|
||||
my $class = shift;
|
||||
my $session = shift;
|
||||
my $definition = shift;
|
||||
my $i18n = WebGUI::International->new($session, "Asset_Event");
|
||||
push(@{$definition}, {
|
||||
name=>$i18n->get("trash expired events"),
|
||||
properties=> {
|
||||
trashAfter => {
|
||||
fieldType=>"interval",
|
||||
label=>$i18n->get("trash after"),
|
||||
defaultValue=>60*60*24*30,
|
||||
hoverHelp=>$i18n->get("trash after help")
|
||||
}
|
||||
}
|
||||
});
|
||||
return $class->SUPER::definition($session,$definition);
|
||||
}
|
||||
|
||||
|
||||
#-------------------------------------------------------------------
|
||||
|
||||
=head2 execute ( )
|
||||
|
||||
See WebGUI::Workflow::Activity::execute() for details.
|
||||
|
||||
=cut
|
||||
|
||||
sub execute {
|
||||
my $self = shift;
|
||||
my $sth = $self->session->db->read("select assetId from EventsCalendar_event where eventEndDate < ?", [time()-$self->get("trashAfter")]);
|
||||
while (my ($id) = $sth->array) {
|
||||
my $asset = WebGUI::Asset::Event->new($self->session, $id);
|
||||
if (defined $asset && $asset->get("eventEndDate") < time()-$self->get("trashAfter")) {
|
||||
$asset->trash;
|
||||
}
|
||||
}
|
||||
$sth->finish;
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
||||
|
||||
1;
|
||||
|
||||
|
||||
|
|
@ -2,6 +2,24 @@ package WebGUI::i18n::English::Asset_Event;
|
|||
|
||||
our $I18N = {
|
||||
|
||||
'trash after' => {
|
||||
message => q|Trash After|,
|
||||
lastUpdated => 0,
|
||||
context=> q|a label for the workflow activity property that sets how long old events stick around|
|
||||
},
|
||||
|
||||
'trash after help' => {
|
||||
message => q|How long should old events stay in the calendar before being trashed?|,
|
||||
lastUpdated => 0,
|
||||
context=> q|hover help for the trash after field|
|
||||
},
|
||||
|
||||
'trash expired events' => {
|
||||
message => q|Trash Expired Events|,
|
||||
lastUpdated => 0,
|
||||
context=> q|The label for the workflow activity that trashes old events.|
|
||||
},
|
||||
|
||||
'72' => {
|
||||
message => q|Event, Add/Edit|,
|
||||
lastUpdated => 1038887363
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue