vtigerossez/soap/webforms.php.deprecated
2013-01-30 22:15:41 -05:00

200 lines
6.2 KiB
Plaintext

<?php
/*********************************************************************************
** The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
* The Original Code is: vtiger CRM Open Source
* The Initial Developer of the Original Code is vtiger.
* Portions created by vtiger are Copyright (C) vtiger.
* All Rights Reserved.
*
********************************************************************************/
require_once("config.php");
require_once('include/logging.php');
require_once('include/nusoap/nusoap.php');
require_once('include/database/PearDatabase.php');
require_once('modules/HelpDesk/HelpDesk.php');
$log = &LoggerManager::getLogger('webforms');
//$serializer = new XML_Serializer();
$NAMESPACE = 'http://www.vtiger.com/vtigercrm/';
$server = new soap_server;
$server->configureWSDL('vtigersoap');
$server->register(
'create_lead_from_webform',
array(
'lastname'=>'xsd:string',
'email'=>'xsd:string',
'phone'=>'xsd:string',
'company'=>'xsd:string',
'country'=>'xsd:string',
'description'=>'xsd:string',
'assigned_user_id'=>'xsd:string'
),
array('return'=>'xsd:string'),
$NAMESPACE);
$server->register(
'create_contact_from_webform',
array(
'first_name'=>'xsd:string',
'last_name'=>'xsd:string',
'email_address'=>'xsd:string',
'home_phone'=>'xsd:string',
'department'=>'xsd:string',
'description'=>'xsd:string',
'assigned_user_id'=>'xsd:string'
),
array('return'=>'xsd:string'),
$NAMESPACE);
$server->register(
'unsubscribe_email',
array(
'email_address'=>'xsd:string'
),
array('return'=>'xsd:string'),
$NAMESPACE);
/** function used to create lead from webform from the passed details
* @param string $lastname - last name of the lead
* @param string $email - email of the lead
* @param string $phone - phone number of the lead
* @param string $company - company name of the lead
* @param string $country - country name of the lead
* @param string $description - description to create a lead
* @param int $assigned_user_id - assigned to user for the lead
* return message success or failure about the lead creation
*/
function create_lead_from_webform($lastname, $email, $phone, $company, $country, $description, $assigned_user_id)
{
global $adb;
$adb->println("Create New Lead from Web Form - Starts");
if($assigned_user_id == '')
{
//if the user id is empty then assign it to the admin user
$assigned_user_id = $adb->query_result($adb->pquery("select id from vtiger_users where user_name=?", array('admin')),0,'id');
}
require_once("modules/Leads/Leads.php");
$focus = new Leads();
$focus->column_fields['lastname'] = $lastname;
$focus->column_fields['email'] = trim($email);
$focus->column_fields['phone'] = $phone;
$focus->column_fields['company'] = $company;
$focus->column_fields['country'] = $country;
$focus->column_fields['description'] = $description;
$focus->column_fields['assigned_user_id'] = $assigned_user_id;
$focus->save("Leads");
//$focus->retrieve_entity_info($focus->id,"Leads");
$adb->println("Create New Lead from Web Form - Ends");
if($focus->id != '')
$msg = 'Thank you for your interest. Information has been successfully added as Lead in vtigerCRM.';
else
$msg = "Lead creation failed. Please try again";
return $msg;
}
/** function used to create contact from webform from the passed details
* @param string $first_name - first name to create contact
* @param string $last_name - last name to create contact
* @param string $email_address - email address to create contact
* @param string $home_phone - phone number of home to create contact
* @param string $department - department to create contact
* @param string $description - description to create contact
* @param int $assigned_user_id - assigned to user for the contact
* return message success or failure about the contact creation
*/
function create_contact_from_webform($first_name, $last_name, $email_address, $home_phone, $department,$description, $assigned_user_id)
{
global $adb;
$adb->println("Create New Contact from Web Form - Starts");
if($assigned_user_id == '')
{
//if the user id is empty then assign it to the admin user
$assigned_user_id = $adb->query_result($adb->pquery("select id from vtiger_users where user_name=?", array('admin')),0,'id');
}
require_once('modules/Contacts/Contacts.php');
$focus = new Contacts();
$focus->column_fields['firstname'] = $first_name;
$focus->column_fields['lastname'] = $last_name;
$focus->column_fields['email'] = trim($email_address);
$focus->column_fields['homephone'] = $home_phone;
$focus->column_fields['department'] = $department;
$focus->column_fields['description'] = $description;
$focus->column_fields['assigned_user_id'] = $assigned_user_id;
$focus->save("Contacts");
//$focus->retrieve_entity_info($focus->id,"Contacts");
$adb->println("Create New Contact from Web Form - Ends");
if($focus->id != '')
$msg = 'Thank you for your interest. Information has been successfully added as Contact in vtigerCRM.';
else
$msg = "Contact creation failed. Please try again";
return $msg;
}
/** function used to unsubscribe the mail
* @param string $emailid - email address to unsubscribe
* return message about the success or failure status about the unsubscribe
*/
function unsubscribe_email($emailid)
{
global $adb;
$adb->println("Enter into the function unsubscribe_email($emailid)");
$emailid = trim($emailid);
$contact_res = $adb->pquery("select emailoptout from vtiger_contactdetails where email=?", array($emailid));
$contact_noofrows = $adb->num_rows($contact_res);
$emailoptout = $adb->query_result($contact_res,0,'emailoptout');
if($contact_noofrows > 0)
{
if($emailoptout != 1)
{
$adb->pquery("update vtiger_contactdetails set emailoptout=1 where email=?", array($emailid));
$msg = "You have been unsubscribed.";
}
else
{
$msg = "You are already unsubscribed.";
}
}
else
{
$msg = "There are no record available for this mail address.";
}
$adb->println("Exit from the function unsubscribe_email($emailid)");
return $msg;
}
//$log->fatal("In soap.php");
/* Begin the HTTP listener service and exit. */
$server->service($HTTP_RAW_POST_DATA);
exit();
?>