]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - classes/Message.php
* i18n/L10n and translator documentation updates.
[quix0rs-gnu-social.git] / classes / Message.php
1 <?php
2 /**
3  * Table Definition for message
4  */
5 require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
6
7 class Message extends Memcached_DataObject
8 {
9     ###START_AUTOCODE
10     /* the code below is auto generated do not remove the above tag */
11
12     public $__table = 'message';                         // table name
13     public $id;                              // int(4)  primary_key not_null
14     public $uri;                             // varchar(255)  unique_key
15     public $from_profile;                    // int(4)   not_null
16     public $to_profile;                      // int(4)   not_null
17     public $content;                         // text()
18     public $rendered;                        // text()
19     public $url;                             // varchar(255)
20     public $created;                         // datetime()   not_null
21     public $modified;                        // timestamp()   not_null default_CURRENT_TIMESTAMP
22     public $source;                          // varchar(32)
23
24     /* Static get */
25     function staticGet($k,$v=NULL) { return Memcached_DataObject::staticGet('Message',$k,$v); }
26
27     /* the code above is auto generated do not remove the tag below */
28     ###END_AUTOCODE
29
30     function getFrom()
31     {
32         return Profile::staticGet('id', $this->from_profile);
33     }
34
35     function getTo()
36     {
37         return Profile::staticGet('id', $this->to_profile);
38     }
39
40     static function saveNew($from, $to, $content, $source) {
41         $sender = Profile::staticGet('id', $from);
42
43         if (!$sender->hasRight(Right::NEWMESSAGE)) {
44             // TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them.
45             throw new ClientException(_('You are banned from sending direct messages.'));
46         }
47
48         $msg = new Message();
49
50         $msg->from_profile = $from;
51         $msg->to_profile = $to;
52         $msg->content = common_shorten_links($content);
53         $msg->rendered = common_render_text($content);
54         $msg->created = common_sql_now();
55         $msg->source = $source;
56
57         $result = $msg->insert();
58
59         if (!$result) {
60             common_log_db_error($msg, 'INSERT', __FILE__);
61             // TRANS: Message given when a message could not be stored on the server.
62             return _('Could not insert message.');
63         }
64
65         $orig = clone($msg);
66         $msg->uri = common_local_url('showmessage', array('message' => $msg->id));
67
68         $result = $msg->update($orig);
69
70         if (!$result) {
71             common_log_db_error($msg, 'UPDATE', __FILE__);
72             // TRANS: Message given when a message could not be updated on the server.
73             return _('Could not update message with new URI.');
74         }
75
76         return $msg;
77     }
78
79     static function maxContent()
80     {
81         $desclimit = common_config('message', 'contentlimit');
82         // null => use global limit (distinct from 0!)
83         if (is_null($desclimit)) {
84             $desclimit = common_config('site', 'textlimit');
85         }
86         return $desclimit;
87     }
88
89     static function contentTooLong($content)
90     {
91         $contentlimit = self::maxContent();
92         return ($contentlimit > 0 && !empty($content) && (mb_strlen($content) > $contentlimit));
93     }
94
95     function notify()
96     {
97         $from = User::staticGet('id', $this->from_profile);
98         $to   = User::staticGet('id', $this->to_profile);
99
100         mail_notify_message($this, $from, $to);
101     }
102 }