2009-01-19 18:21:14 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2009-08-25 23:12:20 +01:00
|
|
|
* StatusNet, the distributed open-source microblogging tool
|
2009-01-19 18:21:14 +00:00
|
|
|
*
|
|
|
|
* Public tag cloud for notices
|
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* LICENCE: 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/>.
|
|
|
|
*
|
|
|
|
* @category Public
|
2009-08-25 23:12:20 +01:00
|
|
|
* @package StatusNet
|
2009-01-19 18:21:14 +00:00
|
|
|
* @author Mike Cochrane <mikec@mikenz.geek.nz>
|
2009-08-25 23:19:04 +01:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
2009-01-19 18:21:14 +00:00
|
|
|
* @copyright 2008 Mike Cochrane
|
2009-08-25 23:12:20 +01:00
|
|
|
* @copyright 2008-2009 StatusNet, Inc.
|
2009-01-19 18:21:14 +00:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
2009-08-25 23:16:46 +01:00
|
|
|
* @link http://status.net/
|
2009-01-19 18:21:14 +00:00
|
|
|
*/
|
|
|
|
|
2009-08-26 15:41:36 +01:00
|
|
|
if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
|
2009-01-19 18:21:14 +00:00
|
|
|
|
|
|
|
define('TAGS_PER_PAGE', 100);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Public tag cloud for notices
|
|
|
|
*
|
|
|
|
* @category Personal
|
2009-08-25 23:12:20 +01:00
|
|
|
* @package StatusNet
|
2009-01-19 18:21:14 +00:00
|
|
|
* @author Mike Cochrane <mikec@mikenz.geek.nz>
|
2009-08-25 23:19:04 +01:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
2009-01-19 18:21:14 +00:00
|
|
|
* @copyright 2008 Mike Cochrane
|
2009-08-25 23:12:20 +01:00
|
|
|
* @copyright 2008-2009 StatusNet, Inc.
|
2009-08-25 23:16:46 +01:00
|
|
|
* @link http://status.net/
|
2009-01-19 18:21:14 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
class PublictagcloudAction extends Action
|
|
|
|
{
|
2009-04-13 20:49:26 +01:00
|
|
|
function isReadOnly($args)
|
2009-01-19 18:21:14 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
function title()
|
|
|
|
{
|
|
|
|
return _('Public tag cloud');
|
|
|
|
}
|
|
|
|
|
|
|
|
function showPageNotice()
|
|
|
|
{
|
|
|
|
$this->element('p', 'instructions',
|
|
|
|
sprintf(_('These are most popular recent tags on %s '),
|
|
|
|
common_config('site', 'name')));
|
2009-04-08 04:57:45 +01:00
|
|
|
}
|
2009-04-03 20:16:35 +01:00
|
|
|
|
2009-04-08 04:57:45 +01:00
|
|
|
function showEmptyList()
|
|
|
|
{
|
2009-04-07 22:12:11 +01:00
|
|
|
$message = _('No one has posted a notice with a [hashtag](%%doc.tags%%) yet.') . ' ';
|
2009-04-03 20:16:35 +01:00
|
|
|
|
|
|
|
if (common_logged_in()) {
|
|
|
|
$message .= _('Be the first to post one!');
|
|
|
|
}
|
|
|
|
else {
|
2009-08-21 21:45:42 +01:00
|
|
|
$message .= _('Why not [register an account](%%action.register%%) and be the first to post one!');
|
2009-04-03 20:16:35 +01:00
|
|
|
}
|
|
|
|
|
2009-04-07 22:09:27 +01:00
|
|
|
$this->elementStart('div', 'guide');
|
2009-04-03 20:16:35 +01:00
|
|
|
$this->raw(common_markup_to_html($message));
|
|
|
|
$this->elementEnd('div');
|
2009-01-19 18:21:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function showLocalNav()
|
|
|
|
{
|
|
|
|
$nav = new PublicGroupNav($this);
|
|
|
|
$nav->show();
|
|
|
|
}
|
|
|
|
|
|
|
|
function handle($args)
|
|
|
|
{
|
|
|
|
parent::handle($args);
|
|
|
|
$this->showPage();
|
|
|
|
}
|
|
|
|
|
|
|
|
function showContent()
|
|
|
|
{
|
|
|
|
# This should probably be cached rather than recalculated
|
|
|
|
$tags = new Notice_tag();
|
|
|
|
|
|
|
|
#Need to clear the selection and then only re-add the field
|
|
|
|
#we are grouping by, otherwise it's not a valid 'group by'
|
|
|
|
#even though MySQL seems to let it slide...
|
|
|
|
$tags->selectAdd();
|
|
|
|
$tags->selectAdd('tag');
|
|
|
|
|
|
|
|
#Add the aggregated columns...
|
|
|
|
$tags->selectAdd('max(notice_id) as last_notice_id');
|
2010-01-04 21:01:17 +00:00
|
|
|
$calc = common_sql_weight('created', common_config('tag', 'dropoff'));
|
2010-02-04 19:06:01 +00:00
|
|
|
$cutoff = sprintf("notice_tag.created > '%s'",
|
|
|
|
common_sql_date(time() - common_config('tag', 'cutoff')));
|
2010-01-04 21:01:17 +00:00
|
|
|
$tags->selectAdd($calc . ' as weight');
|
2010-02-04 19:06:01 +00:00
|
|
|
$tags->addWhere($cutoff);
|
2009-01-19 18:21:14 +00:00
|
|
|
$tags->groupBy('tag');
|
|
|
|
$tags->orderBy('weight DESC');
|
|
|
|
|
|
|
|
$tags->limit(TAGS_PER_PAGE);
|
|
|
|
|
|
|
|
$cnt = $tags->find();
|
|
|
|
|
|
|
|
if ($cnt > 0) {
|
2009-01-21 18:35:45 +00:00
|
|
|
$this->elementStart('div', array('id' => 'tagcloud',
|
|
|
|
'class' => 'section'));
|
2009-01-19 18:21:14 +00:00
|
|
|
|
|
|
|
$tw = array();
|
|
|
|
$sum = 0;
|
|
|
|
while ($tags->fetch()) {
|
|
|
|
$tw[$tags->tag] = $tags->weight;
|
|
|
|
$sum += $tags->weight;
|
|
|
|
}
|
|
|
|
|
|
|
|
ksort($tw);
|
|
|
|
|
2009-01-21 18:35:45 +00:00
|
|
|
$this->elementStart('dl');
|
|
|
|
$this->element('dt', null, _('Tag cloud'));
|
|
|
|
$this->elementStart('dd');
|
|
|
|
$this->elementStart('ul', 'tags xoxo tag-cloud');
|
2009-01-19 18:21:14 +00:00
|
|
|
foreach ($tw as $tag => $weight) {
|
2010-01-04 21:01:17 +00:00
|
|
|
if ($sum) {
|
|
|
|
$weightedSum = $weight/$sum;
|
|
|
|
} else {
|
|
|
|
$weightedSum = 0.5;
|
|
|
|
}
|
|
|
|
$this->showTag($tag, $weight, $weightedSum);
|
2009-01-19 18:21:14 +00:00
|
|
|
}
|
2009-01-21 18:35:45 +00:00
|
|
|
$this->elementEnd('ul');
|
|
|
|
$this->elementEnd('dd');
|
|
|
|
$this->elementEnd('dl');
|
|
|
|
$this->elementEnd('div');
|
2009-04-08 04:57:45 +01:00
|
|
|
} else {
|
|
|
|
$this->showEmptyList();
|
2009-01-19 18:21:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function showTag($tag, $weight, $relative)
|
|
|
|
{
|
|
|
|
if ($relative > 0.1) {
|
2009-01-21 18:35:45 +00:00
|
|
|
$rel = 'tag-cloud-7';
|
2009-01-19 18:21:14 +00:00
|
|
|
} else if ($relative > 0.05) {
|
2009-01-21 18:35:45 +00:00
|
|
|
$rel = 'tag-cloud-6';
|
2009-01-19 18:21:14 +00:00
|
|
|
} else if ($relative > 0.02) {
|
2009-01-21 18:35:45 +00:00
|
|
|
$rel = 'tag-cloud-5';
|
2009-01-19 18:21:14 +00:00
|
|
|
} else if ($relative > 0.01) {
|
2009-01-21 18:35:45 +00:00
|
|
|
$rel = 'tag-cloud-4';
|
2009-01-19 18:21:14 +00:00
|
|
|
} else if ($relative > 0.005) {
|
2009-01-21 18:35:45 +00:00
|
|
|
$rel = 'tag-cloud-3';
|
2009-01-19 18:21:14 +00:00
|
|
|
} else if ($relative > 0.002) {
|
2009-01-21 18:35:45 +00:00
|
|
|
$rel = 'tag-cloud-2';
|
2009-01-19 18:21:14 +00:00
|
|
|
} else {
|
2009-01-21 18:35:45 +00:00
|
|
|
$rel = 'tag-cloud-1';
|
2009-01-19 18:21:14 +00:00
|
|
|
}
|
|
|
|
|
2009-01-21 18:35:45 +00:00
|
|
|
$this->elementStart('li', $rel);
|
|
|
|
$this->element('a', array('href' => common_local_url('tag', array('tag' => $tag))),
|
2009-01-19 18:21:14 +00:00
|
|
|
$tag);
|
2009-01-21 18:35:45 +00:00
|
|
|
$this->elementEnd('li');
|
2009-01-19 18:21:14 +00:00
|
|
|
}
|
|
|
|
}
|