Merge pull request #1730 from colemanw/master
[civicrm-core.git] / CRM / Extension / Container / Basic.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
232624b1 4 | CiviCRM version 4.4 |
6a488035
TO
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)) {
0bb81f24
TO
112 $errors[] = array(
113 'title' => ts('Invalid Base URL'),
114 'message' => ts('An extension container has been defined with a blank URL.'),
115 );
116 }
117
118 return $errors;
119 }
120
6a488035
TO
121 /**
122 * {@inheritdoc}
123 */
124 public function getKeys() {
125 return array_keys($this->getRelPaths());
126 }
127
128 /**
129 * {@inheritdoc}
130 */
131 public function getPath($key) {
132 return $this->baseDir . $this->getRelPath($key);
133 }
134
135 /**
136 * {@inheritdoc}
137 */
138 public function getResUrl($key) {
bb9944e6 139 return $this->baseUrl . $this->getRelUrl($key);
6a488035
TO
140 }
141
142 /**
143 * {@inheritdoc}
144 */
145 public function refresh() {
146 $this->relPaths = NULL;
147 if ($this->cache) {
148 $this->cache->delete($this->cacheKey);
149 }
150 }
151
152 /**
153 * @return string
154 */
155 public function getBaseDir() {
156 return $this->baseDir;
157 }
158
159 /**
160 * Determine the relative path of an extension directory
161 *
162 * @return string
163 * @throws CRM_Extension_Exception
164 */
165 protected function getRelPath($key) {
166 $keypaths = $this->getRelPaths();
0bb81f24 167 if (!isset($keypaths[$key])) {
6a488035
TO
168 throw new CRM_Extension_Exception_MissingException("Failed to find extension: $key");
169 }
170 return $keypaths[$key];
171 }
172
173 /**
174 * Scan $basedir for a list of extension-keys
175 *
176 * @return array($key => $relPath)
177 */
178 protected function getRelPaths() {
179 if (!is_array($this->relPaths)) {
180 if ($this->cache) {
181 $this->relPaths = $this->cache->get($this->cacheKey);
182 }
183 if (!is_array($this->relPaths)) {
184 $this->relPaths = array();
185 $infoPaths = CRM_Utils_File::findFiles($this->baseDir, 'info.xml');
186 foreach ($infoPaths as $infoPath) {
187 $relPath = CRM_Utils_File::relativize(dirname($infoPath), $this->baseDir);
188 try {
189 $info = CRM_Extension_Info::loadFromFile($infoPath);
190 } catch (CRM_Extension_Exception_ParseException $e) {
191 CRM_Core_Session::setStatus(ts('Parse error in extension: %1', array(
192 1 => $e->getMessage(),
193 )), '', 'error');
194 CRM_Core_Error::debug_log_message("Parse error in extension: " . $e->getMessage());
195 continue;
196 }
197 $this->relPaths[$info->key] = $relPath;
198 }
199 if ($this->cache) {
200 $this->cache->set($this->cacheKey, $this->relPaths);
201 }
202 }
203 }
204 return $this->relPaths;
205 }
5244c98f 206
bb9944e6
TO
207 /**
208 * Determine the relative path of an extension directory
209 *
210 * @return string
211 * @throws CRM_Extension_Exception
212 */
213 protected function getRelUrl($key) {
214 $relUrls = $this->getRelUrls();
0bb81f24 215 if (!isset($relUrls[$key])) {
bb9944e6
TO
216 throw new CRM_Extension_Exception_MissingException("Failed to find extension: $key");
217 }
218 return $relUrls[$key];
219 }
220
5244c98f
TO
221 /**
222 * Scan $basedir for a list of extension-keys
223 *
224 * @param string $dirSep the local system's directory separator
225 * @return array($key => $relUrl)
226 */
227 protected function getRelUrls() {
228 if (DIRECTORY_SEPARATOR == '/') {
229 return $this->getRelPaths();
230 }
231 if (!is_array($this->relUrls)) {
232 $this->relUrls = self::convertPathsToUrls(DIRECTORY_SEPARATOR, $this->getRelPaths());
233 }
234 return $this->relUrls;
235 }
236
237 /**
238 * Convert a list of relative paths to relative URLs.
239 *
240 * Note: Treat as private. This is only public to facilitate testing.
241 *
242 * @param string $dirSep
243 * @param array $relPaths ($key => $relPath)
244 * @return array($key => $relUrl)
245 */
246 public static function convertPathsToUrls($dirSep, $relPaths) {
247 $relUrls = array();
248 foreach ($relPaths as $key => $relPath) {
249 $relUrls[$key] = str_replace($dirSep, '/', $relPath);
250 }
251 return $relUrls;
252 }
6a488035 253}