]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/GroupPrivateMessage/Group_message_profile.php
More info for a proper, fancy-url lighttpd setup
[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 Managed_DataObject
48 {
49     public $__table = 'group_message_profile'; // table name
50     public $to_profile;                        // int
51     public $group_message_id;                  // varchar(36)  primary_key not_null
52     public $created;                           // datetime()   not_null
53     public $modified;                          // timestamp()   not_null default_CURRENT_TIMESTAMP
54
55     public static function schemaDef()
56     {
57         return array(
58             'fields' => array(
59                 'to_profile' => array('type' => 'int', 'not null' => true, 'description' => 'id of group direct message'),
60                 'group_message_id' => array('type' => 'char', 'not null' => true, 'length' => 36, 'description' => 'related group message uuid'),
61                 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'),
62                 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'),
63             ),
64             'primary key' => array('to_profile', 'group_message_id'),
65             'foreign keys' => array(
66                 'group_message_profile_to_profile_fkey' => array('profile', array('to_profile' => 'id')),
67                 'group_message_profile_group_message_id_fkey' => array('group_message', array('group_message_id' => 'id')),
68             ),
69         );
70     }
71
72     function send($gm, $profile)
73     {
74         $gmp = new Group_message_profile();
75
76         $gmp->group_message_id = $gm->id;
77         $gmp->to_profile       = $profile->id;
78         $gmp->created          = common_sql_now();
79
80         $gmp->insert();
81
82         // If it's not for the author, send email notification
83         if ($gm->from_profile != $profile->id) {
84             $gmp->notify();
85         }
86
87         return $gmp;
88     }
89
90     function notify()
91     {
92         // XXX: add more here
93         $this->notifyByMail();
94     }
95
96     function notifyByMail()
97     {
98         $to = User::getKV('id', $this->to_profile);
99
100         if (empty($to) || is_null($to->email) || !$to->emailnotifymsg) {
101             return true;
102         }
103
104         $gm = Group_message::getKV('id', $this->group_message_id);
105
106         $from_profile = Profile::getKV('id', $gm->from_profile);
107
108         $group = $gm->getGroup();
109
110         common_switch_locale($to->language);
111
112         // TRANS: Subject for direct-message notification email.
113         // TRANS: %1$s is the sending user's nickname, %2$s is the group nickname.
114         $subject = sprintf(_m('New private message from %1$s to group %2$s'), $from_profile->nickname, $group->nickname);
115
116         // TRANS: Body for direct-message notification email.
117         // TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
118         // TRANS: %3$s is the message content, %4$s a URL to the message,
119         // TRANS: %5$s is the StatusNet sitename.
120         $body = sprintf(_m("%1\$s (%2\$s) sent a private message to group %3\$s:\n\n".
121                            "------------------------------------------------------\n".
122                            "%4\$s\n".
123                            "------------------------------------------------------\n\n".
124                            "You can reply to their message here:\n\n".
125                            "%5\$s\n\n".
126                            "Do not reply to this email; it will not get to them.\n\n".
127                            "With kind regards,\n".
128                            "%6\$s"),
129                         $from_profile->getBestName(),
130                         $from_profile->nickname,
131                         $group->nickname,
132                         $gm->content,
133                         common_local_url('newmessage', array('to' => $from_profile->id)),
134                         common_config('site', 'name')) . "\n";
135
136         $headers = _mail_prepare_headers('message', $to->nickname, $from_profile->nickname);
137
138         common_switch_locale();
139
140         return mail_to_user($to, $subject, $body, $headers);
141     }
142 }