NAME
Blog::Spam::Plugin::Sample - A sample plugin.
ABOUT
This is a sample plugin which is designed to demonstrate the functionality which a plugin may implement to be usefully called by Blog::Spam::Server.
OVERVIEW
The Blog::Spam::Server receives comment data, via XML::RPC, from remote clients.
These incoming comments, and associated meta-data, will be examined by each known plugin in turn. If a single plugin determines the comment is SPAM then all further testing is ceased.
PLUGIN METHODS
For a plugin to be loaded it must live beneath the Blog::Spam::Plugin namespace.
There are two mandatory methods ("new" + "name"), and two optional methods ("testComment", "expire").
METHODS
new
This method is called when the server is started, and all plugins are loaded.
This method is mandatory.
name
Return the name of this plugin.
This method is mandatory.
testComment
This method is invoked upon the reception of an incoming comment to test. It is given a hash of options, with notable keys including:
There are two valid return values "OK", which means the comment should be allowed to continue, and "SPAM" which means the plugin has determined the comment to be SPAM.
Optionally the SPAM result may be qualified with a human-readable explanation:
return "SPAM:This comment defames me";
expire
This method is optional.
Some plugins maintain state which must be expired.
If this method is implemented it will be invoked upon a regular frequency. The single argument given will be one of:
- hourly This method has been called once per hour.
- daily This method has been called once per day.
- weekly This method has been called once per week.
LICENSE
This code is licensed under the terms of the GNU General Public License, version 2. See included file GPL-2 for details.
AUTHOR
Steve -- http://www.steve.org.uk/
LICENSE
Copyright (c) 2008-2010 by Steve Kemp. All rights reserved.
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The LICENSE file contains the full text of the license.
1 POD Error
The following errors were encountered while parsing the POD:
- Around line 168:
=cut found outside a pod block. Skipping to next block.