Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CRM-21179 - Provide copies of dc.js, etal, for use by extensions #11005

Merged
merged 4 commits into from
Oct 9, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CRM/Core/Resources.php
Original file line number Diff line number Diff line change
Expand Up @@ -528,6 +528,9 @@ public function glob($ext, $patterns, $flags = NULL) {
$patterns = (array) $patterns;
$files = array();
foreach ($patterns as $pattern) {
if (preg_match(';^(assetBuilder|ext)://;', $pattern)) {
$files[] = $pattern;
}
if (CRM_Utils_File::isAbsolute($pattern)) {
// Absolute path.
$files = array_merge($files, (array) glob($pattern, $flags));
Expand Down
4 changes: 2 additions & 2 deletions CRM/Utils/Hook.php
Original file line number Diff line number Diff line change
Expand Up @@ -2110,8 +2110,8 @@ public static function alterResourceSettings(&$data) {
* );
* $angularModules['myBigAngularModule'] = array(
* 'ext' => 'org.example.mymod',
* 'js' => array('js/part1.js', 'js/part2.js'),
* 'css' => array('css/myAngularModule.css'),
* 'js' => array('js/part1.js', 'js/part2.js', 'ext://other.ext.name/file.js', 'assetBuilder://dynamicAsset.js'),
* 'css' => array('css/myAngularModule.css', 'ext://other.ext.name/file.css', 'assetBuilder://dynamicAsset.css'),
* 'partials' => array('partials/myBigAngularModule'),
* 'requires' => array('otherModuleA', 'otherModuleB'),
* 'basePages' => array('civicrm/a'),
Expand Down
110 changes: 110 additions & 0 deletions CRM/Utils/VisualBundle.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
<?php
/*
+--------------------------------------------------------------------+
| CiviCRM version 4.7 |
+--------------------------------------------------------------------+
| Copyright CiviCRM LLC (c) 2004-2017 |
+--------------------------------------------------------------------+
| This file is a part of CiviCRM. |
| |
| CiviCRM is free software; you can copy, modify, and distribute it |
| under the terms of the GNU Affero General Public License |
| Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
| |
| CiviCRM is distributed in the hope that it will be useful, but |
| WITHOUT ANY WARRANTY; without even the implied warranty of |
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
| See the GNU Affero General Public License for more details. |
| |
| You should have received a copy of the GNU Affero General Public |
| License and the CiviCRM Licensing Exception along |
| with this program; if not, contact CiviCRM LLC |
| at info[AT]civicrm[DOT]org. If you have questions about the |
| GNU Affero General Public License or the licensing of CiviCRM, |
| see the CiviCRM license FAQ at http://civicrm.org/licensing |
+--------------------------------------------------------------------+
*/

/**
* This class defines the `visual-bundle.js` asset, which combines `dc.js`,
* `d3.js`, and `crossfilter.js` into one asset -- and puts the services
* in the `CRM.visual` namespace.
*
* @package CRM
* @copyright CiviCRM LLC (c) 2004-2017
* $Id$
*
*/
class CRM_Utils_VisualBundle {

public static function register() {
Civi::resources()->addScriptUrl(Civi::service('asset_manager')->getUrl('visual-bundle.js'));
Civi::resources()->addStyleUrl(Civi::service('asset_manager')->getUrl('visual-bundle.css'));
}

/**
* Generate asset content (when accessed via AssetBuilder).
*
* @param \Civi\Core\Event\GenericHookEvent $event
* @see CRM_Utils_hook::buildAsset()
* @see \Civi\Core\AssetBuilder
*/
public static function buildAssetJs($event) {
if ($event->asset !== 'visual-bundle.js') {
return;
}

$files = array(
'crossfilter' => '[civicrm.bower]/crossfilter-1.3.x/crossfilter.min.js',
'd3' => '[civicrm.bower]/d3-3.5.x/d3.min.js',
'dc' => '[civicrm.bower]/dc-2.1.x/dc.min.js',
);

$content = array();
$content[] = "(function(){";
$content[] = "var backups = {d3: window.d3, crossfilter: window.crossfilter, dc: window.dc}";
$content[] = 'window.CRM = window.CRM || {};';
$content[] = 'CRM.visual = CRM.visual || {};';
foreach ($files as $var => $file) {
$content[] = "// File: $file";
$content[] = file_get_contents(Civi::paths()->getPath($file));
}
foreach ($files as $var => $file) {
$content[] = "CRM.visual.$var = $var;";
}
foreach ($files as $var => $file) {
$content[] = "window.$var = backups.$var;";
}
$content[] = "})();";

$event->mimeType = 'application/javascript';
$event->content = implode("\n", $content);
}

/**
* Generate asset content (when accessed via AssetBuilder).
*
* @param \Civi\Core\Event\GenericHookEvent $event
* @see CRM_Utils_hook::buildAsset()
* @see \Civi\Core\AssetBuilder
*/
public static function buildAssetCss($event) {
if ($event->asset !== 'visual-bundle.css') {
return;
}

$files = array(
'[civicrm.bower]/dc-2.1.x/dc.min.css',
);

$content = array();
foreach ($files as $file) {
$content[] = "// File: $file";
$content[] = file_get_contents(Civi::paths()->getPath($file));
}

$event->mimeType = 'text/css';
$event->content = implode("\n", $content);
}

}
34 changes: 33 additions & 1 deletion Civi/Angular/Manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,12 @@ public function getResources($moduleNames, $resType, $refType) {
$module = $this->getModule($moduleName);
if (isset($module[$resType])) {
foreach ($module[$resType] as $file) {
switch ($refType) {
$refTypeSuffix = '';
if (is_string($file) && preg_match(';^(assetBuilder|ext)://;', $file)) {
$refTypeSuffix = '-' . parse_url($file, PHP_URL_SCHEME);
}

switch ($refType . $refTypeSuffix) {
case 'path':
$result[] = $this->res->getPath($module['ext'], $file);
break;
Expand All @@ -340,6 +345,33 @@ public function getResources($moduleNames, $resType, $refType) {
$result[] = $this->res->getUrl($module['ext'], $file, TRUE);
break;

case 'path-assetBuilder':
$assetName = parse_url($file, PHP_URL_HOST) . parse_url($file, PHP_URL_PATH);
$assetParams = array();
parse_str('' . parse_url($file, PHP_URL_QUERY), $assetParams);
$result[] = \Civi::service('asset_builder')->getPath($assetName, $assetParams);
break;

case 'rawUrl-assetBuilder':
case 'cacheUrl-assetBuilder':
$assetName = parse_url($file, PHP_URL_HOST) . parse_url($file, PHP_URL_PATH);
$assetParams = array();
parse_str('' . parse_url($file, PHP_URL_QUERY), $assetParams);
$result[] = \Civi::service('asset_builder')->getUrl($assetName, $assetParams);
break;

case 'path-ext':
$result[] = $this->res->getPath(parse_url($file, PHP_URL_HOST), ltrim(parse_url($file, PHP_URL_PATH), '/'));
break;

case 'rawUrl-ext':
$result[] = $this->res->getUrl(parse_url($file, PHP_URL_HOST), ltrim(parse_url($file, PHP_URL_PATH), '/'));
break;

case 'cacheUrl-ext':
$result[] = $this->res->getUrl(parse_url($file, PHP_URL_HOST), ltrim(parse_url($file, PHP_URL_PATH), '/'), TRUE);
break;

case 'settings':
case 'requires':
if (!empty($module[$resType])) {
Expand Down
17 changes: 17 additions & 0 deletions Civi/Core/AssetBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,23 @@ public function getUrl($name, $params = array()) {
}
}

/**
* @param string $name
* Ex: 'angular.json'.
* @param array $params
* @return string
* URL.
* Ex: '/var/www/files/civicrm/dyn/angular.abcd1234abcd1234.json'.
*/
public function getPath($name, $params = array()) {
if (!$this->isValidName($name)) {
throw new \RuntimeException("Invalid dynamic asset name");
}

$fileName = $this->build($name, $params);
return $this->getCachePath($fileName);
}

/**
* Build the cached copy of an $asset.
*
Expand Down
2 changes: 2 additions & 0 deletions Civi/Core/Container.php
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,8 @@ public function createEventDispatcher($container) {
$dispatcher->addListener('hook_civicrm_eventDefs', array('\Civi\API\Events', 'hookEventDefs'));
$dispatcher->addListener('hook_civicrm_eventDefs', array('\Civi\Core\Event\SystemInstallEvent', 'hookEventDefs'));
$dispatcher->addListener('hook_civicrm_buildAsset', array('\Civi\Angular\Page\Modules', 'buildAngularModules'));
$dispatcher->addListener('hook_civicrm_buildAsset', array('\CRM_Utils_VisualBundle', 'buildAssetJs'));
$dispatcher->addListener('hook_civicrm_buildAsset', array('\CRM_Utils_VisualBundle', 'buildAssetCss'));
$dispatcher->addListener('civi.dao.postInsert', array('\CRM_Core_BAO_RecurringEntity', 'triggerInsert'));
$dispatcher->addListener('civi.dao.postUpdate', array('\CRM_Core_BAO_RecurringEntity', 'triggerUpdate'));
$dispatcher->addListener('civi.dao.postDelete', array('\CRM_Core_BAO_RecurringEntity', 'triggerDelete'));
Expand Down
3 changes: 3 additions & 0 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
"angular-unsavedChanges": "~0.1.1",
"qunit": "~1.10",
"d3": "3.4.11",
"d3-3.5.x": "d3#~3.5.17",
"dc-2.1.x": "dc.js#~2.1.8",
"crossfilter-1.3.x": "crossfilter2#~1.3.11",
"jquery": "~1.12",
"jquery-ui": "~1.12",
"lodash-compat": "~3.0",
Expand Down
21 changes: 21 additions & 0 deletions tests/phpunit/Civi/Angular/ManagerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,17 @@ public function testGetPartials_Hooked() {
// If crmMailing changes, feel free to use a different example.
}

public function testGetJs_Asset() {
\CRM_Utils_Hook::singleton()->setHook('civicrm_angularModules', array($this, 'hook_civicrm_angularModules_fooBar'));

$paths = $this->angular->getResources(array('fooBar'), 'js', 'path');
$this->assertRegExp('/visual-bundle.[a-z0-9]+.js/', $paths[0]);
$this->assertRegExp('/crossfilter/', file_get_contents($paths[0]));

$this->assertRegExp('/Common.js/', $paths[1]);
$this->assertRegExp('/console/', file_get_contents($paths[1]));
}

/**
* Get a translatable string from an example module.
*/
Expand Down Expand Up @@ -209,4 +220,14 @@ public function hook_civicrm_alterAngular($angular) {
);
}

public function hook_civicrm_angularModules_fooBar(&$angularModules) {
$angularModules['fooBar'] = array(
'ext' => 'civicrm',
'js' => array(
'assetBuilder://visual-bundle.js',
'ext://civicrm/js/Common.js',
),
);
}

}