]> git.mxchange.org Git - friendica.git/blobdiff - mod/profile_photo.php
update for ES thx Albert
[friendica.git] / mod / profile_photo.php
index ea9fc3ea7e90bb627bc6220a17072c80cd2877c2..b4723b215ff1e5bd8aeba1edfee74167c7b5c2a6 100644 (file)
@@ -1,5 +1,8 @@
 <?php
 
+use Friendica\App;
+use Friendica\Core\System;
+
 require_once("include/Photo.php");
 
 function profile_photo_init(App $a) {
@@ -9,10 +12,8 @@ function profile_photo_init(App $a) {
        }
 
        profile_load($a,$a->user['nickname']);
-
 }
 
-
 function profile_photo_post(App $a) {
 
        if (! local_user()) {
@@ -22,12 +23,12 @@ function profile_photo_post(App $a) {
 
        check_form_security_token_redirectOnErr('/profile_photo', 'profile_photo');
 
-       if ((x($_POST,'cropfinal')) && ($_POST['cropfinal'] == 1)) {
+       if((x($_POST,'cropfinal')) && ($_POST['cropfinal'] == 1)) {
 
                // unless proven otherwise
                $is_default_profile = 1;
 
-               if ($_REQUEST['profile']) {
+               if($_REQUEST['profile']) {
                        $r = q("select id, `is-default` from profile where id = %d and uid = %d limit 1",
                                intval($_REQUEST['profile']),
                                intval(local_user())
@@ -40,14 +41,14 @@ function profile_photo_post(App $a) {
 
                // phase 2 - we have finished cropping
 
-               if ($a->argc != 2) {
+               if($a->argc != 2) {
                        notice( t('Image uploaded but image cropping failed.') . EOL );
                        return;
                }
 
                $image_id = $a->argv[1];
 
-               if (substr($image_id,-2,1) == '-') {
+               if(substr($image_id,-2,1) == '-') {
                        $scale = substr($image_id,-1,1);
                        $image_id = substr($image_id,0,-2);
                }
@@ -68,7 +69,7 @@ function profile_photo_post(App $a) {
                        $base_image = $r[0];
 
                        $im = new Photo($base_image['data'], $base_image['type']);
-                       if ($im->is_valid()) {
+                       if($im->is_valid()) {
                                $im->cropImage(175,$srcX,$srcY,$srcW,$srcH);
 
                                $r = $im->store(local_user(), 0, $base_image['resource-id'],$base_image['filename'], t('Profile Photos'), 4, $is_default_profile);
@@ -95,22 +96,22 @@ function profile_photo_post(App $a) {
 
                                // If setting for the default profile, unset the profile photo flag from any other photos I own
 
-                               if ($is_default_profile) {
+                               if($is_default_profile) {
                                        $r = q("UPDATE `photo` SET `profile` = 0 WHERE `profile` = 1 AND `resource-id` != '%s' AND `uid` = %d",
                                                dbesc($base_image['resource-id']),
                                                intval(local_user())
                                        );
 
                                        $r = q("UPDATE `contact` SET `photo` = '%s', `thumb` = '%s', `micro` = '%s'  WHERE `self` AND `uid` = %d",
-                                               dbesc(App::get_baseurl() . '/photo/' . $base_image['resource-id'] . '-4.' . $im->getExt()),
-                                               dbesc(App::get_baseurl() . '/photo/' . $base_image['resource-id'] . '-5.' . $im->getExt()),
-                                               dbesc(App::get_baseurl() . '/photo/' . $base_image['resource-id'] . '-6.' . $im->getExt()),
+                                               dbesc(System::baseUrl() . '/photo/' . $base_image['resource-id'] . '-4.' . $im->getExt()),
+                                               dbesc(System::baseUrl() . '/photo/' . $base_image['resource-id'] . '-5.' . $im->getExt()),
+                                               dbesc(System::baseUrl() . '/photo/' . $base_image['resource-id'] . '-6.' . $im->getExt()),
                                                intval(local_user())
                                        );
                                } else {
                                        $r = q("update profile set photo = '%s', thumb = '%s' where id = %d and uid = %d",
-                                               dbesc(App::get_baseurl() . '/photo/' . $base_image['resource-id'] . '-4.' . $im->getExt()),
-                                               dbesc(App::get_baseurl() . '/photo/' . $base_image['resource-id'] . '-5.' . $im->getExt()),
+                                               dbesc(System::baseUrl() . '/photo/' . $base_image['resource-id'] . '-4.' . $im->getExt()),
+                                               dbesc(System::baseUrl() . '/photo/' . $base_image['resource-id'] . '-5.' . $im->getExt()),
                                                intval($_REQUEST['profile']),
                                                intval(local_user())
                                        );
@@ -126,19 +127,18 @@ function profile_photo_post(App $a) {
 
                                info( t('Shift-reload the page or clear browser cache if the new photo does not display immediately.') . EOL);
                                // Update global directory in background
-                               $url = App::get_baseurl() . '/profile/' . $a->user['nickname'];
+                               $url = System::baseUrl() . '/profile/' . $a->user['nickname'];
                                if ($url && strlen(get_config('system','directory'))) {
                                        proc_run(PRIORITY_LOW, "include/directory.php", $url);
                                }
 
-                               require_once('include/profile_update.php');
-                               profile_change();
+                               proc_run(PRIORITY_LOW, 'include/profile_update.php', local_user());
                        } else {
                                notice( t('Unable to process image') . EOL);
                        }
                }
 
-               goaway(App::get_baseurl() . '/profiles');
+               goaway(System::baseUrl() . '/profiles');
                return; // NOTREACHED
        }
 
@@ -173,7 +173,7 @@ function profile_photo_post(App $a) {
 }
 
 
-if (! function_exists('profile_photo_content')) {
+if(! function_exists('profile_photo_content')) {
 function profile_photo_content(App $a) {
 
        if (! local_user()) {
@@ -183,10 +183,10 @@ function profile_photo_content(App $a) {
 
        $newuser = false;
 
-       if ($a->argc == 2 && $a->argv[1] === 'new')
+       if($a->argc == 2 && $a->argv[1] === 'new')
                $newuser = true;
 
-       if ( $a->argv[1]=='use'){
+       if( $a->argv[1]=='use'){
                if ($a->argc<3){
                        notice( t('Permission denied.') . EOL );
                        return;
@@ -206,7 +206,7 @@ function profile_photo_content(App $a) {
                }
                $havescale = false;
                foreach ($r as $rr) {
-                       if ($rr['scale'] == 5)
+                       if($rr['scale'] == 5)
                                $havescale = true;
                }
 
@@ -232,7 +232,7 @@ function profile_photo_content(App $a) {
                                proc_run(PRIORITY_LOW, "include/directory.php", $url);
                        }
 
-                       goaway(App::get_baseurl() . '/profiles');
+                       goaway(System::baseUrl() . '/profiles');
                        return; // NOTREACHED
                }
                $ph = new Photo($r[0]['data'], $r[0]['type']);
@@ -245,7 +245,7 @@ function profile_photo_content(App $a) {
        );
 
 
-       if (! x($a->config,'imagecrop')) {
+       if(! x($a->config,'imagecrop')) {
 
                $tpl = get_markup_template('profile_photo.tpl');
 
@@ -257,7 +257,7 @@ function profile_photo_content(App $a) {
                        '$submit' => t('Upload'),
                        '$profiles' => $profiles,
                        '$form_security_token' => get_form_security_token("profile_photo"),
-                       '$select' => sprintf('%s %s', t('or'), ($newuser) ? '<a href="' . App::get_baseurl() . '">' . t('skip this step') . '</a>' : '<a href="'. App::get_baseurl() . '/photos/' . $a->user['nickname'] . '">' . t('select a photo from your photo albums') . '</a>')
+                       '$select' => sprintf('%s %s', t('or'), ($newuser) ? '<a href="' . System::baseUrl() . '">' . t('skip this step') . '</a>' : '<a href="'. System::baseUrl() . '/photos/' . $a->user['nickname'] . '">' . t('select a photo from your photo albums') . '</a>')
                ));
 
                return $o;
@@ -270,7 +270,7 @@ function profile_photo_content(App $a) {
                        '$filename' => $filename,
                        '$profile' => intval($_REQUEST['profile']),
                        '$resource' => $a->config['imagecrop'] . '-' . $a->config['imagecrop_resolution'],
-                       '$image_url' => App::get_baseurl() . '/photo/' . $filename,
+                       '$image_url' => System::baseUrl() . '/photo/' . $filename,
                        '$title' => t('Crop Image'),
                        '$desc' => t('Please adjust the image cropping for optimum viewing.'),
                        '$form_security_token' => get_form_security_token("profile_photo"),
@@ -283,7 +283,7 @@ function profile_photo_content(App $a) {
 }}
 
 
-if (! function_exists('profile_photo_crop_ui_head')) {
+if(! function_exists('profile_photo_crop_ui_head')) {
 function profile_photo_crop_ui_head(App $a, $ph) {
        $max_length = get_config('system','max_image_length');
        if (! $max_length) {