Cheetah
communicator.php
Go to the documentation of this file.
1 <?php
2 
8  require_once( 'inc/header.inc.php' );
9  require_once( CH_DIRECTORY_PATH_INC . 'design.inc.php' );
10  require_once( CH_DIRECTORY_PATH_ROOT . 'templates/tmpl_' . $tmpl . '/scripts/ChTemplCommunicator.php');
11 
12  // ** init some needed variables ;
13 
15 
16  // contain all receivied members ID separeted by comma ;
17  $sMembersList = ( isset($_POST['rows']) )
18  ? $_POST['rows']
19  : '';
20 
21  // array : contain all received member id ;
22  $aMembersList = array();
23 
24  // try to segregate received members list;
25  if ( $sMembersList ) {
26  $aMembersList = explode(',', $sMembersList);
27  }
28 
30 
31  // contain some needed settings for the Communicator's object ;
33  // logged member's ID;
34  'member_id' => $iProfileId,
35 
36  // page mode ;
37  'communicator_mode' => ( false !== ch_get('communicator_mode') )
38  ? ch_get('communicator_mode')
39  : '',
40 
41  // switch the person mode - from me or to me ;
42  'person_switcher' => ( false !== ch_get('person_switcher') )
43  ? ch_get('person_switcher')
44  : 'to',
45 
46  // type of message's sort ;
47  'sorting' => ( false !== ch_get('sorting'))
48  ? ch_get('sorting')
49  : 'date_desc',
50 
51  // contain number of current page ;
52  'page' => ( false !== ch_get('page'))
53  ? (int) ch_get('page')
54  : 1,
55 
56  // contain per page number for current page ;
57  'per_page' => ( false !== ch_get('per_page'))
58  ? (int) ch_get('per_page')
59  : 10,
60 
61  // contain number of current alert's page ;
62  'alert_page' => ( false !== ch_get('alert_page'))
63  ? (int) ch_get('alert_page')
64  : 1,
65  );
66 
67  // create ChTemplCommunicator object ;
69 
70  //-- ajax request processing --//
71  if ( isset( $_SERVER['HTTP_X_REQUESTED_WITH'] )
72  && $_SERVER['HTTP_X_REQUESTED_WITH'] == 'XMLHttpRequest'
73  && false !== ch_get('action') ) {
74 
75  // contain all the available callback functions ;
76  $aCallbackFunctions = array( 'getProcessingRows' );
77 
78  switch( ch_get('action') ) {
79  // just return the processed requests;
80  case 'get_page' :
81  $sOutputHtml = $oCommunicator -> getProcessingRows();
82  break;
83 
84  // function will set 'accept' mode for received members list ;
85  case 'accept_friends_request' :
86  if($aMembersList) {
87  $oCommunicator -> execFunction( '_acceptFriendInvite', 'sys_friend_list', $aMembersList );
88  }
89  break;
90 
91  // function will set 'reject' mode for received members list ;
92  case 'reject_friends_request' :
93  if($aMembersList) {
94  if ( $aCommunicatorSettings['person_switcher'] == 'from' ) {
95  $oCommunicator -> execFunction( '_deleteRequest', 'sys_friend_list', $aMembersList, array(1) );
96  } else {
97  $oCommunicator -> execFunction('_deleteRequest', 'sys_friend_list', $aMembersList, array(0, 1));
98  }
99  }
100  break;
101 
102  // function will delete friends list ;
103  case 'delete_friends_request' :
104  if($aMembersList) {
105  $oCommunicator -> execFunction( '_deleteRequest', 'sys_friend_list', $aMembersList, array(1, 1) );
106  }
107  break;
108 
109  // function will delete the received members from 'sys_fave_list' ;
110  case 'delete_hotlisted' :
111  if($aMembersList) {
112  $oCommunicator -> execFunction('_deleteRequest', 'sys_fave_list', $aMembersList, array(1));
113  }
114  break;
115 
116  // function will add the received members to 'sys_fave_list' ;
117  case 'add_hotlist' :
118  if($aMembersList) {
119  $oCommunicator -> execFunction( '_addRequest', 'sys_fave_list', $aMembersList );
120  }
121  break;
122 
123  // function will delete the received members from 'sys_greetings' ;
124  case 'delete_greetings' :
125  if($aMembersList) {
126  if ( $aCommunicatorSettings['person_switcher'] == 'from' ) {
127  $oCommunicator -> execFunction( '_deleteRequest', 'sys_greetings', $aMembersList, array(1) );
128  } else {
129  $oCommunicator -> execFunction('_deleteRequest', 'sys_greetings', $aMembersList);
130  }
131  }
132  break;
133 
134  // function will unblock the received members from 'sys_block_list' ;
135  case 'unblock_blocked' :
136  if($aMembersList) {
137  $oCommunicator -> execFunction('_deleteRequest', 'sys_block_list', $aMembersList, array(1));
138  }
139  break;
140 
141  // function will block the received members to 'sys_block_list' ;
142  case 'block_unblocked' :
143  if($aMembersList) {
144  $oCommunicator -> execFunction( '_addRequest', 'sys_block_list', $aMembersList );
145  }
146  break;
147  }
148 
149  // try to define the callback function name ;
150  if ( isset($_POST['callback_function']) and in_array($_POST['callback_function'], $aCallbackFunctions) ) {
151  if ( method_exists($oCommunicator, $_POST['callback_function']) )
152  $sOutputHtml = $oCommunicator->{$_POST['callback_function']}();
153  }
154 
155  header('Content-Type: text/html; charset=utf-8');
156  echo $sOutputHtml ;
157  exit;
158  }
159 
160  // ** prepare to output page in normal mode ;
161  $_ni = $_page['name_index'] = 7;
162  $_page['header'] = _t( "_Activity" );
163  $_page['header_text'] = _t( "_Activity" );
164 
165  $_page['css_name'] = $oCommunicator->getCss();
166  $_page['js_name'] = $oCommunicator->getJs();
167 
168  if ($aCommunicatorSettings['member_id'])
169  $sOutputHtml = $oCommunicator->getCode();
170  else
171  login_form(_t( "_LOGIN_OBSOLETE" ), 0, false);
172 
173  $_page_cont[$_ni]['page_main_code'] = $sOutputHtml;
174 
175  PageCode();
header
</code > Be careful enabling this directive if you have a redirector script that does not use the< code > Location</code > HTTP header
Definition: URI.MungeResources.txt:10
$aMembersList
$aMembersList
Definition: communicator.php:22
ch_get
ch_get($sName)
Definition: utils.inc.php:1664
$oCommunicator
$oCommunicator
Definition: communicator.php:68
php
login_form
login_form($text="", $member=0, $bAjaxMode=false, $sLoginFormParams='')
Definition: admin.inc.php:13
$_ni
if(isset( $_SERVER['HTTP_X_REQUESTED_WITH']) && $_SERVER['HTTP_X_REQUESTED_WITH']=='XMLHttpRequest' &&false !==ch_get('action')) $_ni
Definition: communicator.php:161
exit
exit
Definition: cart.php:21
and
and
Definition: license.txt:18
$sOutputHtml
$sOutputHtml
Definition: communicator.php:14
getLoggedId
getLoggedId()
Definition: profiles.inc.php:32
$sMembersList
$sMembersList
Definition: communicator.php:17
$_page
$_page['header']
Definition: communicator.php:162
_t
_t($key, $arg0="", $arg1="", $arg2="")
Definition: languages.inc.php:509
PageCode
PageCode($oTemplate=null)
Definition: design.inc.php:91
ChTemplCommunicator
Definition: ChTemplCommunicator.php:11
$tmpl
$tmpl
Definition: params.inc.php:87
$aCommunicatorSettings
$aCommunicatorSettings
Definition: communicator.php:32
$_page_cont
$_page_cont[$_ni]['page_main_code']
Definition: communicator.php:173
$iProfileId
if( $sMembersList) $iProfileId
Definition: communicator.php:29