From: Michael <heluecht@pirati.ca>
Date: Tue, 19 Oct 2021 19:45:36 +0000 (+0000)
Subject: Replace "notification" call with new function, removing enotify.php
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=2f1f6f6fb2c155a02270a20b2955e063152244b3;p=friendica.git

Replace "notification" call with new function, removing enotify.php
---

diff --git a/composer.json b/composer.json
index 1a3e841fe2..46f3f3bf3a 100644
--- a/composer.json
+++ b/composer.json
@@ -85,7 +85,6 @@
 			"Friendica\\Addon\\": "addon/"
 		},
 		"files": [
-			"include/enotify.php",
 			"boot.php"
 		]
 	},
diff --git a/include/enotify.php b/include/enotify.php
deleted file mode 100644
index ee960c8680..0000000000
--- a/include/enotify.php
+++ /dev/null
@@ -1,38 +0,0 @@
-<?php
-/**
- * @copyright Copyright (C) 2010-2021, the Friendica project
- *
- * @license GNU AGPL version 3 or any later version
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <https://www.gnu.org/licenses/>.
- *
- */
-
-use Friendica\DI;
-
-/**
- * Creates a notification entry and possibly sends a mail
- *
- * @param array $params Array with the elements:
- *                      type, event, otype, activity, verb, uid, cid, item, link,
- *                      source_name, source_mail, source_nick, source_link, source_photo,
- *                      show_in_notification_page
- *
- * @return bool
- * @throws \Friendica\Network\HTTPException\InternalServerErrorException
- */
-function notification($params)
-{
-	return DI::notify()->createFromArray($params);
-}
diff --git a/mod/item.php b/mod/item.php
index bfb865b790..1309dce47e 100644
--- a/mod/item.php
+++ b/mod/item.php
@@ -777,7 +777,7 @@ function item_post(App $a) {
 	// These notifications are sent if someone else is commenting other your wall
 	if ($contact_record != $author) {
 		if ($toplevel_item_id) {
-			notification([
+			DI::notify()->createFromArray([
 				'type'  => Notification\Type::COMMENT,
 				'otype' => Notification\ObjectType::ITEM,
 				'verb'  => Activity::POST,
@@ -787,7 +787,7 @@ function item_post(App $a) {
 				'link'  => DI::baseUrl() . '/display/' . urlencode($datarray['guid']),
 			]);
 		} elseif (empty($forum_contact)) {
-			notification([
+			DI::notify()->createFromArray([
 				'type'  => Notification\Type::WALL,
 				'otype' => Notification\ObjectType::ITEM,
 				'verb'  => Activity::POST,
diff --git a/src/Model/Contact.php b/src/Model/Contact.php
index 9aed40cf59..fc9c11746e 100644
--- a/src/Model/Contact.php
+++ b/src/Model/Contact.php
@@ -2719,7 +2719,7 @@ class Contact
 				if (($user['notify-flags'] & Notification\Type::INTRO) &&
 					in_array($user['page-flags'], [User::PAGE_FLAGS_NORMAL])) {
 
-					notification([
+					DI::notify()->createFromArray([
 						'type'  => Notification\Type::INTRO,
 						'otype' => Notification\ObjectType::INTRO,
 						'verb'  => ($sharing ? Activity::FRIEND : Activity::FOLLOW),
diff --git a/src/Model/Mail.php b/src/Model/Mail.php
index 75515c5df5..f9c197ffa0 100644
--- a/src/Model/Mail.php
+++ b/src/Model/Mail.php
@@ -104,7 +104,7 @@ class Mail
 				'link'  => DI::baseUrl() . '/message/' . $msg['id'],
 			];
 
-			notification($notif_params);
+			DI::notify()->createFromArray($notif_params);
 
 			Logger::info('Mail is processed, notification was sent.', ['id' => $msg['id'], 'uri' => $msg['uri']]);
 		}
diff --git a/src/Module/Register.php b/src/Module/Register.php
index 976e43a5d4..d93c8754fe 100644
--- a/src/Module/Register.php
+++ b/src/Module/Register.php
@@ -365,7 +365,7 @@ class Register extends BaseModule
 
 			// send notification to admins
 			while ($admin = DBA::fetch($admins_stmt)) {
-				\notification([
+				DI::notify()->createFromArray([
 					'type'         => Model\Notification\Type::SYSTEM,
 					'event'        => 'SYSTEM_REGISTER_REQUEST',
 					'uid'          => $admin['uid'],
diff --git a/src/Protocol/DFRN.php b/src/Protocol/DFRN.php
index 081b7f2a37..8c511c2cd5 100644
--- a/src/Protocol/DFRN.php
+++ b/src/Protocol/DFRN.php
@@ -1371,7 +1371,7 @@ class DFRN
 			'note' => $suggest['body'], 'hash' => $hash, 'datetime' => DateTimeFormat::utcNow(), 'blocked' => false];
 		DBA::insert('intro', $fields);
 
-		notification([
+		DI::notify()->createFromArray([
 			'type'  => Notification\Type::SUGGEST,
 			'otype' => Notification\ObjectType::INTRO,
 			'verb'  => Activity::REQ_FRIEND,
@@ -1576,7 +1576,7 @@ class DFRN
 				$item['parent'] = $parent['id'];
 
 				// send a notification
-				notification(
+				DI::notify()->createFromArray(
 					[
 					"type"     => Notification\Type::POKE,
 					"otype"    => Notification\ObjectType::PERSON,