Skip to content
Snippets Groups Projects
Commit 847c93ac authored by totten's avatar totten
Browse files

CRM-12193 - Register setting "communityMessagesUrl"; extract methods...

CRM-12193 - Register setting "communityMessagesUrl"; extract methods "isEnabled" and "getRenderedUrl"

----------------------------------------
* CRM-12193: In-app fundraising for CiviCRM
  http://issues.civicrm.org/jira/browse/CRM-12193
parent 2e794830
No related branches found
No related tags found
No related merge requests found
...@@ -53,6 +53,21 @@ class CRM_Core_CommunityMessages { ...@@ -53,6 +53,21 @@ class CRM_Core_CommunityMessages {
*/ */
protected $messagesUrl; protected $messagesUrl;
/**
* Create default instance
*
* @return CRM_Core_CommunityMessages
*/
public static function create() {
return new CRM_Core_CommunityMessages(
new CRM_Utils_Cache_SqlGroup(array(
'group' => 'community-messages',
'prefetch' => FALSE,
)),
CRM_Utils_HttpClient::singleton()
);
}
/** /**
* @param CRM_Utils_Cache_Interface $cache * @param CRM_Utils_Cache_Interface $cache
* @param CRM_Utils_HttpClient $client * @param CRM_Utils_HttpClient $client
...@@ -61,11 +76,14 @@ class CRM_Core_CommunityMessages { ...@@ -61,11 +76,14 @@ class CRM_Core_CommunityMessages {
$this->cache = $cache; $this->cache = $cache;
$this->client = $client; $this->client = $client;
if ($messagesUrl === NULL) { if ($messagesUrl === NULL) {
$this->messagesUrl = CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME, 'community_messages_url', NULL, self::DEFAULT_MESSAGES_URL); $this->messagesUrl = CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME, 'communityMessagesUrl', NULL, '*default*');
} }
else { else {
$this->messagesUrl = $messagesUrl; $this->messagesUrl = $messagesUrl;
} }
if ($this->messagesUrl === '*default*') {
$this->messagesUrl = self::DEFAULT_MESSAGES_URL;
}
} }
/** /**
...@@ -74,10 +92,6 @@ class CRM_Core_CommunityMessages { ...@@ -74,10 +92,6 @@ class CRM_Core_CommunityMessages {
* @return NULL|array * @return NULL|array
*/ */
public function getDocument() { public function getDocument() {
if ($this->messagesUrl === FALSE) {
return NULL;
}
$isChanged = FALSE; $isChanged = FALSE;
$document = $this->cache->get('communityMessages'); $document = $this->cache->get('communityMessages');
...@@ -92,7 +106,7 @@ class CRM_Core_CommunityMessages { ...@@ -92,7 +106,7 @@ class CRM_Core_CommunityMessages {
} }
if ($document['expires'] <= CRM_Utils_Time::getTimeRaw()) { if ($document['expires'] <= CRM_Utils_Time::getTimeRaw()) {
$newDocument = $this->fetchDocument($this->messagesUrl); $newDocument = $this->fetchDocument();
if ($newDocument && $this->validateDocument($newDocument)) { if ($newDocument && $this->validateDocument($newDocument)) {
$document = $newDocument; $document = $newDocument;
$document['expires'] = CRM_Utils_Time::getTimeRaw() + $document['ttl']; $document['expires'] = CRM_Utils_Time::getTimeRaw() + $document['ttl'];
...@@ -114,11 +128,10 @@ class CRM_Core_CommunityMessages { ...@@ -114,11 +128,10 @@ class CRM_Core_CommunityMessages {
/** /**
* Download document from URL and parse as JSON * Download document from URL and parse as JSON
* *
* @param string $url
* @return NULL|array parsed JSON * @return NULL|array parsed JSON
*/ */
public function fetchDocument($url) { public function fetchDocument() {
list($status, $json) = $this->client->get(CRM_Utils_System::evalUrl($url)); list($status, $json) = $this->client->get($this->getRenderedUrl());
if ($status != CRM_Utils_HttpClient::STATUS_OK || empty($json)) { if ($status != CRM_Utils_HttpClient::STATUS_OK || empty($json)) {
return NULL; return NULL;
} }
...@@ -129,6 +142,22 @@ class CRM_Core_CommunityMessages { ...@@ -129,6 +142,22 @@ class CRM_Core_CommunityMessages {
return $doc; return $doc;
} }
/**
* Get the final, usable URL string (after interpolating any variables)
*
* @return FALSE|string
*/
public function getRenderedUrl() {
return CRM_Utils_System::evalUrl($this->messagesUrl);
}
/**
* @return bool
*/
public function isEnabled() {
return $this->messagesUrl !== FALSE && $this->messagesUrl !== 'FALSE';
}
/** /**
* Pick a message to display * Pick a message to display
* *
...@@ -180,8 +209,8 @@ class CRM_Core_CommunityMessages { ...@@ -180,8 +209,8 @@ class CRM_Core_CommunityMessages {
); );
$vars = array(); $vars = array();
foreach ($vals as $k => $v) { foreach ($vals as $k => $v) {
$vars['%%'.$k.'%%'] = $v; $vars['%%' . $k . '%%'] = $v;
$vars['{{'.$k.'}}'] = urlencode($v); $vars['{{' . $k . '}}'] = urlencode($v);
} }
return strtr($markup, $vars); return strtr($markup, $vars);
} }
......
...@@ -488,6 +488,28 @@ When enabled, statistics about your CiviCRM installation are reported anonymousl ...@@ -488,6 +488,28 @@ When enabled, statistics about your CiviCRM installation are reported anonymousl
'description' => null, 'description' => null,
'help_text' => null, 'help_text' => null,
), ),
'communityMessagesUrl' => array(
'group_name' => 'CiviCRM Preferences',
'group' => 'core',
'name' => 'communityMessagesUrl',
'prefetch' => 0,
'config_only'=> 1,
'type' => 'String',
'quick_form_type' => 'Element',
'html_type' => 'text',
'html_attributes' => array(
'size' => 64,
'maxlength' => 128,
),
'html_type' => 'Text',
'default' => '*default*',
'add' => '4.3',
'title' => 'Community Messages URL',
'is_domain' => 1,
'is_contact' => 0,
'description' => 'Service providing CiviCRM community messages',
'help_text' => 'Use "*default*" for the system default or override with a custom URL',
),
'resCacheCode' => array( 'resCacheCode' => array(
'group_name' => 'CiviCRM Preferences', 'group_name' => 'CiviCRM Preferences',
'group' => 'core', 'group' => 'core',
......
...@@ -147,14 +147,21 @@ class CRM_Core_CommunityMessagesTest extends CiviUnitTestCase { ...@@ -147,14 +147,21 @@ class CRM_Core_CommunityMessagesTest extends CiviUnitTestCase {
return $result; return $result;
} }
public function testGetDocument_disabled() { public function testIsEnabled() {
$communityMessages = new CRM_Core_CommunityMessages(
$this->cache,
$this->expectNoHttpRequest()
);
$this->assertTrue($communityMessages->isEnabled());
}
public function testIsEnabled_false() {
$communityMessages = new CRM_Core_CommunityMessages( $communityMessages = new CRM_Core_CommunityMessages(
$this->cache, $this->cache,
$this->expectNoHttpRequest(), $this->expectNoHttpRequest(),
FALSE FALSE
); );
$doc = $communityMessages->getDocument(); $this->assertFalse($communityMessages->isEnabled());
$this->assertTrue(NULL === $doc);
} }
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment