ecshop api.php,api.php

/**

* ECSHOP OPEN API统一接口

* ============================================================================

* 版权所有 2005-2011 商派网络,并保留所有权利。

* ecshop.com

* ----------------------------------------------------------------------------

* 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和

* 使用;不允许对程序代码以任何形式任何目的的再发布。

* ============================================================================

* $Author: sxc_shop $

* $Id: goods.php 15921 2009-05-07 05:35:58Z sxc_shop $

*/

define('IN_ECS', true);

require(dirname(__FILE__) . '/includes/init.php');

require(ROOT_PATH . 'includes/lib_license.php');

require_once('includes/cls_json.php');

define('RETURN_TYPE', empty($_POST['return_data']) ? 1 : ($_POST['return_data'] == 'json' ? 2 : 1));

/* 接收传递参数并初步检验 */

if (empty($_POST) || empty($_POST['ac']))

{

api_err('0x003', 'no parameter'); //输出系统级错误:数据异常

}

/* 根据请求类型进入相应的接口处理程序 */

switch ($_POST['act'])

{

case 'search_goods_list': search_goods_list(); break;

case 'search_goods_detail': search_goods_detail(); break;

case 'search_deleted_goods_list': search_deleted_goods_list(); break;

case 'search_products_list': search_products_list(); break;

case 'search_site_info': search_site_info(); break;

default: api_err('0x008', 'no this type api'); //输出系统级错误:数据异常

}

/**

* 获取商品列表接口函数

*/

function search_goods_list()

{

check_auth(); //检查基本权限

$version = '1.0'; //版本号

if ($_POST['api_version'] != $version) //网店的接口版本低

{

api_err('0x008', 'a low version api');

}

if (is_numeric($_POST['last_modify_st_time']) && is_numeric($_POST['last_modify_en_time']))

{

$sql = 'SELECT COUNT(*) AS count' .

' FROM ' . $GLOBALS['ecs']->table('goods') .

" WHERE is_delete = 0 AND is_on_sale = 1 AND (last_update > '" . $_POST['last_modify_st_time'] . "' OR last_update = 0)";

$date_count = $GLOBALS['db']->getRow($sql);

if (empty($date_count))

{

api_err('0x003', 'no data to back'); //无符合条件数据

}

$page = empty($_POST['pages']) ? 1 : $_POST['pages']; //确定读取哪些记录

$counts = empty($_POST['counts']) ? 100 : $_POST['counts'];

$sql = 'SELECT goods_id, last_update AS last_modify' .

' FROM ' . $GLOBALS['ecs']->table('goods') .

" WHERE is_delete = 0 AND is_on_sale = 1 AND (last_update > '" . $_POST['last_modify_st_time'] . "' OR last_update = 0)".

" LIMIT ".($page - 1) * $counts . ', ' . $counts;

$date_arr = $GLOBALS['db']->getAll($sql);

if (!empty($_POST['columns']))

{

$column_arr = explode('|', $_POST['columns']);

foreach ($date_arr as $k => $v)

{

foreach ($v as $key => $val)

{

if (in_array($key, $column_arr))

{

$re_arr['data_info'][$k][$key] = $val;

}

}

}

}

else

{

$re_arr['data_info'] = $date_arr;

}

/* 处理更新时间等于0的数据 */

$sql = 'UPDATE ' . $GLOBALS['ecs']->table('goods') .

" SET last_update = 1 WHERE is_delete = 0 AND is_on_sale = 1 AND last_update = 0";

$GLOBALS['db']->query($sql, 'SILENT');

$re_arr['counts'] = $date_count['count'];

data_back($re_arr, '', RETURN_TYPE); //返回数据

}

else

{

api_err('0x003', 'required date invalid'); //请求数据异常

}

}

/**

* 商品详细信息接口函数

*/

function search_goods_detail()

{

check_auth(); //检查基本权限

$version = '1.0'; //版本号

if ($_POST['api_version'] != $version) //网店的接口版本低

{

api_err('0x008', 'a low version api');

}

if (!empty($_POST['goods_id']) && is_numeric($_POST['goods_id']))

{

$sql = 'SELECT g.goods_id, g.last_update AS last_modify, g.cat_id, c.cat_name AS category_name, g.brand_id, b.brand_name, g.shop_price AS price, g.goods_sn AS bn, g.goods_name AS name, g.is_on_sale AS marketable, g.goods_weight AS weight, g.goods_number AS store , g.give_integral AS score, g.add_time AS uptime, g.original_img AS image_default, g.goods_desc AS intro' .

' FROM ' . $GLOBALS['ecs']->table('category') . ' AS c, ' . $GLOBALS['ecs']->table('goods') . ' AS g LEFT JOIN ' . $GLOBALS['ecs']->table('brand') . ' AS b ON g.brand_id = b.brand_id'.

' WHERE g.cat_id = c.cat_id AND g.goods_id = ' . $_POST['goods_id'];

$goods_data = $GLOBALS['db']->getRow($sql);

if (empty($goods_data))

{

api_err('0x003', 'no data to back'); //无符合条件数据

}

$goods_data['goods_link'] = 'http://' . $_SERVER['HTTP_HOST'] . '/goods.php?id=' . $goods_data['goods_id'];

$goods_data['image_default'] = 'http://' . $_SERVER['HTTP_HOST'] . '/' . $goods_data['image_default'];

$goods_data['unit'] = '千克';

$goods_data['brand_name'] = empty($goods_data['brand_name']) ? '' : $goods_data['brand_name'];

$prop = create_goods_properties($_POST['goods_id']);

$goods_data['props_name'] = $prop['props_name'];

$goods_data['props'] = $prop['props'];

if (!empty($_POST['columns']))

{

$column_arr = explode('|', $_POST['columns']);

foreach ($goods_data as $key=>$val)

{

if (in_array($key, $column_arr))

{

$re_arr['data_info'][$key] = $val;

}

}

}

else

{

$re_arr['data_info'] = $goods_data;

}

data_back($re_arr, '', RETURN_TYPE); //返回数据

}

else

{

api_err('0x003', 'required date invalid'); //请求数据异常

}

}

/**

* 被删除商品列表接口函数

*/

function search_deleted_goods_list()

{

api_err('0x007', '暂时不提供此服务功能'); //服务不可用

}

/**

* 获取货品列表接口函数

*/

function search_products_list()

{

check_auth(); //检查基本权限

$version = '1.0'; //版本号

if ($_POST['api_version'] != $version) //网店的接口版本低

{

api_err('0x008', 'a low version api');

}

if (!empty($_POST['goods_id']) && is_numeric($_POST['goods_id']) || !empty($_POST['bn']))

{

$sql = 'SELECT goods_id, last_update AS last_modify, shop_price AS price, goods_sn AS bn, goods_name AS name, goods_weight AS weight, goods_number AS store, add_time AS uptime' .

' FROM ' . $GLOBALS['ecs']->table('goods') .

' WHERE ' . empty($_POST['bn']) ? "goods_id = $_POST[goods_id]" : "goods_sn = $_POST[bn]";

$goods_data = $GLOBALS['db']->getRow($sql);

if (empty($goods_data))

{

api_err('0x003', 'no data to back'); //无符合条件数据

}

$goods_data['product_id'] = $_POST['goods_id'];

$goods_data['cost'] = $goods_data['price'];

$prop = create_goods_properties($_POST['goods_id']);

$goods_data['props'] = $prop['props'];

if (!empty($_POST['columns']))

{

$column_arr = explode('|', $_POST['columns']);

foreach ($goods_data as $key=>$val)

{

if (in_array($key, $column_arr))

{

$re_arr['data_info'][$key] = $val;

}

}

}

else

{

$re_arr['data_info'] = $goods_data;

}

data_back($re_arr, '', RETURN_TYPE); //返回数据

}

else

{

api_err('0x003', 'required date invalid'); //请求数据异常

}

}

/**

* 获取站点信息接口函数

*/

function search_site_info()

{

check_auth(); //检查基本权限

$version = '1.0'; //版本号

if ($_POST['api_version'] != $version) //网店的接口版本低

{

api_err('0x008', 'a low version api');

}

$sql = 'SELECT code, value'.

' FROM ' . $GLOBALS['ecs']->table('shop_config') .

" WHERE code IN ('shop_name', 'service_phone')";

$siteinfo['data_info'] = $GLOBALS['db']->getRow($sql);

$siteinfo['data_info']['site_address'] = $_SERVER['SERVER_NAME'];

data_back($siteinfo, '', RETURN_TYPE); //返回数据

}

/**

* 权限校验函数

*/

function check_auth()

{

$license = get_shop_license(); // 取出网店 license信息

if (empty($license['certificate_id']) || empty($license['token']) || empty($license['certi']))

{

api_err('0x006', 'no certificate'); //没有证书数据,输出系统级错误:用户权限不够

}

if (!check_shopex_ac($_POST, $license['token']))

{

api_err('0x009'); //输出系统级错误:签名无效

}

/* 对应用申请的session进行验证 */

$certi['certificate_id'] = $license['certificate_id']; // 网店证书ID

$certi['app_id'] = 'ecshop_b2c'; // 说明客户端来源

$certi['app_instance_id'] = 'webcollect'; // 应用服务ID

$certi['version'] = VERSION . '#' . RELEASE; // 网店软件版本号

$certi['format'] = 'json'; // 官方返回数据格式

$certi['certi_app'] = 'sess.valid_session'; // 证书方法

$certi['certi_session'] = $_POST['app_session']; //应用服务器申请的session值

$certi['certi_ac'] = make_shopex_ac($certi, $license['token']); // 网店验证字符串

$request_arr = exchange_shop_license($certi, $license);

if ($request_arr['res'] != 'succ')

{

api_err('0x001', 'session is invalid'); //输出系统级错误:身份验证失败

}

}

/**

* 验证POST签名

*

* @param string $post_params POST传递参数

* @param string $token 证书加密码

*

* @return boolean 返回是否有效

*/

function check_shopex_ac($post_params,$token)

{

ksort($post_params);

$str = '';

foreach($post_params as $key=>$value)

{

if ($key!='ac')

{

$str.=$value;

}

}

if ($post_params['ac'] == md5($str.$token))

{

return true;

}

else

{

return false;

}

}

/**

* 系统级错误处理

*

* @param string $err_type 错误类型代号

* @param string $err_info 错误说明

*

*/

function api_err($err_type, $err_info = '')

{

/* 系统级错误列表 */

$err_arr = array();

$err_arr['0x001'] = 'Verify fail'; //身份验证失败

$err_arr['0x002'] = 'Time out'; //请求/执行超时

$err_arr['0x003'] = 'Data fail'; //数据异常

$err_arr['0x004'] = 'Db error'; //数据库执行失败

$err_arr['0x005'] = 'Service error'; //服务器导常

$err_arr['0x006'] = 'User permissions'; //用户权限不够

$err_arr['0x007'] = 'Service unavailable'; //服务不可用

$err_arr['0x008'] = 'Missing Method'; //方法不可用

$err_arr['0x009'] = 'Missing signature'; //签名无效

$err_arr['0x010'] = 'Missing api version'; //版本丢失

$err_arr['0x011'] = 'Api verion error'; //API版本异常

$err_arr['0x012'] = 'Api need update'; //API需要升级

$err_arr['0x013'] = 'Shop Error'; //网痁服务异常

$err_arr['0x014'] = 'Shop Space Error'; //网店空间不足

data_back($err_info == '' ? $err_arr[$err_type] : $err_info, $err_type, RETURN_TYPE, 'fail'); //回复请求以错误信息

}

/**

* 返回结果集

*

* @param mixed $info 返回的有效数据集或是错误说明

* @param string $msg 为空或是错误类型代号

* @param string $result 请求成功或是失败的标识

* @param int $post 1为xml方式,2为json方式

*

*/

function data_back($info, $msg = '', $post, $result = 'success')

{

/* 分为xml和json两种方式 */

$data_arr = array('result'=>$result, 'msg'=>$msg, 'info'=>$info);

$data_arr = to_utf8_iconv($data_arr); //确保传递的编码为UTF-8

if ($post == 1)

{

/* xml方式 */

if (class_exists('DOMDocument'))

{

$doc=new DOMDocument('1.0','UTF-8');

$doc->formatOutput=true;

$shopex=$doc->createElement('shopex');

$doc->appendChild($shopex);

$result=$doc->createElement('result');

$shopex->appendChild($result);

$result->appendChild($doc->createCDATASection($data_arr['result']));

$msg=$doc->createElement('msg');

$shopex->appendChild($msg);

$msg->appendChild($doc->createCDATASection($data_arr['msg']));

$info=$doc->createElement('info');

$shopex->appendChild($info);

create_tree($doc, $info, $data_arr['info']);

die($doc->saveXML());

}

die('<?xml version="1.0" encoding="UTF-8"?>' . array2xml($data_arr)) ;

}

else

{

/* json方式 */

$json = new JSON;

die($json->encode($data_arr)); //把生成的返回字符串打印出来

}

}

/**

* 循环生成xml节点

*

* @param handle $doc xml实例句柄

* @param handle $top 当前父节点

* @param array $info_arr 需要解析的数组

* @param boolean $have_item 是否是数据数组,是则需要在每条数据上加item父节点

*

*/

function create_tree($doc, $top, $info_arr, $have_item = false)

{

if (is_array($info_arr))

{

foreach ($info_arr as $key => $val)

{

if (is_array($val))

{

if ($have_item == false)

{

$data_info=$doc->createElement('data_info');

$top->appendChild($data_info);

create_tree($doc, $data_info, $val, true);

}

else

{

$item=$doc->createElement('item');

$top->appendChild($item);

$key_code = $doc->createAttribute('key');

$item->appendChild($key_code);

$key_code->appendChild($doc->createTextNode($key));

create_tree($doc, $item, $val);

}

}

else

{

$text_code=$doc->createElement($key);

$top->appendChild($text_code);

if (is_string($val))

{

$text_code->appendChild($doc->createCDATASection($val));

}

else

{

$text_code->appendChild($doc->createTextNode($val));

}

}

}

}

else

{

$top->appendChild($doc->createCDATASection($info_arr));

}

}

function array2xml($data,$root='shopex'){

$xml='';

_array2xml($data,$xml);

$xml.=''.$root.'>';

return $xml;

}

function _array2xml(&$data,&$xml){

if(is_array($data)){

foreach($data as $k=>$v){

if(is_numeric($k)){

$xml.='';

$xml.=_array2xml($v,$xml);

$xml.='';

}else{

$xml.='';

$xml.=_array2xml($v,$xml);

$xml.=''.$k.'>';

}

}

}elseif(is_numeric($data)){

$xml.=$data;

}elseif(is_string($data)){

$xml.='';

}

}

function create_goods_properties($goods_id)

{

/* 对属性进行重新排序和分组

$sql = "SELECT attr_group ".

"FROM " . $GLOBALS['ecs']->table('goods_type') . " AS gt, " . $GLOBALS['ecs']->table('goods') . " AS g ".

"WHERE g.goods_id='$goods_id' AND gt.cat_id=g.goods_type";

$grp = $GLOBALS['db']->getOne($sql);

if (!empty($grp))

{

$groups = explode("\n", strtr($grp, "\r", ''));

}

*/

/* 获得商品的规格 */

$sql = "SELECT a.attr_id, a.attr_name, a.attr_group, a.is_linked, a.attr_type, ".

"g.goods_attr_id, g.attr_value, g.attr_price " .

'FROM ' . $GLOBALS['ecs']->table('goods_attr') . ' AS g ' .

'LEFT JOIN ' . $GLOBALS['ecs']->table('attribute') . ' AS a ON a.attr_id = g.attr_id ' .

"WHERE g.goods_id = '$goods_id' " .

'ORDER BY a.sort_order, g.attr_price, g.goods_attr_id';

$res = $GLOBALS['db']->getAll($sql);

$arr = array();

$arr['props_name'] = array(); // props_name

$arr['props'] = array(); // props

foreach ($res AS $row)

{

if ($row['attr_type'] == 0)

{

//$group = (isset($groups[$row['attr_group']])) ? $groups[$row['attr_group']] : $GLOBALS['_LANG']['goods_attr'];

//$arr['props_name'][$row['attr_group']]['name'] = $group;

$arr['props_name'][] = array('name' => $row['attr_name'], 'value' => $row['attr_value']);

$arr['props'][] = array('pid' => $row['attr_id'], 'vid' => $row['goods_attr_id']);

}

}

return $arr;

}

?>

一键复制

编辑

Web IDE

原始数据

按行查看

历史

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/267329.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Ajax乱码解决方案

2019独角兽企业重金招聘Python工程师标准>>> 方案1: 页面端: <% page language"java" contentType"text/html; charsetgb2312" pageEncoding"gb2312"%> http://www.w3.org/TR/html4/loose.dtd"> Ajax: function ve…

关键词联想关联 php,ECSHOP商品关键词模糊分词搜索插件,商品列表关键字加红功能...

各位ECSHOP网店系统用户大家好&#xff0c;欢迎来到ECSHOP商品关键词模糊分词搜索商品列表关键字加红功能。最近给客户做一个ECSHOP商城&#xff0c;发现ECSHOP的模糊搜索要求太高&#xff0c;需要加入and、空格、加号等&#xff0c;客户搜索的时候不可能这样操作。考虑到工期的…

花里胡哨,不协调统一的界面,正如看到一个穿花里胡哨衣服的人,让人作呕,不想接近。...

2019独角兽企业重金招聘Python工程师标准>>> 花里胡哨&#xff0c;不协调统一的界面&#xff0c;正如看到一个穿花里胡哨衣服的人&#xff0c;让人作呕&#xff0c;不想接近。 不要瞎变。 转载于:https://my.oschina.net/dongming/blog/40569

python全栈学习--day12(函数高级应用-带参数的装饰器,多个装饰器装饰一个函数)...

函数的执行时&#xff0c;*打散 函数的定义时&#xff0c;*聚合 from functools import wrapsdef wrapper(f):wraps(f)def inner(*args,**kwargs):执行函数之前的相关操作ret f(*args,**kwargs)执行函数之后的相关操作return retreturn inner wrapper def func1(*args):print…

Java学习总结 16个亮点

1.八大基本数据类型 byte(字节型8) int(整型;32;程序中一般默认为int型) short(短整型 16) long(长整型 32) float(浮点型 32) double(双精度浮点型 64) char(字符型 16) boolean(布尔型 只有true和false) 小范围内的整数类型可以通过赋值转化成大范围的数据类型.而大…

PHP聊天记录内啥,PHP的PSR系列轨范都有啥内容

PHP的PSR系列规范都有啥内容PSR是PHP Standard Recommendation的简写&#xff0c;它其实应该叫PSRs&#xff0c;即系列推荐标准&#xff1a;目前通过的规范有PSR-0(Autoloading Standard)、PSR-1(Basic Coding Standard)、PSR-2(Coding Style Guide)、PSR-3(Logger Interface)、…

选择排序法对数组进行排序

package selectionSort;import java.util.Arrays;public class Exam { //使用选择排序法对数组进行排序public static void main(String[] args) {int[] nums {23,3453,123,54,12,45,145,135,656,146,65};SelectionSort(nums);System.out.println(Arrays.toString(nums));}publ…

唐骏给李开复泼冷水:创业不可复制

东方企业家》十月刊刊登我主持的唐骏专栏&#xff0c;发表评创业热潮的冷思考。 题&#xff1a;创业是不可复制的 李开复从谷歌辞职&#xff0c;投身到创业热潮之中。很多媒体朋友问我&#xff0c;如何评价开复的辞职和创业?对此我一概未作回答。其实我很关注&#xff0c;也引…

爬取校园新闻首页的新闻

1. 用requests库和BeautifulSoup库&#xff0c;爬取校园新闻首页新闻的标题、链接、正文。 import requests from bs4 import BeautifulSoup url requests.get("http://news.gzcc.cn/html/xiaoyuanxinwen/")url.encoding "utf-8" soup BeautifulSoup(…

php服务划分,云计算提供的服务分为哪三个层次

三个层次&#xff1a;1、基础设施即服务(IaaS)&#xff0c;向云计算提供商的个人或组织提供虚拟化计算资源&#xff1b;2、平台即服务(PaaS)&#xff0c;为开发人员提供通过全球互联网构建应用程序和服务的平台&#xff1b;3、软件即服务((SaaS)&#xff0c;通过互联网提供按需…

如何做个人职业规划和年度计划

在做规划的同时&#xff0c;已经结合工作和个人自身情况思考调整个人的职业规划以及2012年自己的学习成长计划。持续了大约2个月的时间&#xff0c;已经整理出了2012年自己的目标和计划。总结一下&#xff0c;制定个人规划大致分为几个步骤&#xff1a; 一、认识自己。主要包括…

centos 7 快速安装nginx

输入指令 vim /etc/yum.repos.d/nginx.repo 输入以下内容 [nginx] namenginx repo baseurlhttp://nginx.org/packages/centos/7/$basearch/ gpgcheck0 enabled1 wq 进行保存 验证是否安装成功 安装 yum install nginx 启动nginx服务 nginx 测试是否启动成功 在linux输入你的IP地…

matlab colorbar采用对数,matlab colorbar的使用 | 學步園

1&#xff1a;請問matlab中畫多張圖如何使用同一範圍的colorbar?例如生成了圖1,2,3生成圖1時&#xff0c;使用temp1caxis;將圖1的z值的取值範圍(即colorbar的取值範圍)取出。生成圖2,3時使用caxis(temp1)命令將圖2,3的z值的取值範圍設為同1相同。然後對各個同使用colorbar命令…

BFS简单搜索--POJ 2243

这题就是简单的BFS搜索&#xff0c;刚刚转到C&#xff0c;还有很多库函数不熟悉&#xff0c;理解到BFS是一种奇妙的迭代法&#xff0c;其用的主要是队列的性质。 1 /*BFS简单搜索*/ 2 #include<iostream> 3 #include<queue> 4 #include<cstring> 5 6 using …

python_cookies

1.将cookies保存到变量中&#xff0c;然后打印cookie中的值 #coding:utf-8 #将cookies保存到变量中&#xff0c;然后打印cookie中的值 import urllib2 import cookielib #声明一个CookieJar对象实例保存cookie cookiecookielib.CookieJar() #利用urllib2库中的HTTPCookieProces…

php拖拽原理,JS拖拽效果及原理解析

这篇文章主要介绍了如何实现js拖拽效果及原理解析,文中通过示例代码介绍的非常详细&#xff0c;对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下元素拖拽分成3个步骤&#xff1a;按下鼠标&#xff0c;移动鼠标&#xff0c;松开鼠标。拖拽原理&#xff1a;按下…

jqGrid细节备注—pager文字的设置,更改默认的提交方式

默认的pager显示的文字&#xff0c;在英文版本下是如下 (file grid.locale-en.js): $.jgrid { defaults : { recordtext: "View {0} - {1} of {2}", emptyrecords: "No records to view", loadtext: "Loading...", pgtext : "Page {0} of …

浅谈拓扑排序

今天来讲讲拓扑排序 度娘告诉我 对一个有向无环图(Directed Acyclic Graph简称DAG)G进行拓扑排序&#xff0c;是将G中所有顶点排成一个线性序列&#xff0c;使得图中任意一对顶点u和v&#xff0c;若边(u,v)∈E(G)&#xff0c;则u在线性序列中出现在v之前。通常&#xff0c;这样…

iOS开发笔记[18/50]:在Mac OS X Lion系统中访问~/Library目录都需要点技巧

Mac虚拟机升级为Lion系统了&#xff0c;在iPhone模拟机调试时经常想访问应用程序的Document目录看看里面发生的状况&#xff0c;但在Lion系统中却找不到~/Library/Application Support/iPhone Simulator文件夹了。原来需要在Finder中这个~/Library文件夹默认是隐藏的&#xff0…

makemid+matlab,《MATLAB基础》双语课

MATLAB双语教学视频第17讲MATLAB双语教学视频第18讲Summarizing DataIn this section...“Overview” on page 5-10“Measures of Location” on page 5-10“Measures of Scale” on page 5-11“Shape of a Distribution” on page 5-11OverviewMany MATLAB functions enable y…