Skip to content

Commit 5008b12

Browse files
committed
classes simplified
1 parent ae26ff5 commit 5008b12

File tree

3 files changed

+36
-35
lines changed

3 files changed

+36
-35
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) princip
2626
- [Protocol::class](src/Connection/Protocols/Protocol.php)
2727
- [Query::class](src/Query/Query.php)
2828
- [WhereQuery::class](src/Query/WhereQuery.php)
29+
- [Message::class](src/Message.php)
2930

3031
### Breaking changes
3132
- All protocol methods which had a `boolean` `$uid` option no longer support a boolean. Use `IMAP::ST_UID` or `IMAP::NIL` instead. If you want to use an alternative to `UID` just use the string instead.

src/Connection/Protocols/ImapProtocol.php

+31-35
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,7 @@ public function fetch($items, $from, $to = null, $uid = IMAP::ST_UID) {
556556
$items = (array)$items;
557557
$itemList = $this->escapeList($items);
558558

559-
$this->sendRequest(trim($this->getUIDKey($uid) . ' FETCH'), [$set, $itemList], $tag);
559+
$this->sendRequest($this->buildUIDCommand("FETCH", $uid), [$set, $itemList], $tag);
560560
$result = [];
561561
$tokens = null; // define $tokens variable before first use
562562
while (!$this->readLine($tokens, $tag)) {
@@ -753,33 +753,20 @@ public function folders($reference = '', $folder = '*') {
753753
* @throws RuntimeException
754754
*/
755755
public function store(array $flags, $from, $to = null, $mode = null, $silent = true, $uid = IMAP::ST_UID, $item = null) {
756-
if ($item === null) {
757-
$item = 'FLAGS';
758-
}
759-
if ($mode == '+' || $mode == '-') {
760-
$item = $mode . $item;
761-
}
762-
763-
if ($silent) {
764-
$item .= '.SILENT';
765-
}
766-
767756
$flags = $this->escapeList($flags);
768-
$set = (int)$from;
769-
if ($to !== null) {
770-
$set .= ':' . ($to == INF ? '*' : (int)$to);
771-
}
757+
$set = $this->buildSet($from, $to);
772758

773-
$command = ($uid ? "UID " : "")."STORE";
774-
$result = $this->requestAndResponse($command, [$set, $item, $flags], $silent);
759+
$command = $this->buildUIDCommand("STORE", $uid);
760+
$item = ($mode == '-' ? "-" : "+").($item === null ? "FLAGS" : $item).($silent ? '.SILENT' : "");
761+
762+
$response = $this->requestAndResponse($command, [$set, $item, $flags], $silent);
775763

776764
if ($silent) {
777-
return (bool)$result;
765+
return (bool)$response;
778766
}
779767

780-
$tokens = $result;
781768
$result = [];
782-
foreach ($tokens as $token) {
769+
foreach ($response as $token) {
783770
if ($token[1] != 'FETCH' || $token[2][0] != 'FLAGS') {
784771
continue;
785772
}
@@ -826,11 +813,8 @@ public function appendMessage($folder, $message, $flags = null, $date = null) {
826813
* @throws RuntimeException
827814
*/
828815
public function copyMessage($folder, $from, $to = null, $uid = IMAP::ST_UID) {
829-
$set = (int)$from;
830-
if ($to !== null) {
831-
$set .= ':' . ($to == INF ? '*' : (int)$to);
832-
}
833-
$command = trim($this->getUIDKey($uid)." COPY");
816+
$set = $this->buildSet($from, $to);
817+
$command = $this->buildUIDCommand("COPY", $uid);
834818
return $this->requestAndResponse($command, [$set, $this->escapeString($folder)], true);
835819
}
836820

@@ -846,7 +830,7 @@ public function copyMessage($folder, $from, $to = null, $uid = IMAP::ST_UID) {
846830
* @throws RuntimeException
847831
*/
848832
public function copyManyMessages($messages, $folder, $uid = IMAP::ST_UID) {
849-
$command = trim($this->getUIDKey($uid)." COPY");
833+
$command = $this->buildUIDCommand("COPY", $uid);
850834

851835
$set = implode(',', $messages);
852836
$tokens = [$set, $this->escapeString($folder)];
@@ -867,11 +851,8 @@ public function copyManyMessages($messages, $folder, $uid = IMAP::ST_UID) {
867851
* @throws RuntimeException
868852
*/
869853
public function moveMessage($folder, $from, $to = null, $uid = IMAP::ST_UID) {
870-
$set = (int)$from;
871-
if ($to !== null) {
872-
$set .= ':' . ($to == INF ? '*' : (int)$to);
873-
}
874-
$command = trim($this->getUIDKey($uid)." MOVE");
854+
$set = $this->buildSet($from, $to);
855+
$command = $this->buildUIDCommand("MOVE", $uid);
875856

876857
return $this->requestAndResponse($command, [$set, $this->escapeString($folder)], true);
877858
}
@@ -887,7 +868,7 @@ public function moveMessage($folder, $from, $to = null, $uid = IMAP::ST_UID) {
887868
* @throws RuntimeException
888869
*/
889870
public function moveManyMessages($messages, $folder, $uid = IMAP::ST_UID) {
890-
$command = trim($this->getUIDKey($uid)." MOVE");
871+
$command = $this->buildUIDCommand("MOVE", $uid);
891872

892873
$set = implode(',', $messages);
893874
$tokens = [$set, $this->escapeString($folder)];
@@ -1048,8 +1029,8 @@ public function done() {
10481029
* @throws RuntimeException
10491030
*/
10501031
public function search(array $params, $uid = IMAP::ST_UID) {
1051-
$token = trim($this->getUIDKey($uid)." SEARCH");
1052-
$response = $this->requestAndResponse($token, $params);
1032+
$command = $this->buildUIDCommand("SEARCH", $uid);
1033+
$response = $this->requestAndResponse($command, $params);
10531034
if (!$response) {
10541035
return $response;
10551036
}
@@ -1106,4 +1087,19 @@ public function enableDebug(){
11061087
public function disableDebug(){
11071088
$this->debug = false;
11081089
}
1090+
1091+
/**
1092+
* Build a valid UID number set
1093+
* @param $from
1094+
* @param null $to
1095+
*
1096+
* @return int|string
1097+
*/
1098+
public function buildSet($from, $to = null) {
1099+
$set = (int)$from;
1100+
if ($to !== null) {
1101+
$set .= ':' . ($to == INF ? '*' : (int)$to);
1102+
}
1103+
return $set;
1104+
}
11091105
}

src/Connection/Protocols/Protocol.php

+4
Original file line numberDiff line numberDiff line change
@@ -238,4 +238,8 @@ public function getUIDKey($uid) {
238238
return "";
239239
}
240240

241+
public function buildUIDCommand($command, $uid) {
242+
return trim($this->getUIDKey($uid)." ".$command);
243+
}
244+
241245
}

0 commit comments

Comments
 (0)