]> git.mxchange.org Git - friendica.git/commitdiff
Fixed E_NOTICEs when uploading profile picture (#5456)
authorRoland Häder <Quix0r@users.noreply.github.com>
Sun, 22 Jul 2018 20:01:14 +0000 (22:01 +0200)
committerHypolite Petovan <mrpetovan@eml.cc>
Sun, 22 Jul 2018 20:01:14 +0000 (16:01 -0400)
* Fixed E_NOTICEs when uploading profile picture.

* Fixed E_NOTICEs when $_POST doesn't contain these fields.

mod/profile_photo.php
mod/settings.php
src/Model/Contact.php

index 2df6f147e35059d479c627a8edcbef2d8ecf1e2e..4565f6e23a0389bc29570dc5228b37ec69f99aa1 100644 (file)
@@ -25,7 +25,6 @@ function profile_photo_init(App $a)
 
 function profile_photo_post(App $a)
 {
-
        if (!local_user()) {
                notice(L10n::t('Permission denied.') . EOL);
                return;
@@ -33,7 +32,7 @@ function profile_photo_post(App $a)
 
        check_form_security_token_redirectOnErr('/profile_photo', 'profile_photo');
 
-       if ((x($_POST, 'cropfinal')) && ($_POST['cropfinal'] == 1)) {
+       if (!empty($_POST['cropfinal']) && $_POST['cropfinal'] == 1) {
 
                // unless proven otherwise
                $is_default_profile = 1;
@@ -42,7 +41,10 @@ function profile_photo_post(App $a)
                        $r = q("select id, `is-default` from profile where id = %d and uid = %d limit 1", intval($_REQUEST['profile']),
                                intval(local_user())
                        );
-                       if (DBM::is_result($r) && (!intval($r[0]['is-default']))) $is_default_profile = 0;
+
+                       if (DBM::is_result($r) && (!intval($r[0]['is-default']))) {
+                               $is_default_profile = 0;
+                       }
                }
 
 
@@ -184,21 +186,25 @@ function profile_photo_content(App $a)
 
        $imagecrop = [];
 
-       if ($a->argv[1] == 'use' && $a->argc >= 3) {
-//             check_form_security_token_redirectOnErr('/profile_photo', 'profile_photo');
+       if (isset($a->argv[1]) && $a->argv[1] == 'use' && $a->argc >= 3) {
+               // check_form_security_token_redirectOnErr('/profile_photo', 'profile_photo');
 
                $resource_id = $a->argv[2];
                //die(":".local_user());
                $r = q("SELECT * FROM `photo` WHERE `uid` = %d AND `resource-id` = '%s' ORDER BY `scale` ASC", intval(local_user()),
                        dbesc($resource_id)
                );
+
                if (!DBM::is_result($r)) {
                        notice(L10n::t('Permission denied.') . EOL);
                        return;
                }
+
                $havescale = false;
                foreach ($r as $rr) {
-                       if ($rr['scale'] == 5) $havescale = true;
+                       if ($rr['scale'] == 5) {
+                               $havescale = true;
+                       }
                }
 
                // set an already uloaded photo as profile photo
@@ -230,7 +236,6 @@ function profile_photo_content(App $a)
                intval(local_user())
        );
 
-
        if (empty($imagecrop)) {
                $tpl = get_markup_template('profile_photo.tpl');
 
@@ -254,7 +259,7 @@ function profile_photo_content(App $a)
                $o = replace_macros($tpl,
                        [
                        '$filename'  => $filename,
-                       '$profile'   => intval($_REQUEST['profile']),
+                       '$profile'   => (isset($_REQUEST['profile']) ? intval($_REQUEST['profile']) : 0),
                        '$resource'  => $imagecrop['hash'] . '-' . $imagecrop['resolution'],
                        '$image_url' => System::baseUrl() . '/photo/' . $filename,
                        '$title'     => L10n::t('Crop Image'),
@@ -268,23 +273,23 @@ function profile_photo_content(App $a)
        return; // NOTREACHED
 }
 
-function profile_photo_crop_ui_head(App $a, Image $Image)
+function profile_photo_crop_ui_head(App $a, Image $image)
 {
        $max_length = Config::get('system', 'max_image_length');
        if (!$max_length) {
                $max_length = MAX_IMAGE_LENGTH;
        }
        if ($max_length > 0) {
-               $Image->scaleDown($max_length);
+               $image->scaleDown($max_length);
        }
 
-       $width = $Image->getWidth();
-       $height = $Image->getHeight();
+       $width = $image->getWidth();
+       $height = $image->getHeight();
 
        if ($width < 175 || $height < 175) {
-               $Image->scaleUp(200);
-               $width = $Image->getWidth();
-               $height = $Image->getHeight();
+               $image->scaleUp(200);
+               $width = $image->getWidth();
+               $height = $image->getHeight();
        }
 
        $hash = Photo::newResource();
@@ -293,7 +298,7 @@ function profile_photo_crop_ui_head(App $a, Image $Image)
        $smallest = 0;
        $filename = '';
 
-       $r = Photo::store($Image, local_user(), 0, $hash, $filename, L10n::t('Profile Photos'), 0);
+       $r = Photo::store($image, local_user(), 0, $hash, $filename, L10n::t('Profile Photos'), 0);
 
        if ($r) {
                info(L10n::t('Image uploaded successfully.') . EOL);
@@ -302,8 +307,8 @@ function profile_photo_crop_ui_head(App $a, Image $Image)
        }
 
        if ($width > 640 || $height > 640) {
-               $Image->scaleDown(640);
-               $r = Photo::store($Image, local_user(), 0, $hash, $filename, L10n::t('Profile Photos'), 1);
+               $image->scaleDown(640);
+               $r = Photo::store($image, local_user(), 0, $hash, $filename, L10n::t('Profile Photos'), 1);
 
                if ($r === false) {
                        notice(L10n::t('Image size reduction [%s] failed.', "640") . EOL);
@@ -318,7 +323,7 @@ function profile_photo_crop_ui_head(App $a, Image $Image)
        $imagecrop = [
                'hash'       => $hash,
                'resolution' => $smallest,
-               'ext'        => $Image->getExt(),
+               'ext'        => $image->getExt(),
        ];
 
        return $imagecrop;
index d984819593e19f6e57376959ee8e57113a9a0d19..34b52a7d7d0800fac8f3a360fdb7a99117d39013 100644 (file)
@@ -528,10 +528,10 @@ function settings_post(App $a)
                date_default_timezone_set($timezone);
        }
 
-       $str_group_allow   = perms2str($_POST['group_allow']);
-       $str_contact_allow = perms2str($_POST['contact_allow']);
-       $str_group_deny    = perms2str($_POST['group_deny']);
-       $str_contact_deny  = perms2str($_POST['contact_deny']);
+       $str_group_allow   = perms2str(defaults($_POST, 'group_allow'  , ''));
+       $str_contact_allow = perms2str(defaults($_POST, 'contact_allow', ''));
+       $str_group_deny    = perms2str(defaults($_POST, 'group_deny'   , ''));
+       $str_contact_deny  = perms2str(defaults($_POST, 'contact_deny' , ''));
 
        $openidserver = $a->user['openidserver'];
        //$openid = normalise_openid($openid);
index 84580b0898997cba66222e95bcac51353ac992a4..f8957c8a63c8debc02c01082772d453d68114fe7 100644 (file)
@@ -216,7 +216,7 @@ class Contact extends BaseObject
                $update = false;
 
                foreach ($fields as $field => $content) {
-                       if ($self[$field] != $content) {
+                       if (isset($self[$field]) && $self[$field] != $content) {
                                $update = true;
                        }
                }