Helper plugin for collecting, filtering and sorting data objects, to be used by other plugins.
This plugin is used by Foswiki:Extensions/AttachmentListPlugin and Foswiki:Extensions/FormFieldListPlugin to process this kind of parameters:%ATTACHMENTLIST{ web="*" topic="*" excludetopic="WebHome, WebPreferences" extension="jpg,jpeg,gif,png" includefilepattern="(?i)^[A]" fromdate="2007/01/01" sort="$fileName" sortorder="descending" }%In short, this plugin provides:
Any time you need to process a set of data - filtering, sorting - this plugin may make your life easier.
See for example how filters in AttachmentListPlugin are created:
# filter attachments by date range if ( defined $inParams->{'fromdate'} || defined $inParams->{'todate'} ) { Foswiki::Plugins::TopicDataHelperPlugin::filterTopicDataByDateRange( \%topicData, $inParams->{'fromdate'}, $inParams->{'todate'} ); } # filter included/excluded filenames if ( defined $inParams->{'file'} || defined $inParams->{'excludefile'} ) { Foswiki::Plugins::TopicDataHelperPlugin::filterTopicDataByProperty( \%topicData, 'name', 1, $inParams->{'file'}, $inParams->{'excludefile'} ); } # filter filenames by regular expression if ( defined $inParams->{'includefilepattern'} || defined $inParams->{'excludefilepattern'} ) { Foswiki::Plugins::TopicDataHelperPlugin::filterTopicDataByRegexMatch( \%topicData, 'name', $inParams->{'includefilepattern'}, $inParams->{'excludefilepattern'} ); }
There is a relatively small burden for setting up your data for data collection - to enable it for filtering and sorting. After that it is more or less straightforward.
TopicDataHelperPlugin does not prescribe any way to write your plugin. But let's follow this order and see how the plugin could help you.
Almost all functions assume you have a hash object with web-topic-data relations. For AttachmentListPlugin this looks like:
%topicData = ( Web1 => { Topic1 => { picture.jpg => FileData object, me.PNG => FileData object, ... }, }, )The first step is to create a hash of web-topic relations, and that is what
createTopicData
does:
createTopicData( $webs, $excludewebs, $topics, $excludetopics ) -> \%hash
And it may be called like this:
my $webs = $inParams->{'web'} || $inWeb || ''; my $topics = $inParams->{'topic'} || $inTopic || ''; my $excludeTopics = $inParams->{'excludetopic'} || ''; my $excludeWebs = $inParams->{'excludeweb'} || ''; my $topicData = Foswiki::Plugins::TopicDataHelperPlugin::createTopicData( $webs, $excludeWebs, $topics, $excludeTopics );
The resulting hash looks like this:
%topicData = ( Web1 => { Topic1 => 1, Topic2 => 1, ... } Web2 => { Topic1 => 1, Topic2 => 1, ... } )The
1
values are placeholders for now.
At this stage you will have filtered out unwanted webs and topics as passed in the parameters $webs, $excludewebs, $topics, $excludetopics
.
FileData
:
package Foswiki::Plugins::AttachmentListPlugin::FileData;
To filter and sort on object data properties, these properties must be accessible as instance members.
For instance, to filterFileData
objects on attachment date, we create a FileData date
property that we fill with the $attachment->{'date'}
value:
sub new { my ( $class, $web, $topic, $attachment ) = @_; my $this = {}; $this->{'attachment'} = $attachment; $this->{'date'} = $attachment->{'date'} || 0; ... bless $this, $class; }
... to be able to write:
my $fd = Foswiki::Plugins::AttachmentListPlugin::FileData->new( $inWeb, $inTopic, $attachment ); my $date = $fd->{date};To add our data objects to the web-topic hash, we call
insertObjectData
:
insertObjectData( $topicData, $createObjectDataFunc, $properties )
Where $topicData
is our hash reference, and $createObjectDataFunc
is a reference to a function that will create data objects. You will write that function.
Parameter $properties
is optional. You may pass a hash reference with custom data to your object creation function.
For AttachmentListPlugin that function looks like:
sub _createFileData { my ( $inTopicHash, $inWeb, $inTopic ) = @_; my $attachments = _getAttachmentsInTopic( $inWeb, $inTopic ); if ( scalar @$attachments ) { $inTopicHash->{$inTopic} = (); foreach my $attachment (@$attachments) { my $fd = Foswiki::Plugins::AttachmentListPlugin::FileData->new( $inWeb, $inTopic, $attachment ); my $fileName = $fd->{name}; $inTopicHash->{$inTopic}{$fileName} = \$fd; } } else { # no META:FILEATTACHMENT, so remove from hash delete $inTopicHash->{$inTopic}; } }
And it is called with:
Foswiki::Plugins::TopicDataHelperPlugin::insertObjectData( $topicData, \&_createObjectData );
Now your hash will have the structure:
%topicData = ( Web1 => { Topic1 => { 'key a' => object, 'key b' => object, ... }, }, )
TopicDataHelperPlugin provides 4 filter functions:
filterTopicDataByViewPermission( $topicData, $wikiUserName )
Filters topic data objects by checking if the user $wikiUserName
has view access permissions.
Removes topic data if the user does not have permission to view the topic.
Example:# filter topics by view permission my $user = Foswiki::Func::getWikiName(); my $wikiUserName = Foswiki::Func::userToWikiName( $user, 1 ); Foswiki::Plugins::TopicDataHelperPlugin::filterTopicDataByViewPermission( \%topicData, $wikiUserName );
filterTopicDataByDateRange( $topicData, $fromDate, $toDate, $dateKey )
Filters topic data objects by date range, from $fromDate
to $toDate
(both in epcoh seconds).
Removes topic data if: $dateKey
is earlier than $fromDate
$dateKey
is later than $toDate
$fromDate
or toDate
, or both.
Example:
# filter attachments by date range if ( defined $inParams->{'fromdate'} || defined $inParams->{'todate'} ) { Foswiki::Plugins::TopicDataHelperPlugin::filterTopicDataByDateRange( \%topicData, $inParams->{'fromdate'}, $inParams->{'todate'} ); }
filterTopicDataByProperty( $topicData, $propertyKey, $isCaseSensitive, $includeValues, $excludeValues )
Filters topic data objects by matching an object property with a list of possible values.
Removes topic data if:$propertyKey
is not in $includeValues
$propertyKey
is in $excludeValues
$includeValues
or $excludeValues
, or both.
For example, AttachmentListPlugin uses this function to filter attachments by extension. extension="gif, jpg"
will find all attachments with extension 'gif' OR 'jpg'. OR 'GIF' or 'JPG', therefore $isCaseSensitive
is set to 0
.
Example:
# filter included/excluded field VALUES my $values = $inParams->{'includevalue'} || undef; my $excludeValues = $inParams->{'excludevalue'} || undef; if ( defined $values || defined $excludeValues ) { Foswiki::Plugins::TopicDataHelperPlugin::filterTopicDataByProperty( \%topicData, 'value', 1, $values, $excludeValues ); }
filterTopicDataByRegexMatch( $topicData, $propertyKey, $includeRegex, $excludeRegex )
Filters topic data objects by matching an object property with a regular expression.
Removes topic data if: - the object attribute$propertyKey
does not match $includeRegex
- the object attribute $propertyKey
matches $excludeRegex
Use either $includeRegex
or $excludeRegex
, or both.
Example:
# filter filenames by regular expression if ( defined $inParams->{'includefilepattern'} || defined $inParams->{'excludefilepattern'} ) { Foswiki::Plugins::TopicDataHelperPlugin::filterTopicDataByRegexMatch( \%topicData, 'name', $inParams->{'includefilepattern'}, $inParams->{'excludefilepattern'} ); }
After using the filter functions, your topic data hash will probably be quite some smaller. Next step is sorting the data. Limiting the result set will come after sorting.
getListOfObjectData
does:
getListOfObjectData( $topicData ) -> \@objects
Example:
my $objects = Foswiki::Plugins::TopicDataHelperPlugin::getListOfObjectData($topicData);Now we can sort the list of data objects with
sortObjectData
:
sortObjectData( $objectData, $sortOrder, $sortKey, $compareMode, $nameKey ) -> \@objects
Function parameters: \@objectData
(array reference) - list of data objects (NOT the topic data!)
$sortOrder
(int) - either $Foswiki::Plugins::TopicDataHelperPlugin::sortDirections{'ASCENDING'}
, $Foswiki::Plugins::TopicDataHelperPlugin::sortDirections{'DESCENDING'}
or $Foswiki::Plugins::TopicDataHelperPlugin::sortDirections{'NONE'}
$inSortKey
(string) - primary sort key; this will be a property of your data object
$compareMode
(string) - sort mode of primary key, either 'numeric' or 'alphabetical'
$nameKey
(string) - to be used as secondary sort key; must be alphabetical; this will be a property of your data object
This function returns a reference to an sorted array of data objects.
To get the primary sort key and the kind of data (alphabetical or integer) we can create a lookup table in our data class:
my %sortKeys = ( '$fileDate' => [ 'date', 'integer' ], '$fileSize' => [ 'size', 'integer' ], '$fileUser' => [ 'user', 'string' ], '$fileExtension' => [ 'extension', 'string' ], '$fileName' => [ 'name', 'string' ], '$fileTopic' => [ 'topic', 'string' ] ); sub getSortKey { my ($inRawKey) = @_; return $sortKeys{$inRawKey}[0]; } sub getCompareMode { my ($inRawKey) = @_; return $sortKeys{$inRawKey}[1]; }This can be used as follows:
my $sortKey = &Foswiki::Plugins::AttachmentListPlugin::FileData::getSortKey( $inParams->{'sort'} ); my $compareMode = &Foswiki::Plugins::AttachmentListPlugin::FileData::getCompareMode( $inParams->{'sort'} );Similarly we can create a mapping between user input (for instance the
sortorder
parameter) and the $sortOrder
value we pass to TopicDataHelperPlugin:
my %sortInputTable = ( 'none' => $Foswiki::Plugins::TopicDataHelperPlugin::sortDirections{'NONE'}, 'ascending' => $Foswiki::Plugins::TopicDataHelperPlugin::sortDirections{'ASCENDING'}, 'descending' => $Foswiki::Plugins::TopicDataHelperPlugin::sortDirections{'DESCENDING'}, ); # translate input to sort parameters my $sortOrderParam = $inParams->{'sortorder'} || 'none'; my $sortOrder = $sortInputTable{$sortOrderParam} || $Foswiki::Plugins::TopicDataHelperPlugin::sortDirections{'NONE'};Now we sort the data:
$objects = Foswiki::Plugins::TopicDataHelperPlugin::sortObjectData( $objects, $sortOrder, $sortKey, $compareMode, 'name' );
With the final data in the right order, we can simply shorten the array:
splice @$objects, $inParams->{'limit'} if defined $inParams->{'limit'};
Formatting is not provided by TopicDataHelperPlugin, but your formatting function would logically have this setup:
sub _formatData { my ( $inObjects, $inParams ) = @_; my @objects = @$inObjects; my $format = $inParams->{'format'} || $defaultFormat; my $separator = $inParams->{'separator'} || "\n"; my @formattedData = (); foreach my $object (@object) { my $s = $format; ... perform string substitutions push @formattedData, $s; } my $outText = join $separator, @formattedData; return $outText; }
makeHashFromString
.
makeHashFromString( $text, $isCaseSensitive ) -> \%hash
For example:
my $excludeTopicsList = 'WebHome, WebPreferences'; my $excludeTopics = makeHashFromString( $excludeTopicsList, 1 );
... will create:
$hashref = { 'WebHome' => 1, 'WebPreferences' => 2, };To store object data in a file, you may use
stringifyTopicData
:
stringifyTopicData( $topicData ) -> \@objects
This function creates an array of strings from topic data objects, where each string is generated by the object's method stringify
(to be implemented by your object's data class).
For example, FormFieldData's stringify
method looks like this:
sub stringify { my $this = shift; return "1.0\t$this->{web}\t$this->{topic}\t$this->{name}\t$this->{value}\t$this->{date}"; }
Call this method with:
my $list = Foswiki::Plugins::TopicDataHelperPlugin::stringifyTopicData($topicData); my $text = join "\n", @$list;
Open configure, and open the "Extensions" section. Use "Find More Extensions" to get a list of available extensions. Select "Install".
If you have any problems, or if the extension isn't available inconfigure
, then you can still install manually from the command-line. See http://foswiki.org/Support/ManuallyInstallingExtensions for more help.
Authors: | Foswiki:Main.ArthurClemens |
Copyright ©: | Foswiki:Main.ArthurClemens |
License: | GPL |
Version: | 13567 (2012-01-09) |
Release: | 1.1.4 |
Change History: | |
09 Jan 2012 | V.1.1.4 Paul Harvey: Fix perl 5.12+ Use of uninitialized value in lc warnings, fix code testing for compare mode 'integer' vs incorrect API doc 'numeric' (now works with both) |
01 Apr 2010 | V.1.1.2 Arthur Clemens: Allow topic data to be used without data structure. |
20 Jun 2009 | V.1.1.1 Arthur Clemens: Fixed reading of web.topic notation in createTopicData . |
8 Jun 2009 | V.1.1: Foswiki:Main.WillNorris: Ported to Foswiki |
24 Oct 2008 | V.1.0: Initial version |
Dependencies: | None |
Perl Version: | 5.005 |
Home: | http://foswiki.org/Extensions/TopicDataHelperPlugin |
Support: | http://foswiki.org/Support/TopicDataHelperPlugin |