]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/DirectMessage/classes/Message.php
DirectMessage moved into a plugin, not done yet
[quix0rs-gnu-social.git] / plugins / DirectMessage / 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 Managed_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     /* the code above is auto generated do not remove the tag below */
25     ###END_AUTOCODE
26
27     public static function schemaDef()
28     {
29         return array(
30             'fields' => array(
31                 'id' => array('type' => 'serial', 'not null' => true, 'description' => 'unique identifier'),
32                 'uri' => array('type' => 'varchar', 'length' => 255, 'description' => 'universally unique identifier'),
33                 'from_profile' => array('type' => 'int', 'not null' => true, 'description' => 'who the message is from'),
34                 'to_profile' => array('type' => 'int', 'not null' => true, 'description' => 'who the message is to'),
35                 'content' => array('type' => 'text', 'description' => 'message content'),
36                 'rendered' => array('type' => 'text', 'description' => 'HTML version of the content'),
37                 'url' => array('type' => 'varchar', 'length' => 255, 'description' => 'URL of any attachment (image, video, bookmark, whatever)'),
38                 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'),
39                 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'),
40                 'source' => array('type' => 'varchar', 'length' => 32, 'description' => 'source of comment, like "web", "im", or "clientname"'),
41             ),
42             'primary key' => array('id'),
43             'unique keys' => array(
44                 'message_uri_key' => array('uri'),
45             ),
46             'foreign keys' => array(
47                 'message_from_profile_fkey' => array('profile', array('from_profile' => 'id')),
48                 'message_to_profile_fkey' => array('profile', array('to_profile' => 'id')),
49             ),
50             'indexes' => array(
51                 // @fixme these are really terrible indexes, since you can only sort on one of them at a time.
52                 // looks like we really need a (to_profile, created) for inbox and a (from_profile, created) for outbox
53                 'message_from_idx' => array('from_profile'),
54                 'message_to_idx' => array('to_profile'),
55                 'message_created_idx' => array('created'),
56             ),
57         );
58     }
59
60     function getFrom()
61     {
62         return Profile::getKV('id', $this->from_profile);
63     }
64
65     function getTo()
66     {
67         return Profile::getKV('id', $this->to_profile);
68     }
69
70     static function saveNew($from, $to, $content, $source) {
71         $sender = Profile::getKV('id', $from);
72
73         if (!$sender->hasRight(Right::NEWMESSAGE)) {
74             // TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them.
75             throw new ClientException(_('You are banned from sending direct messages.'));
76         }
77
78         $user = User::getKV('id', $sender->id);
79
80         $msg = new Message();
81
82         $msg->from_profile = $from;
83         $msg->to_profile = $to;
84         if ($user) {
85             // Use the sender's URL shortening options.
86             $msg->content = $user->shortenLinks($content);
87         } else {
88             $msg->content = common_shorten_links($content);
89         }
90         $msg->rendered = common_render_text($msg->content);
91         $msg->created = common_sql_now();
92         $msg->source = $source;
93
94         $result = $msg->insert();
95
96         if (!$result) {
97             common_log_db_error($msg, 'INSERT', __FILE__);
98             // TRANS: Message given when a message could not be stored on the server.
99             throw new ServerException(_('Could not insert message.'));
100         }
101
102         $orig = clone($msg);
103         $msg->uri = common_local_url('showmessage', array('message' => $msg->id));
104
105         $result = $msg->update($orig);
106
107         if (!$result) {
108             common_log_db_error($msg, 'UPDATE', __FILE__);
109             // TRANS: Message given when a message could not be updated on the server.
110             throw new ServerException(_('Could not update message with new URI.'));
111         }
112
113         return $msg;
114     }
115
116     static function maxContent()
117     {
118         $desclimit = common_config('message', 'contentlimit');
119         // null => use global limit (distinct from 0!)
120         if (is_null($desclimit)) {
121             $desclimit = common_config('site', 'textlimit');
122         }
123         return $desclimit;
124     }
125
126     static function contentTooLong($content)
127     {
128         $contentlimit = self::maxContent();
129         return ($contentlimit > 0 && !empty($content) && (mb_strlen($content) > $contentlimit));
130     }
131
132     function notify()
133     {
134         $from = User::getKV('id', $this->from_profile);
135         $to   = User::getKV('id', $this->to_profile);
136
137         mail_notify_message($this, $from, $to);
138     }
139
140     function getSource()
141     {
142         if (empty($this->source)) {
143             return false;
144         }
145
146         $ns = new Notice_source();
147         switch ($this->source) {
148         case 'web':
149         case 'xmpp':
150         case 'mail':
151         case 'omb':
152         case 'system':
153         case 'api':
154             $ns->code = $this->source;
155             break;
156         default:
157             $ns = Notice_source::getKV($this->source);
158             if (!$ns instanceof Notice_source) {
159                 $ns = new Notice_source();
160                 $ns->code = $this->source;
161                 $app = Oauth_application::getKV('name', $this->source);
162                 if ($app) {
163                     $ns->name = $app->name;
164                     $ns->url  = $app->source_url;
165                 }
166             }
167             break;
168         }
169         return $ns;
170     }
171
172     function asActivity()
173     {
174         $act = new Activity();
175
176         if (Event::handle('StartMessageAsActivity', array($this, &$act))) {
177
178             $act->id      = TagURI::mint(sprintf('activity:message:%d', $this->id));
179             $act->time    = strtotime($this->created);
180             $act->link    = $this->url;
181
182             $profile = Profile::getKV('id', $this->from_profile);
183
184             if (empty($profile)) {
185                 throw new Exception(sprintf("Sender profile not found: %d", $this->from_profile));
186             }
187             
188             $act->actor            = $profile->asActivityObject();
189             $act->actor->extra[]   = $profile->profileInfo();
190
191             $act->verb = ActivityVerb::POST;
192
193             $act->objects[] = ActivityObject::fromMessage($this);
194
195             $ctx = new ActivityContext();
196
197             $rprofile = Profile::getKV('id', $this->to_profile);
198
199             if (empty($rprofile)) {
200                 throw new Exception(sprintf("Receiver profile not found: %d", $this->to_profile));
201             }
202
203             $ctx->attention[$rprofile->getUri()] = ActivityObject::PERSON;
204
205             $act->context = $ctx;
206
207             $source = $this->getSource();
208
209             if ($source instanceof Notice_source) {
210                 $act->generator = ActivityObject::fromNoticeSource($source);
211             }
212
213             Event::handle('EndMessageAsActivity', array($this, &$act));
214         }
215
216         return $act;
217     }
218 }