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