X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=boot.php;h=5ef24f4944b7060ad5483211e468a3233f4a187f;hb=e21bcb82d2746d23ff6bff7eb516a0a3b9b1321b;hp=8c1054e642c78b7d6a50ae61bfce6b6a40da3482;hpb=d28c1febc78ffc4b3d3758b4cf413f90e9a58cae;p=friendica.git diff --git a/boot.php b/boot.php index 8c1054e642..5ef24f4944 100644 --- a/boot.php +++ b/boot.php @@ -14,7 +14,7 @@ require_once('include/features.php'); define ( 'FRIENDICA_PLATFORM', 'Friendica'); define ( 'FRIENDICA_VERSION', '3.2.1753' ); define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); -define ( 'DB_UPDATE_VERSION', 1170 ); +define ( 'DB_UPDATE_VERSION', 1173 ); define ( 'EOL', "
\r\n" ); define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' ); @@ -768,8 +768,8 @@ if(! class_exists('App')) { if(! count($r)){ $this->cached_profile_image[$avatar_image] = $avatar_image; } else { - $this->cached_profile_picdate[$common_filename] = "?rev=" . urlencode($r[0]['picdate']); - $this->cached_profile_image[$avatar_image] = $avatar_image . $this->cached_profile_picdate[$common_filename]; + $this->cached_profile_picdate[$common_filename] = "?rev=".urlencode($r[0]['picdate']); + $this->cached_profile_image[$avatar_image] = $avatar_image.$this->cached_profile_picdate[$common_filename]; } } return $this->cached_profile_image[$avatar_image]; @@ -1016,8 +1016,35 @@ if(! function_exists('update_db')) { if(DB_UPDATE_VERSION == UPDATE_VERSION) { // Compare the current structure with the defined structure + + $t = get_config('database','dbupdate_'.DB_UPDATE_VERSION); + if($t !== false) + break; + set_config('database','dbupdate_'.DB_UPDATE_VERSION, time()); + require_once("include/dbstructure.php"); - update_structure(false, true); + $retval = update_structure(false, true); + if($retval) { + //send the administrator an e-mail + $email_tpl = get_intltext_template("update_fail_eml.tpl"); + $email_msg = replace_macros($email_tpl, array( + '$sitename' => $a->config['sitename'], + '$siteurl' => $a->get_baseurl(), + '$update' => DB_UPDATE_VERSION, + '$error' => sprintf(t('Update %s failed. See error logs.'), DB_UPDATE_VERSION) + )); + $subject=sprintf(t('Update Error at %s'), $a->get_baseurl()); + require_once('include/email.php'); + $subject = email_header_encode($subject,'UTF-8'); + mail($a->config['admin_email'], $subject, $email_msg, + 'From: ' . 'Administrator' . '@' . $_SERVER['SERVER_NAME']."\n" + .'Content-type: text/plain; charset=UTF-8'."\n" + .'Content-transfer-encoding: 8bit'); + //try the logger + logger("CRITICAL: Database structure update failed: ".$retval); + break; + } else + set_config('database','dbupdate_'.DB_UPDATE_VERSION, 'success'); for($x = $stored; $x < $current; $x ++) { if(function_exists('update_' . $x)) { @@ -1058,11 +1085,13 @@ if(! function_exists('update_db')) { //try the logger logger('CRITICAL: Update Failed: '. $x); break; - } - else { + } else { set_config('database','update_' . $x, 'success'); set_config('system','build', $x + 1); } + } else { + set_config('database','update_' . $x, 'success'); + set_config('system','build', $x + 1); } } } @@ -1345,7 +1374,7 @@ if(! function_exists('get_max_import_size')) { */ if(! function_exists('profile_load')) { - function profile_load(&$a, $nickname, $profile = 0) { + function profile_load(&$a, $nickname, $profile = 0, $profiledata = array()) { $user = q("select uid from user where nickname = '%s' limit 1", dbesc($nickname) @@ -1410,10 +1439,13 @@ if(! function_exists('profile_load')) { $a->profile = $r[0]; $a->profile['mobile-theme'] = get_pconfig($a->profile['profile_uid'], 'system', 'mobile_theme'); - + $a->profile['network'] = NETWORK_DFRN; $a->page['title'] = $a->profile['name'] . " @ " . $a->config['sitename']; - $_SESSION['theme'] = $a->profile['theme']; + + if (!$profiledata) + $_SESSION['theme'] = $a->profile['theme']; + $_SESSION['mobile-theme'] = $a->profile['mobile-theme']; /** @@ -1430,7 +1462,7 @@ if(! function_exists('profile_load')) { if(! (x($a->page,'aside'))) $a->page['aside'] = ''; - if(local_user() && local_user() == $a->profile['uid']) { + if(local_user() && local_user() == $a->profile['uid'] && $profiledata) { $a->page['aside'] .= replace_macros(get_markup_template('profile_edlink.tpl'),array( '$editprofile' => t('Edit profile'), '$profid' => $a->profile['id'] @@ -1439,7 +1471,14 @@ if(! function_exists('profile_load')) { $block = (((get_config('system','block_public')) && (! local_user()) && (! remote_user())) ? true : false); - $a->page['aside'] .= profile_sidebar($a->profile, $block); + // To-Do: + // By now, the contact block isn't shown, when a different profile is given + // But: When this profile was on the same server, then we could display the contacts + if ($profiledata) + $a->page['aside'] .= profile_sidebar($profiledata, true); + else + $a->page['aside'] .= profile_sidebar($a->profile, $block); + /*if(! $block) $a->page['aside'] .= contact_block();*/ @@ -1467,7 +1506,6 @@ if(! function_exists('profile_load')) { if(! function_exists('profile_sidebar')) { function profile_sidebar($profile, $block = 0) { - $a = get_app(); $o = ''; @@ -1480,14 +1518,22 @@ if(! function_exists('profile_sidebar')) { $profile['picdate'] = urlencode($profile['picdate']); + if (($profile['network'] != "") AND ($profile['network'] != NETWORK_DFRN)) { + require_once('include/contact_selectors.php'); + if ($profile['url'] != "") + $profile['network_name'] = ''.network_to_name($profile['network']).""; + else + $profile['network_name'] = network_to_name($profile['network']); + } else + $profile['network_name'] = ""; + call_hooks('profile_sidebar_enter', $profile); - + // don't show connect link to yourself $connect = (($profile['uid'] != local_user()) ? t('Connect') : False); // don't show connect link to authenticated visitors either - if(remote_user() && count($_SESSION['remote'])) { foreach($_SESSION['remote'] as $visitor) { if($visitor['uid'] == $profile['uid']) { @@ -1497,20 +1543,36 @@ if(! function_exists('profile_sidebar')) { } } + // Is the local user already connected to that user? + if ($connect AND local_user()) { + if (isset($profile["url"])) + $profile_url = normalise_link($profile["url"]); + else + $profile_url = normalise_link($a->get_baseurl()."/profile/".$profile["nickname"]); + + $r = q("SELECT * FROM `contact` WHERE NOT `pending` AND `uid` = %d AND `nurl` = '%s'", + local_user(), $profile_url); + if (count($r)) + $connect = false; + } + + if ($connect AND ($profile['network'] != NETWORK_DFRN) AND !isset($profile['remoteconnect'])) + $connect = false; + + if (isset($profile['remoteconnect'])) + $remoteconnect = $profile['remoteconnect']; + if( get_my_url() && $profile['unkmail'] && ($profile['uid'] != local_user()) ) $wallmessage = t('Message'); else $wallmessage = false; - - // show edit profile to yourself if ($profile['uid'] == local_user() && feature_enabled(local_user(),'multi_profiles')) { $profile['edit'] = array($a->get_baseurl(). '/profiles', t('Profiles'),"", t('Manage/edit profiles')); - $r = q("SELECT * FROM `profile` WHERE `uid` = %d", local_user()); - + $profile['menu'] = array( 'chg_photo' => t('Change profile photo'), 'cr_new' => t('Create New Profile'), @@ -1535,18 +1597,15 @@ if(! function_exists('profile_sidebar')) { } } - if ($profile['uid'] == local_user() && !feature_enabled(local_user(),'multi_profiles')) { - $profile['edit'] = array($a->get_baseurl(). '/profiles/'.$profile['id'], t('Edit profile'),"", t('Edit profile')); - $profile['menu'] = array( + if ($profile['uid'] == local_user() && !feature_enabled(local_user(),'multi_profiles')) { + $profile['edit'] = array($a->get_baseurl(). '/profiles/'.$profile['id'], t('Edit profile'),"", t('Edit profile')); + $profile['menu'] = array( 'chg_photo' => t('Change profile photo'), 'cr_new' => null, 'entries' => array(), ); - } - - + } - if((x($profile,'address') == 1) || (x($profile,'locality') == 1) || (x($profile,'region') == 1) @@ -1600,12 +1659,14 @@ if(! function_exists('profile_sidebar')) { $o .= replace_macros($tpl, array( '$profile' => $p, '$connect' => $connect, + '$remoteconnect' => $remoteconnect, '$wallmessage' => $wallmessage, '$location' => $location, '$gender' => $gender, '$pdesc' => $pdesc, '$marital' => $marital, '$homepage' => $homepage, + '$network' => t('Network:'), '$diaspora' => $diaspora, '$contact_block' => $contact_block, ));