(NFC) Update CRM/Friend CRM/Grant CRM/Group CRM/Mailing to be up to date to a future...
[civicrm-core.git] / CRM / Mailing / MailStore / Maildir.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
28518c90
EM
34/**
35 * Class CRM_Mailing_MailStore_Maildir
36 */
6a488035
TO
37class CRM_Mailing_MailStore_Maildir extends CRM_Mailing_MailStore {
38
39 /**
fe482240 40 * Connect to the supplied dir and make sure the two mail dirs exist.
6a488035 41 *
90c8230e
TO
42 * @param string $dir
43 * Dir to operate upon.
6a488035 44 *
dd244018 45 * @return \CRM_Mailing_MailStore_Maildir
6a488035 46 */
00be9182 47 public function __construct($dir) {
6a488035
TO
48 $this->_dir = $dir;
49
be2fb01f 50 $this->_ignored = $this->maildir(implode(DIRECTORY_SEPARATOR, [
7e8c8317
SL
51 'CiviMail.ignored',
52 date('Y'),
53 date('m'),
54 date('d'),
55 ]));
be2fb01f 56 $this->_processed = $this->maildir(implode(DIRECTORY_SEPARATOR, [
7e8c8317
SL
57 'CiviMail.processed',
58 date('Y'),
59 date('m'),
60 date('d'),
61 ]));
6a488035
TO
62 }
63
64 /**
fe482240 65 * Return the next X messages from the mail store.
6a488035
TO
66 * FIXME: in CiviCRM 2.2 this always returns all the emails
67 *
90c8230e
TO
68 * @param int $count
69 * Number of messages to fetch FIXME: ignored in CiviCRM 2.2 (assumed to be 0, i.e., fetch all).
6a488035 70 *
a6c01b45
CW
71 * @return array
72 * array of ezcMail objects
6a488035 73 */
00be9182 74 public function fetchNext($count = 0) {
be2fb01f 75 $mails = [];
79d7553f 76 $parser = new ezcMailParser();
25606795 77 // set property text attachment as file CRM-5408
6a488035
TO
78 $parser->options->parseTextAttachmentsAsFiles = TRUE;
79
be2fb01f 80 foreach ([
7e8c8317
SL
81 'cur',
82 'new',
83 ] as $subdir) {
6a488035
TO
84 $dir = $this->_dir . DIRECTORY_SEPARATOR . $subdir;
85 foreach (scandir($dir) as $file) {
86 if ($file == '.' or $file == '..') {
87 continue;
88 }
89 $path = $dir . DIRECTORY_SEPARATOR . $file;
90
91 if ($this->_debug) {
92
93 print "retrieving message $path\n";
94
95 }
96
be2fb01f 97 $set = new ezcMailFileSet([$path]);
353ffa53 98 $single = $parser->parseMail($set);
6a488035
TO
99 $mails[$path] = $single[0];
100 }
101 }
102 return $mails;
103 }
104
105 /**
fe482240 106 * Fetch the specified message to the local ignore folder.
6a488035 107 *
90c8230e
TO
108 * @param int $file
109 * File location of the message to fetch.
6a488035 110 *
77b97be7 111 * @throws Exception
6a488035 112 */
00be9182 113 public function markIgnored($file) {
6a488035
TO
114 if ($this->_debug) {
115 print "moving $file to ignored folder\n";
116 }
117 $target = $this->_ignored . DIRECTORY_SEPARATOR . basename($file);
118 if (!rename($file, $target)) {
119 throw new Exception("Could not rename $file to $target");
120 }
121 }
122
123 /**
fe482240 124 * Fetch the specified message to the local processed folder.
6a488035 125 *
90c8230e
TO
126 * @param int $file
127 * File location of the message to fetch.
6a488035 128 *
77b97be7 129 * @throws Exception
6a488035 130 */
00be9182 131 public function markProcessed($file) {
6a488035
TO
132 if ($this->_debug) {
133 print "moving $file to processed folder\n";
134 }
135 $target = $this->_processed . DIRECTORY_SEPARATOR . basename($file);
136 if (!rename($file, $target)) {
137 throw new Exception("Could not rename $file to $target");
138 }
139 }
96025800 140
6a488035 141}