2017-04-11 19:19:54 +00:00
|
|
|
<?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>
|
|
|
|
*/
|
|
|
|
|
2020-01-26 22:47:15 +00:00
|
|
|
use Friendica\Addon\securemail\SecureTestEmail;
|
2017-05-22 06:47:36 +00:00
|
|
|
use Friendica\App;
|
2018-12-26 07:28:16 +00:00
|
|
|
use Friendica\Core\Hook;
|
2018-10-29 23:40:18 +00:00
|
|
|
use Friendica\Core\Logger;
|
2018-10-31 14:55:15 +00:00
|
|
|
use Friendica\Core\Renderer;
|
2019-12-15 23:47:24 +00:00
|
|
|
use Friendica\DI;
|
2020-01-29 19:20:39 +00:00
|
|
|
use Friendica\Object\EMail\IEmail;
|
2017-04-11 19:19:54 +00:00
|
|
|
|
2019-02-10 15:06:45 +00:00
|
|
|
require_once __DIR__ . '/vendor/autoload.php';
|
2017-04-11 19:19:54 +00:00
|
|
|
|
2019-02-10 13:45:14 +00:00
|
|
|
function securemail_install()
|
|
|
|
{
|
|
|
|
Hook::register('addon_settings', 'addon/securemail/securemail.php', 'securemail_settings');
|
2021-05-29 18:59:51 +00:00
|
|
|
Hook::register('addon_settings_post', 'addon/securemail/securemail.php', 'securemail_settings_post', 10);
|
2017-04-11 19:19:54 +00:00
|
|
|
|
2021-05-29 18:59:51 +00:00
|
|
|
Hook::register('emailer_send_prepare', 'addon/securemail/securemail.php', 'securemail_emailer_send_prepare', 10);
|
2017-04-11 19:19:54 +00:00
|
|
|
|
2021-10-21 06:04:27 +00:00
|
|
|
Logger::notice('installed securemail');
|
2017-04-11 19:19:54 +00:00
|
|
|
}
|
|
|
|
|
2017-04-14 07:13:19 +00:00
|
|
|
/**
|
|
|
|
* @brief Build user settings form
|
|
|
|
*
|
2019-02-10 13:45:14 +00:00
|
|
|
* @link https://github.com/friendica/friendica/blob/develop/doc/Addons.md#addon_settings 'addon_settings' hook
|
2017-04-14 07:13:19 +00:00
|
|
|
*
|
2019-02-10 13:45:14 +00:00
|
|
|
* @param App $a App instance
|
2017-04-14 07:13:19 +00:00
|
|
|
* @param string $s output html
|
|
|
|
*
|
2019-02-10 13:45:14 +00:00
|
|
|
* @see App
|
2017-04-14 07:13:19 +00:00
|
|
|
*/
|
2019-02-10 13:45:14 +00:00
|
|
|
function securemail_settings(App &$a, &$s)
|
|
|
|
{
|
|
|
|
if (!local_user()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-01-18 15:50:56 +00:00
|
|
|
$enable = intval(DI::pConfig()->get(local_user(), 'securemail', 'enable'));
|
|
|
|
$publickey = DI::pConfig()->get(local_user(), 'securemail', 'pkey');
|
2019-02-10 13:45:14 +00:00
|
|
|
|
|
|
|
$t = Renderer::getMarkupTemplate('admin.tpl', 'addon/securemail/');
|
|
|
|
|
|
|
|
$s .= Renderer::replaceMacros($t, [
|
2020-01-18 19:52:33 +00:00
|
|
|
'$title' => DI::l10n()->t('"Secure Mail" Settings'),
|
|
|
|
'$submit' => DI::l10n()->t('Save Settings'),
|
|
|
|
'$test' => DI::l10n()->t('Save and send test'), //NOTE: update also in 'post'
|
|
|
|
'$enable' => ['securemail-enable', DI::l10n()->t('Enable Secure Mail'), $enable, ''],
|
2021-06-27 19:33:12 +00:00
|
|
|
'$publickey' => ['securemail-pkey', DI::l10n()->t('Public key'), $publickey, DI::l10n()->t('Your public PGP key, ascii armored format')]
|
2019-02-10 13:45:14 +00:00
|
|
|
]);
|
2017-04-11 19:19:54 +00:00
|
|
|
}
|
|
|
|
|
2017-04-14 07:13:19 +00:00
|
|
|
/**
|
|
|
|
* @brief Handle data from user settings form
|
|
|
|
*
|
2019-02-10 13:45:14 +00:00
|
|
|
* @link https://github.com/friendica/friendica/blob/develop/doc/Addons.md#addon_settings_post 'addon_settings_post' hook
|
2017-04-14 07:13:19 +00:00
|
|
|
*
|
2019-02-10 13:45:14 +00:00
|
|
|
* @param App $a App instance
|
2017-04-14 07:13:19 +00:00
|
|
|
* @param array $b hook data
|
|
|
|
*
|
2019-02-10 13:45:14 +00:00
|
|
|
* @see App
|
2017-04-14 07:13:19 +00:00
|
|
|
*/
|
2019-02-10 13:45:14 +00:00
|
|
|
function securemail_settings_post(App &$a, array &$b)
|
|
|
|
{
|
|
|
|
if (!local_user()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($_POST['securemail-submit']) {
|
2020-01-18 15:54:49 +00:00
|
|
|
DI::pConfig()->set(local_user(), 'securemail', 'pkey', trim($_POST['securemail-pkey']));
|
2019-02-10 13:45:14 +00:00
|
|
|
$enable = (!empty($_POST['securemail-enable']) ? 1 : 0);
|
2020-01-18 15:54:49 +00:00
|
|
|
DI::pConfig()->set(local_user(), 'securemail', 'enable', $enable);
|
2019-02-10 13:45:14 +00:00
|
|
|
|
2021-07-01 05:47:48 +00:00
|
|
|
if ($_POST['securemail-submit'] == 'test') {
|
2019-02-10 13:45:14 +00:00
|
|
|
|
2020-01-26 22:47:15 +00:00
|
|
|
$res = DI::emailer()->send(new SecureTestEmail(DI::app(), DI::config(), DI::pConfig(), DI::baseUrl()));
|
2019-02-10 13:45:14 +00:00
|
|
|
|
|
|
|
// revert to saved value
|
2020-01-18 15:54:49 +00:00
|
|
|
DI::pConfig()->set(local_user(), 'securemail', 'enable', $enable);
|
2019-02-10 13:45:14 +00:00
|
|
|
|
|
|
|
if ($res) {
|
2020-01-18 19:52:33 +00:00
|
|
|
info(DI::l10n()->t('Test email sent') . EOL);
|
2019-02-10 13:45:14 +00:00
|
|
|
} else {
|
2020-01-18 19:52:33 +00:00
|
|
|
notice(DI::l10n()->t('There was an error sending the test email') . EOL);
|
2019-02-10 13:45:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-04-11 19:19:54 +00:00
|
|
|
}
|
|
|
|
|
2017-04-14 07:13:19 +00:00
|
|
|
/**
|
|
|
|
* @brief Encrypt notification emails text
|
|
|
|
*
|
2019-02-10 13:45:14 +00:00
|
|
|
* @link https://github.com/friendica/friendica/blob/develop/doc/Addons.md#emailer_send_prepare 'emailer_send_prepare' hook
|
2017-04-14 07:13:19 +00:00
|
|
|
*
|
2019-02-10 13:45:14 +00:00
|
|
|
* @param App $a App instance
|
2020-01-29 19:20:39 +00:00
|
|
|
* @param IEmail $email Email
|
2017-04-14 07:13:19 +00:00
|
|
|
*
|
2019-02-10 13:45:14 +00:00
|
|
|
* @see App
|
2017-04-14 07:13:19 +00:00
|
|
|
*/
|
2020-01-29 19:20:39 +00:00
|
|
|
function securemail_emailer_send_prepare(App &$a, IEmail &$email)
|
2019-02-10 13:45:14 +00:00
|
|
|
{
|
2020-01-29 19:20:39 +00:00
|
|
|
if (empty($email->getRecipientUid())) {
|
2019-02-10 13:45:14 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-01-29 19:20:39 +00:00
|
|
|
$uid = $email->getRecipientUid();
|
2019-02-10 13:45:14 +00:00
|
|
|
|
2020-01-18 15:50:56 +00:00
|
|
|
$enable_checked = DI::pConfig()->get($uid, 'securemail', 'enable');
|
2019-02-10 13:45:14 +00:00
|
|
|
if (!$enable_checked) {
|
2020-01-31 18:43:34 +00:00
|
|
|
DI::logger()->debug('No securemail enabled.');
|
2019-02-10 13:45:14 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-01-18 15:50:56 +00:00
|
|
|
$public_key_ascii = DI::pConfig()->get($uid, 'securemail', 'pkey');
|
2019-02-10 13:45:14 +00: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);
|
|
|
|
|
2020-01-29 19:20:39 +00:00
|
|
|
$data = new OpenPGP_LiteralDataPacket($email->getMessage(true), [
|
2019-02-10 13:45:14 +00:00
|
|
|
'format' => 'u',
|
|
|
|
'filename' => 'encrypted.gpg'
|
|
|
|
]);
|
2020-01-31 18:32:16 +00:00
|
|
|
|
2020-01-29 19:20:39 +00: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 18:32:16 +00:00
|
|
|
$email = $email->withMessage($armored_encrypted, null);
|
|
|
|
|
2020-01-29 19:20:39 +00:00
|
|
|
} catch (Exception $e) {
|
|
|
|
DI::logger()->warning('Encryption failed.', ['email' => $email, 'exception' => $e]);
|
|
|
|
}
|
2017-04-11 19:19:54 +00:00
|
|
|
}
|