]> git.mxchange.org Git - friendica.git/commitdiff
Move Notify::TYPE_MAIL
authornupplaPhil <admin+github@philipp.info>
Tue, 4 Feb 2020 21:10:19 +0000 (22:10 +0100)
committernupplaPhil <admin+github@philipp.info>
Wed, 5 Feb 2020 20:41:02 +0000 (21:41 +0100)
boot.php
include/enotify.php
mod/message.php
mod/ping.php
mod/settings.php
src/Model/Mail.php
src/Model/Notify/Type.php
src/Module/Delegation.php

index eafbc8da98fcd53f8c6bd092f80099431156a7a1..4c16f59d60c33ca7ba1c51e20cf9837d7de977f1 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -140,7 +140,6 @@ define('MAX_LIKERS',    75);
  * Email notification options
  * @{
  */
-define('NOTIFY_MAIL',        16);
 define('NOTIFY_SUGGEST',     32);
 define('NOTIFY_PROFILE',     64);
 define('NOTIFY_TAGSELF',    128);
index 4c4e7e10d41d985b14bd5394ccdf6f83389ff637..ad141e1c47a50d3e4c136688dadc92e229a644f2 100644 (file)
@@ -102,7 +102,7 @@ function notification($params)
        $hsitelink = '';
        $itemlink  = '';
 
-       if ($params['type'] == NOTIFY_MAIL) {
+       if ($params['type'] == Notify\Type::MAIL) {
                $itemlink = $siteurl.'/message/'.$params['item']['id'];
                $params["link"] = $itemlink;
 
index d1d3e89df4c47109e8dbdf56c79905387e7a410e..bba530ca5ddf269553343f29a0279f6e562f6831 100644 (file)
@@ -13,6 +13,7 @@ use Friendica\Database\DBA;
 use Friendica\DI;
 use Friendica\Model\Contact;
 use Friendica\Model\Mail;
+use Friendica\Model\Notify\Type;
 use Friendica\Module\Security\Login;
 use Friendica\Util\DateTimeFormat;
 use Friendica\Util\Proxy as ProxyUtils;
@@ -338,10 +339,10 @@ function message_content(App $a)
 
                        if ($message['convid']) {
                                // Clear Diaspora private message notifications
-                               DBA::update('notify', ['seen' => 1], ['type' => NOTIFY_MAIL, 'parent' => $message['convid'], 'uid' => local_user()]);
+                               DBA::update('notify', ['seen' => 1], ['type' => Type::MAIL, 'parent' => $message['convid'], 'uid' => local_user()]);
                        }
                        // Clear DFRN private message notifications
-                       DBA::update('notify', ['seen' => 1], ['type' => NOTIFY_MAIL, 'parent' => $message['parent-uri'], 'uid' => local_user()]);
+                       DBA::update('notify', ['seen' => 1], ['type' => Type::MAIL, 'parent' => $message['parent-uri'], 'uid' => local_user()]);
                } else {
                        $messages = false;
                }
index 580d82a95fbd174c705f4891f32d5acec11032c8..f91a1753cee2b1e47783a80bde3f07d050c4345c 100644 (file)
@@ -405,7 +405,7 @@ function ping_get_notifications($uid)
                        AND $seensql `notify`.`seen` ORDER BY `notify`.`date` $order LIMIT %d, 50",
                        intval($uid),
                        intval(Type::INTRO),
-                       intval(NOTIFY_MAIL),
+                       intval(Type::MAIL),
                        intval($offset)
                );
 
index 36350185294dc185defe5318bbfadfa9494a0d8a..7ae0f6479e1904ee4053f9eafdd3f8c6ec7646a5 100644 (file)
@@ -1234,7 +1234,7 @@ function settings_content(App $a)
                '$notify2'      => ['notify2', DI::l10n()->t('Your introductions are confirmed'), ($notify & Type::CONFIRM), Type::CONFIRM, ''],
                '$notify3'      => ['notify3', DI::l10n()->t('Someone writes on your profile wall'), ($notify & Type::WALL), Type::WALL, ''],
                '$notify4'      => ['notify4', DI::l10n()->t('Someone writes a followup comment'), ($notify & Type::COMMENT), Type::COMMENT, ''],
-               '$notify5'      => ['notify5', DI::l10n()->t('You receive a private message'), ($notify & NOTIFY_MAIL), NOTIFY_MAIL, ''],
+               '$notify5'      => ['notify5', DI::l10n()->t('You receive a private message'), ($notify & Type::MAIL), Type::MAIL, ''],
                '$notify6'  => ['notify6', DI::l10n()->t('You receive a friend suggestion'), ($notify & NOTIFY_SUGGEST), NOTIFY_SUGGEST, ''],
                '$notify7'  => ['notify7', DI::l10n()->t('You are tagged in a post'), ($notify & NOTIFY_TAGSELF), NOTIFY_TAGSELF, ''],
                '$notify8'  => ['notify8', DI::l10n()->t('You are poked/prodded/etc. in a post'), ($notify & NOTIFY_POKE), NOTIFY_POKE, ''],
index de351db4aae333ef75c1c96853be22640800ee0c..9735a795a2322c66e0b045ad65b5f028c0716e5c 100644 (file)
@@ -10,6 +10,7 @@ use Friendica\Core\System;
 use Friendica\Core\Worker;
 use Friendica\DI;
 use Friendica\Database\DBA;
+use Friendica\Model\Notify\Type;
 use Friendica\Network\Probe;
 use Friendica\Protocol\Activity;
 use Friendica\Util\DateTimeFormat;
@@ -68,7 +69,7 @@ class Mail
 
                // send notifications.
                $notif_params = [
-                       'type' => NOTIFY_MAIL,
+                       'type' => Type::MAIL,
                        'notify_flags' => $user['notify-flags'],
                        'language' => $user['language'],
                        'to_name' => $user['username'],
index 440dde63e1d75d37e2e042bd319b1b8348025c15..fbc31da37339e15202b8264db55ac33c5f2698e9 100644 (file)
@@ -15,4 +15,6 @@ class Type
        const WALL = 4;
        /** @var int Notification about a followup comment */
        const COMMENT = 8;
+       /** @var int Notification about a private message */
+       const MAIL = 16;
 }
index eb38f02891d1aa575095900291222314a73a66c5..b5e4c1a909d2103c6bf7d79ef085830a27f10a64 100644 (file)
@@ -112,7 +112,7 @@ class Delegation extends BaseModule
 
                        $identities[$key]['selected'] = ($identity['nickname'] === DI::app()->user['nickname']);
 
-                       $condition = ["`uid` = ? AND `msg` != '' AND NOT (`type` IN (?, ?)) AND NOT `seen`", $identity['uid'], Type::INTRO, NOTIFY_MAIL];
+                       $condition = ["`uid` = ? AND `msg` != '' AND NOT (`type` IN (?, ?)) AND NOT `seen`", $identity['uid'], Type::INTRO, Type::MAIL];
                        $params = ['distinct' => true, 'expression' => 'parent'];
                        $notifications = DBA::count('notify', $condition, $params);