123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361 |
- <?php
- /* For licensing terms, see /license.txt */
- /**
- * Announcement Email
- *
- * @author Laurent Opprecht <laurent@opprecht.info> for the Univesity of Geneva
- * @author Julio Montoya <gugli100@gmail.com> Adding session support
- */
- class AnnouncementEmail
- {
- protected $course = null;
- protected $announcement = null;
- public $session_id = null;
- /**
- *
- * @param int|array $course
- * @param int|array $annoucement
- *
- * @return AnnouncementEmail
- */
- public static function create($course, $announcement)
- {
- return new self($course, $announcement);
- }
- /**
- * @param int $courseId
- * @param int $announcement
- */
- public function __construct($courseId, $announcement)
- {
- if (!empty($courseId)) {
- $course = api_get_course_info_by_id($courseId);
- } else {
- $course = api_get_course_info();
- }
- $this->course = $course;
- $this->session_id = api_get_session_id();
- if (is_numeric($announcement)) {
- $announcement = AnnouncementManager::get_by_id($course['real_id'], $announcement);
- }
- $this->announcement = $announcement;
- }
- /**
- * Course info
- *
- * @param string $key
- *
- * @return array
- */
- public function course($key = '')
- {
- $result = $key ? $this->course[$key] : $this->course;
- $result = $key == 'id' ? intval($result) : $result;
- return $result;
- }
- /**
- * Announcement info
- *
- * @param string $key
- * @return array
- */
- public function announcement($key = '')
- {
- $result = $key ? $this->announcement[$key] : $this->announcement;
- $result = $key == 'id' ? intval($result) : $result;
- return $result;
- }
- /**
- * Returns either all course users or all session users depending on whether
- * session is turned on or not
- *
- * @return array
- */
- public function all_users()
- {
- $course_code = $this->course('code');
- if (empty($this->session_id)) {
- $group_id = api_get_group_id();
- if (empty($group_id)) {
- $user_list = CourseManager::get_user_list_from_course_code($course_code);
- } else {
- $user_list = GroupManager::get_users($group_id);
- $new_user_list = array();
- foreach ($user_list as $user) {
- $new_user_list[] = array('user_id' => $user);
- }
- $user_list = $new_user_list;
- }
- } else {
- $user_list = CourseManager::get_user_list_from_course_code($course_code, $this->session_id);
- }
- return $user_list;
- }
- /**
- * Returns users and groups an announcement item has been sent to.
- *
- * @return array Array of users and groups to whom the element has been sent
- */
- public function sent_to_info()
- {
- $result = array();
- $result['groups'] = array();
- $result['users'] = array();
- $tbl_item_property = Database::get_course_table(TABLE_ITEM_PROPERTY);
- $tool = TOOL_ANNOUNCEMENT;
- $id = $this->announcement('id');
- $course_id = $this->course('real_id');
- $sessionCondition = api_get_session_condition($this->session_id);
- $sql = "SELECT to_group_id, to_user_id
- FROM $tbl_item_property
- WHERE
- c_id = $course_id AND
- tool = '$tool' AND
- ref = $id
- $sessionCondition";
- $rs = Database::query($sql);
- while ($row = Database::fetch_array($rs, 'ASSOC')) {
- // if to_group_id is null then it is sent to a specific user
- // if to_group_id = 0 then it is sent to everybody
- $group_id = $row['to_group_id'];
- if (!empty($group_id)) {
- $result['groups'][] = (int) $group_id;
- }
- // if to_user_id <> 0 then it is sent to a specific user
- $user_id = $row['to_user_id'];
- if (!empty($user_id)) {
- $result['users'][] = (int) $user_id;
- }
- }
- return $result;
- }
- /**
- * Returns the list of user info to which an announcement was sent.
- * This function returns a list of actual users even when recipient
- * are groups
- *
- * @return array
- */
- public function sent_to()
- {
- $sent_to = $this->sent_to_info();
- $users = $sent_to['users'];
- $users = $users ? $users : array();
- $groups = $sent_to['groups'];
- if ($users) {
- $users = UserManager::get_user_list_by_ids($users, true);
- }
- if (!empty($groups)) {
- $group_users = GroupManager::get_groups_users($groups);
- $group_users = UserManager::get_user_list_by_ids($group_users, true);
- if (!empty($group_users)) {
- $users = array_merge($users, $group_users);
- }
- }
- if (empty($users)) {
- $users = self::all_users();
- }
- //Clean users just in case
- $new_list_users = array();
- if (!empty($users)) {
- foreach ($users as $user) {
- $new_list_users[$user['user_id']] = array('user_id' => $user['user_id']);
- }
- }
- return $new_list_users;
- }
- /**
- * Sender info
- *
- * @param string $key
- *
- * @return array
- */
- public function sender($key = '', $userId = '')
- {
- $_user = api_get_user_info($userId);
- return $key ? $_user[$key] : $_user;
- }
- /**
- * Email subject
- *
- * @return string
- */
- public function subject()
- {
- $result = $this->course('title').' - '.$this->announcement('title');
- $result = stripslashes($result);
- return $result;
- }
- /**
- * Email message
- * @param int $receiverUserId
- *
- * @return string
- */
- public function message($receiverUserId)
- {
- $content = $this->announcement('content');
- $session_id = $this->session_id;
- $content = AnnouncementManager::parse_content(
- $receiverUserId,
- $content,
- $this->course('code'),
- $session_id
- );
- $user_email = $this->sender('mail');
- //$course_param = api_get_cidreq();
- // Build the link by hand because api_get_cidreq() doesn't accept course params
- $course_param = 'cidReq='.api_get_course_id().'&id_session='.$session_id.'&gidReq='.api_get_group_id();
- $course_name = $this->course('title');
- $result = "<div>$content</div>";
- // Adding attachment
- $attachment = $this->attachment();
- if (!empty($attachment)) {
- $result .= '<br />';
- $result .= Display::url(
- $attachment['filename'],
- api_get_path(WEB_CODE_PATH).'announcements/download.php?file='.basename($attachment['path']).'&'.$course_param
- ).'<br />';
- }
- $result .= '<hr />';
- $sender_name = api_get_person_name(
- $this->sender('firstName'),
- $this->sender('lastName'),
- PERSON_NAME_EMAIL_ADDRESS
- );
- $result .= '<a href="mailto:'.$user_email.'">'.$sender_name.'</a><br/>';
- $result .= '<a href="'.api_get_path(WEB_CODE_PATH).'announcements/announcements.php?'.$course_param.'">'.$course_name.'</a><br/>';
- return $result;
- }
- /**
- * Returns the one file that can be attached to an announcement.
- *
- * @return array
- */
- public function attachment()
- {
- $result = array();
- $tbl_announcement_attachment = Database::get_course_table(TABLE_ANNOUNCEMENT_ATTACHMENT);
- $id = $this->announcement('id');
- $course_id = $this->course('id');
- $sql = "SELECT * FROM $tbl_announcement_attachment WHERE c_id = $course_id AND announcement_id = $id ";
- $rs = Database::query($sql);
- $course_path = $this->course('directory');
- while ($row = Database::fetch_array($rs)) {
- $path = api_get_path(SYS_COURSE_PATH).$course_path.'/upload/announcements/'.$row['path'];
- $filename = $row['filename'];
- $result[] = array('path' => $path, 'filename' => $filename);
- }
- $result = $result ? reset($result) : array();
- return $result;
- }
- /**
- * Send emails to users.
- * @param bool $sendToUsersInSession
- * @param bool $sendToDrhUsers send a copy of the message to the DRH users
- * related to the main user
- */
- public function send($sendToUsersInSession = false, $sendToDrhUsers = false)
- {
- $sender = $this->sender();
- $subject = $this->subject();
- // Send email one by one to avoid antispam
- $users = $this->sent_to();
- foreach ($users as $user) {
- $message = $this->message($user['user_id']);
- MessageManager::send_message_simple(
- $user['user_id'],
- $subject,
- $message,
- $sender['user_id'],
- $sendToDrhUsers,
- true
- );
- }
- if ($sendToUsersInSession) {
- $sessionList = SessionManager::get_session_by_course($this->course['real_id']);
- if (!empty($sessionList)) {
- foreach ($sessionList as $sessionInfo) {
- $sessionId = $sessionInfo['id'];
- $message = $this->message(null, $sessionId);
- $userList = CourseManager::get_user_list_from_course_code(
- $this->course['code'],
- $sessionId
- );
- if (!empty($userList)) {
- foreach ($userList as $user) {
- MessageManager::send_message_simple(
- $user['user_id'],
- $subject,
- $message,
- $sender['user_id'],
- false,
- true
- );
- }
- }
- }
- }
- }
- $this->log_mail_sent();
- }
- /**
- * Store that emails where sent
- */
- public function log_mail_sent()
- {
- $id = $this->announcement('id');
- $course_id = $this->course('id');
- $tbl_announcement = Database::get_course_table(TABLE_ANNOUNCEMENT);
- $sql = "UPDATE $tbl_announcement SET email_sent=1
- WHERE c_id = $course_id AND id=$id AND session_id = {$this->session_id} ";
- Database::query($sql);
- }
- }
|