Merge pull request #4627 from colemanw/docblocks
[civicrm-core.git] / CRM / Core / Permission / Joomla.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
06b69b18 4 | CiviCRM version 4.5 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 +--------------------------------------------------------------------+
26*/
27
28/**
29 *
30 * @package CRM
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
37 *
38 */
39class CRM_Core_Permission_Joomla extends CRM_Core_Permission_Base {
40 /**
41 * given a permission string, check for access requirements
42 *
43 * @param string $str the permission to check
44 *
45 * @return boolean true if yes, else false
46 * @access public
47 */
48 function check($str) {
49 $config = CRM_Core_Config::singleton();
50
cc222cb6
TO
51 $translated = $this->translateJoomlaPermission($str);
52 if ($translated === CRM_Core_Permission::ALWAYS_DENY_PERMISSION) {
53 return FALSE;
54 }
55 if ($translated === CRM_Core_Permission::ALWAYS_ALLOW_PERMISSION) {
56 return TRUE;
57 }
58
6a488035
TO
59 // ensure that we are running in a joomla context
60 // we've not yet figured out how to bootstrap joomla, so we should
61 // not execute hooks if joomla is not loaded
62 if (defined('_JEXEC')) {
cc222cb6 63 $permission = JFactory::getUser()->authorise($translated[0], $translated[1]);
6a488035
TO
64 return $permission;
65 }
66 else {
cc222cb6 67 // This function is supposed to return a boolean. What does '(1)' mean?
6a488035
TO
68 return '(1)';
69 }
70 }
71
cc222cb6 72 /**
77b97be7
EM
73 * @param $perm
74 *
75 * @internal param string $name e.g. "administer CiviCRM", "cms:access user record", "Drupal:administer content", "Joomla:example.action:com_some_asset"
cc222cb6
TO
76 * @return ALWAYS_DENY_PERMISSION|ALWAYS_ALLOW_PERMISSION|array(0 => $joomlaAction, 1 => $joomlaAsset)
77 */
78 function translateJoomlaPermission($perm) {
79 if ($perm === CRM_Core_Permission::ALWAYS_DENY_PERMISSION || $perm === CRM_Core_Permission::ALWAYS_ALLOW_PERMISSION) {
80 return $perm;
81 }
82
83 list ($civiPrefix, $name) = CRM_Utils_String::parsePrefix(':', $perm, NULL);
84 switch($civiPrefix) {
85 case 'Joomla':
86 return explode(':', $name);
87 case 'cms':
88 // FIXME: This needn't be DENY, but we don't currently have any translations.
89 return CRM_Core_Permission::ALWAYS_DENY_PERMISSION;
90 case NULL:
91 return array('civicrm.' . CRM_Utils_String::munge(strtolower($name)), 'com_civicrm');
92 default:
93 return CRM_Core_Permission::ALWAYS_DENY_PERMISSION;
94 }
95 }
96
6a488035
TO
97 /**
98 * Given a roles array, check for access requirements
99 *
100 * @param array $array the roles to check
101 *
102 * @return boolean true if yes, else false
103 * @static
104 * @access public
105 */
106 function checkGroupRole($array) {
107 return FALSE;
108 }
109}
110