1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
<?php
/**
*
* @package phpBB3
* @version $Id: functions_instadisc.php 2008-08-06 07:12:00Z hatkirby $
* @version (c) 2008 Starla Insigna
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
include($phpbb_root_path . 'includes/xmlrpc/xmlrpc.inc');
/**
* Send an InstaDisc Item
*/
function sendItem($title, $userID, $url, $fourm)
{
global $config, $db, $phpbb_root_path;
$verID = rand(1,2147483647);
$da = array('user_id' => $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 = 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('http://central.fourisland.com/xmlrpc.php');
$msg = new xmlrpcmsg("InstaDisc.sendFromUpdate", array( new xmlrpcval($config['id_subscription_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;
}
?>
|