]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/showmessage.php
change function headers to K&R style
[quix0rs-gnu-social.git] / actions / showmessage.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.'/lib/mailbox.php');
23
24 class ShowmessageAction extends MailboxAction {
25
26     function handle($args)
27     {
28
29         Action::handle($args);
30
31         $message = $this->get_message();
32
33         if (!$message) {
34             $this->client_error(_('No such message.'), 404);
35             return;
36         }
37         
38         $cur = common_current_user();
39         
40         if ($cur && ($cur->id == $message->from_profile || $cur->id == $message->to_profile)) {
41             $this->show_page($cur, 1);
42         } else {
43             $this->client_error(_('Only the sender and recipient may read this message.'), 403);
44             return;
45         }
46     }
47     
48     function get_message()
49     {
50         $id = $this->trimmed('message');
51         $message = Message::staticGet('id', $id);
52         return $message;
53     }
54     
55     function get_title($user, $page)
56     {
57         $message = $this->get_message();
58         if (!$message) {
59             return null;
60         }
61         
62         if ($user->id == $message->from_profile) {
63             $to = $message->getTo();
64             $title = sprintf(_("Message to %1\$s on %2\$s"),
65                              $to->nickname,
66                              common_exact_date($message->created));
67         } else if ($user->id == $message->to_profile) {
68             $from = $message->getFrom();
69             $title = sprintf(_("Message from %1\$s on %2\$s"),
70                              $from->nickname,
71                              common_exact_date($message->created));
72         }
73         return $title;
74     }
75
76     function get_messages($user, $page)
77     {
78         $message = new Message();
79         $message->id = $this->trimmed('message');
80         $message->find();
81         return $message;
82     }
83     
84     function get_message_profile($message)
85     {
86         $user = common_current_user();
87         if ($user->id == $message->from_profile) {
88             return $message->getTo();
89         } else if ($user->id == $message->to_profile) {
90             return $message->getFrom();
91         } else {
92             # This shouldn't happen
93             return null;
94         }
95     }
96     
97     function get_instructions()
98     {
99         return '';
100     }
101     
102     function views_menu()
103     {
104         return;
105     }
106 }
107