Merge pull request #1035 from GiantRobot/CRM-12720
[civicrm-core.git] / CRM / PCP / Page / PCPInfo.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.3 |
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 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2013
32 * $Id$
33 *
34 */
35
36/**
37 * PCP Info Page - Summary about the PCP
38 */
39class 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
2158332a 81 $pcpStatus = CRM_Core_OptionGroup::values("pcp_status");
6a488035
TO
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 if ($file_id = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_EntityFile', $this->_id, 'file_id', 'entity_id')) {
198 $image = '<img src="' . CRM_Utils_System::url('civicrm/file',
199 "reset=1&id=$file_id&eid={$this->_id}"
200 ) . '" />';
201 $this->assign('image', $image);
202 }
203
204 $totalAmount = CRM_PCP_BAO_PCP::thermoMeter($this->_id);
205 $achieved = round($totalAmount / $pcpInfo['goal_amount'] * 100, 2);
206
207
208 if ($pcpBlock->is_active == 1) {
209 $linkTextUrl = CRM_Utils_System::url('civicrm/contribute/campaign',
210 "action=add&reset=1&pageId={$pcpInfo['page_id']}&component={$pcpInfo['page_type']}",
211 TRUE, NULL, TRUE,
212 TRUE
213 );
214 $this->assign('linkTextUrl', $linkTextUrl);
215 $this->assign('linkText', $pcpBlock->link_text);
216 }
217
218 $this->assign('honor', $honor);
219 $this->assign('total', $totalAmount ? $totalAmount : '0.0');
220 $this->assign('achieved', $achieved <= 100 ? $achieved : 100);
221
222 if ($achieved <= 100) {
223 $this->assign('remaining', 100 - $achieved);
224 }
225 // make sure that we are between contribution page start and end dates OR registration start date and end dates if they are set
226 if ($pcpBlock->entity_table == 'civicrm_event') {
227 $startDate = CRM_Utils_Date::unixTime(CRM_Utils_Array::value('registration_start_date', $pageInfo));
228 $endDate = CRM_Utils_Date::unixTime(CRM_Utils_Array::value('registration_end_date', $pageInfo));
229 }
230 else {
231 $startDate = CRM_Utils_Date::unixTime(CRM_Utils_Array::value('start_date', $pageInfo));
232 $endDate = CRM_Utils_Date::unixTime(CRM_Utils_Array::value('end_date', $pageInfo));
233 }
234
235
236 $now = time();
237 $validDate = TRUE;
238 if ($startDate && $startDate >= $now) {
239 $validDate = FALSE;
240 }
241 if ($endDate && $endDate < $now) {
242 $validDate = FALSE;
243 }
244
245 $this->assign('validDate', $validDate);
246
247 // form parent page url
248 if ($action == CRM_Core_Action::PREVIEW) {
249 $parentUrl = CRM_Utils_System::url($urlBase,
250 "id={$pcpInfo['page_id']}&reset=1&action=preview",
251 TRUE, NULL, TRUE,
252 TRUE
253 );
254 }
255 else {
256 $parentUrl = CRM_Utils_System::url($urlBase,
257 "id={$pcpInfo['page_id']}&reset=1",
258 TRUE, NULL, TRUE,
259 TRUE
260 );
261 }
262
263 $this->assign('parentURL', $parentUrl);
264
265
266 if ($validDate) {
267
268 $contributionText = ts('Contribute Now');
269 if (CRM_Utils_Array::value('donate_link_text', $pcpInfo)) {
270 $contributionText = $pcpInfo['donate_link_text'];
271 }
272
273 $this->assign('contributionText', $contributionText);
274
275 // we always generate urls for the front end in joomla
276 if ($action == CRM_Core_Action::PREVIEW) {
277 $url = CRM_Utils_System::url($urlBase,
278 "id=" . $pcpBlock->target_entity_id . "&pcpId={$this->_id}&reset=1&action=preview",
279 TRUE, NULL, TRUE,
280 TRUE
281 );
282 }
283 else {
284 $url = CRM_Utils_System::url($urlBase,
285 "id=" . $pcpBlock->target_entity_id . "&pcpId={$this->_id}&reset=1",
286 TRUE, NULL, TRUE,
287 TRUE
288 );
289 }
290 $this->assign('contributeURL', $url);
291 }
292
293 // we do not want to display recently viewed items, so turn off
294 $this->assign('displayRecent', FALSE);
295
296 $single = $permission = FALSE;
297 switch ($action) {
298 case CRM_Core_Action::BROWSE:
299 $subForm = 'PCPAccount';
300 $form = "CRM_PCP_Form_$subForm";
301 $single = TRUE;
302 break;
303
304 case CRM_Core_Action::UPDATE:
305 $subForm = 'Campaign';
306 $form = "CRM_PCP_Form_$subForm";
307 $single = TRUE;
308 break;
309 }
310
311 $userID = $session->get('userID');
312 //make sure the user has "administer CiviCRM" permission
313 //OR has created the PCP
314 if (CRM_Core_Permission::check('administer CiviCRM') ||
315 ($userID && (CRM_Core_DAO::getFieldValue('CRM_PCP_DAO_PCP', $this->_id, 'contact_id') == $userID))
316 ) {
317 $permission = TRUE;
318 }
319 if ($single && $permission) {
320 $controller = new CRM_Core_Controller_Simple($form, $subForm, $action);
321 $controller->set('id', $this->_id);
322 $controller->set('single', TRUE);
323 $controller->process();
324 return $controller->run();
325 }
326 $session->pushUserContext(CRM_Utils_System::url(CRM_Utils_System::currentPath(), 'reset=1&id=' . $this->_id));
327 parent::run();
328 }
329
330 function getTemplateFileName() {
331 if ($this->_id) {
332 $templateFile = "CRM/PCP/Page/{$this->_id}/PCPInfo.tpl";
333 $template = &CRM_Core_Page::getTemplate();
334 if ($template->template_exists($templateFile)) {
335 return $templateFile;
336 }
337 }
338 return parent::getTemplateFileName();
339 }
340}
341