2008-05-09 11:16:04 +09:00
|
|
|
<?php
|
2008-05-21 04:14:12 +09:00
|
|
|
/*
|
2008-05-15 04:26:48 +09:00
|
|
|
* Laconica - a distributed open-source microblogging tool
|
|
|
|
* Copyright (C) 2008, Controlez-Vous, Inc.
|
2008-05-21 04:14:12 +09:00
|
|
|
*
|
2008-05-15 04:26:48 +09:00
|
|
|
* 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.
|
2008-05-21 04:14:12 +09:00
|
|
|
*
|
2008-05-15 04:26:48 +09:00
|
|
|
* 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.
|
2008-05-21 04:14:12 +09:00
|
|
|
*
|
2008-05-15 04:26:48 +09:00
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2008-05-18 00:47:01 +09:00
|
|
|
if (!defined('LACONICA')) { exit(1); }
|
2008-05-09 11:16:04 +09:00
|
|
|
|
2008-06-11 07:22:22 +09:00
|
|
|
require_once(INSTALLDIR.'/lib/stream.php');
|
2008-06-11 07:19:10 +09:00
|
|
|
|
|
|
|
class ShownoticeAction extends StreamAction {
|
2008-05-09 11:16:04 +09:00
|
|
|
|
|
|
|
function handle($args) {
|
|
|
|
parent::handle($args);
|
|
|
|
$id = $this->arg('notice');
|
|
|
|
$notice = Notice::staticGet($id);
|
|
|
|
|
|
|
|
if (!$notice) {
|
2008-07-12 20:53:00 +09:00
|
|
|
$this->client_error(_('No such notice.'), 404);
|
2008-07-12 02:13:45 +09:00
|
|
|
return;
|
2008-05-09 11:16:04 +09:00
|
|
|
}
|
|
|
|
|
2008-06-11 07:25:47 +09:00
|
|
|
$profile = $notice->getProfile();
|
2008-06-28 07:29:30 +09:00
|
|
|
|
2008-06-11 07:25:47 +09:00
|
|
|
if (!$profile) {
|
2008-07-12 20:53:00 +09:00
|
|
|
$this->server_error(_('Notice has no profile'), 500);
|
2008-07-12 02:13:45 +09:00
|
|
|
return;
|
2008-05-09 11:16:04 +09:00
|
|
|
}
|
2008-05-21 04:14:12 +09:00
|
|
|
|
2008-05-09 11:16:04 +09:00
|
|
|
# Looks like we're good; show the header
|
2008-05-21 04:14:12 +09:00
|
|
|
|
2008-07-08 19:05:19 +09:00
|
|
|
common_show_header(sprintf(_('%1$s\'s status on %2$s'), $profile->nickname, common_exact_date($notice->created)),
|
2008-07-21 21:00:36 +09:00
|
|
|
array($this, 'show_header'), $notice,
|
2008-06-18 12:57:39 +09:00
|
|
|
array($this, 'show_top'));
|
2008-05-21 04:14:12 +09:00
|
|
|
|
2008-06-11 07:19:10 +09:00
|
|
|
common_element_start('ul', array('id' => 'notices'));
|
2008-05-09 11:16:04 +09:00
|
|
|
$this->show_notice($notice);
|
2008-06-11 07:19:10 +09:00
|
|
|
common_element_end('ul');
|
2008-05-21 04:14:12 +09:00
|
|
|
|
2008-05-09 11:16:04 +09:00
|
|
|
common_show_footer();
|
|
|
|
}
|
2008-05-21 04:14:12 +09:00
|
|
|
|
2008-07-21 21:00:36 +09:00
|
|
|
function show_header($notice)
|
|
|
|
{
|
|
|
|
$profile = $notice->getProfile();
|
|
|
|
$user = User::staticGet($profile->id);
|
|
|
|
if (!$user) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if ($user->emailmicroid && $user->email && $notice->uri) {
|
|
|
|
common_element('meta', array('name' => 'microid',
|
|
|
|
'content' => "mailto+http:sha1:" . sha1(sha1('mailto:' . $user->email) . sha1($notice->uri))));
|
|
|
|
}
|
|
|
|
if ($user->jabbermicroid && $user->jabber && $notice->uri) {
|
|
|
|
common_element('meta', array('name' => 'microid',
|
|
|
|
'content' => "xmpp+http:sha1:" . sha1(sha1('xmpp:' . $user->jabber) . sha1($notice->uri))));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function show_top($notice) {
|
|
|
|
$user = $notice->getProfile();
|
2008-06-18 12:57:39 +09:00
|
|
|
$cur = common_current_user();
|
2008-06-28 07:29:30 +09:00
|
|
|
|
2008-06-18 12:57:39 +09:00
|
|
|
if ($cur && $cur->id == $user->id) {
|
|
|
|
common_notice_form();
|
|
|
|
}
|
|
|
|
}
|
2008-07-08 19:05:19 +09:00
|
|
|
|
|
|
|
function no_such_notice() {
|
2008-07-12 20:53:00 +09:00
|
|
|
common_user_error(_('No such notice.'));
|
2008-07-08 19:05:19 +09:00
|
|
|
}
|
2008-05-09 11:16:04 +09:00
|
|
|
}
|