$userID); $getuser = "SELECT * FROM " . USERS_TABLE . " WHERE " . $db->sql_build_array('SELECT', $da); $getuser2 = $db->sql_query($getuser); $getuser3 = $db->sql_fetchrow($getuser2); $db->sql_freeresult($getuser2); $author = $getuser3['username']; $url = html_entity_decode(str_replace($phpbb_root_path, generate_board_url() . '/', $url)); $da = array('forum_id' => $fourm); $getfourm = "SELECT * FROM " . FORUMS_TABLE . " WHERE " . $db->sql_build_array('SELECT', $da); $getfourm2 = $db->sql_query($getfourm); $getfourm3 = $db->sql_fetchrow($getfourm2); $db->sql_freeresult($getfourm2); $semantics = array('forum' => $getfourm3['forum_name']); $encID = 0; if (($config['id_encryption_key'] != '') && extension_loaded('mcrypt')) { $encID = rand(1,2147483647); $cipher = 'rijndael-128'; $mode = 'cbc'; $key = substr(md5(substr(str_pad($config['id_encryption_key'],16,$encID),0,16)),0,16); $td = mcrypt_module_open($cipher, "", $mode, ""); $title = encryptString($td, $key, $title); $author = encryptString($td, $key, $author); $url = encryptString($td, $key, $url); foreach ($semantics as $name => $value) { $semantics[$name] = encryptString($td, $key, $value); } mcrypt_module_close($td); } $client = new xmlrpc_client($config['id_central_server']); $msg = new xmlrpcmsg("InstaDisc.sendFromUpdate", array( new xmlrpcval($config['id_username'], 'string'), new xmlrpcval(md5($config['id_username'] . ':' . md5($config['id_password']) . ':' . $verID), 'string'), new xmlrpcval($verID, 'int'), new xmlrpcval(generate_board_url() . '/', 'string'), new xmlrpcval($title, 'string'), new xmlrpcval($author, 'string'), new xmlrpcval($url, 'string'), new xmlrpcval(serialize($semantics), 'string'), new xmlrpcval($encID, 'int'))); $resp = $client->send($msg); $val = $resp->value()->scalarVal(); if ($val == 2) { sendItem($title, $userID, $url, $fourm); } } function encryptString($td, $key, $string) { mcrypt_generic_init($td, $key, strrev($key)); $string = bin2hex(mcrypt_generic($td, $string)); mcrypt_generic_deinit($td); return $string; } ?>