Compare commits

..

No commits in common. "master" and "1.0.2" have entirely different histories.

56 changed files with 1188 additions and 3560 deletions

View file

@ -1,23 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.5/phpunit.xsd"
backupGlobals="false"
colors="true"
bootstrap="vendor/autoload.php">
<php>
<ini name="error_reporting" value="-1" />
</php>
<testsuites>
<testsuite name="Project Test Suite">
<directory>tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./src/</directory>
</whitelist>
</filter>
</phpunit>

15
.editorconfig Normal file
View file

@ -0,0 +1,15 @@
; This file is for unifying the coding style for different editors and IDEs.
; More information at http://editorconfig.org
root = true
[*]
charset = utf-8
indent_size = 4
indent_style = space
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
[*.md]
trim_trailing_whitespace = false

6
.gitignore vendored
View file

@ -1,5 +1,5 @@
/vendor /vendor
.phpintel/
coverage.clover coverage.clover
.env build/
.php_cs.cache index.php
build

View file

@ -1,39 +0,0 @@
<?php
$fileHeaderComment = <<<COMMENT
This file is part of the Imap PHP package.
(c) Clivern <hello@clivern.com>
COMMENT;
$finder = PhpCsFixer\Finder::create()
->in(__DIR__)
->exclude('var')
;
return PhpCsFixer\Config::create()
->setIndent(" ")
->setLineEnding("\n")
->setRiskyAllowed(true)
->setRules([
'@PSR2' => true,
'@Symfony' => true,
'@Symfony:risky' => true,
'array_syntax' => ['syntax' => 'short'],
'header_comment' => ['header' => $fileHeaderComment, 'separate' => 'both'],
'linebreak_after_opening_tag' => true,
'mb_str_functions' => true,
'no_php4_constructor' => true,
'no_unreachable_default_argument_value' => true,
'no_useless_else' => true,
'no_useless_return' => true,
'ordered_imports' => true,
'php_unit_strict' => true,
'phpdoc_order' => true,
'semicolon_after_instruction' => true,
'strict_comparison' => true,
'strict_param' => true,
'phpdoc_add_missing_param_annotation' => true,
'ordered_class_elements'=> true,
'phpdoc_types_order' => true,
'logical_operators' => true,
])
->setFinder($finder)
->setCacheFile(__DIR__.'/.php_cs.cache')
;

View file

@ -1,12 +1,10 @@
language: php language: php
dist: precise
php: php:
- 5.6 - 5.6
- 7.0 - 7.0
- 7.1 - 7.1
- 7.2
- 7.3
- 7.4
## Cache composer ## Cache composer
cache: cache:
@ -18,4 +16,4 @@ before_script:
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-dist - travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-dist
script: script:
- make ci - vendor/bin/phpunit --bootstrap vendor/autoload.php --coverage-text --coverage-clover=coverage.clover

View file

@ -1,76 +0,0 @@
# Contributor Covenant Code of Conduct
## Our Pledge
In the interest of fostering an open and welcoming environment, we as
contributors and maintainers pledge to making participation in our project and
our community a harassment-free experience for everyone, regardless of age, body
size, disability, ethnicity, sex characteristics, gender identity and expression,
level of experience, education, socio-economic status, nationality, personal
appearance, race, religion, or sexual identity and orientation.
## Our Standards
Examples of behavior that contributes to creating a positive environment
include:
* Using welcoming and inclusive language
* Being respectful of differing viewpoints and experiences
* Gracefully accepting constructive criticism
* Focusing on what is best for the community
* Showing empathy towards other community members
Examples of unacceptable behavior by participants include:
* The use of sexualized language or imagery and unwelcome sexual attention or
advances
* Trolling, insulting/derogatory comments, and personal or political attacks
* Public or private harassment
* Publishing others' private information, such as a physical or electronic
address, without explicit permission
* Other conduct which could reasonably be considered inappropriate in a
professional setting
## Our Responsibilities
Project maintainers are responsible for clarifying the standards of acceptable
behavior and are expected to take appropriate and fair corrective action in
response to any instances of unacceptable behavior.
Project maintainers have the right and responsibility to remove, edit, or
reject comments, commits, code, wiki edits, issues, and other contributions
that are not aligned to this Code of Conduct, or to ban temporarily or
permanently any contributor for other behaviors that they deem inappropriate,
threatening, offensive, or harmful.
## Scope
This Code of Conduct applies both within project spaces and in public spaces
when an individual is representing the project or its community. Examples of
representing a project or community include using an official project e-mail
address, posting via an official social media account, or acting as an appointed
representative at an online or offline event. Representation of a project may be
further defined and clarified by project maintainers.
## Enforcement
Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported by contacting the project team at hello@clivern.com. All
complaints will be reviewed and investigated and will result in a response that
is deemed necessary and appropriate to the circumstances. The project team is
obligated to maintain confidentiality with regard to the reporter of an incident.
Further details of specific enforcement policies may be posted separately.
Project maintainers who do not follow or enforce the Code of Conduct in good
faith may face temporary or permanent repercussions as determined by other
members of the project's leadership.
## Attribution
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
[homepage]: https://www.contributor-covenant.org
For answers to common questions about this code of conduct, see
https://www.contributor-covenant.org/faq

View file

@ -1,13 +0,0 @@
## Contributing
- With issues:
- Use the search tool before opening a new issue.
- Please provide source code and commit sha if you found a bug.
- Review existing issues and provide feedback or react to them.
- With pull requests:
- Open your pull request against `master`
- Your pull request should have no more than two commits, if not you should squash them.
- It should pass all tests in the available continuous integrations systems such as TravisCI.
- You should add/modify tests to cover your proposed code changes.
- If your pull request contains a new feature, please document it on the README.

View file

@ -1,6 +1,6 @@
MIT License MIT License
Copyright (c) 2019 Cliven Copyright (c) 2017 A. F
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal

View file

@ -1,57 +0,0 @@
COMPOSER ?= composer
PHPUNIT_OPTS =
composer:
$(COMPOSER) install
fix:
./vendor/bin/php-cs-fixer fix
fix-diff:
./vendor/bin/php-cs-fixer fix --diff --dry-run -v
test: composer
vendor/bin/phpunit -c .
lint: lint-php phpcs php-cs lint-composer lint-eol
@echo All good.
lint-eol:
@echo "\n==> Validating unix style line endings of files:files"
@! grep -lIUr --color '^M' src/ composer.json composer.lock || ( echo '[ERROR] Above files have CRLF line endings' && exit 1 )
@echo All files have valid line endings
lint-composer:
@echo "\n==> Validating composer.json and composer.lock:"
$(COMPOSER) validate --strict
lint-php:
@echo "\n==> Validating all php files:"
@find src tests -type f -name \*.php | while read file; do php -l "$$file" || exit 1; done
phpcs:
vendor/bin/phpcs
php-cs:
vendor/bin/php-cs-fixer fix --diff --dry-run -v
coverage: composer
vendor/bin/phpunit -c .
ci: composer lint test
@echo "All quality checks passed"
.PHONY: test composer coverage phpcs php-cs lint lint-php ci

View file

@ -2,7 +2,7 @@ Imap
==== ====
:mailbox_with_mail: Access Mailbox Using PHP IMAP. :mailbox_with_mail: Access Mailbox Using PHP IMAP.
*Current Version: 1.0.6* *Current Version: 1.0.2*
[![Build Status](https://travis-ci.org/Clivern/Imap.svg?branch=master)](https://travis-ci.org/Clivern/Imap) [![Build Status](https://travis-ci.org/Clivern/Imap.svg?branch=master)](https://travis-ci.org/Clivern/Imap)
@ -265,30 +265,9 @@ Misc
Changelog Changelog
--------- ---------
Version 1.0.6:
```
Fix Class Name.
```
Version 1.0.5:
```
Enhance code style.
Automate code fixes and linting.
```
Version 1.0.4:
```
Fix for plain text messages.
```
Version 1.0.3:
```
Fix Attachment Object.
```
Version 1.0.2: Version 1.0.2:
``` ```
Message delete & undelete actions added. Message delete & undelete actions added
``` ```
Version 1.0.1: Version 1.0.1:
@ -304,6 +283,6 @@ Initial Release.
Acknowledgements Acknowledgements
---------------- ----------------
© 2019, Clivern. Released under the [MIT License](http://www.opensource.org/licenses/mit-license.php). © 2017, Clivern. Released under the [MIT License](http://www.opensource.org/licenses/mit-license.php).
**Imap** is authored and maintained by [@clivern](http://github.com/clivern). **Imap** is authored and maintained by [@clivern](http://github.com/clivern).

View file

@ -1,9 +1,10 @@
{ {
"name": "deblan/clivern-imap", "name": "clivern/imap",
"type": "library", "type": "library",
"description": "Access Mailbox Using PHP IMAP", "description": "Access Mailbox Using PHP IMAP",
"keywords": ["clivern", "imap"], "keywords": ["clivern", "imap"],
"license": "MIT", "license": "MIT",
"type": "project",
"homepage": "https://github.com/clivern/imap", "homepage": "https://github.com/clivern/imap",
"authors": [ "authors": [
{ {
@ -16,9 +17,7 @@
"php": ">=5.6.4" "php": ">=5.6.4"
}, },
"require-dev": { "require-dev": {
"phpunit/phpunit": "5.7.27", "phpunit/phpunit": "~5.7"
"friendsofphp/php-cs-fixer": "2.16.1",
"squizlabs/php_codesniffer": "3.5.4"
}, },
"autoload": { "autoload": {
"psr-4": { "psr-4": {
@ -33,4 +32,4 @@
"scripts": { "scripts": {
"test": "phpunit" "test": "phpunit"
} }
} }

2349
composer.lock generated

File diff suppressed because it is too large Load diff

View file

@ -1,7 +0,0 @@
<?xml version="1.0"?>
<ruleset name="ImapCodingStandard">
<description>Imap coding standard.</description>
<file>src</file>
<file>tests</file>
<rule ref="PSR2" />
</ruleset>

View file

@ -1,5 +0,0 @@
{
"extends": [
"config:base"
]
}

View file

@ -1,8 +1,6 @@
<?php <?php
/**
/* * @author clivern <hello@clivern.com>
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
*/ */
namespace Clivern\Imap\Core; namespace Clivern\Imap\Core;
@ -10,17 +8,20 @@ namespace Clivern\Imap\Core;
use Clivern\Imap\Core\Exception\AuthenticationFailedException; use Clivern\Imap\Core\Exception\AuthenticationFailedException;
/** /**
* Connection Class. * Connection Class
*
* @package Clivern\Imap\Core
*/ */
class Connection class Connection
{ {
/** /**
* @var string * @var string
*/ */
protected $server; protected $server;
/** /**
* @var int * @var integer
*/ */
protected $port; protected $port;
@ -60,7 +61,7 @@ class Connection
protected $timeout; protected $timeout;
/** /**
* Class Constructor. * Class Constructor
* *
* @param string $server * @param string $server
* @param string $port * @param string $port
@ -68,8 +69,9 @@ class Connection
* @param string $password * @param string $password
* @param string $flag * @param string $flag
* @param string $folder * @param string $folder
* @return void
*/ */
public function __construct($server, $port, $email, $password, $flag = '/ssl', $folder = 'INBOX') public function __construct($server, $port, $email, $password, $flag = "/ssl", $folder = "INBOX")
{ {
$this->server = $server; $this->server = $server;
$this->port = $port; $this->port = $port;
@ -80,59 +82,55 @@ class Connection
} }
/** /**
* Connect to IMAP Email. * Connect to IMAP Email
*
* @throws AuthenticationFailedException
* *
* @return Connection * @return Connection
* @throws AuthenticationFailedException
*/ */
public function connect() public function connect()
{ {
try { try {
$this->stream = imap_open( $this->stream = imap_open("{" . $this->server . ":" . $this->port . $this->flag . "}" . $this->folder, $this->email, $this->password);
'{'.$this->server.':'.$this->port.$this->flag.'}'.$this->folder,
$this->email,
$this->password
);
} catch (\Exception $e) { } catch (\Exception $e) {
throw new AuthenticationFailedException('Error! Connecting to Imap Email.'); throw new AuthenticationFailedException("Error! Connecting to Imap Email.");
} }
return $this; return $this;
} }
public function reconnect($folder = 'INBOX') public function reconnect($folder = "INBOX")
{ {
try { try {
imap_reopen($this->stream, '{'.$this->server.':'.$this->port.$this->flag.'}'.$folder); imap_reopen($this->stream, "{" . $this->server . ":" . $this->port . $this->flag . "}" . $folder);
} catch (\Exception $e) { } catch (\Exception $e) {
throw new AuthenticationFailedException('Error! Connecting to Imap Email.'); throw new AuthenticationFailedException("Error! Connecting to Imap Email.");
} }
} }
public function survive($folder = 'INBOX') public function survive($folder = "INBOX")
{ {
if (!$this->ping() || ($this->folder !== $folder)) { if( !$this->ping() || ($this->folder != $folder) ) {
$this->reconnect($folder); $this->reconnect($folder);
} }
} }
/** /**
* Set Timeout. * Set Timeout
* *
* @param string $timeout_type it may be IMAP_OPENTIMEOUT, IMAP_READTIMEOUT, IMAP_WRITETIMEOUT, or IMAP_CLOSETIMEOUT * @param string $timeout_type it may be IMAP_OPENTIMEOUT, IMAP_READTIMEOUT, IMAP_WRITETIMEOUT, or IMAP_CLOSETIMEOUT
* @param int $timeout time in seconds or -1 * @param integer $timeout time in seconds or -1
* @return void
*/ */
public function setTimeout($timeout_type, $timeout) public function setTimeout($timeout_type, $timeout)
{ {
$this->timeout_type = $timeout_type; $this->timeout_type = $timeout_type;
$this->timeout = $timeout; $this->timeout = $timeout;
return (bool) imap_timeout($timeout_type, $timeout); return (boolean) imap_timeout($timeout_type, $timeout);
} }
/** /**
* Get Stream. * Get Stream
* *
* @return mixed * @return mixed
*/ */
@ -142,7 +140,7 @@ class Connection
} }
/** /**
* Get Server. * Get Server
* *
* @return string * @return string
*/ */
@ -152,20 +150,19 @@ class Connection
} }
/** /**
* Check Connection. * Check Connection
* *
* @return bool * @return boolean
*/ */
public function checkConnection() public function checkConnection()
{ {
return null !== $this->stream && imap_ping($this->stream); return (!is_null($this->stream) && imap_ping($this->stream));
} }
/** /**
* Get Quota. * Get Quota
*
* @param string $folder
* *
* @param string $folder
* @return array * @return array
*/ */
public function getQuota($folder = 'INBOX') public function getQuota($folder = 'INBOX')
@ -174,21 +171,20 @@ class Connection
return [ return [
'usage' => (isset($data['usage'])) ? $data['usage'] : false, 'usage' => (isset($data['usage'])) ? $data['usage'] : false,
'limit' => (isset($data['limit'])) ? $data['limit'] : false, 'limit' => (isset($data['limit'])) ? $data['limit'] : false
]; ];
} }
/** /**
* Get Status. * Get Status
*
* @param string $folder
* @param string $flag
* *
* @param string $folder
* @param string $flag
* @return array * @return array
*/ */
public function getStatus($folder = 'INBOX', $flag = SA_ALL) public function getStatus($folder = 'INBOX', $flag = SA_ALL)
{ {
$data = imap_status($this->stream, '{'.$this->server.'}'.$folder, $flag); $data = imap_status($this->stream, "{" . $this->server . "}" . $folder, $flag);
return [ return [
'flags' => (isset($data->flags)) ? $data->flags : false, 'flags' => (isset($data->flags)) ? $data->flags : false,
@ -196,12 +192,12 @@ class Connection
'recent' => (isset($data->recent)) ? $data->recent : false, 'recent' => (isset($data->recent)) ? $data->recent : false,
'unseen' => (isset($data->unseen)) ? $data->unseen : false, 'unseen' => (isset($data->unseen)) ? $data->unseen : false,
'uidnext' => (isset($data->uidnext)) ? $data->uidnext : false, 'uidnext' => (isset($data->uidnext)) ? $data->uidnext : false,
'uidvalidity' => (isset($data->uidvalidity)) ? $data->uidvalidity : false, 'uidvalidity' => (isset($data->uidvalidity)) ? $data->uidvalidity : false
]; ];
} }
/** /**
* Check MailBox Data. * Check MailBox Data
* *
* @return array * @return array
*/ */
@ -214,22 +210,22 @@ class Connection
'driver' => (isset($data->Driver)) ? $data->Driver : false, 'driver' => (isset($data->Driver)) ? $data->Driver : false,
'mailbox' => (isset($data->Mailbox)) ? $data->Mailbox : false, 'mailbox' => (isset($data->Mailbox)) ? $data->Mailbox : false,
'nmsgs' => (isset($data->Nmsgs)) ? $data->Nmsgs : false, 'nmsgs' => (isset($data->Nmsgs)) ? $data->Nmsgs : false,
'recent' => (isset($data->Recent)) ? $data->Recent : false, 'recent' => (isset($data->Recent)) ? $data->Recent : false
]; ];
} }
/** /**
* Ping Connection. * Ping Connection
* *
* @return bool * @return boolean
*/ */
public function ping() public function ping()
{ {
return (bool) imap_ping($this->stream); return (boolean) imap_ping($this->stream);
} }
/** /**
* Get Errors. * Get Errors
* *
* @return array * @return array
*/ */
@ -237,11 +233,11 @@ class Connection
{ {
$errors = imap_errors(); $errors = imap_errors();
return (\is_array($errors)) ? $errors : []; return (is_array($errors)) ? $errors : [];
} }
/** /**
* Get Alerts. * Get Alerts
* *
* @return array * @return array
*/ */
@ -249,11 +245,11 @@ class Connection
{ {
$alerts = imap_alerts(); $alerts = imap_alerts();
return (\is_array($alerts)) ? $alerts : []; return (is_array($alerts)) ? $alerts : [];
} }
/** /**
* Get Last Error. * Get Last Error
* *
* @return string * @return string
*/ */
@ -265,24 +261,22 @@ class Connection
} }
/** /**
* Disconnect. * Disconnect
* *
* @param int $flag * @param integer $flag
* * @return boolean
* @return bool
*/ */
public function disconnect($flag = \CL_EXPUNGE) public function disconnect($flag = \CL_EXPUNGE)
{ {
if (null !== $this->stream && imap_ping($this->stream)) { if( !is_null($this->stream) && imap_ping($this->stream) ){
if (imap_close($this->stream, $flag)) { if( imap_close($this->stream, $flag) ){
$this->stream = null; $this->stream = null;
return true; return true;
}else{
return false;
} }
return false;
} }
return false; return false;
} }
} }

View file

@ -1,24 +1,25 @@
<?php <?php
/**
/* * @author clivern <hello@clivern.com>
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
*/ */
namespace Clivern\Imap\Core\Exception; namespace Clivern\Imap\Core\Exception;
/** /**
* Connection Error Class. * Connection Error Class
*
* @package Clivern\Imap\Core\Exception
*/ */
class AuthenticationFailedException extends \Exception class AuthenticationFailedException extends \Exception
{ {
/** /**
* Class Constructor. * Class Constructor
* *
* @param string $error * @param string $error
*/ */
public function __construct($error = null) public function __construct($error = null)
{ {
parent::__construct(sprintf('Authentication failed with error: %s', $error)); parent::__construct(sprintf("Authentication failed with error: %s", $error));
} }
} }

View file

@ -1,24 +1,25 @@
<?php <?php
/**
/* * @author clivern <hello@clivern.com>
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
*/ */
namespace Clivern\Imap\Core\Exception; namespace Clivern\Imap\Core\Exception;
/** /**
* Folder Not Exist Error Class. * Folder Not Exist Error Class
*
* @package Clivern\Imap\Core\Exception
*/ */
class FolderNotExistException extends \Exception class FolderNotExistException extends \Exception
{ {
/** /**
* Class Constructor. * Class Constructor
* *
* @param string $folder * @param string $folder
*/ */
public function __construct($folder = null) public function __construct($folder = null)
{ {
parent::__construct(sprintf('Mailbox folder not exist: %s', $folder)); parent::__construct(sprintf("Mailbox folder not exist: %s", $folder));
} }
} }

View file

@ -1,24 +1,25 @@
<?php <?php
/**
/* * @author clivern <hello@clivern.com>
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
*/ */
namespace Clivern\Imap\Core\Exception; namespace Clivern\Imap\Core\Exception;
/** /**
* Connection Error Class. * Connection Error Class
*
* @package Clivern\Imap\Core\Exception
*/ */
class MessageDeleteException extends \Exception class MessageDeleteException extends \Exception
{ {
/** /**
* Class Constructor. * Class Constructor
* *
* @param int $message_number * @param integer $message_number
*/ */
public function __construct($message_number) public function __construct($message_number)
{ {
parent::__construct(sprintf('Message %s cannot be deleted', $message_number)); parent::__construct(sprintf('Message %s cannot be deleted', $message_number));
} }
} }

View file

@ -1,25 +1,26 @@
<?php <?php
/**
/* * @author clivern <hello@clivern.com>
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
*/ */
namespace Clivern\Imap\Core\Exception; namespace Clivern\Imap\Core\Exception;
/** /**
* Connection Error Class. * Connection Error Class
*
* @package Clivern\Imap\Core\Exception
*/ */
class MessageDoesNotExistException extends \Exception class MessageDoesNotExistException extends \Exception
{ {
/** /**
* Class Constructor. * Class Constructor
* *
* @param int $number * @param integer $number
* @param string $error * @param string $error
*/ */
public function __construct($number, $error) public function __construct($number, $error)
{ {
parent::__construct(sprintf('Message %s does not exist: %s', $number, $error)); parent::__construct(sprintf('Message %s does not exist: %s', $number, $error));
} }
} }

View file

@ -1,25 +1,26 @@
<?php <?php
/**
/* * @author clivern <hello@clivern.com>
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
*/ */
namespace Clivern\Imap\Core\Exception; namespace Clivern\Imap\Core\Exception;
/** /**
* Connection Error Class. * Connection Error Class
*
* @package Clivern\Imap\Core\Exception
*/ */
class MessageMoveException extends \Exception class MessageMoveException extends \Exception
{ {
/** /**
* Class Constructor. * Class Constructor
* *
* @param int $message_number * @param integer $message_number
* @param string $mailbox * @param string $mailbox
*/ */
public function __construct($message_number, $mailbox) public function __construct($message_number, $mailbox)
{ {
parent::__construct(sprintf('Message %s cannot be moved to %s', $message_number, $mailbox)); parent::__construct(sprintf('Message %s cannot be moved to %s', $message_number, $mailbox));
} }
} }

View file

@ -1,19 +1,20 @@
<?php <?php
/**
/* * @author clivern <hello@clivern.com>
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
*/ */
namespace Clivern\Imap\Core; namespace Clivern\Imap\Core;
use Clivern\Imap\Core\Connection;
use Clivern\Imap\Core\Message\Header;
use Clivern\Imap\Core\Message\Action; use Clivern\Imap\Core\Message\Action;
use Clivern\Imap\Core\Message\Attachment; use Clivern\Imap\Core\Message\Attachment;
use Clivern\Imap\Core\Message\Body; use Clivern\Imap\Core\Message\Body;
use Clivern\Imap\Core\Message\Header;
/** /**
* Message Class. * Message Class
*
* @package Clivern\Imap\Core
*/ */
class Message class Message
{ {
@ -43,17 +44,19 @@ class Message
protected $body; protected $body;
/** /**
* @var int * @var integer
*/ */
protected $uid; protected $uid;
/** /**
* @var int * @var integer
*/ */
protected $msg_number; protected $msg_number;
/** /**
* Message Constructor. * Message Constructor
*
* @param Connection $connection
*/ */
public function __construct(Connection $connection, Header $header, Action $action, Body $body) public function __construct(Connection $connection, Header $header, Action $action, Body $body)
{ {
@ -64,11 +67,9 @@ class Message
} }
/** /**
* Set Message Number. * Set Message Number
*
* @param int $id
* @param mixed $msg_number
* *
* @param integer $id
* @return Message * @return Message
*/ */
public function setMsgNo($msg_number) public function setMsgNo($msg_number)
@ -79,9 +80,9 @@ class Message
} }
/** /**
* Get Message Number. * Get Message Number
* *
* @return int * @return integer
*/ */
public function getMsgNo() public function getMsgNo()
{ {
@ -89,10 +90,9 @@ class Message
} }
/** /**
* Set UID. * Set UID
*
* @param int $uid
* *
* @param integer $uid
* @return Message * @return Message
*/ */
public function setUid($uid) public function setUid($uid)
@ -103,9 +103,9 @@ class Message
} }
/** /**
* Get UID. * Get UID
* *
* @return int * @return integer
*/ */
public function getUid() public function getUid()
{ {
@ -113,17 +113,17 @@ class Message
} }
/** /**
* Config Message Number & UID. * Config Message Number & UID
* *
* @return Message * @return Message
*/ */
public function config() public function config()
{ {
if (!$this->msg_number && $this->uid) { if( !$this->msg_number && $this->uid ){
$this->msg_number = imap_msgno($this->connection->getStream(), $this->uid); $this->msg_number = imap_msgno($this->connection->getStream(), $this->uid);
} }
if (!$this->uid && $this->msg_number) { if( !$this->uid && $this->msg_number ){
$this->uid = imap_uid($this->connection->getStream(), $this->msg_number); $this->uid = imap_uid($this->connection->getStream(), $this->msg_number);
} }
@ -131,7 +131,7 @@ class Message
} }
/** /**
* Get Message Header Object. * Get Message Header Object
* *
* @return Header * @return Header
*/ */
@ -141,7 +141,7 @@ class Message
} }
/** /**
* Get Message Action Object. * Get Message Action Object
* *
* @return Action * @return Action
*/ */
@ -151,7 +151,7 @@ class Message
} }
/** /**
* Get Message Body Object. * Get Message Body Object
* *
* @return Body * @return Body
*/ */
@ -161,13 +161,13 @@ class Message
} }
/** /**
* Get Message Attachments. * Get Message Attachments
* *
* @return array * @return array
*/ */
public function attachments() public function attachments()
{ {
if (null !== $this->attachments) { if( !is_null($this->attachments) ){
return $this->attachments; return $this->attachments;
} }
@ -180,22 +180,21 @@ class Message
$i = 0; $i = 0;
foreach ($structure->parts as $index => $part) { foreach ($structure->parts as $index => $part) {
if (!$part->ifdisposition) { if (!$part->ifdisposition){
continue; continue;
} }
$this->attachments[$i] = new Attachment($this->connection); $this->attachments[$i] = new Attachment($this->connection);
$this->attachments[$i]->config($this->getMsgNo(), $this->getUid(), $index + 1, $part); $this->attachments[$i]->config($this->getMsgNo(), $this->getUid(), $index + 1, $part);
++$i; $i += 1;
} }
return $this->attachments; return $this->attachments;
} }
/** /**
* Get Body. * Get Body
*
* @param int $options
* *
* @param integer $options
* @return string * @return string
*/ */
public function getBody($options = 0) public function getBody($options = 0)
@ -204,4 +203,4 @@ class Message
return $body; return $body;
} }
} }

View file

@ -1,8 +1,6 @@
<?php <?php
/**
/* * @author clivern <hello@clivern.com>
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
*/ */
namespace Clivern\Imap\Core\Message; namespace Clivern\Imap\Core\Message;
@ -10,27 +8,33 @@ namespace Clivern\Imap\Core\Message;
use Clivern\Imap\Core\Connection; use Clivern\Imap\Core\Connection;
/** /**
* Action Class. * Action Class
*
* @package Clivern\Imap\Core\Message
*/ */
class Action class Action
{ {
/** /**
* @var Connection * @var Connection
*/ */
protected $connection; protected $connection;
/** /**
* @var int * @var integer
*/ */
protected $message_number; protected $message_number;
/** /**
* @var int * @var integer
*/ */
protected $message_uid; protected $message_uid;
/** /**
* Class Constructor. * Class Constructor
*
* @param Connection $connection
*/ */
public function __construct(Connection $connection) public function __construct(Connection $connection)
{ {
@ -38,11 +42,10 @@ class Action
} }
/** /**
* Config Message. * Config Message
*
* @param int $message_number
* @param int $message_uid
* *
* @param integer $message_number
* @param integer $message_uid
* @return Action * @return Action
*/ */
public function config($message_number, $message_uid) public function config($message_number, $message_uid)
@ -54,22 +57,22 @@ class Action
} }
/** /**
* Delete Message. * Delete Message
* *
* @return bool * @return boolean
*/ */
public function delete() public function delete()
{ {
return (bool) imap_delete($this->connection->getStream(), $this->message_uid, \FT_UID); return (boolean) imap_delete($this->connection->getStream(), $this->message_uid, \FT_UID);
} }
/** /**
* Undelete Message. * Undelete Message
* *
* @return bool * @return boolean
*/ */
public function undelete() public function undelete()
{ {
return (bool) imap_undelete($this->connection->getStream(), $this->message_uid, \FT_UID); return (boolean) imap_undelete($this->connection->getStream(), $this->message_uid, \FT_UID);
} }
} }

View file

@ -1,8 +1,6 @@
<?php <?php
/**
/* * @author clivern <hello@clivern.com>
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
*/ */
namespace Clivern\Imap\Core\Message; namespace Clivern\Imap\Core\Message;
@ -10,22 +8,25 @@ namespace Clivern\Imap\Core\Message;
use Clivern\Imap\Core\Connection; use Clivern\Imap\Core\Connection;
/** /**
* Attachment Class. * Attachment Class
*
* @package Clivern\Imap\Core\Message
*/ */
class Attachment class Attachment
{ {
/** /**
* @var Connection * @var Connection
*/ */
protected $connection; protected $connection;
/** /**
* @var int * @var integer
*/ */
protected $message_number; protected $message_number;
/** /**
* @var int * @var integer
*/ */
protected $message_uid; protected $message_uid;
@ -35,12 +36,15 @@ class Attachment
protected $attachment; protected $attachment;
/** /**
* @var object * @var Object
*/ */
protected $part; protected $part;
/** /**
* Class Constructor. * Class Constructor
*
* @param Connection $connection
*/ */
public function __construct(Connection $connection) public function __construct(Connection $connection)
{ {
@ -48,13 +52,12 @@ class Attachment
} }
/** /**
* Config Attachment. * Config Attachment
* *
* @param int $message_number * @param integer $message_number
* @param int $message_uid * @param integer $message_uid
* @param int $attachment_id * @param integer $attachment_id
* @param object $part * @param object $part
*
* @return Attachment * @return Attachment
*/ */
public function config($message_number, $message_uid, $attachment_id, $part) public function config($message_number, $message_uid, $attachment_id, $part)
@ -70,11 +73,10 @@ class Attachment
} }
/** /**
* Get Attachment Property. * Get Attachment Property
*
* @param string $key
* @param bool $default
* *
* @param string $key
* @param boolean $default
* @return mixed * @return mixed
*/ */
public function get($key, $default = false) public function get($key, $default = false)
@ -83,7 +85,7 @@ class Attachment
} }
/** /**
* Get Filename. * Get Filename
* *
* @return mixed * @return mixed
*/ */
@ -93,7 +95,7 @@ class Attachment
} }
/** /**
* Get Extension. * Get Extension
* *
* @return mixed * @return mixed
*/ */
@ -103,7 +105,7 @@ class Attachment
} }
/** /**
* Get Size. * Get Size
* *
* @return mixed * @return mixed
*/ */
@ -113,7 +115,7 @@ class Attachment
} }
/** /**
* Get Encoding. * Get Encoding
* *
* @return mixed * @return mixed
*/ */
@ -123,7 +125,7 @@ class Attachment
} }
/** /**
* Get Bytes. * Get Bytes
* *
* @return mixed * @return mixed
*/ */
@ -133,52 +135,49 @@ class Attachment
} }
/** /**
* Get Plain Body. * Get Plain Body
* *
* @return mixed * @return mixed
*/ */
public function getPlainBody() public function getPlainBody()
{ {
if ($this->get('plain_body')) { if( $this->get('plain_body') ){
return $this->get('plain_body'); return $this->get('plain_body');
} }
$this->attachment['plain_body'] = imap_fetchbody( $this->attachment['plain_body'] = imap_fetchbody($this->connection->getStream(), $this->message_number, $this->attachment['index']);
$this->connection->getStream(),
$this->message_number,
$this->attachment['index']
);
return $this->get('plain_body'); return $this->get('plain_body');
} }
/** /**
* Get Body. * Get Body
*
* @throws Exception
* *
* @return mixed * @return mixed
* @throws Exception
*/ */
public function getBody() public function getBody()
{ {
if ($this->get('body')) {
if( $this->get('body') ){
return $this->get('body'); return $this->get('body');
} }
switch ($this->getEncoding()) { switch ($this->getEncoding()) {
case 0: // 7BIT
case 1: // 8BIT
case 2: // BINARY case 2: // BINARY
$this->attachment['body'] = $this->getPlainBody(); $this->attachment['body'] = $this->getPlainBody();
return $this->get('body'); return $this->get('body');
case 3: // BASE-64 case 3: // BASE-64
$this->attachment['body'] = base64_decode($this->getPlainBody(), true); $this->attachment['body'] = base64_decode($this->getPlainBody());
return $this->get('body'); return $this->get('body');
case 4: // QUOTED-PRINTABLE case 4: // QUOTED-PRINTABLE
$this->attachment['body'] = imap_qprint($this->getPlainBody()); $this->attachment['body'] = imap_qprint($this->getPlainBody());
return $this->get('body'); return $this->get('body');
} }
@ -186,59 +185,57 @@ class Attachment
} }
/** /**
* Store File. * Store File
* *
* @param string $path * @param string $path
* @param bool $file_name * @param boolean $file_name
* * @return boolean
* @return bool
*/ */
public function store($path, $file_name = false) public function store($path, $file_name = false)
{ {
$file_name = ($file_name) ? $file_name : "{$this->getFilename()}.{$this->getExtension()}"; $file_name = ($file_name) ? $file_name : "{$this->getFilename()}.{$this->getExtension()}";
$path = rtrim($path, '/').'/'; $path = rtrim($path, '/') . "/";
return (boolean) file_put_contents($path . $file_name, $this->getBody());
return (bool) file_put_contents($path.$file_name, $this->getBody());
} }
/** /**
* Parse Parts. * Parse Parts
* *
* @return bool * @return boolean
*/ */
protected function parseParts() protected function parseParts()
{ {
if ((\count($this->attachment) > 2)) { if( (count($this->attachment) > 2) ){
return true; return true;
} }
$this->attachment['type'] = (isset($this->part->type)) ? $this->part->type : false; $this->attachment['type'] = $this->part->type;
$this->attachment['encoding'] = (isset($this->part->encoding)) ? $this->part->encoding : false; $this->attachment['encoding'] = $this->part->encoding;
$this->attachment['ifsubtype'] = (isset($this->part->ifsubtype)) ? $this->part->ifsubtype : false; $this->attachment['ifsubtype'] = $this->part->ifsubtype;
$this->attachment['subtype'] = (isset($this->part->subtype)) ? $this->part->subtype : false; $this->attachment['subtype'] = $this->part->subtype;
$this->attachment['ifdescription'] = (isset($this->part->ifdescription)) ? $this->part->ifdescription : false; $this->attachment['ifdescription'] = $this->part->ifdescription;
$this->attachment['ifid'] = (isset($this->part->ifid)) ? $this->part->ifid : false; $this->attachment['ifid'] = $this->part->ifid;
$this->attachment['id'] = (isset($this->part->id)) ? $this->part->id : false; $this->attachment['id'] = $this->part->id;
$this->attachment['bytes'] = (isset($this->part->bytes)) ? $this->part->bytes : false; $this->attachment['bytes'] = $this->part->bytes;
$this->attachment['size'] = (isset($this->part->bytes)) ? $this->part->bytes : false; $this->attachment['size'] = $this->part->bytes;
$this->attachment['ifdisposition'] = (isset($this->part->ifdisposition)) ? $this->part->ifdisposition : false; $this->attachment['ifdisposition'] = $this->part->ifdisposition;
$this->attachment['disposition'] = (isset($this->part->disposition)) ? $this->part->disposition : false; $this->attachment['disposition'] = $this->part->disposition;
$this->attachment['ifdparameters'] = (isset($this->part->ifdparameters)) ? $this->part->ifdparameters : false; $this->attachment['ifdparameters'] = $this->part->ifdparameters;
$this->attachment['ifparameters'] = (isset($this->part->ifparameters)) ? $this->part->ifparameters : false; $this->attachment['ifparameters'] = $this->part->ifparameters;
if (isset($this->part->dparameters) && \is_array($this->part->dparameters)) { if( is_array($this->part->dparameters) ){
foreach ($this->part->dparameters as $obj) { foreach ($this->part->dparameters as $obj) {
if (\in_array(mb_strtolower($obj->attribute), ['filename', 'name'], true)) { if( in_array(strtolower($obj->attribute), ['filename', 'name']) ){
$this->attachment[mb_strtolower($obj->attribute)] = pathinfo($obj->value, PATHINFO_FILENAME); $this->attachment[strtolower($obj->attribute)] = pathinfo($obj->value, PATHINFO_FILENAME);
$this->attachment['extension'] = pathinfo($obj->value, PATHINFO_EXTENSION); $this->attachment['extension'] = pathinfo($obj->value, PATHINFO_EXTENSION);
} }
} }
} }
if (isset($this->part->parameters) && \is_array($this->part->parameters)) { if( is_array($this->part->parameters) ){
foreach ($this->part->parameters as $obj) { foreach ($this->part->parameters as $obj) {
if (\in_array(mb_strtolower($obj->attribute), ['filename', 'name'], true)) { if( in_array(strtolower($obj->attribute), ['filename', 'name']) ){
$this->attachment[mb_strtolower($obj->attribute)] = pathinfo($obj->value, PATHINFO_FILENAME); $this->attachment[strtolower($obj->attribute)] = pathinfo($obj->value, PATHINFO_FILENAME);
$this->attachment['extension'] = pathinfo($obj->value, PATHINFO_EXTENSION); $this->attachment['extension'] = pathinfo($obj->value, PATHINFO_EXTENSION);
} }
} }
@ -246,4 +243,4 @@ class Attachment
return true; return true;
} }
} }

View file

@ -1,8 +1,6 @@
<?php <?php
/**
/* * @author clivern <hello@clivern.com>
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
*/ */
namespace Clivern\Imap\Core\Message; namespace Clivern\Imap\Core\Message;
@ -10,27 +8,30 @@ namespace Clivern\Imap\Core\Message;
use Clivern\Imap\Core\Connection; use Clivern\Imap\Core\Connection;
/** /**
* Body Class. * Body Class
*
* @package Clivern\Imap\Core\Message
*/ */
class Body class Body
{ {
/** /**
* @var Connection * @var Connection
*/ */
protected $connection; protected $connection;
/** /**
* @var int * @var integer
*/ */
protected $message_number; protected $message_number;
/** /**
* @var int * @var integer
*/ */
protected $message_uid; protected $message_uid;
/** /**
* @var int * @var integer
*/ */
protected $encoding; protected $encoding;
@ -39,8 +40,11 @@ class Body
*/ */
protected $message = ''; protected $message = '';
/** /**
* Class Constructor. * Class Constructor
*
* @param Connection $connection
*/ */
public function __construct(Connection $connection) public function __construct(Connection $connection)
{ {
@ -48,11 +52,10 @@ class Body
} }
/** /**
* Config Body. * Config Body
*
* @param int $message_number
* @param int $message_uid
* *
* @param integer $message_number
* @param integer $message_uid
* @return Body * @return Body
*/ */
public function config($message_number, $message_uid) public function config($message_number, $message_uid)
@ -64,47 +67,44 @@ class Body
} }
/** /**
* Get Message. * Get Message
*
* @param int $option
* *
* @param integer $option
* @return string * @return string
*/ */
public function getMessage($option = 2) public function getMessage($option = 2)
{ {
if (!empty($this->message)) { if( !empty($this->message) ){
return $this->message; return $this->message;
} }
$structure = imap_fetchstructure($this->connection->getStream(), $this->message_number); $structure = imap_fetchstructure($this->connection->getStream(), $this->message_number);
if (isset($structure->parts) && \is_array($structure->parts) && isset($structure->parts[1])) { if(isset($structure->parts) && is_array($structure->parts) && isset($structure->parts[1])) {
$part = $structure->parts[1]; $part = $structure->parts[1];
$this->message = imap_fetchbody($this->connection->getStream(), $this->message_number, $option); $this->message = imap_fetchbody($this->connection->getStream(),$this->message_number , $option);
$this->encoding = $part->encoding; $this->encoding = $part->encoding;
if (3 === $part->encoding) { if($part->encoding == 3) {
$this->message = imap_base64($this->message); $this->message = imap_base64($this->message);
} elseif (1 === $part->encoding) { } elseif($part->encoding == 1) {
$this->message = imap_8bit($this->message); $this->message = imap_8bit($this->message);
} else { } else {
$this->message = imap_qprint($this->message); $this->message = imap_qprint($this->message);
} }
} else {
$this->message = imap_body($this->connection->getStream(), $this->message_number, $option);
} }
return $this->message; return $this->message;
} }
/** /**
* Get Encoding. * Get Encoding
* *
* @return int * @return integer
*/ */
public function getEncoding() public function getEncoding()
{ {
return $this->encoding; return $this->encoding;
} }
} }

View file

@ -1,8 +1,6 @@
<?php <?php
/**
/* * @author clivern <hello@clivern.com>
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
*/ */
namespace Clivern\Imap\Core\Message; namespace Clivern\Imap\Core\Message;
@ -10,22 +8,25 @@ namespace Clivern\Imap\Core\Message;
use Clivern\Imap\Core\Connection; use Clivern\Imap\Core\Connection;
/** /**
* Header Class. * Header Class
*
* @package Clivern\Imap\Core\Message
*/ */
class Header class Header
{ {
/** /**
* @var Connection * @var Connection
*/ */
protected $connection; protected $connection;
/** /**
* @var int * @var integer
*/ */
protected $message_number; protected $message_number;
/** /**
* @var int * @var integer
*/ */
protected $message_uid; protected $message_uid;
@ -34,8 +35,11 @@ class Header
*/ */
protected $header = []; protected $header = [];
/** /**
* Class Constructor. * Class Constructor
*
* @param Connection $connection
*/ */
public function __construct(Connection $connection) public function __construct(Connection $connection)
{ {
@ -43,17 +47,15 @@ class Header
} }
/** /**
* Config Message. * Config Message
*
* @param int $message_number
* @param int $message_uid
* @param mixed $options
* *
* @param integer $message_number
* @param integer $message_uid
* @return Header * @return Header
*/ */
public function config($message_number, $message_uid, $options = 0) public function config($message_number, $message_uid, $options = 0)
{ {
if (!empty($this->header)) { if( !empty($this->header) ){
return $this; return $this;
} }
@ -65,41 +67,37 @@ class Header
} }
/** /**
* Get From Header. * Get From Header
*
* @param string $key
* @param bool $default
* *
* @param string $key
* @param boolean $default
* @return mixed * @return mixed
*/ */
public function get($key, $default = false) public function get($key, $default = false)
{ {
return (isset($this->header[mb_strtolower($key)])) ? $this->header[mb_strtolower($key)] : $default; return (isset($this->header[strtolower($key)])) ? $this->header[strtolower($key)] : $default;
} }
/** /**
* Check if header has key. * Check if header has key
* *
* @param string $key * @param string $key
* * @return boolean
* @return bool
*/ */
public function has($key) public function has($key)
{ {
return isset($this->header[mb_strtolower($key)]); return (isset($this->header[strtolower($key)]));
} }
/** /**
* Parse Address List. * Parse Address List
* *
* @param string $address_string * @param string $address_string
* @param mixed $default_host
*
* @return array * @return array
*/ */
public function parseAddressList($address_string, $default_host = 'example.com') public function parseAddressList($address_string, $default_host = "example.com")
{ {
$address_array = imap_rfc822_parse_adrlist($address_string, $default_host); $address_array = imap_rfc822_parse_adrlist($address_string, $default_host);
$address_list = []; $address_list = [];
foreach ($address_array as $id => $val) { foreach ($address_array as $id => $val) {
@ -107,7 +105,7 @@ class Header
'mailbox' => $val->mailbox, 'mailbox' => $val->mailbox,
'host' => $val->host, 'host' => $val->host,
'personal' => $val->personal, 'personal' => $val->personal,
'adl' => $val->adl, 'adl' => $val->adl
]; ];
} }
@ -115,10 +113,9 @@ class Header
} }
/** /**
* Load Header Data. * Load Header Data
* *
* @param mixed $options * @param mixed $options
*
* @return Header * @return Header
*/ */
protected function load($options = 0) protected function load($options = 0)
@ -132,8 +129,7 @@ class Header
$this->header['date'] = (isset($item_overview->date)) ? $item_overview->date : false; $this->header['date'] = (isset($item_overview->date)) ? $item_overview->date : false;
$this->header['message_id'] = (isset($item_overview->message_id)) ? $item_overview->message_id : false; $this->header['message_id'] = (isset($item_overview->message_id)) ? $item_overview->message_id : false;
$this->header['in_reply_to'] = (isset($item_overview->in_reply_to)) ? $item_overview->in_reply_to : false; $this->header['in_reply_to'] = (isset($item_overview->in_reply_to)) ? $item_overview->in_reply_to : false;
$this->header['references'] = (isset($item_overview->references)) ? $this->header['references'] = (isset($item_overview->references)) ? explode(" ", $item_overview->references) : false;
explode(' ', $item_overview->references) : false;
$this->header['size'] = (isset($item_overview->size)) ? $item_overview->size : false; $this->header['size'] = (isset($item_overview->size)) ? $item_overview->size : false;
$this->header['uid'] = (isset($item_overview->uid)) ? $item_overview->uid : false; $this->header['uid'] = (isset($item_overview->uid)) ? $item_overview->uid : false;
$this->header['msgno'] = (isset($item_overview->msgno)) ? $item_overview->msgno : false; $this->header['msgno'] = (isset($item_overview->msgno)) ? $item_overview->msgno : false;
@ -148,4 +144,4 @@ class Header
return $this; return $this;
} }
} }

View file

@ -1,28 +1,34 @@
<?php <?php
/**
/* * @author clivern <hello@clivern.com>
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
*/ */
namespace Clivern\Imap\Core; namespace Clivern\Imap\Core;
use Clivern\Imap\Core\Message;
use Clivern\Imap\Core\Connection;
use Clivern\Imap\Core\Message\Header;
use Clivern\Imap\Core\Message\Action; use Clivern\Imap\Core\Message\Action;
use Clivern\Imap\Core\Message\Body; use Clivern\Imap\Core\Message\Body;
use Clivern\Imap\Core\Message\Header;
/** /**
* Message Iterator Class. * Message Iterator Class
*
* @package Clivern\Imap\Core
*/ */
class MessageIterator extends \ArrayIterator class MessageIterator extends \ArrayIterator
{ {
/** /**
* @var Connection * @var Connection
*/ */
protected $connection; protected $connection;
/** /**
* Constructor. * Constructor
*
* @param Connection $connection
* @param array $message_numbers
*/ */
public function __construct(Connection $connection, array $message_numbers) public function __construct(Connection $connection, array $message_numbers)
{ {
@ -31,19 +37,13 @@ class MessageIterator extends \ArrayIterator
} }
/** /**
* Get current message. * Get current message
* *
* @return Message * @return Message
*/ */
public function current() public function current()
{ {
$message = new Message( $message = new Message($this->connection, new Header($this->connection), new Action($this->connection), new Body($this->connection));
$this->connection,
new Header($this->connection),
new Action($this->connection),
new Body($this->connection)
);
return $message->setUid(parent::current())->config(); return $message->setUid(parent::current())->config();
} }
} }

View file

@ -1,8 +1,6 @@
<?php <?php
/**
/* * @author clivern <hello@clivern.com>
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
*/ */
namespace Clivern\Imap\Core; namespace Clivern\Imap\Core;
@ -10,28 +8,22 @@ namespace Clivern\Imap\Core;
use Clivern\Imap\Core\Search\Contract\Condition; use Clivern\Imap\Core\Search\Contract\Condition;
/** /**
* Search Class. * Search Class
*
* @package Clivern\Imap\Core
*/ */
class Search class Search
{ {
/** /**
* @var array * @var array
*/ */
protected $conditions = []; protected $conditions = [];
/** /**
* Get Conditions Query. * Add Condition
*
* @return string
*/
public function __toString()
{
return (!empty($this->conditions)) ? implode(' ', $this->conditions) : '';
}
/**
* Add Condition.
* *
* @param Condition $condition
* @return Search * @return Search
*/ */
public function addCondition(Condition $condition) public function addCondition(Condition $condition)
@ -42,7 +34,7 @@ class Search
} }
/** /**
* Get Conditions. * Get Conditions
* *
* @return array * @return array
*/ */
@ -50,4 +42,14 @@ class Search
{ {
return $this->conditions; return $this->conditions;
} }
}
/**
* Get Conditions Query
*
* @return string
*/
public function __toString()
{
return (!empty($this->conditions)) ? implode(" ", $this->conditions) : "";
}
}

View file

@ -1,8 +1,6 @@
<?php <?php
/**
/* * @author clivern <hello@clivern.com>
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
*/ */
namespace Clivern\Imap\Core\Search\Condition; namespace Clivern\Imap\Core\Search\Condition;
@ -10,17 +8,20 @@ namespace Clivern\Imap\Core\Search\Condition;
use Clivern\Imap\Core\Search\Contract\Condition; use Clivern\Imap\Core\Search\Contract\Condition;
/** /**
* All Class. * All Class
*
* @package Clivern\Imap\Core\Search\Condition
*/ */
class All implements Condition class All implements Condition
{ {
/** /**
* Query String. * Query String
* *
* @return string * @return string
*/ */
public function __toString() public function __toString()
{ {
return 'ALL'; return "ALL";
} }
} }

View file

@ -1,8 +1,6 @@
<?php <?php
/**
/* * @author clivern <hello@clivern.com>
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
*/ */
namespace Clivern\Imap\Core\Search\Condition; namespace Clivern\Imap\Core\Search\Condition;
@ -10,17 +8,20 @@ namespace Clivern\Imap\Core\Search\Condition;
use Clivern\Imap\Core\Search\Contract\Condition; use Clivern\Imap\Core\Search\Contract\Condition;
/** /**
* Answered Class. * Answered Class
*
* @package Clivern\Imap\Core\Search\Condition
*/ */
class Answered implements Condition class Answered implements Condition
{ {
/** /**
* Query String. * Query String
* *
* @return string * @return string
*/ */
public function __toString() public function __toString()
{ {
return 'ANSWERED'; return "ANSWERED";
} }
} }

View file

@ -1,8 +1,6 @@
<?php <?php
/**
/* * @author clivern <hello@clivern.com>
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
*/ */
namespace Clivern\Imap\Core\Search\Condition; namespace Clivern\Imap\Core\Search\Condition;
@ -10,17 +8,20 @@ namespace Clivern\Imap\Core\Search\Condition;
use Clivern\Imap\Core\Search\Contract\Condition; use Clivern\Imap\Core\Search\Contract\Condition;
/** /**
* BCC Class. * BCC Class
*
* @package Clivern\Imap\Core\Search\Condition
*/ */
class BCC implements Condition class BCC implements Condition
{ {
/** /**
* @var string * @var string
*/ */
protected $data; protected $data;
/** /**
* Class Constructor. * Class Constructor
* *
* @param string $data * @param string $data
*/ */
@ -30,7 +31,7 @@ class BCC implements Condition
} }
/** /**
* Query String. * Query String
* *
* @return string * @return string
*/ */
@ -38,4 +39,4 @@ class BCC implements Condition
{ {
return "BCC \"{$this->data}\""; return "BCC \"{$this->data}\"";
} }
} }

View file

@ -1,8 +1,6 @@
<?php <?php
/**
/* * @author clivern <hello@clivern.com>
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
*/ */
namespace Clivern\Imap\Core\Search\Condition; namespace Clivern\Imap\Core\Search\Condition;
@ -10,17 +8,20 @@ namespace Clivern\Imap\Core\Search\Condition;
use Clivern\Imap\Core\Search\Contract\Condition; use Clivern\Imap\Core\Search\Contract\Condition;
/** /**
* Before Class. * Before Class
*
* @package Clivern\Imap\Core\Search\Condition
*/ */
class Before implements Condition class Before implements Condition
{ {
/** /**
* @var string * @var string
*/ */
protected $data; protected $data;
/** /**
* Class Constructor. * Class Constructor
* *
* @param string $data * @param string $data
*/ */
@ -30,7 +31,7 @@ class Before implements Condition
} }
/** /**
* Query String. * Query String
* *
* @return string * @return string
*/ */
@ -38,4 +39,4 @@ class Before implements Condition
{ {
return "BEFORE \"{$this->data}\""; return "BEFORE \"{$this->data}\"";
} }
} }

View file

@ -1,8 +1,6 @@
<?php <?php
/**
/* * @author clivern <hello@clivern.com>
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
*/ */
namespace Clivern\Imap\Core\Search\Condition; namespace Clivern\Imap\Core\Search\Condition;
@ -10,17 +8,20 @@ namespace Clivern\Imap\Core\Search\Condition;
use Clivern\Imap\Core\Search\Contract\Condition; use Clivern\Imap\Core\Search\Contract\Condition;
/** /**
* Body Class. * Body Class
*
* @package Clivern\Imap\Core\Search\Condition
*/ */
class Body implements Condition class Body implements Condition
{ {
/** /**
* @var string * @var string
*/ */
protected $data; protected $data;
/** /**
* Class Constructor. * Class Constructor
* *
* @param string $data * @param string $data
*/ */
@ -30,7 +31,7 @@ class Body implements Condition
} }
/** /**
* Query String. * Query String
* *
* @return string * @return string
*/ */
@ -38,4 +39,4 @@ class Body implements Condition
{ {
return "BODY \"{$this->data}\""; return "BODY \"{$this->data}\"";
} }
} }

View file

@ -1,8 +1,6 @@
<?php <?php
/**
/* * @author clivern <hello@clivern.com>
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
*/ */
namespace Clivern\Imap\Core\Search\Condition; namespace Clivern\Imap\Core\Search\Condition;
@ -10,17 +8,20 @@ namespace Clivern\Imap\Core\Search\Condition;
use Clivern\Imap\Core\Search\Contract\Condition; use Clivern\Imap\Core\Search\Contract\Condition;
/** /**
* CC Class. * CC Class
*
* @package Clivern\Imap\Core\Search\Condition
*/ */
class CC implements Condition class CC implements Condition
{ {
/** /**
* @var string * @var string
*/ */
protected $data; protected $data;
/** /**
* Class Constructor. * Class Constructor
* *
* @param string $data * @param string $data
*/ */
@ -30,7 +31,7 @@ class CC implements Condition
} }
/** /**
* Query String. * Query String
* *
* @return string * @return string
*/ */
@ -38,4 +39,4 @@ class CC implements Condition
{ {
return "CC \"{$this->data}\""; return "CC \"{$this->data}\"";
} }
} }

View file

@ -1,8 +1,6 @@
<?php <?php
/**
/* * @author clivern <hello@clivern.com>
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
*/ */
namespace Clivern\Imap\Core\Search\Condition; namespace Clivern\Imap\Core\Search\Condition;
@ -10,17 +8,20 @@ namespace Clivern\Imap\Core\Search\Condition;
use Clivern\Imap\Core\Search\Contract\Condition; use Clivern\Imap\Core\Search\Contract\Condition;
/** /**
* Deleted Class. * Deleted Class
*
* @package Clivern\Imap\Core\Search\Condition
*/ */
class Deleted implements Condition class Deleted implements Condition
{ {
/** /**
* Query String. * Query String
* *
* @return string * @return string
*/ */
public function __toString() public function __toString()
{ {
return 'DELETED'; return "DELETED";
} }
} }

View file

@ -1,8 +1,6 @@
<?php <?php
/**
/* * @author clivern <hello@clivern.com>
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
*/ */
namespace Clivern\Imap\Core\Search\Condition; namespace Clivern\Imap\Core\Search\Condition;
@ -10,17 +8,20 @@ namespace Clivern\Imap\Core\Search\Condition;
use Clivern\Imap\Core\Search\Contract\Condition; use Clivern\Imap\Core\Search\Contract\Condition;
/** /**
* Flagged Class. * Flagged Class
*
* @package Clivern\Imap\Core\Search\Condition
*/ */
class Flagged implements Condition class Flagged implements Condition
{ {
/** /**
* Query String. * Query String
* *
* @return string * @return string
*/ */
public function __toString() public function __toString()
{ {
return 'FLAGGED'; return "FLAGGED";
} }
} }

View file

@ -1,8 +1,6 @@
<?php <?php
/**
/* * @author clivern <hello@clivern.com>
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
*/ */
namespace Clivern\Imap\Core\Search\Condition; namespace Clivern\Imap\Core\Search\Condition;
@ -10,17 +8,20 @@ namespace Clivern\Imap\Core\Search\Condition;
use Clivern\Imap\Core\Search\Contract\Condition; use Clivern\Imap\Core\Search\Contract\Condition;
/** /**
* From Class. * From Class
*
* @package Clivern\Imap\Core\Search\Condition
*/ */
class From implements Condition class From implements Condition
{ {
/** /**
* @var string * @var string
*/ */
protected $data; protected $data;
/** /**
* Class Constructor. * Class Constructor
* *
* @param string $data * @param string $data
*/ */
@ -30,7 +31,7 @@ class From implements Condition
} }
/** /**
* Query String. * Query String
* *
* @return string * @return string
*/ */
@ -38,4 +39,4 @@ class From implements Condition
{ {
return "FROM \"{$this->data}\""; return "FROM \"{$this->data}\"";
} }
} }

View file

@ -1,8 +1,6 @@
<?php <?php
/**
/* * @author clivern <hello@clivern.com>
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
*/ */
namespace Clivern\Imap\Core\Search\Condition; namespace Clivern\Imap\Core\Search\Condition;
@ -10,17 +8,20 @@ namespace Clivern\Imap\Core\Search\Condition;
use Clivern\Imap\Core\Search\Contract\Condition; use Clivern\Imap\Core\Search\Contract\Condition;
/** /**
* Keyword Class. * Keyword Class
*
* @package Clivern\Imap\Core\Search\Condition
*/ */
class Keyword implements Condition class Keyword implements Condition
{ {
/** /**
* @var string * @var string
*/ */
protected $data; protected $data;
/** /**
* Class Constructor. * Class Constructor
* *
* @param string $data * @param string $data
*/ */
@ -30,7 +31,7 @@ class Keyword implements Condition
} }
/** /**
* Query String. * Query String
* *
* @return string * @return string
*/ */
@ -38,4 +39,4 @@ class Keyword implements Condition
{ {
return "KEYWORD \"{$this->data}\""; return "KEYWORD \"{$this->data}\"";
} }
} }

View file

@ -1,8 +1,6 @@
<?php <?php
/**
/* * @author clivern <hello@clivern.com>
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
*/ */
namespace Clivern\Imap\Core\Search\Condition; namespace Clivern\Imap\Core\Search\Condition;
@ -10,17 +8,20 @@ namespace Clivern\Imap\Core\Search\Condition;
use Clivern\Imap\Core\Search\Contract\Condition; use Clivern\Imap\Core\Search\Contract\Condition;
/** /**
* New Flag Class. * New Flag Class
*
* @package Clivern\Imap\Core\Search\Condition
*/ */
class NewFlag implements Condition class NewFlag implements Condition
{ {
/** /**
* Query String. * Query String
* *
* @return string * @return string
*/ */
public function __toString() public function __toString()
{ {
return 'NEW'; return "NEW";
} }
} }

View file

@ -1,8 +1,6 @@
<?php <?php
/**
/* * @author clivern <hello@clivern.com>
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
*/ */
namespace Clivern\Imap\Core\Search\Condition; namespace Clivern\Imap\Core\Search\Condition;
@ -10,17 +8,20 @@ namespace Clivern\Imap\Core\Search\Condition;
use Clivern\Imap\Core\Search\Contract\Condition; use Clivern\Imap\Core\Search\Contract\Condition;
/** /**
* Old Class. * Old Class
*
* @package Clivern\Imap\Core\Search\Condition
*/ */
class Old implements Condition class Old implements Condition
{ {
/** /**
* Query String. * Query String
* *
* @return string * @return string
*/ */
public function __toString() public function __toString()
{ {
return 'OLD'; return "OLD";
} }
} }

View file

@ -1,8 +1,6 @@
<?php <?php
/**
/* * @author clivern <hello@clivern.com>
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
*/ */
namespace Clivern\Imap\Core\Search\Condition; namespace Clivern\Imap\Core\Search\Condition;
@ -10,17 +8,20 @@ namespace Clivern\Imap\Core\Search\Condition;
use Clivern\Imap\Core\Search\Contract\Condition; use Clivern\Imap\Core\Search\Contract\Condition;
/** /**
* On Class. * On Class
*
* @package Clivern\Imap\Core\Search\Condition
*/ */
class On implements Condition class On implements Condition
{ {
/** /**
* @var string * @var string
*/ */
protected $data; protected $data;
/** /**
* Class Constructor. * Class Constructor
* *
* @param string $data * @param string $data
*/ */
@ -30,7 +31,7 @@ class On implements Condition
} }
/** /**
* Query String. * Query String
* *
* @return string * @return string
*/ */
@ -38,4 +39,4 @@ class On implements Condition
{ {
return "ON \"{$this->data}\""; return "ON \"{$this->data}\"";
} }
} }

View file

@ -1,8 +1,6 @@
<?php <?php
/**
/* * @author clivern <hello@clivern.com>
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
*/ */
namespace Clivern\Imap\Core\Search\Condition; namespace Clivern\Imap\Core\Search\Condition;
@ -10,17 +8,20 @@ namespace Clivern\Imap\Core\Search\Condition;
use Clivern\Imap\Core\Search\Contract\Condition; use Clivern\Imap\Core\Search\Contract\Condition;
/** /**
* All Class. * All Class
*
* @package Clivern\Imap\Core\Search\Condition
*/ */
class Recent implements Condition class Recent implements Condition
{ {
/** /**
* Query String. * Query String
* *
* @return string * @return string
*/ */
public function __toString() public function __toString()
{ {
return 'RECENT'; return "RECENT";
} }
} }

View file

@ -1,8 +1,6 @@
<?php <?php
/**
/* * @author clivern <hello@clivern.com>
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
*/ */
namespace Clivern\Imap\Core\Search\Condition; namespace Clivern\Imap\Core\Search\Condition;
@ -10,17 +8,20 @@ namespace Clivern\Imap\Core\Search\Condition;
use Clivern\Imap\Core\Search\Contract\Condition; use Clivern\Imap\Core\Search\Contract\Condition;
/** /**
* Seen Class. * Seen Class
*
* @package Clivern\Imap\Core\Search\Condition
*/ */
class Seen implements Condition class Seen implements Condition
{ {
/** /**
* Query String. * Query String
* *
* @return string * @return string
*/ */
public function __toString() public function __toString()
{ {
return 'SEEN'; return "SEEN";
} }
} }

View file

@ -1,8 +1,6 @@
<?php <?php
/**
/* * @author clivern <hello@clivern.com>
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
*/ */
namespace Clivern\Imap\Core\Search\Condition; namespace Clivern\Imap\Core\Search\Condition;
@ -10,17 +8,20 @@ namespace Clivern\Imap\Core\Search\Condition;
use Clivern\Imap\Core\Search\Contract\Condition; use Clivern\Imap\Core\Search\Contract\Condition;
/** /**
* Since Class. * Since Class
*
* @package Clivern\Imap\Core\Search\Condition
*/ */
class Since implements Condition class Since implements Condition
{ {
/** /**
* @var string * @var string
*/ */
protected $data; protected $data;
/** /**
* Class Constructor. * Class Constructor
* *
* @param string $data * @param string $data
*/ */
@ -30,7 +31,7 @@ class Since implements Condition
} }
/** /**
* Query String. * Query String
* *
* @return string * @return string
*/ */
@ -38,4 +39,4 @@ class Since implements Condition
{ {
return "SINCE \"{$this->data}\""; return "SINCE \"{$this->data}\"";
} }
} }

View file

@ -1,8 +1,6 @@
<?php <?php
/**
/* * @author clivern <hello@clivern.com>
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
*/ */
namespace Clivern\Imap\Core\Search\Condition; namespace Clivern\Imap\Core\Search\Condition;
@ -10,17 +8,20 @@ namespace Clivern\Imap\Core\Search\Condition;
use Clivern\Imap\Core\Search\Contract\Condition; use Clivern\Imap\Core\Search\Contract\Condition;
/** /**
* Subject Class. * Subject Class
*
* @package Clivern\Imap\Core\Search\Condition
*/ */
class Subject implements Condition class Subject implements Condition
{ {
/** /**
* @var string * @var string
*/ */
protected $data; protected $data;
/** /**
* Class Constructor. * Class Constructor
* *
* @param string $data * @param string $data
*/ */
@ -30,7 +31,7 @@ class Subject implements Condition
} }
/** /**
* Query String. * Query String
* *
* @return string * @return string
*/ */
@ -38,4 +39,4 @@ class Subject implements Condition
{ {
return "SUBJECT \"{$this->data}\""; return "SUBJECT \"{$this->data}\"";
} }
} }

View file

@ -1,8 +1,6 @@
<?php <?php
/**
/* * @author clivern <hello@clivern.com>
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
*/ */
namespace Clivern\Imap\Core\Search\Condition; namespace Clivern\Imap\Core\Search\Condition;
@ -10,17 +8,20 @@ namespace Clivern\Imap\Core\Search\Condition;
use Clivern\Imap\Core\Search\Contract\Condition; use Clivern\Imap\Core\Search\Contract\Condition;
/** /**
* Text Class. * Text Class
*
* @package Clivern\Imap\Core\Search\Condition
*/ */
class Text implements Condition class Text implements Condition
{ {
/** /**
* @var string * @var string
*/ */
protected $data; protected $data;
/** /**
* Class Constructor. * Class Constructor
* *
* @param string $data * @param string $data
*/ */
@ -30,7 +31,7 @@ class Text implements Condition
} }
/** /**
* Query String. * Query String
* *
* @return string * @return string
*/ */
@ -38,4 +39,4 @@ class Text implements Condition
{ {
return "TEXT \"{$this->data}\""; return "TEXT \"{$this->data}\"";
} }
} }

View file

@ -1,8 +1,6 @@
<?php <?php
/**
/* * @author clivern <hello@clivern.com>
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
*/ */
namespace Clivern\Imap\Core\Search\Condition; namespace Clivern\Imap\Core\Search\Condition;
@ -10,17 +8,20 @@ namespace Clivern\Imap\Core\Search\Condition;
use Clivern\Imap\Core\Search\Contract\Condition; use Clivern\Imap\Core\Search\Contract\Condition;
/** /**
* To Class. * To Class
*
* @package Clivern\Imap\Core\Search\Condition
*/ */
class To implements Condition class To implements Condition
{ {
/** /**
* @var string * @var string
*/ */
protected $data; protected $data;
/** /**
* Class Constructor. * Class Constructor
* *
* @param string $data * @param string $data
*/ */
@ -30,7 +31,7 @@ class To implements Condition
} }
/** /**
* Query String. * Query String
* *
* @return string * @return string
*/ */
@ -38,4 +39,4 @@ class To implements Condition
{ {
return "TO \"{$this->data}\""; return "TO \"{$this->data}\"";
} }
} }

View file

@ -1,8 +1,6 @@
<?php <?php
/**
/* * @author clivern <hello@clivern.com>
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
*/ */
namespace Clivern\Imap\Core\Search\Condition; namespace Clivern\Imap\Core\Search\Condition;
@ -10,17 +8,20 @@ namespace Clivern\Imap\Core\Search\Condition;
use Clivern\Imap\Core\Search\Contract\Condition; use Clivern\Imap\Core\Search\Contract\Condition;
/** /**
* UnAnswered Class. * UnAnswered Class
*
* @package Clivern\Imap\Core\Search\Condition
*/ */
class UnAnswered implements Condition class UnAnswered implements Condition
{ {
/** /**
* Query String. * Query String
* *
* @return string * @return string
*/ */
public function __toString() public function __toString()
{ {
return 'UNANSWERED'; return "UNANSWERED";
} }
} }

View file

@ -1,8 +1,6 @@
<?php <?php
/**
/* * @author clivern <hello@clivern.com>
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
*/ */
namespace Clivern\Imap\Core\Search\Condition; namespace Clivern\Imap\Core\Search\Condition;
@ -10,17 +8,20 @@ namespace Clivern\Imap\Core\Search\Condition;
use Clivern\Imap\Core\Search\Contract\Condition; use Clivern\Imap\Core\Search\Contract\Condition;
/** /**
* UnDeleted Class. * UnDeleted Class
*
* @package Clivern\Imap\Core\Search\Condition
*/ */
class UnDeleted implements Condition class UnDeleted implements Condition
{ {
/** /**
* Query String. * Query String
* *
* @return string * @return string
*/ */
public function __toString() public function __toString()
{ {
return 'UNDELETED'; return "UNDELETED";
} }
} }

View file

@ -1,8 +1,6 @@
<?php <?php
/**
/* * @author clivern <hello@clivern.com>
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
*/ */
namespace Clivern\Imap\Core\Search\Condition; namespace Clivern\Imap\Core\Search\Condition;
@ -10,17 +8,20 @@ namespace Clivern\Imap\Core\Search\Condition;
use Clivern\Imap\Core\Search\Contract\Condition; use Clivern\Imap\Core\Search\Contract\Condition;
/** /**
* UnFlagged Class. * UnFlagged Class
*
* @package Clivern\Imap\Core\Search\Condition
*/ */
class UnFlagged implements Condition class UnFlagged implements Condition
{ {
/** /**
* Query String. * Query String
* *
* @return string * @return string
*/ */
public function __toString() public function __toString()
{ {
return 'UNFLAGGED'; return "UNFLAGGED";
} }
} }

View file

@ -1,8 +1,6 @@
<?php <?php
/**
/* * @author clivern <hello@clivern.com>
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
*/ */
namespace Clivern\Imap\Core\Search\Condition; namespace Clivern\Imap\Core\Search\Condition;
@ -10,17 +8,20 @@ namespace Clivern\Imap\Core\Search\Condition;
use Clivern\Imap\Core\Search\Contract\Condition; use Clivern\Imap\Core\Search\Contract\Condition;
/** /**
* UnKeyword Class. * UnKeyword Class
*
* @package Clivern\Imap\Core\Search\Condition
*/ */
class UnKeyword implements Condition class UnKeyword implements Condition
{ {
/** /**
* @var string * @var string
*/ */
protected $data; protected $data;
/** /**
* Class Constructor. * Class Constructor
* *
* @param string $data * @param string $data
*/ */
@ -30,7 +31,7 @@ class UnKeyword implements Condition
} }
/** /**
* Query String. * Query String
* *
* @return string * @return string
*/ */
@ -38,4 +39,4 @@ class UnKeyword implements Condition
{ {
return "UNKEYWORD \"{$this->data}\""; return "UNKEYWORD \"{$this->data}\"";
} }
} }

View file

@ -1,8 +1,6 @@
<?php <?php
/**
/* * @author clivern <hello@clivern.com>
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
*/ */
namespace Clivern\Imap\Core\Search\Condition; namespace Clivern\Imap\Core\Search\Condition;
@ -10,17 +8,20 @@ namespace Clivern\Imap\Core\Search\Condition;
use Clivern\Imap\Core\Search\Contract\Condition; use Clivern\Imap\Core\Search\Contract\Condition;
/** /**
* UnSeen Class. * UnSeen Class
*
* @package Clivern\Imap\Core\Search\Condition
*/ */
class UnSeen implements Condition class UnSeen implements Condition
{ {
/** /**
* Query String. * Query String
* *
* @return string * @return string
*/ */
public function __toString() public function __toString()
{ {
return 'UNSEEN'; return "UNSEEN";
} }
} }

View file

@ -1,16 +1,16 @@
<?php <?php
/**
/* * @author clivern <hello@clivern.com>
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
*/ */
namespace Clivern\Imap\Core\Search\Contract; namespace Clivern\Imap\Core\Search\Contract;
/** /**
* Condition Interface. * Condition Interface
*
* @package Clivern\Imap\Core\Search\Contract
*/ */
interface Condition interface Condition
{ {
public function __toString(); public function __toString();
} }

View file

@ -1,27 +1,28 @@
<?php <?php
/**
/* * @author clivern <hello@clivern.com>
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
*/ */
namespace Clivern\Imap; namespace Clivern\Imap;
use Clivern\Imap\Core\Connection; use Clivern\Imap\Core\Connection;
use Clivern\Imap\Core\Exception\FolderNotExistException;
use Clivern\Imap\Core\Message;
use Clivern\Imap\Core\Message\Action;
use Clivern\Imap\Core\Message\Attachment;
use Clivern\Imap\Core\Message\Body;
use Clivern\Imap\Core\Message\Header;
use Clivern\Imap\Core\MessageIterator; use Clivern\Imap\Core\MessageIterator;
use Clivern\Imap\Core\Message;
use Clivern\Imap\Core\Search; use Clivern\Imap\Core\Search;
use Clivern\Imap\Core\Message\Header;
use Clivern\Imap\Core\Message\Action;
use Clivern\Imap\Core\Message\Attachments;
use Clivern\Imap\Core\Message\Body;
use Clivern\Imap\Core\Exception\FolderNotExistException;
/** /**
* MailBox Class. * MailBox Class
*
* @package Clivern\Imap
*/ */
class MailBox class MailBox
{ {
/** /**
* @var string * @var string
*/ */
@ -37,8 +38,9 @@ class MailBox
*/ */
protected $folders = []; protected $folders = [];
/** /**
* Constructor. * Constructor
* *
* @param Connection $connection IMAP connection * @param Connection $connection IMAP connection
*/ */
@ -48,15 +50,14 @@ class MailBox
} }
/** /**
* Set Folder Name. * Set Folder Name
* *
* @param string $folder * @param string $folder
*
* @return MailBox * @return MailBox
*/ */
public function setFolder($folder) public function setFolder($folder)
{ {
if (!\in_array($folder, $this->getFolders(), true)) { if( !in_array($folder, $this->getFolders()) ){
throw new FolderNotExistException($folder); throw new FolderNotExistException($folder);
} }
@ -66,7 +67,7 @@ class MailBox
} }
/** /**
* Get Folder name. * Get Folder name
* *
* @return string * @return string
*/ */
@ -76,22 +77,20 @@ class MailBox
} }
/** /**
* Get number of messages in this mailbox. * Get number of messages in this mailbox
* *
* @return int * @return int
*/ */
public function count() public function count()
{ {
$this->connection->survive($this->folder); $this->connection->survive($this->folder);
return imap_num_msg($this->connection->getStream()); return imap_num_msg($this->connection->getStream());
} }
/** /**
* Get message ids. * Get message ids
* *
* @param Search $search * @param Search $search
*
* @return MessageIterator * @return MessageIterator
*/ */
public function getMessages(Search $search = null) public function getMessages(Search $search = null)
@ -100,7 +99,7 @@ class MailBox
$query = ($search) ? (string) $search : 'ALL'; $query = ($search) ? (string) $search : 'ALL';
$message_numbers = imap_search($this->connection->getStream(), $query, \SE_UID); $message_numbers = imap_search($this->connection->getStream(), $query, \SE_UID);
if (false === $message_numbers) { if (false == $message_numbers) {
// imap_search can also return false // imap_search can also return false
$message_numbers = []; $message_numbers = [];
} }
@ -109,61 +108,53 @@ class MailBox
} }
/** /**
* Get a message by message number or uid. * Get a message by message number or uid
*
* @param bool|int $message_number
* @param bool|int $message_uid
* *
* @param int|boolean $message_number
* @param int|boolean $message_uid
* @return Message * @return Message
*/ */
public function getMessage($message_number = false, $message_uid = false) public function getMessage($message_number = false, $message_uid = false)
{ {
$this->connection->survive($this->folder); $this->connection->survive($this->folder);
$message = new Message( $message = new Message($this->connection, new Header($this->connection), new Action($this->connection), new Attachments($this->connection), new Body($this->connection));
$this->connection,
new Header($this->connection),
new Action($this->connection),
new Attachment($this->connection),
new Body($this->connection)
);
if (false === $message_number) { if( $message_number == false ){
return $message->setUid($message_uid)->config(); return $message->setUid($message_uid)->config();
}else{
return $message->setMsgNo($message_number)->config();
} }
return $message->setMsgNo($message_number)->config();
} }
/** /**
* Delete all messages marked for deletion. * Delete all messages marked for deletion
* *
* @return bool * @return boolean
*/ */
public function expunge() public function expunge()
{ {
$this->connection->survive($this->folder); $this->connection->survive($this->folder);
return (boolean) imap_expunge($this->connection->getStream());
return (bool) imap_expunge($this->connection->getStream());
} }
/** /**
* Get Folders List. * Get Folders List
* *
* @return array * @return array
*/ */
public function getFolders() public function getFolders()
{ {
if (!empty($this->folders)) { if( !empty($this->folders) ){
return $this->folders; return $this->folders;
} }
$this->folders = imap_getmailboxes($this->connection->getStream(), '{'.$this->connection->getServer().'}', '*'); $this->folders = imap_getmailboxes($this->connection->getStream(), "{" . $this->connection->getServer() . "}", "*");
foreach ($this->folders as $key => $folder) { foreach ($this->folders as $key => $folder) {
$this->folders[$key] = str_replace('{'.$this->connection->getServer().'}', '', $folder->name); $this->folders[$key] = str_replace("{" . $this->connection->getServer() . "}", "", $folder->name);
} }
return $this->folders; return $this->folders;
} }
} }

View file

@ -1,10 +1,4 @@
<?php <?php
/*
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
*/
namespace Tests\Core; namespace Tests\Core;
use PHPUnit\Framework\TestCase; use PHPUnit\Framework\TestCase;
@ -13,10 +7,10 @@ class ConnectionTest extends TestCase
{ {
public function testConnect() public function testConnect()
{ {
//$email = getenv("TEST_EMAIL"); $email = getenv("TEST_EMAIL");
//$password = getenv("TEST_EMAIL_PASS"); $password = getenv("TEST_EMAIL_PASS");
//$connection = new \Clivern\Imap\Core\Connection("imap.gmail.com", "993", $email, $password, "/ssl", "INBOX"); $connection = new \Clivern\Imap\Core\Connection("imap.gmail.com", "993", $email, $password, "/ssl", "INBOX");
//$this->assertTrue($connection->connect()->checkConnection()); $this->assertTrue($connection->connect()->checkConnection());
//$this->assertTrue($connection->connect()->disconnect()); $this->assertTrue($connection->connect()->disconnect());
} }
} }

View file

@ -1,10 +1,4 @@
<?php <?php
/*
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
*/
namespace Tests\Core; namespace Tests\Core;
use PHPUnit\Framework\TestCase; use PHPUnit\Framework\TestCase;
@ -14,32 +8,8 @@ class SearchTest extends TestCase
public function testConditionBuilder() public function testConditionBuilder()
{ {
$search = new \Clivern\Imap\Core\Search(); $search = new \Clivern\Imap\Core\Search();
$search->addCondition(new \Clivern\Imap\Core\Search\Condition\All()) $search->addCondition(new \Clivern\Imap\Core\Search\Condition\All())->addCondition(new \Clivern\Imap\Core\Search\Condition\Answered())->addCondition(new \Clivern\Imap\Core\Search\Condition\BCC("val"))->addCondition(new \Clivern\Imap\Core\Search\Condition\Before("val"))->addCondition(new \Clivern\Imap\Core\Search\Condition\Body("val"))->addCondition(new \Clivern\Imap\Core\Search\Condition\CC("val"))->addCondition(new \Clivern\Imap\Core\Search\Condition\Deleted())->addCondition(new \Clivern\Imap\Core\Search\Condition\Flagged())->addCondition(new \Clivern\Imap\Core\Search\Condition\From("val"))->addCondition(new \Clivern\Imap\Core\Search\Condition\Keyword("val"))->addCondition(new \Clivern\Imap\Core\Search\Condition\NewFlag())->addCondition(new \Clivern\Imap\Core\Search\Condition\Old())->addCondition(new \Clivern\Imap\Core\Search\Condition\On("val"))->addCondition(new \Clivern\Imap\Core\Search\Condition\Recent())->addCondition(new \Clivern\Imap\Core\Search\Condition\Seen())->addCondition(new \Clivern\Imap\Core\Search\Condition\Since("val"))->addCondition(new \Clivern\Imap\Core\Search\Condition\Subject("val"))->addCondition(new \Clivern\Imap\Core\Search\Condition\Text("val"))->addCondition(new \Clivern\Imap\Core\Search\Condition\To("val"))->addCondition(new \Clivern\Imap\Core\Search\Condition\UnAnswered())->addCondition(new \Clivern\Imap\Core\Search\Condition\UnDeleted())->addCondition(new \Clivern\Imap\Core\Search\Condition\UnFlagged())->addCondition(new \Clivern\Imap\Core\Search\Condition\UnKeyword("val"))->addCondition(new \Clivern\Imap\Core\Search\Condition\UnSeen());
->addCondition(new \Clivern\Imap\Core\Search\Condition\Answered()) $this->assertEquals($search->getConditions(), [
->addCondition(new \Clivern\Imap\Core\Search\Condition\BCC('val'))
->addCondition(new \Clivern\Imap\Core\Search\Condition\Before('val'))
->addCondition(new \Clivern\Imap\Core\Search\Condition\Body('val'))
->addCondition(new \Clivern\Imap\Core\Search\Condition\CC('val'))
->addCondition(new \Clivern\Imap\Core\Search\Condition\Deleted())
->addCondition(new \Clivern\Imap\Core\Search\Condition\Flagged())
->addCondition(new \Clivern\Imap\Core\Search\Condition\From('val'))
->addCondition(new \Clivern\Imap\Core\Search\Condition\Keyword('val'))
->addCondition(new \Clivern\Imap\Core\Search\Condition\NewFlag())
->addCondition(new \Clivern\Imap\Core\Search\Condition\Old())
->addCondition(new \Clivern\Imap\Core\Search\Condition\On('val'))
->addCondition(new \Clivern\Imap\Core\Search\Condition\Recent())
->addCondition(new \Clivern\Imap\Core\Search\Condition\Seen())
->addCondition(new \Clivern\Imap\Core\Search\Condition\Since('val'))
->addCondition(new \Clivern\Imap\Core\Search\Condition\Subject('val'))
->addCondition(new \Clivern\Imap\Core\Search\Condition\Text('val'))
->addCondition(new \Clivern\Imap\Core\Search\Condition\To('val'))
->addCondition(new \Clivern\Imap\Core\Search\Condition\UnAnswered())
->addCondition(new \Clivern\Imap\Core\Search\Condition\UnDeleted())
->addCondition(new \Clivern\Imap\Core\Search\Condition\UnFlagged())
->addCondition(new \Clivern\Imap\Core\Search\Condition\UnKeyword('val'))
->addCondition(new \Clivern\Imap\Core\Search\Condition\UnSeen());
$this->assertSame($search->getConditions(), [
'ALL', 'ALL',
'ANSWERED', 'ANSWERED',
'BCC "val"', 'BCC "val"',
@ -63,13 +33,8 @@ class SearchTest extends TestCase
'UNDELETED', 'UNDELETED',
'UNFLAGGED', 'UNFLAGGED',
'UNKEYWORD "val"', 'UNKEYWORD "val"',
'UNSEEN', 'UNSEEN'
]); ]);
$this->assertSame( $this->assertEquals((string) $search, 'ALL ANSWERED BCC "val" BEFORE "val" BODY "val" CC "val" DELETED FLAGGED FROM "val" KEYWORD "val" NEW OLD ON "val" RECENT SEEN SINCE "val" SUBJECT "val" TEXT "val" TO "val" UNANSWERED UNDELETED UNFLAGGED UNKEYWORD "val" UNSEEN');
(string) $search,
'ALL ANSWERED BCC "val" BEFORE "val" BODY "val" CC "val" DELETED FLAGGED FROM "val" KEYWORD "val" '.
'NEW OLD ON "val" RECENT SEEN SINCE "val" SUBJECT "val" TEXT "val" TO "val" UNANSWERED UNDELETED '.
'UNFLAGGED UNKEYWORD "val" UNSEEN'
);
} }
} }

View file

@ -1,8 +1,6 @@
<?php <?php
/**
/* * @author clivern <hello@clivern.com>
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
*/ */
namespace Tests; namespace Tests;
@ -10,7 +8,9 @@ namespace Tests;
use PHPUnit\Framework\TestCase; use PHPUnit\Framework\TestCase;
/** /**
* MailBox Class Test. * MailBox Class Test
*
* @package Tests
*/ */
class MailBoxTest extends TestCase class MailBoxTest extends TestCase
{ {
@ -18,4 +18,4 @@ class MailBoxTest extends TestCase
{ {
$this->assertTrue(true); $this->assertTrue(true);
} }
} }