From 5a7e165b95e83c339899219ae49f9aa7607926c5 Mon Sep 17 00:00:00 2001 From: fukachan Date: Sun, 18 Dec 2005 12:03:17 +0000 Subject: support fundamental functions: o extract queue_id from confirmaion database. o distribute article. --- fml/lib/FML/Command/Admin/moderate.pm | 138 ++++++++++++++++++++++++++++++++++ 1 file changed, 138 insertions(+) create mode 100644 fml/lib/FML/Command/Admin/moderate.pm (limited to 'fml/lib/FML/Command/Admin/moderate.pm') diff --git a/fml/lib/FML/Command/Admin/moderate.pm b/fml/lib/FML/Command/Admin/moderate.pm new file mode 100644 index 00000000..018b531f --- /dev/null +++ b/fml/lib/FML/Command/Admin/moderate.pm @@ -0,0 +1,138 @@ +#-*- perl -*- +# +# Copyright (C) 2005 Ken'ichi Fukamachi +# All rights reserved. This program is free software; you can +# redistribute it and/or modify it under the same terms as Perl itself. +# +# $FML$ +# + +package FML::Command::Admin::moderate; +use strict; +use vars qw(@ISA @EXPORT @EXPORT_OK $AUTOLOAD); +use Carp; + + +=head1 NAME + +FML::Command::Admin::moderate - moderate submitted articles. + +=head1 SYNOPSIS + +See C for more details. + +=head1 DESCRIPTION + +=head1 METHODS + +=head2 process($curproc, $command_args) + +=cut + + +# Descriptions: constructor. +# Arguments: OBJ($self) +# Side Effects: none +# Return Value: OBJ +sub new +{ + my ($self) = @_; + my ($type) = ref($self) || $self; + my $me = {}; + return bless $me, $type; +} + + +# Descriptions: need lock or not. +# Arguments: none +# Side Effects: none +# Return Value: NUM( 1 or 0) +sub need_lock { 1;} + + +# Descriptions: lock channel. +# Arguments: none +# Side Effects: none +# Return Value: STR +sub lock_channel { return 'command_serialize';} + + +# Descriptions: dummy. +# Arguments: OBJ($self) OBJ($curproc) HASH_REF($command_args) +# Side Effects: none +# Return Value: NUM(1 or 0) +sub verify_syntax +{ + my ($self, $curproc, $command_args) = @_; +} + + +# Descriptions: moderate submmited article. +# Arguments: OBJ($self) OBJ($curproc) HASH_REF($command_args) +# Side Effects: update $member_map $recipient_map +# Return Value: none +sub process +{ + my ($self, $curproc, $command_args) = @_; + my $config = $curproc->config(); + my $options = $command_args->{ options } || []; + my $address = $command_args->{ command_data } || $options->[ 0 ]; + my $confirm_id = $command_args->{ _confirm_id } || undef; + + use FML::Confirm; + my $cache_dir = $config->{ db_dir }; + my $keyword = $config->{ confirm_command_prefix }; + my $command = 'moderate'; + my $class = 'moderate'; + my $confirm = new FML::Confirm $curproc, { + keyword => $keyword, + cache_dir => $cache_dir, + class => $class, + address => $address, + buffer => $command, + }; + my $queue_id = $confirm->get($confirm_id, "queue_id"); + $curproc->log("moderation confirmed: qid=$queue_id"); + + use FML::Moderate; + my $moderation = new FML::Moderate $curproc; + $curproc->log("distribute article qid=$queue_id"); + $moderation->distribute_article($queue_id); +} + + +# Descriptions: dummy. +# Arguments: OBJ($self) OBJ($curproc) HASH_REF($command_args) +# Side Effects: update $member_map $recipient_map +# Return Value: none +sub cgi_menu +{ + my ($self, $curproc, $command_args) = @_; + my $r = ''; +} + + +=head1 CODING STYLE + +See C on fml coding style guide. + +=head1 AUTHOR + +Ken'ichi Fukamachi + +=head1 COPYRIGHT + +Copyright (C) 2005 Ken'ichi Fukamachi + +All rights reserved. This program is free software; you can +redistribute it and/or modify it under the same terms as Perl itself. + +=head1 HISTORY + +FML::Command::Admin::moderate first appeared in fml8 mailing list driver package. +See C for more details. + +=cut + + +1; -- cgit v1.2.1