mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-04 06:57:03 +03:00
343 lines
9.2 KiB
PHP
343 lines
9.2 KiB
PHP
<?php
|
|
|
|
namespace RainLoop\Actions;
|
|
|
|
use RainLoop\Enumerations\Capa;
|
|
use RainLoop\Exceptions\ClientException;
|
|
use RainLoop\Notifications;
|
|
use MailSo\Imap\Enumerations\FolderType;
|
|
|
|
trait Folders
|
|
{
|
|
|
|
/**
|
|
* Appends uploaded rfc822 message to mailbox
|
|
* @throws \MailSo\RuntimeException
|
|
*/
|
|
public function DoFolderAppend(): array
|
|
{
|
|
$oAccount = $this->initMailClientConnection();
|
|
|
|
$sFolderFullName = $this->GetActionParam('folder', '');
|
|
|
|
if (!$this->oConfig->Get('labs', 'allow_message_append', false)) {
|
|
return $this->FalseResponse(999, 'Permission denied');
|
|
}
|
|
|
|
if (empty($_FILES['appendFile'])) {
|
|
return $this->FalseResponse(999, 'No file');
|
|
}
|
|
|
|
if (\UPLOAD_ERR_OK != $_FILES['appendFile']['error']) {
|
|
return $this->FalseResponse($iErrorCode, \RainLoop\Enumerations\UploadError::getMessage($iErrorCode));
|
|
}
|
|
|
|
if ($oAccount && !empty($sFolderFullName) && \is_uploaded_file($_FILES['appendFile']['tmp_name'])) {
|
|
$sSavedName = 'append-post-' . \md5($sFolderFullName . $_FILES['appendFile']['name'] . $_FILES['appendFile']['tmp_name']);
|
|
if ($this->FilesProvider()->MoveUploadedFile($oAccount, $sSavedName, $_FILES['appendFile']['tmp_name'])) {
|
|
$iMessageStreamSize = $this->FilesProvider()->FileSize($oAccount, $sSavedName);
|
|
$rMessageStream = $this->FilesProvider()->GetFile($oAccount, $sSavedName);
|
|
$this->MailClient()->MessageAppendStream($rMessageStream, $iMessageStreamSize, $sFolderFullName);
|
|
$this->FilesProvider()->Clear($oAccount, $sSavedName);
|
|
return $this->TrueResponse();
|
|
}
|
|
}
|
|
return $this->FalseResponse(999);
|
|
}
|
|
|
|
public function DoFolders() : array
|
|
{
|
|
$oAccount = $this->initMailClientConnection();
|
|
|
|
$HideUnsubscribed = false;
|
|
$oSettingsLocal = $this->SettingsProvider(true)->Load($oAccount);
|
|
if ($oSettingsLocal instanceof \RainLoop\Settings) {
|
|
$HideUnsubscribed = (bool) $oSettingsLocal->GetConf('HideUnsubscribed', $HideUnsubscribed);
|
|
}
|
|
|
|
$oFolderCollection = $this->MailClient()->Folders('', '*', $HideUnsubscribed);
|
|
|
|
if ($oFolderCollection) {
|
|
$aQuota = null;
|
|
if ($this->GetCapa(Capa::QUOTA)) {
|
|
try {
|
|
// $aQuota = $this->ImapClient()->Quota();
|
|
$aQuota = $this->ImapClient()->QuotaRoot();
|
|
} catch (\Throwable $oException) {
|
|
// ignore
|
|
}
|
|
}
|
|
|
|
$aCapabilities = \array_values(\array_filter($this->ImapClient()->Capability(), function ($item) {
|
|
return !\preg_match('/^(IMAP|AUTH|LOGIN|SASL)/', $item);
|
|
}));
|
|
|
|
$oFolderCollection = \array_merge(
|
|
$oFolderCollection->jsonSerialize(),
|
|
array(
|
|
'quotaUsage' => $aQuota ? $aQuota[0] * 1024 : null,
|
|
'quotaLimit' => $aQuota ? $aQuota[1] * 1024 : null,
|
|
'namespace' => $this->ImapClient()->GetPersonalNamespace(),
|
|
'capabilities' => $aCapabilities
|
|
)
|
|
);
|
|
}
|
|
|
|
return $this->DefaultResponse($oFolderCollection);
|
|
}
|
|
|
|
public function DoFolderCreate() : array
|
|
{
|
|
$this->initMailClientConnection();
|
|
|
|
try
|
|
{
|
|
$oFolder = $this->MailClient()->FolderCreate(
|
|
$this->GetActionParam('folder', ''),
|
|
$this->GetActionParam('parent', ''),
|
|
!empty($this->GetActionParam('subscribe', 0))
|
|
);
|
|
|
|
// FolderInformation(string $sFolderName, int $iPrevUidNext = 0, array $aUids = array())
|
|
return $this->DefaultResponse($oFolder);
|
|
}
|
|
catch (\Throwable $oException)
|
|
{
|
|
throw new ClientException(Notifications::CantCreateFolder, $oException);
|
|
}
|
|
}
|
|
|
|
public function DoFolderSetMetadata() : array
|
|
{
|
|
$this->initMailClientConnection();
|
|
$sFolderFullName = $this->GetActionParam('folder');
|
|
$sMetadataKey = $this->GetActionParam('key');
|
|
if ($sFolderFullName && $sMetadataKey) {
|
|
$this->ImapClient()->FolderSetMetadata($sFolderFullName, [
|
|
$sMetadataKey => $this->GetActionParam('value') ?: null
|
|
]);
|
|
}
|
|
return $this->TrueResponse();
|
|
}
|
|
|
|
public function DoFolderSubscribe() : array
|
|
{
|
|
$this->initMailClientConnection();
|
|
|
|
$sFolderFullName = $this->GetActionParam('folder', '');
|
|
$bSubscribe = !empty($this->GetActionParam('subscribe', 0));
|
|
|
|
try
|
|
{
|
|
$this->ImapClient()->{$bSubscribe ? 'FolderSubscribe' : 'FolderUnsubscribe'}($sFolderFullName);
|
|
}
|
|
catch (\Throwable $oException)
|
|
{
|
|
throw new ClientException(
|
|
$bSubscribe ? Notifications::CantSubscribeFolder : Notifications::CantUnsubscribeFolder,
|
|
$oException
|
|
);
|
|
}
|
|
|
|
return $this->TrueResponse();
|
|
}
|
|
|
|
public function DoFolderCheckable() : array
|
|
{
|
|
$oAccount = $this->getAccountFromToken();
|
|
|
|
$sFolderFullName = $this->GetActionParam('folder', '');
|
|
|
|
$oSettingsLocal = $this->SettingsProvider(true)->Load($oAccount);
|
|
|
|
$aCheckableFolder = \json_decode($oSettingsLocal->GetConf('CheckableFolder', '[]'));
|
|
|
|
if (!\is_array($aCheckableFolder)) {
|
|
$aCheckableFolder = array();
|
|
}
|
|
|
|
if (!empty($this->GetActionParam('checkable', '0'))) {
|
|
$aCheckableFolder[] = $sFolderFullName;
|
|
} else {
|
|
$aCheckableFolderNew = array();
|
|
foreach ($aCheckableFolder as $sFolder) {
|
|
if ($sFolder !== $sFolderFullName) {
|
|
$aCheckableFolderNew[] = $sFolder;
|
|
}
|
|
}
|
|
$aCheckableFolder = $aCheckableFolderNew;
|
|
}
|
|
|
|
$aCheckableFolder = \array_unique($aCheckableFolder);
|
|
|
|
$oSettingsLocal->SetConf('CheckableFolder', \json_encode($aCheckableFolder));
|
|
|
|
return $this->DefaultResponse($this->SettingsProvider(true)->Save($oAccount, $oSettingsLocal));
|
|
}
|
|
|
|
/**
|
|
* @throws \MailSo\RuntimeException
|
|
*/
|
|
public function DoFolderMove() : array
|
|
{
|
|
$this->initMailClientConnection();
|
|
|
|
try
|
|
{
|
|
$this->MailClient()->FolderMove(
|
|
$this->GetActionParam('folder', ''),
|
|
$this->GetActionParam('newFolder', ''),
|
|
!empty($this->GetActionParam('subscribe', 1))
|
|
);
|
|
}
|
|
catch (\Throwable $oException)
|
|
{
|
|
throw new ClientException(Notifications::CantRenameFolder, $oException);
|
|
}
|
|
|
|
return $this->TrueResponse();
|
|
}
|
|
|
|
/**
|
|
* @throws \MailSo\RuntimeException
|
|
*/
|
|
public function DoFolderRename() : array
|
|
{
|
|
$this->initMailClientConnection();
|
|
|
|
$sName = $this->GetActionParam('newFolderName', '');
|
|
try
|
|
{
|
|
$sFullName = $this->MailClient()->FolderRename(
|
|
$this->GetActionParam('folder', ''),
|
|
$sName,
|
|
!empty($this->GetActionParam('subscribe', 1))
|
|
);
|
|
}
|
|
catch (\Throwable $oException)
|
|
{
|
|
throw new ClientException(Notifications::CantRenameFolder, $oException);
|
|
}
|
|
|
|
// FolderInformation(string $sFolderName, int $iPrevUidNext = 0, array $aUids = array())
|
|
return $this->DefaultResponse(array(
|
|
'name' => $sName,
|
|
'fullName' => $sFullName,
|
|
));
|
|
}
|
|
|
|
/**
|
|
* @throws \MailSo\RuntimeException
|
|
*/
|
|
public function DoFolderDelete() : array
|
|
{
|
|
$this->initMailClientConnection();
|
|
|
|
try
|
|
{
|
|
$this->ImapClient()->FolderDelete($this->GetActionParam('folder', ''));
|
|
}
|
|
catch (\MailSo\Mail\Exceptions\NonEmptyFolder $oException)
|
|
{
|
|
throw new ClientException(Notifications::CantDeleteNonEmptyFolder, $oException);
|
|
}
|
|
catch (\Throwable $oException)
|
|
{
|
|
throw new ClientException(Notifications::CantDeleteFolder, $oException);
|
|
}
|
|
|
|
return $this->TrueResponse();
|
|
}
|
|
|
|
/**
|
|
* @throws \MailSo\RuntimeException
|
|
*/
|
|
public function DoFolderClear() : array
|
|
{
|
|
$this->initMailClientConnection();
|
|
|
|
try
|
|
{
|
|
$this->ImapClient()->FolderClear($this->GetActionParam('folder', ''));
|
|
}
|
|
catch (\Throwable $oException)
|
|
{
|
|
throw new ClientException(Notifications::MailServerError, $oException);
|
|
}
|
|
|
|
return $this->TrueResponse();
|
|
}
|
|
|
|
/**
|
|
* @throws \MailSo\RuntimeException
|
|
*/
|
|
public function DoFolderInformation() : array
|
|
{
|
|
$this->initMailClientConnection();
|
|
|
|
try
|
|
{
|
|
return $this->DefaultResponse($this->MailClient()->FolderInformation(
|
|
$this->GetActionParam('folder', ''),
|
|
(int) $this->GetActionParam('uidNext', 0),
|
|
new \MailSo\Imap\SequenceSet($this->GetActionParam('flagsUids', []))
|
|
));
|
|
}
|
|
catch (\Throwable $oException)
|
|
{
|
|
throw new ClientException(Notifications::MailServerError, $oException);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @throws \MailSo\RuntimeException
|
|
*/
|
|
public function DoFolderInformationMultiply() : array
|
|
{
|
|
$aResult = array();
|
|
|
|
$aFolders = $this->GetActionParam('folders', null);
|
|
if (\is_array($aFolders)) {
|
|
$this->initMailClientConnection();
|
|
|
|
$aFolders = \array_unique($aFolders);
|
|
foreach ($aFolders as $sFolder) {
|
|
if (\strlen($sFolder) && 'INBOX' !== \strtoupper($sFolder)) {
|
|
try
|
|
{
|
|
$aInboxInformation = $this->MailClient()->FolderInformation($sFolder);
|
|
if (isset($aInboxInformation['folder'])) {
|
|
$aResult[] = [
|
|
'name' => $aInboxInformation['folder'],
|
|
'etag' => $aInboxInformation['etag'],
|
|
'totalEmails' => $aInboxInformation['totalEmails'],
|
|
'unreadEmails' => $aInboxInformation['unreadEmails'],
|
|
];
|
|
}
|
|
}
|
|
catch (\Throwable $oException)
|
|
{
|
|
$this->Logger()->WriteException($oException);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return $this->DefaultResponse($aResult);
|
|
}
|
|
|
|
public function DoSystemFoldersUpdate() : array
|
|
{
|
|
$oAccount = $this->getAccountFromToken();
|
|
|
|
$oSettingsLocal = $this->SettingsProvider(true)->Load($oAccount);
|
|
|
|
$oSettingsLocal->SetConf('SentFolder', $this->GetActionParam('sent', ''));
|
|
$oSettingsLocal->SetConf('DraftsFolder', $this->GetActionParam('drafts', ''));
|
|
$oSettingsLocal->SetConf('JunkFolder', $this->GetActionParam('junk', ''));
|
|
$oSettingsLocal->SetConf('TrashFolder', $this->GetActionParam('trash', ''));
|
|
$oSettingsLocal->SetConf('ArchiveFolder', $this->GetActionParam('archive', ''));
|
|
|
|
return $this->DefaultResponse($this->SettingsProvider(true)->Save($oAccount, $oSettingsLocal));
|
|
}
|
|
}
|