2009-01-22 16:06:06 +00:00
|
|
|
<?php
|
2019-09-11 11:27:36 +01:00
|
|
|
// 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/>.
|
|
|
|
|
2009-01-22 16:06:06 +00:00
|
|
|
/**
|
2019-09-11 11:27:36 +01:00
|
|
|
* @copyright 2008, 2009 StatusNet, Inc.
|
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
2009-01-22 16:06:06 +00:00
|
|
|
*/
|
|
|
|
|
2019-09-11 11:27:36 +01:00
|
|
|
defined('GNUSOCIAL') || die();
|
2009-01-22 16:06:06 +00:00
|
|
|
|
|
|
|
// 10x8
|
|
|
|
|
|
|
|
define('AVATARS_PER_PAGE', 80);
|
|
|
|
|
2011-04-01 18:46:40 +01:00
|
|
|
// @todo FIXME: Class documentation missing.
|
2011-04-14 20:50:45 +01:00
|
|
|
class GalleryAction extends ProfileAction
|
2009-01-22 16:06:06 +00:00
|
|
|
{
|
2014-05-12 21:41:05 +01:00
|
|
|
protected function handle()
|
2009-01-22 16:06:06 +00:00
|
|
|
{
|
2014-05-12 21:41:05 +01:00
|
|
|
// Post from the tag dropdown; redirect to a GET
|
|
|
|
if ($this->isPost()) {
|
|
|
|
common_redirect($this->selfUrl(), 303);
|
2009-01-22 16:06:06 +00:00
|
|
|
}
|
|
|
|
|
2014-05-12 21:41:05 +01:00
|
|
|
parent::handle();
|
2009-01-22 16:06:06 +00:00
|
|
|
}
|
|
|
|
|
2019-09-11 11:27:36 +01:00
|
|
|
public function showContent()
|
2009-01-22 16:06:06 +00:00
|
|
|
{
|
|
|
|
$this->showTagsDropdown();
|
|
|
|
}
|
|
|
|
|
2019-09-11 11:27:36 +01:00
|
|
|
public function showTagsDropdown()
|
2009-01-22 16:06:06 +00:00
|
|
|
{
|
|
|
|
$tag = $this->trimmed('tag');
|
|
|
|
|
|
|
|
$tags = $this->getAllTags();
|
|
|
|
|
|
|
|
$content = array();
|
|
|
|
|
|
|
|
foreach ($tags as $t) {
|
|
|
|
$content[$t] = $t;
|
|
|
|
}
|
|
|
|
if ($tags) {
|
2011-04-08 12:40:36 +01:00
|
|
|
$this->elementStart('dl', array('id' => 'filter_tags'));
|
|
|
|
$this->element('dt', null, _('Tags'));
|
|
|
|
$this->elementStart('dd');
|
2009-01-22 16:06:06 +00:00
|
|
|
$this->elementStart('ul');
|
|
|
|
$this->elementStart('li', array('id' => 'filter_tags_all',
|
|
|
|
'class' => 'child_1'));
|
2019-09-11 11:27:36 +01:00
|
|
|
$this->element(
|
|
|
|
'a',
|
|
|
|
[
|
|
|
|
'href' => common_local_url(
|
|
|
|
$this->trimmed('action'),
|
|
|
|
['nickname' => $this->target->getNickname()]
|
|
|
|
),
|
|
|
|
],
|
|
|
|
// TRANS: List element on gallery action page to show all tags.
|
|
|
|
_m('TAGS', 'All')
|
|
|
|
);
|
2009-01-22 16:06:06 +00:00
|
|
|
$this->elementEnd('li');
|
|
|
|
$this->elementStart('li', array('id'=>'filter_tags_item'));
|
|
|
|
$this->elementStart('form', array('name' => 'bytag',
|
2009-09-04 16:59:27 +01:00
|
|
|
'id' => 'form_filter_bytag',
|
2014-05-12 21:41:05 +01:00
|
|
|
'action' => common_path('?action=' . $this->getActionName()),
|
2009-01-22 16:06:06 +00:00
|
|
|
'method' => 'post'));
|
2009-09-04 16:59:27 +01:00
|
|
|
$this->elementStart('fieldset');
|
2011-04-01 18:46:40 +01:00
|
|
|
// TRANS: Fieldset legend on gallery action page.
|
2009-09-04 16:59:27 +01:00
|
|
|
$this->element('legend', null, _('Select tag to filter'));
|
2011-04-01 18:46:40 +01:00
|
|
|
// TRANS: Dropdown field label on gallery action page for a list containing tags.
|
2019-09-11 11:27:36 +01:00
|
|
|
$this->dropdown(
|
|
|
|
'tag',
|
|
|
|
_('Tag'),
|
|
|
|
$content,
|
|
|
|
// TRANS: Dropdown field title on gallery action page for a list containing tags.
|
|
|
|
_('Choose a tag to narrow list.'),
|
|
|
|
false,
|
|
|
|
$tag
|
|
|
|
);
|
2014-05-12 21:41:05 +01:00
|
|
|
$this->hidden('nickname', $this->target->getNickname());
|
2011-04-01 18:46:40 +01:00
|
|
|
// TRANS: Submit button text on gallery action page.
|
2019-09-11 11:27:36 +01:00
|
|
|
$this->submit('submit', _m('BUTTON', 'Go'));
|
2009-09-04 16:59:27 +01:00
|
|
|
$this->elementEnd('fieldset');
|
2009-01-22 16:06:06 +00:00
|
|
|
$this->elementEnd('form');
|
|
|
|
$this->elementEnd('li');
|
|
|
|
$this->elementEnd('ul');
|
2011-04-08 12:40:36 +01:00
|
|
|
$this->elementEnd('dd');
|
|
|
|
$this->elementEnd('dl');
|
2009-01-22 16:06:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get list of tags we tagged other users with
|
2019-09-11 11:27:36 +01:00
|
|
|
public function getTags($lst, $usr)
|
2009-01-22 16:06:06 +00:00
|
|
|
{
|
|
|
|
$profile_tag = new Notice_tag();
|
2020-06-10 14:52:00 +01:00
|
|
|
$profile_tag->query(
|
|
|
|
<<<END
|
|
|
|
SELECT DISTINCT tag FROM profile_tag INNER JOIN subscription
|
|
|
|
ON tagger = {$usr} AND {$lst} = tagged
|
|
|
|
WHERE tagger = {$this->target->id} AND tagger <> tagged;
|
|
|
|
END
|
|
|
|
);
|
|
|
|
$tags = [];
|
2009-01-22 16:06:06 +00:00
|
|
|
while ($profile_tag->fetch()) {
|
|
|
|
$tags[] = $profile_tag->tag;
|
|
|
|
}
|
|
|
|
$profile_tag->free();
|
|
|
|
return $tags;
|
|
|
|
}
|
|
|
|
|
2019-09-11 11:27:36 +01:00
|
|
|
public function getAllTags()
|
2009-01-22 16:06:06 +00:00
|
|
|
{
|
|
|
|
return array();
|
|
|
|
}
|
2011-03-14 16:10:07 +00:00
|
|
|
|
2019-09-11 11:27:36 +01:00
|
|
|
public function showProfileBlock()
|
2011-03-14 16:10:07 +00:00
|
|
|
{
|
2014-05-12 21:41:05 +01:00
|
|
|
$block = new AccountProfileBlock($this, $this->target);
|
2011-03-14 16:10:07 +00:00
|
|
|
$block->show();
|
|
|
|
}
|
2009-04-24 21:28:39 +01:00
|
|
|
}
|