Merge pull request #869 from totten/cms-perms
[civicrm-core.git] / CRM / Extension / Container / Basic.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.3 |
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 * @package CRM
30 * @copyright CiviCRM LLC (c) 2004-2013
31 * $Id$
32 */
33
34/**
35 * An extension container is a locally-accessible source tree which can be
36 * scanned for extensions.
37 */
38class CRM_Extension_Container_Basic implements CRM_Extension_Container_Interface {
39
40 /**
41 * @var string
42 *
43 * Note: Treat as private. This is only public to facilitate debugging.
44 */
45 public $baseDir;
46
47 /**
48 * @var string
49 *
50 * Note: Treat as private. This is only public to facilitate debugging.
51 */
52 public $baseUrl;
53
54 /**
55 * @var CRM_Utils_Cache_Interface|NULL
56 *
57 * Note: Treat as private. This is only public to facilitate debugging.
58 */
59 public $cache;
60
61 /**
62 * @var string the cache key used for any data stored by this container
63 *
64 * Note: Treat as private. This is only public to facilitate debugging.
65 */
66 public $cacheKey;
67
68 /**
69 * @var array($key => $relPath)
70 *
71 * Note: Treat as private. This is only public to facilitate debugging.
72 */
73 public $relPaths = FALSE;
74
5244c98f
TO
75 /**
76 * @var array($key => $relUrl)
77 *
78 * Derived from $relPaths. On Unix systems (where file-paths and
79 * URL-paths both use '/' separator), this isn't necessary. On Windows
80 * systems, this is derived from $relPaths.
81 *
82 * Note: Treat as private. This is only public to facilitate debugging.
83 */
84 public $relUrls = FALSE;
85
6a488035
TO
86 /**
87 * @param string $baseDir local path to the container
88 * @param string $baseUrl public URL of the container
89 * @param CRM_Utils_Cache_Interface $cache
90 * @param string $cacheKey unique name for this container
91 */
92 public function __construct($baseDir, $baseUrl, CRM_Utils_Cache_Interface $cache = NULL, $cacheKey = NULL) {
93 $this->cache = $cache;
94 $this->cacheKey = $cacheKey;
95 $this->baseDir = rtrim($baseDir, '/');
96 $this->baseUrl = rtrim($baseUrl, '/');
97 }
98
0bb81f24
TO
99 /**
100 * {@inheritdoc}
101 */
102 public function checkRequirements() {
103 $errors = array();
104
105 if (empty($this->baseDir) || !is_dir($this->baseDir)) {
106 $errors[] = array(
107 'title' => ts('Invalid Base Directory'),
108 'message' => ts('An extension container has been defined with a blank directory.'),
109 );
110 }
111 if (empty($this->baseUrl)) {
112 dpm($this);
113 $errors[] = array(
114 'title' => ts('Invalid Base URL'),
115 'message' => ts('An extension container has been defined with a blank URL.'),
116 );
117 }
118
119 return $errors;
120 }
121
6a488035
TO
122 /**
123 * {@inheritdoc}
124 */
125 public function getKeys() {
126 return array_keys($this->getRelPaths());
127 }
128
129 /**
130 * {@inheritdoc}
131 */
132 public function getPath($key) {
133 return $this->baseDir . $this->getRelPath($key);
134 }
135
136 /**
137 * {@inheritdoc}
138 */
139 public function getResUrl($key) {
bb9944e6 140 return $this->baseUrl . $this->getRelUrl($key);
6a488035
TO
141 }
142
143 /**
144 * {@inheritdoc}
145 */
146 public function refresh() {
147 $this->relPaths = NULL;
148 if ($this->cache) {
149 $this->cache->delete($this->cacheKey);
150 }
151 }
152
153 /**
154 * @return string
155 */
156 public function getBaseDir() {
157 return $this->baseDir;
158 }
159
160 /**
161 * Determine the relative path of an extension directory
162 *
163 * @return string
164 * @throws CRM_Extension_Exception
165 */
166 protected function getRelPath($key) {
167 $keypaths = $this->getRelPaths();
0bb81f24 168 if (!isset($keypaths[$key])) {
6a488035
TO
169 throw new CRM_Extension_Exception_MissingException("Failed to find extension: $key");
170 }
171 return $keypaths[$key];
172 }
173
174 /**
175 * Scan $basedir for a list of extension-keys
176 *
177 * @return array($key => $relPath)
178 */
179 protected function getRelPaths() {
180 if (!is_array($this->relPaths)) {
181 if ($this->cache) {
182 $this->relPaths = $this->cache->get($this->cacheKey);
183 }
184 if (!is_array($this->relPaths)) {
185 $this->relPaths = array();
186 $infoPaths = CRM_Utils_File::findFiles($this->baseDir, 'info.xml');
187 foreach ($infoPaths as $infoPath) {
188 $relPath = CRM_Utils_File::relativize(dirname($infoPath), $this->baseDir);
189 try {
190 $info = CRM_Extension_Info::loadFromFile($infoPath);
191 } catch (CRM_Extension_Exception_ParseException $e) {
192 CRM_Core_Session::setStatus(ts('Parse error in extension: %1', array(
193 1 => $e->getMessage(),
194 )), '', 'error');
195 CRM_Core_Error::debug_log_message("Parse error in extension: " . $e->getMessage());
196 continue;
197 }
198 $this->relPaths[$info->key] = $relPath;
199 }
200 if ($this->cache) {
201 $this->cache->set($this->cacheKey, $this->relPaths);
202 }
203 }
204 }
205 return $this->relPaths;
206 }
5244c98f 207
bb9944e6
TO
208 /**
209 * Determine the relative path of an extension directory
210 *
211 * @return string
212 * @throws CRM_Extension_Exception
213 */
214 protected function getRelUrl($key) {
215 $relUrls = $this->getRelUrls();
0bb81f24 216 if (!isset($relUrls[$key])) {
bb9944e6
TO
217 throw new CRM_Extension_Exception_MissingException("Failed to find extension: $key");
218 }
219 return $relUrls[$key];
220 }
221
5244c98f
TO
222 /**
223 * Scan $basedir for a list of extension-keys
224 *
225 * @param string $dirSep the local system's directory separator
226 * @return array($key => $relUrl)
227 */
228 protected function getRelUrls() {
229 if (DIRECTORY_SEPARATOR == '/') {
230 return $this->getRelPaths();
231 }
232 if (!is_array($this->relUrls)) {
233 $this->relUrls = self::convertPathsToUrls(DIRECTORY_SEPARATOR, $this->getRelPaths());
234 }
235 return $this->relUrls;
236 }
237
238 /**
239 * Convert a list of relative paths to relative URLs.
240 *
241 * Note: Treat as private. This is only public to facilitate testing.
242 *
243 * @param string $dirSep
244 * @param array $relPaths ($key => $relPath)
245 * @return array($key => $relUrl)
246 */
247 public static function convertPathsToUrls($dirSep, $relPaths) {
248 $relUrls = array();
249 foreach ($relPaths as $key => $relPath) {
250 $relUrls[$key] = str_replace($dirSep, '/', $relPath);
251 }
252 return $relUrls;
253 }
6a488035 254}