Cheetah
callback.php
Go to the documentation of this file.
1 <?php
2 
13 require_once(CH_DIRECTORY_PATH_CLASSES . 'ChWsbAlerts.php');
14 require_once(CH_DIRECTORY_PATH_CLASSES . 'ChWsbProfile.php');
15 
17 
18 $f->getUserInfo = 'getUserInfo';
19 $f->getUserPerm = 'getUserPerm';
20 $f->getLoginUser = 'getLoginUser';
21 $f->onPostReply = 'onPostReply';
22 $f->onPostEdit = 'onPostEdit'; // $arrayTopic, $intPostId, $stringPostText, $stringUser
23 $f->onPostDelete = 'onPostDelete'; // $arrayTopic, $intPostId, $stringUser
24 $f->onNewTopic = 'onNewTopic'; // $intForumId, $stringTopicSubject, $stringTopicText, $isTopicSticky, $stringUser, $stringTopicUri
25 $f->onVote = 'onVote'; // $intPostId, $stringUser, $intVote (1 or -1)
26 $f->onReport = 'onReport'; // $intPostId, $stringUser
27 $f->onFlag = 'onFlag'; // $intTopicId, $stringUser
28 $f->onUnflag = 'onUnflag'; // $intTopicId, $stringUser
29 
30 function onPostReply ($aTopic, $sPostText, $sUser)
31 {
33  $iProfileId = $oProfile->getID();
34  if (CH_ORCA_INTEGRATION == 'cheetah' && !isAdmin($iProfileId)) {
36  $iActionId = CH_FORUM_PUBLIC_POST;
37  if (isset($aTopic['forum_type']) && 'private' == $aTopic['forum_type'])
38  $iActionId = CH_FORUM_PRIVATE_POST;
39  checkAction($iProfileId, $iActionId, true); // perform action
40  }
41 
42  $aPlusOriginal = array (
43  'PosterUrl' => $iProfileId ? getProfileLink($iProfileId) : 'javascript:void(0);' ,
44  'PosterNickName' => $iProfileId ? getNickName($iProfileId) : $sUser,
45  'TopicTitle' => $aTopic['topic_title'],
46  'ReplyText' => $sPostText,
47  );
48 
49  $oEmailTemplate = new ChWsbEmailTemplates();
50 
51  $fdb = new DbForum ();
52  $a = $fdb->getSubscribersToTopic ($aTopic['topic_id']);
53  foreach ($a as $r) {
54  if ($r['user'] == $sUser)
55  continue;
56  $oRecipient = new ChWsbProfile ($r['user']);
57  $aRecipient = getProfileInfo($oRecipient->_iProfileID);
58  $aPlus = array_merge (array ('Recipient' => ' ' . getNickName($aRecipient['ID'])), $aPlusOriginal);
59 
60  $aTemplate = $oEmailTemplate->getTemplate('ch_forum_notifier', $oRecipient->_iProfileID);
61  sendMail(trim($aRecipient['Email']), $aTemplate['Subject'], $aTemplate['Body'], '', $aPlus);
62  }
63 
64  forumAlert('reply', $aTopic['topic_id'], $iProfileId);
65 }
66 
67 function onPostEdit ($aTopic, $iPostId, $sPostText, $sUser)
68 {
70  $fdb = new DbForum ();
71  $aPost = $fdb->getPost($iPostId, false);
72  if (CH_ORCA_INTEGRATION == 'cheetah' && $sUser != $aPost['user'] && !isAdmin($oProfile->getID())) {
74  checkAction($oProfile->getID(), CH_FORUM_EDIT_ALL, true); // perform action
75  }
76 
77  forumAlert('post_edit', $iPostId, $oProfile->getID(), array('post' => $aPost));
78 }
79 
80 function onPostDelete ($aTopic, $iPostId, $sUser)
81 {
83  $fdb = new DbForum ();
84  $aPost = $fdb->getPost($iPostId, false);
85  if (CH_ORCA_INTEGRATION == 'cheetah' && $sUser != $aPost['user'] && !isAdmin($oProfile->getID())) {
87  checkAction($oProfile->getID(), CH_FORUM_DELETE_ALL, true); // perform action
88  }
89 
90  forumAlert('edit_del', $iPostId, $oProfile->getID(), array('post' => $aPost));
91 }
92 
93 function onNewTopic ($iForumId, $sTopicSubject, $sTopicText, $isTopicSticky, $sUser, $sTopicUri, $iPostId)
94 {
95  $fdb = new DbForum ();
96 
98  $aTopic = $fdb->getTopicByUri($sTopicUri);
99 
100  if (CH_ORCA_INTEGRATION == 'cheetah' && !isAdmin($oProfile->getID())) {
102  $aForum = $fdb->getForum($iForumId);
103  $iActionId = CH_FORUM_PUBLIC_POST;
104  if (isset($aForum['forum_type']) && 'private' == $aForum['forum_type'])
105  $iActionId = CH_FORUM_PRIVATE_POST;
106  checkAction($oProfile->getID(), $iActionId, true); // perform action
107  }
108 
109  $a = array ($iForumId, $sTopicSubject, $sTopicText, $isTopicSticky, $sUser);
110  forumAlert('new_topic', $aTopic['topic_id'], $oProfile->getID(), $a);
111 }
112 
113 function onVote ($iPostId, $sUser, $iVote)
114 {
115  $oProfile = new ChWsbProfile ($sUser);
116  $a = array ($sUser, $iVote);
117  forumAlert('vote', $iPostId, $oProfile->getID(), $a);
118 }
119 
120 function onReport ($iPostId, $sUser)
121 {
122  $oProfile = new ChWsbProfile ($sUser);
123  forumAlert('post_report', $iPostId, $oProfile->getID());
124 }
125 
126 function onFlag ($iTopicId, $sUser)
127 {
128  $oProfile = new ChWsbProfile ($sUser);
129  forumAlert('flag', $iTopicId, $oProfile->getID());
130 }
131 
132 function onUnflag ($iTopicId, $sUser)
133 {
134  $oProfile = new ChWsbProfile ($sUser);
135  forumAlert('unflag', $iTopicId, $oProfile->getID());
136 }
137 
138 function getUserInfo ($sUser)
139 {
140  global $gConf;
141 
142  $aRoles = array (
143  '_ch_forum_role_admin' => CH_WSB_ROLE_ADMIN,
144  '_ch_forum_role_moderator' => CH_WSB_ROLE_MODERATOR,
145  '_ch_forum_role_affiliate' => CH_WSB_ROLE_AFFILIATE,
146  '_ch_forum_role_member' => CH_WSB_ROLE_MEMBER,
147  '_ch_forum_role_guest' => CH_WSB_ROLE_GUEST,
148  );
149 
150  require_once( CH_DIRECTORY_PATH_ROOT . 'inc/utils.inc.php' );
151  require_once( CH_DIRECTORY_PATH_CLASSES . 'ChWsbProfile.php' );
152 
153  $aRet = array();
154 
156 
157  $aRet['profile_onclick'] = '';
158  $aRet['profile_url'] = $oProfile->_iProfileID ? getProfileLink($oProfile->_iProfileID) : '';
159  $aRet['profile_title'] = $oProfile->_iProfileID ? getNickName($oProfile->_iProfileID) : $sUser;
160  $aRet['admin'] = $oProfile->_iProfileID ? isAdmin($oProfile->_iProfileID) : false;
161  $aRet['special'] = false;
162  $aRet['join_date'] = '';
163  $aRet['role'] = _t('_ch_forum_role_undefined');
164 
165  if ($oProfile->_iProfileID) {
166  foreach ($aRoles as $sRolelangKey => $iRoleMask) {
167  if (isRole($iRoleMask, $oProfile->_iProfileID)) {
168  $aRet['role'] = _t($sRolelangKey);
169  break;
170  }
171  }
172  }
173 
174  if ($gConf['robot'] == $sUser) {
175  $aRet['profile_title'] = _t('_ch_forum_robot');
176  $aRet['role'] = _t('_ch_forum_role_robot');
177  } elseif ($gConf['anonymous'] == $sUser) {
178  $aRet['profile_title'] = _t('_ch_forum_anonymous');
179  }
180 
181  $aRet['avatar'] = $GLOBALS['oFunctions']->getSexPic('male', 'small');
182  $aRet['avatar64'] = $GLOBALS['oFunctions']->getSexPic('male', 'medium');
183  if ($oProfile->_iProfileID) {
184  $aRet['avatar'] = $GLOBALS['oFunctions']->getMemberAvatar($oProfile->_iProfileID, 'small');
185  $aRet['avatar64'] = $GLOBALS['oFunctions']->getMemberAvatar($oProfile->_iProfileID, 'medium');
186  }
187 
188  return $aRet;
189 }
190 
191 function getUserPerm ($sUser, $sType, $sAction, $iForumId)
192 {
194 
195  $isOrcaAdmin = isAdmin();
196 
197  $isLoggedIn = $iMemberId ? 1 : 0;
198 
200 
201  $isPublicForumReadAllowed = ($aCheck = checkAction($iMemberId, CH_FORUM_PUBLIC_READ)) && CHECK_ACTION_RESULT_ALLOWED == $aCheck[CHECK_ACTION_RESULT] ? 1 : 0;
202  $isPublicForumPostAllowed = $isLoggedIn && ($aCheck = checkAction($iMemberId, CH_FORUM_PUBLIC_POST)) && CHECK_ACTION_RESULT_ALLOWED == $aCheck[CHECK_ACTION_RESULT] ? 1 : 0;
203  $isPrivateForumReadAllowed = $isLoggedIn && ($aCheck = checkAction($iMemberId, CH_FORUM_PRIVATE_READ)) && CHECK_ACTION_RESULT_ALLOWED == $aCheck[CHECK_ACTION_RESULT] ? 1 : 0;
204  $isPrivateForumPostAllowed = $isLoggedIn && ($aCheck = checkAction($iMemberId, CH_FORUM_PRIVATE_POST)) && CHECK_ACTION_RESULT_ALLOWED == $aCheck[CHECK_ACTION_RESULT] ? 1 : 0;
205  $isEditAllAllowed = ($aCheck = checkAction($iMemberId, CH_FORUM_EDIT_ALL)) && CHECK_ACTION_RESULT_ALLOWED == $aCheck[CHECK_ACTION_RESULT] ? 1 : 0;
206  $isDelAllAllowed = ($aCheck = checkAction($iMemberId, CH_FORUM_DELETE_ALL)) && CHECK_ACTION_RESULT_ALLOWED == $aCheck[CHECK_ACTION_RESULT] ? 1 : 0;
207 
208  return array (
209  'read_public' => $isOrcaAdmin || $isPublicForumReadAllowed,
210  'post_public' => $isOrcaAdmin || $isPublicForumPostAllowed ? 1 : 0,
211  'edit_public' => $isOrcaAdmin || $isEditAllAllowed ? 1 : 0,
212  'del_public' => $isOrcaAdmin || $isEditAllAllowed ? 1 : 0,
213 
214  'read_private' => $isOrcaAdmin || $isPrivateForumReadAllowed ? 1 : 0,
215  'post_private' => $isOrcaAdmin || $isPrivateForumPostAllowed ? 1 : 0,
216  'edit_private' => $isOrcaAdmin || $isEditAllAllowed ? 1 : 0,
217  'del_private' => $isOrcaAdmin || $isDelAllAllowed ? 1 : 0,
218 
219  'edit_own' => 1,
220  'del_own' => 1,
221 
222  'download_' => $isOrcaAdmin || (($aCheck = checkAction($iMemberId, CH_FORUM_FILES_DOWNLOAD)) && CHECK_ACTION_RESULT_ALLOWED == $aCheck[CHECK_ACTION_RESULT]) ? 1 : 0,
223  'search_' => $isOrcaAdmin || (($aCheck = checkAction($iMemberId, CH_FORUM_SEARCH)) && CHECK_ACTION_RESULT_ALLOWED == $aCheck[CHECK_ACTION_RESULT]) ? 1 : 0,
224  'sticky_' => $isOrcaAdmin || (($aCheck = checkAction($iMemberId, CH_FORUM_MAKE_STICKY)) && CHECK_ACTION_RESULT_ALLOWED == $aCheck[CHECK_ACTION_RESULT]) ? 1 : 0,
225  'lock_' => $isOrcaAdmin ? 1 : 0,
226 
227  'del_topics_' => $isOrcaAdmin || (($aCheck = checkAction($iMemberId, CH_FORUM_DEL_TOPICS)) && CHECK_ACTION_RESULT_ALLOWED == $aCheck[CHECK_ACTION_RESULT]) ? 1 : 0,
228  'move_topics_' => $isOrcaAdmin || (($aCheck = checkAction($iMemberId, CH_FORUM_MOVE_TOPICS)) && CHECK_ACTION_RESULT_ALLOWED == $aCheck[CHECK_ACTION_RESULT]) ? 1 : 0,
229  'hide_topics_' => $isOrcaAdmin || (($aCheck = checkAction($iMemberId, CH_FORUM_HIDE_TOPICS)) && CHECK_ACTION_RESULT_ALLOWED == $aCheck[CHECK_ACTION_RESULT]) ? 1 : 0,
230  'unhide_topics_' => $isOrcaAdmin || (($aCheck = checkAction($iMemberId, CH_FORUM_HIDE_TOPICS)) && CHECK_ACTION_RESULT_ALLOWED == $aCheck[CHECK_ACTION_RESULT]) ? 1 : 0,
231  'hide_posts_' => $isOrcaAdmin || (($aCheck = checkAction($iMemberId, CH_FORUM_HIDE_TOPICS)) && CHECK_ACTION_RESULT_ALLOWED == $aCheck[CHECK_ACTION_RESULT]) ? 1 : 0,
232  'unhide_posts_' => $isOrcaAdmin || (($aCheck = checkAction($iMemberId, CH_FORUM_HIDE_TOPICS)) && CHECK_ACTION_RESULT_ALLOWED == $aCheck[CHECK_ACTION_RESULT]) ? 1 : 0,
233  );
234 }
235 
236 function getLoginUser ()
237 {
238  if ($iId = getLoggedId())
239  return getUsername($iId);
240 
241  return '';
242 }
243 
245 {
246  defineMembershipActions (array ('forum public read', 'forum public post', 'forum private read', 'forum private post', 'forum search', 'forum edit all', 'forum delete all', 'forum make sticky', 'forum del topics', 'forum move topics', 'forum hide topics', 'forum unhide topics', 'forum hide posts', 'forum unhide posts', 'forum files download'));
247 }
248 
249 function forumAlert ($sAction, $iObjectId, $iSenderId, $aExtra = array())
250 {
251  $sAlertUnitPostfix = CH_ORCA_INTEGRATION == 'cheetah' ? '' : '_' . CH_ORCA_INTEGRATION;
252  $oAlert = new ChWsbAlerts('ch_forum' . $sAlertUnitPostfix, $sAction, $iObjectId, $iSenderId, $aExtra);
253  $oAlert->alert();
254 }
$iMemberId
$iMemberId
Definition: profile.php:91
onNewTopic
$f onNewTopic
Definition: callback.php:24
$f
global $f
Definition: callback.php:13
forumAlert
forumAlert($sAction, $iObjectId, $iSenderId, $aExtra=array())
Definition: callback.php:249
CHECK_ACTION_RESULT_ALLOWED
const CHECK_ACTION_RESULT_ALLOWED
Definition: membership_levels.inc.php:60
ChWsbEmailTemplates
Definition: ChWsbEmailTemplates.php:11
$oAlert
$oAlert
Definition: embed.php:15
CHECK_ACTION_RESULT
const CHECK_ACTION_RESULT
Definition: membership_levels.inc.php:54
sendMail
sendMail( $sRecipientEmail, $sMailSubject, $sMailBody, $iRecipientID=0, $aPlus=array(), $sEmailFlag='html', $isDisableAlert=false, $bForceSend=false)
Definition: utils.inc.php:461
CH_ORCA_INTEGRATION
const CH_ORCA_INTEGRATION
Definition: ChForumSiteMaps.php:10
CH_WSB_ROLE_GUEST
const CH_WSB_ROLE_GUEST
Definition: profiles.inc.php:15
$aForum
$aForum
Definition: design.php:15
php
$iId
$iId
Definition: license.php:15
isRole
isRole($iRole, $iId=0)
Definition: profiles.inc.php:62
DbForum
Definition: DbForum.php:35
onVote
$f onVote
Definition: callback.php:25
onFlag
$f onFlag
Definition: callback.php:27
onUnflag
$f onUnflag
Definition: callback.php:28
isAdmin
isAdmin()
Definition: index.php:649
onPostEdit
$f onPostEdit
Definition: callback.php:22
ChWsbAlerts
Definition: ChWsbAlerts.php:39
$sType
$sType
Definition: actions.inc.php:11
defineForumActions
defineForumActions()
Definition: callback.php:244
getLoginUser
$f getLoginUser
Definition: callback.php:20
getLoggedId
getLoggedId()
Definition: profiles.inc.php:32
CH_WSB_ROLE_MODERATOR
const CH_WSB_ROLE_MODERATOR
Definition: profiles.inc.php:19
getNickName
getNickName( $ID='')
Definition: profiles.inc.php:461
getUsername
getUsername( $ID='')
Definition: profiles.inc.php:443
onPostDelete
$f onPostDelete
Definition: callback.php:23
global
if(!defined("GLOBAL_MODULE")) define("GLOBAL_MODULE" global
Definition: header.inc.php:25
_t
_t($key, $arg0="", $arg1="", $arg2="")
Definition: languages.inc.php:509
getProfileLink
getProfileLink( $iID, $sLinkAdd='')
Definition: profiles.inc.php:484
CH_WSB_ROLE_MEMBER
const CH_WSB_ROLE_MEMBER
Definition: profiles.inc.php:16
getUserPerm
$f getUserPerm
Definition: callback.php:19
CH_WSB_ROLE_AFFILIATE
const CH_WSB_ROLE_AFFILIATE
Definition: profiles.inc.php:18
checkAction
checkAction($iMemberId, $actionID, $performAction=false, $iForcedProfID=0, $isCheckMemberStatus=true)
Definition: membership_levels.inc.php:313
defineMembershipActions
defineMembershipActions($aActionsAll, $sPrefix='CH_')
Definition: membership_levels.inc.php:744
onReport
$f onReport
Definition: callback.php:26
getID
getID( $str, $with_email=1)
Definition: admin.inc.php:139
getProfileInfo
getProfileInfo($iProfileID=0, $checkActiveStatus=false, $forceCache=false)
Definition: profiles.inc.php:249
ChWsbProfile
Definition: ChWsbProfile.php:11
getUserInfo
$f getUserInfo
Definition: callback.php:18
$gConf
global $gConf
Definition: header.inc.php:8
$sAction
$sAction
Definition: categories.php:274
as
as
Definition: Filter.ExtractStyleBlocks.Escaping.txt:10
CH_WSB_ROLE_ADMIN
const CH_WSB_ROLE_ADMIN
Definition: profiles.inc.php:17
$oProfile
if($profileID !=$memberID) $oProfile
Definition: profile.php:55
$iProfileId
if( $sMembersList) $iProfileId
Definition: communicator.php:29
$GLOBALS
$GLOBALS['iAdminPage']
Definition: advanced_settings.php:10
$sUser
$sUser
Definition: r.php:13
onPostReply
$f onPostReply
Definition: callback.php:21