Merge pull request #14280 from seamuslee001/dev_core_975
[civicrm-core.git] / CRM / Core / CommunityMessages.php
... / ...
CommitLineData
1<?php
2/*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2019 |
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 * Manage the download, validation, and rendering of community messages
30 */
31class CRM_Core_CommunityMessages {
32
33 const DEFAULT_MESSAGES_URL = 'https://alert.civicrm.org/alert?prot=1&ver={ver}&uf={uf}&sid={sid}&lang={lang}&co={co}';
34 const DEFAULT_PERMISSION = 'administer CiviCRM';
35
36 /**
37 * Default time to wait before retrying.
38 */
39 // 2 hours
40 const DEFAULT_RETRY = 7200;
41
42 /**
43 * @var CRM_Utils_HttpClient
44 */
45 protected $client;
46
47 /**
48 * @var CRM_Utils_Cache_Interface
49 */
50 protected $cache;
51
52 /**
53 * @var FALSE|string
54 */
55 protected $messagesUrl;
56
57 /**
58 * Create default instance.
59 *
60 * @return CRM_Core_CommunityMessages
61 */
62 public static function create() {
63 return new CRM_Core_CommunityMessages(
64 Civi::cache('community_messages'),
65 CRM_Utils_HttpClient::singleton()
66 );
67 }
68
69 /**
70 * @param CRM_Utils_Cache_Interface $cache
71 * @param CRM_Utils_HttpClient $client
72 * @param null $messagesUrl
73 */
74 public function __construct($cache, $client, $messagesUrl = NULL) {
75 $this->cache = $cache;
76 $this->client = $client;
77 if ($messagesUrl === NULL) {
78 $this->messagesUrl = Civi::settings()->get('communityMessagesUrl');
79 }
80 else {
81 $this->messagesUrl = $messagesUrl;
82 }
83 if ($this->messagesUrl === '*default*') {
84 $this->messagesUrl = self::DEFAULT_MESSAGES_URL;
85 }
86 }
87
88 /**
89 * Get the messages document (either from the cache or by downloading)
90 *
91 * @return NULL|array
92 */
93 public function getDocument() {
94 $isChanged = FALSE;
95 $document = $this->cache->get('communityMessages');
96
97 if (empty($document) || !is_array($document)) {
98 $document = [
99 'messages' => [],
100 // ASAP
101 'expires' => 0,
102 'ttl' => self::DEFAULT_RETRY,
103 'retry' => self::DEFAULT_RETRY,
104 ];
105 $isChanged = TRUE;
106 }
107
108 if ($document['expires'] <= CRM_Utils_Time::getTimeRaw()) {
109 $newDocument = $this->fetchDocument();
110 if ($newDocument && $this->validateDocument($newDocument)) {
111 $document = $newDocument;
112 $document['expires'] = CRM_Utils_Time::getTimeRaw() + $document['ttl'];
113 }
114 else {
115 // keep the old messages for now, try again later
116 $document['expires'] = CRM_Utils_Time::getTimeRaw() + $document['retry'];
117 }
118 $isChanged = TRUE;
119 }
120
121 if ($isChanged) {
122 $this->cache->set('communityMessages', $document);
123 }
124
125 return $document;
126 }
127
128 /**
129 * Download document from URL and parse as JSON.
130 *
131 * @return NULL|array
132 * parsed JSON
133 */
134 public function fetchDocument() {
135 list($status, $json) = $this->client->get($this->getRenderedUrl());
136 if ($status != CRM_Utils_HttpClient::STATUS_OK || empty($json)) {
137 return NULL;
138 }
139 $doc = json_decode($json, TRUE);
140 if (empty($doc) || json_last_error() != JSON_ERROR_NONE) {
141 return NULL;
142 }
143 return $doc;
144 }
145
146 /**
147 * Get the final, usable URL string (after interpolating any variables)
148 *
149 * @return FALSE|string
150 */
151 public function getRenderedUrl() {
152 return CRM_Utils_System::evalUrl($this->messagesUrl);
153 }
154
155 /**
156 * @return bool
157 */
158 public function isEnabled() {
159 return $this->messagesUrl !== FALSE && $this->messagesUrl !== 'FALSE';
160 }
161
162 /**
163 * Pick a message to display.
164 *
165 * @return NULL|array
166 */
167 public function pick() {
168 $document = $this->getDocument();
169 $messages = [];
170 foreach ($document['messages'] as $message) {
171 if (!isset($message['perms'])) {
172 $message['perms'] = [self::DEFAULT_PERMISSION];
173 }
174 if (!CRM_Core_Permission::checkAnyPerm($message['perms'])) {
175 continue;
176 }
177
178 if (isset($message['components'])) {
179 $enabled = array_keys(CRM_Core_Component::getEnabledComponents());
180 if (count(array_intersect($enabled, $message['components'])) == 0) {
181 continue;
182 }
183 }
184
185 $messages[] = $message;
186 }
187 if (empty($messages)) {
188 return NULL;
189 }
190
191 $idx = rand(0, count($messages) - 1);
192 return $messages[$idx];
193 }
194
195 /**
196 * @param string $markup
197 * @return string
198 */
199 public static function evalMarkup($markup) {
200 $config = CRM_Core_Config::singleton();
201 $vals = [
202 'resourceUrl' => rtrim($config->resourceBase, '/'),
203 'ver' => CRM_Utils_System::version(),
204 'uf' => $config->userFramework,
205 'php' => phpversion(),
206 'sid' => CRM_Utils_System::getSiteID(),
207 'baseUrl' => $config->userFrameworkBaseURL,
208 'lang' => $config->lcMessages,
209 'co' => $config->defaultContactCountry,
210 ];
211 $vars = [];
212 foreach ($vals as $k => $v) {
213 $vars['%%' . $k . '%%'] = $v;
214 $vars['{{' . $k . '}}'] = urlencode($v);
215 }
216 return strtr($markup, $vars);
217 }
218
219 /**
220 * Ensure that a document is well-formed
221 *
222 * @param array $document
223 * @return bool
224 */
225 public function validateDocument($document) {
226 if (!isset($document['ttl']) || !is_int($document['ttl'])) {
227 return FALSE;
228 }
229 if (!isset($document['retry']) || !is_int($document['retry'])) {
230 return FALSE;
231 }
232 if (!isset($document['messages']) || !is_array($document['messages'])) {
233 return FALSE;
234 }
235 foreach ($document['messages'] as $message) {
236 // TODO validate $message['markup']
237 }
238
239 return TRUE;
240 }
241
242}