]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/GroupPrivateMessage/Group_message.php
a74f7cd60abfe69e0086a86ecb086c9abfabb9f7
[quix0rs-gnu-social.git] / plugins / GroupPrivateMessage / Group_message.php
1 <?php
2 /**
3  * Data class for group direct messages
4  *
5  * PHP version 5
6  *
7  * @category Data
8  * @package  StatusNet
9  * @author   Evan Prodromou <evan@status.net>
10  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
11  * @link     http://status.net/
12  *
13  * StatusNet - the distributed open-source microblogging tool
14  * Copyright (C) 2009, StatusNet, Inc.
15  *
16  * This program is free software: you can redistribute it and/or modify
17  * it under the terms of the GNU Affero General Public License as published by
18  * the Free Software Foundation, either version 3 of the License, or
19  * (at your option) any later version.
20  *
21  * This program is distributed in the hope that it will be useful,
22  * but WITHOUT ANY WARRANTY; without even the implied warranty of
23  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.     See the
24  * GNU Affero General Public License for more details.
25  *
26  * You should have received a copy of the GNU Affero General Public License
27  * along with this program. If not, see <http://www.gnu.org/licenses/>.
28  */
29
30 if (!defined('STATUSNET')) {
31     exit(1);
32 }
33
34 require_once INSTALLDIR . '/classes/Memcached_DataObject.php';
35
36 /**
37  * Data class for group direct messages
38  *
39  * @category GroupPrivateMessage
40  * @package  StatusNet
41  * @author   Evan Prodromou <evan@status.net>
42  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
43  * @link     http://status.net/
44  *
45  * @see      DB_DataObject
46  */
47 class Group_message extends Managed_DataObject
48 {
49     public $__table = 'group_message'; // table name
50     public $id;                        // char(36)  primary_key not_null
51     public $uri;                       // varchar(255)
52     public $from_profile;              // int
53     public $to_group;                  // int
54     public $content;
55     public $rendered;
56     public $url;
57     public $created;
58
59     /**
60      * return table definition for DB_DataObject
61      *
62      * DB_DataObject needs to know something about the table to manipulate
63      * instances. This method provides all the DB_DataObject needs to know.
64      *
65      * @return array array of column definitions
66      */
67     function table()
68     {
69         return array('id' => DB_DATAOBJECT_STR + DB_DATAOBJECT_NOTNULL,
70                      'uri' => DB_DATAOBJECT_STR + DB_DATAOBJECT_NOTNULL,
71                      'from_profile' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL,
72                      'to_group' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL,
73                      'content' => DB_DATAOBJECT_STR + DB_DATAOBJECT_NOTNULL,
74                      'rendered' => DB_DATAOBJECT_STR + DB_DATAOBJECT_NOTNULL,
75                      'url' => DB_DATAOBJECT_STR,
76                      'created' => DB_DATAOBJECT_STR + DB_DATAOBJECT_DATE + DB_DATAOBJECT_TIME + DB_DATAOBJECT_NOTNULL);
77     }
78
79     /**
80      * return key definitions for DB_DataObject
81      *
82      * DB_DataObject needs to know about keys that the table has, since it
83      * won't appear in StatusNet's own keys list. In most cases, this will
84      * simply reference your keyTypes() function.
85      *
86      * @return array list of key field names
87      */
88     function keys()
89     {
90         return array_keys($this->keyTypes());
91     }
92
93     /**
94      * return key definitions for Memcached_DataObject
95      *
96      * @return array associative array of key definitions, field name to type:
97      *         'K' for primary key: for compound keys, add an entry for each component;
98      *         'U' for unique keys: compound keys are not well supported here.
99      */
100     function keyTypes()
101     {
102         return array('id' => 'K', 'uri' => 'U');
103     }
104
105     static function send($user, $group, $text)
106     {
107         if (!$user->hasRight(Right::NEWMESSAGE)) {
108             // XXX: maybe break this out into a separate right
109             // TRANS: Exception thrown when trying to send group private message without having the right to do that.
110             // TRANS: %s is a user nickname.
111             throw new Exception(sprintf(_m('User %s is not allowed to send private messages.'),
112                                         $user->nickname));
113         }
114
115         Group_privacy_settings::ensurePost($user, $group);
116
117         $text = $user->shortenLinks($text);
118
119         // We use the same limits as for 'regular' private messages.
120
121         if (Message::contentTooLong($text)) {
122             // TRANS: Exception thrown when trying to send group private message that is too long.
123             // TRANS: %d is the maximum meggage length.
124             throw new Exception(sprintf(_m('That\'s too long. Maximum message size is %d character.',
125                                            'That\'s too long. Maximum message size is %d characters.',
126                                            Message::maxContent()),
127                                         Message::maxContent()));
128         }
129
130         // Valid! Let's do this thing!
131
132         $gm = new Group_message();
133
134         $gm->id           = UUID::gen();
135         $gm->uri          = common_local_url('showgroupmessage', array('id' => $gm->id));
136         $gm->from_profile = $user->id;
137         $gm->to_group     = $group->id;
138         $gm->content      = $text; // XXX: is this cool?!
139         $gm->rendered     = common_render_text($text);
140         $gm->url          = $gm->uri;
141         $gm->created      = common_sql_now();
142
143         // This throws a conniption if there's a problem
144
145         $gm->insert();
146
147         $gm->distribute();
148
149         return $gm;
150     }
151
152     function distribute()
153     {
154         $group = User_group::staticGet('id', $this->to_group);
155
156         $member = $group->getMembers();
157
158         while ($member->fetch()) {
159             Group_message_profile::send($this, $member);
160         }
161     }
162
163     function getGroup()
164     {
165         $group = User_group::staticGet('id', $this->to_group);
166         if (empty($group)) {
167             // TRANS: Exception thrown when trying to send group private message to a non-existing group.
168             throw new ServerException(_m('No group for group message.'));
169         }
170         return $group;
171     }
172
173     function getSender()
174     {
175         $sender = Profile::staticGet('id', $this->from_profile);
176         if (empty($sender)) {
177             // TRANS: Exception thrown when trying to send group private message without having a sender.
178             throw new ServerException(_m('No sender for group message.'));
179         }
180         return $sender;
181     }
182
183     static function forGroup($group, $offset, $limit)
184     {
185         // XXX: cache
186         $gm = new Group_message();
187
188         $gm->to_group = $group->id;
189         $gm->orderBy('created DESC');
190         $gm->limit($offset, $limit);
191
192         $gm->find();
193
194         return $gm;
195     }
196 }