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/
43 class UsersitemapAction extends SitemapAction
48 function prepare($args)
50 parent::prepare($args);
52 $y = $this->trimmed('year');
54 $m = $this->trimmed('month');
55 $d = $this->trimmed('day');
57 $i = $this->trimmed('index');
64 $this->users = $this->getUsers($y, $m, $d, $i);
71 if ($this->j < count($this->users)) {
72 $nickname = $this->users[$this->j];
74 return array(common_profile_url($nickname), null, null, '1.0');
80 function getUsers($y, $m, $d, $i)
82 $u = User::cacheGet("sitemap:user:$y:$m:$d:$i");
88 $begindt = sprintf('%04d-%02d-%02d 00:00:00', $y, $m, $d);
90 // XXX: estimates 1d == 24h, which screws up days
91 // with leap seconds (1d == 24h + 1s). Thankfully they're
92 // few and far between.
94 $theend = strtotime($begindt) + (24 * 60 * 60);
95 $enddt = common_sql_date($theend);
98 $user->selectAdd('nickname');
99 $user->whereAdd("created >= '$begindt'");
100 $user->whereAdd("created < '$enddt'");
102 $user->orderBy('created');
104 $offset = ($i-1) * SitemapPlugin::USERS_PER_MAP;
105 $limit = SitemapPlugin::USERS_PER_MAP;
107 $user->limit($offset, $limit);
111 while ($user->fetch()) {
112 $u[] = $user->nickname;
115 $c = Cache::instance();
118 $c->set(Cache::key("sitemap:user:$y:$m:$d:$i"),
121 ((time() > $theend) ? (time() + 90 * 24 * 60 * 60) : (time() + 5 * 60)));