Difference between revisions of "CustomActionQchange"

From Request Tracker Wiki
Jump to navigation Jump to search
(CustomActionQchange, new page.)
(No difference)

Revision as of 04:43, 1 November 2016

Below is a custom action module for adding RT::Action:Qchange via crontool that can be called for via a query similar to this "--action RT::Action::QChange --action-arg YOURQUEUE --template 'blank'"

Create the file in a place where RT can call it (notice not to put it at a place that will be overwritten at an RT upgrade, ex /opt/rt4/lib/RT/Action/Qchange.pm

This script was created by Andy Smith.

Code

  1. BEGIN BPS TAGGED BLOCK {{{
  2. COPYRIGHT:
  3. This software is Copyright (c) 1996-2015 Best Practical Solutions, LLC
  4. (Except where explicitly superseded by other copyright notices)
  5. LICENSE:
  6. This work is made available to you under the terms of Version 2 of
  7. the GNU General Public License. A copy of that license should have
  8. been provided with this software, but in any event can be snarfed
  9. from www.gnu.org.
  10. This work is distributed in the hope that it will be useful, but
  11. WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. General Public License for more details.
  14. You should have received a copy of the GNU General Public License
  15. along with this program; if not, write to the Free Software
  16. Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  17. 02110-1301 or visit their web page on the internet at
  18. http://www.gnu.org/licenses/old-licenses/gpl-2.0.html.
  19. CONTRIBUTION SUBMISSION POLICY:
  20. (The following paragraph is not intended to limit the rights granted
  21. to you to modify and distribute this software under the terms of
  22. the GNU General Public License and is only of importance to you if
  23. you choose to contribute your changes and enhancements to the
  24. community by submitting them to Best Practical Solutions, LLC.)
  25. By intentionally submitting any modifications, corrections or
  26. derivatives to this work, or any other work intended for use with
  27. Request Tracker, to Best Practical Solutions, LLC, you confirm that
  28. you are the copyright holder for those contributions and you grant
  29. Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable,
  30. royalty-free, perpetual, license to use, copy, create derivative
  31. works based on those contributions, and sublicense and distribute
  32. those contributions and any derivatives thereof.
  33. END BPS TAGGED BLOCK }}}


package RT::Action::QChange;

use strict; use warnings;

use base qw(RT::Action::Notify);

use Email::Address;

=head1 Notify Owner or AdminCc

If the owner of this ticket is Nobody, notify the AdminCcs. Otherwise, only notify the Owner.

=cut

sub Prepare {

 my $self = shift;
 return 1;

}

my $self;

sub Commit {

 my $self = shift;

my $argument = $self->Argument;

   unless ( $argument ) {
       $RT::Logger->error("Argument is mandatory for Test action");
       return 0;
   }
 my ($status, $msg) = $self->TicketObj->SetQueue("$argument");
 if ( not $status ) {
   RT::Logger->error("Could not reassign queue: $msg");
   return 0;
   }


   RT::Base->_ImportOverlays();
   return 1;

}

1;