2013-07-06 04:09:47 +00:00
< ? php
2013-09-11 21:51:23 +00:00
/**
* class that handles most ticket related functions .
* the ticket class is used for most ticketing related functions , it also holds some wrapper functions .
* @ author Daan Janssens , mentored by Matthew Lagoe
*/
2013-07-06 04:09:47 +00:00
class Ticket {
2014-09-03 02:46:08 +00:00
private $tId ; /**< The id of ticket */
private $timestamp ; /**< Timestamp of the ticket */
private $title ; /**< Title of the ticket */
private $status ; /**< Status of the ticket (0 = waiting on user reply, 1 = waiting on support, (2= not used atm), 3 = closed */
private $queue ; /**< (not in use atm) */
private $ticket_category ; /**< the id of the category belonging to the ticket */
private $author ; /**< The ticket_users id */
private $priority ; /**< The priority of the ticket where 0 = low, 3= supadupahigh */
2013-07-21 01:49:31 +00:00
////////////////////////////////////////////Functions////////////////////////////////////////////////////
2014-09-03 02:46:08 +00:00
2013-09-11 21:51:23 +00:00
/**
* check if a ticket exists .
* @ param $id the id of the ticket to be checked .
* @ return true if the ticket exists , else false .
2013-07-21 01:49:31 +00:00
*/
public static function ticketExists ( $id ) {
$dbl = new DBLayer ( " lib " );
2013-09-11 21:51:23 +00:00
//check if ticket exists
2014-05-27 22:18:44 +00:00
if ( $dbl -> select ( " `ticket` " , array ( 'ticket_id' => $id ), " `TId` = :ticket_id " ) -> rowCount () ){
2013-07-21 01:49:31 +00:00
return true ;
} else {
return false ;
2014-09-03 02:46:08 +00:00
}
2013-07-21 01:49:31 +00:00
}
2014-09-03 02:46:08 +00:00
2013-09-11 21:51:23 +00:00
/**
* return an array of the possible statuses
* @ return an array containing the string values that represent the different statuses .
2013-07-11 18:31:34 +00:00
*/
2013-07-11 00:39:52 +00:00
public static function getStatusArray () {
return Array ( " Waiting on user reply " , " Waiting on support " , " Waiting on Dev reply " , " Closed " );
}
2013-09-11 21:51:23 +00:00
/**
* return an array of the possible priorities
* @ return an array containing the string values that represent the different priorities .
2013-07-11 18:31:34 +00:00
*/
public static function getPriorityArray () {
return Array ( " Low " , " Normal " , " High " , " Super Dupa High " );
}
2014-09-03 02:46:08 +00:00
2013-09-11 21:51:23 +00:00
/**
* return an entire ticket .
* returns the ticket object and an array of all replies to that ticket .
* @ param $id the id of the ticket .
* @ param $view_as_admin true if the viewer of the ticket is a mod , else false ( depending on this it will also show the hidden comments )
* @ return an array containing the 'ticket_obj' and a 'reply_array' , which is an array containing all replies to that ticket .
2013-07-11 18:31:34 +00:00
*/
2013-07-19 13:59:39 +00:00
public static function getEntireTicket ( $id , $view_as_admin ) {
2013-07-10 10:36:14 +00:00
$ticket = new Ticket ();
2013-07-10 00:41:03 +00:00
$ticket -> load_With_TId ( $id );
2013-07-19 13:59:39 +00:00
$reply_array = Ticket_Reply :: getRepliesOfTicket ( $id , $view_as_admin );
2014-09-03 02:46:08 +00:00
return Array ( 'ticket_obj' => $ticket , 'reply_array' => $reply_array );
2013-07-10 00:41:03 +00:00
}
2014-09-03 02:46:08 +00:00
2013-09-11 21:51:23 +00:00
/**
* return all tickets of a specific user .
* an array of all tickets created by a specific user are returned by this function .
* @ param $author the id of the user of whom we want all tickets from .
* @ return an array containing all ticket objects related to a user .
*/
2013-07-10 10:36:14 +00:00
public static function getTicketsOf ( $author ) {
$dbl = new DBLayer ( " lib " );
2013-07-08 23:03:49 +00:00
$statement = $dbl -> execute ( " SELECT * FROM ticket INNER JOIN ticket_user ON ticket.Author = ticket_user.TUserId and ticket_user.ExternId=:id " , array ( 'id' => $author ));
$row = $statement -> fetchAll ();
$result = Array ();
foreach ( $row as $ticket ){
2013-07-10 10:36:14 +00:00
$instance = new self ();
2013-07-09 14:03:52 +00:00
$instance -> setTId ( $ticket [ 'TId' ]);
2013-07-08 23:03:49 +00:00
$instance -> setTimestamp ( $ticket [ 'Timestamp' ]);
$instance -> setTitle ( $ticket [ 'Title' ]);
$instance -> setStatus ( $ticket [ 'Status' ]);
$instance -> setQueue ( $ticket [ 'Queue' ]);
$instance -> setTicket_Category ( $ticket [ 'Ticket_Category' ]);
$instance -> setAuthor ( $ticket [ 'Author' ]);
$result [] = $instance ;
}
2014-09-03 02:46:08 +00:00
return $result ;
2013-07-08 23:03:49 +00:00
}
2014-09-03 02:46:08 +00:00
2013-09-11 21:51:23 +00:00
/**
* function that creates a new ticket .
* A new ticket will be created , in case the extra_info != 0 and the http request came from ingame , then a ticket_info page will be created .
* A log entry will be written , depending on the $real_authors value . In case the for_support_group parameter is set , the ticket will be forwarded immediately .
* Also the mail handler will create a new email that will be sent to the author to notify him that his ticket is freshly created .
* @ param $title the title we want to give to the ticket .
* @ param $content the content we want to give to the starting post of the ticket .
* @ param $category the id of the category that should be related to the ticket .
* @ param $author the person who ' s id will be stored in the database as creator of the ticket .
* @ param $real_author should be the same id , or a moderator / admin who creates a ticket for another user ( this is used for logging purposes ) .
* @ param $for_support_group in case you directly want to forward the ticket after creating it . ( default value = 0 = don ' t forward )
* @ param $extra_info used for creating an ticket_info page related to the ticket , this only happens when the ticket is made ingame .
* @ return the created tickets id .
*/
2013-08-28 00:24:08 +00:00
public static function create_Ticket ( $title , $content , $category , $author , $real_author , $for_support_group = 0 , $extra_info = 0 ) {
2013-08-18 00:49:58 +00:00
2013-08-27 20:54:45 +00:00
//create the new ticket!
2013-07-10 10:36:14 +00:00
$ticket = new Ticket ();
2013-09-05 02:29:47 +00:00
$values = array ( " Title " => $title , " Timestamp " => 0 , " Status " => 1 , " Queue " => 0 , " Ticket_Category " => $category , " Author " => $author , " Priority " => 0 );
2013-08-05 23:00:17 +00:00
$ticket -> set ( $values );
2013-07-08 12:49:03 +00:00
$ticket -> create ();
$ticket_id = $ticket -> getTId ();
2014-09-03 02:46:08 +00:00
2013-08-28 00:24:08 +00:00
//if ingame then add an extra info
if ( Helpers :: check_if_game_client () && $extra_info != 0 ){
$extra_info [ 'Ticket' ] = $ticket_id ;
Ticket_Info :: create_Ticket_Info ( $extra_info );
}
2014-09-03 02:46:08 +00:00
2013-08-27 20:54:45 +00:00
//write a log entry
2013-07-12 17:43:33 +00:00
if ( $author == $real_author ){
Ticket_Log :: createLogEntry ( $ticket_id , $author , 1 );
} else {
Ticket_Log :: createLogEntry ( $ticket_id , $real_author , 2 , $author );
}
2013-08-18 00:17:02 +00:00
Ticket_Reply :: createReply ( $content , $author , $ticket_id , 0 , $author );
2014-09-03 02:46:08 +00:00
2013-08-27 20:54:45 +00:00
//forwards the ticket directly after creation to the supposed support group
2013-08-18 00:17:02 +00:00
if ( $for_support_group ){
Ticket :: forwardTicket ( 0 , $ticket_id , $for_support_group );
}
2014-09-03 02:46:08 +00:00
2013-08-27 20:54:45 +00:00
//send email that new ticket has been created
2013-08-25 15:49:01 +00:00
Mail_Handler :: send_ticketing_mail ( $ticket -> getAuthor (), $ticket , $content , " NEW " , $ticket -> getForwardedGroupId ());
2013-07-10 00:41:03 +00:00
return $ticket_id ;
2014-09-03 02:46:08 +00:00
2013-07-08 12:49:03 +00:00
}
2014-09-03 02:46:08 +00:00
2013-09-11 21:51:23 +00:00
/**
* updates the ticket ' s status .
* A log entry about this will be created only if the newStatus is different from the current status .
* @ param $ticket_id the id of the ticket of which we want to change the status .
* @ param $newStatus the new status value ( integer )
* @ param $author the user ( id ) that performed the update status action
*/
2013-07-22 20:58:12 +00:00
public static function updateTicketStatus ( $ticket_id , $newStatus , $author ) {
2014-09-03 02:46:08 +00:00
2013-07-22 20:58:12 +00:00
$ticket = new Ticket ();
$ticket -> load_With_TId ( $ticket_id );
if ( $ticket -> getStatus () != $newStatus ){
$ticket -> setStatus ( $newStatus );
Ticket_Log :: createLogEntry ( $ticket_id , $author , 5 , $newStatus );
}
$ticket -> update ();
2014-09-03 02:46:08 +00:00
2013-07-22 20:58:12 +00:00
}
2014-09-03 02:46:08 +00:00
2013-09-11 21:51:23 +00:00
/**
* updates the ticket ' s status & priority .
* A log entry about this will be created only if the newStatus is different from the current status and also when the newPriority is different from the current priority .
* @ todo break this function up into a updateStatus ( already exists ) and updatePriority function and perhaps write a wrapper function for the combo .
* @ param $ticket_id the id of the ticket of which we want to change the status & priority
* @ param $newStatus the new status value ( integer )
* @ param $newPriority the new priority value ( integer )
* @ param $author the user ( id ) that performed the update
*/
2013-07-12 17:43:33 +00:00
public static function updateTicketStatusAndPriority ( $ticket_id , $newStatus , $newPriority , $author ) {
2014-09-03 02:46:08 +00:00
2013-07-12 17:43:33 +00:00
$ticket = new Ticket ();
$ticket -> load_With_TId ( $ticket_id );
if ( $ticket -> getStatus () != $newStatus ){
$ticket -> setStatus ( $newStatus );
Ticket_Log :: createLogEntry ( $ticket_id , $author , 5 , $newStatus );
}
if ( $ticket -> getPriority () != $newPriority ){
$ticket -> setPriority ( $newPriority );
Ticket_Log :: createLogEntry ( $ticket_id , $author , 6 , $newPriority );
}
$ticket -> update ();
2014-09-03 02:46:08 +00:00
2013-07-12 17:43:33 +00:00
}
2014-09-03 02:46:08 +00:00
2013-09-11 21:51:23 +00:00
/**
* return the latest reply of a ticket
* @ param $ticket_id the id of the ticket .
* @ return a ticket_reply object .
*/
2013-07-11 18:31:34 +00:00
public static function getLatestReply ( $ticket_id ) {
$dbl = new DBLayer ( " lib " );
$statement = $dbl -> execute ( " SELECT * FROM ticket_reply WHERE Ticket =:id ORDER BY TReplyId DESC LIMIT 1 " , array ( 'id' => $ticket_id ));
$reply = new Ticket_Reply ();
$reply -> set ( $statement -> fetch ());
return $reply ;
}
2014-09-03 02:46:08 +00:00
2014-09-05 07:50:07 +00:00
/**
* return the attachments list
* @ param $ticket_id the id of the ticket .
* @ return a ticket_reply object .
*/
public static function getAttachments ( $ticket_id ) {
$dbl = new DBLayer ( " lib " );
$statement = $dbl -> select ( " `ticket_attachments` " , array ( 'ticket_TId' => $ticket_id ), " `ticket_TId` =:ticket_TId ORDER BY Timestamp DESC " );
$fetchall = $statement -> fetchall ();
$base = 0 ;
foreach ( $fetchall as & $value ) {
$webUser = new WebUsers ( $value [ 'Uploader' ]);
$fetchall [ $base ][ 'Username' ] = $webUser -> getUsername ();
2014-09-05 08:30:54 +00:00
$bytes = $fetchall [ $base ][ 'Filesize' ];
$precision = 2 ;
$units = array ( 'B' , 'KB' , 'MB' , 'GB' , 'TB' );
$bytes = max ( $bytes , 0 );
$pow = floor (( $bytes ? log ( $bytes ) : 0 ) / log ( 1024 ));
$pow = min ( $pow , count ( $units ) - 1 );
$bytes /= pow ( 1024 , $pow );
$fetchall [ $base ][ 'Filesize' ] = round ( $bytes , $precision ) . ' ' . $units [ $pow ];;
2014-09-05 07:50:07 +00:00
$base ++ ;
}
return $fetchall ;
}
2013-09-11 21:51:23 +00:00
/**
* create a new reply for a ticket .
* A reply will only be added if the content isn 't empty and if the ticket isn' t closed .
* The ticket creator will be notified by email that someone else replied on his ticket .
* @ param $content the content of the reply
* @ param $author the author of the reply
* @ param $ticket_id the id of the ticket to which we want to add the reply .
* @ param $hidden boolean that specifies if the reply should only be shown to mods / admins or all users .
*/
2013-07-19 13:59:39 +00:00
public static function createReply ( $content , $author , $ticket_id , $hidden ){
2013-08-03 02:00:41 +00:00
//if not empty
if ( ! ( Trim ( $content ) === '' )){
$content = filter_var ( $content , FILTER_SANITIZE_STRING );
2013-07-12 18:10:17 +00:00
$ticket = new Ticket ();
$ticket -> load_With_TId ( $ticket_id );
//if status is not closed
if ( $ticket -> getStatus () != 3 ){
2013-07-22 20:58:12 +00:00
Ticket_Reply :: createReply ( $content , $author , $ticket_id , $hidden , $ticket -> getAuthor ());
2014-09-03 02:46:08 +00:00
2013-08-13 15:16:43 +00:00
//notify ticket author that a new reply is added!
if ( $ticket -> getAuthor () != $author ){
2013-08-25 15:49:01 +00:00
Mail_Handler :: send_ticketing_mail ( $ticket -> getAuthor (), $ticket , $content , " REPLY " , $ticket -> getForwardedGroupId ());
2013-08-13 15:16:43 +00:00
}
2014-09-03 02:46:08 +00:00
2013-07-12 18:10:17 +00:00
} else {
//TODO: Show error message that ticket is closed
}
} else {
//TODO: Show error content is empty
}
}
2014-09-03 02:46:08 +00:00
2013-09-11 21:51:23 +00:00
/**
* assign a ticket to a user .
* Checks if the ticket exists , if so then it will try to assign the user to it , a log entry will be written about this .
* @ param $user_id the id of user trying to be assigned to the ticket .
* @ param $ticket_id the id of the ticket that we try to assign to the user .
* @ return SUCCESS_ASSIGNED , TICKET_NOT_EXISTING or ALREADY_ASSIGNED
*/
2013-07-21 01:49:31 +00:00
public static function assignTicket ( $user_id , $ticket_id ){
if ( self :: ticketExists ( $ticket_id )){
2013-07-22 18:33:34 +00:00
$returnvalue = Assigned :: assignTicket ( $user_id , $ticket_id );
Ticket_Log :: createLogEntry ( $ticket_id , $user_id , 7 );
return $returnvalue ;
2013-07-21 01:49:31 +00:00
} else {
return " TICKET_NOT_EXISTING " ;
}
}
2014-09-03 02:46:08 +00:00
2013-09-11 21:51:23 +00:00
/**
* unassign a ticket of a user .
* Checks if the ticket exists , if so then it will try to unassign the user of it , a log entry will be written about this .
* @ param $user_id the id of user trying to be assigned to the ticket .
* @ param $ticket_id the id of the ticket that we try to assign to the user .
* @ return SUCCESS_UNASSIGNED , TICKET_NOT_EXISTING or NOT_ASSIGNED
*/
2013-07-21 01:49:31 +00:00
public static function unAssignTicket ( $user_id , $ticket_id ){
if ( self :: ticketExists ( $ticket_id )){
2013-07-22 18:33:34 +00:00
$returnvalue = Assigned :: unAssignTicket ( $user_id , $ticket_id );
Ticket_Log :: createLogEntry ( $ticket_id , $user_id , 9 );
return $returnvalue ;
2013-07-21 01:49:31 +00:00
} else {
return " TICKET_NOT_EXISTING " ;
}
}
2014-09-03 02:46:08 +00:00
2013-09-11 21:51:23 +00:00
/**
* forward a ticket to a specific support group .
* Checks if the ticket exists , if so then it will try to forward the ticket to the support group specified , a log entry will be written about this .
* if no log entry should be written then the user_id should be 0 , else te $user_id will be used in the log to specify who forwarded it .
* @ param $user_id the id of user trying to forward the ticket .
* @ param $ticket_id the id of the ticket that we try to forward to a support group .
* @ param $group_id the id of the support group .
* @ return SUCCESS_FORWARDED , TICKET_NOT_EXISTING or INVALID_SGROUP
*/
2013-07-22 12:51:42 +00:00
public static function forwardTicket ( $user_id , $ticket_id , $group_id ){
if ( self :: ticketExists ( $ticket_id )){
if ( isset ( $group_id ) && $group_id != " " ){
2013-07-22 20:58:12 +00:00
//forward the ticket
2013-07-22 18:33:34 +00:00
$returnvalue = Forwarded :: forwardTicket ( $group_id , $ticket_id );
2014-09-03 02:46:08 +00:00
2013-08-17 01:06:22 +00:00
if ( $user_id != 0 ){
//unassign the ticket incase the ticket is assined to yourself
self :: unAssignTicket ( $user_id , $ticket_id );
//make a log entry of this action
Ticket_Log :: createLogEntry ( $ticket_id , $user_id , 8 , $group_id );
}
2013-07-22 18:33:34 +00:00
return $returnvalue ;
2013-07-22 12:51:42 +00:00
} else {
return " INVALID_SGROUP " ;
}
} else {
return " TICKET_NOT_EXISTING " ;
}
}
2014-09-03 02:46:08 +00:00
2013-07-08 12:49:03 +00:00
////////////////////////////////////////////Methods////////////////////////////////////////////////////
2014-09-03 02:46:08 +00:00
2013-09-11 21:51:23 +00:00
/**
* A constructor .
* Empty constructor
*/
2013-07-10 10:36:14 +00:00
public function __construct () {
2013-07-06 04:09:47 +00:00
}
2013-09-11 21:51:23 +00:00
/**
* sets the object ' s attributes .
* @ param $values should be an array of the form array ( 'TId' => ticket_id , 'Title' => title , 'Status' => status , 'Timestamp' => ts , 'Queue' => queue ,
* 'Ticket_Category' => tc , 'Author' => author , 'Priority' => priority ) .
*/
2013-08-05 20:35:22 +00:00
public function set ( $values ){
2013-08-13 15:16:43 +00:00
if ( isset ( $values [ 'TId' ])){
$this -> tId = $values [ 'TId' ];
}
2013-08-05 20:35:22 +00:00
$this -> title = $values [ 'Title' ];
$this -> status = $values [ 'Status' ];
2013-08-29 00:08:05 +00:00
$this -> timestamp = $values [ 'Timestamp' ];
2013-08-05 20:35:22 +00:00
$this -> queue = $values [ 'Queue' ];
$this -> ticket_category = $values [ 'Ticket_Category' ];
$this -> author = $values [ 'Author' ];
$this -> priority = $values [ 'Priority' ];
2013-07-06 04:09:47 +00:00
}
2014-09-03 02:46:08 +00:00
2013-09-11 21:51:23 +00:00
/**
* creates a new 'ticket' entry .
* this method will use the object 's attributes for creating a new ' ticket ' entry in the database .
*/
2013-07-06 04:09:47 +00:00
public function create (){
2013-07-10 10:36:14 +00:00
$dbl = new DBLayer ( " lib " );
2014-09-03 02:46:08 +00:00
$this -> tId = $dbl -> executeReturnId ( " ticket " , Array ( 'Title' => $this -> title , 'Status' => $this -> status , 'Queue' => $this -> queue , 'Ticket_Category' => $this -> ticket_category , 'Author' => $this -> author , 'Priority' => $this -> priority ), array ( 'Timestamp' => 'now()' ));
2013-07-06 04:09:47 +00:00
}
2014-09-03 02:46:08 +00:00
2013-09-11 21:51:23 +00:00
/**
* loads the object ' s attributes .
* loads the object ' s attributes by giving a TId ( ticket id ) .
* @ param $id the id of the ticket that should be loaded
*/
2013-07-06 04:09:47 +00:00
public function load_With_TId ( $id ) {
2013-07-10 10:36:14 +00:00
$dbl = new DBLayer ( " lib " );
2014-05-27 22:18:44 +00:00
$statement = $dbl -> select ( " ticket " , array ( 'id' => $id ), " TId=:id " );
2013-07-06 04:09:47 +00:00
$row = $statement -> fetch ();
$this -> tId = $row [ 'TId' ];
$this -> timestamp = $row [ 'Timestamp' ];
$this -> title = $row [ 'Title' ];
$this -> status = $row [ 'Status' ];
$this -> queue = $row [ 'Queue' ];
$this -> ticket_category = $row [ 'Ticket_Category' ];
$this -> author = $row [ 'Author' ];
2013-07-11 18:31:34 +00:00
$this -> priority = $row [ 'Priority' ];
2013-07-06 04:09:47 +00:00
}
2014-09-03 02:46:08 +00:00
2013-09-11 21:51:23 +00:00
/**
* update the objects attributes to the db .
*/
2013-07-06 04:09:47 +00:00
public function update (){
2013-07-10 10:36:14 +00:00
$dbl = new DBLayer ( " lib " );
2014-05-27 22:18:44 +00:00
$dbl -> update ( " ticket " , Array ( 'Timestamp' => $this -> timestamp , 'Title' => $this -> title , 'Status' => $this -> status , 'Queue' => $this -> queue , 'Ticket_Category' => $this -> ticket_category , 'Author' => $this -> author , 'Priority' => $this -> priority ), " TId= $this->tId " );
2013-07-06 04:09:47 +00:00
}
2014-09-03 02:46:08 +00:00
2013-09-11 21:51:23 +00:00
/**
* check if a ticket has a ticket_info page or not .
* @ return true or false
*/
2013-08-28 03:31:06 +00:00
public function hasInfo (){
return Ticket_Info :: TicketHasInfo ( $this -> getTId ());
}
2014-09-03 02:46:08 +00:00
2013-07-08 12:49:03 +00:00
////////////////////////////////////////////Getters////////////////////////////////////////////////////
2014-09-03 02:46:08 +00:00
2013-09-11 21:51:23 +00:00
/**
* get tId attribute of the object .
*/
2013-07-08 07:40:48 +00:00
public function getTId (){
return $this -> tId ;
2013-07-06 04:09:47 +00:00
}
2014-09-03 02:46:08 +00:00
2013-09-11 21:51:23 +00:00
/**
* get timestamp attribute of the object in the format defined in the outputTime function of the Helperclass .
*/
2013-07-08 12:49:03 +00:00
public function getTimestamp (){
2013-07-19 14:30:58 +00:00
return Helpers :: outputTime ( $this -> timestamp );
2013-07-08 12:49:03 +00:00
}
2014-09-03 02:46:08 +00:00
2013-09-11 21:51:23 +00:00
/**
* get title attribute of the object .
*/
2013-07-08 12:49:03 +00:00
public function getTitle (){
return $this -> title ;
}
2014-09-03 02:46:08 +00:00
2013-09-11 21:51:23 +00:00
/**
* get status attribute of the object .
*/
2013-07-08 12:49:03 +00:00
public function getStatus (){
return $this -> status ;
}
2014-09-03 02:46:08 +00:00
2013-09-11 21:51:23 +00:00
/**
* get status attribute of the object in the form of text ( string ) .
*/
2013-07-09 14:03:52 +00:00
public function getStatusText (){
2013-07-11 00:39:52 +00:00
$statusArray = Ticket :: getStatusArray ();
return $statusArray [ $this -> getStatus ()];
2013-07-09 14:03:52 +00:00
}
2014-09-03 02:46:08 +00:00
2013-09-11 21:51:23 +00:00
/**
* get category attribute of the object in the form of text ( string ) .
*/
2013-07-09 14:03:52 +00:00
public function getCategoryName (){
2013-07-10 10:36:14 +00:00
$category = Ticket_Category :: constr_TCategoryId ( $this -> getTicket_Category ());
2014-09-03 02:46:08 +00:00
return $category -> getName ();
2013-07-09 14:03:52 +00:00
}
2014-09-03 02:46:08 +00:00
2013-09-11 21:51:23 +00:00
/**
* get queue attribute of the object .
*/
2013-07-08 12:49:03 +00:00
public function getQueue (){
return $this -> queue ;
}
2014-09-03 02:46:08 +00:00
2013-09-11 21:51:23 +00:00
/**
* get ticket_category attribute of the object ( int ) .
*/
2013-07-08 12:49:03 +00:00
public function getTicket_Category (){
return $this -> ticket_category ;
}
2014-09-03 02:46:08 +00:00
2013-09-11 21:51:23 +00:00
/**
* get author attribute of the object ( int ) .
*/
2013-07-08 12:49:03 +00:00
public function getAuthor (){
return $this -> author ;
}
2014-09-03 02:46:08 +00:00
2013-09-11 21:51:23 +00:00
/**
* get priority attribute of the object ( int ) .
*/
2013-07-11 18:31:34 +00:00
public function getPriority (){
return $this -> priority ;
}
2014-09-03 02:46:08 +00:00
2013-09-11 21:51:23 +00:00
/**
* get priority attribute of the object in the form of text ( string ) .
*/
2013-07-11 18:31:34 +00:00
public function getPriorityText (){
$priorityArray = Ticket :: getPriorityArray ();
return $priorityArray [ $this -> getPriority ()];
}
2014-09-03 02:46:08 +00:00
2013-09-11 21:51:23 +00:00
/**
* get the user assigned to the ticket .
* or return 0 in case not assigned .
*/
2013-07-20 12:45:05 +00:00
public function getAssigned (){
$user_id = Assigned :: getUserAssignedToTicket ( $this -> getTId ());
if ( $user_id == " " ){
return 0 ;
} else {
return $user_id ;
}
}
2014-09-03 02:46:08 +00:00
2013-09-11 21:51:23 +00:00
/**
* get the name of the support group to whom the ticket is forwarded
* or return 0 in case not forwarded .
*/
2013-07-22 12:51:42 +00:00
public function getForwardedGroupName (){
$group_id = Forwarded :: getSGroupOfTicket ( $this -> getTId ());
if ( $group_id == " " ){
return 0 ;
} else {
return Support_Group :: getGroup ( $group_id ) -> getName ();
}
}
2014-09-03 02:46:08 +00:00
2013-09-11 21:51:23 +00:00
/**
* get the id of the support group to whom the ticket is forwarded
* or return 0 in case not forwarded .
*/
2013-07-22 12:51:42 +00:00
public function getForwardedGroupId (){
$group_id = Forwarded :: getSGroupOfTicket ( $this -> getTId ());
if ( $group_id == " " ){
return 0 ;
} else {
return $group_id ;
}
}
2013-07-08 12:49:03 +00:00
////////////////////////////////////////////Setters////////////////////////////////////////////////////
2014-09-03 02:46:08 +00:00
2013-09-11 21:51:23 +00:00
/**
* set tId attribute of the object .
* @ param $id integer id of the ticket
*/
2013-07-08 07:40:48 +00:00
public function setTId ( $id ){
$this -> tId = $id ;
2013-07-06 04:09:47 +00:00
}
2014-09-03 02:46:08 +00:00
2013-09-11 21:51:23 +00:00
/**
* set timestamp attribute of the object .
* @ param $ts timestamp of the ticket
*/
2013-07-08 12:49:03 +00:00
public function setTimestamp ( $ts ){
$this -> timestamp = $ts ;
}
2014-09-03 02:46:08 +00:00
2013-09-11 21:51:23 +00:00
/**
* set title attribute of the object .
* @ param $t title of the ticket
*/
2013-07-08 12:49:03 +00:00
public function setTitle ( $t ){
$this -> title = $t ;
}
2014-09-03 02:46:08 +00:00
2013-09-11 21:51:23 +00:00
/**
* set status attribute of the object .
* @ param $s status of the ticket ( int )
*/
2013-07-08 12:49:03 +00:00
public function setStatus ( $s ){
$this -> status = $s ;
}
2014-09-03 02:46:08 +00:00
2013-09-11 21:51:23 +00:00
/**
* set queue attribute of the object .
* @ param $q queue of the ticket
*/
2013-07-08 12:49:03 +00:00
public function setQueue ( $q ){
$this -> queue = $q ;
}
2014-09-03 02:46:08 +00:00
2013-09-11 21:51:23 +00:00
/**
* set ticket_category attribute of the object .
* @ param $tc ticket_category id of the ticket ( int )
*/
2013-07-08 12:49:03 +00:00
public function setTicket_Category ( $tc ){
$this -> ticket_category = $tc ;
}
2014-09-03 02:46:08 +00:00
2013-09-11 21:51:23 +00:00
/**
* set author attribute of the object .
* @ param $a author of the ticket
*/
2013-07-08 12:49:03 +00:00
public function setAuthor ( $a ){
$this -> author = $a ;
}
2014-09-03 02:46:08 +00:00
2013-09-11 21:51:23 +00:00
/**
* set priority attribute of the object .
* @ param $p priority of the ticket
*/
2013-07-11 18:31:34 +00:00
public function setPriority ( $p ){
$this -> priority = $p ;
}
2014-09-03 02:46:08 +00:00
2014-09-05 07:50:07 +00:00
/**
* function that creates a ticket Attachment .
*/
public static function add_Attachment ( $TId , $filename , $author , $tempFile ){
global $FILE_STORAGE_PATH ;
2014-09-08 18:46:43 +00:00
$length = mt_rand ( 20 , 25 );
$characters = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ$-_.+!*\'(),' ;
2014-09-05 07:50:07 +00:00
$randomString = '' ;
for ( $i = 0 ; $i < $length ; $i ++ ) {
$randomString .= $characters [ rand ( 0 , strlen ( $characters ) - 1 )];
}
$targetFile = $FILE_STORAGE_PATH . $randomString . " / " . $filename ;
2014-09-08 18:46:43 +00:00
if ( file_exists ( $targetFile )) { return self :: add_Attachment ( $TId , $filename , $author , $tempFile ); }
2014-09-05 07:50:07 +00:00
$ticket = new Ticket ();
$ticket -> load_With_TId ( $TId );
//create the attachment!
2014-09-08 18:59:49 +00:00
try {
$dbl = new DBLayer ( " lib " );
$dbl -> insert ( " `ticket_attachments` " , Array ( 'ticket_TId' => $TId , 'Filename' => $filename , 'Filesize' => filesize ( $tempFile ), 'Uploader' => $author , 'Path' => $randomString . " / " . $filename ));
}
catch ( Exception $e ) {
return $false ;
}
2014-09-05 07:50:07 +00:00
mkdir ( $FILE_STORAGE_PATH . $randomString );
2014-09-08 18:59:49 +00:00
$return = move_uploaded_file ( $tempFile , $targetFile );
if ( $return == false ) {
$dbl -> delete ( " `ticket_attachments` " , array ( 'Path' => $randomString . " / " . $filename ), " `Path` = :Path " );
}
2014-09-05 07:50:07 +00:00
//write a log entry
Ticket_Log :: createLogEntry ( $TId , $author , 10 );
2014-09-08 18:59:49 +00:00
return $return ;
2014-09-05 07:50:07 +00:00
}
2014-05-27 22:18:44 +00:00
}