X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModel%2FMail.php;h=2670a5885f2d8ef57dde74d9fcc0dd723b0ab020;hb=b3f71d174c2f64d4bb527a6343cc4ba88f410a42;hp=292d797b85415018b63535a8826da8f6595683ce;hpb=7bf00984ec7cb6e085242ff50af7fd2bd1de2711;p=friendica.git diff --git a/src/Model/Mail.php b/src/Model/Mail.php index 292d797b85..2670a5885f 100644 --- a/src/Model/Mail.php +++ b/src/Model/Mail.php @@ -1,19 +1,32 @@ . + * */ + namespace Friendica\Model; -use Friendica\Core\L10n; use Friendica\Core\Logger; use Friendica\Core\System; use Friendica\Core\Worker; use Friendica\DI; -use Friendica\Model\Item; -use Friendica\Model\Photo; use Friendica\Database\DBA; -use Friendica\Network\Probe; +use Friendica\Model\Notify\Type; use Friendica\Protocol\Activity; use Friendica\Util\DateTimeFormat; use Friendica\Worker\Delivery; @@ -71,19 +84,12 @@ class Mail // send notifications. $notif_params = [ - 'type' => NOTIFY_MAIL, - 'notify_flags' => $user['notify-flags'], - 'language' => $user['language'], - 'to_name' => $user['username'], - 'to_email' => $user['email'], - 'uid' => $user['uid'], - 'item' => $msg, - 'parent' => 0, - 'source_name' => $msg['from-name'], - 'source_link' => $msg['from-url'], - 'source_photo' => $msg['from-photo'], - 'verb' => Activity::POST, - 'otype' => 'mail' + 'type' => Type::MAIL, + 'otype' => Notify\ObjectType::MAIL, + 'verb' => Activity::POST, + 'uid' => $user['uid'], + 'cid' => $msg['contact-id'], + 'link' => DI::baseUrl() . '/message/' . $msg['id'], ]; notification($notif_params); @@ -112,13 +118,16 @@ class Mail } if (!strlen($subject)) { - $subject = L10n::t('[no subject]'); + $subject = DI::l10n()->t('[no subject]'); } $me = DBA::selectFirst('contact', [], ['uid' => local_user(), 'self' => true]); - $contact = DBA::selectFirst('contact', [], ['id' => $recipient, 'uid' => local_user()]); + if (!DBA::isResult($me)) { + return -2; + } - if (!(count($me) && (count($contact)))) { + $contact = DBA::selectFirst('contact', [], ['id' => $recipient, 'uid' => local_user()]); + if (!DBA::isResult($contact)) { return -2; } @@ -247,14 +256,13 @@ class Mail } if (!strlen($subject)) { - $subject = L10n::t('[no subject]'); + $subject = DI::l10n()->t('[no subject]'); } $guid = System::createUUID(); $uri = Item::newURI(local_user(), $guid); - $me = Probe::uri($replyto); - + $me = Contact::getByURL($replyto); if (!$me['name']) { return -2; } @@ -263,10 +271,7 @@ class Mail $recip_handle = $recipient['nickname'] . '@' . substr(DI::baseUrl(), strpos(DI::baseUrl(), '://') + 3); - $sender_nick = basename($replyto); - $sender_host = substr($replyto, strpos($replyto, '://') + 3); - $sender_host = substr($sender_host, 0, strpos($sender_host, '/')); - $sender_handle = $sender_nick . '@' . $sender_host; + $sender_handle = $me['addr']; $handles = $recip_handle . ';' . $sender_handle; @@ -299,7 +304,7 @@ class Mail 'reply' => 0, 'replied' => 0, 'uri' => $uri, - 'parent-uri' => $replyto, + 'parent-uri' => $me['url'], 'created' => DateTimeFormat::utcNow(), 'unknown' => 1 ]