Adding official_code in createUserEncrypted and createUsersEncrypted webservices see BT#4158

skala
Julio Montoya 13 years ago
parent 984db82e75
commit 5e17a72893
  1. 6
      main/webservices/client_soap.php
  2. 11
      main/webservices/registration.soap.php

@ -55,6 +55,7 @@ $params = array( 'firstname' => 'Jon',
'password' => $generate_password, // encrypted using sha1
'encrypt_method' => 'sha1',
'language' => 'english',
'official_code' => 'official',
'phone' => '00000000',
'expiration_date' => '0000-00-00',
'original_user_id_name' => $user_field, // the extra user field that will be automatically created in the user profile see: main/admin/user_fields.php
@ -73,6 +74,7 @@ if (!empty($user_id) && is_numeric($user_id)) {
'secret_key' => $secret_key);
$result = $client->call('WSGetUser', array('GetUser' => $params));
echo '<h2>User created via webservices</h2>';
//3.Adding user to the course TEST. The course TEST must be created manually in Chamilo
@ -80,7 +82,7 @@ if (!empty($user_id) && is_numeric($user_id)) {
$params = array('course' => 'TEST', //Chamilo string course code
'user_id' => $user_id,
'secret_key' => $secret_key);
$result = $client->call('WSSubscribeUserToCourseSimple', array('subscribeUserToCourseSimple' => $params));
//$result = $client->call('WSSubscribeUserToCourseSimple', array('subscribeUserToCourseSimple' => $params));
//4. Adding course Test to the Session Session1
@ -96,7 +98,7 @@ if (!empty($user_id) && is_numeric($user_id)) {
),
'secret_key' => $secret_key);
$result = $client->call('WSSuscribeCoursesToSession', array('subscribeCoursesToSession' => $params));
//$result = $client->call('WSSuscribeCoursesToSession', array('subscribeCoursesToSession' => $params));

@ -540,6 +540,7 @@ $server->wsdl->addComplexType(
'language' => array('name' => 'language', 'type' => 'xsd:string'),
'phone' => array('name' => 'phone', 'type' => 'xsd:string'),
'expiration_date' => array('name' => 'expiration_date', 'type' => 'xsd:string'),
'official_code' => array('name' => 'official_code', 'type' => 'xsd:string'),
'original_user_id_name' => array('name' => 'original_user_id_name', 'type' => 'xsd:string'),
'original_user_id_value'=> array('name' => 'original_user_id_value', 'type' => 'xsd:string'),
'extra' => array('name' => 'extra', 'type' => 'tns:extrasList')
@ -635,7 +636,8 @@ function WSCreateUsersPasswordCrypted($params) {
$email = $user_param['email'];
$loginName = $user_param['loginname'];
$official_code = '';
$official_code = $user_param['official_code'];
$language = '';
$phone = '';
$picture_uri = '';
@ -833,6 +835,7 @@ $server->wsdl->addComplexType(
'language' => array('name' => 'language', 'type' => 'xsd:string'),
'phone' => array('name' => 'phone', 'type' => 'xsd:string'),
'expiration_date' => array('name' => 'expiration_date', 'type' => 'xsd:string'),
'official_code' => array('name' => 'official_code', 'type' => 'xsd:string'),
'original_user_id_name' => array('name' => 'original_user_id_name', 'type' => 'xsd:string'),
'original_user_id_value' => array('name' => 'original_user_id_value', 'type' => 'xsd:string'),
'extra' => array('name' => 'extra', 'type' => 'tns:extrasList'),
@ -856,6 +859,7 @@ function WSCreateUserPasswordCrypted($params) {
global $_user, $_configuration, $debug;
if ($debug) error_log('WSCreateUserPasswordCrypted');
if ($debug) error_log(print_r($params,1));
if (!WSHelperVerifyKey($params)) {
return return_error(WS_ERROR_SECRET_KEY);
}
@ -873,7 +877,7 @@ function WSCreateUserPasswordCrypted($params) {
$status = $params['status'];
$email = $params['email'];
$loginName = $params['loginname'];
$official_code = '';
$official_code = $params['official_code'];
$language = '';
$phone = '';
$picture_uri = '';
@ -911,7 +915,7 @@ function WSCreateUserPasswordCrypted($params) {
if ($debug) error_log('Ready to create user');
if ($user_id > 0) {
if ($debug) error_log('User found');
if ($debug) error_log('User found with id: '.$user_id);
// Check whether user is not active
//@todo why this condition exists??
@ -1000,7 +1004,6 @@ function WSCreateUserPasswordCrypted($params) {
$result = Database::query($sql);
if ($result) {
//echo "id returned";
$return = Database::insert_id();
//Multiple URL

Loading…
Cancel
Save