2010-03-22 13:25:49 +09:00
|
|
|
<?php
|
2020-09-08 18:42:51 +09:00
|
|
|
// This file is part of GNU social - https://www.gnu.org/software/social
|
|
|
|
//
|
|
|
|
// GNU social 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.
|
|
|
|
//
|
|
|
|
// GNU social 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 GNU social. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2010-03-22 13:25:49 +09:00
|
|
|
/**
|
|
|
|
* Superclass for sitemap-generating actions
|
|
|
|
*
|
|
|
|
* @category Sitemap
|
2020-09-08 18:42:51 +09:00
|
|
|
* @package GNUsocial
|
2010-03-22 13:25:49 +09:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @copyright 2010 StatusNet, Inc.
|
2020-09-08 18:42:51 +09:00
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
2010-03-22 13:25:49 +09:00
|
|
|
*/
|
|
|
|
|
2020-09-08 18:42:51 +09:00
|
|
|
defined('GNUSOCIAL') || die();
|
2010-03-22 13:25:49 +09:00
|
|
|
|
|
|
|
/**
|
|
|
|
* superclass for sitemap actions
|
|
|
|
*
|
2020-09-08 18:42:51 +09:00
|
|
|
* @category Sitemap
|
|
|
|
* @package GNUsocial
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
2010-03-22 13:25:49 +09:00
|
|
|
*/
|
|
|
|
class SitemapAction extends Action
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* handle the action
|
|
|
|
*
|
|
|
|
* @param array $args unused.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2020-09-08 18:42:51 +09:00
|
|
|
public function handle()
|
2010-03-22 13:25:49 +09:00
|
|
|
{
|
2016-06-01 11:05:11 +09:00
|
|
|
parent::handle();
|
2010-08-11 15:35:47 +09:00
|
|
|
|
2010-03-22 13:25:49 +09:00
|
|
|
header('Content-Type: text/xml; charset=UTF-8');
|
|
|
|
$this->startXML();
|
|
|
|
|
2010-04-10 23:03:37 +09:00
|
|
|
$this->elementStart('urlset', array('xmlns' => 'http://www.sitemaps.org/schemas/sitemap/0.9'));
|
2010-03-22 13:25:49 +09:00
|
|
|
|
2020-09-08 18:42:51 +09:00
|
|
|
while (!is_null($next = $this->nextUrl())) {
|
|
|
|
$this->showUrl(...$next);
|
2010-03-22 13:25:49 +09:00
|
|
|
}
|
|
|
|
|
2010-04-10 23:03:37 +09:00
|
|
|
$this->elementEnd('urlset');
|
2010-03-22 13:25:49 +09:00
|
|
|
|
|
|
|
$this->endXML();
|
|
|
|
}
|
|
|
|
|
2020-09-08 18:42:51 +09:00
|
|
|
public function lastModified()
|
2010-08-11 15:35:47 +09:00
|
|
|
{
|
|
|
|
$y = $this->trimmed('year');
|
|
|
|
|
|
|
|
$m = $this->trimmed('month');
|
|
|
|
$d = $this->trimmed('day');
|
|
|
|
|
|
|
|
$y += 0;
|
|
|
|
$m += 0;
|
|
|
|
$d += 0;
|
|
|
|
|
|
|
|
$begdate = strtotime("$y-$m-$d 00:00:00");
|
|
|
|
$enddate = $begdate + (24 * 60 * 60);
|
|
|
|
|
|
|
|
if ($enddate < time()) {
|
|
|
|
return $enddate;
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-08 18:42:51 +09:00
|
|
|
public function showUrl(
|
|
|
|
$url,
|
|
|
|
$lastMod = null,
|
|
|
|
$changeFreq = null,
|
|
|
|
$priority = null
|
|
|
|
) {
|
2010-03-22 13:25:49 +09:00
|
|
|
$this->elementStart('url');
|
|
|
|
$this->element('loc', null, $url);
|
|
|
|
if (!is_null($lastMod)) {
|
|
|
|
$this->element('lastmod', null, $lastMod);
|
|
|
|
}
|
|
|
|
if (!is_null($changeFreq)) {
|
|
|
|
$this->element('changefreq', null, $changeFreq);
|
|
|
|
}
|
|
|
|
if (!is_null($priority)) {
|
|
|
|
$this->element('priority', null, $priority);
|
|
|
|
}
|
|
|
|
$this->elementEnd('url');
|
|
|
|
}
|
|
|
|
|
2020-09-08 18:42:51 +09:00
|
|
|
public function nextUrl()
|
2010-03-22 13:25:49 +09:00
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
2010-04-13 03:34:22 +09:00
|
|
|
|
2020-09-08 18:42:51 +09:00
|
|
|
public function isReadOnly()
|
2010-04-13 03:34:22 +09:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2010-03-22 13:25:49 +09:00
|
|
|
}
|