Ian province abbreviation patch - issue 724
[civicrm-core.git] / CRM / Core / Permission / WordPress.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
e7112fa7 6 | Copyright CiviCRM LLC (c) 2004-2015 |
6a488035
TO
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
e7112fa7 31 * @copyright CiviCRM LLC (c) 2004-2015
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
37 *
38 */
39class CRM_Core_Permission_WordPress extends CRM_Core_Permission_Base {
40 /**
100fef9d 41 * Given a permission string, check for access requirements
6a488035 42 *
6a0b768e
TO
43 * @param string $str
44 * The permission to check.
6a488035 45 *
5c766a0b 46 * @return bool
a6c01b45 47 * true if yes, else false
6a488035 48 */
00be9182 49 public function check($str) {
2efcf0c2 50 // Generic cms 'administer users' role tranlates to 'administrator' WordPress role
085823c1 51 $str = $this->translatePermission($str, 'WordPress', array(
88da51c2 52 'administer users' => 'administrator',
085823c1
TO
53 ));
54 if ($str == CRM_Core_Permission::ALWAYS_DENY_PERMISSION) {
55 return FALSE;
56 }
57 if ($str == CRM_Core_Permission::ALWAYS_ALLOW_PERMISSION) {
58 return TRUE;
59 }
60
35da5d8d 61 // CRM-15629
26005452 62 // During some extern/* calls we don't bootstrap CMS hence
e401f13c 63 // below constants are not set. In such cases, we don't need to
64 // check permission, hence directly return TRUE
8b8897c8 65 if (!defined('ABSPATH') || !defined('WPINC')) {
35da5d8d
KC
66 require_once 'CRM/Utils/System.php';
67 CRM_Utils_System::loadBootStrap();
68 }
69
8518b09b
TO
70 require_once ABSPATH . WPINC . '/pluggable.php';
71
6a488035
TO
72 // for administrators give them all permissions
73 if (!function_exists('current_user_can')) {
74 return TRUE;
75 }
76
77 if (current_user_can('super admin') || current_user_can('administrator')) {
78 return TRUE;
79 }
80
81 // Make string lowercase and convert spaces into underscore
629b3d4d 82 $str = CRM_Utils_String::munge(strtolower($str));
6a488035 83
481a74f4 84 if (is_user_logged_in()) {
6a488035
TO
85 // Check whether the logged in user has the capabilitity
86 if (current_user_can($str)) {
87 return TRUE;
88 }
89 }
90 else {
91 //check the capabilities of Anonymous user)
92 $roleObj = new WP_Roles();
93 if (
94 $roleObj->get_role('anonymous_user') != NULL &&
95 array_key_exists($str, $roleObj->get_role('anonymous_user')->capabilities)
96 ) {
97 return TRUE;
98 }
99 }
100 return FALSE;
101 }
353ffa53 102
73950aa0 103 /**
e7c15cb6 104 * @inheritDoc
73950aa0 105 */
106 public function isModulePermissionSupported() {
0d3d1f9d 107 return TRUE;
73950aa0 108 }
0d3d1f9d 109
73950aa0 110 /**
e7c15cb6 111 * @inheritDoc
73950aa0 112 */
00be9182 113 public function upgradePermissions($permissions) {
73950aa0 114 }
96025800 115
6a488035 116}