summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--actions/public.php2
-rw-r--r--actions/showgroup.php2
-rw-r--r--lib/featureduserssection.php89
-rw-r--r--lib/grouptagcloudsection.php87
-rw-r--r--lib/profilesection.php11
-rw-r--r--lib/tagcloudsection.php6
-rw-r--r--lib/topposterssection.php30
7 files changed, 194 insertions, 33 deletions
diff --git a/actions/public.php b/actions/public.php
index b51a95f24..c2e90c3b5 100644
--- a/actions/public.php
+++ b/actions/public.php
@@ -206,5 +206,7 @@ class PublicAction extends Action
$pop->show();
$gbp = new GroupsByPostsSection($this);
$gbp->show();
+ $feat = new FeaturedUsersSection($this);
+ $feat->show();
}
}
diff --git a/actions/showgroup.php b/actions/showgroup.php
index 534043c24..6e2f939f9 100644
--- a/actions/showgroup.php
+++ b/actions/showgroup.php
@@ -333,6 +333,8 @@ class ShowgroupAction extends Action
function showSections()
{
$this->showMembers();
+ $cloud = new GroupTagCloudSection($this, $this->group);
+ $cloud->show();
}
/**
diff --git a/lib/featureduserssection.php b/lib/featureduserssection.php
new file mode 100644
index 000000000..2935d8363
--- /dev/null
+++ b/lib/featureduserssection.php
@@ -0,0 +1,89 @@
+<?php
+/**
+ * Laconica, the distributed open-source microblogging tool
+ *
+ * Section for featured users
+ *
+ * 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 Widget
+ * @package Laconica
+ * @author Evan Prodromou <evan@controlyourself.ca>
+ * @copyright 2009 Control Yourself, Inc.
+ * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
+ * @link http://laconi.ca/
+ */
+
+if (!defined('LACONICA')) {
+ exit(1);
+}
+
+/**
+ * Section for featured users
+ *
+ * @category Widget
+ * @package Laconica
+ * @author Evan Prodromou <evan@controlyourself.ca>
+ * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
+ * @link http://laconi.ca/
+ */
+
+class FeaturedUsersSection extends ProfileSection
+{
+ function getProfiles()
+ {
+ $featured_nicks = common_config('nickname', 'featured');
+
+ if (!$featured_nicks) {
+ return null;
+ }
+
+ $quoted = array();
+
+ foreach ($featured_nicks as $nick) {
+ $quoted[] = "'$nick'";
+ }
+
+ $qry = 'SELECT profile.* ' .
+ 'FROM profile JOIN user on profile.id = user.id ' .
+ 'WHERE user.nickname in (' . implode(',', $quoted) . ') ' .
+ 'ORDER BY profile.created DESC ';
+
+ $limit = PROFILES_PER_SECTION + 1;
+ $offset = 0;
+
+ if (common_config('db','type') == 'pgsql') {
+ $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset;
+ } else {
+ $qry .= ' LIMIT ' . $offset . ', ' . $limit;
+ }
+
+ $profile = Memcached_DataObject::cachedQuery('Profile',
+ $qry,
+ 6 * 3600);
+ return $profile;
+ }
+
+ function title()
+ {
+ return _('Featured users');
+ }
+
+ function divId()
+ {
+ return 'featured_users';
+ }
+}
diff --git a/lib/grouptagcloudsection.php b/lib/grouptagcloudsection.php
new file mode 100644
index 000000000..f05be85cb
--- /dev/null
+++ b/lib/grouptagcloudsection.php
@@ -0,0 +1,87 @@
+<?php
+/**
+ * Laconica, the distributed open-source microblogging tool
+ *
+ * Personal tag cloud section
+ *
+ * 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 Widget
+ * @package Laconica
+ * @author Evan Prodromou <evan@controlyourself.ca>
+ * @copyright 2009 Control Yourself, Inc.
+ * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
+ * @link http://laconi.ca/
+ */
+
+if (!defined('LACONICA')) {
+ exit(1);
+}
+
+/**
+ * Personal tag cloud section
+ *
+ * @category Widget
+ * @package Laconica
+ * @author Evan Prodromou <evan@controlyourself.ca>
+ * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
+ * @link http://laconi.ca/
+ */
+
+class GroupTagCloudSection extends TagCloudSection
+{
+ var $group = null;
+
+ function __construct($out=null, $group=null)
+ {
+ parent::__construct($out);
+ $this->group = $group;
+ }
+
+ function title()
+ {
+ return sprintf(_('Tags in %s group\'s notices'), $this->group->nickname);
+ }
+
+ function getTags()
+ {
+ $qry = 'SELECT notice_tag.tag, '.
+ 'sum(exp(-(now() - notice_tag.created)/%s)) as weight ' .
+ 'FROM notice_tag JOIN notice ' .
+ 'ON notice_tag.notice_id = notice.id ' .
+ 'JOIN group_inbox on group_inbox.notice_id = notice.id ' .
+ 'WHERE group_inbox.group_id = %d ' .
+ 'GROUP BY notice_tag.tag ' .
+ 'ORDER BY weight DESC ';
+
+ $limit = TAGS_PER_SECTION;
+ $offset = 0;
+
+ if (common_config('db','type') == 'pgsql') {
+ $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset;
+ } else {
+ $qry .= ' LIMIT ' . $offset . ', ' . $limit;
+ }
+
+ $tag = Memcached_DataObject::cachedQuery('Notice_tag',
+ sprintf($qry,
+ common_config('tag', 'dropoff'),
+ $this->group->id),
+ 3600);
+ return $tag;
+ }
+
+}
diff --git a/lib/profilesection.php b/lib/profilesection.php
index 91a3dfa34..3642ae164 100644
--- a/lib/profilesection.php
+++ b/lib/profilesection.php
@@ -76,7 +76,9 @@ class ProfileSection extends Section
function showProfile($profile)
{
- $this->out->elementStart('li', 'vcard');
+ $this->out->elementStart('tr');
+ $this->out->elementStart('td');
+ $this->out->elementStart('span', 'vcard');
$this->out->elementStart('a', array('title' => ($profile->fullname) ?
$profile->fullname :
$profile->nickname,
@@ -92,10 +94,13 @@ class ProfileSection extends Section
$profile->fullname :
$profile->nickname));
$this->out->element('span', 'fn nickname', $profile->nickname);
+ $this->out->elementEnd('span');
$this->out->elementEnd('a');
+ $this->out->elementEnd('td');
if ($profile->value) {
- $this->out->element('span', 'value', $profile->value);
+ $this->out->element('td', 'value', $profile->value);
}
- $this->out->elementEnd('li');
+
+ $this->out->elementEnd('tr');
}
}
diff --git a/lib/tagcloudsection.php b/lib/tagcloudsection.php
index 121dfc499..1a7f721b2 100644
--- a/lib/tagcloudsection.php
+++ b/lib/tagcloudsection.php
@@ -53,6 +53,7 @@ class TagCloudSection extends Section
$tags = $this->getTags();
if (!$tags) {
+ $this->out->element('p', null, _('None'));
return false;
}
@@ -66,6 +67,11 @@ class TagCloudSection extends Section
$sum += $tags->weight;
}
+ if ($cnt == 0) {
+ $this->out->element('p', null, _('(None)'));
+ return false;
+ }
+
ksort($tw);
$this->out->elementStart('ul', 'tags xoxo tag-cloud');
diff --git a/lib/topposterssection.php b/lib/topposterssection.php
index 786973093..4bd59ac79 100644
--- a/lib/topposterssection.php
+++ b/lib/topposterssection.php
@@ -69,36 +69,6 @@ class TopPostersSection extends ProfileSection
return $profile;
}
- function showProfile($profile)
- {
- $this->out->elementStart('tr');
- $this->out->elementStart('td');
- $this->out->elementStart('span', 'vcard');
- $this->out->elementStart('a', array('title' => ($profile->fullname) ?
- $profile->fullname :
- $profile->nickname,
- 'href' => $profile->profileurl,
- 'rel' => 'contact member',
- 'class' => 'url'));
- $avatar = $profile->getAvatar(AVATAR_MINI_SIZE);
- $this->out->element('img', array('src' => (($avatar) ? common_avatar_display_url($avatar) : common_default_avatar(AVATAR_MINI_SIZE)),
- 'width' => AVATAR_MINI_SIZE,
- 'height' => AVATAR_MINI_SIZE,
- 'class' => 'avatar photo',
- 'alt' => ($profile->fullname) ?
- $profile->fullname :
- $profile->nickname));
- $this->out->element('span', 'fn nickname', $profile->nickname);
- $this->out->elementEnd('span');
- $this->out->elementEnd('a');
- $this->out->elementEnd('td');
- if ($profile->value) {
- $this->out->element('td', 'value', $profile->value);
- }
-
- $this->out->elementEnd('tr');
- }
-
function title()
{
return _('Top posters');