Add remove profile photo button

This commit is contained in:
Max Kostikov 2019-04-19 15:30:05 +02:00
parent ea1d8b8104
commit 7311d1182d

View File

@ -52,14 +52,39 @@ class Profile_photo extends \Zotlabs\Web\Controller {
return; return;
} }
$channel = \App::get_channel();
check_form_security_token_redirectOnErr('/profile_photo', 'profile_photo'); check_form_security_token_redirectOnErr('/profile_photo', 'profile_photo');
// Remove cover photo
if(isset($_POST['remove'])) {
$r = q("SELECT resource_id FROM photo WHERE photo_usage = %d AND uid = %d LIMIT 1",
intval(PHOTO_PROFILE),
intval(local_channel())
);
if($r) {
q("update photo set photo_usage = %d where photo_usage = %d and uid = %d",
intval(PHOTO_NORMAL),
intval(PHOTO_PROFILE),
intval(local_channel())
);
$sync = attach_export_data($channel,$r[0]['resource_id']);
if($sync)
build_sync_packet($channel['channel_id'],array('file' => array($sync)));
}
$_SESSION['reload_avatar'] = true;
goaway(z_root() . '/profiles');
}
if((array_key_exists('cropfinal',$_POST)) && (intval($_POST['cropfinal']) == 1)) { if((array_key_exists('cropfinal',$_POST)) && (intval($_POST['cropfinal']) == 1)) {
// logger('crop: ' . print_r($_POST,true)); // logger('crop: ' . print_r($_POST,true));
// phase 2 - we have finished cropping // phase 2 - we have finished cropping
if(argc() != 2) { if(argc() != 2) {
@ -161,8 +186,6 @@ class Profile_photo extends \Zotlabs\Web\Controller {
return; return;
} }
$channel = \App::get_channel();
// If setting for the default profile, unset the profile photo flag from any other photos I own // 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) {
@ -390,8 +413,10 @@ class Profile_photo extends \Zotlabs\Web\Controller {
if($sync) if($sync)
build_sync_packet($channel['channel_id'],array('file' => array($sync))); build_sync_packet($channel['channel_id'],array('file' => array($sync)));
$_SESSION['reload_avatar'] = true;
\Zotlabs\Daemon\Master::Summon(array('Directory',local_channel())); \Zotlabs\Daemon\Master::Summon(array('Directory',local_channel()));
goaway(z_root() . '/profiles'); goaway(z_root() . '/profiles');
} }
@ -471,6 +496,7 @@ class Profile_photo extends \Zotlabs\Web\Controller {
'$lbl_profiles' => t('Select a profile:'), '$lbl_profiles' => t('Select a profile:'),
'$title' => (($importing) ? t('Use Photo for Profile') : t('Change Profile Photo')), '$title' => (($importing) ? t('Use Photo for Profile') : t('Change Profile Photo')),
'$submit' => (($importing) ? t('Use') : t('Upload')), '$submit' => (($importing) ? t('Use') : t('Upload')),
'$remove' => t('Remove'),
'$profiles' => $profiles, '$profiles' => $profiles,
'$single' => ((count($profiles) == 1) ? true : false), '$single' => ((count($profiles) == 1) ? true : false),
'$profile0' => $profiles[0], '$profile0' => $profiles[0],