2008-11-21 00:20:38 +00:00
|
|
|
<?php
|
|
|
|
/*
|
2009-08-25 23:14:12 +01:00
|
|
|
* StatusNet - the distributed open-source microblogging tool
|
2009-08-25 23:12:20 +01:00
|
|
|
* Copyright (C) 2008, 2009, StatusNet, Inc.
|
2008-11-21 00:20:38 +00:00
|
|
|
*
|
|
|
|
* This program 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.
|
|
|
|
*
|
|
|
|
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2009-08-26 15:41:36 +01:00
|
|
|
if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
|
2008-11-21 00:20:38 +00:00
|
|
|
|
|
|
|
require_once(INSTALLDIR.'/lib/settingsaction.php');
|
|
|
|
|
2008-12-23 19:49:23 +00:00
|
|
|
class TagotherAction extends Action
|
|
|
|
{
|
2009-01-22 22:02:39 +00:00
|
|
|
var $profile = null;
|
|
|
|
var $error = null;
|
2008-11-24 15:06:38 +00:00
|
|
|
|
2009-01-22 22:02:39 +00:00
|
|
|
function prepare($args)
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2009-01-22 22:02:39 +00:00
|
|
|
parent::prepare($args);
|
2008-12-23 19:19:07 +00:00
|
|
|
if (!common_logged_in()) {
|
2009-12-13 17:55:17 +00:00
|
|
|
$this->clientError(_('Not logged in.'), 403);
|
2009-01-22 22:02:39 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$id = $this->trimmed('id');
|
|
|
|
if (!$id) {
|
2009-12-13 17:55:17 +00:00
|
|
|
$this->clientError(_('No ID argument.'));
|
2009-01-22 22:02:39 +00:00
|
|
|
return false;
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
2009-01-22 22:02:39 +00:00
|
|
|
$this->profile = Profile::staticGet('id', $id);
|
|
|
|
|
|
|
|
if (!$this->profile) {
|
|
|
|
$this->clientError(_('No profile with that ID.'));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
function handle($args)
|
|
|
|
{
|
|
|
|
parent::handle($args);
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
2009-01-22 22:02:39 +00:00
|
|
|
$this->saveTags();
|
2008-12-23 19:19:07 +00:00
|
|
|
} else {
|
2009-01-22 22:02:39 +00:00
|
|
|
$this->showForm($profile);
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-22 22:02:39 +00:00
|
|
|
function title()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2009-01-22 22:02:39 +00:00
|
|
|
return sprintf(_('Tag %s'), $this->profile->nickname);
|
|
|
|
}
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2009-01-22 22:02:39 +00:00
|
|
|
function showForm($error=null)
|
|
|
|
{
|
|
|
|
$this->error = $error;
|
|
|
|
$this->showPage();
|
|
|
|
}
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2009-01-22 22:02:39 +00:00
|
|
|
function showContent()
|
|
|
|
{
|
2009-01-23 01:20:20 +00:00
|
|
|
$this->elementStart('div', 'entity_profile vcard author');
|
|
|
|
$this->element('h2', null, _('User profile'));
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2009-01-23 01:20:20 +00:00
|
|
|
$avatar = $this->profile->getAvatar(AVATAR_PROFILE_SIZE);
|
|
|
|
$this->elementStart('dl', 'entity_depiction');
|
|
|
|
$this->element('dt', null, _('Photo'));
|
|
|
|
$this->elementStart('dd');
|
2009-02-06 08:13:08 +00:00
|
|
|
$this->element('img', array('src' => ($avatar) ? $avatar->displayUrl() : Avatar::defaultImage(AVATAR_PROFILE_SIZE),
|
2009-01-23 01:20:20 +00:00
|
|
|
'class' => 'photo avatar',
|
2008-12-23 19:19:07 +00:00
|
|
|
'width' => AVATAR_PROFILE_SIZE,
|
|
|
|
'height' => AVATAR_PROFILE_SIZE,
|
|
|
|
'alt' =>
|
2009-01-22 22:02:39 +00:00
|
|
|
($this->profile->fullname) ? $this->profile->fullname :
|
|
|
|
$this->profile->nickname));
|
2009-01-23 01:20:20 +00:00
|
|
|
$this->elementEnd('dd');
|
|
|
|
$this->elementEnd('dl');
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2009-01-23 01:20:20 +00:00
|
|
|
$this->elementStart('dl', 'entity_nickname');
|
|
|
|
$this->element('dt', null, _('Nickname'));
|
|
|
|
$this->elementStart('dd');
|
2009-01-22 22:02:39 +00:00
|
|
|
$this->element('a', array('href' => $this->profile->profileurl,
|
2009-01-23 01:20:20 +00:00
|
|
|
'class' => 'nickname'),
|
2009-01-22 22:02:39 +00:00
|
|
|
$this->profile->nickname);
|
2009-01-23 01:20:20 +00:00
|
|
|
$this->elementEnd('dd');
|
|
|
|
$this->elementEnd('dl');
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2009-01-22 22:02:39 +00:00
|
|
|
if ($this->profile->fullname) {
|
2009-01-23 01:20:20 +00:00
|
|
|
$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');
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-01-22 22:02:39 +00:00
|
|
|
if ($this->profile->location) {
|
2009-01-23 01:20:20 +00:00
|
|
|
$this->elementStart('dl', 'entity_location');
|
|
|
|
$this->element('dt', null, _('Location'));
|
2009-02-11 16:50:07 +00:00
|
|
|
$this->element('dd', 'label', $this->profile->location);
|
2009-01-23 01:20:20 +00:00
|
|
|
$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');
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-01-22 22:02:39 +00:00
|
|
|
if ($this->profile->bio) {
|
2009-01-23 01:20:20 +00:00
|
|
|
$this->elementStart('dl', 'entity_note');
|
|
|
|
$this->element('dt', null, _('Note'));
|
|
|
|
$this->element('dd', 'note', $this->profile->bio);
|
|
|
|
$this->elementEnd('dl');
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-01-23 01:20:20 +00:00
|
|
|
$this->elementEnd('div');
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementStart('form', array('method' => 'post',
|
2009-01-23 01:20:20 +00:00
|
|
|
'id' => 'form_tag_user',
|
|
|
|
'class' => 'form_settings',
|
2008-12-23 19:19:07 +00:00
|
|
|
'name' => 'tagother',
|
2009-02-20 15:04:28 +00:00
|
|
|
'action' => common_local_url('tagother', array('id' => $this->profile->id))));
|
|
|
|
|
2009-01-23 01:20:20 +00:00
|
|
|
$this->elementStart('fieldset');
|
|
|
|
$this->element('legend', null, _('Tag user'));
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->hidden('token', common_session_token());
|
2009-01-22 22:02:39 +00:00
|
|
|
$this->hidden('id', $this->profile->id);
|
2009-01-23 01:20:20 +00:00
|
|
|
|
2009-01-29 13:49:19 +00:00
|
|
|
$user = common_current_user();
|
|
|
|
|
2009-01-23 01:20:20 +00:00
|
|
|
$this->elementStart('ul', 'form_data');
|
|
|
|
$this->elementStart('li');
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->input('tags', _('Tags'),
|
2009-01-22 22:02:39 +00:00
|
|
|
($this->arg('tags')) ? $this->arg('tags') : implode(' ', Profile_tag::getTags($user->id, $this->profile->id)),
|
2008-12-23 19:19:07 +00:00
|
|
|
_('Tags for this user (letters, numbers, -, ., and _), comma- or space- separated'));
|
2009-01-23 01:20:20 +00:00
|
|
|
$this->elementEnd('li');
|
|
|
|
$this->elementEnd('ul');
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->submit('save', _('Save'));
|
2009-01-23 01:20:20 +00:00
|
|
|
$this->elementEnd('fieldset');
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementEnd('form');
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
2009-01-22 22:02:39 +00:00
|
|
|
function saveTags()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
$id = $this->trimmed('id');
|
|
|
|
$tagstring = $this->trimmed('tags');
|
|
|
|
$token = $this->trimmed('token');
|
|
|
|
|
|
|
|
if (!$token || $token != common_session_token()) {
|
2010-01-10 11:26:24 +00:00
|
|
|
$this->showForm(_('There was a problem with your session token. '.
|
|
|
|
'Try again, please.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_string($tagstring) && strlen($tagstring) > 0) {
|
|
|
|
|
|
|
|
$tags = array_map('common_canonical_tag',
|
|
|
|
preg_split('/[\s,]+/', $tagstring));
|
|
|
|
|
|
|
|
foreach ($tags as $tag) {
|
|
|
|
if (!common_valid_profile_tag($tag)) {
|
2009-01-22 22:02:39 +00:00
|
|
|
$this->showForm(sprintf(_('Invalid tag: "%s"'), $tag));
|
2008-12-23 19:19:07 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$tags = array();
|
|
|
|
}
|
|
|
|
|
|
|
|
$user = common_current_user();
|
|
|
|
|
|
|
|
if (!Subscription::pkeyGet(array('subscriber' => $user->id,
|
2009-01-22 22:02:39 +00:00
|
|
|
'subscribed' => $this->profile->id)) &&
|
|
|
|
!Subscription::pkeyGet(array('subscriber' => $this->profile->id,
|
2008-12-23 19:19:07 +00:00
|
|
|
'subscribed' => $user->id)))
|
|
|
|
{
|
2009-01-15 23:03:38 +00:00
|
|
|
$this->clientError(_('You can only tag people you are subscribed to or who are subscribed to you.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-01-22 22:02:39 +00:00
|
|
|
$result = Profile_tag::setTags($user->id, $this->profile->id, $tags);
|
2008-12-23 19:19:07 +00:00
|
|
|
|
|
|
|
if (!$result) {
|
2009-01-15 23:03:38 +00:00
|
|
|
$this->clientError(_('Could not save tags.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-01-22 22:02:39 +00:00
|
|
|
$action = $user->isSubscribed($this->profile) ? 'subscriptions' : 'subscribers';
|
2008-12-23 19:19:07 +00:00
|
|
|
|
|
|
|
if ($this->boolean('ajax')) {
|
2009-02-02 20:47:57 +00:00
|
|
|
$this->startHTML('text/xml;charset=utf-8');
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementStart('head');
|
|
|
|
$this->element('title', null, _('Tags'));
|
|
|
|
$this->elementEnd('head');
|
|
|
|
$this->elementStart('body');
|
|
|
|
$this->elementStart('p', 'subtags');
|
2008-12-23 19:19:07 +00:00
|
|
|
foreach ($tags as $tag) {
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->element('a', array('href' => common_local_url($action,
|
2008-12-23 19:19:07 +00:00
|
|
|
array('nickname' => $user->nickname,
|
|
|
|
'tag' => $tag))),
|
|
|
|
$tag);
|
|
|
|
}
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementEnd('p');
|
|
|
|
$this->elementEnd('body');
|
|
|
|
$this->elementEnd('html');
|
2008-12-23 19:19:07 +00:00
|
|
|
} else {
|
|
|
|
common_redirect(common_local_url($action, array('nickname' =>
|
2009-04-01 20:30:59 +01:00
|
|
|
$user->nickname)),
|
|
|
|
303);
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-22 22:02:39 +00:00
|
|
|
function showPageNotice()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2009-01-22 22:02:39 +00:00
|
|
|
if ($this->error) {
|
|
|
|
$this->element('p', 'error', $this->error);
|
2008-12-23 19:19:07 +00:00
|
|
|
} else {
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementStart('div', 'instructions');
|
|
|
|
$this->element('p', null,
|
2008-12-23 19:19:07 +00:00
|
|
|
_('Use this form to add tags to your subscribers or subscriptions.'));
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementEnd('div');
|
2008-11-21 00:20:38 +00:00
|
|
|
}
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2008-11-21 00:20:38 +00:00
|
|
|
}
|
|
|
|
|