protected function doPost()
 {
     try {
         $request = Subscription_queue::pkeyGet(array('subscriber' => $this->scoped->id, 'subscribed' => $this->target->id));
         if ($request instanceof Subscription_queue) {
             $request->abort();
         }
     } catch (AlreadyFulfilledException $e) {
         common_debug('Tried to cancel a non-existing pending subscription');
     }
     if (GNUsocial::isAjax()) {
         $this->startHTML('text/xml;charset=utf-8');
         $this->elementStart('head');
         // TRANS: Title after unsubscribing from a group.
         $this->element('title', null, _m('TITLE', 'Unsubscribed'));
         $this->elementEnd('head');
         $this->elementStart('body');
         $subscribe = new SubscribeForm($this, $this->target);
         $subscribe->show();
         $this->elementEnd('body');
         $this->endHTML();
         exit;
     }
     common_redirect(common_local_url('subscriptions', array('nickname' => $this->scoped->getNickname())), 303);
 }
Beispiel #2
0
 function handle($args)
 {
     parent::handle($args);
     if (!common_logged_in()) {
         $this->clientError(_('Not logged in.'));
         return;
     }
     $user = common_current_user();
     if ($_SERVER['REQUEST_METHOD'] != 'POST') {
         common_redirect(common_local_url('subscriptions', array('nickname' => $user->nickname)));
         return;
     }
     /* Use a session token for CSRF protection. */
     $token = $this->trimmed('token');
     if (!$token || $token != common_session_token()) {
         $this->clientError(_('There was a problem with your session token. ' . 'Try again, please.'));
         return;
     }
     $other_id = $this->arg('unsubscribeto');
     if (!$other_id) {
         $this->clientError(_('No profile ID in request.'));
         return;
     }
     $other = Profile::staticGet('id', $other_id);
     if (!$other) {
         $this->clientError(_('No profile with that ID.'));
         return;
     }
     $result = subs_unsubscribe_to($user, $other);
     if (is_string($result)) {
         $this->clientError($result);
         return;
     }
     if ($this->boolean('ajax')) {
         $this->startHTML('text/xml;charset=utf-8');
         $this->elementStart('head');
         $this->element('title', null, _('Unsubscribed'));
         $this->elementEnd('head');
         $this->elementStart('body');
         $subscribe = new SubscribeForm($this, $other);
         $subscribe->show();
         $this->elementEnd('body');
         $this->elementEnd('html');
     } else {
         common_redirect(common_local_url('subscriptions', array('nickname' => $user->nickname)), 303);
     }
 }
 function handle($args)
 {
     parent::handle($args);
     if (!common_logged_in()) {
         // TRANS: Error message displayed when trying to perform an action that requires a logged in user.
         $this->clientError(_('Not logged in.'));
     }
     if ($_SERVER['REQUEST_METHOD'] != 'POST') {
         common_redirect(common_local_url('subscriptions', array('nickname' => $this->scoped->nickname)));
     }
     /* Use a session token for CSRF protection. */
     $token = $this->trimmed('token');
     if (!$token || $token != common_session_token()) {
         // TRANS: Client error displayed when the session token does not match or is not given.
         $this->clientError(_('There was a problem with your session token. ' . 'Try again, please.'));
     }
     $other_id = $this->arg('unsubscribeto');
     if (!$other_id) {
         // TRANS: Client error displayed when trying to unsubscribe without providing a profile ID.
         $this->clientError(_('No profile ID in request.'));
     }
     $other = Profile::getKV('id', $other_id);
     if (!$other instanceof Profile) {
         // TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID.
         $this->clientError(_('No profile with that ID.'));
     }
     try {
         Subscription::cancel($this->scoped, $other);
     } catch (Exception $e) {
         $this->clientError($e->getMessage());
     }
     if ($this->boolean('ajax')) {
         $this->startHTML('text/xml;charset=utf-8');
         $this->elementStart('head');
         // TRANS: Page title for page to unsubscribe.
         $this->element('title', null, _('Unsubscribed'));
         $this->elementEnd('head');
         $this->elementStart('body');
         $subscribe = new SubscribeForm($this, $other);
         $subscribe->show();
         $this->elementEnd('body');
         $this->endHTML();
     } else {
         common_redirect(common_local_url('subscriptions', array('nickname' => $this->scoped->nickname)), 303);
     }
 }
Beispiel #4
0
 public function __construct($data = null, $isSingleton = false)
 {
     parent::__construct($data, $isSingleton);
     if ($data || $isSingleton) {
         return;
     }
     $this->addDefaultFields();
 }
Beispiel #5
0
 function showProfile()
 {
     $this->elementStart('div', 'entity_profile vcard author');
     $this->element('h2', null, _('User profile'));
     $avatar = $this->profile->getAvatar(AVATAR_PROFILE_SIZE);
     $this->elementStart('dl', 'entity_depiction');
     $this->element('dt', null, _('Photo'));
     $this->elementStart('dd');
     $this->element('img', array('src' => $avatar ? $avatar->displayUrl() : Avatar::defaultImage(AVATAR_PROFILE_SIZE), 'class' => 'photo avatar', 'width' => AVATAR_PROFILE_SIZE, 'height' => AVATAR_PROFILE_SIZE, 'alt' => $this->profile->nickname));
     $this->elementEnd('dd');
     $user = User::staticGet('id', $this->profile->id);
     $cur = common_current_user();
     if ($cur && $cur->id == $user->id) {
         $this->elementStart('dd');
         $this->element('a', array('href' => common_local_url('avatarsettings')), _('Edit Avatar'));
         $this->elementEnd('dd');
     }
     $this->elementEnd('dl');
     $this->elementStart('dl', 'entity_nickname');
     $this->element('dt', null, _('Nickname'));
     $this->elementStart('dd');
     $hasFN = $this->profile->fullname ? 'nickname url uid' : 'fn nickname url uid';
     $this->element('a', array('href' => $this->profile->profileurl, 'rel' => 'me', 'class' => $hasFN), $this->profile->nickname);
     $this->elementEnd('dd');
     $this->elementEnd('dl');
     if ($this->profile->fullname) {
         $this->elementStart('dl', 'entity_fn');
         $this->element('dt', null, _('Full name'));
         $this->elementStart('dd');
         $this->element('span', 'fn', $this->profile->fullname);
         $this->elementEnd('dd');
         $this->elementEnd('dl');
     }
     if ($this->profile->location) {
         $this->elementStart('dl', 'entity_location');
         $this->element('dt', null, _('Location'));
         $this->element('dd', 'label', $this->profile->location);
         $this->elementEnd('dl');
     }
     if ($this->profile->homepage) {
         $this->elementStart('dl', 'entity_url');
         $this->element('dt', null, _('URL'));
         $this->elementStart('dd');
         $this->element('a', array('href' => $this->profile->homepage, 'rel' => 'me', 'class' => 'url'), $this->profile->homepage);
         $this->elementEnd('dd');
         $this->elementEnd('dl');
     }
     if ($this->profile->bio) {
         $this->elementStart('dl', 'entity_note');
         $this->element('dt', null, _('Note'));
         $this->element('dd', 'note', $this->profile->bio);
         $this->elementEnd('dl');
     }
     $tags = Profile_tag::getTags($this->profile->id, $this->profile->id);
     if (count($tags) > 0) {
         $this->elementStart('dl', 'entity_tags');
         $this->element('dt', null, _('Tags'));
         $this->elementStart('dd');
         $this->elementStart('ul', 'tags xoxo');
         foreach ($tags as $tag) {
             $this->elementStart('li');
             // Avoid space by using raw output.
             $pt = '<span class="mark_hash">#</span><a rel="tag" href="' . common_local_url('peopletag', array('tag' => $tag)) . '">' . $tag . '</a>';
             $this->raw($pt);
             $this->elementEnd('li');
         }
         $this->elementEnd('ul');
         $this->elementEnd('dd');
         $this->elementEnd('dl');
     }
     $this->elementEnd('div');
     $this->elementStart('div', 'entity_actions');
     $this->element('h2', null, _('User actions'));
     $this->elementStart('ul');
     $cur = common_current_user();
     if ($cur && $cur->id == $this->profile->id) {
         $this->elementStart('li', 'entity_edit');
         $this->element('a', array('href' => common_local_url('profilesettings'), 'title' => _('Edit profile settings')), _('Edit'));
         $this->elementEnd('li');
     }
     if ($cur) {
         if ($cur->id != $this->profile->id) {
             $this->elementStart('li', 'entity_subscribe');
             if ($cur->isSubscribed($this->profile)) {
                 $usf = new UnsubscribeForm($this, $this->profile);
                 $usf->show();
             } else {
                 $sf = new SubscribeForm($this, $this->profile);
                 $sf->show();
             }
             $this->elementEnd('li');
         }
     } else {
         $this->elementStart('li', 'entity_subscribe');
         $this->showRemoteSubscribeLink();
         $this->elementEnd('li');
     }
     if ($cur && $cur->id != $user->id && $cur->mutuallySubscribed($user)) {
         $this->elementStart('li', 'entity_send-a-message');
         $this->element('a', array('href' => common_local_url('newmessage', array('to' => $user->id)), 'title' => _('Send a direct message to this user')), _('Message'));
         $this->elementEnd('li');
         if ($user->email && $user->emailnotifynudge) {
             $this->elementStart('li', 'entity_nudge');
             $nf = new NudgeForm($this, $user);
             $nf->show();
             $this->elementEnd('li');
         }
     }
     if ($cur && $cur->id != $this->profile->id) {
         $blocked = $cur->hasBlocked($this->profile);
         $this->elementStart('li', 'entity_block');
         if ($blocked) {
             $ubf = new UnblockForm($this, $this->profile);
             $ubf->show();
         } else {
             $bf = new BlockForm($this, $this->profile);
             $bf->show();
         }
         $this->elementEnd('li');
     }
     $this->elementEnd('ul');
     $this->elementEnd('div');
 }
Beispiel #6
0
<h2>Anmeldebogen</h2>

<?php 
$model = new SubscribeForm();
$model->labels = array('name' => 'Name', 'att2' => 'Adresse', 'email' => 'Email Adresse', 'att4' => 'Telefon', 'att5' => 'Welche Erfahrungen mit Massage bringst du mit?', 'att6' => 'Was wünschst du von diesem Workshop?');
$model->rules = array(array('att2, att4', 'required'), array('att4, att5, att6', 'safe'));
if (isset($_POST['SubscribeForm'])) {
    $model->attributes = $_POST['SubscribeForm'];
    $model->validate();
    if (!$model->hasErrors()) {
        $model->subscribeType = 'Thaimassage Modul 1';
        $model->beginText = '
Erlerne die Kunst der Thaimassage Modul 1 (Basiskurs)<br/>
Seminar vom 29. November – 1. Dezember 2013,<br/>
Beginn:  Freitag17 Uhr, Ende:  Sonntag 17 Uhr  <br/>
<br/>
	Der Workshop kostet 285 €.<br/>
	<strong>Bitte überweise innerhalb von 7 Tagen 100 € Anzahlung als Deine Platzreservierung oder den kompletten Betrag</strong><br/>
	<br/>
	Bankverbindung:<br/>
	Inh. Stefan Peters - Massagen<br/>
	HypoVereinsbank <br/>
	Kto: 388008148<br/>
	BLZ: 86020086<br/>
	Verwendungszweck:     Thaikurs DD  und dein…. Name<br/>
	<br/>
	Der Restbetrage in Höhe von 185 € ist zu Beginn des Kurses fällig.<br/>
	Fragen beantworten wir gern per mail und persönlich.<br/>
	Anmeldung:  Milam M. Horn, <br/> Email: spiritoflove@t-online.de, <br/>Tel.: 0175 86 57 233<br/>
';
        $model->endText = 'Vielen Dank für Ihre Anmeldung';
Beispiel #7
0
 function showSubscribeButton()
 {
     // Is this a logged-in user, looking at someone else's
     // profile?
     $user = common_current_user();
     if (!empty($user) && $this->profile->id != $user->id) {
         $this->out->elementStart('li', 'entity_subscribe');
         if ($user->isSubscribed($this->profile)) {
             $usf = new UnsubscribeForm($this->out, $this->profile);
             $usf->show();
         } else {
             if (Event::handle('StartShowProfileListSubscribeButton', array($this))) {
                 $sf = new SubscribeForm($this->out, $this->profile);
                 $sf->show();
                 Event::handle('EndShowProfileListSubscribeButton', array($this));
             }
         }
         $this->out->elementEnd('li');
     }
 }
Beispiel #8
0
 function showEntityActions()
 {
     if ($this->profile->hasRole(Profile_role::DELETED)) {
         $this->out->elementStart('div', 'entity_actions');
         $this->out->element('h2', null, _('User actions'));
         $this->out->elementStart('ul');
         $this->out->elementStart('p', array('class' => 'profile_deleted'));
         $this->out->text(_('User deletion in progress...'));
         $this->out->elementEnd('p');
         $this->out->elementEnd('ul');
         $this->out->elementEnd('div');
         return;
     }
     if (Event::handle('StartProfilePageActionsSection', array(&$this->out, $this->profile))) {
         $cur = common_current_user();
         $this->out->elementStart('div', 'entity_actions');
         $this->out->element('h2', null, _('User actions'));
         $this->out->elementStart('ul');
         if (Event::handle('StartProfilePageActionsElements', array(&$this->out, $this->profile))) {
             if (empty($cur)) {
                 // not logged in
                 if (Event::handle('StartProfileRemoteSubscribe', array(&$this->out, $this->profile))) {
                     $this->out->elementStart('li', 'entity_subscribe');
                     $this->showRemoteSubscribeLink();
                     $this->out->elementEnd('li');
                     Event::handle('EndProfileRemoteSubscribe', array(&$this->out, $this->profile));
                 }
             } else {
                 if ($cur->id == $this->profile->id) {
                     // your own page
                     $this->out->elementStart('li', 'entity_edit');
                     $this->out->element('a', array('href' => common_local_url('profilesettings'), 'title' => _('Edit profile settings')), _('Edit'));
                     $this->out->elementEnd('li');
                 } else {
                     // someone else's page
                     // subscribe/unsubscribe button
                     $this->out->elementStart('li', 'entity_subscribe');
                     if ($cur->isSubscribed($this->profile)) {
                         $usf = new UnsubscribeForm($this->out, $this->profile);
                         $usf->show();
                     } else {
                         $sf = new SubscribeForm($this->out, $this->profile);
                         $sf->show();
                     }
                     $this->out->elementEnd('li');
                     if ($cur->mutuallySubscribed($this->user)) {
                         // message
                         $this->out->elementStart('li', 'entity_send-a-message');
                         $this->out->element('a', array('href' => common_local_url('newmessage', array('to' => $this->user->id)), 'title' => _('Send a direct message to this user')), _('Message'));
                         $this->out->elementEnd('li');
                         // nudge
                         if ($this->user->email && $this->user->emailnotifynudge) {
                             $this->out->elementStart('li', 'entity_nudge');
                             $nf = new NudgeForm($this->out, $this->user);
                             $nf->show();
                             $this->out->elementEnd('li');
                         }
                     }
                     // return-to args, so we don't have to keep re-writing them
                     list($action, $r2args) = $this->out->returnToArgs();
                     // push the action into the list
                     $r2args['action'] = $action;
                     // block/unblock
                     $blocked = $cur->hasBlocked($this->profile);
                     $this->out->elementStart('li', 'entity_block');
                     if ($blocked) {
                         $ubf = new UnblockForm($this->out, $this->profile, $r2args);
                         $ubf->show();
                     } else {
                         $bf = new BlockForm($this->out, $this->profile, $r2args);
                         $bf->show();
                     }
                     $this->out->elementEnd('li');
                     if ($cur->hasRight(Right::SANDBOXUSER) || $cur->hasRight(Right::SILENCEUSER) || $cur->hasRight(Right::DELETEUSER)) {
                         $this->out->elementStart('li', 'entity_moderation');
                         $this->out->element('p', null, _('Moderate'));
                         $this->out->elementStart('ul');
                         if ($cur->hasRight(Right::SANDBOXUSER)) {
                             $this->out->elementStart('li', 'entity_sandbox');
                             if ($this->user->isSandboxed()) {
                                 $usf = new UnSandboxForm($this->out, $this->profile, $r2args);
                                 $usf->show();
                             } else {
                                 $sf = new SandboxForm($this->out, $this->profile, $r2args);
                                 $sf->show();
                             }
                             $this->out->elementEnd('li');
                         }
                         if ($cur->hasRight(Right::SILENCEUSER)) {
                             $this->out->elementStart('li', 'entity_silence');
                             if ($this->user->isSilenced()) {
                                 $usf = new UnSilenceForm($this->out, $this->profile, $r2args);
                                 $usf->show();
                             } else {
                                 $sf = new SilenceForm($this->out, $this->profile, $r2args);
                                 $sf->show();
                             }
                             $this->out->elementEnd('li');
                         }
                         if ($cur->hasRight(Right::DELETEUSER)) {
                             $this->out->elementStart('li', 'entity_delete');
                             $df = new DeleteUserForm($this->out, $this->profile, $r2args);
                             $df->show();
                             $this->out->elementEnd('li');
                         }
                         $this->out->elementEnd('ul');
                         $this->out->elementEnd('li');
                     }
                     if ($cur->hasRight(Right::GRANTROLE)) {
                         $this->out->elementStart('li', 'entity_role');
                         $this->out->element('p', null, _('User role'));
                         $this->out->elementStart('ul');
                         $this->roleButton('administrator', _m('role', 'Administrator'));
                         $this->roleButton('moderator', _m('role', 'Moderator'));
                         $this->out->elementEnd('ul');
                         $this->out->elementEnd('li');
                     }
                 }
             }
             Event::handle('EndProfilePageActionsElements', array(&$this->out, $this->profile));
         }
         $this->out->elementEnd('ul');
         $this->out->elementEnd('div');
         Event::handle('EndProfilePageActionsSection', array(&$this->out, $this->profile));
     }
 }
 function showActions()
 {
     if (Event::handle('StartProfilePageActionsSection', array($this->out, $this->profile))) {
         if ($this->profile->hasRole(Profile_role::DELETED)) {
             $this->out->elementStart('div', 'entity_actions');
             // TRANS: H2 for user actions in a profile.
             $this->out->element('h2', null, _('User actions'));
             $this->out->elementStart('ul');
             $this->out->elementStart('p', array('class' => 'profile_deleted'));
             // TRANS: Text shown in user profile of not yet compeltely deleted users.
             $this->out->text(_('User deletion in progress...'));
             $this->out->elementEnd('p');
             $this->out->elementEnd('ul');
             $this->out->elementEnd('div');
             return;
         }
         $cur = common_current_user();
         $this->out->elementStart('div', 'entity_actions');
         // TRANS: H2 for entity actions in a profile.
         $this->out->element('h2', null, _('User actions'));
         $this->out->elementStart('ul');
         if (Event::handle('StartProfilePageActionsElements', array($this->out, $this->profile))) {
             if (empty($cur)) {
                 // not logged in
                 if (Event::handle('StartProfileRemoteSubscribe', array($this->out, $this->profile))) {
                     Event::handle('EndProfileRemoteSubscribe', array($this->out, $this->profile));
                 }
             } else {
                 if ($cur->id == $this->profile->id) {
                     // your own page
                     $this->out->elementStart('li', 'entity_edit');
                     $this->out->element('a', array('href' => common_local_url('profilesettings'), 'title' => _('Edit profile settings.')), _m('BUTTON', 'Edit'));
                     $this->out->elementEnd('li');
                 } else {
                     // someone else's page
                     // subscribe/unsubscribe button
                     $this->out->elementStart('li', 'entity_subscribe');
                     if ($cur->isSubscribed($this->profile)) {
                         $usf = new UnsubscribeForm($this->out, $this->profile);
                         $usf->show();
                     } else {
                         if ($cur->hasPendingSubscription($this->profile)) {
                             $sf = new CancelSubscriptionForm($this->out, $this->profile);
                             $sf->show();
                         } else {
                             $sf = new SubscribeForm($this->out, $this->profile);
                             $sf->show();
                         }
                     }
                     $this->out->elementEnd('li');
                     if ($this->profile->isLocal() && $cur->mutuallySubscribed($this->profile)) {
                         // nudge
                         if ($this->user->email && $this->user->emailnotifynudge) {
                             $this->out->elementStart('li', 'entity_nudge');
                             $nf = new NudgeForm($this->out, $this->user);
                             $nf->show();
                             $this->out->elementEnd('li');
                         }
                     }
                     // return-to args, so we don't have to keep re-writing them
                     list($action, $r2args) = $this->out->returnToArgs();
                     // push the action into the list
                     $r2args['action'] = $action;
                     // block/unblock
                     $blocked = $cur->hasBlocked($this->profile);
                     $this->out->elementStart('li', 'entity_block');
                     if ($blocked) {
                         $ubf = new UnblockForm($this->out, $this->profile, $r2args);
                         $ubf->show();
                     } else {
                         $bf = new BlockForm($this->out, $this->profile, $r2args);
                         $bf->show();
                     }
                     $this->out->elementEnd('li');
                     // Some actions won't be applicable to non-local users.
                     $isLocal = !empty($this->user);
                     if ($cur->hasRight(Right::SANDBOXUSER) || $cur->hasRight(Right::SILENCEUSER) || $cur->hasRight(Right::DELETEUSER)) {
                         $this->out->elementStart('li', 'entity_moderation');
                         // TRANS: Label text on user profile to select a user role.
                         $this->out->element('p', null, _('Moderate'));
                         $this->out->elementStart('ul');
                         if ($cur->hasRight(Right::SANDBOXUSER)) {
                             $this->out->elementStart('li', 'entity_sandbox');
                             if ($this->profile->isSandboxed()) {
                                 $usf = new UnSandboxForm($this->out, $this->profile, $r2args);
                                 $usf->show();
                             } else {
                                 $sf = new SandboxForm($this->out, $this->profile, $r2args);
                                 $sf->show();
                             }
                             $this->out->elementEnd('li');
                         }
                         if ($cur->hasRight(Right::SILENCEUSER)) {
                             $this->out->elementStart('li', 'entity_silence');
                             if ($this->profile->isSilenced()) {
                                 $usf = new UnSilenceForm($this->out, $this->profile, $r2args);
                                 $usf->show();
                             } else {
                                 $sf = new SilenceForm($this->out, $this->profile, $r2args);
                                 $sf->show();
                             }
                             $this->out->elementEnd('li');
                         }
                         if ($isLocal && $cur->hasRight(Right::DELETEUSER)) {
                             $this->out->elementStart('li', 'entity_delete');
                             $df = new DeleteUserForm($this->out, $this->profile, $r2args);
                             $df->show();
                             $this->out->elementEnd('li');
                         }
                         $this->out->elementEnd('ul');
                         $this->out->elementEnd('li');
                     }
                     if ($isLocal && $cur->hasRight(Right::GRANTROLE)) {
                         $this->out->elementStart('li', 'entity_role');
                         // TRANS: Label text on user profile to select a user role.
                         $this->out->element('p', null, _('User role'));
                         $this->out->elementStart('ul');
                         // TRANS: Role that can be set for a user profile.
                         $this->roleButton('administrator', _m('role', 'Administrator'));
                         // TRANS: Role that can be set for a user profile.
                         $this->roleButton('moderator', _m('role', 'Moderator'));
                         $this->out->elementEnd('ul');
                         $this->out->elementEnd('li');
                     }
                 }
             }
             Event::handle('EndProfilePageActionsElements', array($this->out, $this->profile));
         }
         $this->out->elementEnd('ul');
         $this->out->elementEnd('div');
         Event::handle('EndProfilePageActionsSection', array($this->out, $this->profile));
     }
 }
Beispiel #10
0
 function showProfile()
 {
     $this->out->elementStart('li', array('class' => 'profile', 'id' => 'profile-' . $this->profile->id));
     $user = common_current_user();
     $is_own = !is_null($user) && isset($this->owner) && $user->id === $this->owner->id;
     $this->out->elementStart('div', 'entity_profile vcard');
     $avatar = $this->profile->getAvatar(AVATAR_STREAM_SIZE);
     $this->out->elementStart('a', array('href' => $this->profile->profileurl, 'class' => 'url'));
     $this->out->element('img', array('src' => $avatar ? $avatar->displayUrl() : Avatar::defaultImage(AVATAR_STREAM_SIZE), 'class' => 'photo avatar', 'width' => AVATAR_STREAM_SIZE, 'height' => AVATAR_STREAM_SIZE, 'alt' => $this->profile->fullname ? $this->profile->fullname : $this->profile->nickname));
     $hasFN = $this->profile->fullname !== '' ? 'nickname' : 'fn nickname';
     $this->out->elementStart('span', $hasFN);
     $this->out->raw($this->highlight($this->profile->nickname));
     $this->out->elementEnd('span');
     $this->out->elementEnd('a');
     if (!empty($this->profile->fullname)) {
         $this->out->elementStart('dl', 'entity_fn');
         $this->out->element('dt', null, 'Full name');
         $this->out->elementStart('dd');
         $this->out->elementStart('span', 'fn');
         $this->out->raw($this->highlight($this->profile->fullname));
         $this->out->elementEnd('span');
         $this->out->elementEnd('dd');
         $this->out->elementEnd('dl');
     }
     if (!empty($this->profile->location)) {
         $this->out->elementStart('dl', 'entity_location');
         $this->out->element('dt', null, _('Location'));
         $this->out->elementStart('dd', 'label');
         $this->out->raw($this->highlight($this->profile->location));
         $this->out->elementEnd('dd');
         $this->out->elementEnd('dl');
     }
     if (!empty($this->profile->homepage)) {
         $this->out->elementStart('dl', 'entity_url');
         $this->out->element('dt', null, _('URL'));
         $this->out->elementStart('dd');
         $this->out->elementStart('a', array('href' => $this->profile->homepage, 'class' => 'url'));
         $this->out->raw($this->highlight($this->profile->homepage));
         $this->out->elementEnd('a');
         $this->out->elementEnd('dd');
         $this->out->elementEnd('dl');
     }
     if (!empty($this->profile->bio)) {
         $this->out->elementStart('dl', 'entity_note');
         $this->out->element('dt', null, _('Note'));
         $this->out->elementStart('dd', 'note');
         $this->out->raw($this->highlight($this->profile->bio));
         $this->out->elementEnd('dd');
         $this->out->elementEnd('dl');
     }
     # If we're on a list with an owner (subscriptions or subscribers)...
     if ($this->owner) {
         # Get tags
         $tags = Profile_tag::getTags($this->owner->id, $this->profile->id);
         $this->out->elementStart('dl', 'entity_tags');
         $this->out->elementStart('dt');
         if ($is_own) {
             $this->out->element('a', array('href' => common_local_url('tagother', array('id' => $this->profile->id))), _('Tags'));
         } else {
             $this->out->text(_('Tags'));
         }
         $this->out->elementEnd('dt');
         $this->out->elementStart('dd');
         if ($tags) {
             $this->out->elementStart('ul', 'tags xoxo');
             foreach ($tags as $tag) {
                 $this->out->elementStart('li');
                 $this->out->element('span', 'mark_hash', '#');
                 $this->out->element('a', array('rel' => 'tag', 'href' => common_local_url($this->action->trimmed('action'), array('nickname' => $this->owner->nickname, 'tag' => $tag))), $tag);
                 $this->out->elementEnd('li');
             }
             $this->out->elementEnd('ul');
         } else {
             $this->out->text(_('(none)'));
         }
         $this->out->elementEnd('dd');
         $this->out->elementEnd('dl');
     }
     if ($is_own) {
         $this->showOwnerControls($this->profile);
     }
     $this->out->elementEnd('div');
     $this->out->elementStart('div', 'entity_actions');
     $this->out->elementStart('ul');
     // Is this a logged-in user, looking at someone else's
     // profile?
     if (!empty($user) && $this->profile->id != $user->id) {
         $this->out->elementStart('li', 'entity_subscribe');
         if ($user->isSubscribed($this->profile)) {
             $usf = new UnsubscribeForm($this->out, $this->profile);
             $usf->show();
         } else {
             $sf = new SubscribeForm($this->out, $this->profile);
             $sf->show();
         }
         $this->out->elementEnd('li');
         $this->out->elementStart('li', 'entity_block');
         if ($user->id == $this->owner->id) {
             $this->showBlockForm();
         }
         $this->out->elementEnd('li');
     }
     $this->out->elementEnd('ul');
     $this->out->elementEnd('div');
     $this->out->elementEnd('li');
 }
 function showSubscribeButton()
 {
     // Is this a logged-in user, looking at someone else's
     // profile?
     $user = common_current_user();
     if (!empty($user) && $this->profile->id != $user->id) {
         $this->out->elementStart('li', 'entity_subscribe');
         if ($user->isSubscribed($this->profile)) {
             $usf = new UnsubscribeForm($this->out, $this->profile);
             $usf->show();
         } else {
             // We can't initiate sub for a remote OMB profile.
             $remote = Remote_profile::staticGet('id', $this->profile->id);
             if (empty($remote)) {
                 $sf = new SubscribeForm($this->out, $this->profile);
                 $sf->show();
             }
         }
         $this->out->elementEnd('li');
     }
 }
Beispiel #12
0
 function handle($args)
 {
     parent::handle($args);
     if ($this->boolean('ajax')) {
         StatusNet::setApi(true);
     }
     if (!common_logged_in()) {
         // TRANS: Error message displayed when trying to perform an action that requires a logged in user.
         $this->clientError(_('Not logged in.'));
         return;
     }
     $user = common_current_user();
     if ($_SERVER['REQUEST_METHOD'] != 'POST') {
         common_redirect(common_local_url('subscriptions', array('nickname' => $user->nickname)));
         return;
     }
     /* Use a session token for CSRF protection. */
     $token = $this->trimmed('token');
     if (!$token || $token != common_session_token()) {
         // TRANS: Client error displayed when the session token does not match or is not given.
         $this->clientError(_('There was a problem with your session token. ' . 'Try again, please.'));
         return;
     }
     $other_id = $this->arg('unsubscribeto');
     if (!$other_id) {
         // TRANS: Client error displayed when trying to leave a group without specifying an ID.
         $this->clientError(_('No profile ID in request.'));
         return;
     }
     $other = Profile::staticGet('id', $other_id);
     if (!$other) {
         // TRANS: Client error displayed when trying to leave a non-existing group.
         $this->clientError(_('No profile with that ID.'));
         return;
     }
     $this->request = Subscription_queue::pkeyGet(array('subscriber' => $user->id, 'subscribed' => $other->id));
     if (empty($this->request)) {
         // TRANS: Client error displayed when trying to approve a non-existing group join request.
         // TRANS: %s is a user nickname.
         $this->clientError(sprintf(_('%s is not in the moderation queue for this group.'), $this->profile->nickname), 403);
     }
     $this->request->abort();
     if ($this->boolean('ajax')) {
         $this->startHTML('text/xml;charset=utf-8');
         $this->elementStart('head');
         // TRANS: Title after unsubscribing from a group.
         $this->element('title', null, _m('TITLE', 'Unsubscribed'));
         $this->elementEnd('head');
         $this->elementStart('body');
         $subscribe = new SubscribeForm($this, $other);
         $subscribe->show();
         $this->elementEnd('body');
         $this->elementEnd('html');
     } else {
         common_redirect(common_local_url('subscriptions', array('nickname' => $user->nickname)), 303);
     }
 }