Merge pull request #2909 from jake-mw/crm-14472
[civicrm-core.git] / CRM / PCP / Page / PCPInfo.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2014
32 * $Id$
33 *
34 */
35
36 /**
37 * PCP Info Page - Summary about the PCP
38 */
39 class CRM_PCP_Page_PCPInfo extends CRM_Core_Page {
40 public $_component;
41
42 /**
43 * Run the page.
44 *
45 * This method is called after the page is created. It checks for the
46 * type of action and executes that action.
47 * Finally it calls the parent's run method.
48 *
49 * @return void
50 * @access public
51 *
52 */
53 function run() {
54 $session = CRM_Core_Session::singleton();
55 $config = CRM_Core_Config::singleton();
56 $permissionCheck = FALSE;
57 $statusMessage = '';
58 if ($config->userFramework != 'Joomla') {
59 $permissionCheck = CRM_Core_Permission::check('administer CiviCRM');
60 }
61 //get the pcp id.
62 $this->_id = CRM_Utils_Request::retrieve('id', 'Positive', $this, TRUE);
63
64 $action = CRM_Utils_Request::retrieve('action', 'String', $this, FALSE);
65
66 $prms = array('id' => $this->_id);
67
68 CRM_Core_DAO::commonRetrieve('CRM_PCP_DAO_PCP', $prms, $pcpInfo);
69 $this->_component = $pcpInfo['page_type'];
70
71 if (empty($pcpInfo)) {
72 $statusMessage = ts('The personal campaign page you requested is currently unavailable.');
73 CRM_Core_Error::statusBounce($statusMessage,
74 $config->userFrameworkBaseURL
75 );
76 }
77
78 CRM_Utils_System::setTitle($pcpInfo['title']);
79 $this->assign('pcp', $pcpInfo);
80
81 $pcpStatus = CRM_Core_OptionGroup::values("pcp_status");
82 $approvedId = CRM_Core_OptionGroup::getValue('pcp_status', 'Approved', 'name');
83
84 // check if PCP is created by anonymous user
85 $anonymousPCP = CRM_Utils_Request::retrieve('ap', 'Boolean', $this);
86 if ($anonymousPCP) {
87 $loginURL = $config->userSystem->getLoginURL();
88 $anonMessage = ts('Once you\'ve received your new account welcome email, you can <a href=%1>click here</a> to login and promote your campaign page.', array(1 => $loginURL));
89 CRM_Core_Session::setStatus($anonMessage, ts('Success'), 'success');
90 }
91 else {
92 $statusMessage = ts('The personal campaign page you requested is currently unavailable. However you can still support the campaign by making a contribution here.');
93 }
94
95 $pcpBlock = new CRM_PCP_DAO_PCPBlock();
96 $pcpBlock->entity_table = CRM_PCP_BAO_PCP::getPcpEntityTable($pcpInfo['page_type']);
97 $pcpBlock->entity_id = $pcpInfo['page_id'];
98 $pcpBlock->find(TRUE);
99
100 // Redirect back to source page in case of error.
101 if ($pcpInfo['page_type'] == 'contribute') {
102 $urlBase = 'civicrm/contribute/transact';
103 }
104 elseif ($pcpInfo['page_type'] == 'event') {
105 $urlBase = 'civicrm/event/register';
106 }
107
108 if ($pcpInfo['status_id'] != $approvedId || !$pcpInfo['is_active']) {
109 if ($pcpInfo['contact_id'] != $session->get('userID') && !$permissionCheck) {
110 CRM_Core_Error::statusBounce($statusMessage, CRM_Utils_System::url($urlBase,
111 "reset=1&id=" . $pcpInfo['page_id'],
112 FALSE, NULL, FALSE, TRUE
113 ));
114 }
115 }
116 else {
117 $getStatus = CRM_PCP_BAO_PCP::getStatus($this->_id, $this->_component);
118 if (!$getStatus) {
119 // PCP not enabled for this contribution page. Forward everyone to source page
120 CRM_Core_Error::statusBounce($statusMessage, CRM_Utils_System::url($urlBase,
121 "reset=1&id=" . $pcpInfo['page_id'],
122 FALSE, NULL, FALSE, TRUE
123 ));
124 }
125 }
126
127 $default = array();
128
129 if ($pcpBlock->target_entity_type == 'contribute') {
130 $urlBase = 'civicrm/contribute/transact';
131 }
132 elseif ($pcpBlock->target_entity_type == 'event') {
133 $urlBase = 'civicrm/event/register';
134 }
135
136 if ($pcpBlock->entity_table == 'civicrm_event') {
137 $page_class = 'CRM_Event_DAO_Event';
138 $this->assign('pageName', CRM_Event_PseudoConstant::event($pcpInfo['page_id']));
139 CRM_Core_DAO::commonRetrieveAll($page_class, 'id',
140 $pcpInfo['page_id'], $default, array('start_date', 'end_date', 'registration_start_date', 'registration_end_date')
141 );
142 }
143 elseif ($pcpBlock->entity_table == 'civicrm_contribution_page') {
144 $page_class = 'CRM_Contribute_DAO_ContributionPage';
145 $this->assign('pageName', CRM_Contribute_PseudoConstant::contributionPage($pcpInfo['page_id'], TRUE));
146 CRM_Core_DAO::commonRetrieveAll($page_class, 'id',
147 $pcpInfo['page_id'], $default, array('start_date', 'end_date')
148 );
149 }
150
151 $pageInfo = $default[$pcpInfo['page_id']];
152
153 if ($pcpInfo['contact_id'] == $session->get('userID')) {
154 $owner = $pageInfo;
155 $owner['status'] = CRM_Utils_Array::value($pcpInfo['status_id'], $pcpStatus);
156
157 $this->assign('owner', $owner);
158
159 $link = CRM_PCP_BAO_PCP::pcpLinks();
160
161 $hints = array(
162 CRM_Core_Action::UPDATE => ts('Change the content and appearance of your page'),
163 CRM_Core_Action::DETACH => ts('Send emails inviting your friends to support your campaign!'),
164 CRM_Core_Action::BROWSE => ts('Update your personal contact information'),
165 CRM_Core_Action::DISABLE => ts('De-activate the page (you can re-activate it later)'),
166 CRM_Core_Action::ENABLE => ts('Activate the page (you can de-activate it later)'),
167 CRM_Core_Action::DELETE => ts('Remove the page (this cannot be undone!)'),
168 );
169
170 $replace = array(
171 'id' => $this->_id,
172 'block' => $pcpBlock->id,
173 'pageComponent' => $this->_component,
174 );
175
176 if (!$pcpBlock->is_tellfriend_enabled || CRM_Utils_Array::value('status_id', $pcpInfo) != $approvedId) {
177 unset($link['all'][CRM_Core_Action::DETACH]);
178 }
179
180 switch ($pcpInfo['is_active']) {
181 case 1:
182 unset($link['all'][CRM_Core_Action::ENABLE]);
183 break;
184
185 case 0:
186 unset($link['all'][CRM_Core_Action::DISABLE]);
187 break;
188 }
189
190 $this->assign('links', $link['all']);
191 $this->assign('hints', $hints);
192 $this->assign('replace', $replace);
193 }
194
195 $honor = CRM_PCP_BAO_PCP::honorRoll($this->_id);
196
197 $entityFile = CRM_Core_BAO_File::getEntityFile('civicrm_pcp', $this->_id);
198 if (!empty($entityFile)) {
199 $fileInfo = reset($entityFile);
200 $fileId = $fileInfo['fileID'];
201 $image = '<img src="' . CRM_Utils_System::url('civicrm/file',
202 "reset=1&id=$fileId&eid={$this->_id}"
203 ) . '" />';
204 $this->assign('image', $image);
205 }
206
207 $totalAmount = CRM_PCP_BAO_PCP::thermoMeter($this->_id);
208 $achieved = round($totalAmount / $pcpInfo['goal_amount'] * 100, 2);
209
210
211 if ($pcpBlock->is_active == 1) {
212 $linkTextUrl = CRM_Utils_System::url('civicrm/contribute/campaign',
213 "action=add&reset=1&pageId={$pcpInfo['page_id']}&component={$pcpInfo['page_type']}",
214 TRUE, NULL, TRUE,
215 TRUE
216 );
217 $this->assign('linkTextUrl', $linkTextUrl);
218 $this->assign('linkText', $pcpBlock->link_text);
219 }
220
221 $this->assign('honor', $honor);
222 $this->assign('total', $totalAmount ? $totalAmount : '0.0');
223 $this->assign('achieved', $achieved <= 100 ? $achieved : 100);
224
225 if ($achieved <= 100) {
226 $this->assign('remaining', 100 - $achieved);
227 }
228 // make sure that we are between contribution page start and end dates OR registration start date and end dates if they are set
229 if ($pcpBlock->entity_table == 'civicrm_event') {
230 $startDate = CRM_Utils_Date::unixTime(CRM_Utils_Array::value('registration_start_date', $pageInfo));
231 $endDate = CRM_Utils_Date::unixTime(CRM_Utils_Array::value('registration_end_date', $pageInfo));
232 }
233 else {
234 $startDate = CRM_Utils_Date::unixTime(CRM_Utils_Array::value('start_date', $pageInfo));
235 $endDate = CRM_Utils_Date::unixTime(CRM_Utils_Array::value('end_date', $pageInfo));
236 }
237
238
239 $now = time();
240 $validDate = TRUE;
241 if ($startDate && $startDate >= $now) {
242 $validDate = FALSE;
243 }
244 if ($endDate && $endDate < $now) {
245 $validDate = FALSE;
246 }
247
248 $this->assign('validDate', $validDate);
249
250 // form parent page url
251 if ($action == CRM_Core_Action::PREVIEW) {
252 $parentUrl = CRM_Utils_System::url($urlBase,
253 "id={$pcpInfo['page_id']}&reset=1&action=preview",
254 TRUE, NULL, TRUE,
255 TRUE
256 );
257 }
258 else {
259 $parentUrl = CRM_Utils_System::url($urlBase,
260 "id={$pcpInfo['page_id']}&reset=1",
261 TRUE, NULL, TRUE,
262 TRUE
263 );
264 }
265
266 $this->assign('parentURL', $parentUrl);
267
268
269 if ($validDate) {
270
271 $contributionText = ts('Contribute Now');
272 if (!empty($pcpInfo['donate_link_text'])) {
273 $contributionText = $pcpInfo['donate_link_text'];
274 }
275
276 $this->assign('contributionText', $contributionText);
277
278 // we always generate urls for the front end in joomla
279 if ($action == CRM_Core_Action::PREVIEW) {
280 $url = CRM_Utils_System::url($urlBase,
281 "id=" . $pcpBlock->target_entity_id . "&pcpId={$this->_id}&reset=1&action=preview",
282 TRUE, NULL, TRUE,
283 TRUE
284 );
285 }
286 else {
287 $url = CRM_Utils_System::url($urlBase,
288 "id=" . $pcpBlock->target_entity_id . "&pcpId={$this->_id}&reset=1",
289 TRUE, NULL, TRUE,
290 TRUE
291 );
292 }
293 $this->assign('contributeURL', $url);
294 }
295
296 // we do not want to display recently viewed items, so turn off
297 $this->assign('displayRecent', FALSE);
298
299 $single = $permission = FALSE;
300 switch ($action) {
301 case CRM_Core_Action::BROWSE:
302 $subForm = 'PCPAccount';
303 $form = "CRM_PCP_Form_$subForm";
304 $single = TRUE;
305 break;
306
307 case CRM_Core_Action::UPDATE:
308 $subForm = 'Campaign';
309 $form = "CRM_PCP_Form_$subForm";
310 $single = TRUE;
311 break;
312 }
313
314 $userID = $session->get('userID');
315 //make sure the user has "administer CiviCRM" permission
316 //OR has created the PCP
317 if (CRM_Core_Permission::check('administer CiviCRM') ||
318 ($userID && (CRM_Core_DAO::getFieldValue('CRM_PCP_DAO_PCP', $this->_id, 'contact_id') == $userID))
319 ) {
320 $permission = TRUE;
321 }
322 if ($single && $permission) {
323 $controller = new CRM_Core_Controller_Simple($form, $subForm, $action);
324 $controller->set('id', $this->_id);
325 $controller->set('single', TRUE);
326 $controller->process();
327 return $controller->run();
328 }
329 $session->pushUserContext(CRM_Utils_System::url(CRM_Utils_System::currentPath(), 'reset=1&id=' . $this->_id));
330 parent::run();
331 }
332
333 function getTemplateFileName() {
334 if ($this->_id) {
335 $templateFile = "CRM/PCP/Page/{$this->_id}/PCPInfo.tpl";
336 $template = &CRM_Core_Page::getTemplate();
337 if ($template->template_exists($templateFile)) {
338 return $templateFile;
339 }
340 }
341 return parent::getTemplateFileName();
342 }
343 }
344