-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcustomerportal.php
executable file
·3343 lines (2980 loc) · 129 KB
/
customerportal.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/*********************************************************************************
** The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
* The Original Code is: vtiger CRM Open Source
* The Initial Developer of the Original Code is vtiger.
* Portions created by vtiger are Copyright (C) vtiger.
* All Rights Reserved.
*
********************************************************************************/
/**
* URL Verfication - Required to overcome Apache mis-configuration and leading to shared setup mode.
*/
require_once 'config.php';
if (file_exists('config_override.php')) {
include_once 'config_override.php';
}
include_once 'vtlib/Vtiger/Module.php';
include_once 'includes/main/WebUI.php';
require_once('libraries/nusoap/nusoap.php');
require_once('modules/HelpDesk/HelpDesk.php');
require_once('modules/Emails/mail.php');
require_once 'modules/Users/Users.php';
/** Configure language for server response translation */
global $default_language, $current_language;
if(!isset($current_language)) $current_language = $default_language;
$userid = getPortalUserid();
$user = new Users();
$current_user = $user->retrieveCurrentUserInfoFromFile($userid);
$log = &LoggerManager::getLogger('customerportal');
error_reporting(0);
$NAMESPACE = 'http://www.vtiger.com/products/crm';
$server = new soap_server;
$server->configureWSDL('customerportal');
$server->wsdl->addComplexType(
'common_array',
'complexType',
'array',
'',
array(
'fieldname' => array('name'=>'fieldname','type'=>'xsd:string'),
)
);
$server->wsdl->addComplexType(
'common_array1',
'complexType',
'array',
'',
'SOAP-ENC:Array',
array(),
array(
array('ref'=>'SOAP-ENC:arrayType','wsdl:arrayType'=>'tns:common_array[]')
),
'tns:common_array'
);
$server->wsdl->addComplexType(
'add_contact_detail_array',
'complexType',
'array',
'',
array(
'salutation' => array('name'=>'salutation','type'=>'xsd:string'),
'firstname' => array('name'=>'firstname','type'=>'xsd:string'),
'phone' => array('name'=>'phone','type'=>'xsd:string'),
'lastname' => array('name'=>'lastname','type'=>'xsd:string'),
'mobile' => array('name'=>'mobile','type'=>'xsd:string'),
'accountid' => array('name'=>'accountid','type'=>'xsd:string'),
'leadsource' => array('name'=>'leadsource','type'=>'xsd:string'),
)
);
$server->wsdl->addComplexType(
'field_details_array',
'complexType',
'array',
'',
array(
'fieldlabel' => array('name'=>'fieldlabel','type'=>'xsd:string'),
'fieldvalue' => array('name'=>'fieldvalue','type'=>'xsd:string'),
)
);
$server->wsdl->addComplexType(
'field_datalist_array',
'complexType',
'array',
'',
array(
'fielddata' => array('name'=>'fielddata','type'=>'xsd:string'),
)
);
$server->wsdl->addComplexType(
'product_list_array',
'complexType',
'array',
'',
array(
'productid' => array('name'=>'productid','type'=>'xsd:string'),
'productname' => array('name'=>'productname','type'=>'xsd:string'),
'productcode' => array('name'=>'productcode','type'=>'xsd:string'),
'commissionrate' => array('name'=>'commissionrate','type'=>'xsd:string'),
'qtyinstock' => array('name'=>'qtyinstock','type'=>'xsd:string'),
'qty_per_unit' => array('name'=>'qty_per_unit','type'=>'xsd:string'),
'unit_price' => array('name'=>'unit_price','type'=>'xsd:string'),
)
);
$server->wsdl->addComplexType(
'get_ticket_attachments_array',
'complexType',
'array',
'',
array(
'files' => array(
'fileid'=>'xsd:string','type'=>'tns:xsd:string',
'filename'=>'xsd:string','type'=>'tns:xsd:string',
'filesize'=>'xsd:string','type'=>'tns:xsd:string',
'filetype'=>'xsd:string','type'=>'tns:xsd:string',
'filecontents'=>'xsd:string','type'=>'tns:xsd:string'
),
)
);
$server->register(
'authenticate_user',
array('fieldname'=>'tns:common_array'),
array('return'=>'tns:common_array'),
$NAMESPACE);
$server->register(
'change_password',
array('fieldname'=>'tns:common_array'),
array('return'=>'tns:common_array'),
$NAMESPACE);
$server->register(
'create_ticket',
array('fieldname'=>'tns:common_array'),
array('return'=>'tns:common_array'),
$NAMESPACE);
//for a particular contact ticket list
$server->register(
'get_tickets_list',
array('fieldname'=>'tns:common_array'),
array('return'=>'tns:common_array'),
$NAMESPACE);
$server->register(
'get_ticket_comments',
array('fieldname'=>'tns:common_array'),
array('return'=>'tns:common_array'),
$NAMESPACE);
$server->register(
'get_combo_values',
array('fieldname'=>'tns:common_array'),
array('return'=>'tns:common_array'),
$NAMESPACE);
$server->register(
'get_KBase_details',
array('fieldname'=>'tns:common_array'),
array('return'=>'tns:common_array1'),
$NAMESPACE);
$server->register(
'save_faq_comment',
array('fieldname'=>'tns:common_array'),
array('return'=>'tns:common_array'),
$NAMESPACE);
$server->register(
'update_ticket_comment',
array('fieldname'=>'tns:common_array'),
array('return'=>'tns:common_array'),
$NAMESPACE);
$server->register(
'close_current_ticket',
array('fieldname'=>'tns:common_array'),
array('return'=>'xsd:string'),
$NAMESPACE);
$server->register(
'update_login_details',
array('fieldname'=>'tns:common_array'),
array('return'=>'xsd:string'),
$NAMESPACE);
$server->register(
'send_mail_for_password',
array('email'=>'xsd:string'),
array('return'=>'xsd:string'),
$NAMESPACE);
$server->register(
'get_ticket_creator',
array('fieldname'=>'tns:common_array'),
array('return'=>'xsd:string'),
$NAMESPACE);
$server->register(
'get_picklists',
array('fieldname'=>'tns:common_array'),
array('return'=>'tns:common_array'),
$NAMESPACE);
$server->register(
'get_ticket_attachments',
array('fieldname'=>'tns:common_array'),
array('return'=>'tns:common_array'),
$NAMESPACE);
$server->register(
'get_filecontent',
array('fieldname'=>'tns:common_array'),
array('return'=>'tns:common_array'),
$NAMESPACE);
$server->register(
'add_ticket_attachment',
array('fieldname'=>'tns:common_array'),
array('return'=>'tns:common_array'),
$NAMESPACE);
$server->register(
'get_cf_field_details',
array('id'=>'xsd:string','contactid'=>'xsd:string','sessionid'=>'xsd:string'),
array('return'=>'tns:field_details_array'),
$NAMESPACE);
$server->register(
'get_check_account_id',
array('id'=>'xsd:string'),
array('return'=>'xsd:string'),
$NAMESPACE);
//to get details of quotes,invoices and documents
$server->register(
'get_details',
array('id'=>'xsd:string','block'=>'xsd:string','contactid'=>'xsd:string','sessionid'=>'xsd:string'),
array('return'=>'tns:field_details_array'),
$NAMESPACE);
//to get the products list for the entire account of a contact
$server->register(
'get_product_list_values',
array('id'=>'xsd:string','block'=>'xsd:string','sessionid'=>'xsd:string','only_mine'=>'xsd:string'),
array('return'=>'tns:field_details_array'),
$NAMESPACE);
$server->register(
'get_list_values',
array('id'=>'xsd:string','block'=>'xsd:string','sessionid'=>'xsd:string','only_mine'=>'xsd:string'),
array('return'=>'tns:field_datalist_array'),
$NAMESPACE);
$server->register(
'get_product_urllist',
array('customerid'=>'xsd:string','productid'=>'xsd:string','block'=>'xsd:string'),
array('return'=>'tns:field_datalist_array'),
$NAMESPACE);
$server->register(
'get_pdf',
array('id'=>'xsd:string','block'=>'xsd:string','contactid'=>'xsd:string','sessionid'=>'xsd:string'),
array('return'=>'tns:field_datalist_array'),
$NAMESPACE);
$server->register(
'get_filecontent_detail',
array('id'=>'xsd:string','folderid'=>'xsd:string','block'=>'xsd:string','contactid'=>'xsd:string','sessionid'=>'xsd:string'),
array('return'=>'tns:get_ticket_attachments_array'),
$NAMESPACE);
$server->register(
'get_invoice_detail',
array('id'=>'xsd:string','block'=>'xsd:string','contactid'=>'xsd:string','sessionid'=>'xsd:string'),
array('return'=>'tns:field_details_array'),
$NAMESPACE);
$server->register(
'get_modules',
array(),
array('return'=>'tns:field_details_array'),
$NAMESPACE);
$server->register(
'show_all',
array('module'=>'xsd:string'),
array('return'=>'xsd:string'),
$NAMESPACE);
$server->register(
'get_documents',
array('id'=>'xsd:string','module'=>'xsd:string','customerid'=>'xsd:string','sessionid'=> 'xsd:string'),
array('return'=>'tns:field_details_array'),
$NAMESPACE);
$server->register(
'updateCount',
array('id'=>'xsd:string'),
array('return'=>'xsd:string'),
$NAMESPACE);
//to get the Services list for the entire account of a contact
$server->register(
'get_service_list_values',
array('id'=>'xsd:string','module'=>'xsd:string','sessionid'=>'xsd:string','only_mine'=>'xsd:string'),
array('return'=>'tns:field_details_array'),
$NAMESPACE);
//to get the Project Tasks for a given Project
$server->register(
'get_project_components',
array('id'=>'xsd:string','module'=>'xsd:string','customerid'=>'xsd:string','sessionid'=>'xsd:string'),
array('return'=>'tns:field_details_array'),
$NAMESPACE);
//to get the Project Tickets for a given Project
$server->register(
'get_project_tickets',
array('id'=>'xsd:string','module'=>'xsd:string','customerid'=>'xsd:string','sessionid'=>'xsd:string'),
array('return'=>'tns:field_details_array'),
$NAMESPACE);
/**
* Helper class to provide functionality like caching etc...
*/
class Vtiger_Soap_CustomerPortal {
/** Preference value caching */
static $_prefs_cache = array();
static function lookupPrefValue($key) {
if(self::$_prefs_cache[$key]) {
return self::$_prefs_cache[$key];
}
return false;
}
static function updatePrefValue($key, $value) {
self::$_prefs_cache[$key] = $value;
}
/** Sessionid caching for re-use */
static $_sessionid = array();
static function lookupSessionId($key) {
if(isset(self::$_sessionid[$key])) {
return self::$_sessionid[$key];
}
return false;
}
static function updateSessionId($key, $value) {
self::$_sessionid[$key] = $value;
}
/** Store available module information */
static $_modules = false;
static function lookupAllowedModules() {
return self::$_modules;
}
static function updateAllowedModules($modules) {
self::$_modules = $modules;
}
}
/** function used to get the list of ticket comments
* @param array $input_array - array which contains the following parameters
* int $id - customer id
* string $sessionid - session id
* int $ticketid - ticket id
* @return array $response - ticket comments and details as a array with elements comments, owner and createdtime which will be returned from the function get_ticket_comments_list
*/
function get_ticket_comments($input_array)
{
global $adb,$log,$current_user;
$adb->println("Entering customer portal function get_ticket_comments");
$adb->println($input_array);
$id = $input_array['id'];
$sessionid = $input_array['sessionid'];
$ticketid = (int) $input_array['ticketid'];
if(!validateSession($id,$sessionid))
return null;
$userid = getPortalUserid();
$user = new Users();
$current_user = $user->retrieveCurrentUserInfoFromFile($userid);
if(isPermitted('ModComments', 'DetailView')) {
$response = _getTicketModComments($ticketid);
}
return $response;
}
/**
* Function added to get the Tickets Comments
* @global <PearDataBase> $adb
* @param <Integer> $ticketId
* @return <Array>
*/
function _getTicketModComments($ticketId) {
global $adb;
$sql = "SELECT * FROM vtiger_modcomments
INNER JOIN vtiger_crmentity ON vtiger_modcomments.modcommentsid = vtiger_crmentity.crmid AND deleted = 0
WHERE related_to = ? ORDER BY createdtime DESC";
$result = $adb->pquery($sql, array($ticketId));
$rows = $adb->num_rows($result);
$output = array();
for($i=0; $i<$rows; $i++) {
$customer = $adb->query_result($result, $i, 'customer');
$owner = $adb->query_result($result, $i, 'smownerid');
if(!empty($customer)) {
$emailResult = $adb->pquery('SELECT * FROM vtiger_portalinfo WHERE id = ?', array($customer));
$output[$i]['owner'] = $adb->query_result($emailResult, 0 ,'user_name');
} else {
$output[$i]['owner'] = getOwnerName($owner);
}
$output[$i]['comments'] = nl2br($adb->query_result($result, $i, 'commentcontent'));
$output[$i]['createdtime'] = $adb->query_result($result, $i, 'createdtime');
}
return $output;
}
/** function used to get the combo values ie., picklist values of the HelpDesk module and also the list of products
* @param array $input_array - array which contains the following parameters
=> int $id - customer id
string $sessionid - session id
* return array $output - array which contains the product id, product name, ticketpriorities, ticketseverities, ticketcategories and module owners list
*/
function get_combo_values($input_array)
{
global $adb,$log;
$adb->println("Entering customer portal function get_combo_values");
$adb->println($input_array);
$id = $input_array['id'];
$sessionid = $input_array['sessionid'];
if(!validateSession($id,$sessionid))
return null;
$output = Array();
$sql = "select productid, productname from vtiger_products inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_products.productid where vtiger_crmentity.deleted=0";
$result = $adb->pquery($sql, array());
$noofrows = $adb->num_rows($result);
for($i=0;$i<$noofrows;$i++)
{
$check = checkModuleActive('Products');
if($check == false){
$output['productid']['productid']="#MODULE INACTIVE#";
$output['productname']['productname']="#MODULE INACTIVE#";
break;
}
$output['productid']['productid'][$i] = $adb->query_result($result,$i,"productid");
$output['productname']['productname'][$i] = decode_html($adb->query_result($result,$i,"productname"));
}
$userid = getPortalUserid();
//We are going to display the picklist entries associated with admin user (role is H2)
$roleres = $adb->pquery("SELECT roleid from vtiger_user2role where userid = ?",array($userid));
$RowCount = $adb->num_rows($roleres);
if($RowCount > 0){
$admin_role = $adb->query_result($roleres,0,'roleid');
}
$result1 = $adb->pquery("select vtiger_ticketpriorities.ticketpriorities from vtiger_ticketpriorities inner join vtiger_role2picklist on vtiger_role2picklist.picklistvalueid = vtiger_ticketpriorities.picklist_valueid and vtiger_role2picklist.roleid='$admin_role' order by sortorderid", array());
for($i=0;$i<$adb->num_rows($result1);$i++)
{
$output['ticketpriorities']['ticketpriorities'][$i] = $adb->query_result($result1,$i,"ticketpriorities");
}
$result2 = $adb->pquery("select vtiger_ticketseverities.ticketseverities from vtiger_ticketseverities inner join vtiger_role2picklist on vtiger_role2picklist.picklistvalueid = vtiger_ticketseverities.picklist_valueid and vtiger_role2picklist.roleid='$admin_role' order by sortorderid", array());
for($i=0;$i<$adb->num_rows($result2);$i++)
{
$output['ticketseverities']['ticketseverities'][$i] = $adb->query_result($result2,$i,"ticketseverities");
}
$result3 = $adb->pquery("select vtiger_ticketcategories.ticketcategories from vtiger_ticketcategories inner join vtiger_role2picklist on vtiger_role2picklist.picklistvalueid = vtiger_ticketcategories.picklist_valueid and vtiger_role2picklist.roleid='$admin_role' order by sortorderid", array());
for($i=0;$i<$adb->num_rows($result3);$i++)
{
$output['ticketcategories']['ticketcategories'][$i] = $adb->query_result($result3,$i,"ticketcategories");
}
// Gather service contract information
if(!vtlib_isModuleActive('ServiceContracts')) {
$output['serviceid']['serviceid']="#MODULE INACTIVE#";
$output['servicename']['servicename']="#MODULE INACTIVE#";
} else {
$servicequery = "SELECT vtiger_servicecontracts.servicecontractsid,vtiger_servicecontracts.subject
FROM vtiger_servicecontracts
INNER JOIN vtiger_crmentity on vtiger_crmentity.crmid=vtiger_servicecontracts.servicecontractsid
AND vtiger_crmentity.deleted = 0
WHERE vtiger_servicecontracts.sc_related_to = ?";
$params = array($id);
$showAll = show_all('HelpDesk');
if($showAll == 'true') {
$servicequery .= ' OR vtiger_servicecontracts.sc_related_to = (SELECT accountid FROM vtiger_contactdetails WHERE contactid=? AND accountid <> 0)
OR vtiger_servicecontracts.sc_related_to IN
(SELECT contactid FROM vtiger_contactdetails WHERE accountid =
(SELECT accountid FROM vtiger_contactdetails WHERE contactid=? AND accountid <> 0))
';
array_push($params, $id);
array_push($params, $id);
}
$serviceResult = $adb->pquery($servicequery,$params);
for($i=0;$i < $adb->num_rows($serviceResult);$i++){
$serviceid = $adb->query_result($serviceResult,$i,'servicecontractsid');
$output['serviceid']['serviceid'][$i] = $serviceid;
$output['servicename']['servicename'][$i] = $adb->query_result($serviceResult,$i,'subject');
}
}
return $output;
}
/** function to get the Knowledge base details
* @param array $input_array - array which contains the following parameters
=> int $id - customer id
string $sessionid - session id
* return array $result - array which contains the faqcategory, all product ids , product names and all faq details
*/
function get_KBase_details($input_array)
{
global $adb,$log;
$adb->println("Entering customer portal function get_KBase_details");
$adb->println($input_array);
$id = $input_array['id'];
$sessionid = $input_array['sessionid'];
if(!validateSession($id,$sessionid))
return null;
$userid = getPortalUserid();
$result['faqcategory'] = array();
$result['product'] = array();
$result['faq'] = array();
//We are going to display the picklist entries associated with admin user (role is H2)
$roleres = $adb->pquery("SELECT roleid from vtiger_user2role where userid = ?",array($userid));
$RowCount = $adb->num_rows($roleres);
if($RowCount > 0){
$admin_role = $adb->query_result($roleres,0,'roleid');
}
$category_query = "select vtiger_faqcategories.faqcategories from vtiger_faqcategories inner join vtiger_role2picklist on vtiger_role2picklist.picklistvalueid = vtiger_faqcategories.picklist_valueid and vtiger_role2picklist.roleid='$admin_role'";
$category_result = $adb->pquery($category_query, array());
$category_noofrows = $adb->num_rows($category_result);
for($j=0;$j<$category_noofrows;$j++)
{
$faqcategory = $adb->query_result($category_result,$j,'faqcategories');
$result['faqcategory'][$j] = $faqcategory;
}
$check = checkModuleActive('Products');
if($check == true) {
$product_query = "select productid, productname from vtiger_products inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_products.productid where vtiger_crmentity.deleted=0";
$product_result = $adb->pquery($product_query, array());
$product_noofrows = $adb->num_rows($product_result);
for($i=0;$i<$product_noofrows;$i++)
{
$productid = $adb->query_result($product_result,$i,'productid');
$productname = $adb->query_result($product_result,$i,'productname');
$result['product'][$i]['productid'] = $productid;
$result['product'][$i]['productname'] = $productname;
}
}
$faq_query = "select vtiger_faq.*, vtiger_crmentity.createdtime, vtiger_crmentity.modifiedtime from vtiger_faq " .
"inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_faq.id " .
"where vtiger_crmentity.deleted=0 and vtiger_faq.status='Published' order by vtiger_crmentity.modifiedtime DESC";
$faq_result = $adb->pquery($faq_query, array());
$faq_noofrows = $adb->num_rows($faq_result);
for($k=0;$k<$faq_noofrows;$k++)
{
$faqid = $adb->query_result($faq_result,$k,'id');
$moduleid = $adb->query_result($faq_result,$k,'faq_no');
$result['faq'][$k]['faqno'] = $moduleid;
$result['faq'][$k]['id'] = $faqid;
if($check == true) {
$result['faq'][$k]['product_id'] = $adb->query_result($faq_result,$k,'product_id');
}
$result['faq'][$k]['question'] = nl2br($adb->query_result($faq_result,$k,'question'));
$result['faq'][$k]['answer'] = nl2br($adb->query_result($faq_result,$k,'answer'));
$result['faq'][$k]['category'] = $adb->query_result($faq_result,$k,'category');
$result['faq'][$k]['faqcreatedtime'] = $adb->query_result($faq_result,$k,'createdtime');
$result['faq'][$k]['faqmodifiedtime'] = $adb->query_result($faq_result,$k,'modifiedtime');
$faq_comment_query = "select * from vtiger_faqcomments where faqid=? order by createdtime DESC";
$faq_comment_result = $adb->pquery($faq_comment_query, array($faqid));
$faq_comment_noofrows = $adb->num_rows($faq_comment_result);
for($l=0;$l<$faq_comment_noofrows;$l++)
{
$faqcomments = nl2br($adb->query_result($faq_comment_result,$l,'comments'));
$faqcreatedtime = $adb->query_result($faq_comment_result,$l,'createdtime');
if($faqcomments != '')
{
$result['faq'][$k]['comments'][$l] = $faqcomments;
$result['faq'][$k]['createdtime'][$l] = $faqcreatedtime;
}
}
}
$adb->println($result);
return $result;
}
/** function to save the faq comment
* @param array $input_array - array which contains the following values
=> int $id - Customer ie., Contact id
int $sessionid - session id
int $faqid - faq id
string $comment - comment to be added with the FAQ
* return array $result - This function will call get_KBase_details and return that array
*/
function save_faq_comment($input_array)
{
global $adb;
$adb->println("Entering customer portal function save_faq_comment");
$adb->println($input_array);
$id = $input_array['id'];
$sessionid = $input_array['sessionid'];
$faqid = (int) $input_array['faqid'];
$comment = $input_array['comment'];
if(!validateSession($id,$sessionid))
return null;
$createdtime = $adb->formatDate(date('YmdHis'),true);
if(trim($comment) != '')
{
$faq_query = "insert into vtiger_faqcomments values(?,?,?,?)";
$adb->pquery($faq_query, array('', $faqid, $comment, $createdtime));
}
$params = Array('id'=>"$id", 'sessionid'=>"$sessionid");
$result = get_KBase_details($input_array);
return $result;
}
/** function to get a list of tickets and to search tickets
* @param array $input_array - array which contains the following values
=> int $id - Customer ie., Contact id
int $only_mine - if true it will display only tickets related to contact
otherwise displays tickets related to account it belongs and all the contacts that are under the same account
int $where - used for searching tickets
string $match - used for matching tickets
* return array $result - This function will call get_KBase_details and return that array
*/
function get_tickets_list($input_array) {
//To avoid SQL injection we are type casting as well as bound the id variable.
$id = (int) vtlib_purify($input_array['id']);
$only_mine = $input_array['onlymine'];
$where = vtlib_purifyForSql($input_array['where']); //addslashes is already added with where condition fields in portal itself
$match = $input_array['match'];
$sessionid = $input_array['sessionid'];
if(!validateSession($id,$sessionid))
return null;
require_once('modules/HelpDesk/HelpDesk.php');
require_once('include/utils/UserInfoUtil.php');
global $adb,$log;
global $current_user;
$log->debug("Entering customer portal function get_ticket_list");
$user = new Users();
$userid = getPortalUserid();
$show_all = show_all('HelpDesk');
$current_user = $user->retrieveCurrentUserInfoFromFile($userid);
// Prepare where conditions based on search query
$join_type = '';
$where_conditions = '';
if(trim($where) != '') {
if($match == 'all' || $match == '') {
$join_type = " AND ";
} elseif($match == 'any') {
$join_type = " OR ";
}
$where = explode("&&&",$where);
$where_conditions = implode($join_type, $where);
}
$entity_ids_list = array();
if($only_mine == 'true' || $show_all == 'false')
{
array_push($entity_ids_list,$id);
}
else
{
$contactquery = "SELECT contactid, accountid FROM vtiger_contactdetails " .
" INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_contactdetails.contactid" .
" AND vtiger_crmentity.deleted = 0 " .
" WHERE (accountid = (SELECT accountid FROM vtiger_contactdetails WHERE contactid = ?) AND accountid != 0) OR contactid = ?";
$contactres = $adb->pquery($contactquery, array($id,$id));
$no_of_cont = $adb->num_rows($contactres);
for($i=0;$i<$no_of_cont;$i++)
{
$cont_id = $adb->query_result($contactres,$i,'contactid');
$acc_id = $adb->query_result($contactres,$i,'accountid');
if(!in_array($cont_id, $entity_ids_list))
$entity_ids_list[] = $cont_id;
if(!in_array($acc_id, $entity_ids_list) && $acc_id != '0')
$entity_ids_list[] = $acc_id;
}
}
$focus = new HelpDesk();
$focus->filterInactiveFields('HelpDesk');
foreach ($focus->list_fields as $fieldlabel => $values){
foreach($values as $table => $fieldname){
$fields_list[$fieldlabel] = $fieldname;
}
}
$query = "SELECT vtiger_troubletickets.*, vtiger_crmentity.smownerid,vtiger_crmentity.createdtime, vtiger_crmentity.modifiedtime, '' AS setype
FROM vtiger_troubletickets
INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_troubletickets.ticketid AND vtiger_crmentity.deleted = 0
WHERE (vtiger_troubletickets.contact_id IN (". generateQuestionMarks($entity_ids_list) .")";
if($acc_id) {
$query .= " OR vtiger_troubletickets.parent_id = $acc_id) ";
} else {
$query .= ')';
}
// Add conditions if there are any search parameters
if ($join_type != '' && $where_conditions != '') {
$query .= " AND (".$where_conditions.")";
}
$params = array($entity_ids_list);
$TicketsfieldVisibilityByColumn = array();
foreach($fields_list as $fieldlabel=> $fieldname) {
$TicketsfieldVisibilityByColumn[$fieldname] =
getColumnVisibilityPermission($current_user->id,$fieldname,'HelpDesk');
}
$res = $adb->pquery($query,$params);
$noofdata = $adb->num_rows($res);
for( $j= 0;$j < $noofdata; $j++)
{
$i=0;
foreach($fields_list as $fieldlabel => $fieldname) {
$fieldper = $TicketsfieldVisibilityByColumn[$fieldname]; //in troubletickets the list_fields has columns so we call this API
if($fieldper == '1'){
continue;
}
$output[0]['head'][0][$i]['fielddata'] = $fieldlabel;
$fieldvalue = $adb->query_result($res,$j,$fieldname);
$ticketid = $adb->query_result($res,$j,'ticketid');
if($fieldname == 'title'){
$fieldvalue = '<a href="index.php?module=HelpDesk&action=index&fun=detail&ticketid='.$ticketid.'">'.$fieldvalue.'</a>';
}
if($fieldname == 'parent_id') {
$crmid = $fieldvalue;
if ($crmid != '') {
$fieldvalues = getEntityName('Accounts', array($crmid));
$fieldvalue = '<a href="index.php?module=Accounts&action=index&id='.$crmid.'">'.$fieldvalues[$crmid].'</a>';
} else {
$fieldvalue = '';
}
}
if($fieldname == 'contact_id') {
if(!empty($fieldvalue)) {
$fieldvalues = getEntityName('Contacts', array($fieldvalue));
$fieldvalue = '<a href="index.php?module=Contacts&action=index&id='.$fieldvalue.'">'.$fieldvalues[$fieldvalue].'</a>';
} else {
$fieldvalue = '';
}
}
if($fieldname == 'smownerid'){
$fieldvalue = getOwnerName($fieldvalue);
}
$output[1]['data'][$j][$i]['fielddata'] = $fieldvalue;
$i++;
}
}
$log->debug("Exiting customer portal function get_ticket_list");
return $output;
}
/** function used to create ticket which has been created from customer portal
* @param array $input_array - array which contains the following values
=> int $id - customer id
int $sessionid - session id
string $title - title of the ticket
string $description - description of the ticket
string $priority - priority of the ticket
string $severity - severity of the ticket
string $category - category of the ticket
string $user_name - customer name
int $parent_id - parent id ie., customer id as this customer is the parent for this ticket
int $product_id - product id for the ticket
string $module - module name where as based on this module we will get the module owner and assign this ticket to that corresponding user
* return array - currently created ticket array, if this is not created then all tickets list will be returned
*/
function create_ticket($input_array)
{
global $adb,$log;
$adb->println("Inside customer portal function create_ticket");
$adb->println($input_array);
$id = $input_array['id'];
$sessionid = $input_array['sessionid'];
$title = $input_array['title'];
$description = $input_array['description'];
$priority = $input_array['priority'];
$severity = $input_array['severity'];
$category = $input_array['category'];
$user_name = $input_array['user_name'];
$parent_id = (int) $input_array['parent_id'];
$product_id = (int) $input_array['product_id'];
$module = $input_array['module'];
//$assigned_to = $input_array['assigned_to'];
$servicecontractid = $input_array['serviceid'];
$projectid = $input_array['projectid'];
if(!validateSession($id,$sessionid))
return null;
$ticket = new HelpDesk();
$ticket->column_fields[ticket_title] = vtlib_purify($title);
$ticket->column_fields[description]= vtlib_purify($description);
$ticket->column_fields[ticketpriorities]=$priority;
$ticket->column_fields[ticketseverities]=$severity;
$ticket->column_fields[ticketcategories]=$category;
$ticket->column_fields[ticketstatus]='Open';
$ticket->column_fields[contact_id]=$parent_id;
$ticket->column_fields[product_id]=$product_id;
$defaultAssignee = getDefaultAssigneeId();
$ticket->column_fields['assigned_user_id']=$defaultAssignee;
$ticket->column_fields['from_portal'] = 1;
$accountResult = $adb->pquery('SELECT accountid FROM vtiger_contactdetails WHERE contactid = ?', array($parent_id));
$accountId = $adb->query_result($accountResult, 0, 'accountid');
if(!empty($accountId)) $ticket->column_fields['parent_id'] = $accountId;
$ticket->save("HelpDesk");
$ticketresult = $adb->pquery("select vtiger_troubletickets.ticketid from vtiger_troubletickets
inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_troubletickets.ticketid inner join vtiger_ticketcf on vtiger_ticketcf.ticketid = vtiger_troubletickets.ticketid
where vtiger_crmentity.deleted=0 and vtiger_troubletickets.ticketid = ?", array($ticket->id));
if($adb->num_rows($ticketresult) == 1)
{
$record_save = 1;
$record_array[0]['new_ticket']['ticketid'] = $adb->query_result($ticketresult,0,'ticketid');
}
if($servicecontractid != ''){
$res = $adb->pquery("insert into vtiger_crmentityrel values(?,?,?,?)",
array($servicecontractid, 'ServiceContracts', $ticket->id, 'HelpDesk'));
}
if($projectid != '') {
$res = $adb->pquery("insert into vtiger_crmentityrel values(?,?,?,?)",
array($projectid, 'Project', $ticket->id, 'HelpDesk'));
}
if($record_save == 1)
{
$adb->println("Ticket from Portal is saved with id => ".$ticket->id);
return $record_array;
}
else
{
$adb->println("There may be error in saving the ticket.");
return null;
}
}
/** function used to update the ticket comment which is added from the customer portal
* @param array $input_array - array which contains the following values
=> int $id - customer id
int $sessionid - session id
int $ticketid - ticket id
int $ownerid - customer ie., contact id who has added this ticket comment
string $comments - comment which is added from the customer portal
* return void
*/
function update_ticket_comment($input_array)
{
global $adb,$mod_strings,$current_language;
$mod_strings = return_module_language($current_language, 'HelpDesk');
$adb->println("Inside customer portal function update_ticket_comment");
$adb->println($input_array);
$id = $input_array['id'];
$sessionid = $input_array['sessionid'];
$ticketid = (int) $input_array['ticketid'];
$ownerid = (int) $input_array['ownerid'];
$comments = $input_array['comments'];
$user = new Users();
$userid = getPortalUserid();
$current_user = $user->retrieveCurrentUserInfoFromFile($userid);
if(!validateSession($id,$sessionid))
return null;
if(trim($comments) != '') {
$modComments = CRMEntity::getInstance('ModComments');
$modComments->column_fields['commentcontent'] = $comments;
$modComments->column_fields['assigned_user_id'] = $current_user->id;
$modComments->column_fields['customer'] = $ownerid;
$modComments->column_fields['related_to'] = $ticketid;
$modComments->column_fields['from_portal'] = true;
$modComments->save('ModComments');
}
}
/** function used to close the ticket
* @param array $input_array - array which contains the following values
=> int $id - customer id
int $sessionid - session id
int $ticketid - ticket id
* return string - success or failure message will be returned based on the ticket close update query
*/
function close_current_ticket($input_array)
{
global $adb,$mod_strings,$log,$current_user;
require_once('modules/HelpDesk/HelpDesk.php');
$adb->println("Inside customer portal function close_current_ticket");
$adb->println($input_array);
//foreach($input_array as $fieldname => $fieldvalue)$input_array[$fieldname] = mysql_real_escape_string($fieldvalue);
$userid = getPortalUserid();
$current_user->id = $userid;
$id = $input_array['id'];
$sessionid = $input_array['sessionid'];
$ticketid = (int) $input_array['ticketid'];
if(!validateSession($id,$sessionid))
return null;
$focus = new HelpDesk();
$focus->id = $ticketid;
$focus->retrieve_entity_info($focus->id,'HelpDesk');
$focus->mode = 'edit';
$focus->column_fields = array_map(decode_html, $focus->column_fields);
$focus->column_fields['ticketstatus'] ='Closed';
// Blank out the comments information to avoid un-necessary duplication
$focus->column_fields['comments'] = '';
$focus->column_fields['from_portal'] = 1;
// END
$focus->save("HelpDesk");
return "closed";
}
/** function used to authenticate whether the customer has access or not
* @param string $username - customer name for the customer portal
* @param string $password - password for the customer portal
* @param string $login - true or false. If true means function has been called for login process and we have to clear the session if any, false means not called during login and we should not unset the previous sessions
* return array $list - returns array with all the customer details
*/
function authenticate_user($username,$password,$version,$login = 'true')
{
global $adb,$log;
$adb->println("Inside customer portal function authenticate_user($username, $password, $login).");
include('vtigerversion.php');
if(version_compare($version,'5.1.0','>=') == 0){
$list[0] = "NOT COMPATIBLE";
return $list;
}
$username = $adb->sql_escape_string($username);
$password = $adb->sql_escape_string($password);
$current_date = date("Y-m-d");
$sql = "select id, user_name, user_password,last_login_time, support_start_date, support_end_date
from vtiger_portalinfo