mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-10 17:13:38 +08:00
94 lines
2.4 KiB
PHP
94 lines
2.4 KiB
PHP
<?php
|
|
|
|
class KolabPlugin extends \RainLoop\Plugins\AbstractPlugin
|
|
{
|
|
const
|
|
NAME = 'Kolab',
|
|
VERSION = '1.1',
|
|
RELEASE = '2022-05-20',
|
|
CATEGORY = 'Contacts',
|
|
DESCRIPTION = 'Use an Address Book of Kolab.',
|
|
REQUIRED = '2.16.2';
|
|
|
|
public function Init() : void
|
|
{
|
|
// \RainLoop\Api::Config()->Set('contacts', 'enable', true);
|
|
if (\RainLoop\Api::Config()->Get('contacts', 'enable', false)) {
|
|
$this->UseLangs(true);
|
|
|
|
$this->addHook('filter.app-data', 'FilterAppData');
|
|
$this->addHook('main.fabrica', 'MainFabrica');
|
|
|
|
$this->addJs('js/settings.js');
|
|
$this->addTemplate('templates/KolabSettings.html');
|
|
$this->addJsonHook('KolabFolder', 'DoKolabFolder');
|
|
}
|
|
}
|
|
|
|
public function Supported() : string
|
|
{
|
|
return '';
|
|
}
|
|
|
|
private function Account() : \RainLoop\Model\Account
|
|
{
|
|
return \RainLoop\Api::Actions()->getAccountFromToken();
|
|
}
|
|
|
|
private function SettingsProvider() : \RainLoop\Providers\Settings
|
|
{
|
|
return \RainLoop\Api::Actions()->SettingsProvider(true);
|
|
}
|
|
|
|
private function Settings() : \RainLoop\Settings
|
|
{
|
|
return $this->SettingsProvider()->Load($this->Account());
|
|
}
|
|
|
|
public function DoKolabFolder() : array
|
|
{
|
|
// \error_log(\print_r($this->Manager()->Actions()->GetActionParams(), 1));
|
|
$sValue = $this->jsonParam('contact');
|
|
$oSettings = $this->Settings();
|
|
if (\is_string($sValue)) {
|
|
$oSettings->SetConf('KolabContactFolder', $sValue);
|
|
$this->SettingsProvider()->Save($this->Account(), $oSettings);
|
|
}
|
|
return $this->jsonResponse(__FUNCTION__, true);
|
|
}
|
|
|
|
public function FilterAppData($bAdmin, &$aResult) : void
|
|
{
|
|
// if ImapClient->IsSupported('METADATA')
|
|
if (!$bAdmin && \is_array($aResult) && !empty($aResult['Auth'])) {
|
|
$aResult['Capa']['Kolab'] = true;
|
|
$aResult['KolabContactFolder'] = (string) $this->Settings()->GetConf('KolabContactFolder', '');
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param mixed $mResult
|
|
*/
|
|
public function MainFabrica(string $sName, &$mResult)
|
|
{
|
|
/*
|
|
if ('suggestions' === $sName) {
|
|
if (!\is_array($mResult)) {
|
|
$mResult = array();
|
|
}
|
|
// $sFolder = \trim($this->Config()->Get('plugin', 'mailbox', ''));
|
|
// if ($sFolder) {
|
|
require_once __DIR__ . '/KolabContactsSuggestions.php';
|
|
$mResult[] = new KolabContactsSuggestions();
|
|
// }
|
|
}
|
|
*/
|
|
if ('address-book' === $sName) {
|
|
$sFolderName = $this->Settings()->GetConf('KolabContactFolder', '');
|
|
if ($sFolderName) {
|
|
require_once __DIR__ . '/KolabAddressBook.php';
|
|
$mResult = new KolabAddressBook($sFolderName);
|
|
}
|
|
}
|
|
}
|
|
}
|