3 +--------------------------------------------------------------------+
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2019 |
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-2019
35 * This is the basic permission class wrapper
37 class CRM_Core_Permission
{
40 * Static strings used to compose permissions.
45 const EDIT_GROUPS
= 'edit contacts in ', VIEW_GROUPS
= 'view contacts in ';
48 * The various type of permissions.
52 const EDIT
= 1, VIEW
= 2, DELETE
= 3, CREATE
= 4, SEARCH
= 5, ALL
= 6, ADMIN
= 7;
55 * A placeholder permission which always fails.
57 const ALWAYS_DENY_PERMISSION
= "*always deny*";
60 * A placeholder permission which always fails.
62 const ALWAYS_ALLOW_PERMISSION
= "*always allow*";
65 * Various authentication sources.
69 const AUTH_SRC_UNKNOWN
= 0, AUTH_SRC_CHECKSUM
= 1, AUTH_SRC_SITEKEY
= 2, AUTH_SRC_LOGIN
= 4;
72 * Get the current permission of this user.
75 * the permission of the user (edit or view or null)
77 public static function getPermission() {
78 $config = CRM_Core_Config
::singleton();
79 return $config->userPermissionClass
->getPermission();
83 * Given a permission string or array, check for access requirements
85 * Ex 1: Must have 'access CiviCRM'
86 * (string) 'access CiviCRM'
88 * Ex 2: Must have 'access CiviCRM' and 'access Ajax API'
89 * ['access CiviCRM', 'access Ajax API']
91 * Ex 3: Must have 'access CiviCRM' or 'access Ajax API'
93 * ['access CiviCRM', 'access Ajax API'],
96 * Ex 4: Must have 'access CiviCRM' or 'access Ajax API' AND 'access CiviEvent'
98 * ['access CiviCRM', 'access Ajax API'],
102 * Note that in permissions.php this is keyed by the action eg.
103 * (access Civi || access AJAX) && (access CiviEvent || access CiviContribute)
105 * ['access CiviCRM', 'access Ajax API'],
106 * ['access CiviEvent', 'access CiviContribute']
109 * @param string|array $permissions
110 * The permission to check as an array or string -see examples.
112 * @param int $contactId
113 * Contact id to check permissions for. Defaults to current logged-in user.
116 * true if contact has permission(s), else false
118 public static function check($permissions, $contactId = NULL) {
119 $permissions = (array) $permissions;
120 $userId = CRM_Core_BAO_UFMatch
::getUFId($contactId);
122 /** @var CRM_Core_Permission_Temp $tempPerm */
123 $tempPerm = CRM_Core_Config
::singleton()->userPermissionTemp
;
125 foreach ($permissions as $permission) {
126 if (is_array($permission)) {
127 foreach ($permission as $orPerm) {
128 if (self
::check($orPerm, $contactId)) {
129 //one of our 'or' permissions has succeeded - stop checking this permission
133 //none of our our conditions was met
137 // This is an individual permission
138 $granted = CRM_Core_Config
::singleton()->userPermissionClass
->check($permission, $userId);
139 // Call the permission_check hook to permit dynamic escalation (CRM-19256)
140 CRM_Utils_Hook
::permission_check($permission, $granted, $contactId);
143 && !($tempPerm && $tempPerm->check($permission))
145 //one of our 'and' conditions has not been met
154 * Determine if any one of the permissions strings applies to current user.
156 * @param array $perms
159 public static function checkAnyPerm($perms) {
160 foreach ($perms as $perm) {
161 if (CRM_Core_Permission
::check($perm)) {
169 * Given a group/role array, check for access requirements
171 * @param array $array
172 * The group/role to check.
175 * true if yes, else false
177 public static function checkGroupRole($array) {
178 $config = CRM_Core_Config
::singleton();
179 return $config->userPermissionClass
->checkGroupRole($array);
183 * Get the permissioned where clause for the user.
186 * The type of permission needed.
187 * @param array $tables
188 * (reference ) add the tables that are needed for the select clause.
189 * @param array $whereTables
190 * (reference ) add the tables that are needed for the where clause.
193 * the group where clause for this user
195 public static function getPermissionedStaticGroupClause($type, &$tables, &$whereTables) {
196 $config = CRM_Core_Config
::singleton();
197 return $config->userPermissionClass
->getPermissionedStaticGroupClause($type, $tables, $whereTables);
201 * Get all groups from database, filtered by permissions
204 * @param string $groupType
205 * Type of group(Access/Mailing).
206 * @param bool $excludeHidden
207 * exclude hidden groups.
211 * array reference of all groups.
213 public static function group($groupType, $excludeHidden = TRUE) {
214 $config = CRM_Core_Config
::singleton();
215 return $config->userPermissionClass
->group($groupType, $excludeHidden);
221 public static function customGroupAdmin() {
224 // check if user has all powerful permission
225 // or administer civicrm permission (CRM-1905)
226 if (self
::check('access all custom data')) {
231 self
::check('administer Multiple Organizations') &&
232 self
::isMultisiteEnabled()
237 if (self
::check('administer CiviCRM')) {
250 public static function customGroup($type = CRM_Core_Permission
::VIEW
, $reset = FALSE) {
251 $customGroups = CRM_Core_PseudoConstant
::get('CRM_Core_DAO_CustomField', 'custom_group_id',
252 ['fresh' => $reset]);
255 // check if user has all powerful permission
256 // or administer civicrm permission (CRM-1905)
257 if (self
::customGroupAdmin()) {
258 $defaultGroups = array_keys($customGroups);
261 return CRM_ACL_API
::group($type, NULL, 'civicrm_custom_group', $customGroups, $defaultGroups);
266 * @param null $prefix
271 public static function customGroupClause($type = CRM_Core_Permission
::VIEW
, $prefix = NULL, $reset = FALSE) {
272 if (self
::customGroupAdmin()) {
276 $groups = self
::customGroup($type, $reset);
277 if (empty($groups)) {
281 return "{$prefix}id IN ( " . implode(',', $groups) . ' ) ';
291 public static function ufGroupValid($gid, $type = CRM_Core_Permission
::VIEW
) {
296 $groups = self
::ufGroup($type);
297 return !empty($groups) && in_array($gid, $groups) ?
TRUE : FALSE;
305 public static function ufGroup($type = CRM_Core_Permission
::VIEW
) {
306 $ufGroups = CRM_Core_PseudoConstant
::get('CRM_Core_DAO_UFField', 'uf_group_id');
308 $allGroups = array_keys($ufGroups);
310 // check if user has all powerful permission
311 if (self
::check('profile listings and forms')) {
316 case CRM_Core_Permission
::VIEW
:
317 if (self
::check('profile view')) {
322 case CRM_Core_Permission
::CREATE
:
323 if (self
::check('profile create')) {
328 case CRM_Core_Permission
::EDIT
:
329 if (self
::check('profile edit')) {
334 case CRM_Core_Permission
::SEARCH
:
335 if (self
::check('profile listings')) {
341 return CRM_ACL_API
::group($type, NULL, 'civicrm_uf_group', $ufGroups);
346 * @param null $prefix
347 * @param bool $returnUFGroupIds
349 * @return array|string
351 public static function ufGroupClause($type = CRM_Core_Permission
::VIEW
, $prefix = NULL, $returnUFGroupIds = FALSE) {
352 $groups = self
::ufGroup($type);
353 if ($returnUFGroupIds) {
356 elseif (empty($groups)) {
360 return "{$prefix}id IN ( " . implode(',', $groups) . ' ) ';
366 * @param int $eventID
367 * @param string $context
371 public static function event($type = CRM_Core_Permission
::VIEW
, $eventID = NULL, $context = '') {
372 if (!empty($context)) {
373 if (CRM_Core_Permission
::check($context)) {
377 $events = CRM_Event_PseudoConstant
::event(NULL, TRUE);
380 // check if user has all powerful permission
381 if (self
::check('register for events')) {
382 $includeEvents = array_keys($events);
385 if ($type == CRM_Core_Permission
::VIEW
&&
386 self
::check('view event info')
388 $includeEvents = array_keys($events);
391 $permissionedEvents = CRM_ACL_API
::group($type, NULL, 'civicrm_event', $events, $includeEvents);
393 return $permissionedEvents;
395 if (!empty($permissionedEvents)) {
396 return array_search($eventID, $permissionedEvents) === FALSE ?
NULL : $eventID;
403 * @param null $prefix
407 public static function eventClause($type = CRM_Core_Permission
::VIEW
, $prefix = NULL) {
408 $events = self
::event($type);
409 if (empty($events)) {
413 return "{$prefix}id IN ( " . implode(',', $events) . ' ) ';
418 * Checks that component is enabled and optionally that user has basic perm.
420 * @param string $module
421 * Specifies the name of the CiviCRM component.
422 * @param bool $checkPermission
423 * Check not only that module is enabled, but that user has necessary
425 * @param bool $requireAllCasesPermOnCiviCase
426 * Significant only if $module == CiviCase
427 * Require "access all cases and activities", not just
428 * "access my cases and activities".
431 * Access to specified $module is granted.
433 public static function access($module, $checkPermission = TRUE, $requireAllCasesPermOnCiviCase = FALSE) {
434 $config = CRM_Core_Config
::singleton();
436 if (!in_array($module, $config->enableComponents
)) {
440 if ($checkPermission) {
443 $access_all_cases = CRM_Core_Permission
::check("access all cases and activities");
444 $access_my_cases = CRM_Core_Permission
::check("access my cases and activities");
445 return $access_all_cases ||
(!$requireAllCasesPermOnCiviCase && $access_my_cases);
448 return CRM_Core_Permission
::check("administer $module");
451 return CRM_Core_Permission
::check("access $module");
459 * Check permissions for delete and edit actions.
461 * @param string $module
464 * Action to be check across component.
469 public static function checkActionPermission($module, $action) {
470 //check delete related permissions.
471 if ($action & CRM_Core_Action
::DELETE
) {
472 $permissionName = "delete in $module";
476 'CiviEvent' => 'edit event participants',
477 'CiviMember' => 'edit memberships',
478 'CiviPledge' => 'edit pledges',
479 'CiviContribute' => 'edit contributions',
480 'CiviGrant' => 'edit grants',
481 'CiviMail' => 'access CiviMail',
482 'CiviAuction' => 'add auction items',
484 $permissionName = CRM_Utils_Array
::value($module, $editPermissions);
487 if ($module == 'CiviCase' && !$permissionName) {
488 return CRM_Case_BAO_Case
::accessCiviCase();
491 //check for permission.
492 return CRM_Core_Permission
::check($permissionName);
502 public static function checkMenu(&$args, $op = 'and') {
503 if (!is_array($args)) {
506 foreach ($args as $str) {
507 $res = CRM_Core_Permission
::check($str);
508 if ($op == 'or' && $res) {
511 elseif ($op == 'and' && !$res) {
515 return ($op == 'or') ?
FALSE : TRUE;
524 public static function checkMenuItem(&$item) {
525 if (!array_key_exists('access_callback', $item)) {
526 CRM_Core_Error
::backtrace();
527 CRM_Core_Error
::fatal();
530 // if component_id is present, ensure it is enabled
531 if (isset($item['component_id']) && $item['component_id']) {
532 if (!isset(Civi
::$statics[__CLASS__
]['componentNameId'])) {
533 Civi
::$statics[__CLASS__
]['componentNameId'] = array_flip(CRM_Core_Component
::getComponentIDs());
535 $componentName = Civi
::$statics[__CLASS__
]['componentNameId'][$item['component_id']];
537 $config = CRM_Core_Config
::singleton();
538 if (is_array($config->enableComponents
) && in_array($componentName, $config->enableComponents
)) {
539 // continue with process
546 // the following is imitating drupal 6 code in includes/menu.inc
547 if (empty($item['access_callback']) ||
548 is_numeric($item['access_callback'])
550 return (boolean
) $item['access_callback'];
553 // check whether the following Ajax requests submitted the right key
554 // FIXME: this should be integrated into ACLs proper
555 if (CRM_Utils_Array
::value('page_type', $item) == 3) {
556 if (!CRM_Core_Key
::validate($_REQUEST['key'], $item['path'])) {
561 // check if callback is for checkMenu, if so optimize it
562 if (is_array($item['access_callback']) &&
563 $item['access_callback'][0] == 'CRM_Core_Permission' &&
564 $item['access_callback'][1] == 'checkMenu'
566 $op = CRM_Utils_Array
::value(1, $item['access_arguments'], 'and');
567 return self
::checkMenu($item['access_arguments'][0], $op);
570 return call_user_func_array($item['access_callback'], $item['access_arguments']);
576 * Include disabled components
577 * @param bool $descriptions
578 * Whether to return descriptions
582 public static function basicPermissions($all = FALSE, $descriptions = FALSE) {
583 $cacheKey = implode('-', [$all, $descriptions]);
584 if (empty(Civi
::$statics[__CLASS__
][__FUNCTION__
][$cacheKey])) {
585 Civi
::$statics[__CLASS__
][__FUNCTION__
][$cacheKey] = self
::assembleBasicPermissions($all, $descriptions);
587 return Civi
::$statics[__CLASS__
][__FUNCTION__
][$cacheKey];
592 * @param bool $descriptions
593 * whether to return descriptions
597 public static function assembleBasicPermissions($all = FALSE, $descriptions = FALSE) {
598 $config = CRM_Core_Config
::singleton();
599 $prefix = ts('CiviCRM') . ': ';
600 $permissions = self
::getCorePermissions($descriptions);
602 if (self
::isMultisiteEnabled()) {
603 $permissions['administer Multiple Organizations'] = [$prefix . ts('administer Multiple Organizations')];
606 if (!$descriptions) {
607 foreach ($permissions as $name => $attr) {
608 $permissions[$name] = array_shift($attr);
612 $components = CRM_Core_Component
::getEnabledComponents();
615 $components = CRM_Core_Component
::getComponents();
618 foreach ($components as $comp) {
619 $perm = $comp->getPermissions($all, $descriptions);
621 $info = $comp->getInfo();
622 foreach ($perm as $p => $attr) {
624 if (!is_array($attr)) {
628 $attr[0] = $info['translatedName'] . ': ' . $attr[0];
631 $permissions[$p] = $attr;
634 $permissions[$p] = $attr[0];
640 // Add any permissions defined in hook_civicrm_permission implementations.
641 $module_permissions = $config->userPermissionClass
->getAllModulePermissions($descriptions);
642 $permissions = array_merge($permissions, $module_permissions);
643 CRM_Financial_BAO_FinancialType
::permissionedFinancialTypes($permissions, $descriptions);
650 public static function getAnonymousPermissionsWarnings() {
651 static $permissions = [];
652 if (empty($permissions)) {
654 'administer CiviCRM',
656 $components = CRM_Core_Component
::getComponents();
657 foreach ($components as $comp) {
658 if (!method_exists($comp, 'getAnonymousPermissionWarnings')) {
661 $permissions = array_merge($permissions, $comp->getAnonymousPermissionWarnings());
668 * @param $anonymous_perms
672 public static function validateForPermissionWarnings($anonymous_perms) {
673 return array_intersect($anonymous_perms, self
::getAnonymousPermissionsWarnings());
677 * Get core permissions.
681 public static function getCorePermissions() {
682 $prefix = ts('CiviCRM') . ': ';
685 $prefix . ts('add contacts'),
686 ts('Create a new contact record in CiviCRM'),
688 'view all contacts' => [
689 $prefix . ts('view all contacts'),
690 ts('View ANY CONTACT in the CiviCRM database, export contact info and perform activities such as Send Email, Phone Call, etc.'),
692 'edit all contacts' => [
693 $prefix . ts('edit all contacts'),
694 ts('View, Edit and Delete ANY CONTACT in the CiviCRM database; Create and edit relationships, tags and other info about the contacts'),
696 'view my contact' => [
697 $prefix . ts('view my contact'),
699 'edit my contact' => [
700 $prefix . ts('edit my contact'),
702 'delete contacts' => [
703 $prefix . ts('delete contacts'),
705 'access deleted contacts' => [
706 $prefix . ts('access deleted contacts'),
707 ts('Access contacts in the trash'),
709 'import contacts' => [
710 $prefix . ts('import contacts'),
711 ts('Import contacts and activities'),
713 'import SQL datasource' => [
714 $prefix . ts('import SQL datasource'),
715 ts('When importing, consume data directly from a SQL datasource'),
718 $prefix . ts('edit groups'),
719 ts('Create new groups, edit group settings (e.g. group name, visibility...), delete groups'),
721 'administer CiviCRM' => [
722 $prefix . ts('administer CiviCRM'),
723 ts('Perform all tasks in the Administer CiviCRM control panel and Import Contacts'),
725 'skip IDS check' => [
726 $prefix . ts('skip IDS check'),
727 ts('Warning: Give to trusted roles only; this permission has security implications. IDS system is bypassed for users with this permission. Prevents false errors for admin users.'),
729 'access uploaded files' => [
730 $prefix . ts('access uploaded files'),
731 ts('View / download files including images and photos'),
733 'profile listings and forms' => [
734 $prefix . ts('profile listings and forms'),
735 ts('Warning: Give to trusted roles only; this permission has privacy implications. Add/edit data in online forms and access public searchable directories.'),
737 'profile listings' => [
738 $prefix . ts('profile listings'),
739 ts('Warning: Give to trusted roles only; this permission has privacy implications. Access public searchable directories.'),
741 'profile create' => [
742 $prefix . ts('profile create'),
743 ts('Add data in a profile form.'),
746 $prefix . ts('profile edit'),
747 ts('Edit data in a profile form.'),
750 $prefix . ts('profile view'),
751 ts('View data in a profile.'),
753 'access all custom data' => [
754 $prefix . ts('access all custom data'),
755 ts('View all custom fields regardless of ACL rules'),
757 'view all activities' => [
758 $prefix . ts('view all activities'),
759 ts('View all activities (for visible contacts)'),
761 'delete activities' => [
762 $prefix . ts('Delete activities'),
764 'edit inbound email basic information' => [
765 $prefix . ts('edit inbound email basic information'),
766 ts('Edit all inbound email activities (for visible contacts) basic information. Content editing not allowed.'),
768 'edit inbound email basic information and content' => [
769 $prefix . ts('edit inbound email basic information and content'),
770 ts('Edit all inbound email activities (for visible contacts) basic information and content.'),
772 'access CiviCRM' => [
773 $prefix . ts('access CiviCRM backend and API'),
774 ts('Master control for access to the main CiviCRM backend and API. Give to trusted roles only.'),
776 'access Contact Dashboard' => [
777 $prefix . ts('access Contact Dashboard'),
778 ts('View Contact Dashboard (for themselves and visible contacts)'),
780 'translate CiviCRM' => [
781 $prefix . ts('translate CiviCRM'),
782 ts('Allow User to enable multilingual'),
785 $prefix . ts('manage tags'),
786 ts('Create and rename tags'),
788 'administer reserved groups' => [
789 $prefix . ts('administer reserved groups'),
790 ts('Edit and disable Reserved Groups (Needs Edit Groups)'),
792 'administer Tagsets' => [
793 $prefix . ts('administer Tagsets'),
795 'administer reserved tags' => [
796 $prefix . ts('administer reserved tags'),
798 'administer dedupe rules' => [
799 $prefix . ts('administer dedupe rules'),
800 ts('Create and edit rules, change the supervised and unsupervised rules'),
802 'merge duplicate contacts' => [
803 $prefix . ts('merge duplicate contacts'),
804 ts('Delete Contacts must also be granted in order for this to work.'),
806 'force merge duplicate contacts' => [
807 $prefix . ts('force merge duplicate contacts'),
808 ts('Delete Contacts must also be granted in order for this to work.'),
810 'view debug output' => [
811 $prefix . ts('view debug output'),
812 ts('View results of debug and backtrace'),
815 'view all notes' => [
816 $prefix . ts('view all notes'),
817 ts("View notes (for visible contacts) even if they're marked admin only"),
819 'add contact notes' => [
820 $prefix . ts('add contact notes'),
821 ts("Create notes for contacts"),
823 'access AJAX API' => [
824 $prefix . ts('access AJAX API'),
825 ts('Allow API access even if Access CiviCRM is not granted'),
827 'access contact reference fields' => [
828 $prefix . ts('access contact reference fields'),
829 ts('Allow entering data into contact reference fields'),
831 'create manual batch' => [
832 $prefix . ts('create manual batch'),
833 ts('Create an accounting batch (with Access to CiviContribute and View Own/All Manual Batches)'),
835 'edit own manual batches' => [
836 $prefix . ts('edit own manual batches'),
837 ts('Edit accounting batches created by user'),
839 'edit all manual batches' => [
840 $prefix . ts('edit all manual batches'),
841 ts('Edit all accounting batches'),
843 'close own manual batches' => [
844 $prefix . ts('close own manual batches'),
845 ts('Close accounting batches created by user (with Access to CiviContribute)'),
847 'close all manual batches' => [
848 $prefix . ts('close all manual batches'),
849 ts('Close all accounting batches (with Access to CiviContribute)'),
851 'reopen own manual batches' => [
852 $prefix . ts('reopen own manual batches'),
853 ts('Reopen accounting batches created by user (with Access to CiviContribute)'),
855 'reopen all manual batches' => [
856 $prefix . ts('reopen all manual batches'),
857 ts('Reopen all accounting batches (with Access to CiviContribute)'),
859 'view own manual batches' => [
860 $prefix . ts('view own manual batches'),
861 ts('View accounting batches created by user (with Access to CiviContribute)'),
863 'view all manual batches' => [
864 $prefix . ts('view all manual batches'),
865 ts('View all accounting batches (with Access to CiviContribute)'),
867 'delete own manual batches' => [
868 $prefix . ts('delete own manual batches'),
869 ts('Delete accounting batches created by user'),
871 'delete all manual batches' => [
872 $prefix . ts('delete all manual batches'),
873 ts('Delete all accounting batches'),
875 'export own manual batches' => [
876 $prefix . ts('export own manual batches'),
877 ts('Export accounting batches created by user'),
879 'export all manual batches' => [
880 $prefix . ts('export all manual batches'),
881 ts('Export all accounting batches'),
883 'administer payment processors' => [
884 $prefix . ts('administer payment processors'),
885 ts('Add, Update, or Disable Payment Processors'),
887 'edit message templates' => [
888 $prefix . ts('edit message templates'),
890 'edit system workflow message templates' => [
891 $prefix . ts('edit system workflow message templates'),
893 'edit user-driven message templates' => [
894 $prefix . ts('edit user-driven message templates'),
896 'view my invoices' => [
897 $prefix . ts('view my invoices'),
898 ts('Allow users to view/ download their own invoices'),
901 $prefix . ts('edit api keys'),
904 'edit own api keys' => [
905 $prefix . ts('edit own api keys'),
906 ts('Edit user\'s own API keys'),
909 $prefix . ts('send SMS'),
918 * For each entity provides an array of permissions required for each action
920 * The action is the array key, possible values:
921 * * create: applies to create (with no id in params)
922 * * update: applies to update, setvalue, create (with id in params)
923 * * get: applies to getcount, getsingle, getvalue and other gets
924 * * delete: applies to delete, replace
925 * * meta: applies to getfields, getoptions, getspec
926 * * default: catch-all for anything not declared
928 * Note: some APIs declare other actions as well
930 * Permissions should use arrays for AND and arrays of arrays for OR
931 * @see CRM_Core_Permission::check
933 * @return array of permissions
935 public static function getEntityActionPermissions() {
937 // These are the default permissions - if any entity does not declare permissions for a given action,
938 // (or the entity does not declare permissions at all) - then the action will be used from here
939 $permissions['default'] = [
940 // applies to getfields, getoptions, etc.
941 'meta' => ['access CiviCRM'],
942 // catch-all, applies to create, get, delete, etc.
943 // If an entity declares it's own 'default' action it will override this one
944 'default' => ['administer CiviCRM'],
947 // Note: Additional permissions in DynamicFKAuthorization
948 $permissions['attachment'] = [
950 ['access CiviCRM', 'access AJAX API'],
954 // Contact permissions
955 $permissions['contact'] = [
964 // managed by query object
966 // managed by _civicrm_api3_check_edit_permissions
969 ['access CiviCRM', 'access AJAX API'],
971 'duplicatecheck' => [
974 'merge' => ['merge duplicate contacts'],
977 $permissions['dedupe'] = [
978 'getduplicates' => ['access CiviCRM'],
981 // CRM-16963 - Permissions for country.
982 $permissions['country'] = [
987 'administer CiviCRM',
991 // Contact-related data permissions.
992 $permissions['address'] = [
993 // get is managed by BAO::addSelectWhereClause
994 // create/delete are managed by _civicrm_api3_check_edit_permissions
997 $permissions['email'] = $permissions['address'];
998 $permissions['phone'] = $permissions['address'];
999 $permissions['website'] = $permissions['address'];
1000 $permissions['im'] = $permissions['address'];
1001 $permissions['open_i_d'] = $permissions['address'];
1003 // Also managed by ACLs - CRM-19448
1004 $permissions['entity_tag'] = ['default' => []];
1005 $permissions['note'] = $permissions['entity_tag'];
1007 // Allow non-admins to get and create tags to support tagset widget
1008 // Delete is still reserved for admins
1009 $permissions['tag'] = [
1010 'get' => ['access CiviCRM'],
1011 'create' => ['access CiviCRM'],
1012 'update' => ['access CiviCRM'],
1015 //relationship permissions
1016 $permissions['relationship'] = [
1017 // get is managed by BAO::addSelectWhereClause
1021 'edit all contacts',
1025 'edit all contacts',
1029 // CRM-17741 - Permissions for RelationshipType.
1030 $permissions['relationship_type'] = [
1035 'administer CiviCRM',
1039 // Activity permissions
1040 $permissions['activity'] = [
1043 'delete activities',
1047 // Note that view all activities is also required within the api
1048 // if the id is not passed in. Where the id is passed in the activity
1049 // specific check functions are used and tested.
1053 'view all activities',
1056 $permissions['activity_contact'] = $permissions['activity'];
1059 $permissions['case'] = [
1066 'delete in CiviCase',
1069 'administer CiviCase',
1072 'administer CiviCase',
1075 // At minimum the user needs one of the following. Finer-grained access is controlled by CRM_Case_BAO_Case::addSelectWhereClause
1076 ['access my cases and activities', 'access all cases and activities'],
1079 $permissions['case_contact'] = $permissions['case'];
1081 $permissions['case_type'] = [
1082 'default' => ['administer CiviCase'],
1084 // nested array = OR
1085 ['access my cases and activities', 'access all cases and activities'],
1089 // Campaign permissions
1090 $permissions['campaign'] = [
1091 'get' => ['access CiviCRM'],
1093 // nested array = OR
1094 ['administer CiviCampaign', 'manage campaign'],
1097 $permissions['survey'] = $permissions['campaign'];
1099 // Financial permissions
1100 $permissions['contribution'] = [
1103 'access CiviContribute',
1107 'access CiviContribute',
1108 'delete in CiviContribute',
1110 'completetransaction' => [
1111 'edit contributions',
1115 'access CiviContribute',
1116 'edit contributions',
1119 $permissions['line_item'] = $permissions['contribution'];
1121 // Payment permissions
1122 $permissions['payment'] = [
1125 'access CiviContribute',
1129 'access CiviContribute',
1130 'delete in CiviContribute',
1134 'access CiviContribute',
1135 'edit contributions',
1139 'access CiviContribute',
1140 'edit contributions',
1144 'access CiviContribute',
1145 'edit contributions',
1148 $permissions['contribution_recur'] = $permissions['payment'];
1150 // Custom field permissions
1151 $permissions['custom_field'] = [
1153 'administer CiviCRM',
1154 'access all custom data',
1157 $permissions['custom_group'] = $permissions['custom_field'];
1159 // Event permissions
1160 $permissions['event'] = [
1169 'delete in CiviEvent',
1182 // Loc block is only used for events
1183 $permissions['loc_block'] = $permissions['event'];
1185 $permissions['state_province'] = [
1191 // Price sets are shared by several components, user needs access to at least one of them
1192 $permissions['price_set'] = [
1194 ['access CiviEvent', 'access CiviContribute', 'access CiviMember'],
1197 ['access CiviCRM', 'view event info', 'make online contributions'],
1202 $permissions['file'] = [
1205 'access uploaded files',
1208 $permissions['files_by_entity'] = $permissions['file'];
1210 // Group permissions
1211 $permissions['group'] = [
1221 $permissions['group_nesting'] = $permissions['group'];
1222 $permissions['group_organization'] = $permissions['group'];
1224 //Group Contact permission
1225 $permissions['group_contact'] = [
1231 'edit all contacts',
1235 // CiviMail Permissions
1236 $civiMailBasePerms = [
1237 // To get/preview/update, one must have least one of these perms:
1238 // Mailing API implementations enforce nuances of create/approve/schedule permissions.
1241 'schedule mailings',
1244 $permissions['mailing'] = [
1252 'delete in CiviMail',
1256 ['access CiviMail', 'schedule mailings'],
1263 $permissions['mailing_group'] = $permissions['mailing'];
1264 $permissions['mailing_job'] = $permissions['mailing'];
1265 $permissions['mailing_recipients'] = $permissions['mailing'];
1267 $permissions['mailing_a_b'] = [
1275 'delete in CiviMail',
1279 ['access CiviMail', 'schedule mailings'],
1287 // Membership permissions
1288 $permissions['membership'] = [
1291 'access CiviMember',
1295 'access CiviMember',
1296 'delete in CiviMember',
1300 'access CiviMember',
1304 $permissions['membership_status'] = $permissions['membership'];
1305 $permissions['membership_type'] = $permissions['membership'];
1306 $permissions['membership_payment'] = [
1309 'access CiviMember',
1311 'access CiviContribute',
1312 'edit contributions',
1316 'access CiviMember',
1317 'delete in CiviMember',
1318 'access CiviContribute',
1319 'delete in CiviContribute',
1323 'access CiviMember',
1324 'access CiviContribute',
1328 'access CiviMember',
1330 'access CiviContribute',
1331 'edit contributions',
1335 // Participant permissions
1336 $permissions['participant'] = [
1340 'register for events',
1345 'edit event participants',
1350 'view event participants',
1355 'edit event participants',
1358 $permissions['participant_payment'] = [
1362 'register for events',
1363 'access CiviContribute',
1364 'edit contributions',
1369 'edit event participants',
1370 'access CiviContribute',
1371 'delete in CiviContribute',
1376 'view event participants',
1377 'access CiviContribute',
1382 'edit event participants',
1383 'access CiviContribute',
1384 'edit contributions',
1388 // Pledge permissions
1389 $permissions['pledge'] = [
1392 'access CiviPledge',
1397 'access CiviPledge',
1398 'delete in CiviPledge',
1402 'access CiviPledge',
1406 'access CiviPledge',
1411 //CRM-16777: Disable schedule reminder for user that have 'edit all events' and 'administer CiviCRM' permission.
1412 $permissions['action_schedule'] = [
1421 $permissions['pledge_payment'] = [
1424 'access CiviPledge',
1426 'access CiviContribute',
1427 'edit contributions',
1431 'access CiviPledge',
1432 'delete in CiviPledge',
1433 'access CiviContribute',
1434 'delete in CiviContribute',
1438 'access CiviPledge',
1439 'access CiviContribute',
1443 'access CiviPledge',
1445 'access CiviContribute',
1446 'edit contributions',
1450 // Profile permissions
1451 $permissions['profile'] = [
1452 // the profile will take care of this
1456 $permissions['uf_group'] = [
1460 'administer CiviCRM',
1461 'manage event profiles',
1470 'administer CiviCRM',
1471 'manage event profiles',
1475 $permissions['uf_field'] = $permissions['uf_join'] = $permissions['uf_group'];
1476 $permissions['uf_field']['delete'] = [
1479 'administer CiviCRM',
1480 'manage event profiles',
1483 $permissions['option_value'] = $permissions['uf_group'];
1484 $permissions['option_group'] = $permissions['option_value'];
1486 $permissions['custom_value'] = [
1487 'gettree' => ['access CiviCRM'],
1490 $permissions['message_template'] = [
1491 'get' => ['access CiviCRM'],
1492 'create' => [['edit message templates', 'edit user-driven message templates', 'edit system workflow message templates']],
1493 'update' => [['edit message templates', 'edit user-driven message templates', 'edit system workflow message templates']],
1496 $permissions['report_template']['update'] = 'save Report Criteria';
1497 $permissions['report_template']['create'] = 'save Report Criteria';
1498 return $permissions;
1502 * Translate an unknown action to a canonical form.
1504 * @param string $action
1507 * the standardised action name
1509 public static function getGenericAction($action) {
1510 $snippet = substr($action, 0, 3);
1511 if ($action == 'replace' ||
$snippet == 'del') {
1512 // 'Replace' is a combination of get+create+update+delete; however, the permissions
1513 // on each of those will be tested separately at runtime. This is just a sniff-test
1514 // based on the heuristic that 'delete' tends to be the most closely guarded
1515 // of the necessary permissions.
1518 elseif ($action == 'setvalue' ||
$snippet == 'upd') {
1521 elseif ($action == 'getfields' ||
$action == 'getfield' ||
$action == 'getspec' ||
$action == 'getoptions') {
1524 elseif ($snippet == 'get') {
1531 * Validate user permission across.
1532 * edit or view or with supportable acls.
1536 public static function giveMeAllACLs() {
1537 if (CRM_Core_Permission
::check('view all contacts') ||
1538 CRM_Core_Permission
::check('edit all contacts')
1543 $session = CRM_Core_Session
::singleton();
1544 $contactID = $session->get('userID');
1547 $aclPermission = self
::getPermission();
1548 if (in_array($aclPermission, [
1549 CRM_Core_Permission
::EDIT
,
1550 CRM_Core_Permission
::VIEW
,
1556 // run acl where hook and see if the user is supplying an ACL clause
1557 // that is not false
1558 $tables = $whereTables = [];
1561 CRM_Utils_Hook
::aclWhereClause(CRM_Core_Permission
::VIEW
,
1562 $tables, $whereTables,
1565 return empty($whereTables) ?
FALSE : TRUE;
1569 * Get component name from given permission.
1571 * @param string $permission
1573 * @return null|string
1574 * the name of component.
1576 public static function getComponentName($permission) {
1577 $componentName = NULL;
1578 $permission = trim($permission);
1579 if (empty($permission)) {
1580 return $componentName;
1583 static $allCompPermissions = [];
1584 if (empty($allCompPermissions)) {
1585 $components = CRM_Core_Component
::getComponents();
1586 foreach ($components as $name => $comp) {
1587 //get all permissions of each components unconditionally
1588 $allCompPermissions[$name] = $comp->getPermissions(TRUE);
1592 if (is_array($allCompPermissions)) {
1593 foreach ($allCompPermissions as $name => $permissions) {
1594 if (array_key_exists($permission, $permissions)) {
1595 $componentName = $name;
1601 return $componentName;
1605 * Get all the contact emails for users that have a specific permission.
1607 * @param string $permissionName
1608 * Name of the permission we are interested in.
1611 * a comma separated list of email addresses
1613 public static function permissionEmails($permissionName) {
1614 $config = CRM_Core_Config
::singleton();
1615 return $config->userPermissionClass
->permissionEmails($permissionName);
1619 * Get all the contact emails for users that have a specific role.
1621 * @param string $roleName
1622 * Name of the role we are interested in.
1625 * a comma separated list of email addresses
1627 public static function roleEmails($roleName) {
1628 $config = CRM_Core_Config
::singleton();
1629 return $config->userRoleClass
->roleEmails($roleName);
1635 public static function isMultisiteEnabled() {
1636 return Civi
::settings()->get('is_enabled') ?
TRUE : FALSE;
1640 * Verify if the user has permission to get the invoice.
1643 * TRUE if the user has download all invoices permission or download my
1644 * invoices permission and the invoice author is the current user.
1646 public static function checkDownloadInvoice() {
1647 $cid = CRM_Core_Session
::getLoggedInContactID();
1648 if (CRM_Core_Permission
::check('access CiviContribute') ||
1649 (CRM_Core_Permission
::check('view my invoices') && $_GET['cid'] == $cid)