Merge pull request #2753 from fuzionnz/CRM-14394
[civicrm-core.git] / CRM / Mailing / Page / View.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.4 |
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 * a page for mailing preview
38 */
39 class CRM_Mailing_Page_View extends CRM_Core_Page {
40 protected $_mailingID;
41 protected $_mailing;
42 protected $_contactID;
43
44 /**
45 * Lets do permission checking here
46 * First check for valid mailing, if false return fatal
47 * Second check for visibility
48 * Call a hook to see if hook wants to override visibility setting
49 */
50 function checkPermission() {
51 if (!$this->_mailing) {
52 return FALSE;
53 }
54
55 // check for visibility, if visibility is Public Pages and they have the permission
56 // return true
57 if ($this->_mailing->visibility == 'Public Pages' &&
58 CRM_Core_Permission::check('view public CiviMail content')
59 ) {
60 return TRUE;
61 }
62
63 // if user is an admin, return true
64 if (CRM_Core_Permission::check('administer CiviCRM') ||
65 CRM_Core_Permission::check('access CiviMail')
66 ) {
67 return TRUE;
68 }
69
70 return FALSE;
71 }
72
73 /**
74 * run this page (figure out the action needed and perform it).
75 *
76 * @return void
77 */
78 function run($id = NULL, $contactID = NULL, $print = TRUE) {
79 if (is_numeric($id)) {
80 $this->_mailingID = $id;
81 }
82 else {
83 $print = TRUE;
84 $this->_mailingID = CRM_Utils_Request::retrieve('id', 'Integer', CRM_Core_DAO::$_nullObject, TRUE);
85 }
86
87 // # CRM-7651
88 // override contactID from the function level if passed in
89 if (isset($contactID) &&
90 is_numeric($contactID)
91 ) {
92 $this->_contactID = $contactID;
93 }
94 else {
95 $session = CRM_Core_Session::singleton();
96 $this->_contactID = $session->get('userID');
97 }
98
99 $this->_mailing = new CRM_Mailing_BAO_Mailing();
100 $this->_mailing->id = $this->_mailingID;
101
102 if (!$this->_mailing->find(TRUE) ||
103 !$this->checkPermission()
104 ) {
105 CRM_Utils_System::permissionDenied();
106 return;
107 }
108
109 CRM_Mailing_BAO_Mailing::tokenReplace($this->_mailing);
110
111 // get and format attachments
112 $attachments = CRM_Core_BAO_File::getEntityFile('civicrm_mailing',
113 $this->_mailing->id
114 );
115
116 // get contact detail and compose if contact id exists
117 if (isset($this->_contactID)) {
118 //get details of contact with token value including Custom Field Token Values.CRM-3734
119 $returnProperties = $this->_mailing->getReturnProperties();
120 $params = array('contact_id' => $this->_contactID);
121 $details = CRM_Utils_Token::getTokenDetails($params,
122 $returnProperties,
123 FALSE, TRUE, NULL,
124 $this->_mailing->getFlattenedTokens(),
125 get_class($this)
126 );
127 $details = $details[0][$this->_contactID];
128 $contactId = $this->_contactID;
129 }
130 else {
131 //get tokens that are not contact specific resolved
132 $params = array('contact_id' => 0);
133 $details = CRM_Utils_Token::getAnonymousTokenDetails($params,
134 $returnProperties,
135 TRUE, TRUE, NULL,
136 $this->_mailing->getFlattenedTokens(),
137 get_class($this)
138 );
139
140 $details = $details[0][0];
141 $contactId = 0;
142 }
143 $mime = &$this->_mailing->compose(NULL, NULL, NULL, $contactId,
144 $this->_mailing->from_email,
145 $this->_mailing->from_email,
146 TRUE, $details, $attachments
147 );
148
149 $title = NULL;
150 if (isset($this->_mailing->body_html) && empty($_GET['text'])) {
151 $header = 'Content-Type: text/html; charset=utf-8';
152 $content = $mime->getHTMLBody();
153 if (strpos($content, '<head>') === FALSE && strpos($content, '<title>') === FALSE) {
154 $title = '<head><title>' . $this->_mailing->subject . '</title></head>';
155 }
156 }
157 else {
158 $header = 'Content-Type: text/plain; charset=utf-8';
159 $content = $mime->getTXTBody();
160 }
161 CRM_Utils_System::setTitle($this->_mailing->subject);
162
163 if (CRM_Utils_Array::value('snippet', $_GET) === 'json') {
164 CRM_Core_Page_AJAX::returnJsonResponse($content);
165 }
166 if ($print) {
167 header($header);
168 print $title;
169 print $content;
170 CRM_Utils_System::civiExit();
171 }
172 else {
173 return $content;
174 }
175 }
176 }
177