Merge remote-tracking branch 'upstream/4.3' into 4.3-master-2013-09-25-01-46-57
[civicrm-core.git] / CRM / Contact / Page / View.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.4 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26 */
27
28 /**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2013
32 * $Id$
33 *
34 */
35
36 /**
37 * Main page for viewing contact.
38 *
39 */
40 class CRM_Contact_Page_View extends CRM_Core_Page {
41
42 /**
43 * the id of the object being viewed (note/relationship etc)
44 *
45 * @int
46 * @access protected
47 */
48 protected $_id;
49
50 /**
51 * the contact id of the contact being viewed
52 *
53 * @int
54 * @access protected
55 */
56 protected $_contactId;
57
58 /**
59 * The action that we are performing
60 *
61 * @string
62 * @access protected
63 */
64 protected $_action;
65
66 /**
67 * The permission we have on this contact
68 *
69 * @string
70 * @access protected
71 */
72 protected $_permission;
73
74 /**
75 * Heart of the viewing process. The runner gets all the meta data for
76 * the contact and calls the appropriate type of page to view.
77 *
78 * @return void
79 * @access public
80 *
81 */
82 function preProcess() {
83 // process url params
84 $this->_id = CRM_Utils_Request::retrieve('id', 'Positive', $this);
85 $this->assign('id', $this->_id);
86
87 $qfKey = CRM_Utils_Request::retrieve('key', 'String', $this);
88 //validate the qfKey
89 if (!CRM_Utils_Rule::qfKey($qfKey)) {
90 $qfKey = NULL;
91 }
92 $this->assign('searchKey', $qfKey);
93
94 // retrieve the group contact id, so that we can get contact id
95 $gcid = CRM_Utils_Request::retrieve('gcid', 'Positive', $this);
96
97 if (!$gcid) {
98 $this->_contactId = CRM_Utils_Request::retrieve('cid', 'Positive', $this, TRUE);
99 }
100 else {
101 $this->_contactId = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_GroupContact', $gcid, 'contact_id');
102 }
103
104 if (!$this->_contactId) {
105 CRM_Core_Error::statusBounce(
106 ts('We could not find a contact id.'),
107 CRM_Utils_System::url('civicrm/dashboard', 'reset=1')
108 );
109 }
110
111 // ensure that the id does exist
112 if ( CRM_Core_DAO::getFieldValue( 'CRM_Contact_DAO_Contact', $this->_contactId, 'id' ) != $this->_contactId ) {
113 CRM_Core_Error::statusBounce(
114 ts('A Contact with that ID does not exist: %1', array(1 => $this->_contactId)),
115 CRM_Utils_System::url('civicrm/dashboard', 'reset=1')
116 );
117 }
118
119 $this->assign('contactId', $this->_contactId);
120
121 // see if we can get prev/next positions from qfKey
122 $navContacts = array(
123 'prevContactID' => NULL,
124 'prevContactName' => NULL,
125 'nextContactID' => NULL,
126 'nextContactName' => NULL,
127 'nextPrevError' => 0,
128 );
129 if ($qfKey) {
130 $pos = CRM_Core_BAO_PrevNextCache::getPositions("civicrm search $qfKey",
131 $this->_contactId,
132 $this->_contactId
133 );
134 $found = FALSE;
135
136 if (isset($pos['prev'])) {
137 $navContacts['prevContactID'] = $pos['prev']['id1'];
138 $navContacts['prevContactName'] = $pos['prev']['data'];
139 $found = TRUE;
140 }
141
142 if (isset($pos['next'])) {
143 $navContacts['nextContactID'] = $pos['next']['id1'];
144 $navContacts['nextContactName'] = $pos['next']['data'];
145 $found = TRUE;
146 }
147
148 if (!$found) {
149 // seems like we did not find any contacts
150 // maybe due to bug CRM-9096
151 // however we should account for 1 contact results (which dont have prev next)
152 if (!$pos['foundEntry']) {
153 $navContacts['nextPrevError'] = 1;
154 }
155 }
156 }
157 $this->assign($navContacts);
158
159 $path = CRM_Utils_System::url('civicrm/contact/view', 'reset=1&cid=' . $this->_contactId);
160 CRM_Utils_System::appendBreadCrumb(array(array('title' => ts('View Contact'), 'url' => $path,)));
161
162 if ($image_URL = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $this->_contactId, 'image_URL')) {
163 //CRM-7265 --time being fix.
164 $config = CRM_Core_Config::singleton();
165 $image_URL = str_replace('https://', 'http://', $image_URL);
166 if (CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME, 'enableSSL')) {
167 $image_URL = str_replace('http://', 'https://', $image_URL);
168 }
169
170 list($imageWidth, $imageHeight) = getimagesize($image_URL);
171 list($imageThumbWidth, $imageThumbHeight) = CRM_Contact_BAO_Contact::getThumbSize($imageWidth, $imageHeight);
172 $this->assign("imageWidth", $imageWidth);
173 $this->assign("imageHeight", $imageHeight);
174 $this->assign("imageThumbWidth", $imageThumbWidth);
175 $this->assign("imageThumbHeight", $imageThumbHeight);
176 $this->assign("imageURL", $image_URL);
177 }
178
179 // also store in session for future use
180 $session = CRM_Core_Session::singleton();
181 $session->set('view.id', $this->_contactId);
182
183 $this->_action = CRM_Utils_Request::retrieve('action', 'String', $this, FALSE, 'browse');
184 $this->assign('action', $this->_action);
185
186 // check logged in user permission
187 self::checkUserPermission($this);
188
189 list($displayName, $contactImage,
190 $contactType, $contactSubtype, $contactImageUrl
191 ) = self::getContactDetails($this->_contactId);
192 $this->assign('displayName', $displayName);
193
194 $this->set('contactType', $contactType);
195 $this->set('contactSubtype', $contactSubtype);
196
197 // add to recently viewed block
198 $isDeleted = (bool) CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $this->_contactId, 'is_deleted');
199
200 $recentOther = array(
201 'imageUrl' => $contactImageUrl,
202 'subtype' => $contactSubtype,
203 'isDeleted' => $isDeleted,
204 );
205
206 if (CRM_Contact_BAO_Contact_Permission::allow($this->_contactId, CRM_Core_Permission::EDIT)) {
207 $recentOther['editUrl'] = CRM_Utils_System::url('civicrm/contact/add', "reset=1&action=update&cid={$this->_contactId}");
208 }
209
210 if (($session->get('userID') != $this->_contactId) && CRM_Core_Permission::check('delete contacts')
211 && !$isDeleted
212 ) {
213 $recentOther['deleteUrl'] = CRM_Utils_System::url('civicrm/contact/view/delete', "reset=1&delete=1&cid={$this->_contactId}");
214 }
215
216 CRM_Utils_Recent::add($displayName,
217 CRM_Utils_System::url('civicrm/contact/view', "reset=1&cid={$this->_contactId}"),
218 $this->_contactId,
219 $contactType,
220 $this->_contactId,
221 $displayName,
222 $recentOther
223 );
224 $this->assign('isDeleted', $isDeleted);
225
226 // set page title
227 $title = self::setTitle($this->_contactId, $isDeleted);
228 $this->assign('title', $title);
229
230 // Check if this is default domain contact CRM-10482
231 if (CRM_Contact_BAO_Contact::checkDomainContact($this->_contactId)) {
232 $this->assign('domainContact', TRUE);
233 } else {
234 $this->assign('domainContact', FALSE);
235 }
236
237 // Add links for actions menu
238 self::addUrls($this, $this->_contactId);
239
240 if ($contactType == 'Organization' &&
241 CRM_Core_Permission::check('administer Multiple Organizations') &&
242 CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::MULTISITE_PREFERENCES_NAME,
243 'is_enabled'
244 )
245 ) {
246 //check is any relationship between the organization and groups
247 $groupOrg = CRM_Contact_BAO_GroupOrganization::hasGroupAssociated($this->_contactId);
248 if ($groupOrg) {
249 $groupOrganizationUrl = CRM_Utils_System::url('civicrm/group',
250 "reset=1&oid={$this->_contactId}"
251 );
252 $this->assign('groupOrganizationUrl', $groupOrganizationUrl);
253 }
254 }
255 }
256
257 /**
258 * Get meta details of the contact.
259 *
260 * @return array contact fields in fixed order
261 * @access public
262 */
263 static function getContactDetails($contactId) {
264 return list($displayName,
265 $contactImage,
266 $contactType,
267 $contactSubtype,
268 $contactImageUrl
269 ) = CRM_Contact_BAO_Contact::getDisplayAndImage($contactId,
270 TRUE,
271 TRUE
272 );
273 }
274
275 static function checkUserPermission($page, $contactID = NULL) {
276 // check for permissions
277 $page->_permission = NULL;
278
279 if (!$contactID) {
280 $contactID = $page->_contactId;
281 }
282
283 // automatically grant permissin for users on their own record. makes
284 // things easier in dashboard
285 $session = CRM_Core_Session::singleton();
286
287 if ($session->get('userID') == $contactID && CRM_Core_Permission::check('edit my contact')) {
288 $page->assign('permission', 'edit');
289 $page->_permission = CRM_Core_Permission::EDIT;
290 // deleted contacts’ stuff should be (at best) only viewable
291 }
292 elseif (CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $contactID, 'is_deleted') and CRM_Core_Permission::check('access deleted contacts')) {
293 $page->assign('permission', 'view');
294 $page->_permission = CRM_Core_Permission::VIEW;
295 }
296 elseif (CRM_Contact_BAO_Contact_Permission::allow($contactID, CRM_Core_Permission::EDIT)) {
297 $page->assign('permission', 'edit');
298 $page->_permission = CRM_Core_Permission::EDIT;
299 }
300 elseif (CRM_Contact_BAO_Contact_Permission::allow($contactID, CRM_Core_Permission::VIEW)) {
301 $page->assign('permission', 'view');
302 $page->_permission = CRM_Core_Permission::VIEW;
303 }
304 else {
305 $session->pushUserContext(CRM_Utils_System::url('civicrm', 'reset=1'));
306 CRM_Core_Error::statusBounce(ts('You do not have the necessary permission to view this contact.'));
307 }
308 }
309
310 static function setTitle($contactId, $isDeleted = FALSE) {
311 static $contactDetails;
312 $displayName = $contactImage = NULL;
313 if (!isset($contactDetails[$contactId])) {
314 list($displayName, $contactImage) = self::getContactDetails($contactId);
315 $contactDetails[$contactId] = array(
316 'displayName' => $displayName,
317 'contactImage' => $contactImage,
318 );
319 }
320 else {
321 $displayName = $contactDetails[$contactId]['displayName'];
322 $contactImage = $contactDetails[$contactId]['contactImage'];
323 }
324
325 // set page title
326 $title = "{$contactImage} {$displayName}";
327 if ($isDeleted) {
328 $title = "<del>{$title}</del>";
329 }
330
331 // Inline-edit places its own title on the page
332 CRM_Utils_System::setTitle('CiviCRM', '<span id="crm-remove-title" style="display:none">CiviCRM</span>');
333
334 return $title;
335 }
336
337 /**
338 * Add urls for display in the actions menu
339 */
340 static function addUrls(&$obj, $cid) {
341 // TODO rewrite without so many hard-coded CMS bits; use abstractions like CRM_Core_Permission::check('cms:...') and CRM_Utils_System
342
343 $config = CRM_Core_Config::singleton();
344 $session = CRM_Core_Session::singleton();
345 $uid = CRM_Core_BAO_UFMatch::getUFId($cid);
346 $userRecordUrl = NULL;
347 if ($uid) {
348 if ($config->userSystem->is_drupal == '1' &&
349 ($session->get('userID') == $cid || CRM_Core_Permission::checkAnyPerm(array('cms:administer users', 'cms:view user account')))
350 ) {
351 $userRecordUrl = CRM_Utils_System::url('user/' . $uid);
352 }
353 elseif ($config->userFramework == 'Joomla') {
354 $userRecordUrl = NULL;
355 // if logged in user is super user, then he can view other users joomla profile
356 if (JFactory::getUser()->authorise('core.admin')) {
357 $userRecordUrl = $config->userFrameworkBaseURL . "index.php?option=com_users&view=user&task=user.edit&id=" . $uid;
358 }
359 elseif ($session->get('userID') == $cid) {
360 $userRecordUrl = $config->userFrameworkBaseURL . "index.php?option=com_admin&view=profile&layout=edit&id=" . $uid;
361 }
362 }
363 // For WordPress, provide link to user profile is contact belongs to logged in user OR user has administrator role
364 elseif ($config->userFramework == 'WordPress' &&
365 ($session->get('userID') == $cid || CRM_Core_Permission::checkAnyPerm(array('cms:administer users')))
366 ) {
367 $userRecordUrl = $config->userFrameworkBaseURL . "wp-admin/user-edit.php?user_id=" . $uid;
368 }
369 $obj->assign('userRecordUrl', $userRecordUrl);
370 $obj->assign('userRecordId', $uid);
371 }
372 elseif (($config->userSystem->is_drupal == '1' && CRM_Core_Permission::check('administer users')) ||
373 ($config->userFramework == 'Joomla' &&
374 JFactory::getUser()->authorise('core.create', 'com_users')
375 )
376 ) {
377 $userAddUrl = CRM_Utils_System::url('civicrm/contact/view/useradd',
378 'reset=1&action=add&cid=' . $cid
379 );
380 $obj->assign('userAddUrl', $userAddUrl);
381 }
382
383 if (CRM_Core_Permission::check('access Contact Dashboard')) {
384 $dashboardURL = CRM_Utils_System::url('civicrm/user',
385 "reset=1&id={$cid}"
386 );
387 $obj->assign('dashboardURL', $dashboardURL);
388 }
389
390 // See if other modules want to add links to the activtity bar
391 $hookLinks = CRM_Utils_Hook::links('view.contact.activity',
392 'Contact',
393 $cid,
394 CRM_Core_DAO::$_nullObject,
395 CRM_Core_DAO::$_nullObject
396 );
397 if (is_array($hookLinks)) {
398 $obj->assign('hookLinks', $hookLinks);
399 }
400 }
401 }
402