mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 02:44:53 +00:00
Reintroduce Webklex IMAP for ticket processing as PHP-IMAP is no longer being developed. This is optional for now and considered beta can be found in cron/ticket_email_parser.php
This commit is contained in:
57
plugins/vendor/webklex/php-imap/examples/custom_attachment_mask.php
vendored
Normal file
57
plugins/vendor/webklex/php-imap/examples/custom_attachment_mask.php
vendored
Normal file
@@ -0,0 +1,57 @@
|
||||
<?php
|
||||
/*
|
||||
* File: custom_message_mask.php
|
||||
* Category: Example
|
||||
* Author: M.Goldenbaum
|
||||
* Created: 14.03.19 18:47
|
||||
* Updated: -
|
||||
*
|
||||
* Description:
|
||||
* -
|
||||
*/
|
||||
|
||||
class CustomAttachmentMask extends \Webklex\PHPIMAP\Support\Masks\AttachmentMask {
|
||||
|
||||
/**
|
||||
* New custom method which can be called through a mask
|
||||
* @return string
|
||||
*/
|
||||
public function token(): string {
|
||||
return implode('-', [$this->id, $this->getMessage()->getUid(), $this->name]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Custom attachment saving method
|
||||
* @return bool
|
||||
*/
|
||||
public function custom_save(): bool {
|
||||
$path = "foo".DIRECTORY_SEPARATOR."bar".DIRECTORY_SEPARATOR;
|
||||
$filename = $this->token();
|
||||
|
||||
return file_put_contents($path.$filename, $this->getContent()) !== false;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
$cm = new \Webklex\PHPIMAP\ClientManager('path/to/config/imap.php');
|
||||
|
||||
/** @var \Webklex\PHPIMAP\Client $client */
|
||||
$client = $cm->account('default');
|
||||
$client->connect();
|
||||
$client->setDefaultAttachmentMask(CustomAttachmentMask::class);
|
||||
|
||||
/** @var \Webklex\PHPIMAP\Folder $folder */
|
||||
$folder = $client->getFolder('INBOX');
|
||||
|
||||
/** @var \Webklex\PHPIMAP\Message $message */
|
||||
$message = $folder->query()->limit(1)->get()->first();
|
||||
|
||||
/** @var \Webklex\PHPIMAP\Attachment $attachment */
|
||||
$attachment = $message->getAttachments()->first();
|
||||
|
||||
/** @var CustomAttachmentMask $masked_attachment */
|
||||
$masked_attachment = $attachment->mask();
|
||||
|
||||
echo 'Token for uid ['.$masked_attachment->getMessage()->getUid().']: '.$masked_attachment->token();
|
||||
|
||||
$masked_attachment->custom_save();
|
||||
Reference in New Issue
Block a user