#!/usr/bin/perl -w # -- # otrs.addQueue - Add Queue from CLI # Copyright (C) 2002 Atif Ghaffar # Copyright (C) 2001-2006 OTRS GmbH, http://otrs.org/ # -- # $Id: otrs.addQueue,v 1.11 2007/06/05 07:52:57 rk Exp $ # -- # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # -- # use ../ as lib location use File::Basename; use FindBin qw($RealBin); use lib dirname($RealBin); use lib dirname($RealBin)."/Kernel/cpan-lib"; use strict; use vars qw($VERSION); $VERSION = '$Revision: 1.11 $'; $VERSION =~ s/^\$.*:\W(.*)\W.+?$/$1/; use Getopt::Std; use Kernel::Config; use Kernel::System::Time; use Kernel::System::DB; use Kernel::System::Log; use Kernel::System::Queue; use Kernel::System::Group; use Kernel::System::Main; # get options my %Opts = (); getopt('hgnsc', \%Opts); if ($Opts{'h'}) { print "otrs.addQueue.pl - add new queue\n"; print "Copyright (C) 2002 Atif Ghaffar \n"; print "Copyright (C) 2001-2006 OTRS GmbH, http://otrs.org/\n"; print "usage: otrs.addQueue.pl -n -g [-s -c ]\n"; exit 1; } if (!$Opts{'n'}) { print STDERR "ERROR: Need -n \n"; exit 1; } if (!$Opts{'g'}) { print STDERR "ERROR: Need -g \n"; exit 1; } # create common objects my %CommonObject = (); $CommonObject{ConfigObject} = Kernel::Config->new(%CommonObject); $CommonObject{LogObject} = Kernel::System::Log->new( %CommonObject, LogPrefix => 'otrs.addQueue', ); $CommonObject{MainObject} = Kernel::System::Main->new(%CommonObject); $CommonObject{DBObject} = Kernel::System::DB->new(%CommonObject); $CommonObject{QueueObject} = Kernel::System::Queue->new(%CommonObject); $CommonObject{GroupObject} = Kernel::System::Group->new(%CommonObject); # check group if (!$CommonObject{GroupObject}->GetGroupIdByName(Group => $Opts{'g'})){ print STDERR "ERROR: Found no GroupID for $Opts{'g'}\n"; exit 1; } # add queue if (!$CommonObject{QueueObject}->QueueAdd( Name => $Opts{'n'}, GroupID => $CommonObject{GroupObject}->GetGroupIdByName(Group => $Opts{'g'}), SystemAddressID => $Opts{'s'} || undef, Comment => $Opts{'c'} || undef, ValidID => 1, UserID => 1, )) { print STDERR "ERROR: Can't create queue!\n"; exit 1; } else { print "Notice: Queue '$Opts{'n'}' created.\n"; exit (0); }