@@ -556,7 +556,7 @@ public function fetch($items, $from, $to = null, $uid = IMAP::ST_UID) {
556
556
$ items = (array )$ items ;
557
557
$ itemList = $ this ->escapeList ($ items );
558
558
559
- $ this ->sendRequest (trim ( $ this ->getUIDKey ( $ uid) . ' FETCH ' ), [$ set , $ itemList ], $ tag );
559
+ $ this ->sendRequest ($ this ->buildUIDCommand ( " FETCH " , $ uid ), [$ set , $ itemList ], $ tag );
560
560
$ result = [];
561
561
$ tokens = null ; // define $tokens variable before first use
562
562
while (!$ this ->readLine ($ tokens , $ tag )) {
@@ -753,33 +753,20 @@ public function folders($reference = '', $folder = '*') {
753
753
* @throws RuntimeException
754
754
*/
755
755
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
-
767
756
$ 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 );
772
758
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 );
775
763
776
764
if ($ silent ) {
777
- return (bool )$ result ;
765
+ return (bool )$ response ;
778
766
}
779
767
780
- $ tokens = $ result ;
781
768
$ result = [];
782
- foreach ($ tokens as $ token ) {
769
+ foreach ($ response as $ token ) {
783
770
if ($ token [1 ] != 'FETCH ' || $ token [2 ][0 ] != 'FLAGS ' ) {
784
771
continue ;
785
772
}
@@ -826,11 +813,8 @@ public function appendMessage($folder, $message, $flags = null, $date = null) {
826
813
* @throws RuntimeException
827
814
*/
828
815
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 );
834
818
return $ this ->requestAndResponse ($ command , [$ set , $ this ->escapeString ($ folder )], true );
835
819
}
836
820
@@ -846,7 +830,7 @@ public function copyMessage($folder, $from, $to = null, $uid = IMAP::ST_UID) {
846
830
* @throws RuntimeException
847
831
*/
848
832
public function copyManyMessages ($ messages , $ folder , $ uid = IMAP ::ST_UID ) {
849
- $ command = trim ( $ this ->getUIDKey ( $ uid ). " COPY " );
833
+ $ command = $ this ->buildUIDCommand ( " COPY ", $ uid );
850
834
851
835
$ set = implode (', ' , $ messages );
852
836
$ tokens = [$ set , $ this ->escapeString ($ folder )];
@@ -867,11 +851,8 @@ public function copyManyMessages($messages, $folder, $uid = IMAP::ST_UID) {
867
851
* @throws RuntimeException
868
852
*/
869
853
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 );
875
856
876
857
return $ this ->requestAndResponse ($ command , [$ set , $ this ->escapeString ($ folder )], true );
877
858
}
@@ -887,7 +868,7 @@ public function moveMessage($folder, $from, $to = null, $uid = IMAP::ST_UID) {
887
868
* @throws RuntimeException
888
869
*/
889
870
public function moveManyMessages ($ messages , $ folder , $ uid = IMAP ::ST_UID ) {
890
- $ command = trim ( $ this ->getUIDKey ( $ uid ). " MOVE " );
871
+ $ command = $ this ->buildUIDCommand ( " MOVE ", $ uid );
891
872
892
873
$ set = implode (', ' , $ messages );
893
874
$ tokens = [$ set , $ this ->escapeString ($ folder )];
@@ -1048,8 +1029,8 @@ public function done() {
1048
1029
* @throws RuntimeException
1049
1030
*/
1050
1031
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 );
1053
1034
if (!$ response ) {
1054
1035
return $ response ;
1055
1036
}
@@ -1106,4 +1087,19 @@ public function enableDebug(){
1106
1087
public function disableDebug (){
1107
1088
$ this ->debug = false ;
1108
1089
}
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
+ }
1109
1105
}
0 commit comments