friendica-addons/securemail/securemail.php

150 lines
4.4 KiB
PHP
Raw Permalink Normal View History

<?php
/**
* Name: Secure Mail
* Description: Send notification mail encrypted with user-defined public GPG key
* Version: 2.0
* Author: Fabio Comuni <http://kirgroup.com/profile/fabrixxm>
*/
use Friendica\Addon\securemail\SecureTestEmail;
2017-05-22 08:47:36 +02:00
use Friendica\App;
use Friendica\Core\Hook;
use Friendica\Core\Logger;
use Friendica\Core\Renderer;
use Friendica\DI;
use Friendica\Object\EMail\IEmail;
require_once __DIR__ . '/vendor/autoload.php';
2019-02-10 14:45:14 +01:00
function securemail_install()
{
Hook::register('addon_settings', 'addon/securemail/securemail.php', 'securemail_settings');
Hook::register('addon_settings_post', 'addon/securemail/securemail.php', 'securemail_settings_post', 10);
Hook::register('emailer_send_prepare', 'addon/securemail/securemail.php', 'securemail_emailer_send_prepare', 10);
Logger::notice('installed securemail');
}
2017-04-14 09:13:19 +02:00
/**
* @brief Build user settings form
*
2019-02-10 14:45:14 +01:00
* @link https://github.com/friendica/friendica/blob/develop/doc/Addons.md#addon_settings 'addon_settings' hook
2017-04-14 09:13:19 +02:00
*
* @param array $data
2017-04-14 09:13:19 +02:00
*
2019-02-10 14:45:14 +01:00
* @see App
2017-04-14 09:13:19 +02:00
*/
function securemail_settings(array &$data)
2019-02-10 14:45:14 +01:00
{
2022-10-20 23:51:49 +02:00
if (!DI::userSession()->getLocalUserId()) {
2019-02-10 14:45:14 +01:00
return;
}
2022-10-20 23:51:49 +02:00
$enabled = intval(DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'securemail', 'enable'));
$publickey = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'securemail', 'pkey');
2019-02-10 14:45:14 +01:00
$t = Renderer::getMarkupTemplate('settings.tpl', 'addon/securemail/');
$html = Renderer::replaceMacros($t, [
'$enabled' => ['securemail-enable', DI::l10n()->t('Enable Secure Mail'), $enabled],
'$publickey' => ['securemail-pkey', DI::l10n()->t('Public key'), $publickey, DI::l10n()->t('Your public PGP key, ascii armored format')]
2019-02-10 14:45:14 +01:00
]);
$data = [
'addon' => 'securemail',
'title' => DI::l10n()->t('"Secure Mail" Settings'),
'html' => $html,
'submit' => [
'securemail-submit' => DI::l10n()->t('Save Settings'),
'securemail-test' => DI::l10n()->t('Save and send test'),
],
];
}
2017-04-14 09:13:19 +02:00
/**
* @brief Handle data from user settings form
*
2019-02-10 14:45:14 +01:00
* @link https://github.com/friendica/friendica/blob/develop/doc/Addons.md#addon_settings_post 'addon_settings_post' hook
2017-04-14 09:13:19 +02:00
*
* @param array $b hook data
*
2019-02-10 14:45:14 +01:00
* @see App
2017-04-14 09:13:19 +02:00
*/
function securemail_settings_post(array &$b)
2019-02-10 14:45:14 +01:00
{
2022-10-20 23:51:49 +02:00
if (!DI::userSession()->getLocalUserId()) {
2019-02-10 14:45:14 +01:00
return;
}
if (!empty($_POST['securemail-submit']) || !empty($_POST['securemail-test'])) {
2022-10-20 23:51:49 +02:00
DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'securemail', 'pkey', trim($_POST['securemail-pkey']));
2019-02-10 14:45:14 +01:00
$enable = (!empty($_POST['securemail-enable']) ? 1 : 0);
2022-10-20 23:51:49 +02:00
DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'securemail', 'enable', $enable);
2019-02-10 14:45:14 +01:00
if (!empty($_POST['securemail-test'])) {
$res = DI::emailer()->send(new SecureTestEmail(DI::app(), DI::config(), DI::pConfig(), DI::baseUrl()));
2019-02-10 14:45:14 +01:00
// revert to saved value
2022-10-20 23:51:49 +02:00
DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'securemail', 'enable', $enable);
2019-02-10 14:45:14 +01:00
if ($res) {
2022-10-17 23:00:03 +02:00
DI::sysmsg()->addInfo(DI::l10n()->t('Test email sent'));
2019-02-10 14:45:14 +01:00
} else {
2022-10-17 23:00:03 +02:00
DI::sysmsg()->addNotice(DI::l10n()->t('There was an error sending the test email'));
2019-02-10 14:45:14 +01:00
}
}
}
}
2017-04-14 09:13:19 +02:00
/**
* @brief Encrypt notification emails text
*
2019-02-10 14:45:14 +01:00
* @link https://github.com/friendica/friendica/blob/develop/doc/Addons.md#emailer_send_prepare 'emailer_send_prepare' hook
2017-04-14 09:13:19 +02:00
*
* @param IEmail $email Email
2017-04-14 09:13:19 +02:00
*
2019-02-10 14:45:14 +01:00
* @see App
2017-04-14 09:13:19 +02:00
*/
function securemail_emailer_send_prepare(IEmail &$email)
2019-02-10 14:45:14 +01:00
{
if (empty($email->getRecipientUid())) {
2019-02-10 14:45:14 +01:00
return;
}
$uid = $email->getRecipientUid();
2019-02-10 14:45:14 +01:00
$enable_checked = DI::pConfig()->get($uid, 'securemail', 'enable');
2019-02-10 14:45:14 +01:00
if (!$enable_checked) {
2020-01-31 19:43:34 +01:00
DI::logger()->debug('No securemail enabled.');
2019-02-10 14:45:14 +01:00
return;
}
$public_key_ascii = DI::pConfig()->get($uid, 'securemail', 'pkey');
2019-02-10 14:45:14 +01:00
preg_match('/-----BEGIN ([A-Za-z ]+)-----/', $public_key_ascii, $matches);
$marker = empty($matches[1]) ? 'MESSAGE' : $matches[1];
$public_key = OpenPGP::unarmor($public_key_ascii, $marker);
$key = OpenPGP_Message::parse($public_key);
$data = new OpenPGP_LiteralDataPacket($email->getMessage(true), [
2019-02-10 14:45:14 +01:00
'format' => 'u',
'filename' => 'encrypted.gpg'
]);
2020-01-31 19:32:16 +01:00
try {
$encrypted = OpenPGP_Crypt_Symmetric::encrypt($key, new OpenPGP_Message([$data]));
$armored_encrypted = wordwrap(
OpenPGP::enarmor($encrypted->to_bytes(), 'PGP MESSAGE'),
64,
"\n",
true
);
2020-01-31 19:32:16 +01:00
$email = $email->withMessage($armored_encrypted, null);
} catch (Exception $e) {
DI::logger()->warning('Encryption failed.', ['email' => $email, 'exception' => $e]);
}
}