]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/tag.php
show the right stuff on profile page, too
[quix0rs-gnu-social.git] / actions / tag.php
1 <?php
2 /*
3  * Laconica - a distributed open-source microblogging tool
4  * Copyright (C) 2008, Controlez-Vous, Inc.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU Affero General Public License for more details.
15  *
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 if (!defined('LACONICA')) { exit(1); }
21
22 require_once(INSTALLDIR.'/actions/showstream.php');
23 define('TAGS_PER_PAGE', 100);
24 define('AGE_FACTOR', 864000.0);
25
26 class TagAction extends StreamAction {
27
28         function handle($args) {
29
30                 parent::handle($args);
31
32                 # Looks like we're good; show the header
33
34                 if (isset($args['tag']) && $args['tag']) {
35                         $tag = $args['tag'];
36                         common_show_header(sprintf(_("Notices tagged with %s"), $tag),
37                                                            array($this, 'show_header'), $tag,
38                                                            array($this, 'show_top'));
39
40                         $this->show_notices($tag);
41                 } else {
42                         common_show_header(_("Tags"),
43                                                            array($this, 'show_header'), '',
44                                                            array($this, 'show_top'));
45                         $this->show_tags();
46                 }
47
48                 common_show_footer();
49         }
50
51         function show_header($tag = false) {
52                 if (false && $tag) {
53                         common_element('link', array('rel' => 'alternate',
54                                                                                  'href' => common_local_url('tagrss', array('tag' => $tag)),
55                                                                                  'type' => 'application/rss+xml',
56                                                                                  'title' => sprintf(_('Feed for tag %s'), $tag)));
57                 }
58         }
59
60         function get_instructions() {
61                 return _('Showing most popular tags from the last week');
62         }
63
64         function show_top($tag = false) {
65                 if (!$tag) {
66                         $instr = $this->get_instructions();
67                         $output = common_markup_to_html($instr);
68                         common_element_start('div', 'instructions');
69                         common_raw($output);
70                         common_element_end('div');
71                 }
72
73                 common_element_start('ul', array('id' => 'nav_views'));
74
75                 common_menu_item(common_local_url('tags'),
76                                                  _('Recent Tags'),
77                                                  _('Recent Tags'),
78                                                  !$tag);
79                 if ($tag) {
80                         common_menu_item(common_local_url('tag', array('tag' => $tag)),
81                                                          '#' . $tag,
82                                                          sprintf(_("Notices tagged with %s"), $tag),
83                                                          true);
84                 }
85                 common_element_end('ul');
86         }
87
88         function show_tags()
89         {
90                 # This should probably be cached rather than recalculated
91                 $tags = DB_DataObject::factory('Notice_tag');
92                 $tags->selectAdd('max(notice_id) as last_notice_id');
93                 $tags->selectAdd(sprintf('sum(exp(-(now() - created)/%f)) as weight', AGE_FACTOR));
94                 $tags->groupBy('tag');
95                 $tags->orderBy('weight DESC');
96
97                 # $tags->whereAdd('created > "' . strftime('%Y-%m-%d %H:%M:%S', strtotime('-1 MONTH')) . '"');
98
99                 $tags->limit(TAGS_PER_PAGE);
100
101                 $cnt = $tags->find();
102
103                 if ($cnt > 0) {
104                         common_element_start('p', 'tagcloud');
105                         
106                         $tw = array();
107                         $sum = 0;
108                         while ($tags->fetch()) {
109                                 $tw[$tags->tag] = $tags->weight;
110                                 $sum += $tags->weight;
111                         }
112                         
113                         foreach ($tw as $tag => $weight) {
114                                 $this->show_tag($tag, $weight, $weight/$sum);
115                         }
116                         
117                         common_element_end('p');
118                 }
119         }
120
121         function show_tag($tag, $weight, $relative) {
122                 
123                 # XXX: these should probably tune to the size of the site
124                 if ($relative > 0.1) {
125                         $cls =  'largest';
126                 } else if ($relative > 0.05) {
127                         $cls = 'verylarge';
128                 } else if ($relative > 0.02) {
129                         $cls = 'large';
130                 } else if ($relative > 0.01) {
131                         $cls = 'medium';
132                 } else if ($relative > 0.005) {
133                         $cls = 'small';
134                 } else if ($relative > 0.002) {
135                         $cls = 'verysmall';
136                 } else {
137                         $cls = 'smallest';
138                 }
139                 
140                 common_element('a', array('class' => "$cls weight-$weight relative-$relative",
141                                                                   'href' => common_local_url('tag', array('tag' => $tag))),
142                                            $tag);
143                 common_text(' ');
144         }
145         
146         function show_notices($tag) {
147
148                 $tags = DB_DataObject::factory('Notice_tag');
149
150                 $tags->tag = $tag;
151
152                 $tags->orderBy('created DESC');
153
154                 $page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
155
156                 $tags->limit((($page-1)*NOTICES_PER_PAGE), NOTICES_PER_PAGE + 1);
157
158                 $cnt = $tags->find();
159
160                 if ($cnt > 0) {
161                         common_element_start('ul', array('id' => 'notices'));
162                         for ($i = 0; $i < min($cnt, NOTICES_PER_PAGE); $i++) {
163                                 if ($tags->fetch()) {
164                                         $notice = new Notice();
165                                         $notice->id = $tags->notice_id;
166                                         $result = $notice->find(true);
167                                         if (!$result) {
168                                                 continue;
169                                         }
170                                         $this->show_notice($notice);
171                                 } else {
172                                         // shouldn't happen!
173                                         break;
174                                 }
175                         }
176                         common_element_end('ul');
177                 }
178
179                 common_pagination($page > 1, $cnt > NOTICES_PER_PAGE,
180                                                   $page, 'tag', array('tag' => $tag));
181         }
182 }