2012-02-08 23:14:28 +01:00
< ? php
2019-02-23 18:07:38 +01:00
require_once DIR_SYSTEM . 'helper/mime.php' ;
2017-10-22 21:37:40 +02:00
2016-09-15 22:08:04 +02:00
2012-02-08 23:14:28 +01:00
class ModelSearchMessage extends Model {
2013-11-09 14:13:09 +01:00
public $encoding_aliases = array (
'GB2312' => 'GBK' ,
'GB231280' => 'GBK'
);
2016-09-17 22:30:27 +02:00
public $message ;
2016-12-30 11:24:00 +01:00
private $verification = 0 ;
2012-02-08 23:14:28 +01:00
2016-09-17 15:30:47 +02:00
2015-04-22 12:26:04 +02:00
public function verify_message ( $piler_id = '' , $data = '' ) {
if ( $piler_id == '' ) { return 0 ; }
2012-02-08 23:14:28 +01:00
2015-04-22 12:26:04 +02:00
$q = $this -> db -> query ( " SELECT `size`, `hlen`, `digest`, `bodydigest`,`attachments` FROM " . TABLE_META . " WHERE piler_id=? " , array ( $piler_id ));
2012-02-08 23:14:28 +01:00
$digest = $q -> row [ 'digest' ];
$bodydigest = $q -> row [ 'bodydigest' ];
$size = $q -> row [ 'size' ];
$hlen = $q -> row [ 'hlen' ];
$attachments = $q -> row [ 'attachments' ];
$_digest = openssl_digest ( $data , " SHA256 " );
$_bodydigest = openssl_digest ( substr ( $data , $hlen ), " SHA256 " );
2015-04-22 12:26:04 +02:00
if ( $_digest == $digest && $_bodydigest == $bodydigest ) {
if ( TSA_PUBLIC_KEY_FILE ) {
$id = $this -> get_id_by_piler_id ( $piler_id );
if ( $this -> check_rfc3161_timestamp_for_id ( $id ) == 1 ) { return 1 ; }
}
else { return 1 ; }
}
2012-02-08 23:14:28 +01:00
return 0 ;
}
public function get_raw_message ( $id = '' ) {
2013-04-09 15:02:10 +02:00
$s = '' ;
if ( $id == '' || ! preg_match ( " /^([0-9a-f]+) $ / " , $id )) { return $s ; }
2016-09-21 21:59:57 +02:00
if ( LOG_LEVEL >= DEBUG ) { syslog ( LOG_INFO , DECRYPT_BINARY . " $id " ); }
2016-09-17 15:30:47 +02:00
$handle = popen ( DECRYPT_BINARY . " $id " , " r " );
while (( $buf = fread ( $handle , DECRYPT_BUFFER_LENGTH ))) {
$s .= $buf ;
2013-04-09 15:02:10 +02:00
}
2016-09-17 15:30:47 +02:00
pclose ( $handle );
if ( $s == '' ) {
$handle = popen ( DECRYPT_BINARY . " $id nocrypt " , " r " );
2013-11-09 14:13:09 +01:00
while (( $buf = fread ( $handle , DECRYPT_BUFFER_LENGTH ))) {
2013-04-09 15:02:10 +02:00
$s .= $buf ;
}
pclose ( $handle );
2012-02-08 23:14:28 +01:00
}
2016-12-30 11:24:00 +01:00
if ( ENABLE_ON_THE_FLY_VERIFICATION == 0 ) {
$this -> verification = $this -> verify_message ( $id , $s );
}
2015-04-15 13:33:27 +02:00
if ( Registry :: get ( 'auditor_user' ) == 0 && HEADER_LINE_TO_HIDE ) {
$s = preg_replace ( " / " . HEADER_LINE_TO_HIDE . " . { 1,}( \n ( \ | \t ) { 1,}. { 1,}) { 0,} " . " \n /i " , " " , $s );
}
2018-02-21 14:56:38 +01:00
if ( Registry :: get ( 'auditor_user' ) == 0 ){
$s = preg_replace ( " /X-Piler-Envelope-To:. { 1,} \n / " , " " , $s );
}
2013-04-09 15:02:10 +02:00
return $s ;
2012-02-08 23:14:28 +01:00
}
2012-10-04 10:00:54 +02:00
public function get_attachment ( $piler_id = '' , $attachment_id = '' ) {
$data = '' ;
2013-04-09 15:02:10 +02:00
if ( $piler_id == '' || $attachment_id == '' || ! preg_match ( " /^([0-9a-f]+) $ / " , $piler_id ) || ! preg_match ( " /^([0-9m]+) $ / " , $attachment_id )) { return $data ; }
2012-10-04 10:00:54 +02:00
2016-09-21 21:59:57 +02:00
if ( LOG_LEVEL >= DEBUG ) { syslog ( LOG_INFO , DECRYPT_ATTACHMENT_BINARY . " $piler_id $attachment_id " ); }
2016-09-17 15:30:47 +02:00
$handle = popen ( DECRYPT_ATTACHMENT_BINARY . " $piler_id $attachment_id " , " r " );
while (( $buf = fread ( $handle , DECRYPT_BUFFER_LENGTH ))){
$data .= $buf ;
2013-04-09 15:02:10 +02:00
}
2016-09-17 15:30:47 +02:00
pclose ( $handle );
2012-10-04 10:00:54 +02:00
2013-03-24 10:02:34 +01:00
/* check if it's a base64 encoded stuff */
2012-10-04 10:00:54 +02:00
2013-03-24 10:02:34 +01:00
$s = substr ( $data , 0 , 4096 );
$s = preg_replace ( " /( \r | \n )/ " , " " , $s );
2013-03-24 23:49:52 +01:00
if ( ! preg_match ( " / \ s/ " , $s )) {
2013-03-24 10:02:34 +01:00
return base64_decode ( preg_replace ( " / \ s/ " , " " , $data ));
}
return $data ;
2012-10-04 10:00:54 +02:00
}
2012-02-08 23:14:28 +01:00
public function get_message_headers ( $id = '' ) {
2016-09-15 22:08:04 +02:00
$headers = '' ;
2018-12-23 21:00:22 +01:00
$has_journal = 0 ;
2012-02-08 23:14:28 +01:00
$msg = $this -> get_raw_message ( $id );
2018-12-23 21:00:22 +01:00
Piler_Mime_Decode :: splitMessageRaw ( $msg , $headers , $journal , $body );
2018-12-23 20:50:14 +01:00
2018-12-23 21:00:22 +01:00
if ( $journal ) { $has_journal = 1 ; }
2015-03-20 15:48:00 +01:00
2017-10-22 21:37:40 +02:00
$headers = Piler_Mime_Decode :: escape_lt_gt_symbols ( $headers );
2012-02-08 23:14:28 +01:00
2016-09-15 22:08:04 +02:00
return array ( 'headers' => $headers , 'has_journal' => $has_journal );
2013-07-12 11:14:09 +02:00
}
public function get_message_journal ( $id = '' ) {
$msg = $this -> get_raw_message ( $id );
2018-12-23 21:00:22 +01:00
Piler_Mime_Decode :: splitMessageRaw ( $msg , $headers , $journal , $body );
2018-12-23 20:50:14 +01:00
2018-12-23 21:00:22 +01:00
return Piler_Mime_Decode :: escape_lt_gt_symbols ( $journal );
2018-12-23 20:50:14 +01:00
}
2013-06-29 17:59:57 +02:00
public function extract_message ( $id = '' , $terms = '' ) {
2019-05-15 20:31:51 +02:00
if ( LOCALIZE_MESSAGE_HEADERS_IN_PREVIEW ) {
$lang = Registry :: get ( 'language' );
$from = $lang -> data [ 'text_from' ] . " : " ;
$to = $lang -> data [ 'text_to' ] . " : " ;
$cc = " Cc: " ;
$subject = $lang -> data [ 'text_subject' ] . " : " ;
$date = $lang -> data [ 'text_date' ] . " : " ;
} else {
$from = " From: " ;
$to = " To: " ;
$cc = " Cc: " ;
$subject = " Subject: " ;
$date = " Date: " ;
}
2016-09-17 22:30:27 +02:00
2012-02-08 23:14:28 +01:00
$msg = $this -> get_raw_message ( $id );
2013-10-30 23:40:34 +01:00
2018-12-23 21:00:22 +01:00
$has_journal = Piler_Mime_Decode :: removeJournal ( $msg );
2013-01-27 21:43:42 +01:00
2018-12-23 20:50:14 +01:00
Piler_Mime_Decode :: splitMessage ( $msg , $headers , $body );
2016-09-17 22:30:27 +02:00
2017-10-22 21:37:40 +02:00
for ( $i = 0 ; $i < count ( Piler_Mime_Decode :: HEADER_FIELDS ); $i ++ ) {
if ( isset ( $headers [ Piler_Mime_Decode :: HEADER_FIELDS [ $i ]]) && is_array ( $headers [ Piler_Mime_Decode :: HEADER_FIELDS [ $i ]])) {
$headers [ Piler_Mime_Decode :: HEADER_FIELDS [ $i ]] = $headers [ Piler_Mime_Decode :: HEADER_FIELDS [ $i ][ 0 ]];
2017-05-14 08:16:17 +02:00
}
2017-10-22 21:37:40 +02:00
if ( Piler_Mime_Decode :: HEADER_FIELDS [ $i ] == 'date' ) {
$ { Piler_Mime_Decode :: HEADER_FIELDS [ $i ]} .= $headers [ Piler_Mime_Decode :: HEADER_FIELDS [ $i ]];
} else {
$ { Piler_Mime_Decode :: HEADER_FIELDS [ $i ]} .= Piler_Mime_Decode :: escape_lt_gt_symbols ( $headers [ Piler_Mime_Decode :: HEADER_FIELDS [ $i ]]);
2017-05-14 08:16:17 +02:00
}
2016-09-17 22:30:27 +02:00
}
2014-06-28 11:19:04 +02:00
2017-10-22 21:37:40 +02:00
Piler_Mime_Decode :: parseMessage ( $msg , $parts );
2016-12-17 08:56:15 +01:00
require_once DIR_SYSTEM . 'helper/HTMLPurifier.standalone.php' ;
$config = HTMLPurifier_Config :: createDefault ();
2017-08-12 15:55:28 +02:00
$config -> set ( 'URI.DisableExternal' , 'true' );
$config -> set ( 'URI.DisableExternalResources' , 'true' );
2017-01-21 16:02:28 +01:00
$config -> set ( 'Cache.SerializerPath' , DIR_BASE . 'tmp' );
2016-12-17 08:56:15 +01:00
$purifier = new HTMLPurifier ( $config );
2017-10-22 21:37:40 +02:00
$this -> message = array (
'text/plain' => '' ,
'text/html' => ''
);
2012-02-08 23:14:28 +01:00
2017-10-22 21:37:40 +02:00
for ( $i = 0 ; $i < count ( $parts ); $i ++ ) {
2012-02-08 23:14:28 +01:00
2017-10-22 21:37:40 +02:00
$body = Piler_Mime_Decode :: fixMimeBodyPart ( $parts [ $i ][ 'headers' ], $parts [ $i ][ 'body' ]);
2012-02-08 23:14:28 +01:00
2017-10-22 21:37:40 +02:00
if ( $parts [ $i ][ 'headers' ][ 'content-type' ][ 'type' ] == 'text/html' ) {
2020-08-10 23:04:55 +02:00
$this -> message [ 'text/html' ] .= $purifier -> purify ( $body );
2017-10-22 21:37:40 +02:00
}
else {
2020-08-10 23:04:55 +02:00
$this -> message [ 'text/plain' ] .= $body ;
2017-10-22 21:37:40 +02:00
}
2012-02-08 23:14:28 +01:00
}
2017-10-22 21:37:40 +02:00
return array ( 'from' => $from ,
'to' => $to ,
'cc' => $cc ,
'subject' => $this -> highlight_search_terms ( $subject , $terms ),
'date' => $date ,
2023-06-07 19:05:37 +02:00
'message' => $this -> message [ 'text/html' ] ? $this -> highlight_search_terms ( $this -> message [ 'text/html' ]) : $this -> highlight_search_terms ( $this -> message [ 'text/plain' ]),
2017-10-22 21:37:40 +02:00
'has_journal' => $has_journal ,
'verification' => $this -> verification
);
2016-09-17 15:30:47 +02:00
}
2014-06-28 11:19:04 +02:00
private function highlight_search_terms ( $s = '' , $terms = '' , $html = 0 ) {
2013-10-05 11:34:06 +02:00
$fields = array ( " from: " , " to: " , " subject: " , " body: " );
2016-09-17 15:30:47 +02:00
$terms = preg_replace ( " /( \ ,| \ s) { 1,}/ " , " " , $terms );
2013-07-03 10:20:29 +02:00
2014-06-28 11:19:04 +02:00
$a = explode ( " " , $terms );
$terms = array ();
2022-01-19 15:40:42 +01:00
foreach ( $a as $k => $v ) {
2014-06-28 11:19:04 +02:00
if ( strlen ( $v ) >= 3 && ! in_array ( $v , $fields )) {
2015-09-08 13:39:40 +02:00
$v = preg_replace ( " / \ */ " , " " , $v );
2014-08-18 15:35:25 +02:00
if ( $v ) { array_push ( $terms , $v ); }
2014-06-28 11:19:04 +02:00
}
}
2013-06-29 17:59:57 +02:00
2023-06-07 19:05:37 +02:00
if ( $html == 0 ) {
$s = preg_replace ( " /THE_BREAK_HTML_TAG/ " , " <br /> " , $s );
}
2013-06-29 17:59:57 +02:00
if ( count ( $terms ) <= 0 ) { return $s ; }
2014-06-28 11:19:04 +02:00
if ( $html == 0 ) {
2022-01-19 15:40:42 +01:00
foreach ( $terms as $k => $v ) {
2021-02-07 15:15:21 +01:00
$s = preg_replace ( " / $v /i " , " <span class= \" mssghglght \" > $v </span> " , $s );
2014-06-28 11:19:04 +02:00
}
return $s ;
}
2013-10-05 11:34:06 +02:00
2014-06-28 11:19:04 +02:00
$tokens = preg_split ( " / \ </ " , $s );
$s = '' ;
2022-01-19 15:40:42 +01:00
foreach ( $tokens as $k => $token ) {
2014-06-28 11:19:04 +02:00
$pos = strpos ( $token , " > " );
if ( $pos > 0 ) {
$len = strlen ( $token );
$s .= '<' . substr ( $token , 0 , $pos ) . '>' ;
if ( $len > $pos + 1 ) {
$str = substr ( $token , $pos + 1 , $len );
reset ( $terms );
2022-01-19 15:40:42 +01:00
foreach ( $terms as $k => $v ) {
2021-02-07 15:15:21 +01:00
$str = preg_replace ( " / $v /i " , " <span class= \" mssghglght \" > $v </span> " , $str );
2014-06-28 11:19:04 +02:00
}
$s .= $str ;
}
}
2013-06-29 17:59:57 +02:00
}
return $s ;
}
2012-09-06 15:27:20 +02:00
public function get_piler_id_by_id ( $id = 0 ) {
$query = $this -> db -> query ( " SELECT `piler_id` FROM ` " . TABLE_META . " ` WHERE id=? " , array ( $id ));
if ( isset ( $query -> row [ 'piler_id' ])) { return $query -> row [ 'piler_id' ]; }
return '' ;
}
2012-10-04 10:00:54 +02:00
public function get_id_by_piler_id ( $piler_id = '' ) {
if ( $piler_id == '' ) { return - 1 ; }
$query = $this -> db -> query ( " SELECT `id` FROM ` " . TABLE_META . " ` WHERE piler_id=? " , array ( $piler_id ));
if ( isset ( $query -> row [ 'id' ])) { return $query -> row [ 'id' ]; }
return - 1 ;
}
2015-10-23 20:40:07 +02:00
public function get_subject_id_by_id ( $id = 0 ) {
$query = $this -> db -> query ( " SELECT `subject` FROM ` " . TABLE_META . " ` WHERE id=? " , array ( $id ));
if ( isset ( $query -> row [ 'subject' ])) { return $query -> row [ 'subject' ]; }
return '' ;
}
2016-12-24 21:19:33 +01:00
public function get_metadata_by_id ( $id = 0 ) {
$query = $this -> db -> query ( " SELECT * FROM ` " . TABLE_META . " ` WHERE id=? " , array ( $id ));
if ( isset ( $query -> row [ 'piler_id' ])) { return $query -> row ; }
return '' ;
}
2015-10-23 20:40:07 +02:00
public function fix_subject ( $s = '' ) {
if ( $s == '' ) { $s = 'nosubject' ; }
return preg_replace ( " /^ \ - { 1,}/ " , " " , preg_replace ( " / \ W { 1,}/ " , " - " , $s ));
}
2021-04-04 07:40:16 +02:00
public function get_message_addresses_by_piler_id ( $piler_id = '' , $domains = []) {
$id = 0 ;
$sender = '' ;
$rcpt = [];
$query = $this -> db -> query ( " SELECT id, `from`, `fromdomain` FROM " . TABLE_META . " WHERE piler_id=? " , [ $piler_id ]);
if ( isset ( $query -> row )) {
$id = $query -> row [ 'id' ];
if ( in_array ( $query -> row [ 'fromdomain' ], $domains )) {
$sender = $query -> row [ 'from' ];
}
}
$query = $this -> db -> query ( " SELECT `to`, `todomain` FROM " . TABLE_RCPT . " WHERE id=? " , [ $id ]);
foreach ( $query -> rows as $row ) {
if ( in_array ( $row [ 'todomain' ], $domains )) {
$rcpt [] = $row [ 'to' ];
}
}
return [ 'sender' => $sender , 'rcpt' => $rcpt ];
}
2012-10-04 10:00:54 +02:00
public function get_attachment_by_id ( $id = 0 ) {
if ( $id <= 0 ) { return array (); }
$query = $this -> db -> query ( " SELECT id, piler_id, attachment_id, name, type, ptr FROM " . TABLE_ATTACHMENT . " WHERE id=? " , array ( $id ));
if ( isset ( $query -> row )) {
$metaid = $this -> get_id_by_piler_id ( $query -> row [ 'piler_id' ]);
if ( $metaid > 0 && $this -> model_search_search -> check_your_permission_by_id ( $metaid ) == 1 ) {
if ( $query -> row [ 'ptr' ] > 0 ) {
$query = $this -> db -> query ( " SELECT id, piler_id, attachment_id, name, type FROM " . TABLE_ATTACHMENT . " WHERE id=? " , array ( $query -> row [ 'ptr' ]));
}
$attachment = $this -> get_attachment ( $query -> row [ 'piler_id' ], $query -> row [ 'attachment_id' ]);
2013-03-23 19:14:36 +01:00
return array ( 'filename' => fix_evolution_mime_name_crap ( $query -> row [ 'name' ]), 'piler_id' => $query -> row [ 'piler_id' ], 'attachment' => $attachment );
2012-10-04 10:00:54 +02:00
}
}
return array ();
}
2015-04-22 12:26:04 +02:00
public function check_rfc3161_timestamp_for_id ( $id = 0 ) {
$s = '' ;
$computed_hash = '' ;
/*
* determine which entry in the timestamp table holds the aggregated hash value ,
* then compute the aggregated hash value for the digests between start_id and stop_id .
* If the hashes are the same , then verify by the public key as well
*/
2021-12-16 10:38:04 +01:00
$query = $this -> db -> query ( " SELECT `start_id`, `stop_id`, `hash_value`, `response_time`, `response_string` FROM " . TABLE_TIMESTAMP . " WHERE start_id <= ? AND stop_id >= ? " , array ( $id , $id ));
2015-04-22 12:26:04 +02:00
if ( isset ( $query -> row [ 'start_id' ]) && isset ( $query -> row [ 'stop_id' ])) {
if ( MEMCACHED_ENABLED ) {
$cache_key = " rfc3161_ " . $query -> row [ 'start_id' ] . " + " . $query -> row [ 'stop_id' ];
$memcache = Registry :: get ( 'memcache' );
$computed_hash = $memcache -> get ( $cache_key );
}
if ( $computed_hash == '' ) {
2021-12-16 10:38:04 +01:00
$query2 = $this -> db -> query ( " SELECT digest FROM " . TABLE_META . " WHERE id >= ? AND id <= ? ORDER BY id " , array ( $query -> row [ 'start_id' ], $query -> row [ 'stop_id' ]));
2015-04-22 12:26:04 +02:00
foreach ( $query2 -> rows as $q ) {
$s .= $q [ 'digest' ];
}
2021-12-09 11:20:18 +01:00
$len = strlen ( $query -> row [ 'hash_value' ]);
if ( $len == 64 )
$algo = 'sha256' ;
elseif ( $len == 128 )
$algo = 'sha512' ;
else
$algo = 'sha1' ;
$computed_hash = hash ( $algo , $s );
2015-04-22 12:26:04 +02:00
if ( MEMCACHED_ENABLED ) {
$memcache -> add ( $cache_key , $computed_hash , 0 , MEMCACHED_TTL );
}
}
if ( $query -> row [ 'hash_value' ] == $computed_hash ) {
2023-02-21 06:25:58 +01:00
try {
if ( true === TrustedTimestamps :: validate ( $query -> row [ 'hash_value' ], $query -> row [ 'response_string' ], $query -> row [ 'response_time' ], TSA_PUBLIC_KEY_FILE )) {
return 1 ;
}
} catch ( Exception $e ) {
syslog ( LOG_INFO , " ERROR validating the timestamp: " . $e -> getMessage ());
return 0 ;
}
2015-04-22 12:26:04 +02:00
}
}
return 0 ;
}
2012-10-04 10:00:54 +02:00
public function get_attachment_list ( $piler_id = 0 ) {
$data = array ();
if ( $piler_id == '' ) { return array (); }
$query = $this -> db -> query ( " SELECT id, name, type, ptr FROM " . TABLE_ATTACHMENT . " WHERE piler_id=? " , array ( $piler_id ));
if ( ! isset ( $query -> rows )) { return array (); }
foreach ( $query -> rows as $q ) {
2013-03-23 19:14:36 +01:00
$q [ 'name' ] = fix_evolution_mime_name_crap ( $q [ 'name' ]);
2012-10-04 10:00:54 +02:00
array_push ( $data , $q );
}
return $data ;
}
2014-01-16 12:57:29 +01:00
public function is_message_spam ( $id = 0 ) {
$spam = 0 ;
2014-01-16 12:59:56 +01:00
if ( $id > 0 && DEFAULT_RETENTION > 30 ) {
2014-01-16 12:57:29 +01:00
$query = $this -> db -> query ( " SELECT spam FROM " . TABLE_META . " WHERE id=? " , array ( $id ));
if ( isset ( $query -> row [ 'spam' ])) { $spam = $query -> row [ 'spam' ]; }
}
return $spam ;
}
public function not_spam ( $id = 0 ) {
if ( $id > 0 ) {
$query = $this -> db -> query ( " UPDATE " . TABLE_META . " SET spam=0, retained=? WHERE id=? " , array ( NOW + ( DEFAULT_RETENTION * 86400 ), $id ));
}
}
2016-02-10 14:57:30 +01:00
public function mark_as_private ( $id = 0 ) {
if ( $id > 0 ) {
$query = $this -> db -> query ( " INSERT INTO " . TABLE_PRIVATE . " (id) VALUES(?) " , array ( $id ));
}
return 1 ;
}
2016-02-16 15:37:34 +01:00
public function unmark_as_private ( $id = 0 ) {
if ( $id > 0 ) {
$query = $this -> db -> query ( " DELETE FROM " . TABLE_PRIVATE . " WHERE id=? " , array ( $id ));
}
return 1 ;
}
2012-02-08 23:14:28 +01:00
public function get_message_tag ( $id = '' , $uid = 0 ) {
if ( $id == '' || $uid <= 0 ) { return '' ; }
2022-12-31 09:03:58 +01:00
if ( RT ) {
$query = $this -> sphx -> query ( " SELECT tag FROM " . SPHINX_TAG_INDEX . " WHERE uid= $uid AND mid= $id " );
} else {
$query = $this -> db -> query ( " SELECT `tag` FROM " . TABLE_TAG . " WHERE uid=? AND id=? " , array ( $uid , $id ));
}
2012-02-08 23:14:28 +01:00
2013-02-11 20:24:19 +01:00
if ( isset ( $query -> row [ 'tag' ])) { return strip_tags ( $query -> row [ 'tag' ]); }
2012-02-08 23:14:28 +01:00
return '' ;
}
public function add_message_tag ( $id = '' , $uid = 0 , $tag = '' ) {
if ( $id == '' || $uid <= 0 ) { return 0 ; }
2012-09-06 15:27:20 +02:00
if ( $tag == '' ) {
2022-12-31 09:03:58 +01:00
if ( RT ) {
$this -> sphx -> query ( " DELETE FROM " . SPHINX_TAG_INDEX . " WHERE uid= $uid AND mid= $id " );
} else {
$query = $this -> db -> query ( " DELETE FROM " . TABLE_TAG . " WHERE uid=? AND id=? " , array ( $uid , $id ));
}
2012-09-06 15:27:20 +02:00
} else {
2022-12-31 09:03:58 +01:00
if ( RT ) {
$this -> sphx -> query ( " REPLACE INTO " . SPHINX_TAG_INDEX . " (mid, uid, tag) VALUES (?,?,?) " ,[ $id , $uid , $tag ]);
} else {
$query = $this -> db -> query ( " UPDATE " . TABLE_TAG . " SET tag=? WHERE uid=? AND id=? " , array ( $tag , $uid , $id ));
if ( $this -> db -> countAffected () == 0 ) {
$query = $this -> db -> query ( " INSERT INTO " . TABLE_TAG . " (id, uid, tag) VALUES(?,?,?) " , array ( $id , $uid , $tag ));
}
2012-02-08 23:14:28 +01:00
}
}
2012-09-06 15:27:20 +02:00
return 1 ;
2012-02-08 23:14:28 +01:00
}
2012-03-10 14:52:50 +01:00
public function bulk_add_message_tag ( $ids = array (), $uid = 0 , $tag = '' , $q = '' ) {
$arr = array_merge ( array ( $uid ), $ids );
2022-12-31 09:03:58 +01:00
if ( RT ) {
$ids_str = implode ( " , " , $ids );
$this -> sphx -> query ( " DELETE FROM " . SPHINX_TAG_INDEX . " WHERE uid= $uid AND mid IN ( $ids_str ) " );
} else {
$query = $this -> db -> query ( " DELETE FROM " . TABLE_TAG . " WHERE uid=? AND id IN ( $q ) " , $arr );
}
2012-03-10 14:52:50 +01:00
if ( $tag ) {
foreach ( $ids as $id ) {
2022-12-31 09:03:58 +01:00
if ( RT ) {
$this -> sphx -> query ( " INSERT INTO " . SPHINX_TAG_INDEX . " (mid, uid, tag) VALUES(?,?,?) " , [ $id , $uid , $tag ]);
} else {
$query = $this -> db -> query ( " INSERT INTO " . TABLE_TAG . " (id, uid, tag) VALUES(?,?,?) " , array ( $id , $uid , $tag ));
}
2012-03-10 14:52:50 +01:00
}
2021-04-04 07:40:16 +02:00
}
2012-03-10 14:52:50 +01:00
}
2012-09-06 15:27:20 +02:00
public function get_message_note ( $id = '' , $uid = 0 ) {
if ( $id == '' || $uid <= 0 ) { return '' ; }
2022-12-31 09:03:58 +01:00
if ( RT ) {
$query = $this -> sphx -> query ( " SELECT note FROM " . SPHINX_NOTE_INDEX . " WHERE uid= $uid AND mid= $id " );
} else {
$query = $this -> db -> query ( " SELECT `note` FROM " . TABLE_NOTE . " WHERE uid=? AND id=? " , array ( $uid , $id ));
}
2012-09-06 15:27:20 +02:00
2013-02-11 20:24:19 +01:00
if ( isset ( $query -> row [ 'note' ])) { return strip_tags ( urldecode ( $query -> row [ 'note' ])); }
2012-09-06 15:27:20 +02:00
return '' ;
}
public function add_message_note ( $id = '' , $uid = 0 , $note = '' ) {
if ( $id == '' || $uid <= 0 ) { return 0 ; }
if ( $note == '' ) {
$query = $this -> db -> query ( " DELETE FROM " . TABLE_NOTE . " WHERE uid=? AND id=? " , array ( $uid , $id ));
} else {
$query = $this -> db -> query ( " UPDATE " . TABLE_NOTE . " SET note=? WHERE uid=? AND id=? " , array ( $note , $uid , $id ));
if ( $this -> db -> countAffected () == 0 ) {
$query = $this -> db -> query ( " INSERT INTO " . TABLE_NOTE . " (id, uid, note) VALUES(?,?,?) " , array ( $id , $uid , $note ));
}
}
return 1 ;
}
2022-12-31 09:03:58 +01:00
public function add_message_rt_note ( $id = '' , $uid = 0 , $note = '' ) {
if ( $id == '' || $uid <= 0 ) { return 0 ; }
$this -> sphx -> query ( " DELETE FROM " . SPHINX_NOTE_INDEX . " WHERE uid= $uid AND mid= $id " );
if ( $note ) {
$this -> sphx -> query ( " INSERT INTO " . SPHINX_NOTE_INDEX . " (mid, uid, note) VALUES (?,?,?) " ,[ $id , $uid , $note ]);
}
return 1 ;
}
2016-02-16 15:37:34 +01:00
public function get_message_private ( $id = 0 ) {
if ( $id == 0 ) { return 0 ; }
$query = $this -> db -> query ( " SELECT `id` FROM " . TABLE_PRIVATE . " WHERE id=? " , array ( $id ));
if ( isset ( $query -> row [ 'id' ])) { return 1 ; }
return 0 ;
}
2012-09-06 15:27:20 +02:00
2012-02-08 23:14:28 +01:00
}