Merge pull request #14786 from civicrm/5.16
[civicrm-core.git] / CRM / Activity / BAO / ICalendar.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
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
6b83d5bd 31 * @copyright CiviCRM LLC (c) 2004-2019
6a488035
TO
32 */
33
34/**
3819f101 35 * Generate ical invites for activities.
6a488035
TO
36 */
37class CRM_Activity_BAO_ICalendar {
38
39 /**
40 * @var object The activity for which we're generating ical.
41 */
42 protected $activity;
43
44 /**
fe482240 45 * Constructor.
6a488035 46 *
041ab3d1
TO
47 * @param object $act
48 * Reference to an activity object.
6a488035 49 *
fd31fa4c 50 * @return \CRM_Activity_BAO_ICalendar
6a488035 51 */
481a74f4 52 public function __construct(&$act) {
6a488035
TO
53 $this->activity = $act;
54 }
f813f78e 55
6a488035 56 /**
fe482240 57 * Add an ics attachment to the input array.
6a488035 58 *
041ab3d1
TO
59 * @param array $attachments
60 * Reference to array in same format returned from CRM_Core_BAO_File::getEntityFile().
61 * @param array $contacts
62 * Array of contacts (attendees).
6a488035 63 *
d60f50a8
CW
64 * @return string|null
65 * Array index of the added attachment in the $attachments array, else NULL.
6a488035 66 */
481a74f4 67 public function addAttachment(&$attachments, $contacts) {
6a488035 68 // Check preferences setting
aaffa79f 69 if (Civi::settings()->get('activity_assignee_notification_ics')) {
f3a87cf4 70 $this->icsfile = tempnam(CRM_Core_Config::singleton()->customFileUploadDir, 'ics');
481a74f4
TO
71 if ($this->icsfile !== FALSE) {
72 rename($this->icsfile, $this->icsfile . '.ics');
6a488035 73 $this->icsfile .= '.ics';
481a74f4 74 $icsFileName = basename($this->icsfile);
f813f78e 75
6a488035
TO
76 // get logged in user's primary email
77 // TODO: Is there a better way to do this?
78 $organizer = $this->getPrimaryEmail();
f813f78e 79
6a488035
TO
80 $template = CRM_Core_Smarty::singleton();
81 $template->assign('activity', $this->activity);
82 $template->assign('organizer', $organizer);
83 $template->assign('contacts', $contacts);
84 $template->assign('timezone', date_default_timezone_get());
85 $calendar = $template->fetch('CRM/Activity/Calendar/ICal.tpl');
481a74f4
TO
86 if (file_put_contents($this->icsfile, $calendar) !== FALSE) {
87 if (empty($attachments)) {
96f94695 88 $attachments = [];
6a488035 89 }
96f94695 90 $attachments['activity_ics'] = [
6a488035
TO
91 'mime_type' => 'text/calendar',
92 'fileName' => $icsFileName,
93 'cleanName' => $icsFileName,
94 'fullPath' => $this->icsfile,
96f94695 95 ];
6a488035
TO
96 return 'activity_ics';
97 }
98 }
99 }
e60f24eb 100 return NULL;
6a488035 101 }
f813f78e 102
d60f50a8 103 /**
fe482240 104 * Remove temp file.
d60f50a8 105 */
00be9182 106 public function cleanup() {
96f94695 107 if (!empty($this->icsfile)) {
481a74f4 108 @unlink($this->icsfile);
6a488035
TO
109 }
110 }
f813f78e 111
ffd93213 112 /**
7808aae6 113 * @todo Is there a better way to do this?
ffd93213
EM
114 * @return string
115 */
6a488035 116 private function getPrimaryEmail() {
3bdcd4ec 117 $uid = CRM_Core_Session::getLoggedInContactID();
6a488035 118 $primary = '';
481a74f4
TO
119 $emails = CRM_Core_BAO_Email::allEmails($uid);
120 foreach ($emails as $eid => $e) {
121 if ($e['is_primary']) {
122 if ($e['email']) {
6a488035
TO
123 $primary = $e['email'];
124 break;
125 }
126 }
f813f78e 127
481a74f4 128 if (count($emails) == 1) {
6a488035
TO
129 $primary = $e['email'];
130 break;
131 }
132 }
133 return $primary;
134 }
96025800 135
6a488035 136}