forked from friendica/friendica-addons
Compare commits
3 commits
e1de842ffb
...
631bfd83e9
Author | SHA1 | Date | |
---|---|---|---|
|
631bfd83e9 | ||
4b31588484 | |||
|
8886c90d1e |
1 changed files with 7 additions and 11 deletions
|
@ -66,10 +66,9 @@ function mailstream_module() {}
|
||||||
/**
|
/**
|
||||||
* Adds an item in "addon features" in the admin menu of the site
|
* Adds an item in "addon features" in the admin menu of the site
|
||||||
*
|
*
|
||||||
* @param App $a App object (unused)
|
|
||||||
* @param string $o HTML form data
|
* @param string $o HTML form data
|
||||||
*/
|
*/
|
||||||
function mailstream_addon_admin(App $a, string &$o)
|
function mailstream_addon_admin(string &$o)
|
||||||
{
|
{
|
||||||
$frommail = DI::config()->get('mailstream', 'frommail');
|
$frommail = DI::config()->get('mailstream', 'frommail');
|
||||||
$template = Renderer::getMarkupTemplate('admin.tpl', 'addon/mailstream/');
|
$template = Renderer::getMarkupTemplate('admin.tpl', 'addon/mailstream/');
|
||||||
|
@ -103,14 +102,14 @@ function mailstream_addon_admin_post()
|
||||||
*/
|
*/
|
||||||
function mailstream_generate_id(string $uri): string
|
function mailstream_generate_id(string $uri): string
|
||||||
{
|
{
|
||||||
$host = DI::baseUrl()->getHostname();
|
$host = DI::baseUrl()->getHost();
|
||||||
$resource = hash('md5', $uri);
|
$resource = hash('md5', $uri);
|
||||||
$message_id = "<" . $resource . "@" . $host . ">";
|
$message_id = "<" . $resource . "@" . $host . ">";
|
||||||
Logger::debug('mailstream: Generated message ID ' . $message_id . ' for URI ' . $uri);
|
Logger::debug('mailstream: Generated message ID ' . $message_id . ' for URI ' . $uri);
|
||||||
return $message_id;
|
return $message_id;
|
||||||
}
|
}
|
||||||
|
|
||||||
function mailstream_send_hook(App $a, array $data)
|
function mailstream_send_hook(array $data)
|
||||||
{
|
{
|
||||||
$criteria = array('uid' => $data['uid'], 'contact-id' => $data['contact-id'], 'uri' => $data['uri']);
|
$criteria = array('uid' => $data['uid'], 'contact-id' => $data['contact-id'], 'uri' => $data['uri']);
|
||||||
$item = Post::selectFirst([], $criteria);
|
$item = Post::selectFirst([], $criteria);
|
||||||
|
@ -138,11 +137,10 @@ function mailstream_send_hook(App $a, array $data)
|
||||||
* mailstream is enabled and the necessary data is available, forks a
|
* mailstream is enabled and the necessary data is available, forks a
|
||||||
* workerqueue item to send the email.
|
* workerqueue item to send the email.
|
||||||
*
|
*
|
||||||
* @param App $a App object (unused)
|
|
||||||
* @param array $item content of the item (may or may not already be stored in the item table)
|
* @param array $item content of the item (may or may not already be stored in the item table)
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
function mailstream_post_hook(App $a, array &$item)
|
function mailstream_post_hook(array &$item)
|
||||||
{
|
{
|
||||||
mailstream_check_version();
|
mailstream_check_version();
|
||||||
|
|
||||||
|
@ -414,7 +412,7 @@ function mailstream_send(string $message_id, array $item, array $user): bool
|
||||||
$template = Renderer::getMarkupTemplate('mail.tpl', 'addon/mailstream/');
|
$template = Renderer::getMarkupTemplate('mail.tpl', 'addon/mailstream/');
|
||||||
$mail->AltBody = BBCode::toPlaintext($item['body']);
|
$mail->AltBody = BBCode::toPlaintext($item['body']);
|
||||||
$item['body'] = BBCode::convertForUriId($item['uri-id'], $item['body'], BBCode::CONNECTORS);
|
$item['body'] = BBCode::convertForUriId($item['uri-id'], $item['body'], BBCode::CONNECTORS);
|
||||||
$item['url'] = DI::baseUrl()->get() . '/display/' . $item['guid'];
|
$item['url'] = DI::baseUrl() . '/display/' . $item['guid'];
|
||||||
$mail->Body = Renderer::replaceMacros($template, [
|
$mail->Body = Renderer::replaceMacros($template, [
|
||||||
'$upstream' => DI::l10n()->t('Upstream'),
|
'$upstream' => DI::l10n()->t('Upstream'),
|
||||||
'$uri' => DI::l10n()->t('URI'),
|
'$uri' => DI::l10n()->t('URI'),
|
||||||
|
@ -480,11 +478,10 @@ function mailstream_convert_table_entries()
|
||||||
/**
|
/**
|
||||||
* Form for configuring mailstream features for a user
|
* Form for configuring mailstream features for a user
|
||||||
*
|
*
|
||||||
* @param App $a App object
|
|
||||||
* @param array $data Hook data array
|
* @param array $data Hook data array
|
||||||
* @throws \Friendica\Network\HTTPException\ServiceUnavailableException
|
* @throws \Friendica\Network\HTTPException\ServiceUnavailableException
|
||||||
*/
|
*/
|
||||||
function mailstream_addon_settings(App &$a, array &$data)
|
function mailstream_addon_settings(array &$data)
|
||||||
{
|
{
|
||||||
$enabled = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'mailstream', 'enabled');
|
$enabled = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'mailstream', 'enabled');
|
||||||
$address = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'mailstream', 'address');
|
$address = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'mailstream', 'address');
|
||||||
|
@ -528,11 +525,10 @@ function mailstream_addon_settings(App &$a, array &$data)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Process data submitted to user's mailstream features form
|
* Process data submitted to user's mailstream features form
|
||||||
* @param App $a
|
|
||||||
* @param array $post POST data
|
* @param array $post POST data
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
function mailstream_addon_settings_post(App $a, array $post)
|
function mailstream_addon_settings_post(array $post)
|
||||||
{
|
{
|
||||||
if (!DI::userSession()->getLocalUserId() || empty($post['mailstream-submit'])) {
|
if (!DI::userSession()->getLocalUserId() || empty($post['mailstream-submit'])) {
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue