2020-06-22 07:56:26 +09:00
< ? php
// {{{ License
// This file is part of GNU social - https://www.gnu.org/software/social
//
// GNU social is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// GNU social is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with GNU social. If not, see <http://www.gnu.org/licenses/>.
// }}}
/**
* Handle network public feed
*
* @ package GNUsocial
* @ category Controller
*
2020-06-27 07:44:53 +09:00
* @ author Hugo Sales < hugo @ fc . up . pt >
2020-07-01 01:35:38 +09:00
* @ author Eliseu Amaro < eliseu @ fc . up . pt >
2020-06-22 07:56:26 +09:00
* @ copyright 2020 Free Software Foundation , Inc http :// www . fsf . org
* @ license https :// www . gnu . org / licenses / agpl . html GNU AGPL v3 or later
*/
namespace App\Controller ;
2020-07-05 08:48:35 +09:00
use App\Core\DB\DB ;
2020-06-27 07:44:53 +09:00
use App\Core\Form ;
2020-06-22 07:56:26 +09:00
use function App\Core\I18n\_m ;
2020-07-26 02:56:38 +09:00
use App\Util\Common ;
use App\Util\Formatting ;
2020-07-26 09:02:20 +09:00
use Misd\PhoneNumberBundle\Form\Type\PhoneNumberType ;
2020-07-20 08:22:41 +09:00
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController ;
2020-07-22 06:02:39 +09:00
use Symfony\Component\Form\Extension\Core\Type\CheckboxType ;
2020-07-23 05:58:23 +09:00
use Symfony\Component\Form\Extension\Core\Type\FileType ;
2020-07-26 09:02:20 +09:00
use Symfony\Component\Form\Extension\Core\Type\LanguageType ;
2020-06-22 07:56:26 +09:00
use Symfony\Component\Form\Extension\Core\Type\SubmitType ;
2020-07-21 06:05:10 +09:00
use Symfony\Component\Form\Extension\Core\Type\TextareaType ;
2020-06-22 07:56:26 +09:00
use Symfony\Component\Form\Extension\Core\Type\TextType ;
use Symfony\Component\HttpFoundation\Request ;
2020-07-20 08:22:41 +09:00
class UserPanel extends AbstractController
2020-06-22 07:56:26 +09:00
{
2020-07-26 09:02:20 +09:00
public function personal_info ( Request $request )
2020-06-22 07:56:26 +09:00
{
2020-07-26 02:56:38 +09:00
$user = Common :: user ();
$profile = $user -> getProfile ();
$profile_tags = $profile -> getSelfTags ();
$form_definition = [
[ 'nickname' , TextType :: class , [ 'label' => _m ( 'Nickname' ), 'required' => true , 'data' => $profile -> getNickname (), 'help' => _m ( '1-64 lowercase letters or numbers, no punctuation or spaces.' )]],
[ 'full_name' , TextType :: class , [ 'label' => _m ( 'Full Name' ), 'required' => false , 'data' => $profile -> getFullname (), 'help' => _m ( 'A full name is required, if empty it will be set to your nickname.' )]],
[ 'homepage' , TextType :: class , [ 'label' => _m ( 'Homepage' ), 'required' => false , 'data' => $profile -> getHomepage (), 'help' => _m ( 'URL of your homepage, blog, or profile on another site.' )]],
[ 'bio' , TextareaType :: class , [ 'label' => _m ( 'Bio' ), 'required' => false , 'data' => $profile -> getBio (), 'help' => _m ( 'Describe yourself and your interests.' )]],
[ 'location' , TextType :: class , [ 'label' => _m ( 'Location' ), 'required' => false , 'data' => $profile -> getLocation (), 'help' => _m ( 'Where you are, like "City, State (or Region), Country".' )]],
[ 'self_tags' , TextType :: class , [ 'label' => _m ( 'Self Tags' ), 'required' => false , 'data' => Formatting :: toString ( $profile_tags , Formatting :: SPLIT_BY_SPACE ), 'help' => _m ( 'Tags for yourself (letters, numbers, -, ., and _), comma- or space-separated.' )]],
[ 'save' , SubmitType :: class , [ 'label' => _m ( 'Save' )]],
];
2020-06-22 07:56:26 +09:00
2020-07-26 02:56:38 +09:00
$form = Form :: create ( $form_definition );
$form -> handleRequest ( $request );
if ( $form -> isSubmitted ()) {
$data = $form -> getData ();
if ( $form -> isValid ()) {
$user -> setNickname ( $data [ 'nickname' ]);
foreach ([ 'Nickname' , 'FullName' , 'Homepage' , 'Bio' , 'Location' ] as $key ) {
$lkey = Formatting :: camelCaseToSnakeCase ( $key );
if ( Form :: isRequired ( $form_definition , $lkey ) || isset ( $data [ $lkey ])) {
$method = " set { $key } " ;
$profile -> { $method }( $data [ $lkey ]);
}
}
$tags = [];
if ( isset ( $data [ 'self_tags' ]) && Formatting :: toArray ( $data [ 'self_tags' ], $tags )) {
$profile -> setSelfTags ( $tags , $profile_tags , false );
2020-07-05 08:48:35 +09:00
}
DB :: flush ();
} else {
// Display error
}
}
2020-06-22 07:56:26 +09:00
2020-07-26 02:56:38 +09:00
return [ '_template' => 'settings/profile.html.twig' , 'prof' => $form -> createView ()];
2020-06-22 07:56:26 +09:00
}
2020-07-22 06:02:39 +09:00
public function account ( Request $request )
{
2020-07-26 09:02:20 +09:00
$user = Common :: user ();
$profile = $user -> getProfile ();
2020-07-22 06:02:39 +09:00
$acc = Form :: create ([
2020-07-26 09:02:20 +09:00
// ['email', TextType::class, ['label' => _m('Email'), 'help' => _m('Change your email')]],
// ['seperate_email', CheckboxType::class, ['label' => _m('Separate emails'), 'help' => _m('Use seperate incomming and outgoing emails')]],
[ 'outgoing_email' , TextType :: class , [ 'label' => _m ( 'Outgoing email' ), 'required' => true , 'data' => $user -> getOutgoingEmail (), 'help' => _m ( 'Change the email we use to contact you' )]],
[ 'incomming_email' , TextType :: class , [ 'label' => _m ( 'Incoming email' ), 'required' => true , 'data' => $user -> getIncomingEmail (), 'help' => _m ( 'Change the email you use to contact us (for posting, for instance)' )]],
[ 'password' , TextType :: class , [ 'label' => _m ( 'Password' ), 'required' => false , 'data' => null , 'help' => _m ( 'Change your password' )]],
[ 'old_password' , TextType :: class , [ 'label' => _m ( 'Old password' ), 'required' => false , 'data' => null , 'help' => _m ( 'Enter your old password for verification' )]],
[ 'language' , LanguageType :: class , [ 'label' => _m ( 'Language' ), 'required' => false , 'data' => $user -> getLanguage (), 'help' => _m ( 'Your preferred language' )]],
[ 'phone_number' , PhoneNumberType :: class , [ 'label' => _m ( 'Phone number' ), 'required' => false , 'data' => $user -> getPhoneNumber (), 'help' => _m ( 'Your phone number' )]],
[ 'save' , SubmitType :: class , [ 'label' => _m ( 'Save' )]],
]);
2020-07-22 06:02:39 +09:00
2020-07-23 23:08:31 +09:00
return [ '_template' => 'settings/account.html.twig' , 'acc' => $acc -> createView ()];
2020-07-22 06:02:39 +09:00
}
2020-07-23 05:58:23 +09:00
public function avatar ( Request $request )
{
$avatar = Form :: create ([
2020-07-26 09:27:08 +09:00
[ 'avatar' , FileType :: class , [ 'label' => _m ( 'avatar' ), 'help' => _m ( 'You can upload your personal avatar. The maximum file size is 10MB.' )]],
[ 'save' , SubmitType :: class , [ 'label' => _m ( 'Submit' )]],
]);
2020-07-23 05:58:23 +09:00
2020-07-23 23:08:31 +09:00
return [ '_template' => 'settings/avatar.html.twig' , 'avatar' => $avatar -> createView ()];
2020-07-23 05:58:23 +09:00
}
public function misc ( Request $request )
{
$misc = Form :: create ([
[ _m ( 'transport' ), TextType :: class , [ 'help' => 'Address used to send and receive notices through IM.' , 'label_format' => 'XMPP/Jabber' ]],
[ _m ( 'post_on_status_change' ), CheckboxType :: class , [ 'help' => 'Post a notice when my status changes.' , 'label_format' => 'Status change' ]],
[ _m ( 'mention' ), CheckboxType :: class , [ 'help' => 'Send me replies from people I\'m not subscribed to.' , 'label_format' => 'Mentions' ]],
[ _m ( 'posts_by_followed' ), CheckboxType :: class , [ 'help' => 'Send me notices.' , 'label_format' => 'Notices' ]],
[ 'save' , SubmitType :: class , [ 'label' => _m ( 'Save' )]], ]);
2020-07-23 23:08:31 +09:00
return [ '_template' => 'settings/misc.html.twig' , 'misc' => $misc -> createView ()];
2020-07-23 05:58:23 +09:00
}
2020-07-23 23:08:31 +09:00
}