3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
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. |
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. |
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 +--------------------------------------------------------------------+
31 * @copyright CiviCRM LLC (c) 2004-2014
37 * This is the basic permission class wrapper
39 class CRM_Core_Permission
{
42 * Static strings used to compose permissions
47 CONST EDIT_GROUPS
= 'edit contacts in ', VIEW_GROUPS
= 'view contacts in ';
50 * The various type of permissions
54 CONST EDIT
= 1, VIEW
= 2, DELETE
= 3, CREATE
= 4, SEARCH
= 5, ALL
= 6, ADMIN
= 7;
57 * A placeholder permission which always fails
59 const ALWAYS_DENY_PERMISSION
= "*always deny*";
62 * A placeholder permission which always fails
64 const ALWAYS_ALLOW_PERMISSION
= "*always allow*";
67 * Various authentication sources
71 CONST AUTH_SRC_UNKNOWN
= 0, AUTH_SRC_CHECKSUM
= 1, AUTH_SRC_SITEKEY
= 2, AUTH_SRC_LOGIN
= 4;
74 * Get the current permission of this user
76 * @return string the permission of the user (edit or view or null)
78 public static function getPermission() {
79 $config = CRM_Core_Config
::singleton();
80 return $config->userPermissionClass
->getPermission();
84 * Given a permission string or array, check for access requirements
85 * @param mixed $permissions the permission to check as an array or string -see examples
90 * Must have 'access CiviCRM'
91 * (string) 'access CiviCRM'
94 * Ex 2 Must have 'access CiviCRM' and 'access Ajax API'
95 * array('access CiviCRM', 'access Ajax API')
97 * Ex 3 Must have 'access CiviCRM' or 'access Ajax API'
99 * array('access CiviCRM', 'access Ajax API'),
102 * Ex 4 Must have 'access CiviCRM' or 'access Ajax API' AND 'access CiviEvent'
104 * array('access CiviCRM', 'access Ajax API'),
105 * 'access CiviEvent',
108 * Note that in permissions.php this is keyed by the action eg.
109 * (access Civi || access AJAX) && (access CiviEvent || access CiviContribute)
110 * 'myaction' => array(
111 * array('access CiviCRM', 'access Ajax API'),
112 * array('access CiviEvent', 'access CiviContribute')
115 * @return boolean true if yes, else false
119 static function check($permissions) {
120 $permissions = (array) $permissions;
122 foreach ($permissions as $permission) {
123 if(is_array($permission)) {
124 foreach ($permission as $orPerm) {
125 if(self
::check($orPerm)) {
126 //one of our 'or' permissions has succeeded - stop checking this permission
130 //none of our our conditions was met
134 if(!CRM_Core_Config
::singleton()->userPermissionClass
->check($permission)) {
135 //one of our 'and' conditions has not been met
144 * Determine if any one of the permissions strings applies to current user
146 * @param array $perms
149 public static function checkAnyPerm($perms) {
150 foreach ($perms as $perm) {
151 if (CRM_Core_Permission
::check($perm)) {
159 * Given a group/role array, check for access requirements
161 * @param array $array the group/role to check
163 * @return boolean true if yes, else false
167 static function checkGroupRole($array) {
168 $config = CRM_Core_Config
::singleton();
169 return $config->userPermissionClass
->checkGroupRole($array);
173 * Get the permissioned where clause for the user
175 * @param int $type the type of permission needed
176 * @param array $tables (reference ) add the tables that are needed for the select clause
177 * @param array $whereTables (reference ) add the tables that are needed for the where clause
179 * @return string the group where clause for this user
182 public static function getPermissionedStaticGroupClause($type, &$tables, &$whereTables) {
183 $config = CRM_Core_Config
::singleton();
184 return $config->userPermissionClass
->getPermissionedStaticGroupClause($type, $tables, $whereTables);
188 * Get all groups from database, filtered by permissions
191 * @param string $groupType type of group(Access/Mailing)
192 * @param bool|\boolen $excludeHidden exclude hidden groups.
197 * @return array - array reference of all groups.
199 public static function group($groupType, $excludeHidden = TRUE) {
200 $config = CRM_Core_Config
::singleton();
201 return $config->userPermissionClass
->group($groupType, $excludeHidden);
207 public static function customGroupAdmin() {
210 // check if user has all powerful permission
211 // or administer civicrm permission (CRM-1905)
212 if (self
::check('access all custom data')) {
217 self
::check('administer Multiple Organizations') &&
218 self
::isMultisiteEnabled()
223 if (self
::check('administer CiviCRM')) {
236 public static function customGroup($type = CRM_Core_Permission
::VIEW
, $reset = FALSE) {
237 $customGroups = CRM_Core_PseudoConstant
::get('CRM_Core_DAO_CustomField', 'custom_group_id',
238 array('fresh' => $reset));
239 $defaultGroups = array();
241 // check if user has all powerful permission
242 // or administer civicrm permission (CRM-1905)
243 if (self
::customGroupAdmin()) {
244 $defaultGroups = array_keys($customGroups);
247 return CRM_ACL_API
::group($type, NULL, 'civicrm_custom_group', $customGroups, $defaultGroups);
252 * @param null $prefix
257 static function customGroupClause($type = CRM_Core_Permission
::VIEW
, $prefix = NULL, $reset = FALSE) {
258 if (self
::customGroupAdmin()) {
262 $groups = self
::customGroup($type, $reset);
263 if (empty($groups)) {
267 return "{$prefix}id IN ( " . implode(',', $groups) . ' ) ';
277 public static function ufGroupValid($gid, $type = CRM_Core_Permission
::VIEW
) {
282 $groups = self
::ufGroup($type);
283 return !empty($groups) && in_array($gid, $groups) ?
TRUE : FALSE;
291 public static function ufGroup($type = CRM_Core_Permission
::VIEW
) {
292 $ufGroups = CRM_Core_PseudoConstant
::get('CRM_Core_DAO_UFField', 'uf_group_id');
294 $allGroups = array_keys($ufGroups);
296 // check if user has all powerful permission
297 if (self
::check('profile listings and forms')) {
302 case CRM_Core_Permission
::VIEW
:
303 if (self
::check('profile view')) {
308 case CRM_Core_Permission
::CREATE
:
309 if (self
::check('profile create')) {
314 case CRM_Core_Permission
::EDIT
:
315 if (self
::check('profile edit')) {
320 case CRM_Core_Permission
::SEARCH
:
321 if (self
::check('profile listings')) {
327 return CRM_ACL_API
::group($type, NULL, 'civicrm_uf_group', $ufGroups);
332 * @param null $prefix
333 * @param bool $returnUFGroupIds
335 * @return array|string
337 static function ufGroupClause($type = CRM_Core_Permission
::VIEW
, $prefix = NULL, $returnUFGroupIds = FALSE) {
338 $groups = self
::ufGroup($type);
339 if ($returnUFGroupIds) {
342 elseif (empty($groups)) {
346 return "{$prefix}id IN ( " . implode(',', $groups) . ' ) ';
352 * @param int $eventID
353 * @param string $context
357 public static function event($type = CRM_Core_Permission
::VIEW
, $eventID = NULL, $context = '') {
358 if(!empty($context)) {
359 if(CRM_Core_Permission
::check($context)) {
363 $events = CRM_Event_PseudoConstant
::event(NULL, TRUE);
364 $includeEvents = array();
366 // check if user has all powerful permission
367 if (self
::check('register for events')) {
368 $includeEvents = array_keys($events);
371 if ($type == CRM_Core_Permission
::VIEW
&&
372 self
::check('view event info')
374 $includeEvents = array_keys($events);
377 $permissionedEvents = CRM_ACL_API
::group($type, NULL, 'civicrm_event', $events, $includeEvents);
379 return $permissionedEvents;
381 if (!empty($permissionedEvents)) {
382 return array_search($eventID, $permissionedEvents) === FALSE ?
NULL : $eventID;
389 * @param null $prefix
393 static function eventClause($type = CRM_Core_Permission
::VIEW
, $prefix = NULL) {
394 $events = self
::event($type);
395 if (empty($events)) {
399 return "{$prefix}id IN ( " . implode(',', $events) . ' ) ';
405 * @param bool $checkPermission
409 static function access($module, $checkPermission = TRUE) {
410 $config = CRM_Core_Config
::singleton();
412 if (!in_array($module, $config->enableComponents
)) {
416 if ($checkPermission) {
417 if ($module == 'CiviCase') {
418 return CRM_Case_BAO_Case
::accessCiviCase();
421 return CRM_Core_Permission
::check("access $module");
429 * Check permissions for delete and edit actions
431 * @param string $module component name.
432 * @param integer $action action to be check across component
437 static function checkActionPermission($module, $action) {
438 //check delete related permissions.
439 if ($action & CRM_Core_Action
::DELETE
) {
440 $permissionName = "delete in $module";
443 $editPermissions = array(
444 'CiviEvent' => 'edit event participants',
445 'CiviMember' => 'edit memberships',
446 'CiviPledge' => 'edit pledges',
447 'CiviContribute' => 'edit contributions',
448 'CiviGrant' => 'edit grants',
449 'CiviMail' => 'access CiviMail',
450 'CiviAuction' => 'add auction items',
452 $permissionName = CRM_Utils_Array
::value($module, $editPermissions);
455 if ($module == 'CiviCase' && !$permissionName) {
456 return CRM_Case_BAO_Case
::accessCiviCase();
459 //check for permission.
460 return CRM_Core_Permission
::check($permissionName);
470 static function checkMenu(&$args, $op = 'and') {
471 if (!is_array($args)) {
474 foreach ($args as $str) {
475 $res = CRM_Core_Permission
::check($str);
476 if ($op == 'or' && $res) {
479 elseif ($op == 'and' && !$res) {
483 return ($op == 'or') ?
FALSE : TRUE;
492 static function checkMenuItem(&$item) {
493 if (!array_key_exists('access_callback', $item)) {
494 CRM_Core_Error
::backtrace();
495 CRM_Core_Error
::fatal();
498 // if component_id is present, ensure it is enabled
499 if (isset($item['component_id']) &&
500 $item['component_id']
502 $config = CRM_Core_Config
::singleton();
503 if (is_array($config->enableComponentIDs
) &&
504 in_array($item['component_id'], $config->enableComponentIDs
)
506 // continue with process
513 // the following is imitating drupal 6 code in includes/menu.inc
514 if (empty($item['access_callback']) ||
515 is_numeric($item['access_callback'])
517 return (boolean
) $item['access_callback'];
520 // check whether the following Ajax requests submitted the right key
521 // FIXME: this should be integrated into ACLs proper
522 if (CRM_Utils_Array
::value('page_type', $item) == 3) {
523 if (!CRM_Core_Key
::validate($_REQUEST['key'], $item['path'])) {
528 // check if callback is for checkMenu, if so optimize it
529 if (is_array($item['access_callback']) &&
530 $item['access_callback'][0] == 'CRM_Core_Permission' &&
531 $item['access_callback'][1] == 'checkMenu'
533 $op = CRM_Utils_Array
::value(1, $item['access_arguments'], 'and');
534 return self
::checkMenu($item['access_arguments'][0], $op);
537 return call_user_func_array($item['access_callback'], $item['access_arguments']);
546 static function &basicPermissions($all = FALSE) {
547 static $permissions = NULL;
550 $config = CRM_Core_Config
::singleton();
551 $prefix = ts('CiviCRM') . ': ';
552 $permissions = self
::getCorePermissions();
554 if (self
::isMultisiteEnabled()) {
555 $permissions['administer Multiple Organizations'] = $prefix . ts('administer Multiple Organizations');
559 $components = CRM_Core_Component
::getEnabledComponents();
562 $components = CRM_Core_Component
::getComponents();
565 foreach ($components as $comp) {
566 $perm = $comp->getPermissions();
568 $info = $comp->getInfo();
569 foreach ($perm as $p) {
570 $permissions[$p] = $info['translatedName'] . ': ' . $p;
575 // Add any permissions defined in hook_civicrm_permission implementations.
576 $module_permissions = $config->userPermissionClass
->getAllModulePermissions();
577 $permissions = array_merge($permissions, $module_permissions);
586 static function getAnonymousPermissionsWarnings() {
587 static $permissions = array();
588 if (empty($permissions)) {
589 $permissions = array(
592 $components = CRM_Core_Component
::getComponents();
593 foreach ($components as $comp) {
594 if (!method_exists($comp, 'getAnonymousPermissionWarnings')) {
597 $permissions = array_merge($permissions, $comp->getAnonymousPermissionWarnings());
604 * @param $anonymous_perms
608 static function validateForPermissionWarnings($anonymous_perms) {
609 return array_intersect($anonymous_perms, self
::getAnonymousPermissionsWarnings());
615 static function getCorePermissions() {
616 $prefix = ts('CiviCRM') . ': ';
617 $permissions = array(
618 'add contacts' => $prefix . ts('add contacts'),
619 'view all contacts' => $prefix . ts('view all contacts'),
620 'edit all contacts' => $prefix . ts('edit all contacts'),
621 'view my contact' => $prefix . ts('view my contact'),
622 'edit my contact' => $prefix . ts('edit my contact'),
623 'delete contacts' => $prefix . ts('delete contacts'),
624 'access deleted contacts' => $prefix . ts('access deleted contacts'),
625 'import contacts' => $prefix . ts('import contacts'),
626 'edit groups' => $prefix . ts('edit groups'),
627 'administer CiviCRM' => $prefix . ts('administer CiviCRM'),
628 'skip IDS check' => $prefix . ts('skip IDS check'),
629 'access uploaded files' => $prefix . ts('access uploaded files'),
630 'profile listings and forms' => $prefix . ts('profile listings and forms'),
631 'profile listings' => $prefix . ts('profile listings'),
632 'profile create' => $prefix . ts('profile create'),
633 'profile edit' => $prefix . ts('profile edit'),
634 'profile view' => $prefix . ts('profile view'),
635 'access all custom data' => $prefix . ts('access all custom data'),
636 'view all activities' => $prefix . ts('view all activities'),
637 'delete activities' => $prefix . ts('delete activities'),
638 'access CiviCRM' => $prefix . ts('access CiviCRM'),
639 'access Contact Dashboard' => $prefix . ts('access Contact Dashboard'),
640 'translate CiviCRM' => $prefix . ts('translate CiviCRM'),
641 'administer reserved groups' => $prefix . ts('administer reserved groups'),
642 'administer Tagsets' => $prefix . ts('administer Tagsets'),
643 'administer reserved tags' => $prefix . ts('administer reserved tags'),
644 'administer dedupe rules' => $prefix . ts('administer dedupe rules'),
645 'merge duplicate contacts' => $prefix . ts('merge duplicate contacts'),
646 'view debug output' => $prefix . ts('view debug output'),
647 'view all notes' => $prefix . ts('view all notes'),
648 'access AJAX API' => $prefix . ts('access AJAX API'),
649 'access contact reference fields' => $prefix . ts('access contact reference fields'),
650 'create manual batch' => $prefix . ts('create manual batch'),
651 'edit own manual batches' => $prefix . ts('edit own manual batches'),
652 'edit all manual batches' => $prefix . ts('edit all manual batches'),
653 'view own manual batches' => $prefix . ts('view own manual batches'),
654 'view all manual batches' => $prefix . ts('view all manual batches'),
655 'delete own manual batches' => $prefix . ts('delete own manual batches'),
656 'delete all manual batches' => $prefix . ts('delete all manual batches'),
657 'export own manual batches' => $prefix . ts('export own manual batches'),
658 'export all manual batches' => $prefix . ts('export all manual batches'),
659 'administer payment processors' => $prefix . ts('administer payment processors'),
666 * Validate user permission across
667 * edit or view or with supportable acls.
669 * return boolean true/false.
671 static function giveMeAllACLs() {
672 if (CRM_Core_Permission
::check('view all contacts') ||
673 CRM_Core_Permission
::check('edit all contacts')
678 $session = CRM_Core_Session
::singleton();
679 $contactID = $session->get('userID');
682 $aclPermission = self
::getPermission();
683 if (in_array($aclPermission, array(
684 CRM_Core_Permission
::EDIT
,
685 CRM_Core_Permission
::VIEW
,
691 // run acl where hook and see if the user is supplying an ACL clause
693 $tables = $whereTables = array();
696 CRM_Utils_Hook
::aclWhereClause(CRM_Core_Permission
::VIEW
,
697 $tables, $whereTables,
700 return empty($whereTables) ?
FALSE : TRUE;
704 * Get component name from given permission.
706 * @param string $permission
708 * return string $componentName the name of component.
710 * @return int|null|string
713 static function getComponentName($permission) {
714 $componentName = NULL;
715 $permission = trim($permission);
716 if (empty($permission)) {
717 return $componentName;
720 static $allCompPermissions = array();
721 if (empty($allCompPermissions)) {
722 $components = CRM_Core_Component
::getComponents();
723 foreach ($components as $name => $comp) {
724 //get all permissions of each components unconditionally
725 $allCompPermissions[$name] = $comp->getPermissions(TRUE);
729 if (is_array($allCompPermissions)) {
730 foreach ($allCompPermissions as $name => $permissions) {
731 if (in_array($permission, $permissions)) {
732 $componentName = $name;
738 return $componentName;
742 * Get all the contact emails for users that have a specific permission
744 * @param string $permissionName name of the permission we are interested in
746 * @return string a comma separated list of email addresses
748 public static function permissionEmails($permissionName) {
749 $config = CRM_Core_Config
::singleton();
750 return $config->userPermissionClass
->permissionEmails($permissionName);
754 * Get all the contact emails for users that have a specific role
756 * @param string $roleName name of the role we are interested in
758 * @return string a comma separated list of email addresses
760 public static function roleEmails($roleName) {
761 $config = CRM_Core_Config
::singleton();
762 return $config->userRoleClass
->roleEmails($roleName);
768 static function isMultisiteEnabled() {
769 return CRM_Core_BAO_Setting
::getItem(CRM_Core_BAO_Setting
::MULTISITE_PREFERENCES_NAME
,