1
+ <?php
2
+ // ----------------------------------------------------------------------
3
+ // phpMyLib Version: 0.1.3 Release Date: 20140522
4
+ // © Copyright 2001-2024 Manu Herrán. Todos los derechos reservados
5
+ // Free download source code:
6
+ // https://manuherran.com/
7
+ // ----------------------------------------------------------------------
8
+ // Para mantener la compatibilidad entre editores de texto, en este
9
+ // fichero se utilizará para identar el espacio, y no el tabulador
10
+ // ----------------------------------------------------------------------
11
+ // abc: Adobe Business Catalyst
12
+ // ----------------------------------------------------------------------
13
+ // abc_0001_fApiRequest
14
+ // abc_0001_fApiParseSimpleApiOutputOneRecord
15
+ //
16
+ //
17
+ // ----------------------------------------------------------------------
18
+ // https://worldsecuresystems.com/catalystwebservice/catalystcrmwebservice.asmx
19
+ // https://worldsecuresystems.com/catalystwebservice/catalystecommercewebservice.asmx
20
+ // ----------------------------------------------------------------------
21
+ function abc_0001_fApiRequest ($ abcWebsiteDomainName , $ abcWebsiteId , $ abcUser , $ abcPassword , $ abcApiName , $ abcApiFunctionName , $ abcApiParam1 , $ abcApiParam2 , $ abcApiParam3 ) {
22
+ // $apiName "CRM", "eCommerce"
23
+ // Ejemplos de llamada:
24
+ // print abc_0001_fApiRequest ("car023.businesscatalyst.com", "1387360", "api@businesscatalyst.es", "(pass)", "CRM", "SecureZoneList_Retrieve", "", "", "");
25
+ // print abc_0001_fApiRequest ("car023.businesscatalyst.com", "1387360", "api@businesscatalyst.es", "(pass)", "eCommerce", "Product_ListRetrieve", "-1", "", ""); // Todos los productos
26
+ // print abc_0001_fApiRequest ("car023.businesscatalyst.com", "1387360", "api@businesscatalyst.es", "(pass)", "eCommerce", "Product_ListRetrieve", "17823", "", ""); // Prodcutos del catalogo 17823
27
+
28
+ $ soapUrl = "" ;
29
+ if ($ abcApiName == "CRM " ) {
30
+ $ soapUrl = "https:// " . $ abcWebsiteDomainName . "/CatalystWebService/CatalystCRMWebservice.asmx " ;
31
+ } else if ($ abcApiName == "eCommerce " ) {
32
+ $ soapUrl = "https:// " . $ abcWebsiteDomainName . "/CatalystWebService/catalystecommercewebservice.asmx " ;
33
+ }
34
+
35
+ $ soapBody = "" ;
36
+ if ($ abcApiName == "CRM " ) {
37
+ $ soapBody = $ soapBody . "< " . $ abcApiFunctionName . " xmlns= \"http://tempuri.org/CatalystDeveloperService/CatalystCRMWebservice \"> \n" ;
38
+ $ soapBody = $ soapBody . "<username> " . $ abcUser . "</username> \n" ;
39
+ $ soapBody = $ soapBody . "<password> " . $ abcPassword . "</password> \n" ;
40
+ $ soapBody = $ soapBody . "<siteId> " . $ abcWebsiteId . "</siteId> \n" ;
41
+ $ soapBody = $ soapBody . "</ " . $ abcApiFunctionName . "> \n" ;
42
+ } else if ($ abcApiName == "eCommerce " ) {
43
+ $ soapBody = $ soapBody . "< " . $ abcApiFunctionName . " xmlns= \"http://tempuri.org/CatalystDeveloperService/CatalystEcommerceWebservice \"> \n" ;
44
+ $ soapBody = $ soapBody . "<Username> " . $ abcUser . "</Username> \n" ;
45
+ $ soapBody = $ soapBody . "<Password> " . $ abcPassword . "</Password> \n" ;
46
+ $ soapBody = $ soapBody . "<SiteId> " . $ abcWebsiteId . "</SiteId> \n" ;
47
+ if ($ abcApiFunctionName == "Product_ListRetrieve " ) {
48
+ $ soapBody = $ soapBody . "<CatalogId> " . $ abcApiParam1 ."</CatalogId> \n" ;
49
+ }
50
+ $ soapBody = $ soapBody . "</ " . $ abcApiFunctionName . "> \n" ;
51
+ }
52
+
53
+ return soap_0001_fSoapRequestV1 ($ soapUrl , $ soapBody );
54
+ }
55
+ // ----------------------------------------------------------------------
56
+ function abc_0001_fApiParseSimpleApiOutputOneRecord ($ xmlOutput , $ firstTag , $ lastTag ) {
57
+ // Ejemplo de llamada:
58
+ // $apiData = abc_0001_fApiRequest(... "CRM", "SecureZoneList_Retrieve" ...);
59
+ // $apiData = abc_0001_fApiParseSimpleApiOutputOneRecord ($apiData, "<SecureZone>", "</SecureZone>");
60
+ // print $apiData->secureZoneID . " " . $apiData->secureZoneName . " " . $apiData->secureZoneExpiryDate . " " . $apiData->secureZoneUnsubscribe;
61
+
62
+ // Ejemplo de llamada:
63
+ // $apiData = abc_0001_fApiRequest(... "eCommerce", "Product_ListRetrieve" ...);
64
+ // $apiData = abc_0001_fApiParseSimpleApiOutputOneRecord ($apiData, "<Products>", "</Products>");
65
+ // print $apiData->productId . " " . $apiData->productCode . " " . $apiData->productName . " " . $apiData->description . " " . $apiData->smallImage . " " . $apiData->largeImage . " ";
66
+
67
+ $ xmlData = $ xmlOutput ;
68
+ //print "<hr>" . $xmlData . "<hr>";
69
+ $ xmlData = xml_0001_fTrimXmlText ($ xmlData , $ firstTag , $ lastTag );
70
+ //print "<hr>" . $xmlData . "<hr>";
71
+ //print_r(json_decode(json_encode(simplexml_load_string($xmlData))));
72
+ $ structuredData = json_decode (json_encode (simplexml_load_string ($ xmlData )));
73
+ return $ structuredData ;
74
+ }
75
+ // ----------------------------------------------------------------------
76
+ // https://worldsecuresystems.com/catalystwebservice/catalystcrmwebservice.asmx
77
+ // https://worldsecuresystems.com/catalystwebservice/catalystecommercewebservice.asmx
78
+ // ----------------------------------------------------------------------
79
+ // OJO NO DEJAR LINEAS EN BLANCO AL FINAL DE ESTE FICHERO
80
+ // ----------------------------------------------------------------------
81
+ ?>
0 commit comments