123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514 |
- <?php
- defined('GNUSOCIAL') || die();
- class ProfilesettingsAction extends SettingsAction
- {
-
- public function title()
- {
-
- return _('Profile settings');
- }
-
- public function getInstructions()
- {
-
- return _('You can update your personal profile info here '.
- 'so people know more about you.');
- }
- public function showScripts()
- {
- parent::showScripts();
- $this->autofocus('fullname');
- }
-
- public function showContent()
- {
- $user = $this->scoped->getUser();
- $this->elementStart('form', array('method' => 'post',
- 'id' => 'form_settings_profile',
- 'class' => 'form_settings',
- 'action' => common_local_url('profilesettings')));
- $this->elementStart('fieldset');
-
- $this->element('legend', null, _('Profile information'));
- $this->hidden('token', common_session_token());
-
- $this->elementStart('ul', 'form_data');
- if (Event::handle('StartProfileFormData', array($this))) {
- $this->elementStart('li');
-
- $this->input(
- 'nickname',
- _('Nickname'),
- $this->trimmed('nickname') ?: $this->scoped->getNickname(),
-
- _('1-64 lowercase letters or numbers, no punctuation or spaces.'),
- null,
- false,
- (common_config('profile', 'changenick')
- ? ['placeholder' => null]
- : ['disabled' => 'disabled', 'placeholder' => null])
- );
- $this->elementEnd('li');
- $this->elementStart('li');
-
- $this->input(
- 'fullname',
- _('Full name'),
- $this->trimmed('fullname') ?: $this->scoped->getFullname(),
-
- _('A full name is required, if empty it will be set to your nickname.'),
- null,
- true
- );
- $this->elementEnd('li');
- $this->elementStart('li');
-
- $this->input(
- 'homepage',
- _('Homepage'),
- $this->trimmed('homepage') ?: $this->scoped->getHomepage(),
-
- _('URL of your homepage, blog, or profile on another site.')
- );
- $this->elementEnd('li');
- $this->elementStart('li');
- $maxBio = Profile::maxBio();
- if ($maxBio > 0) {
-
-
-
- $bioInstr = sprintf(
- _m('Describe yourself and your interests in %d character.',
- 'Describe yourself and your interests in %d characters.',
- $maxBio),
- $maxBio
- );
- } else {
-
- $bioInstr = _('Describe yourself and your interests.');
- }
-
-
- $this->textarea(
- 'bio',
- _('Bio'),
- ($this->trimmed('bio') ?: $this->scoped->getDescription()),
- $bioInstr
- );
- $this->elementEnd('li');
- $this->elementStart('li');
-
- $this->input(
- 'location',
- _('Location'),
- ($this->trimmed('location') ?: $this->scoped->location),
-
- _('Where you are, like "City, State (or Region), Country".')
- );
- $this->elementEnd('li');
- if (common_config('location', 'share') == 'user') {
- $this->elementStart('li');
-
- $this->checkbox(
- 'sharelocation',
- _('Share my current location when posting notices'),
- ($this->arg('sharelocation') ?
- $this->boolean('sharelocation') : $this->scoped->shareLocation())
- );
- $this->elementEnd('li');
- }
- Event::handle('EndProfileFormData', array($this));
- $this->elementStart('li');
-
- $this->input(
- 'tags',
- _('Tags'),
- ($this->trimmed('tags') ?: implode(' ', Profile_tag::getSelfTagsArray($this->scoped))),
-
- _('Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated.')
- );
- $this->elementEnd('li');
- $this->elementStart('li');
- $language = common_language();
-
- $this->dropdown(
- 'language',
- _('Language'),
-
- get_nice_language_list(),
- _('Preferred language.'),
- false,
- $language
- );
- $this->elementEnd('li');
- $timezone = common_timezone();
- $timezones = array();
- foreach (DateTimeZone::listIdentifiers() as $k => $v) {
- $timezones[$v] = $v;
- }
- $this->elementStart('li');
-
- $this->dropdown(
- 'timezone',
- _('Timezone'),
-
- $timezones,
- _('What timezone are you normally in?'),
- true,
- $timezone
- );
- $this->elementEnd('li');
- $this->elementStart('li');
- $this->checkbox(
- 'autosubscribe',
-
- _('Automatically subscribe to whoever '.
- 'subscribes to me (best for non-humans)'),
- ($this->arg('autosubscribe') ?
- $this->boolean('autosubscribe') : $user->autosubscribe)
- );
- $this->elementEnd('li');
- $this->elementStart('li');
- $this->dropdown(
- 'subscribe_policy',
-
- _('Subscription policy'),
- [
-
- User::SUBSCRIBE_POLICY_OPEN => _('Let anyone follow me'),
-
- User::SUBSCRIBE_POLICY_MODERATE => _('Ask me first'),
- ],
-
- _('Whether other users need your permission to follow your updates.'),
- false,
- (empty($user->subscribe_policy) ? User::SUBSCRIBE_POLICY_OPEN : $user->subscribe_policy)
- );
- $this->elementEnd('li');
- }
- if (common_config('profile', 'allowprivate') || $user->private_stream) {
- $this->elementStart('li');
- $this->checkbox(
- 'private_stream',
-
- _('Make updates visible only to my followers'),
- ($this->arg('private_stream') ?
- $this->boolean('private_stream') : $user->private_stream)
- );
- $this->elementEnd('li');
- }
- $this->elementEnd('ul');
-
- $this->submit('save', _m('BUTTON', 'Save'));
- $this->elementEnd('fieldset');
- $this->elementEnd('form');
- }
-
- protected function doPost()
- {
- if (Event::handle('StartProfileSaveForm', array($this))) {
-
- if (common_config('profile', 'changenick') == true) {
- try {
- $nickname = Nickname::normalize($this->trimmed('nickname'), true);
- } catch (NicknameTakenException $e) {
-
- if (!$this->scoped->sameAs($e->profile)) {
- throw $e;
- }
-
-
- $nickname = Nickname::normalize($this->trimmed('nickname'));
- }
- }
- $fullname = $this->trimmed('fullname');
- $homepage = $this->trimmed('homepage');
- $bio = $this->trimmed('bio');
- $location = $this->trimmed('location');
- $autosubscribe = $this->boolean('autosubscribe');
- $subscribe_policy = $this->trimmed('subscribe_policy');
- $language = $this->trimmed('language');
- $timezone = $this->trimmed('timezone');
- $tagstring = $this->trimmed('tags');
-
- if (!is_null($homepage) && (strlen($homepage) > 0) &&
- !common_valid_http_url($homepage)) {
-
- throw new ClientException(_('Homepage is not a valid URL.'));
- } elseif (!is_null($fullname) && mb_strlen($fullname) > 191) {
-
- throw new ClientException(_('Full name is too long (maximum 191 characters).'));
- } elseif (Profile::bioTooLong($bio)) {
-
-
-
- throw new ClientException(sprintf(
- _m('Bio is too long (maximum %d character).',
- 'Bio is too long (maximum %d characters).',
- Profile::maxBio()),
- Profile::maxBio()
- ));
- } elseif (!is_null($location) && mb_strlen($location) > 191) {
-
- throw new ClientException(_('Location is too long (maximum 191 characters).'));
- } elseif (is_null($timezone) || !in_array($timezone, DateTimeZone::listIdentifiers())) {
-
- throw new ClientException(_('Timezone not selected.'));
- } elseif (!is_null($language) && strlen($language) > 50) {
-
- throw new ClientException(_('Language is too long (maximum 50 characters).'));
- }
- $tags = array();
- $tag_priv = array();
- if (is_string($tagstring) && strlen($tagstring) > 0) {
- $tags = preg_split('/[\s,]+/', $tagstring);
- foreach ($tags as &$tag) {
- $private = @$tag[0] === '.';
- $tag = common_canonical_tag($tag);
- if (!common_valid_profile_tag($tag)) {
-
-
- throw new ClientException(sprintf(_('Invalid tag: "%s".'), $tag));
- }
- $tag_priv[$tag] = $private;
- }
- }
- $user = $this->scoped->getUser();
- $user->query('BEGIN');
-
-
- if (common_config('profile', 'allowprivate') || $user->private_stream) {
- $private_stream = $this->boolean('private_stream');
- } else {
-
- $private_stream = (bool) $user->private_stream;
- }
-
- if ((bool) $user->autosubscribe != $autosubscribe
- || (bool) $user->private_stream != $private_stream
- || $user->timezone != $timezone
- || $user->language != $language
- || $user->subscribe_policy != $subscribe_policy) {
- $original = clone($user);
- $user->autosubscribe = $autosubscribe;
- $user->language = $language;
- $user->private_stream = $private_stream;
- $user->subscribe_policy = $subscribe_policy;
- $user->timezone = $timezone;
- $result = $user->update($original);
- if ($result === false) {
- common_log_db_error($user, 'UPDATE', __FILE__);
- $user->query('ROLLBACK');
-
-
- throw new ServerException(_('Could not update user for autosubscribe or subscribe_policy.'));
- }
-
- common_init_language();
- }
- $original = clone($this->scoped);
- if (common_config('profile', 'changenick') == true && $this->scoped->getNickname() !== $nickname) {
- assert(Nickname::normalize($nickname)===$nickname);
- common_debug("Changing user nickname from '{$this->scoped->getNickname()}' to '{$nickname}'.");
- $this->scoped->nickname = $nickname;
- $this->scoped->profileurl = common_profile_url($this->scoped->getNickname());
- }
- $this->scoped->fullname = (mb_strlen($fullname)>0 ? $fullname : $this->scoped->nickname);
- $this->scoped->homepage = $homepage;
- $this->scoped->bio = $bio;
- $this->scoped->location = $location;
- $loc = Location::fromName($location);
- if (empty($loc)) {
- $this->scoped->lat = null;
- $this->scoped->lon = null;
- $this->scoped->location_id = null;
- $this->scoped->location_ns = null;
- } else {
- $this->scoped->lat = $loc->lat;
- $this->scoped->lon = $loc->lon;
- $this->scoped->location_id = $loc->location_id;
- $this->scoped->location_ns = $loc->location_ns;
- }
- if (common_config('location', 'share') == 'user') {
- $exists = false;
- $prefs = User_location_prefs::getKV('user_id', $this->scoped->getID());
- if (empty($prefs)) {
- $prefs = new User_location_prefs();
- $prefs->user_id = $this->scoped->getID();
- $prefs->created = common_sql_now();
- } else {
- $exists = true;
- $orig = clone($prefs);
- }
- $prefs->share_location = $this->boolean('sharelocation');
- if ($exists) {
- $result = $prefs->update($orig);
- } else {
- $result = $prefs->insert();
- }
- if ($result === false) {
- common_log_db_error($prefs, ($exists) ? 'UPDATE' : 'INSERT', __FILE__);
- $user->query('ROLLBACK');
-
- throw new ServerException(_('Could not save location prefs.'));
- }
- }
- common_debug('Old profile: ' . common_log_objstring($original), __FILE__);
- common_debug('New profile: ' . common_log_objstring($this->scoped), __FILE__);
- $result = $this->scoped->update($original);
- if ($result === false) {
- common_log_db_error($this->scoped, 'UPDATE', __FILE__);
- $user->query('ROLLBACK');
-
- throw new ServerException(_('Could not save profile.'));
- }
-
- $result = Profile_tag::setSelfTags($this->scoped, $tags, $tag_priv);
- $user->query('COMMIT');
- Event::handle('EndProfileSaveForm', array($this));
-
- return _('Settings saved.');
- }
- }
- public function showAside()
- {
- $this->elementStart('div', array('id' => 'aside_primary',
- 'class' => 'aside'));
- $this->elementStart('div', array('id' => 'account_actions',
- 'class' => 'section'));
- $this->elementStart('ul');
- if (Event::handle('StartProfileSettingsActions', array($this))) {
- if ($this->scoped->hasRight(Right::BACKUPACCOUNT)) {
- $this->elementStart('li');
- $this->element(
- 'a',
- ['href' => common_local_url('backupaccount')],
-
- _('Backup account')
- );
- $this->elementEnd('li');
- }
- if ($this->scoped->hasRight(Right::DELETEACCOUNT)) {
- $this->elementStart('li');
- $this->element(
- 'a',
- ['href' => common_local_url('deleteaccount')],
-
- _('Delete account')
- );
- $this->elementEnd('li');
- }
- if ($this->scoped->hasRight(Right::RESTOREACCOUNT)) {
- $this->elementStart('li');
- $this->element(
- 'a',
- ['href' => common_local_url('restoreaccount')],
-
- _('Restore account')
- );
- $this->elementEnd('li');
- }
- Event::handle('EndProfileSettingsActions', array($this));
- }
- $this->elementEnd('ul');
- $this->elementEnd('div');
- $this->elementEnd('div');
- }
- }
|