3 * StatusNet, the distributed open-source microblogging tool
5 * Show list of user pages
9 * LICENCE: This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation, either version 3 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU Affero General Public License for more details.
19 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
24 * @author Evan Prodromou <evan@status.net>
25 * @copyright 2010 StatusNet, Inc.
26 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27 * @link http://status.net/
30 if (!defined('STATUSNET')) {
39 * @author Evan Prodromou <evan@status.net>
40 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
41 * @link http://status.net/
44 class UsersitemapAction extends SitemapAction
49 function prepare($args)
51 parent::prepare($args);
53 $y = $this->trimmed('year');
55 $m = $this->trimmed('month');
56 $d = $this->trimmed('day');
58 $i = $this->trimmed('index');
65 $this->users = $this->getUsers($y, $m, $d, $i);
72 if ($this->j < count($this->users)) {
73 $nickname = $this->users[$this->j];
75 return array(common_profile_url($nickname), null, null, '1.0');
81 function getUsers($y, $m, $d, $i)
83 $u = User::cacheGet("sitemap:user:$y:$m:$d:$i");
89 $begindt = sprintf('%04d-%02d-%02d 00:00:00', $y, $m, $d);
91 // XXX: estimates 1d == 24h, which screws up days
92 // with leap seconds (1d == 24h + 1s). Thankfully they're
93 // few and far between.
95 $theend = strtotime($begindt) + (24 * 60 * 60);
96 $enddt = common_sql_date($theend);
99 $user->selectAdd('nickname');
100 $user->whereAdd("created >= '$begindt'");
101 $user->whereAdd("created < '$enddt'");
103 $user->orderBy('created');
105 $offset = ($i-1) * SitemapPlugin::USERS_PER_MAP;
106 $limit = SitemapPlugin::USERS_PER_MAP;
108 $user->limit($offset, $limit);
112 while ($user->fetch()) {
113 $u[] = $user->nickname;
116 $c = Cache::instance();
119 $c->set(Cache::key("sitemap:user:$y:$m:$d:$i"),
122 ((time() > $theend) ? (time() + 90 * 24 * 60 * 60) : (time() + 5 * 60)));