]> git.mxchange.org Git - friendica.git/commitdiff
Merge remote-tracking branch 'upstream/develop' into dba-2
authorMichael <heluecht@pirati.ca>
Sat, 12 Aug 2017 07:37:06 +0000 (07:37 +0000)
committerMichael <heluecht@pirati.ca>
Sat, 12 Aug 2017 07:37:06 +0000 (07:37 +0000)
include/enotify.php
mod/invite.php
src/Network/Probe.php

index 39665d14d4c994ca267127ef135b1e5962e03393..3b5672dcd82f2761ae8a26d1bad78a38fb95cdff 100644 (file)
@@ -45,9 +45,14 @@ function notification($params) {
        if (empty($sender_email))
                $sender_email = t('noreply').'@'.$hostname;
 
-       $user = q("SELECT `nickname` FROM `user` WHERE `uid` = %d", intval($params['uid']));
-       if ($user)
-               $nickname = $user[0]["nickname"];
+       $user = dba::select('user', array('nickname', 'page-flags'),
+                       array('uid' => $params['uid']), array('limit' => 1));
+
+       // There is no need to create notifications for forum accounts
+       if (!dbm::is_result($user) || in_array($user["page-flags"], array(PAGE_COMMUNITY, PAGE_PRVGROUP))) {
+               return;
+       }
+       $nickname = $user["nickname"];
 
        // with $params['show_in_notification_page'] == false, the notification isn't inserted into
        // the database, and an email is sent if applicable.
index 0b8f5046f7a8855121aeda6c60b58a079a391b34..5982574fadb174639d9279036697d0b17d16fb1c 100644 (file)
@@ -145,7 +145,7 @@ function invite_content(App $a) {
                        . $linktxt
                        . "\r\n" . "\r\n" . (($invonly) ? t('You will need to supply this invitation code: $invite_code') . "\r\n" . "\r\n" : '') .t('Once you have registered, please connect with me via my profile page at:')
                        . "\r\n" . "\r\n" . App::get_baseurl() . '/profile/' . $a->user['nickname']
-                       . "\r\n" . "\r\n" . t('For more information about the Friendica project and why we feel it is important, please visit http://friendica.com') . "\r\n" . "\r\n"  ,
+                       . "\r\n" . "\r\n" . t('For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca') . "\r\n" . "\r\n"  ,
                '$submit'              => t('Submit')
        ));
 
index f54db70a6249d2ca64d6dc8272d86d40b6d7d494..5a70247afcea6427a68e21440ec4d8a51f5ea030 100644 (file)
@@ -135,7 +135,7 @@ class Probe {
                $xrd_data = array();
 
                foreach ($links["xrd"]["link"] as $value => $link) {
-                       if (isset($link["@attributes"])) {
+                       if (!empty($link["@attributes"])) {
                                $attributes = $link["@attributes"];
                        } elseif ($value == "@attributes") {
                                $attributes = $link;
@@ -232,7 +232,7 @@ class Probe {
                        }
 
                        $host = $parts["host"];
-                       if (isset($parts["port"])) {
+                       if (!empty($parts["port"])) {
                                $host .= ':'.$parts["port"];
                        }
 
@@ -271,7 +271,7 @@ class Probe {
                        // Special treatment for Mastodon
                        // Problem is that Mastodon uses an URL format like http://domain.tld/@nick
                        // But the webfinger for this format fails.
-                       if (!$webfinger && isset($nick)) {
+                       if (!$webfinger && !empty($nick)) {
                                // Mastodon uses a "@" as prefix for usernames in their url format
                                $nick = ltrim($nick, '@');
 
@@ -339,8 +339,8 @@ class Probe {
                        $data["photo"] = App::get_baseurl().'/images/person-175.jpg';
                }
 
-               if (!isset($data["name"]) || ($data["name"] == "")) {
-                       if (isset($data["nick"])) {
+               if (empty($data["name"])) {
+                       if (!empty($data["nick"])) {
                                $data["name"] = $data["nick"];
                        }
 
@@ -349,7 +349,7 @@ class Probe {
                        }
                }
 
-               if (!isset($data["nick"]) || ($data["nick"] == "")) {
+               if (empty($data["nick"])) {
                        $data["nick"] = strtolower($data["name"]);
 
                        if (strpos($data['nick'], ' ')) {
@@ -480,9 +480,9 @@ class Probe {
        private static function detect($uri, $network, $uid) {
                $parts = parse_url($uri);
 
-               if (isset($parts["scheme"]) && isset($parts["host"]) && isset($parts["path"])) {
+               if (!empty($parts["scheme"]) && !empty($parts["host"]) && !empty($parts["path"])) {
                        $host = $parts["host"];
-                       if (isset($parts["port"])) {
+                       if (!empty($parts["port"])) {
                                $host .= ':'.$parts["port"];
                        }
 
@@ -609,18 +609,18 @@ class Probe {
                } else {
                        // We overwrite the detected nick with our try if the previois routines hadn't detected it.
                        // Additionally it is overwritten when the nickname doesn't make sense (contains spaces).
-                       if ((!isset($result["nick"]) || ($result["nick"] == "") || (strstr($result["nick"], " "))) && ($nick != "")) {
+                       if ((empty($result["nick"]) || (strstr($result["nick"], " "))) && ($nick != "")) {
                                $result["nick"] = $nick;
                        }
 
-                       if ((!isset($result["addr"]) || ($result["addr"] == "")) && ($addr != "")) {
+                       if (empty($result["addr"]) && ($addr != "")) {
                                $result["addr"] = $addr;
                        }
                }
 
                logger($uri." is ".$result["network"], LOGGER_DEBUG);
 
-               if (!isset($result["baseurl"]) || ($result["baseurl"] == "")) {
+               if (empty($result["baseurl"])) {
                        $pos = strpos($result["url"], $host);
                        if ($pos) {
                                $result["baseurl"] = substr($result["url"], 0, $pos).$host;
@@ -672,18 +672,18 @@ class Probe {
 
                $webfinger = array();
 
-               if (isset($xrd_arr["xrd"]["subject"])) {
+               if (!empty($xrd_arr["xrd"]["subject"])) {
                        $webfinger["subject"] = $xrd_arr["xrd"]["subject"];
                }
 
-               if (isset($xrd_arr["xrd"]["alias"])) {
+               if (!empty($xrd_arr["xrd"]["alias"])) {
                        $webfinger["aliases"] = $xrd_arr["xrd"]["alias"];
                }
 
                $webfinger["links"] = array();
 
                foreach ($xrd_arr["xrd"]["link"] as $value => $data) {
-                       if (isset($data["@attributes"])) {
+                       if (!empty($data["@attributes"])) {
                                $attributes = $data["@attributes"];
                        } elseif ($value == "@attributes") {
                                $attributes = $data;
@@ -724,23 +724,23 @@ class Probe {
                        return false;
                }
 
-               if (isset($json["fn"])) {
+               if (!empty($json["fn"])) {
                        $data["name"] = $json["fn"];
                }
 
-               if (isset($json["addr"])) {
+               if (!empty($json["addr"])) {
                        $data["addr"] = $json["addr"];
                }
 
-               if (isset($json["nick"])) {
+               if (!empty($json["nick"])) {
                        $data["nick"] = $json["nick"];
                }
 
-               if (isset($json["comm"])) {
+               if (!empty($json["comm"])) {
                        $data["community"] = $json["comm"];
                }
 
-               if (isset($json["tags"])) {
+               if (!empty($json["tags"])) {
                        $keywords = implode(" ", $json["tags"]);
                        if ($keywords != "") {
                                $data["keywords"] = $keywords;
@@ -752,31 +752,31 @@ class Probe {
                        $data["location"] = $location;
                }
 
-               if (isset($json["about"])) {
+               if (!empty($json["about"])) {
                        $data["about"] = $json["about"];
                }
 
-               if (isset($json["key"])) {
+               if (!empty($json["key"])) {
                        $data["pubkey"] = $json["key"];
                }
 
-               if (isset($json["photo"])) {
+               if (!empty($json["photo"])) {
                        $data["photo"] = $json["photo"];
                }
 
-               if (isset($json["dfrn-request"])) {
+               if (!empty($json["dfrn-request"])) {
                        $data["request"] = $json["dfrn-request"];
                }
 
-               if (isset($json["dfrn-confirm"])) {
+               if (!empty($json["dfrn-confirm"])) {
                        $data["confirm"] = $json["dfrn-confirm"];
                }
 
-               if (isset($json["dfrn-notify"])) {
+               if (!empty($json["dfrn-notify"])) {
                        $data["notify"] = $json["dfrn-notify"];
                }
 
-               if (isset($json["dfrn-poll"])) {
+               if (!empty($json["dfrn-poll"])) {
                        $data["poll"] = $json["dfrn-poll"];
                }
 
@@ -1008,7 +1008,7 @@ class Probe {
 
                        // We don't have a width. So we just take everything that we got.
                        // This is a Hubzilla workaround which doesn't send a width.
-                       if ((sizeof($avatar) == 0) && isset($attr["src"])) {
+                       if ((sizeof($avatar) == 0) && !empty($attr["src"])) {
                                $avatar[] = $attr["src"];
                        }
                }