#!/usr/bin/perl -w
# --
# scripts/test/CreateTickerNumber.pl - test script to generate a ticket number
# Copyright (C) 2001-2005 Martin Edenhofer <martin+code@otrs.org>
# --
# $Id: CreateTickerNumber.pl,v 1.3 2005/02/15 11:58:13 martin 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.3 $';
$VERSION =~ s/^\$.*:\W(.*)\W.+?$/$1/;

use Kernel::Config;
use Kernel::System::Log;
use Kernel::System::DB;
use Kernel::System::Time;
use Kernel::System::Ticket;

# --
# common objects
# --
my %CommonObject = ();
$CommonObject{ConfigObject} = Kernel::Config->new();
$CommonObject{LogObject} = Kernel::System::Log->new(
    LogPrefix => 'OTRS-test-CreateTickerNumber.pl',
    %CommonObject,
);
$CommonObject{TimeObject} = Kernel::System::Time->new(%CommonObject);
$CommonObject{DBObject} = Kernel::System::DB->new(%CommonObject);
$CommonObject{TicketObject} = Kernel::System::Ticket->new(%CommonObject);

print "OTRS::TicketArticleGenerator::Test ($VERSION)\n";
print "=================================\n";
print "\n";
my $Hook = $CommonObject{ConfigObject}->Get('Ticket::Hook');
my $Tn = $CommonObject{TicketObject}->CreateTicketNr();
print "Current Ticket::Hook: $Hook\n";
print "\n";
print "CreateTicketNr():\n";
print "-----------------\n";
print "TicketNumber: $Tn\n";
print "\n";
print "Match test with current settings - GetTNByString():\n";
print "---------------------------------------------------\n";
my $String = $CommonObject{TicketObject}->TicketSubjectBuild(
    TicketNumber => $Tn,
    Subject => 'Email Test script for OTRS',
);


if ($CommonObject{TicketObject}->GetTNByString($String)) {
    print "The Subject is: ($String).\n";
}
else {
    print "Test FAILED ($String)!\n";
}
print "\n";
exit;
my $TicketID = $CommonObject{TicketObject}->TicketCreate(
        TN => $Tn,
        Title => 'Some Ticket Title',
        Queue => 'Raw',                # or QueueID => 123,
        Lock => 'unlock',
        Priority => '3 normal',         # or PriorityID => 2,
        State => 'new',                # or StateID => 5,
        #CustomerNo => '123465',
        CustomerUser => 'user@domainname.tld',
        UserID => 1, # new owner
        CreateUserID => 1,
);

my $ArticleID = $CommonObject{TicketObject}->ArticleSend(
      TicketID => $TicketID,
      ArticleType => 'email-external', # email-external|email-internal|phone|fax|...
      SenderType => 'agent', # agent|system|customer
      From => 'Name Surname <name@domain.tld>', # not required but useful
      To => 'Name1 Surname1 <name1@domain1.tld>', # not required but useful
      Subject => $String, # required
      Body => 'The message text', # required
      MessageID => '<asdasdasd.123@example.com>', # not required but useful
      Charset => 'ISO-8859-15',
      Type => 'text/plain',
      Loop => 0, # 1|0 used for bulk emails
      HistoryType => 'EmailAgent',  # Move|AddNote|PriorityUpdate|WebRequestCustomer|...
      HistoryComment => 'Test',
      NoAgentNotify => 0,            # if you don't want to send agent notifications
      UserID => 1,
);


