forked from marcelosoaressouza/estudiolivre
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommxmlrpc.php
141 lines (119 loc) · 4.55 KB
/
commxmlrpc.php
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<?php
// $Header: /cvsroot/tikiwiki/tiki/commxmlrpc.php,v 1.14.2.3 2007/03/02 12:23:31 luciash Exp $
// Copyright (c) 2002-2007, Luis Argerich, Garland Foster, Eduardo Polidor, et. al.
// All Rights Reserved. See copyright.txt for details and a complete list of authors.
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
# $Header: /cvsroot/tikiwiki/tiki/commxmlrpc.php,v 1.14.2.3 2007/03/02 12:23:31 luciash Exp $
include_once("lib/init/initlib.php");
include_once('db/tiki-db.php');
include_once('lib/tikilib.php');
include_once('lib/userslib.php');
include_once("XML/Server.php");
include_once('lib/commcenter/commlib.php');
$tikilib = new Tikilib($dbTiki);
$userlib = new Userslib($dbTiki);
if($tikilib->get_preference("feature_comm", 'n') != 'y') {
die;
}
$map = array(
"sendPage" => array("function" => "sendPage"),
"sendArticle" => array("function" => "sendArticle")
);
$s = new XML_RPC_Server($map);
/* Validates the user and returns user information */
function sendPage($params) {
// Get the page and store it in received_pages
global $tikilib, $userlib, $commlib;
$pp = $params->getParam(0);
$site = $pp->scalarval();
$pp = $params->getParam(1);
$username = $pp->scalarval();
$pp = $params->getParam(2);
$password = $pp->scalarval();
$pp = $params->getParam(3);
$pageName = $pp->scalarval();
$pp = $params->getParam(4);
$data = $pp->scalarval();
$pp = $params->getParam(5);
$comment = $pp->scalarval();
$pp = $params->getParam(6);
$description = $pp->scalarval();
//
if(!$userlib->validate_user($username, $password, '', '')) {
return new XML_RPC_Response(0, 101, "Invalid username or password");
}
// Verify if the user has tiki_p_sendme_pages
if(!$userlib->user_has_permission($username, 'tiki_p_sendme_pages')) {
return new XML_RPC_Response(0, 101, "Permissions denied user $username cannot send pages to this site");
}
// Store the page in the tiki_received_pages_table
$data = base64_decode($data);
$commlib->receive_page($pageName, $data, $comment, $site, $username, $description);
return new XML_RPC_Response(new XML_RPC_Value(1, "boolean"));
}
function sendArticle($params) {
// Get the page and store it in received_pages
global $tikilib, $userlib, $commlib;
$pp = $params->getParam(0);
$site = $pp->scalarval();
$pp = $params->getParam(1);
$username = $pp->scalarval();
$pp = $params->getParam(2);
$password = $pp->scalarval();
$pp = $params->getParam(3);
$title = $pp->scalarval();
$pp = $params->getParam(4);
$authorName = $pp->scalarval();
$pp = $params->getParam(5);
$size = $pp->scalarval();
$pp = $params->getParam(6);
$use_image = $pp->scalarval();
$pp = $params->getParam(7);
$image_name = $pp->scalarval();
$pp = $params->getParam(8);
$image_type = $pp->scalarval();
$pp = $params->getParam(9);
$image_size = $pp->scalarval();
$pp = $params->getParam(10);
$image_x = $pp->scalarval();
$pp = $params->getParam(11);
$image_y = $pp->scalarval();
$pp = $params->getParam(12);
$image_data = $pp->scalarval();
$pp = $params->getParam(13);
$publishDate = $pp->scalarval();
$pp = $params->getParam(14);
$expireDate = $pp->scalarval();
$pp = $params->getParam(15);
$created = $pp->scalarval();
$pp = $params->getParam(16);
$heading = $pp->scalarval();
$pp = $params->getParam(17);
$body = $pp->scalarval();
$pp = $params->getParam(18);
$hash = $pp->scalarval();
$pp = $params->getParam(19);
$author = $pp->scalarval();
$pp = $params->getParam(20);
$type = $pp->scalarval();
$pp = $params->getParam(21);
$rating = $pp->scalarval();
//
if(!$userlib->validate_user($username, $password, '', '')) {
return new XML_RPC_Response(0, 101, "Invalid username or password");
}
// Verify if the user has tiki_p_sendme_pages
if(!$userlib->user_has_permission($username, 'tiki_p_sendme_articles')) {
return new XML_RPC_Response(0, 101, "Permissions denied user $username cannot send articles to this site");
}
// Store the page in the tiki_received_pages_table
$title = base64_decode($title);
$authorName = base64_decode($authorName);
$image_data = base64_decode($image_data);
$heading = base64_decode($heading);
$body = base64_decode($body);
$commlib->receive_article($site, $username, $title, $authorName, $size, $use_image, $image_name, $image_type, $image_size,
$image_x, $image_y, $image_data, $publishDate, $expireDate, $created, $heading, $body, $hash, $author, $type, $rating);
return new XML_RPC_Response(new XML_RPC_Value(1, "boolean"));
}
?>