]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/GroupPrivateMessage/Group_message_profile.php
Update translator documentation.
[quix0rs-gnu-social.git] / plugins / GroupPrivateMessage / Group_message_profile.php
1 <?php
2 /**
3  * Who received a group message
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) 2011, 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 for users
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_profile extends Memcached_DataObject
48 {
49     public $__table = 'group_message_profile'; // table name
50     public $to_profile;                        // int
51     public $group_message_id;                  // char(36)  primary_key not_null
52     public $created;
53
54     /**
55      * Get an instance by key
56      *
57      * This is a utility method to get a single instance with a given key value.
58      *
59      * @param string $k Key to use to lookup (usually 'user_id' for this class)
60      * @param mixed  $v Value to lookup
61      *
62      * @return Group_message object found, or null for no hits
63      */
64     function staticGet($k, $v=null)
65     {
66         return Memcached_DataObject::staticGet('Group_message_profile', $k, $v);
67     }
68
69     /**
70      * return table definition for DB_DataObject
71      *
72      * DB_DataObject needs to know something about the table to manipulate
73      * instances. This method provides all the DB_DataObject needs to know.
74      *
75      * @return array array of column definitions
76      */
77     function table()
78     {
79         return array('to_profile' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL,
80                      'group_message_id' => DB_DATAOBJECT_STR + DB_DATAOBJECT_NOTNULL,
81                      'created' => DB_DATAOBJECT_STR + DB_DATAOBJECT_DATE + DB_DATAOBJECT_TIME + DB_DATAOBJECT_NOTNULL);
82     }
83
84     /**
85      * return key definitions for DB_DataObject
86      *
87      * DB_DataObject needs to know about keys that the table has, since it
88      * won't appear in StatusNet's own keys list. In most cases, this will
89      * simply reference your keyTypes() function.
90      *
91      * @return array list of key field names
92      */
93     function keys()
94     {
95         return array_keys($this->keyTypes());
96     }
97
98     /**
99      * return key definitions for Memcached_DataObject
100      *
101      * @return array associative array of key definitions, field name to type:
102      *         'K' for primary key: for compound keys, add an entry for each component;
103      *         'U' for unique keys: compound keys are not well supported here.
104      */
105     function keyTypes()
106     {
107         return array('to_profile' => 'K', 'group_message_id' => 'K');
108     }
109
110     /**
111      * No sequence keys in this table.
112      */
113     function sequenceKey()
114     {
115         return array(false, false, false);
116     }
117
118     function send($gm, $profile)
119     {
120         $gmp = new Group_message_profile();
121
122         $gmp->group_message_id = $gm->id;
123         $gmp->to_profile       = $profile->id;
124         $gmp->created          = common_sql_now();
125
126         $gmp->insert();
127
128         $gmp->notify();
129
130         return $gmp;
131     }
132
133     function notify()
134     {
135         // XXX: add more here
136         $this->notifyByMail();
137     }
138
139     function notifyByMail()
140     {
141         $to = User::staticGet('id', $this->to_profile);
142
143         if (empty($to) || is_null($to->email) || !$to->emailnotifymsg) {
144             return true;
145         }
146
147         $gm = Group_message::staticGet('id', $this->group_message_id);
148
149         $from_profile = Profile::staticGet('id', $gm->from_profile);
150
151         $group = $gm->getGroup();
152
153         common_switch_locale($to->language);
154
155         // TRANS: Subject for direct-message notification email.
156         // TRANS: %1$s is the sending user's nickname, %2$s is the group nickname.
157         $subject = sprintf(_m('New private message from %1$s to group %2$s'), $from_profile->nickname, $group->nickname);
158
159         // TRANS: Body for direct-message notification email.
160         // TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
161         // TRANS: %3$s is the message content, %4$s a URL to the message,
162         // TRANS: %5$s is the StatusNet sitename.
163         $body = sprintf(_m("%1\$s (%2\$s) sent a private message to group %3\$s:\n\n".
164                            "------------------------------------------------------\n".
165                            "%4\$s\n".
166                            "------------------------------------------------------\n\n".
167                            "You can reply to their message here:\n\n".
168                            "%5\$s\n\n".
169                            "Do not reply to this email; it will not get to them.\n\n".
170                            "With kind regards,\n".
171                            "%6\$s"),
172                         $from_profile->getBestName(),
173                         $from_profile->nickname,
174                         $group->nickname,
175                         $gm->content,
176                         common_local_url('newmessage', array('to' => $from_profile->id)),
177                         common_config('site', 'name')) . "\n";
178
179         $headers = _mail_prepare_headers('message', $to->nickname, $from_profile->nickname);
180
181         common_switch_locale();
182
183         return mail_to_user($to, $subject, $body, $headers);
184     }
185 }